@import"https://fonts.googleapis.com/css?family=Geologica:100,200,300,400,500,600,700,800,900";

* {
    padding: 0;
    margin: 0;
    border: 0
}

*,
*:before,
*:after {
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box
}

:focus,
:active {
    outline: none
}

a:focus,
a:active {
    outline: none
}

nav,
footer,
header,
aside {
    display: block
}

html,
body {
    width: 100%;
    font-size: 100%;
    line-height: 1;
    font-size: 14px;
    -ms-text-size-adjust: 100%;
    -moz-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%
}

input,
button,
textarea {
    font-family: inherit
}

input::-ms-clear {
    display: none
}

button {
    cursor: pointer
}

button::-moz-focus-inner {
    padding: 0;
    border: 0
}

a,
a:visited,
a:hover {
    text-decoration: none
}

ul li {
    list-style: none
}

img {
    vertical-align: top
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-size: inherit;
    font-weight: 400
}

html {
    font-family: Geologica, sans-serif
}

body {
    display: flex;
    flex-direction: column;
    min-height: 100dvh;
}

main {
    flex-grow: 1;
}

 /* header  */
.header {
    overflow: hidden;
    height: 78px;
}

.header.active {
    overflow: visible
}

.header__container {
    height: 100%;
}

.header__content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.header__btn-init {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 20px;
    height: 20px;
    cursor: pointer
}

.header__btn-init span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: #000;
    transition: all .3s ease 0s
}

.header__btn-init span:nth-child(1) {
    width: 50%
}

.header__btn-init span:nth-child(3) {
    width: 50%;
    margin-left: auto
}

.header__btn-init.active {
    position: fixed;
    z-index: 99;
    top: 20px;
    left: 20px
}

.header__btn-init.active span {
    background-color: #000
}

.header__btn-init.active span:nth-child(1) {
    transform: rotate(45deg) translate(11px, 10px);
    width: 100%
}

.header__btn-init.active span:nth-child(2) {
    display: none
}

.header__btn-init.active span:nth-child(3) {
    transform: rotate(-45deg) translate(2px, -2px);
    width: 100%
}


.header__menu {
    position: fixed;
    z-index: 9;
    left: -200%;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: #ffffff;
    transition: all .3s ease 0s;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 46px;
    padding: 40px 0
}

.header__menu.active {
    left: 0
}


.header__logo-icon {
    width: 160px;
    height: 30px
}

.header__logo-icon img {
    width: 100%;
    height: 100%
}

.header__menu-list {
    width: 100%;
    padding: 25px
}

.header__menu-list ul li a {
    color: #19213D;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px
}

.header__menu-list ul li+li {
    margin-top: 28px
}


.header__menu-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    gap: 8px;
    border-radius: 32px;
    padding: 10px 24px;
    border: 1px solid transparent;
    transition: all 0.3s ease 0s;
    color: #fff;
    width: 100%;
    background: #6ED18D;
    border-color: #6ED18D;
}

.header__menu-btn:hover {
    background:  #51AB6D;
    border-color: #51AB6D;
}

.header__logo {
    width: 159px;
    height: 34px;
}

.header__logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

@media(min-width: 1024px) {
    .header__btn-init {
        display: none
    }
    .header__menu {
        width: auto;
        position: static;
        background: transparent;
        flex-direction: row;
        gap: 0;
        padding: 0
    }
    .header__logo-icon {
        display: none
    }
    .header__menu-list {
        display: flex;
        gap: 25px;
        align-items: center;
        padding: 0;
        width: auto
    }
    
    .header__menu-list ul {
        display: flex;
        min-width:450px;
        gap: 25px
    }
    
    .header__menu-list ul li a {
        color: #19213D;
        font-size: 17px;
        font-style: normal;
        font-weight: 400;
        line-height: 20px
    }
    
    .header__menu-list ul li+li {
        margin-top: 0
    }
    .header__menu-btn {
        margin-top: 0;
    }

}

@media(max-width: 1024px) {
    .header {
        height: 68px;
    }
    .header__container {
        position: absolute;
        height: 68px;
    }

    .header__btn-init span{
        background-color: #000;
    }

    .header__logo {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }
}


.container {
    max-width: 1370px;
    width: 100%;
    padding: 0 15px;
    margin: 0 auto
}

.hero {
    position: relative;
}

.hero-bg {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero__content {
    max-width: 1118px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 43px;
    padding: 30px 0 13px;
}

.hero__img {
    width: 260px;
    min-width: 260px;
    height: 260px;
}

.hero__img img {
    object-fit: contain;
    width: 100%;
    height: 100%;
}

.hero__content-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 20px;
    width: 100%;
}

.hero__content-text h1 {
    color: #19213D;
    text-align: center;
    font-size: 45px;
    font-style: normal;
    font-weight: 700;
    line-height: 38px;
    text-align: left;

}

.hero__content-text p {
    color: #19213D;
    text-align: center;
    font-size: 17px;
    font-style: normal;
    font-weight: 400;
    line-height: 26px;
    text-align: left

}

@media(max-width:768px) {
    .hero__content {
        display: flex;
        flex-direction: row;
        position: relative;
        max-width: 80%;
        margin: 0 auto 0 0 ;
        padding: 27px 0 44px;
    }

    .hero__content h1 {
        font-size: 36px;
    }

    .hero__content p {
        max-width: 80%;
    }

    .hero__img {
        position: absolute;
        transform: scaleX(-1);
        width: 188px;
        height: 188px;
        right: -40%;
        bottom: 0;
    }
    
}

@media(max-width:480px) {
    .hero__img {
        right: -60%;
    }
    
}

.catalog {
    padding: 53px 0 32px;
}

.catalog__content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}


@media(max-width:1024px) {
    .catalog__content {
        grid-template-columns: repeat(2, 1fr)
    }
}

@media(max-width:768px) {
    .catalog__content {
        grid-template-columns: repeat(1, 1fr)
    }
}

.offer {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: max-content;
    background-color: white;
    border: 1px solid rgba(208, 208, 208, 1);
    border-radius: 10px;
    overflow: hidden;
}

.offer__head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #6ED18D;
    height: 86px;
    padding-left: 24px;
    padding-right: 24px;
}

.offer__content {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 21px 24px 10px;
    background: #E7FBEB;
}

.offer__head-logo {
    max-width: 175px;
    max-height: 50px
}

.offer__head-logo img {
    width: 100%;
    height: 50px;
    object-fit: contain;
}

.offer__rating {
    display: flex;
    gap: 5px;
    align-items: center;
    font-size: 29px;
    font-weight: 700;
}

.offer__info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.offer__info-item {
    display: flex;
    justify-content: space-between;
    color:  #19213D;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px
}

.offer__btn {
    width: 100%;
    padding: 15px 0;
    border-radius: 90px;
    background: #6ED18D;
    color: #fff;
    text-align: center;
    font-size: 17px;
    font-style: normal;
    font-weight: 700;
    line-height: 20px;
    letter-spacing: -.34px;
    transition: all .3s ease 0s;
    border: 1px solid rgba(68, 160, 106, 1);
}

.offer__btn:hover {
    background: #fff;
    color: rgba(68, 160, 106, 1)
}

.offer__content {
    display: flex;
    flex-direction: column;
    gap: 20px
}

.offer__content.active .offer__content-toggle span:nth-child(1) {
    display: none
}

.offer__content.active .offer__content-toggle span:nth-child(2) {
    display: block
}

.offer__content.active .offer__content-text {
    display: block
}

.offer__content-text {
    padding: 10px 4px;
    border-radius: 10px;
    background: var(--F7F7F7, #F7F7F7);
    color:  #19213D;
    text-align: center;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 18px;
    display: none
}

.offer__content-toggle {
    display: flex;
    flex-direction: column;
    width: max-content;
    margin: 0 auto
}

.offer__content-toggle span {
    cursor: pointer;
    color:  #19213D;
    text-align: center;
    font-size: 13px;
    font-style: normal;
    font-weight: 400;
    line-height: 18px;
    text-decoration-line: underline;
    text-decoration-style: solid;
    text-decoration-skip-ink: none;
    text-decoration-thickness: auto;
    text-underline-offset: auto;
    text-underline-position: from-font
}

.offer__content-toggle span:nth-child(2) {
    display: none
}

.offer__description{
    padding: 4px 17.5px;
    font-size: 12px;
    line-height: 18px;
    border-left: 4px solid #A5251D;
}

.offer__links {
    display: flex;
    flex-direction: column;
    gap: 2px;
    align-items: center;
}

.offer__links a{
    text-align: center;
    text-decoration: underline;
    color:  #19213D;
    font-size: 13px;
    line-height: 18px;
}

@media (max-width: 768px) {
    .catalog {
        padding: 35px 0 35px;
    }
}

.landing-title {
    font-weight: bold;
    font-size: 23px;
    font-weight: 600;
}

.info {
    padding: 20px 0 50px;
}

.info__container {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.info__list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 34px;
    width: 100%;

}

.info__item {
    background: rgba(238, 255, 239, 1);
    padding: 20px 40px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.info__item-title {
    font-size: 15px;
    font-weight: 700;
    color: #141414
}

.info__item-grid.item-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 27px;
}

.item-grid__item {
    max-width: 200px;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.info__item-grid p, .info__item-grid p a {
    font-size: 11px;
    color: rgba(54, 54, 54, 1);
    font-weight: 500;
}

@media (max-width: 768px) {
    .info__list {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .info__item {
        padding: 20px 32px;
    }

    .info__item-grid.item-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 480px) {
    .info__list {
        gap: 25px;
    }
    .info__item-grid.item-grid {
        grid-template-columns: 1fr;
    }
}

.faq {
}

.faq__container {
    display: flex;
    flex-direction: column;
    gap: 23px;
}

.faq__list {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.faq__item {
    padding: 10px 16px;
    cursor: pointer;
    border-bottom: 2px solid rgba(0, 0, 0, 1);
}

.faq__item-header {
    display: grid;
    grid-template-columns: 1fr 24px;
    gap: 24px;
    align-items: center;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.2;
    cursor: pointer;
    color: rgba(54, 54, 54, 1);
}

.faq__arrow {
    width: 24px;
    height: 24px;
    position: relative;
}

.faq__arrow::before,
.faq__arrow::after {
  content: '';
  position: absolute;
  background: rgba(68, 160, 106, 1);
}

.faq__arrow::before {
  width: 18px;
  height: 2px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.faq__arrow::after {
  width: 2px;
  height: 18px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.faq__item-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
    font-size: 12px;
    color: #ffffff;
    height: 0;
    overflow: hidden;
    line-height: 24px;
}

.faq__item-content p:first-child {
    padding-top: 10px;
}

.faq__item.active .faq__item-content {
    height: auto;
}

.faq__item-quote {
    padding-left: 10px;
    border-left: 1px solid #ffffff;
    width: 90%;
}

.faq__item.active {
    background-color: rgba(68, 160, 106, 1);
    color: #ffffff;
    border-bottom: 1px solid rgba(68, 160, 106, 1);
}

.faq__item.active .faq__item-header {
    color: #ffffff;
} 

.faq__item.active .faq__arrow::after {
    display: none;
}

.faq__item.active .faq__arrow::before {
    background-color: #ffffff;
}

.text {
    padding-top: 57px;
    padding-bottom: 57px;
}

.text__content {
    background-color: rgba(238, 255, 239, 1);
    padding: 23px 113px;
    font-weight: 300;
    font-size: 13px;
    line-height: 22px;
}

@media (max-width: 768px) {
    .faq__list {
        gap: 16px;
    }
    .text__content {
        padding: 17px;
    }
}

.footer {
    padding: 50px 0;
    background: linear-gradient(175deg, #DFF9E5 3.93%, #F2FDF4 158.69%);
    color: #000
}

.footer__top {
    display: flex;
    flex-direction: column;
    gap: 40px
}

@media(min-width:1024px) {
    .footer__top {
        flex-direction: row;
        justify-content: space-between
    }
}

.footer__content {
    display: flex;
    flex-direction: column;
    gap: 40px
}

.footer__content-text {
    color: #000;
    font-size: 13px;
    font-style: normal;
    font-weight: 300;
    line-height: 22px;
    max-width: 350px;
}

.footer__logo img {
    object-fit: contain;
    height: 80px;
    width: 200px;
}

.footer__soc {
    display: flex;
    gap: 16px
}

.footer__soc a {
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 100%;
    background: #fff
}

.footer__links {
    display: flex;
    flex-direction: column;
    gap: 16px
}

.footer__links-title {
    color: #000;
    font-size: 15px;
    font-style: normal;
    font-weight: 900;
    line-height: normal
}

.footer__links-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 20px
}

.footer__links-grid a {
    color: #000;
    font-size: 13px;
    font-style: normal;
    font-weight: 300;
    line-height: normal
}

@media(min-width:768px) {
    .footer__links-grid {
        grid-template-columns: repeat(2, 1fr)
    }
}

@media(min-width:1024px) {
    .footer__links-grid {
        grid-template-columns: repeat(3, 1fr)
    }
}

.footer__contacts {
    display: flex;
    flex-direction: column;
    gap: 10px
}

.footer__contacts a {
    color: #000;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px
}

.footer__bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 40px
}

.footer__bottom div {
    display: flex;
    align-items: center;
    gap: 4px
}

.footer__bottom p {
    color: #000;
    font-size: 13px;
    font-style: normal;
    font-weight: 300;
    line-height: 22px
}



/* ===== result-hero ===== */

.result-hero {
    padding: 80px 0;
}

.result-hero__container {
    max-width: 1100px;
}

.result-hero__head {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
}

.result-hero__title {
    max-width: 430px;
    color: #19213D;
    font-size: 32px;
    font-weight: 800;
    line-height: 40px;
}

.result-hero__subtitle {
    color: #19213D;
    font-size: 16px;
    font-weight: 500;
    line-height: 20px;
}

.result-hero__content {
    display: flex;
    flex-direction: column;
    gap: 60px;
    padding-top: 32px;
}

.result-hero__grid {
    display: grid;
    gap: 32px;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
}

/* ===== first item highlight ===== */

.result-hero__grid .creditor-item:nth-child(1) .creditor-card__content {
    background: #E1FAE6;
}

.result-hero__grid .creditor-item:nth-child(1) .creditor-card__bottom {
    background: #C7F3D2;
}

.result-hero__grid .creditor-item:nth-child(1) .creditor-item__btn {
    background: #E1FAE6;
}

/* ===== creditor-item ===== */

.creditor-item {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.creditor-item__card {
    overflow: hidden;
    display: flex;
    flex-direction: column;
    border: 1px solid #BAD6C3;
    border-radius: 20px;
}

.creditor-item__btn {
    width: max-content;
    white-space: nowrap;
    background: #EBEFF6;
}

/* ===== creditor-card ===== */

.creditor-card__content {
    display: grid;
    gap: 30px;
    grid-template-columns: 1fr 1fr;
    padding: 12px;
    background: #F6F8FC;
}

.creditor-card__content > div {
    width: 100%;
    display: flex;
    flex-direction: column;
}

.creditor-card__content > div:nth-child(even) {
    text-align: right;
    align-items: flex-end;
}

/* logo */

.creditor-card__logo img {
    width: 120px;
    height: 60px;
    object-fit: contain;
}

/* status */

.creditor-card__status {
    color: #19213D;
    font-size: 13px;
    font-weight: 500;
    line-height: 20px;
    background: #fff;
    max-width: 200px;
    border-radius: 16px;
    padding: 4px 12px;
}

/* text */

.creditor-card__text-label {
    color: #19213D;
    font-size: 13px;
    font-weight: 400;
    line-height: 16px;
}

.creditor-card__text-label span {
    white-space: nowrap;
}

.creditor-card__text-value {
    color: #19213D;
    font-size: 20px;
    font-weight: 500;
}

.creditor-card__text-link {
    color: #983EFF;
    font-size: 13px;
    font-weight: 400;
    line-height: 16px;
    text-decoration: underline;
    margin-top: 8px;
    background: none;
    border: none;
    cursor: pointer;
}

/* bottom */

.creditor-card__bottom {
    padding: 16px 12px;
    background: #EBEFF6;
    color: #19213D;
    text-align: center;
    font-size: 12px;
    font-weight: 400;
    line-height: 16px;
}

/* info (hidden block) */

.creditor-card__info {
    padding: 12px 16px;
    text-align: center;
}

.creditor-card__info a {
    display: block;
    color: #983EFF;
    font-size: 13px;
    font-weight: 400;
    line-height: 16px;
    text-decoration: underline;
    margin-top: 8px;
}

/* ===== creditor-info ===== */

.creditor-info {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* ===== info-card ===== */

.info-card {
    display: flex;
    flex-direction: column;
}

.info-card__name {
    color: #19213D;
    font-size: 14px;
    font-weight: 400;
    line-height: 16px;
    margin-bottom: 8px;
}

.info-card__item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 60px;
    padding: 8px 16px;
    border-radius: 12px;
}

.info-card__item p {
    color: #78808E;
    font-size: 12px;
    font-weight: 400;
    line-height: 16px;
}

.info-card__item span {
    max-width: 60%;
    text-align: right;
    font-size: 12px;
    font-weight: 400;
    line-height: 14px;
}

.info-card__item:nth-child(even) {
    background: #F7F8FB;
}
