@font-face {
    font-family: "ProximaNova-Bold";
    src: url("../fonts/ProximaNova-Bold.woff") format("woff");
    /* chrome, firefox */
    font-style: normal;
    font-weight: 700;
}

@font-face {
    font-family: "ProximaNova-Regular";
    src: url("../fonts/ProximaNova-Regular.woff") format("woff");
    /* chrome, firefox */
    font-style: normal;
    font-weight: 400;
}

@font-face {
    font-family: "ProximaNova-Semibold";
    src: url("../fonts/ProximaNova-Semibold.woff") format("woff");
    /* chrome, firefox */
    font-style: normal;
    font-weight: 600;
}

@font-face {
    font-family: "ProximaNova-Black";
    src: url("../fonts/ProximaNova-Black.woff") format("woff");
    /* chrome, firefox */
    font-style: normal;
    font-weight: 900;
}

.carousel-container {
  width: 100%;
  margin: auto;
  position: relative;
  display: flex;
  flex-direction: column;
}


.carousel {
    width: 100%;
    position: relative;
    overflow: hidden;
}

.carousel-item {
    opacity: 0;
    width: 100%;
    height: 100%;
    display: none;
    transition: opacity 0.5s ease-in-out;
}

.carousel-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }

.carousel-item.active {
    opacity: 1;
    display: block;
}

.btn {
    padding: 1em 1em;
    top: 50%;
    outline: none;
    border: none;
    cursor: pointer;
    text-transform: uppercase;
    font-size: 16px;
    font-weight: 400;
    background-color: #10100e;
    transition: transform 0.2s ease-in-out;
    border-radius: 50%;
}

.btn2 {
    padding: 1em 1em;
    position: absolute;
    transform: translateY(-50%);
    top: 50%;
    outline: none;
    border: none;
    cursor: pointer;
    font-size: 12px;
    font-weight: 900;
    color: #10100e;
    background-color: #007A51;
    transition: transform 0.2s ease-in-out;
    border-radius: 50%;
}

.btn3 {
    padding: 1em 1em;
    top: 50%;
    outline: none;
    border: none;
    cursor: pointer;
    font-size: 12px;
    font-weight: 900;
    background-color: #10100e;
    transition: transform 0.2s ease-in-out;
    border-radius: 50%;
}

.btn4 {
    padding: 1em 1em;
    position: absolute;
    transform: translateY(-50%);
    top: 50%;
    outline: none;
    border: none;
    cursor: pointer;
    font-size: 12px;
    font-weight: 900;
    color: #10100e;
    background-color: #007A51;
    transition: transform 0.2s ease-in-out;
    border-radius: 50%;
}

.carousel-buttons {
    display: flex;
    justify-content: center;
    column-gap: 15px;
}

.btn.active {
    background-color: #007A51;
}

.btn:focus {
    background-color: #007A51;
}

.btn:hover {
    background-color: #007A51;
}

.prev {
    left: -5%;
}

.prev2 {
    left: -5%;
}

.next {
    right: -5%;
}

.next2 {
    right: -5%;
}

.prev3 {
    left: -5%;
}

.prev4 {
    left: -5%;
}

.next3 {
    right: -5%;
}

.next4 {
    right: -5%;
}

.dots {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.dots2 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.dots3 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.dots4 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.dot {
    cursor: pointer;
    height: 10px;
    width: 10px;
    border-radius: 50%;
    background-color: #D4D4D4;
    transition: background-color 0.2s ease;
}

.dot2 {
    cursor: pointer;
    height: 10px;
    width: 10px;
    border-radius: 50%;
    background-color: #D4D4D4;
    transition: background-color 0.2s ease;
}

.dot3 {
    cursor: pointer;
    height: 10px;
    width: 10px;
    border-radius: 50%;
    background-color: #D4D4D4;
    transition: background-color 0.2s ease;
}

.dot4 {
    cursor: pointer;
    height: 10px;
    width: 10px;
    border-radius: 50%;
    background-color: #D4D4D4;
    transition: background-color 0.2s ease;
}

.dot:hover {
    background-color: #007A51;
}

.dot.active {
    background-color: #007A51;
}


.dot2:hover {
    background-color: #007A51;
}

.dot2.active {
    background-color: #007A51;
}

.dot3:hover {
    background-color: #007A51;
}

.dot3.active {
    background-color: #007A51;
}

.dot4:hover {
    background-color: #007A51;
}

.dot4.active {
    background-color: #007A51;
}

.product__about-list {
    display: flex;
    column-gap: 14px;
    list-style-type: none;
    margin: 0;
    padding: 0;
    margin-bottom: 50px;
}

.product__about-tag {
    margin: 0;
    padding: 8px;
    font-size: 20px;
    font-weight: 400;
    line-height: 1;
    text-align: center;
    color: #141414;
    border-radius: 5px;
    border: 1px solid #141414;
    user-select: none;
    text-decoration: none;
}

.product__about-tag--orange {
    border-color: #FFAE00;
    color: #FFAE00;
}

body {
    background-color: #FFFFFF;
    font-family: 'Proxima Nova', sans-serif;
    font-size: 100%;
    font-style: normal;
    font-weight: 400;
}

.wrapper {
    background-image: url(../img/proflit-banner-7.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    height: auto;
    min-height: 720px;
}

.wrapper_podarok {
    /* background-image: url(../img/bg_podarok_sale.jpg);
    background-position: top center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    height: auto; */
    background: linear-gradient(6.61deg, #37A050 2.73%, #0A7642 68.01%);
}

.header_text-desc {
    color: #000;
    font-size: 2.5rem;
    font-family: 'Proxima Nova', sans-serif;
    font-style: normal;
    font-weight: 700;
    line-height: 3.5rem;
}

.header_content-buttons {
    display: flex;
    column-gap: 16px;
}

.privileges_content-block {
    display: flex; 
    justify-content: space-between;
    align-items: center;
}

.privileges_content p {
    color: #FFF;
    font-size: 1.75rem;
    font-family: 'Proxima Nova', sans-serif;
    letter-spacing: 0.0625rem;

}

.privileges_content ul li {
    color: #FFF;
    font-size: 1.5rem;
    font-family: 'Proxima Nova', sans-serif;
    letter-spacing: 0.0625rem;
}

.crown {
    content: url(../img/crown.png);
    width: 23px;
    height: 13px;
    margin-right: 0.75rem;
}

.privileges_content p small,
.privileges_content p small a {
    color: #FFF;
    text-align: center;
    font-size: 1.125rem;
    font-family: 'Proxima Nova', sans-serif;
    font-weight: 600;
    letter-spacing: 0.0625rem;
}


.bage {
    color: #E8505B;
    text-align: center;
    font-size: 1rem;
    font-family: 'Proxima Nova', sans-serif;
    letter-spacing: 0.0625rem;
    text-transform: uppercase;

}

.sub_date {
    font-size: 1rem;
    font-family: 'Proxima Nova', sans-serif;
    font-weight: 700;
    letter-spacing: 0.0625rem;
}

/* .podpiska_content s {
    font-size: 1.75rem;
    font-family: 'Proxima Nova', sans-serif;
    letter-spacing: 0.0625rem;
} */

.card {
    column-gap: 22px;
    row-gap: 22px;
    border: 0;
    align-items: center
}

.card-body {
    background-color: #FFFFFF;
    padding: 29px;
    border-radius: 10px; 
    flex: 0;
    box-shadow: 0px 4px 10px 0px #00000040;
}

.card-price {
    margin-bottom: 30px;
}

.card-title-bg {
    background: url(../img/price-bg.png) no-repeat; 
    display:inline-block;
    min-height: 64px;
    padding-top:15px;
    padding-left: 5px;
}


.podpiska_content h5.card-title {
    font-size: 32px;
    font-weight: 700;
    line-height: 39px;
    letter-spacing: 0em;
    text-align: center;
    color: #141414;
    margin-bottom: 20px;
}

.podpiska_content-block {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}

.podpiska_content-img {
    max-width: 767px;
    width: 100%;
    margin-top: -80px;
}

/* .podpiska_content p.card-text {
    font-family: Proxima Nova;
    font-size: 24px;
    font-weight: 400;
    line-height: 29px;
    letter-spacing: 0em;
    text-align: center;
    color: #141414;
} */

.podpiska_content span.card-text {
    font-size: 24px;
    font-weight: 400;
    line-height: 29px;
    letter-spacing: 0em;
    text-align: center;
    color: #141414;
    text-decoration: line-through;
} 
.podpiska_content span.big-text {
    font-size: 48px;
    font-weight: 600;
    line-height: 29px;
    letter-spacing: 0em;
    text-align: center;
    color: #141414;
} 

.podarok_content {
    width: 100%;
}

.podarok_content-block {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    flex-wrap: wrap;
}

.podarok-list__item {
    display: flex;
    column-gap: 31px;
    width: 50%;
}

.podarok-list__item p {
    font-size: 22px;
    font-weight: 400;
    line-height: 28px;
    letter-spacing: 0px;
    text-align: left;
    color: #FFFFFF;
    margin-bottom: 0;
    padding-right: 10px;
}

.podarok-list__item-pic {
    width: 15%;
    max-width: 42px;
}

.podarok-list {
    display: flex;
    flex-wrap: wrap;
    row-gap: 40px;
    list-style: none;
}

.card-text-vip {
    font-size: 26px;
    font-weight: 600;
    line-height: 55px;
    letter-spacing: 0px;
    text-align: center;
    color: #EE9615;
    margin-bottom: 0;
}

.bg-lightblue {
    background-color: #ECF7F2;
}

/* .about {
    
} */

.form-label {
    color: #FFFFFF;
}

.title-forma {
    font-size: 32px;
    font-weight: 400;
    line-height: 39px;
    letter-spacing: 0px;
    text-align: center;
    color: #FFFFFF;

}

.title-green {
    font-size: 40px;
    font-weight: 400;
    line-height: 55px;
    letter-spacing: 0px;
    text-align: center;
    color: #007A51;
}

.title {
    font-size: 36px;
    font-weight: 700;
    line-height: 55px;
    letter-spacing: 0px;
    text-align: center;
    color: #141414;
}

.title--podarok {
    font-size: 36px;
    font-weight: 700;
    line-height: 55px;
    letter-spacing: 0px;
    text-align: center;
    color: #FFFFFF;
}

.text-title {
    font-size: 25px;
    font-weight: 400;
    line-height: 35px;
    text-align: center;
    color: #141414;
}

.text-title--podarok {
    color: #FFFFFF;
}

.text-title-left {
    font-size: 25px;
    font-weight: 400;
    line-height: 35px;
    text-align: left;
    color: #141414;
}

.about__title {
    font-size: 36px;
    font-weight: 700;
    line-height: 55px;
    letter-spacing: 0px;
    text-align: center;
    color: #141414;
}

.about__list {
    margin-top: 1.25rem;
    list-style: none;
}

.about__list-item {
    display: grid;
    grid-template-columns: 70px auto auto;
    /* justify-content: space-between; */
    justify-content: center;
    margin-bottom: 70px;
    row-gap: 1rem 2rem;
}

.about__content {
    padding-left: 28px;
    padding-right: 125px;
    z-index: 0;
}

/* .about__content:before {
    content: '';
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    width: 138px;
    height: 179px;
    background: url("../img/1.png") no-repeat;
    background-size: contain;
} */

.about__content--second {
    grid-column-start: 2;
    padding-right: 125px;
    padding-left: 28px;
}

/* .about__content--second:before {
    left: auto;
    right: 0;
    width: 144px;
    height: 171px;
    background-image: url("../img/2.png");
} */

/* .about__content--third:before {
    width: 147px;
    height: 171px;
    background-image: url("../img/3.png");
} */
/* 
.about__content--four:before {
    width: 132px;
    height: 180px;
    background-image: url("../img/4.png");
}

.about__content--five:before {
    width: 147px;
    height: 173px;
    background-image: url("../img/5.png");
} */

.about__pic--second {
    grid-row-start: 1;
    margin: 0 auto;
}

.about__content-title {
    margin: 0;
    font-size: 27px;
}

.about__content-desc {
    margin: 0;
    margin-top: 10px;
    font-size: 20px;
    font-weight: 400;
    line-height: 30px;
    letter-spacing: 0px;
    text-align: left;

}

.about__chat {
    font-size: 36px;
    font-weight: 400;
    line-height: 43px;
    letter-spacing: 0px;
    text-align: center;
    color: #141414;
}

.about__content-desc--link {
   color: #007A51;
}

.about__chat--link {
   color: #007A51;
   text-decoration: none;
   font-weight: 600;
}


.about__content-title {
    font-size: 30px;
    font-weight: 700;
    line-height: 29px;
    letter-spacing: 0px;
    text-align: left;
}

.about_desc {
    color: #303F46;
    text-align: center;
    font-size: 2.25rem;
    font-family: 'Proxima Nova', sans-serif;
    line-height: 3.4375rem;
    border-top: 2px solid #83B1C9;
    border-bottom: 2px solid #83B1C9;
}

.about_desc a {
    color: #303F46;
}

.quote {

    font-size: 1.8125rem;
    font-family: 'Proxima Nova', sans-serif;
    font-weight: 600;
    line-height: 2.4375rem;
    margin-bottom: 34px;
}

.quote_autor span {
    font-size: 1.6875rem;
    font-family: 'Proxima Nova', sans-serif;
    line-height: 1.8125rem;
}

.quote_autor {
    font-size: 1.25rem;
    font-family: 'Proxima Nova', sans-serif;
    line-height: 2.1875rem;
}

.chek {
    background: url(../img/chek.png) 0 0 no-repeat;
    width: 30px;
    height: 30px;
    padding-right: 3rem;

}

.chek_desc {
    font-size: 20px;
    font-weight: 400;
    line-height: 32px;
    letter-spacing: 0px;
    text-align: left;
    color: #141414;
}

.chek_desc b {
    font-size: 27px;
    font-weight: 800;
    line-height: 29px;
    letter-spacing: 0px;
    text-align: left;

}


.btn_white {
    width: 100%;
    background: #F5F4E5;
    border-radius: 10px;
    box-shadow: 0px 8px 10px 0px rgba(0, 0, 0, 0.25);
    border: 0;
}

.btn_white:hover {
    background-color: #F9ED32;
    border: 2px solid linear-gradient(90deg, #FFAE00 0%, #F9ED32 100%);;
}

.btn_orange {
    border-radius: 10px;
    background: linear-gradient(90deg, #FFAE00 0%, #F9ED32 100%);
    box-shadow: 0px 8px 10px 0px rgba(0, 0, 0, 0.25);
    border: 0;
}

.btn_orange--header {
    width: 100%;
    padding: 16px;
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 1px;
    text-align: center;
    color: #141414;
}

.btn_orange--forma {
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
}

.btn_orange--podarok {
    width: 100%;
    padding: 12px;
    font-size: 20px;
    font-weight: 700;
    line-height: 36px;
    letter-spacing: 1px;
    text-align: center;
    color: #141414;
}

.btn_orange--vip-podpiska {
    max-width: 400px;
    margin-top: 20px;
    width: 100%;
    padding: 12px;
    font-size: 20px;
    font-weight: 700;
    line-height: 36px;
    letter-spacing: 1px;
    text-align: center;
    color: #141414;
}

.btn_yellow {
    background-color: #FAFF19;
    width: 26rem;
    height: 5.7075rem;
    color: #000;
    text-align: center;
    font-size: 1.75rem;
    font-family: Arial;
    font-style: normal;
    font-weight: 400;
    line-height: 4.5rem;
    text-transform: uppercase;
}

.btn_yellow:hover {
    border: 1px solid #FFAE00;
    background-color: #F9ED32;
}

.header_block {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header_content {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    /*margin-top: 75px;*/
}

.header_content-pic {
    width: 100%;
    max-width: 767px;
    margin-bottom: 37px;
}

.header_content-logo {
    width: 100%;
    max-width: 205px;
    margin-bottom: 37px;
}

.header_content-tel {
    display: flex;
    justify-content: flex-end;
}

.footer-tel {
    display: flex;
    justify-content: center;
}

.mt-6 {
    margin-top: 6rem;
}

.mb-6 {
    margin-bottom: 6rem;
}

.wa-text {
    color: #000;
    font-size: 1.125rem;
    font-family: Proxima Nova;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    letter-spacing: 0.0625rem;
}

.wa-text a {
    color: #000;
}

.podarok-list__item-pic--one {
    width: 28%;
}

@media (max-width: 768px) {

    .header_content-tel {
        margin-bottom: 30px;
    }

    .product__about-list {
        justify-content: center;
    }

    .podarok-list__item {
        width: 100%;
    }

    .podpiska_content-block {
        flex-wrap: wrap;
    }

    .privileges_content-block {
        flex-wrap: wrap;
    }

    .header_block {
        flex-wrap: wrap;
        justify-content: center;
    }

    .product__about-tag {
        font-size: 13px;
    }

    .btn_orange--forma {
        margin-top: 30px;
    }

    .text-form-block {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .text-form {
        text-align: center;
    }

    .btn2 {
        top: 100%;
    }

    .prev2 {
        left: 25%;
    }

    .next2 {
        right: 25%;
    }

    .btn4 {
        top: 100%;
    }

    .prev4 {
        left: 25%;
    }

    .next4 {
        right: 25%;
    }

    .podarok-list__item--two {
        order: 2;
    }

    .podarok-list__item--three {
        order: 1;
    }

    .podarok-list__item--four {
        order: 2;
    }
}

@media (max-width: 425px) {

    .header_content-buttons {
        flex-wrap: wrap;
        justify-content: center;
    }

    .privileges_content p {
        max-width: 100%;
        width: 100%;
    }

    .btn_white {
        width: 100%;
    }

    .podarok-list__item-pic--one {
        width: 36%;
    }

    .product__about-tag {
        font-size: 9px;
    }
}

