/*!
Theme Name: Trizero Theme
Author: Trizero Theme
Version: 1.0.0
*/

@font-face {
  font-display: swap;
  font-family: 'Nunito Sans';
  font-style: normal;
  font-weight: 300;
  src: url('fonts/nunito-sans-v19-cyrillic_latin-300.woff2') format('woff2');
}

@font-face {
  font-display: swap;
  font-family: 'Nunito Sans';
  font-style: italic;
  font-weight: 300;
  src: url('fonts/nunito-sans-v19-cyrillic_latin-300italic.woff2') format('woff2');
}

@font-face {
  font-display: swap;
  font-family: 'Nunito Sans';
  font-style: normal;
  font-weight: 400;
  src: url('fonts/nunito-sans-v19-cyrillic_latin-regular.woff2') format('woff2');
}

@font-face {
  font-display: swap;
  font-family: 'Nunito Sans';
  font-style: normal;
  font-weight: 700;
  src: url('fonts/nunito-sans-v19-cyrillic_latin-700.woff2') format('woff2');
}

@font-face {
  font-display: swap;
  font-family: 'Nunito Sans';
  font-style: normal;
  font-weight: 800;
  src: url('fonts/nunito-sans-v19-cyrillic_latin-800.woff2') format('woff2');
}

:root {
    --main-color:#008980; 
    --padding-bt:100px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    outline: none;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    height: auto;
	display: block;
}

ul, li {
    list-style: none;
}

button {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    cursor: pointer;
}

strong {
    font-weight: 700;
}

.container {
    max-width: 1280px;
    margin-right: auto;
    margin-left: auto;
    width: 100%;
    position: relative;
}

h1 {
    font-size: 50px;
    font-weight: 800;
    margin-bottom: 40px;
    line-height: 1.25;
    color: var(--main-color);
}

h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 60px;
    line-height: 1.1;
}

h2 span, h2 strong,
h3 span, h3 strong {
    color: var(--main-color);
}

h3 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 30px; 
}

p {
    margin-bottom: 24px;
}

 

.btn { 
    align-items: center;
    justify-content: center;
    color: #FEFAFF;
    background: var(--main-color);
    border-radius: 100px;
    height: 62px; 
    font-size: 20px;
    display: inline-flex;
    padding:  0 40px;  
    cursor: pointer;
    font-weight: 500;
    transition: all .3s;
    border: 0;
    font-family: 'Nunito Sans', sans-serif;
    width: 100%;
}

.btn:hover {
     
}


.btn-white {
    background: transparent; 
    border: 1px solid #fff;
}

*::-webkit-scrollbar {
    -webkit-appearance: none;
    cursor: default;
}

*::-webkit-scrollbar:vertical {
    width: 4px;
    cursor: default;
}

*::-webkit-scrollbar:horizontal {
    height: 4px;
    cursor: default;
}

*::-webkit-scrollbar-thumb {
    background-color: var(--main-color);
    -moz-border-radius: 6px;
    -webkit-border-radius: 6px;
    -khtml-border-radius: 6px;
    border-radius: 6px;
    cursor: default;
}

*::-webkit-scrollbar-track {
    -moz-border-radius: 6px;
    -webkit-border-radius: 6px;
    -khtml-border-radius: 6px;
    border-radius: 6px;
    background-color: #EFEFEF;
    cursor: default;
}

.swiper-slide { 
    overflow: hidden;
}

.swiper-pagination.article-pagination {
    position: relative;   
    margin: 0;
    bottom: auto;
    top: auto;
    text-align: left;
}

.swiper-pagination-bullet {
    width: 10px;
    height: 10px; 
    background: var(--main-color); 
    border-radius: 50%;
    opacity: .5;
}

.swiper-pagination-bullet-active { 
    opacity: 1;    
}

.main-pagination {
    position: absolute;
}

.slide-nav .swiper-button-prev, .slide-nav .swiper-button-next {
    left: auto;
    position: relative;
    margin-top: 0;
    top: auto;
    right: auto;
    user-select: none;
}

.swiper-button-next, .swiper-button-prev {
    width: 70px;
    min-width: 70px;
    height: 70px;  
    user-select: none; 
    background: rgba(0, 137, 128, 0.05);
    border: 1px solid rgba(0, 137, 128, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.swiper-button-next:hover, .swiper-button-prev:hover { 
    background: var(--main-color);
}

.swiper-button-next:hover svg path, .swiper-button-prev:hover svg path { 
    /* stroke: var(--main-color-hover); */
    fill: #fff;
}

.swiper-button-next:after, .swiper-button-prev:after {
    content: none;
}

.slide-nav {
    display: flex;
    column-gap: 10px;
}

.bottom-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 50px;
}

.breadcrumbs {
    background: rgba(0, 137, 128, 0.05);
    padding: 30px 0;
    margin-bottom: 80px;
    color: rgba(43, 43, 43, .5);
}

.breadcrumbs a {
    transition: all .3s;
    color: #2B2B2B;
}

.breadcrumbs a:hover { 
    color: var(--main-color);
}

.breadcrumbs .container { 
    display: flex;
    align-items: center;
    gap: 40px;
}

.category-6 .breadcrumbs  { 
    display: none;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Nunito Sans', sans-serif;
    font-size: 20px;
    line-height: 1.25;    
    font-weight: 400;
    color: #2B2B2B;
    overflow-x: hidden;  
}
    .nav {
        width: calc(100% + 10px);
        height: calc(100vh - 65px);
        position: fixed;
        left: -10px;
        z-index: 98;
        top: 65px;
        -webkit-transform: translateX(-110%);
        -ms-transform: translateX(-110%);
        transform: translateX(-110%);
        padding: 30px 20px 20px;
        transition: all .4s;
        overflow: auto;
        background: #ffffff;
        border-top: 2px solid var(--main-color);
    }
body:not(.home) {
    padding-top: 140px;
}

.burger-active {
    overflow: hidden;
}
 
.header__burger {
    display: none;
}

.header__logo {
    max-width: 195px;
    margin-right: auto;
}

.home .header__logo {
    display: none;
}


.home header  {
    position: absolute;
    z-index: 5;
    width: 100%;
    top: 60px;
}

header  {
    position: absolute; 
    z-index: 5;
    width: 100%;
    margin: 0 auto;
    top: 0;
}

.header-box {
    display: flex;
    align-items: center;
    gap: 60px;
    padding: 30px 0;
}

.home .header-box {
    background: #fff;
    padding: 20px 30px 20px 40px;
    border-radius: 100px;
    gap: 50px;
}

header.fixed {
    position: fixed;
    top: 0;
    background: #fff;
    box-shadow: 0px 4px 40px 0px #39322C0D;
    animation-name: nav;
    animation-duration: 1s;
}

header.fixed .header-box { 
    padding: 10px 0;
}

header.fixed .header__logo {
    max-width: 100px;
}

.home header.fixed .container {
    display: block; 
}

.home header.fixed .header__logo {
    display: block;
}

@keyframes nav {
    0% {
        top: -100%
    }

    100% {
        top: 0
    }
}

.home header .container {
    display: flex;
    justify-content: end;
}

.header__search-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--main-color);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all .3s;
}

/* --- NAV --- */

.header-navigation__list {
    display: flex;
    align-items: center;
    gap: 60px;
}

.header-navigation__list a {
    font-size: 18px;
    transition: all .3s;
}

.header-navigation__list a:hover {
    color: var(--main-color);
}

/* --- MAIN --- */

.main {
    background: url(img/main.jpg) no-repeat;
    background-size: cover;
    padding: 50px 0 140px;
    margin-bottom: var(--padding-bt);
    position: relative;
    overflow: hidden;
}

.main-img {
    position: absolute;
    right: 0;
    bottom: 0;
}

.main-img-mob {
    display: none;
}

.main-logo {
    padding-bottom: 80px;
}

.main-text {
    max-width: 740px;
}

.main-text .btn {
    max-width: 450px;
    margin-top: 50px;
}

.main-text h1  {
    color: #2B2B2B;
    text-transform: uppercase;
    margin-bottom: 30px;
}

.main-text h1 strong  {
    font-weight: 800;
    color: var(--main-color);
}

.main-text ul li{
    font-size: 28px;
}

.main-text ul li strong{
    font-weight: 400;
    color: var(--main-color);
}

/* --- ARTICLE --- */

.article-page-row {
    display: grid;
    grid-template-columns: 1fr 440px;
    gap: 80px;
}

.article-main-info {
    display: flex;
    gap: 30px;
    align-items: center;
    margin-bottom: 30px;
}

.article-main-info span {
    display: flex;
    gap: 10px;
    align-items: center; 
    font-size: 18px;
}

.article-main h1 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 30px; 
    color: #2B2B2B;
    line-height: 1.1;
}

.article-main h1 span { 
    color: var(--main-color); 
}

.article-main .content h2 { 
    font-size: 32px;
    margin-bottom: 30px;
}

.article-main .content h2:not(:first-child) {  
    padding-top: 30px;
}

.article-main .content  table {
	width: 100%;
	margin-bottom: 20px;
	border: 1px solid #dddddd;
	border-collapse: collapse; 
}
.article-main .content table th {
	font-weight: bold;
	padding: 5px;
	background: #efefef;
	border: 1px solid #dddddd;
}
.article-main .content table td {
	border: 1px solid #dddddd;
	padding: 5px;
}

.article-main-img {
    border-radius: 30px;
    margin-bottom: 30px;
}

.content blockquote {
    background: rgba(0, 137, 128, 0.05);    
    border: 1px solid rgba(0, 137, 128, 0.1);
    border-radius: 30px;
    padding: 40px;
    font-style: italic;
    font-weight: 300;
    font-size: 24px;
    margin-bottom: 30px;
    position: relative;
}

.content blockquote::before {
    content: '';
    background: url(img/bq.svg) no-repeat;
    width: 22px;
    height: 20px;
    top: 25px;
    right: 25px;
    position: absolute;
}

.content blockquote>*:last-child{
    margin-bottom: 0;
}

.custom-toc {
    background: rgba(0, 137, 128, 0.05);
    padding: 40px;
    border-radius: 30px;
    border: 1px solid rgba(0, 137, 128, 0.1);
}

.toc-list  {
    display: flex;
    flex-direction: column;
    row-gap: 20px;
}

.toc-list li a {
    font-size: 18px;
    transition: all .3s;
}


.toc-list li a:hover {
    color: var(--main-color);
}

.custom-toc-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 30px;
}

.toc-item {
    display: flex;
    gap: 10px;
}

.toc-number {
    font-weight: 700;
    color: var(--main-color);
}

.av {
    display: grid;
    grid-template-columns: 1fr 90px;
    gap: 20px;
    background: rgba(0, 137, 128, 0.05);
    padding: 40px;
    border-radius: 30px;
    border: 1px solid rgba(0, 137, 128, 0.1);
}

.av span {
    display: block;
    color: rgba(43, 43, 43, .5);
    margin-bottom: 10px;
    font-size: 18px;
    line-height: 1;
}

.av-name {
    font-size: 28px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 10px;
}

.av-job {
    font-size: 18px;
}

.sources { 
    background: rgba(0, 137, 128, 0.05);
    padding: 40px;
    border-radius: 30px;
    border: 1px solid rgba(0, 137, 128, 0.1);
}

.sources .title { 
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 30px;
}

.sources ol {
    list-style: none;
    counter-reset: item;
    padding-left: 0;
    display: flex;
    flex-direction: column;
    row-gap: 20px;
}

.sources ol li {
    counter-increment: item; 
    position: relative;
    padding-left: 30px; 
    font-size: 18px;
}

.sources ol li a {
    color: var(--main-color);
    text-decoration: underline;
    transition: all .3s;
    word-wrap: break-word;
}

.sources ol li a:hover {
    text-decoration: none;
}

.sources ol li::before {
    content: counter(item, decimal-leading-zero) "."; 
    position: absolute;
    left: 0;
    top: 0; 
    color: var(--main-color); 
    display: flex;
    align-items: center;
    justify-content: center; 
    font-size: 18px;
    font-weight: 700;
}


.article-main-sidebar {
    display: flex;
    flex-direction: column;
    row-gap: 40px;
}

.article-page {
    padding-bottom: var(--padding-bt);
}

.article-items {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.article-item {
    background: rgba(0, 137, 128, 0.05);
    border: 1px solid rgba(0, 137, 128, 0.1);
    border-radius: 30px;
    overflow: hidden;
}

.article-item-img {
    position: relative;
    overflow: hidden;
    border-radius: 30px;
}

.article-item-img img {
    border-radius: 30px;
    transition: all .3s;
}

.article-item:hover .article-item-img img {
    transform: scale(1.025);
}

.article-item-desc{
    padding: 30px;
}

.article-item-desc h3  {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 20px;
    transition: all .3s;
}

.article-item:hover h3  {
    color: var(--main-color);
}

.article-item-desc p {  
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 20px;
}

.article-item-desc p + span {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    height: 42px;
    background: rgba(0, 137, 128, 0.05);
    border: 1px solid rgba(0, 137, 128, 0.1);
    border-radius: 100px;
    padding: 0 20px;
    font-size: 18px;
    color: var(--main-color);
}

.pagination-box {
    padding-top: 50px;
    display: flex;
    justify-content: space-between;
    gap: 30px;
    align-items: center;
}

.page-numbers {
    background: #F3F3F3;
    border-radius: 14px;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 400;
    font-size: 20px;
    transition: all .3s;
}

.page-numbers.current, .page-numbers:hover {
    background: var(--main-color);
    color: #fff;
}

.prev.page-numbers,
.next.page-numbers { 
    display: none;
}

.pagination {
    display: flex;
    gap: 10px;
}

.all {
    font-size: 20px;
}

.all span {
    font-weight: 500;
}

.category-page, .text-box {
    padding-bottom: var(--padding-bt);
}

.text-box h2 {
    margin-bottom: 40px;
}

.author-box {
    display: grid;
    grid-template-columns: 70px 1fr;
    gap: 30px;
    margin-bottom: 40px;
    align-items: center;
}

.author-desc span {
    color: rgba(43, 43, 43, .5);
    font-style: normal;
    font-weight: 400;
    line-height: 1;
    margin-bottom: 10px;
    display: block;
    font-size: 20px;
}

.author-name{ 
    font-style: normal;
    font-weight: 700;
    line-height: 1;
    font-size: 32px; 
}

.category-banner {
    padding: 140px 80px;
    position: relative;
    overflow: hidden;
    border-radius: 30px;
    margin-bottom: 100px;
}
.category-banner2 { 
    margin-bottom: 100px;
}
.category-banner2-img-mob,
.category-banner2-text{
    display: none;
}
.d-none {display: none!important;}

.category-banner-img-mob {display: none;}
.category-banner-img {
    position: absolute;
    top: 0;
    left: 0;
    object-fit: cover;
    object-position: center;
    width: 100%;
    height: 100%;
}

.category-banner-text {
    position: relative;
    max-width: 500px;
}

.category-banner-text h2 {
    margin-bottom: 30px;
}

.category-banner-text p {
    margin-bottom: 0px;
}

.category-page .popular-tag-list {
    padding-bottom: 60px;
}
.category .category-page .popular-tag-list {
    padding-top: 60px;
    padding-bottom: 0px;
}

.article-item.swiper-slide {
    width: 620px;
}

.title-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 60px;
    align-items: center;
}

.title-row2 {
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px; 
    gap: 130px;
}

.title-row h2 {
    margin-bottom: 0px;
}
.title-row2 h2 {
    margin-bottom: 30px;
}

.related-article {
    padding-bottom: var(--padding-bt);
}

.list-article {
    padding-bottom: var(--padding-bt);
}

.btn.btn-more {
    height: 42px;
    max-width: 250px;
    gap: 10px;
    font-size: 18px;
    line-height: 1;
}

.btn.btn-more svg {
    display: block;
}
/* --- FAQ --- */

.faq {
    padding-bottom: var(--padding-bt);
}

.faq h2 {
    text-align: center;
}

.faq__items {
    display: flex;
    flex-direction: column;
    row-gap: 20px;
}

.faq__item {
    background: rgba(0, 137, 128, 0.05);
    border-radius: 30px;
    border: 1px solid rgba(0, 137, 128, 0.1);
}

.faq__item-question {
    padding: 30px 40px; 
    font-size: 24px;
    cursor: pointer; 
    transition: all .3s;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;  
    margin: 0;
}

.faq__item-answer {
    margin:  0 40px;
    padding: 30px 0;
    display: none;
    border-top: 1px solid rgba(0, 137, 128,  0.2); 
    font-size: 24px;
}

.faq__item-question .carret {
    width: 30px;
    height: 30px;
    min-width: 30px;
    position: relative; 
    transition: all .3s;
    display: flex;
    align-items: center;
    justify-content: center;  
}

.faq__item-question .carret::before {
    content: '';
    width: 30px;
    height: 3px;
    background: var(--main-color);
    transition: all .3s;
    border-radius: 3px;
}

.faq__item-question .carret::after {
    content: '';
    width: 3px;
    height: 30px;
    background: var(--main-color);
    position: absolute;
    border-radius: 3px;
}

.faq__item-question.active .carret {
    transform: rotate(90deg);
}

.faq__item-question.active .carret::before {
    width: 0px;
}

.faq__item-question.active .carret { 
    background: var(--accent-color); 
}

.faq__item-question:hover, .faq__item-question.active {
    color: var(--main-color);
}

.content>*:last-child {
    margin: 0;
}

.content ul,
.content ol {
   margin-bottom: 30px;
   display: flex;
   flex-direction: column;
   row-gap: 10px;
}

.content ul ol{
   list-style: auto;
}

.content ul li{
   padding-left: 34px;
   position: relative;
}

.content ul li::before {
   content: '';
   width: 24px;
   height: 24px;
   position: absolute;
   left: 0px;
   top: 50%;
   transform: translateY(-50%);
   background: url(img/arrow-right.svg)  no-repeat;
}

/* --- SYSTEM --- */

.system {
    padding-bottom: var(--padding-bt);
}

.system__items {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 25px;
}

.system__item {
    background: rgba(0, 137, 128, 0.05);
    padding: 40px;
    border-radius: 30px;
    display: grid;
    grid-template-columns: 68px 1fr;
    gap: 30px;
    border: 1px solid rgba(0, 137, 128, 0.1);
    transition: all .3s;
}

.system__item:hover {
    background: rgba(0, 137, 128, 0.15); 
    border: 1px solid rgba(0, 137, 128, 0.5); 
}

.system-text {
    font-size: 32px;
    font-weight: 700;
}

.system-text span {
    font-weight: 400;
    display: block;
    font-size: 20px;
    padding-top: 10px;
}

/* --- WHY --- */

.why {
    padding-bottom: var(--padding-bt);
}

.why__items {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.why__item {
    background: rgba(0, 137, 128, 0.05);
    padding: 40px;
    border-radius: 30px;
    display: grid;
    grid-template-columns: 1fr 70px;
    gap: 30px;
    border: 1px solid rgba(0, 137, 128, 0.1);
}

.why__item p {
    margin: 0;
}

.why__item h3 {
    margin-bottom: 15px;
    font-size: 32px;
}


.why__item h3 span {
    color: var(--main-color);
    display: block;
}

/* --- ABOUT  --- */

.about-page {
    padding-bottom: var(--padding-bt);
    position: relative;
    overflow: hidden;
}

.about-content {
    max-width: 620px;
    min-height: 620px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-page-img {
    left: calc(50% + 60px);
    position: absolute;
    top: 0;
}

/* --- METOD --- */

.metod{
    padding-bottom: var(--padding-bt);
    position: relative;
    overflow: hidden;
}

.metod-img {
    position: absolute;
    right: calc(50% + 40px);
    top: 0;
}

.metod-text  { 
    max-width: 620px;
    min-height: 860px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-left: auto;
}

.metod-text .btn  { 
    margin-top: 35px;
    max-width: 250px;
}



/* --- CONTACT --- */

.contact,
.rekvizit {
    padding-bottom: var(--padding-bt);
}

.contact-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.contact__map {
    border-radius: 30px;
    overflow: hidden;
}

.contact-items {
    display: flex;
    flex-direction: column;
    row-gap: 20px;
}

.contact-item {
    display: grid;
    grid-template-columns: 26px 1fr;
    gap: 20px;
    align-items: center;
    font-size: 24px;
}

.contact-item span {
    color: rgba(43, 43, 43, 0.5);
    display: block;
}


/* --- MISSION --- */

.mission {
    padding-bottom: var(--padding-bt);
}

.mission h2 {
    margin-bottom: 30px;
}

.mission h2 + p {
    margin-bottom: 60px;
}

.mission__items {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.mission__item {
    background: rgba(0, 137, 128, 0.05); 
    border: 1px solid rgba(0, 137, 128, 0.1);
    border-radius: 30px;
    padding: 50px;
}

.mission__item h3 {
    margin-bottom: 20px;
}

/* --- POPULAR TAG --- */

.popular-tag {
    padding-bottom: var(--padding-bt);
}

.popular-tag-list a,
.popular-tag-list button {
    background: rgba(0, 137, 128, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    height: 57px;
    padding: 0 30px;
    border-radius: 100px;
    border: 1px solid rgba(0, 137, 128, 0.1);
    transition: all .3s;
    font-family: 'Nunito Sans', sans-serif;
    font-size: 20px;
}

.popular-tag-list {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.popular-tag-list a:hover,
.popular-tag-list button:hover, 
.popular-tag-list button.active {
    background: var(--main-color);
    color: #fff;
}

/* --- SUBSCRIPTION --- */

.subscription {
    padding-bottom: var(--padding-bt);
}

.subscription-box {
    color: #fff;
    background: var(--main-color);
    border-radius: 30px;
    padding: 60px;
    display: grid;
    grid-template-columns: 1fr 560px;
    gap: 20px;
    align-items: center;
}

.subscription-box .title {
    margin-bottom: 20px;
    font-size: 42px;
    font-weight: 700;
    color: #fff;
}

.subscription-box .title + p {
    margin-bottom: 0px;
    font-weight: 300;
    font-size: 24px;
}

.subscription-bg-1 {
    position: absolute; 
    bottom: 0;
    left: 0;
}

.subscription-bg-2 {
    position: absolute;
    right: 0;
    bottom: 0;
}

.subscription__form {
    position: relative;
}

/* --- PROJECT --- */

.project {
    padding-bottom: var(--padding-bt);
}

.project-row {
    display: grid;
    grid-template-columns: 500px 1fr;
    gap: 60px;
    align-items: center;
}

.project-text {
    font-size: 24px;
}

.project-text h2 {
    margin-bottom: 50px;
}

/* --- CTA --- */

.cta-video {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    left: 0;
    top: 0;
}

.prep {  
    background: rgba(0, 137, 128, 0.05);
    padding: 40px;
    border-radius: 30px;
    border: 1px solid rgba(0, 137, 128, 0.1);
    font-size: 18px;
}

.prep a {
    background: rgba(0, 137, 128, 0.05);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 54px;
    color: var(--main-color);
    padding: 0 20px;
    border-radius: 100px;
    border: 1px solid var(--main-color);
    transition: all .3s;
    gap: 10px;
}

.prep h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.1;
}

.cta4 .container {
    display: grid;
    grid-template-columns: 1fr 540px;
    gap: 40px;
}

.cta-form-box {
    background: rgba(0, 137, 128, 0.05);
    padding: 50px;
    border-radius: 30px;
}

.cta-bg {
    background: url(img/fon.jpg) no-repeat;
    background-size: cover;
}

.cta-img3 {
    position: absolute;
    left: 0;
    bottom: 0;
}

.cta {
    margin-bottom: var(--padding-bt);
    position: relative;
    overflow: hidden;
}
.cta.v-cta {
    padding: 75px 0
}

.cta-img2 {
    position: absolute;
    right: 0;
    bottom: 0;
}

.cta-img2_mob {
    display: none;
}

.cta h2 {
    margin-bottom: 30px;
}

.cta-title-img {
    transform: translate(-25px, 25px);
}
.cta-text.cta-text-mob h2 {
    transform: translateX(40px);
}
.cta-img {
    position: absolute;
    object-fit: cover;
    object-position: center;
    width: 100%;
    height: 100%;
}

.cta-img_mob {
    display: none;
}

.cta-text {
    max-width: 540px;
    padding: 135px 0;
}

.cta-bg .cta-text { 
    padding: 90px 0;
}

.cta-bg .cta-text .btn { 
    margin-top: 10px;
}

.cta-text p {
    font-size: 24px;
}

.cta-text .btn {
    max-width: 260px;
    margin-top: 30px;
}

.form__field {
    font-size: 20px; 
    height: 62px;
    width: 100%; 
    padding: 0 26px;
    color: #000;
    background: #FFFFFF;
    border: 1px solid transparent;
    border-radius: 30px; 
    font-weight: 500;
    font-family: 'Nunito Sans';
}

textarea.form__field {
    height: 150px;
    padding: 26px;
}

::-webkit-input-placeholder {color: #909090;font-family: 'Nunito Sans';}
::-moz-placeholder          {color: #909090;font-family: 'Nunito Sans';}
:-moz-placeholder           {color: #909090;font-family: 'Nunito Sans';}
:-ms-input-placeholder      {color: #909090;font-family: 'Nunito Sans';}

.form-group {
    position: relative;
    margin-bottom: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 200px;
    gap: 20px;
}

.form-row-3 {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 30px;
    margin-bottom: 10px;
}

.form-note {
    color: #fff;
    font-size: 14px;
    font-weight: 300;
}

.cta-form .form-note {
    color: #2B2B2B;
    font-size: 20px;
    font-weight: 400;
}

.cta-form .form-note a {
    color: var(--main-color);
}

.form-row-btn {
    display: grid;
    grid-template-columns: 1fr 220px;
    align-items: center;
    gap: 20px;
    padding-top: 20px;
}

.form-note a {
    text-decoration: underline;
}

.form-note a:hover {
    text-decoration: none;
}

.form__field.error { 
    border-color: red!important;
}
   
.form__field:focus, .form__field:hover {
    border-color: var(--main-color)
}

.modal:not(.fancybox-content) {
    display: none;
}

label.error {
    color: red;
    font-size: 13px;
    position: absolute;
    left: 0;
    bottom: -16px;
    padding-left: 48px;
    display: none!important;
}

.modal {
    max-width: 450px;
    padding: 48px;
    width: 100%;
    background: var(--main-color);
    border-radius: 28px; 
    color: #fff;
}
.modal .h3 {
    font-size: 26px;
    font-weight: 700;
}

.mirror-page {
    padding-bottom: var(--padding-bt);
}

/* --- FOOTER --- */

footer {
    background: var(--main-color);
    padding: 40px 0 0;
    position: relative;
    overflow: hidden;
}

.footer-top {
    padding-bottom: 40px;
    display: grid;
    grid-template-columns: 1fr auto auto;
    gap: 80px;
}

.footer__nav {
    display: flex;
    flex-direction: column;
    row-gap: 10px;
}

.footer__nav li a {
    color: #fff;
    transition: all .3s;
    font-size: 18px;
}

.footer__nav li a:hover {
    color: #000;
}

.footer__logo p {
    color: #fff;
    font-size: 18px;
    margin: 30px 0 0;
}

.footer-bottom {
    background: rgba(43, 43, 43, 0.1);
    padding: 30px 0;
    color: #fff;
    line-height: 1;
    font-size: 18px;
}

.footer-bg-1 {
    position: absolute;
    bottom: 0;
}

.footer-bg-2 {
    position: absolute;
    bottom: 0;
    right: 100px;
}