/* COMMON STYLES */
* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

a {
    text-decoration: none;
    color: inherit;
    transition: .3s;
}


img {
    max-width: 100%;
}

li {
    position: relative;
    list-style: none;
    z-index: 1;
}

html {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
    font-family: "Mont", sans-serif;
    color: var(--black);
    background-image: url("../img/bg.png");
    background-size: 1920px, cover;
    background-position: top center;
    background-color: #F8F9FB!important;
}

:root {
    --white: #FFFFFF;
    --black: #232526;
    --accent: #ffbc5b;
    --hover: #d59d4c;
    --bounce-transition: .35s cubic-bezier(.17,.67,.3,1.33);
    --slow-transition: .75s cubic-bezier(.2, .6, 0, 1);
}

/* COMMON STYLES */
.btn {
    display: inline-block;
    border-radius: 50px;
    padding: 17px 26px;
    font-weight: 600;
    font-size: 18px;
    line-height: 144%;
    text-align: center;
    color: var(--black);
    border: none;
    cursor: pointer;
    background-color: var(--accent);
    transition: .5s;
}

.btn:hover {
    transform: scale(1.05);
}

.mob {
    display: none;
}

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

.title {
    font-weight: 600;
    font-size: 80px;
    line-height: 120%;
    letter-spacing: 0.01em;
    text-transform: uppercase;
}

.description {
    font-weight: 400;
    font-size: 18px;
    line-height: 144%;
}

.logo {
    font-weight: 900;
    font-size: 24px;
    line-height: 133%;
    color: var(--accent);
}

/* header */
.header .container {
    padding-top: 48px;
    padding-bottom: 48px;
}

.header .logo {
    color: var(--accent);
}

/* main */
.main .container {
    padding-top: 80px;
    padding-bottom: 80px;
}

.main-advantages {
    display: flex;
    gap: 10px;
    margin-bottom: 40px;
}

.advantage {
    max-width: max-content;
    padding: 10px 16px;
    border-radius: 40px;
    font-weight: 400;
    font-size: 15px;
    line-height: 135%;
    border: 1px solid var(--accent);
}

.main-title {
    font-size: 88px;
    line-height: 109%;
    margin-bottom: 12px;
}

.main-description {
    max-width: 850px;
    font-weight: 500;
    font-size: 24px;
    line-height: 133%;
    text-transform: uppercase;
    margin-bottom: 24px;
}

/* partners */
.partners {
    padding-top: 120px;
    padding-bottom: 120px;
}

.partners-title {
    margin-top: 20px;
    margin-bottom: 80px;
}

.partners-items {
    display: flex;
    justify-content: center;
    gap: 56px;
}

/* delivery */
.delivery {
    padding-top: 120px;
    padding-bottom: 120px;
}

.delivery-info {
    max-width: 1200px;
}

.delivery-title {
    margin-bottom: 20px;
}

.delivery-description {
    max-width: 850px;
}

.delivery .btn {
    margin-bottom: 20px;
}

/* faq */
.faq {
    padding-top: 120px;
    padding-bottom: 120px;
    background-color: #ffffff;
}

.faq-title {
    margin-bottom: 64px;
}

.accordion-item {
    background: #f8f9fb;
    padding-bottom: 40px;
    border: 1px solid #ecedf5;
    border-radius: 40px;
    margin-bottom: 16px;
}

.accordion-item:last-child {
    margin-bottom: 0;
}

.accordion-header {
    padding: 40px 36px 0 36px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;

    font-weight: 600;
    font-size: 24px;
    line-height: 133%;
}

.accordion-header:focus {
    outline: none;
}

.arrow {
    min-width: 24px;
    margin-left: 30px;
    transition: transform 0.3s;
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;

    font-size: 24px;
    line-height: 133%;
}

.accordion-content p {
    margin-bottom: 0;
}

.accordion-item.active .accordion-content {
    max-height: max-content;
    padding: 0 36px;
}

.accordion-item.active .accordion-header {
    color: var(--accent);
    margin-bottom: 10px;
}

.accordion-item.active .arrow {
    transform: rotate(45deg);
}

.accordion-item.active .arrow path {
    stroke: var(--accent);
}

.questions {
    margin-top: 20px;
    font-weight: 600;
    font-size: 24px;
    line-height: 133%;
    padding-left: 36px;
}

.questions a {
    font-weight: 800;
    color: var(--accent);
    text-decoration: none;
    transition: .3s;
}

.questions a:hover {
    color: var(--hover);
    transition: .3s;
}

/* footer */
.footer {
    padding-top: 72px;
    padding-bottom: 40px;
    background-color: #000000;
}

.footer-top {
    display: flex;
    justify-content: space-between;
}

.footer-top .logo {
    font-size: 40px;
    letter-spacing: -0.02em;
    color: var(--white);
    margin-bottom: 10px;
}

.footer-logo-text {
    font-weight: 400;
    font-size: 16px;
    line-height: 150%;
    color: var(--white);
}

.footer-info {
    max-width: 459px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-info svg {
    min-width: 24px;
}

.footer-info-text {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-weight: 400;
    font-size: 20px;
    line-height: 120%;
    color: var(--white);
}

.footer-info-text a {
    text-decoration: none;
    color: var(--white);
}

.footer-info-text a:hover {
    color: var(--white);
    opacity: .7;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    margin-top: 140px;

    font-size: 20px;
    line-height: 120%;
    color: rgba(255, 255, 255, 0.6);
}

.footer-rights {
    display: flex;
    gap: 24px;
}

.footer-rights p {
    margin: 0;
}

.footer-offer {
    cursor: pointer;
    transition: .3s;
}

.footer-offer:hover {
    transition: .3s;
    transform: scale(1.05);
}

/* modal */
.modal__container {
    border-radius: 10px;
    padding: 60px;
}

.modal__header {
    margin-bottom: 24px;
    display: flex;
    align-items: center;
}

.modal__title {
    font-weight: 700;
    font-size: 46px;
    line-height: 110%;
    color: var(--black);
}

.modal__close {
    width: 24px;
    height: 24px;
}

.modal__close::before {
    font-weight: 700;
    font-size: 24px;
}

.modal__descr {
    color: gray;
    font-size: 20px;
}

.modal__form {
    margin-top: 24px;
    display: flex;
    flex-direction: column;
}

.modal__form-group {
    display: flex;
    align-items: center;
    margin-bottom: 24px;
}

.modal__form-checkbox {
    width: 16px;
    height: 16px;
    border-radius: 3px;
    margin-right: 8px;
}

.modal__form-label {
    line-height: 100%;
}

.modal__form-label a {
    line-height: 100%;
}

.modal__btn {
    background-color: var(--accent);
    color: var(--black);
    margin: 0 auto;
}

.modal__btn:hover {
    color: var(--white);
}

.modal__form-card {
    width: 100%;
    padding: 12px 16px;
    border-radius: 10px;
    border: 1px solid gray;
}

.modal__link {
    display: inline-block;
    color: var(--accent);
    cursor: pointer;
    text-decoration: underline;
    transition: all var(--bounce-transition);
    margin: 0;
}

.modal__link:hover {
    transform: scale(1.05);
    color: var(--hover);
}

#offer .modal__container {
    max-width: 80%;
    max-height: 90%;
}

#offer .modal__header {
    align-items: flex-start;
}

#offer .modal__body p {
    margin-bottom: 12px;
}

#offer .modal__body p:last-child {
    margin-bottom: 0;
}

/* slider */
.swiper {
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.myGallery .swiper-slide {
    max-width: 412px;
}

.myGallery .swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.myPartners .swiper-slide {
    max-width: 280px;
}

.myPartners .swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .3s linear;
}

.myPartners .swiper-slide .hover {
    display: none;
}

.myPartners .swiper-slide:hover .hover {
    display: block;
    transition: .3s linear;
}

.myPartners .swiper-slide:hover img:last-child {
    display: none;
    transition: .3s linear;
}

/*.swiper-slide {*/
/*    width: 50%;*/
/*}*/

/*.swiper-slide:nth-child(2n) {*/
/*    width: 30%;*/
/*}*/

/*.swiper-slide:nth-child(3n) {*/
/*    width: 30%;*/
/*}*/