* {
    margin: 0;
    box-sizing: border-box;
    font-family: 'OpenSans';
    padding: 0;
}

@font-face {
    font-family: 'OpenSans';
    src: url(../fonts/OpenSans/OpenSans-Regular.ttf);
}

@font-face {
    font-family: 'OpenSans';
    src: url(../fonts/OpenSans/OpenSans-Bold.ttf);
    font-weight: bold;
}

@font-face {
    font-family: 'FuturaPT';
    src: url(../fonts/FuturaPT/FuturaPT-Book.ttf);
}

@font-face {
    font-family: 'FuturaPTCond';
    src: url(../fonts/FuturaPT/FuturaPTCond-Book.ttf);
}

@font-face {
    font-family: 'FuturaPTCond';
    src: url(../fonts/FuturaPT/FuturaPTCond-Medium.ttf);
    font-weight: 500;
}

@font-face {
    font-family: 'FuturaPTCond';
    src: url(../fonts/FuturaPT/FuturaPTCond-ExtraBold.ttf);
    font-weight: 900;
}
@font-face {
  font-family: FuturaPT;
  font-display: swap;
  src: url("../fonts/FuturaPT/FuturaPT-Book.woff2") format("woff2"), url("../fonts/FuturaPT/FuturaPT-Book.woff") format("woff");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: FuturaPT;
  font-display: swap;
  src: url("../fonts/FuturaPT/FuturaPT-Light.woff2") format("woff2"), url("../fonts/FuturaPT/FuturaPT-Light.woff") format("woff");
  font-weight: 300;
  font-style: normal;
}





body {
    background: #706759;
}

.bg-wrapper {
    background: #706759;
}

.main-container {
    max-width: 1170px;
    margin: 0 auto;
}

.container {
    max-width: 1110px;
    width: 100%;
    margin: 0 auto;
}

.img-wrapper img {
    width: 100%;
}

.btn {
    background: transparent;
    border: 0;
    cursor: pointer;
    outline: none;
    transition: 0.25s;
}

.btn:hover {
    opacity: 0.8;
}

a.btn {
    display: inline-block;
    text-decoration: none;
}

.btn.btn-link {
    color: #fff;
    font-weight: bold;
    display: inline-flex;
    align-items: center;
}

.btn-link::after {
    content: '';
    display: inline-flex;
    margin-left: 15px;
    width: 19px;
    height: 2px;
    background: #FF7218;
}

.btn-green {
    background: #65AF59;
    border-radius: 5px;
    color: #F2F4F1;
    padding: 10px 10px;
    font-family: 'FuturaPT';
}

.btn-white {
    font-family: 'FuturaPT';
    background: #F2F4F1;
    border: 1px solid #184A2A;
    border-radius: 5px;
    color: #322F2F;
    padding: 10px 20px;
}

.color-darc-red {
    font-family: 'FuturaPTCond';
    color: #801C1C;
    font-weight: bold;
}

.color-green {
    color: #0FBF50;
}

.section-discount {
    display: inline-block;
    border-radius: 5px;
    padding: 5px 10px;
    filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.25));
    padding-right: 126px;
    background: url(../img/flag-decore.jpg) #fff no-repeat center right;
    background-size: contain;
}

.section-discount .price {
    font-size: 18px;
    line-height: 125.7%;
    letter-spacing: -0.035em;
    text-decoration-line: line-through;
    color: #989898;
}

.section-discount .discount {
    font-size: 36px;
    line-height: 0.8;
    letter-spacing: -0.035em;
    text-transform: lowercase;
    font-weight: bold;
    color: #FF4D01;
}

.section-discount .discount-wrapper {
    border: 1px solid #FF4D01;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-radius: 3px;
}

.section-discount .percent {
    font-weight: bold;
    color: #FF4D01;
    padding: 0 8px;
}

.section-discount .text {
    background: #FF4D01;
    color: #fff;
    padding: 0 3px;
}

/********************
* START: Section Header
********************/

.section-header {
    padding-top: 32px;
}

.section-footer .container,
.section-header .container {
    background: #1E1E1E;
    display: flex;
    max-width: 100%;
    align-items: center;
    justify-content: space-between;
    padding: 5px 10px;
}

.section-footer .container {
    background: #383838;
    padding-top: 15px;
}

.section-header__logo {
    display: flex;
    align-items: center;
    color: #fff;
}

.section-header__logo h2 {
    font-size: 33px;
    line-height: 1;
    margin-left: 10px;
}

.section-header__logo h2 span {
    font-size: 16px;
    display: inline-block;
    font-weight: normal;
    margin-top: 4px;
}

.section-header__contacts {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
}

.section-header__contacts img {
    max-width: 30px;
    margin-right: 5px;
}

.section-header__contacts a {
    display: flex;
    align-items: center;
    color: #fff;
    margin-left: 11px;
}

@media screen and (max-width:1170px) {
    .section-header {
        padding-top: 0 ;
    }
}

@media screen and (max-width: 850px) {
    .section-header .container {
        flex-direction: column;
    }
}

@media screen and (max-width: 760px) {
    .section-header__contacts {
        display: none;
    }

    .section-header .container {
        flex-direction: column;
        /* gap: 20px; */
    }

    .section-header__logo img {
        max-width: 50px;
    }

    .section-header__logo h2 {
        font-size: 18px;
        line-height: 1;
    }

    .section-footer .section-header__logo h2 {
        font-size: 30px;
    }

    .section-footer {
        background: #74A0A0;
        padding-top: 30px;
    }
}

@media screen and (max-width: 375px) {
    .section-header__contacts a {
        font-size: 14px;
    }
}

/********************
* END: Section Header
********************/

/********************
* START: Section Main & Section Decore
********************/

.section-main {
    position: relative;
	    background-color: #444444;
}

.section-main::after {
    content: '';
    position: absolute;
    background: url(../img/dff.jpg) no-repeat;
    background-size: cover;
    width: 55%;
    right: 0;
    top: 0;
    bottom: 0;
    mask-image: linear-gradient(to right, transparent, black 20%, black 80%, transparent);
}

.section-main .container {
    padding-top: 15px;
    padding-bottom: 40px;
}

.section-main .text-wrapper {
    max-width: 390px;
    position: relative;
    z-index: 2;    margin-left: 15%;
}

/**** START Insert Marafon ****/

.section-decore .container {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    align-items: center;
}

.section-decore .vieo-wrapper {
    max-width: 322px;
}

@media screen and (max-width:876px) {
    .section-decore .container {
        flex-wrap: wrap;
        justify-content: center;
    }
}

/**** END Insert Marafon ****/
img.timer-img {
    margin-top: -24px;
}
.timer-title{
	font-family: 'FuturaPTCond';
    font-size: 44px;
    font-weight: 900;
    line-height: 101.2%;
    color: #2B4229;
    padding-left: 83px;

    position: relative;
    display: inline-block;
}
.timer-title p{
	    font-family: 'FuturaPTCond';
    font-size: 40px;
    font-weight: 300;
    line-height: 101.2%;
    color: #313131;
    position: relative;
    letter-spacing: 3px;
}
.timer-title::after {
    content: '15';
    position: absolute;
    left: -22px;
    bottom: -43px;
    width: 75px;
    height: 111px;
    font-size: 113px;
}
.timer-date {
    line-height: 125.7%;
    letter-spacing: 0.02em;
    margin-bottom: 0px;
    font-size: 18px;
    margin-top: 10px;
}



.section-main .title {
    font-family: 'FuturaPTCond';
    font-size: 44px;
    font-weight: 900;
    line-height: 101.2%;
    color: #fff;
    padding-left: 83px;
    padding-top: 57px;
    position: relative;
    display: inline-block;
}
.section-main .title p {
font-family: 'FuturaPTCond';
    font-size: 40px;
    font-weight: 300;
    line-height: 101.2%;
    color: #fff;
    position: relative;
    letter-spacing: 3px;
}
.section-main .title::after {
    content: '15';
    position: absolute;
    left: -22px;
    bottom: -43px;
    width: 75px;
    height: 111px;
    font-size: 113px;
}

/* .section-main .title::before {
    content: '';
    position: absolute;
    left: 68px;
    top: 0;
    width: 267px;
    height: 57px;
    background: url(../img/decore-title.png) no-repeat;
    background-size: cover;
}    */

.section-main .description {
font-family: 'FuturaPT';
    font-weight: 300;
    font-size: 18px;
    line-height: 19px;
    margin-bottom: 20px; color: #fff;
}
.section-mainp {
    line-height: 125.7%;
    letter-spacing: 0.02em;
	margin-bottom: 7px;
	color: #fff;
	font-size: 18px;
}

.section-main .btn-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 8px;
    text-align: center;
    align-items: center;
}

.section-main .section-discount {
    margin: 10px 0;
}

/*** Section Decore ***/
.section-decore {
    position: relative;
    padding: 60px 0;
    background-image: url(../img/aa.png);
    background-color: #fff;
    background-repeat: no-repeat;
    background-position: top left;
    background-size: 480px;
}
.text-wrapper {
    width: 61%;
}
.text-wrapper2 {
    width: 400px;
    padding-left: 40px;
    padding-top: 420px;
}
.section-decore .title {
    text-transform: uppercase;
    font-family: 'FuturaPTCond';
    font-style: normal;
    font-weight: 400;
    font-size: 32px;
    line-height: 101.2%;
}
@media screen and (max-width:1220px) {
.container {
    padding: 0 10px;
}
}

@media screen and (max-width:1024px) {

.section-main .text-wrapper {
    margin-left: 3%;
}

}

@media screen and (max-width:768px) {
    .container {
        padding-left: 10px;
        padding-right: 10px;
    }
.section-mainp {
    font-size: 17px;
}
.section-decore .container {
    flex-direction: column-reverse;
}
.text-wrapper2 {
    max-width: 400px;
    padding-left: 0px;
    padding-top: 20px;
    width: 100%;
}

.section-decore .text-wrapper{
	padding-top: 380px;
}
.section-decore {
    background-size: 380px;
}

	
.section-main .title::after {
    content: '15';
    position: absolute;
    left: -13px;
    bottom: -53px;
    width: 75px;
    height: 111px;
    font-size: 90px;
}
.section-main .title {
   font-size: 40px;
}	
	
.section-main .title p {
    font-size: 35px;
}
	
	
	
	
	
	
.section-main .text-wrapper {
    max-width: 390px;
    position: relative;
    z-index: 2;
    margin-left: 15%;
}
.section-main .text-wrapper {
    max-width: 400px;
    margin: 0 auto;
    display: block;
}
.text-wrapper {
    width: 100%;
}
    .section-main::after {
        max-width: 500px;
        height: 418px;
        background: url(../img/dff.jpg) no-repeat;
        left: 0;
        right: 0;
        margin: 0 auto;
        background-size: 477px;
        background-position: center top;
        width: 100%;
    }
.section-main .text-wrapper {

}
    .section-main .container > .text-wrapper {
        padding-top: 350px;
        text-align: center;
    }
}


/********************
* END: Section Main & Section Decore
********************/

/********************
* START: Section Description
********************/

.section-description {
    padding-top: 0px;
    background: #fff;
    padding-bottom: 30px;
    position: relative;
}



.section-description .title,
.section-description .description {
    max-width: 572px;
}

.section-description .title {
    font-family: 'FuturaPTCond';
    text-transform: uppercase;
    font-size: 32px;
    font-weight: normal;
    line-height: 101.2%;

}

.section-description p {
    margin-top: 20px;
}

.section-description .description {
    font-size: 24px;
    line-height: 1;
    margin-top: 34px;
}

.section-description .description span {
    font-size: 16px;
}

.section-description .btn-green {
background: #448D5F;
    padding-left: 64px;
    padding-right: 64px;
    font-family: 'FuturaPTCond';
    font-size: 24px;
    line-height: 101.2%;
    text-transform: uppercase;
    color: #FFFFFF;
    margin-top: 33px;
    margin-left: auto;
    margin-right: auto;
    display: block;
    width: max-content;
}

@media screen and (max-width: 768px) {
    .section-description::after {
        display: none;
    }

    .section-description .container {
        max-width: max-content;
    }

    .section-description {
        padding-top: 30px;
    }
}


/********************
* END: Section Description
********************/

/********************
* START: Section Timetable
********************/

.section-timetable {
    background: #fff;
    position: relative;
    padding: 30px 0 50px;
}

.section-timetable::after {
    content: '';
    position: absolute;
    height: 60%;
    width: 100%;
    background: #F4F4F4;
    top: 25%;
    left: auto;
    z-index: 0;

}

.section-timetable .container {
    position: relative;
    z-index: 1;
}

.section-timetable .title {
    text-align: right;
    font-family: 'FuturaPTCond';
    font-size: 36px;
    line-height: 101.2%;
    text-transform: uppercase;
    color: #2B4229;
}

.section-timetable .description {
    text-align: right;
    font-family: 'FuturaPTCond';
    font-size: 36px;
    font-weight: 500;
    line-height: 101.2%;
    text-transform: uppercase;
}

.section-timetable .timetable-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 18px;
    margin-top: 30px;
}
.section-timetable .container {
    max-width: 750px;
    margin: 0px auto 0;
}




.timetable-wrapper .card {
    max-width: 165px;
    text-align: center;
    width: 100%;
}

.timetable-wrapper .card .card-header {
    border-radius: 6px 6px 0 0;
    letter-spacing: -0.035em;
    color: #fff;
    height: 110px;
    padding-top: 19px;
}

.timetable-wrapper .card .card-body {
    margin-top: -20px;
    padding-bottom: 5px;
    box-shadow: 0px 4px 7px rgba(0, 0, 0, 0.25);
    border-radius: 6px;
    background: #fff;
    color: #322F2F;
}

.timetable-wrapper .card .card-body span {
    display: block;
}

.bg-card_1 {
    background: url(../img/card/card1.jpg) no-repeat;
    background-size: cover;
}

.bg-card_2 {
    background: url(../img/card/card2.jpg) no-repeat;
    background-size: cover;
}

.bg-card_3 {
    background: url(../img/card/card3.jpg) no-repeat;
    background-size: cover;
}

.bg-card_4 {
    background: url(../img/card/card4.jpg) no-repeat;
    background-size: cover;
}

.bg-card_5 {
    background: url(../img/card/card5.jpg) no-repeat;
    background-size: cover;
}

.bg-card_6 {
    background: url(../img/card/card6.jpg) no-repeat;
    background-size: cover;
}

.bg-card_7 {
    background: url(../img/card/card7.jpg) no-repeat;
    background-size: cover;
}

.bg-card_8 {
    background: url(../img/card/card8.jpg) no-repeat;
    background-size: cover;
}

.bg-card_9 {
    background: url(../img/card/card9.jpg) no-repeat;
    background-size: cover;
}

.bg-card_10 {
    background: url(../img/card/card10.jpg) no-repeat;
    background-size: cover;
}

@media screen and (max-width:767px) {
    .section-timetable .timetable-wrapper {
        grid-template-columns: 1fr 1fr 1fr;
    }

    .section-timetable .timetable-wrapper .card {
        margin-left: auto;
        margin-right: auto;
    }
}

@media screen and (max-width:550px) {
    .section-timetable .timetable-wrapper {
        grid-template-columns: 1fr 1fr;
    }
}

/********************
* END: Section Timetable
********************/

/********************
* START: Section Program
********************/
.section-program {
    padding: 50px;
    background-image: url(../img/program.jpg);
    background-color: #3e453d;
    background-repeat: no-repeat;
    background-position: top left;
background-size: contain;
}
.section-program .header-wrapper {
    display: flex;
    justify-content: space-between;
}

.section-program .text-wrapper {
    max-width: 367px;
}

.section-program .img-wrapper {
    max-width: 311px;
    width: 100%;
    border-radius: 5px;
    overflow: hidden;
    margin-right: 15px;
}
[data-showmore-button] span:last-child {
    display: none;
}
._showmore-active [data-showmore-button] span {
    display: none;
}

._showmore-active [data-showmore-button] span:last-child {
    display: block;
}
button.duiko-showmore__more {
    margin-left: auto;
    display: block;
    margin-top: 20px;
    border: 0;
    background: none;
    font-size: 18px;
    font-weight: bold;
}
.dale{
	
}
.skrit{
	
}

.section-program .title {
    font-family: 'FuturaPTCond';
    font-size: 36px;
    line-height: 101.2%;
    text-transform: uppercase;
    color: #fff;
    font-weight: 900;
    padding-left: 35%;
}

.section-program span {
    font-family: 'FuturaPTCond';
    font-weight: 500;
}

.section-program .description {
    font-family: 'FuturaPTCond';
    color: #2D2824;
    text-transform: uppercase;
    font-weight: 500;
    font-size: 24px;
}

.section-program .description span {
    font-family: 'FuturaPTCond';
    color: #000;
}
.section-program .program-wrapper {
    margin-top: 24px;
    display: flex;
    color: #fff;
    justify-content: flex-end;
    gap: 60px;
}

.section-program .program-wrapper ul {

    padding: 0;
    max-width: 310px;

}

.section-program .program-wrapper ul li {
    margin-top: 3px;
    position: relative;
}



.section-program .btn-green {
    font-family: 'FuturaPTCond';
    padding-left: 50px;
    display: block;
    margin-top: 50px;
    padding-right: 50px;
    background: #448D5F;
    font-weight: 500;
    font-size: 24px;
    line-height: 101.2%;
    text-transform: uppercase;
    color: #FFFFFF;
    width: max-content;
    margin-left: auto;
    margin-right: auto;
}

@media screen and (max-width:767px) {
    .section-program .header-wrapper {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .section-program .program-wrapper {
        flex-direction: column;
        align-items: center;
    }

    .section-program {
        padding-left: 0;
        padding-right: 0;
    }

    .section-program .img-wrapper {
        margin-right: 0;
    }
}

@media screen and (max-width: 424px) {
    .section-program .title {
        font-size: 29px;
    }

    .section-program .program-wrapper ul {
        margin-right: 0;
        margin-left: 20px;
    }
}

/********************
* END: Section Program
********************/

/********************
* START: Section Timetable
********************/

.section-timer {
    background: #fff;
    padding: 60px 0;
    position: relative;
}
.banner__text-price-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: center;
    width: 100%;
    margin-bottom: 0.9375rem;
}
.banner__text-price-info {
    font-weight: 300;
}
.andrii-duiko {
    font-weight: 450;
    font-size: 1.3125rem!important;
    text-align: left;
    margin-bottom: 0.1875rem;
    text-transform: uppercase;
}
.banner__text-price-info p {
    font-size: 17px;
    color: #fff;
    font-family: FuturaPT;
}
.banner__text-price-info span {
    font-size: 26px;
    font-family: FuturaPT;
    color: #fff;
}
.banner__text-price {
    color: #fff;
}

.price-wrapper:nth-child(1) {
    margin-bottom: 0.3125rem;
}
.price-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: end;
    gap: 0.625rem;
    margin-bottom: 0.3125rem;
}
.banner__text-price p {
    font-size: 1.125rem;
}
.banner__text-price p s{
font-family: FuturaPT;
}
.price-wrapper .price-red {
    color: #F16B40;
    font-weight: 600;
    font-size: 24px;
    font-family: FuturaPT;
}
.price-wrapper span b {
    color: #F16B40;
    font-weight: 600;
    font-size: 24px;
    font-family: FuturaPT;
    display: block;
    margin-top: 8px;
    margin-bottom: 3px;
}

.banner__text-price span {
    line-height: 95%;
	font-size: 1.125rem;
}
.price-grn {
    white-space: nowrap;
    background: #fff;
    padding: 0.1875rem 0.875rem 0.1875rem 0.1875rem;
    border-radius: 2px;
    display: block;
}
.price-grn s {
    font-weight: 300;
    font-family: FuturaPT;
    color: #000;
}
.price-grn b {
    color: #3b3b3b;
    font-size: 1rem!important;
    margin-left: 0;
    font-family: FuturaPT;
}




.section-timer .banner__text-price-info p, .section-timer .banner__text-price-info span, .section-timer .banner__text-price p s, .section-timer .banner__text-price span{
	color:#000;
}
.section-timer .price-wrapper span b {
    display: inline-block;
    color: #871010;
}

.section-timer .price-wrapper .price-red {
 color: #871010;
}

.section-timer .banner__text-price-info span {
    font-size: 24px;
}

.section-timer .banner__text-price-wrapper{
	    align-items: flex-start;	
		margin-bottom: 0;
}
.section-timer .banner__text-price-info {
    font-weight: 300;
    margin-top: 15px;
}
.section-timer .banner__text-price p span {
    font-size: 15px;
    margin-right: 9px;
}
.section-timer .rt{
	background:#3F463E!important;
}







/* .section-timer::after {
    content: '';
    position: absolute;
    left: 0;
    top: -110px;
    background: url(../img/timer-decor.png) no-repeat;
    background-size: contain;
    width: 512px;
    height: 757px;
} */
.section-timer .container {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
}
.section-timer .container .text-wrapper {
    max-width: 425px;
    width: 100%;
    text-align: center;

}

.section-timer .title {
    font-weight: 400;
    font-size: 18px;
    line-height: 21px;
    text-align: center;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    color: #330000;
	margin-bottom: 10px;
}

.section-timer .border-contaier {
    margin: 20px auto;
    border: 1px solid #330000;
    border-radius: 25px;
    max-width: 364px;
    padding: 5px 0;
    width: 100%;
}

.section-timer .section-discount {
    filter: none;
}

.section-timer .description {
    font-size: 18px;
    line-height: 21px;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    color: #330000;
}

.section-timer .timer {
    min-height: 100px;
    margin-top: 15px;
    margin-bottom: 0px;
}

.section-timer .timer>div {
    min-width: 100% !important;
}

.timer-element>span:first-child {
    width: 63px;
    height: 63px;
    display: flex !important;
    align-items: center;
    justify-content: center;
    border-radius: 100%;
    border: 3px solid #330000;
}

.timer-element>span:first-child span {
    font-size: 24px;
    font-weight: bold;
}

.timer-element>span:last-child {
    padding-top: 12px;
    font-weight: bold;
    font-size: 18px !important;
}

.timer-separator {
    font-size: 36px !important;
    line-height: 2 !important;
}

@media screen and (max-width:767px) {
    .section-timer .container {
        flex-direction: column;
        align-items: center;
    }

    .section-timer .img-wrapper {
        max-width: 380px;
        margin-bottom: 20px;
    }

    .section-timer .container .text-wrapper {
        margin-right: auto;margin-left: auto;
    }
	
.section-program .title {
    padding-left: 30px;
}
.section-program .title {
    padding-left: 30px;
    margin-top: 300px;
}	
.section-program .program-wrapper ul {
    max-width: 1000px;
}	
	.section-program {
    background-image: url(../img/program-mob.jpg);
}
	.section-program .program-wrapper {
    gap: 10px;
}
.timer-title p {
    font-size: 35px;

}	
.timer-title {
    font-size: 39px;
}	
	.timer-title::after {
    content: '15';
    position: absolute;
    left: -5px;
    bottom: -51px;
    width: 75px;
    height: 111px;
    font-size: 97px;
}
	.timer-date {
    line-height: 125.7%;
    letter-spacing: 0.02em;
    margin-bottom: 0px;
    font-size: 16px;
    margin-top: 10px;
}
.section-timer .banner__text-price-info span {
    font-size: 19px;
}	
.price-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: end;
    gap: 0.625rem;
    margin-bottom: 0.3125rem;
  
}	
.section-timer .price-wrapper {

    justify-content: flex-end;
}	
	
	
	
	
	
	
	
}

@media screen and (max-width:600px) {
    .timer-element>span:first-child {
        width: 56px;
        height: 56px;
    }

    .timer-element>span:first-child span {
        font-size: 24px !important;

    }

    .timer-separator {
        padding: 0 6px !important;
    }

    .timer-separator {
        font-size: 24px !important;
        line-height: 2.5 !important;
    }

    .timer-element>span:last-child {
        padding-top: 7px;
        font-weight: normal;
    }
}

/********************
* END: Section Timer
********************/

/********************
* START: Section Comments
********************/

.section-comments {
    text-align: center;
    padding: 45px 0;
    background: #706759;
}

.section-comments .container {
    max-width: 100%;
}

.section-benefits .title,
.section-comments .title {
    font-family: 'FuturaPTCond';
    font-size: 36px;
    line-height: 101.2%;
    text-align: center;
    text-transform: uppercase;
    color: #FFFFFF;
}

.section-benefits .description,
.section-comments .description {
    font-family: 'FuturaPTCond';
    font-size: 36px;
    line-height: 101.2%;
    text-align: center;
    font-weight: normal;
    text-transform: uppercase;
    color: #FFFFFF;
}

.section-comments .video-wrapper {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 74px;
}

.section-comments .video-wrapper .video-card {
    max-width: 300px;
    margin: 15px;
}

.section-comments .video-wrapper video {
    width: 100%;
}

/********************
* END: Section Comments
********************/

/********************
* START: Section Benefits
********************/

.section-benefits {
    padding: 50px 0;
    background: url(../img/bg-benefits.jpg) no-repeat center;
    background-size: cover;
    color: #fff;
}

.section-benefits h4 {
    margin-top: 27px;
}

.section-benefits .text-wrapper {
    max-width: 400px;
    width: 100%;
    text-align: center;
}


.section-benefits .info-header {
    display: flex;
    list-style: none;
    margin-top: 20px;
    width: 100%;
    text-align: center;
    justify-content: space-between;text-transform: uppercase;
}
ul.info-body {
    text-transform: uppercase;
}
.section-benefits .info-header span {
    font-size: 16px;
    display: block;
    font-weight: bold;
}

.section-benefits .info-header span b {
    font-size: 24px;
}

.section-benefits .info-header li {
    max-width: 121px;
}

.section-benefits .info-body li {
    border: 1px dashed #FFFFFF;
    border-radius: 10px;
    list-style: none;
    padding: 8px 16px;
    text-align: left;
    margin-top: 16px;
}

@media screen and (max-width:767px) {
    .section-benefits {
        background-position-x: 85% ;
        padding:0;
    }

    .section-benefits .container {
        padding: 30px 10px;
        max-width: 100%;
        background: linear-gradient(0deg, rgba(99, 79, 61, 0.8), rgba(99, 79, 61, 0.8));
    }
    .section-benefits .text-wrapper {
        margin-right: auto;
        margin-left: auto;

    }
	
	.section-benefits .info-header li {
    max-width: 121px;
    font-size: 12px;
}
}

@media screen and (max-width:424px) {
    .section-benefits .info-body {
        padding: 0 10px;
    }
    .section-benefits .info-body li {
        padding: 4px 8px;
    }
}

/********************
* END: Section Benefits
********************/

/********************
* START: Section Author
********************/

.section-author {
    padding: 30px 0;
    background: url(../img/aa.jpg) #fff no-repeat;
    background-size: cover;    background-position: center left 40%;
}

.section-author .img-wrapper {
    display: none;
}

.section-author .text-wrapper {
    max-width: 530px;
    margin-left: auto;
}

.section-author .title {
    font-family: 'FuturaPTCond';
    font-weight: 500;
    font-size: 40px;
    line-height: 95.7%;
    color: #330000;
}
.section-author .title {
    font-family: 'FuturaPT';
    font-weight: 100;
    font-size: 32px;
    line-height: 100.7%;
    color: #383838;
    text-align: center;
    margin-bottom: 30px;
}
.section-author .description {
    font-family: 'FuturaPT';
    font-weight: 400;
    font-size: 18px;
    line-height: 109.2%;
    margin-top: 15px;
}
.avtor-info {
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
}

.avtor-title {
    font-family: 'FuturaPT';
    font-weight: 100;
    font-size: 32px;
    line-height: 100.7%;
    color: #383838;
    margin-bottom: 10px;
    text-transform: uppercase;
    margin-top: 30px;
}
.avtor-info span {
    display: block;
    font-size: 30px;
}
.section-author .contacts {
    font-family: 'FuturaPTCond';
    font-weight: 400;
    font-size: 28px;
    line-height: 95.7%;
    color: #383838;
    margin-top: 20px;
}

.section-author .contacts a {
    display: block;
    font-family: 'FuturaPTCond';
    font-style: normal;
    font-weight: 400;
    font-size: 28px;
    line-height: 95.7%;
    color: #383838;
}

.section-author .btn-green {
    background: #448D5F;
    padding-left: 64px;
    padding-right: 64px;
    font-family: 'FuturaPTCond';
    font-size: 24px;
    line-height: 101.2%;
    text-transform: uppercase;
    color: #FFFFFF;
    margin-top: 33px;
}
.section-decore .btn-green {
    background: #448D5F;
    padding-left: 64px;
    padding-right: 64px;
    font-family: 'FuturaPTCond';
    font-size: 24px;
    line-height: 101.2%;
    text-transform: uppercase;
    color: #FFFFFF;
    margin-top: 33px;
}
.section-timer .btn-green {
    background: #448D5F;
    padding-left: 64px;
    padding-right: 64px;
    font-family: 'FuturaPTCond';
    font-size: 24px;
    line-height: 101.2%;
    text-transform: uppercase;
    color: #FFFFFF;
    margin-top: 20px;
}
.img-wrapper {
    text-align: center;
}


@media screen and (max-width:767px) {
    .section-author .img-wrapper {
        display: block;
        max-width: 362px;
        margin-right: auto;
        margin-left: auto;
    }

    .section-author {
        background: #fff;
    }

    .section-author .text-wrapper {
        margin-right: auto;
    }
	.container {
    padding: 0 10px;
}
.avtor-info {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    text-align: center;
}

.section-author {
    padding: 0px 0 30px;
}
h3.title {
    margin-top: 35px;
}





}

@media screen and (max-width: 424px) {
    .section-author .title {
        font-size: 37px;
    }
}

/********************
* END: Section Author
********************/

/********************
* START: Section Video
********************/
.section-video {
    background: #383838;
    padding-top: 60px;
    padding-bottom: 30px;
    border-bottom: 1px solid #5B5B5B;
}

.section-video .container {
    display: flex;
    align-items: center;
    max-width: 100%;
    justify-content: center;
}

.section-video .video-item {
    max-width: 500px;
    display: flex;
    color: #fff;
    text-decoration: none;
}

.section-video .video-item h4 {
    font-size: 24px;
    font-family: "FuturaPT";

}

.section-video .video-item h4 span {
    font-weight: normal;
    font-family: 'FuturaPTCond';
    display: block;
    margin-top: 5px;
}

.section-video .img-wrapper {
    max-width: 300px;
    margin-right: 20px;
}

.section-video .video-item .text-wrapper {
    display: flex;
    justify-content: space-between;
    flex-direction: column;
}

.section-video .video-item .btn-link {
    font-weight: normal;
}

@media screen and (max-width:1023px) {
    .section-video .container {
        flex-direction: column;
    }

    .section-video .container .video-item  {
        margin-bottom: 15px;
    }
}

@media screen and (max-width:767px) {
    .section-video .container .video-item {
        flex-direction: column;
    }

    .section-footer {
        padding-top: 0;
    }
	
.banner__text-price-info span {
    font-size: 20px;
    font-family: FuturaPT;
    color: #fff;
}	
.banner__text-price-info p {
    font-size: 16px;
    color: #fff;
    font-family: FuturaPT;
}	
.banner__text-price {
    text-align: left;
}	
	
	
	
	
	
}

/********************
* END: Section Video
********************/