:root {
    --prime: #297676;
    --sec: #ffae00;
    --black: #282828;

}

.pad,
.mob {
    display: none;
}

img {
    max-width: 100%
}

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

a:hover {
    color: inherit;

}

ul,
ol {
    margin: 0;
    padding: 0;
    list-style: none;
}

p {
    margin-bottom: 0;
}

/*ANIMATE*/

[data-animate] {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease-out;
    will-change: opacity, transform;
}

/* Анимации появления */
[data-animate].animated {
    opacity: 1;
    transform: translateY(0);
}

/* Fade Up */
[data-animate="fade-up"].animated {
    transform: translateY(0);
}

/* Fade Left */
[data-animate="fade-left"] {
    transform: translateX(100px);
}

[data-animate="fade-left"].animated {
    transform: translateX(0);
}

/* Fade Right */
[data-animate="fade-right"] {
    transform: translateX(-100px);
}

[data-animate="fade-right"].animated {
    transform: translateX(0);
}

/* Zoom In */
[data-animate="zoom-in"] {
    transform: scale(0.8);
}

[data-animate="zoom-in"].animated {
    transform: scale(1);
}

/* Flip */
[data-animate="flip"] {
    transform: perspective(1000px) rotateX(90deg);
}

[data-animate="flip"].animated {
    transform: perspective(1000px) rotateX(0);
}

/* Bounce */
[data-animate="bounce"] {
    transform: translateY(100px);
}

[data-animate="bounce"].animated {
    transform: translateY(0);
    animation: bounce 0.6s ease-out;
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-30px);
    }

    60% {
        transform: translateY(-15px);
    }
}

/* Custom delay and duration */
[data-animate] {
    transition-duration: var(--duration, 800ms);
    transition-delay: var(--delay, 0ms);
}

body {
    font-family: 'Rubik';
    font-size: 16px;
    font-weight: 400;
    background: #fafafa;
    overflow-x: hidden;
    color: var(--black);
    line-height: 1.3;
}



section {
    padding: 60px 0;
    position: relative
}

section.bg {
    margin: 60px 0
}

h1 {
    text-transform: none;
    font-size: 48px;
    font-weight: 500;
    margin-bottom: 30px;
    margin-top: 32px;
}


/*FLEX*/

.fl {
    display: flex;
}

.fw {
    flex-wrap: wrap;
}

.jsb {
    justify-content: space-between;
}

.jc {
    justify-content: center;
}

.jfe {
    justify-content: flex-end;
}

.jsa {
    justify-content: space-around;
}

.ac {
    align-items: center
}

.afe {
    align-items: flex-end
}

.tc {
    text-align: center;
}

.cw {
    color: white
}

.cb {
    color: black;
}

.fl-column {
    flex-direction: column;
}


.container-fluid {
    padding: 0 30px;

}

main {
    position: relative;
    /* background: white; */
    z-index: 9
}




/*BUTTON*/


.but a,
.but button {
    padding: 12px 16px;
    background: var(--prime);
    border-radius: 8px;
    color: white;
    line-height: 24px;
    font-weight: 500;
    transition: 0.5s;
    border: 1px solid transparent;
}


.but.yellow a,
.but.yellow button {
    background: var(--sec);
    color: var(--black);
}
.but.yellow a:hover,
.but.yellow button:hover {
    background:var(--prime);
    color:white;
}
.but.white a,
.but.white button {
    background: #fff;
    color: #222
}

.but.prime a,
.but.prime button {
    background: var(--prime);
    color: #fff
}


.but.transp a,
.but.transp button {
    background: none;
    color: #fff;
    border: 1px solid white;
}


.but img {
    margin-left: 8px;
}

.but a:hover,
.but button:hover {
    background: var(--sec);
    color: var(--black);
    border: 1px solid transparent;

}

.more a {
    color: var(--prime);
    text-decoration: none;
    cursor: pointer;
}

.more a:hover {
    color: #FF02C8
}

h2 {
    font-size: 32px;
    line-height: 40px;
    font-weight: 500;
    margin-bottom: 40px;
}


/*HEADER*/

.main-top {
    padding: 0px 0 40px;
    color: white;
}

header {
    margin-top: 20px;
}

.top {
    background: white;
    border-radius: 12px;
    padding: 10px 12px 10px 12px;
    position: relative;
    color: var(--black);
}

header nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    color: var(--black);
}

header nav ul li {
    padding: 0 16px;
}

header .soc a {
    padding: 0 4px;
}

header .soc {
    border-right: 1px solid #eee;
    padding-right: 16px;
}


header .phone a {
    font-size: 20px;
    line-height: 28px;
    padding-left: 20px;
    padding-right: 16px;
}


/*PROMO*/


.promo {
    padding: 220px 0;
}


.promo .title {
    font-weight: 500;
    font-size: 44px;
    line-height: 1.2;
    margin-bottom: 40px;
    text-align: center;
    max-width: 850px;
    margin-left: auto;
    margin-right: auto;
}

.cta-form .but {
    margin-top: 30px;
}
.promo .buts .but + .but {
    margin-left: 16px;
}

.main-top video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 800px;
    overflow: hidden;
    object-fit: cover;
}

/*ABOUT*/

.about {}

.about .quote {
    max-width: 820px;
    font-size: 32px;
    text-align: center;
    margin: 0 auto;
}

.about .quote p {
    margin-bottom: 32px;
}

.about .img {
    margin-bottom: 10px;
    text-align: center
}

.about .img img {
    border-radius: 50%
}


.about .name {
    text-align: center;
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 10px;
}

.about .subtitle {
    text-align: center;
    font-size: 20px;
    color: #888;
}


/*MODELS*/


.models {}

.model-page {
    padding:20px 0
}

.models h1 {
    margin-top:0px;
    text-transform:none
}
.models .row {
    align-items: center;
}

.models .row:nth-child(odd) {
    flex-direction: row-reverse;
    margin:0;
    align-items: flex-start;
}

.models.model-page .row:nth-child(odd) {
    flex-direction: row !important;
    margin:0;
}

.models.model-page .row {
    flex-direction: row !important;
    margin:0;
}

.model-page h4 {
    margin-top:30px;
}
.models .col-lg-6 {
    padding:0
}

.models .row:nth-child(odd) .text {
    padding-left:30px;
    padding-right: 50px;
}

.models img {
    width: 100%;
}

.models .text {
    padding-left: 50px;
    padding-right:30px;
}

.models .subtitle {
    font-size: 24px;
}

.models .price {
    font-size: 24px;
    color: var(--prime);
}

.models .fl {
    margin-bottom: 24px;
}
.about+.models .fl {
    margin-top:30px
}
.models .item {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    padding: 14px 0;
    border-bottom: 1px solid #eee;
}

.models .item .name {
    text-align: left;
    font-size: 14px;
    color: #888;
}

.models .item .val {
    text-align: right;
}

.models .but {
    margin-top: 45px;
}

.model-page .but {
    margin-top:0px
}

.model-page .img .fl {
    margin-top:30px;
    padding:0 15px;
}


.model-har {
    padding:0 15px;
}

/*CONF*/

.conf {}

.conf .item {
    background: var(--prime) url(../img/forest.png) no-repeat right bottom;
    border-radius: 24px;
    padding: 0px 44px;
}

.conf .title {
    font-size: 32px;
    font-weight: 500;
    margin-bottom: 32px;
    color: white;
    max-width: 600px;
}

.conf img {
    position: relative;
    top: 30px;
}


/*PRO*/

.pro {}
.pro .fl {
    justify-content:space-between
}
.pro .text {
    flex-basis: 66%;
    max-width: 812px;
}

.pro p strong {
    font-weight: 500;
    font-size: 24px;
    display: block;
    margin-bottom: 24px;
}

.pro p {
    font-size: 16px;
}


/*VIDEO*/

.video {}


.video video {}


/*TECH*/

.tech {}

.tech .item {
    padding: 3px;
    border: 2px solid transparent;
    margin-bottom: 20px;
    border-radius: 19px;
    transition:0.5s;
}

.tech .item:hover {
    border: 2px solid var(--prime);
}

.tech .item-in {
    background: var(--prime);
    padding: 22px;
    color: white;
    border-radius: 16px;
}

.tech .img {
    margin-bottom: 16px;
}

.tech .subtitle {
    font-size: 24px;
    margin-bottom: 20px;
}

.tech .item-in p {
    font-size: 16px;
    min-height: 125px;
}

.text-content p {
    margin-bottom:20px;
}

/*KAK*/

.kak {}

.kak h2 + p {
    font-size: 24px;
    max-width: 384px;
}

.kak .item {
    padding: 20px 0;
    border-bottom: 1px solid #c7c7c7;
    cursor:pointer;
}

.kak .item .subtitle {
    display: flex;
    align-items: center;
}

.kak .item.active .subtitle img {
      filter: brightness(0) saturate(100%) invert(25%) sepia(93%) saturate(1022%) hue-rotate(147deg) brightness(109%) contrast(119%);
}

.kak .item .subtitle span {
    font-weight: 500;
    font-size: 24px;
}

.kak .item img {
    margin-right: 16px;
    display: block;
}

.kak .item.active .subtitle span {
    color: var(--prime)
}

.kak .item .num {
    opacity: 0;
    font-size: 20px;
    color: #888;
    transition: 0.5s;
}

.kak .item.active .num {
    opacity: 1;
}

.kak .item .fl {
    margin-bottom: 0px;
}

.kak .item.active {
    border-bottom: 1px solid black;
}

.kak .item .text {
    display:none;
    margin-top:20px;
}





/*SLOGAN*/

.slogan {}


.slogan .text-center {
    font-size: 32px;
    max-width: 820px;
    margin: 0 auto;
}




/*WORKS*/

.works {}

.works .swiper-nav {
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    position: absolute;
    bottom: 96px;
    left: 32.9%;
    width: 100%;
    z-index: 99;
}

.works .swiper {
    width: 100%;
    padding: 40px 0;
}

.works .swiper-wrapper {
    align-items: center;
}

.works .swiper-slide {
    transition: transform 0.3s ease, opacity 0.3s ease;
    border-radius: 8px;
    overflow: hidden;
    margin: 0px; 
}

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

/* Центральный слайд больше */

.works .swiper-slide-active {
    transform: scale(1.1);
    z-index: 2;
}

/* Боковые слайды нормального размера */
.works .swiper-slide-prev,
.works .swiper-slide-next {
    transform: scale(0.8);
    opacity: 1;
}

/* Остальные слайды меньше */
.works .swiper-slide:not(.swiper-slide-active):not(.swiper-slide-prev):not(.swiper-slide-next) {
    transform: scale(0.8);
    opacity: 1;
}



/* Адаптивность */
@media (max-width: 768px) {
    
}

@media (max-width: 480px) {
   .works .swiper-slide {
        width: 200px;
    }
    
   .works .swiper-slide-active {
        transform: scale(1.2);
    }
    
    .swiper-slide img {
        /* height: 200px; */
    }
}


/*REV*/

.rev {

}

.rev .container {
    position:relative;
}

.rev .swiper-nav {
    position: absolute;
    right: 20px;
    top: 0;
    display: flex;
    align-items: center;
    color: var(--prime);
}

.rev .link {
    margin-right: 36px;
}

.rev .swiper-nav .s-prev {
    margin-right: 16px;
}


.rev .item {
    padding: 24px;
    border-radius: 16px;
    background: white;
}

.rev .item .name {
    font-size: 20px;
    font-weight: 500;
}

.rev .item .date {
    color: #888;
}

.rev .star {
    margin-top: 24px;
    margin-bottom: 24px;
}

.rev .text {
    max-height: 82px;
    overflow: hidden;
    background: linear-gradient(180deg,
            rgba(40, 40, 40, 1) 0%,
            rgba(40, 40, 40, 1) 71.49999737739563%,
            rgba(40, 40, 40, 0) 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.rev .white {}
.rev .item.active .text {
    max-height:100%;
    background: none;
    -webkit-text-fill-color: initial;
}
.rev .more {
    font-weight: 500;
    color: var(--prime);
    cursor: pointer;
    margin-top: 28px;
}

.mySwiper2 .swiper-wrapper {
    align-items: flex-start !important;
}


/*CONS*/

.cons {}

.cons .item {
    background: var(--sec) url(../img/forest2.png) no-repeat right bottom;
    border-radius: 24px;
    padding: 10px 44px 0;
    margin-top:30px
 

}

.cons h3 {
    font-size: 32px;
    font-weight: 500;
    margin-bottom: 32px;
    color:var(--black);
    max-width: 590px;
}

.cons img {
    position: relative;
    top: -120px;
    margin-bottom:-120px
}

.cons .text {
    max-width:650px;
}

.cons .text p {
    margin-bottom:10px;
    line-height: 1.5;
    font-size: 19px;
}

.cons .text .but {
    margin-top:45px;
}


/*BLOG*/

.blog {}

.blog .item {

    color: white;
    position:relative;
}

.blog .item a:before {
    content:'';
    background:#0000008f;
    top:0;
    left:0;
    display:block;
    width:100%;
    height:100%;
    border-radius:20px;
    position:absolute;
    z-index:9;
}

.blog .label {
    text-align: right;
    background: var(--sec);
    border-radius: 8px;
    padding: 5px 12px 5px 12px;
    color: var(--black);
    display: inline-flex;
    width: auto;
    margin-left: auto;
    font-size: 14px;
    position: relative;
    z-index: 999;
}

.blog .subtitle {
    font-weight: 500;
    font-size: 18px;
    position: relative;
    z-index: 999;
}

.blog .item a {
    background-size:cover;
    display:flex;
    justify-content: space-between;
    flex-direction: column;
    width:100%;
    height: 344px;
    border-radius: 16px;
    padding: 16px;
    position:relative;
    z-index:99;
}

.blog .but {
    margin-top: 44px;
}

.models .swiper-nav2 {
    display:flex;
    justify-content:space-between;
    width: 95% !important;
    position:absolute;
    bottom: 15px;
    left: 15px;
    z-index: 999;
}

.model-page .img  {
    background:#fff;
    padding: 12px;
    border-radius: 8px;
}
.models .swiper img {
    border-radius:8px;
}
.models .swiper {
    position:relative;
}

/*FAQ*/

.faq {
    
}

div.faq {
    margin-top:30px;
}

.faq a {
    color:var(--prime);
}


.faq p {
    margin-bottom: 12px;
}

.faq li {
    padding: 18px 0;
    border-bottom:1px solid #eee;
    cursor: pointer;
}


.faq h3 {
    font-weight: 500;
    font-size:24px;
     margin-bottom: 0;
}

.faq .text {
    margin-top:24px;
    display: none;
    padding-left: 0 !important;
}


.faq li.active h3 {
    color:var(--prime);
   
}

.faq li.active {
    border-bottom:1px solid black;
}

.faq li.active .text {

}

.faq li.active img {
    transform: rotate(180deg);
    filter: brightness(0) saturate(100%) invert(25%) sepia(93%) saturate(1022%) hue-rotate(147deg) brightness(109%) contrast(119%);
}


/*FOOTER*/

footer {
    border-top:1px solid #eee;
    padding:40px 0;
}

footer .logo {
    margin-bottom: 40px;
}

footer .subtitle {
    color:#888;
    font-size: 14px;
    margin-bottom: 16px;
}

footer .phone a, footer .email a {
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 12px;
    display: block;
}

footer .soc {
    display: flex;
    margin-top: 32px;
}

footer .soc a {
    margin-right:8px;
}

footer .title-menu {
    font-weight: 500;
    margin-bottom: 16px;
}

footer ul li {
    margin-bottom: 12px;
}

footer .bottom {
    color:#888;
    font-size:14px;
    margin-top:64px;
}

footer {
    
}

.modal .form {
    background:#fff;
    padding:32px;
    border-radius:16px;
    width:100%;
    max-width:544px;
}

.modal {
    max-width:544px !important
}

.modal input, .modal textarea {
    width:100%;
    padding: 14px;
    border-radius:8px;
    border:1px solid #ddd;
    font-size:16px;
    line-height:24px;
}

.modal .col-md-6 {
    margin-bottom:20px;
}

.modal textarea {
    height:96px;
}

.modal .but-file {
       width:100%;
       padding: 14px 20px;
       border-radius:8px;
       border:1px solid var(--prime);
       color:var(--prime);
       font-size:16px;
       line-height:24px;
       display: flex;
       justify-content: center;
}

.modal .but-file img {
    margin-right:10px;
}

.modal .but button {
    width:100%;
    margin-top:20px;
    text-align: center;
    display: block;
}

.video2 {
    object-fit: cover
}


section.models .swiper-nav img {
    width: 40px;
}

.faq ul ul li {
    border: none;
    padding:0;
    list-style:disc;
    margin-bottom:7px;
    margin-left: 30px;
}

.intro-model {
    margin-bottom: 15px;
    max-width: 50%;
    padding-right: 80px;
}

.models.model-page .row:nth-child(odd) .text {
    padding-left: 0px;
    padding-right: 80px;
}

.model-har .item:last-child {
    border:none;
}

















