@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;
    background-color: rgba(242, 242, 242, 1);
}

main {
    flex-grow: 1;
}

 /* header  */
.header {
    overflow: hidden;
    height: 78px;
    background-color: rgba(47, 49, 56, 1);
}

.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: #fff
}

.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: rgba(47, 49, 56, 1);
    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: rgba(255, 255, 255, 1);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px
}

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


.header__menu-btn {
    margin-top: 57px;
    padding: 18px 25px;
    background: linear-gradient(180deg, #EF3E33 0%, #A5251D 100%);
    color: #ffffff;
    text-align: center;
    font-size: 17px;
    font-style: normal;
    font-weight: 700;
    line-height: 20px;
    letter-spacing: -.34px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: .3s
}

.header__menu-btn:hover {
    background: linear-gradient(360deg, #EF3E33 0%, #A5251D 100%);
    color: #fff
}

.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;
        gap: 25px
    }
    
    .header__menu-list ul li a {
        color: rgba(255, 255, 255, 1);
        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: #ffffff;
    }

    .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 {
    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: rgba(255, 255, 255, 1);
    text-align: center;
    font-size: 45px;
    font-style: normal;
    font-weight: 700;
    line-height: 38px;
    text-align: left;

}

.hero__content-text p {
    color: rgba(255, 255, 255, 1);
    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: rgba(222, 244, 229, 1);
    height: 86px;
    padding-left: 24px;
    padding-right: 24px;
}

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

.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: var(--2B2B2B, #2B2B2B);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px
}

.offer__btn {
    width: 100%;
    padding: 15px 0;
    border-radius: 90px;
    background: rgba(68, 160, 106, 1);
    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: var(--2B2B2B, #2B2B2B);
    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: var(--2B2B2B, #2B2B2B);
    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{
    background-color: rgba(222, 244, 229, 1);
    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: #2B2B2B;
    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: #000;
    color: #fff
}

.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: #ffffff80;
    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: #fff;
    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: #fff9;
    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: #fff;
    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: #ffffff80;
    font-size: 13px;
    font-style: normal;
    font-weight: 300;
    line-height: 22px
}