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

@font-face {
  font-display: swap;
  font-family: 'TTFirsNeue';
  font-style: normal;
  font-weight: 400;
  src: url('fonts/TTFirsNeue-Regular.woff2') format('woff2');
}

@font-face {
  font-display: swap;
  font-family: 'TTFirsNeue';
  font-style: normal;
  font-weight: 500;
  src: url('fonts/TTFirsNeue-Medium.woff2') format('woff2');
}

@font-face {
  font-display: swap;
  font-family: 'TTFirsNeue';
  font-style: normal;
  font-weight: 600;
  src: url('fonts/TTFirsNeue-DemiBold.woff2') format('woff2');
}

@font-face {
  font-display: swap;
  font-family: 'TTFirsNeue';
  font-style: normal;
  font-weight: 700;
  src: url('fonts/TTFirsNeue-Bold.woff2') format('woff2');
}

@font-face {
  font-display: swap;
  font-family: 'TTFirsNeue';
  font-style: normal;
  font-weight: 800;
  src: url('fonts/TTFirsNeue-ExtraBold.woff2') format('woff2');
}

 

:root {
    --main-color:#0EDDAC;
    --accent-color:#0E3D38;
    --main-color-hover:#00FFC3;  
    --padding-bt:220px;
}

* {
    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;
}

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

p {
    margin-bottom: 24px;
}

h1 {
    font-weight: 600;
    font-size: 40px;
    margin-bottom: 35px;
    line-height: 1;
    font-family: 'TTFirsNeue';
} 

h2 { 
    font-weight: 700;
    margin-bottom: 80px;
    font-size: 120px;
    text-transform: uppercase;
    line-height: 1; 
}

.btn { 
    align-items: center;
    justify-content: center;
    color: #0F1717;
    background: var(--main-color); 
    height: 80px; 
    text-align: center;
    font-size: 16px;
    display: flex;
    padding:  0 52px;  
    cursor: pointer;
    font-weight: 600;
    transition: all .3s;
    border: 0;
    text-transform: uppercase;
    font-family: 'TTFirsNeue', sans-serif;
    width: 100%;
}

.btn:hover {
    background: var(--main-color-hover);  
}

.btn.animate-item {
    opacity: 0; 
    transition: all 1s cubic-bezier(0.68, -0.55, 0.27, 1.55);
    transform: translateY(40px);
}

.btn.animate-item.visible {
    opacity: 1; 
    transform: translateY(0px);
}


*::-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 {
    position: relative;  
    padding-top: 50px;
    margin: 0;
    bottom: auto;
    top: auto;
}

.swiper-pagination-bullet {
    width: 30px;
    height: 6px; 
    background: #D9D9D9;  
    border-radius: 0;
    opacity: 1;
}

.swiper-pagination-bullet-active { 
    background: var(--main-color);
}

.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: 62px;
    min-width: 62px;
    height: 62px;  
    user-select: none; 
    background: var(--main-color);
    user-select: none;
} 
.swiper-slide img, .team .swiper-slide { 
    user-select: none;
} 

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

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

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


html {
    scroll-behavior: smooth;
}

body {
    font-family: 'TTFirsNeue', sans-serif;
    font-size: 18px;
    line-height: 1.3;    
    font-weight: 400;
    color: #fff;
    background: #000000;
    overflow-x: hidden;  
}

.header__burger {
    display: none;
}

.mob-nav  {
    width: calc(100% + 10px);
    height: calc(100vh - 60px);
    position: fixed;
    left: -10px;
    z-index: 98;
    top: 85px;
    -webkit-transform: translateX(-110%);
    -ms-transform: translateX(-110%);
    transform: translateX(-110%);
    padding: 30px 20px 20px;
    transition: all .4s;
    overflow: auto;
    background: #010001;
    border-top: 2px solid var(--main-color);
}

header {
    padding-top: 30px;
    position: fixed;
    top: 0;
    width: 100%;
    margin: 0 auto;
    z-index: 9;
    transition: all .3s;
}

header.fixed {
    background: #000;
    padding-top: 0px;
}

.header-container {
    display: flex;
    align-items: center;
    gap: 28px;
}

.header__logo {
    font-size: 28px;
    font-weight: 600;
    line-height: 1;
}

.header__slogan {
    font-weight: 500; 
    text-transform: uppercase;
    opacity: .6; 
    width: auto;
	font-size: 10px !important;
}

.header__btn .btn {
    height: 55px;
    font-size: 13px;
    padding: 0 20px;
}

.header__social a {
    font-size: 13px;
    text-transform: uppercase;
    font-weight: 600;
    transition: all .3s;
}

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

.header__social {
    display: flex;
    gap: 30px;
    padding-right: 20px;
}

.header-navigation__list li a {
    font-size: 13px;
    text-transform: uppercase;
    font-weight: 600;
    transition: all .3s;
}

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

.header-navigation__list {
    display: flex;
    gap: 44px;
    margin: auto;
}

.header-navigation__list>li.menu-item-has-children>a:hover::after,
.header-navigation__list>li.menu-item-has-children:hover>a::after {
    transform: rotate(180deg);
}

.zero>a { 
    cursor: default;
}

.header-navigation__list>li>.sub-menu {
    position: absolute;
    left: 0;
    top: 100%;
    width: 230px;
    height: auto;
    z-index: -10;
    opacity: 0;
    -webkit-transform: translateY(35px);
    transform: translateY(35px);
    pointer-events: none;
    transition: all .2s ease;
    display: flex;
    background: #000000;
    row-gap: 10px;
    flex-direction: column;
    box-shadow: 0px 5px 10px rgb(4 197 255 / 8%);
    border-radius: 10px;
    padding: 15px;
}

.header-navigation__list>li:hover   .sub-menu,
.header-navigation__list>li>.sub-menu:hover {
    z-index: 100;
    opacity: 1;
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
    pointer-events: auto;
}

.header-navigation__list>li  {
    position: relative;
}

.header-navigation__list>li.menu-item-has-children>a::after {
    content: '';
    background: url(img/icon/nav.svg) no-repeat; 
    right: 0;
    width: 8px;
    height: 4px;
    display: inline-block;
    vertical-align: middle;
    margin-left: 4px;
    transition: all .3s;
}

.main {
    height: 868px;
    overflow: hidden;
    padding-top: 168px;
    position: relative;
}

.main-bg-2 {
    position: absolute;
    z-index: 1;
    left: 50%;
    top: 0;
}

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

.main-bg-3 {
    position: absolute;
    z-index: 1;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
}

.main-bg-4 {
    position: absolute;
    right: 0;
    top: 0;
}

.main-bg-case {
    position: absolute;
    right: 0;
    top: 0;
}

.main::before {
    content: '';
    width: 100%;
    height: 330px;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0) 0%, #000000 100%);
    position: absolute;
    top: 0;
    left: 0; 
    z-index: 2;
}

.main::after {
    content: '';
    width: 860px;
    height: 100%;
    background: linear-gradient(-90deg, rgba(0, 0, 0, 0) 0%, #000000 100%);
    position: absolute;
    top: 0;
    left: 0; 
    z-index: 1;
}

.main .container {  
    z-index:2;
}

.main h1 {
    font-size: 70px;
    text-transform: uppercase;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 30px;
    z-index: 2;
    position: relative;
}

.main h1 + p {
    font-size: 20px; 
    font-weight: 500;
    line-height: 1.1;
    margin-bottom: 50px;
}

.main.main-price h1 + p { 
    max-width: 555px;
}


.main.main-case h1 + p {
    max-width: 540px;
}

.price-desc,
.price-sum {
    position: relative;
    z-index: 1;
}

.main-case-text {
    width: 348px; 
    position: absolute;
    right: 0;
    bottom: -100px;
}

.main .btn {
    max-width: 280px;
}

.main.main-price .btn {
    max-width: 480px;
}

.main-bg {
    position: absolute;
    object-fit: cover;
    width: 100%;
    height: 100%;
    top: 0;
    object-position: center;
}

.ladder {
    display: flex; 
    z-index: 2;
    align-items: end;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
}

.ladder>div {
    flex: 1;
    background: #fff;
    height: 1px;
    transition: all .75s;
}

.main.main-price .ladder>div,
.main.main-case .ladder>div { 
    background: #000; 
}

.ladder.visible>div:nth-child(2) { 
    height: 30px;
    transition-delay: .35s;
    
}

.ladder.visible>div:nth-child(3) { 
    height: 60px;
    transition-delay: .75s;
}

.ladder.visible>div:nth-child(4) { 
    height: 90px;
    transition-delay: 1.25s;
}

.nums {
    background: #fff;
    padding: 60px 0 80px;
    color: #0F1717;
}

.nums-items {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 95px;
}

.nums-item-num {
    font-weight: 700;
    font-size: 90px;
    margin-bottom: 15px;
    line-height: 1;
    color: var(--main-color);
}

.nums-item-name {
    font-size: 30px;
    font-weight: 700;
    text-transform: uppercase;
    line-height: 1;
    margin-bottom: 30px;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

.service {
    padding-bottom: 110px;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.home .service .ladder {
    display: none;
}

.tab-buttons {
    display: flex;
    gap: 10px;
    margin-bottom: 80px;
    justify-content: center;
}

.tab-button {
    display: flex;
    align-items: center;
    font-size: 12px;
    height: 39px;
    padding: 0 20px;
    color: #fff;
    border: 1px solid var(--main-color);
    justify-content: center;
    transition: all .3s;
    font-weight: 600;
    cursor: pointer;
    line-height: 1;
}

.tab-button:hover {
    background: var(--main-color);
    color: #fff; 
}
.tab-button.active {
    background: #4E4E4E;
    color: #fff;
    border: 1px solid #4E4E4E; 
}

.service-name {
    font-size: 34px;
    font-weight: 700;
    text-transform: uppercase;
    text-align: center;  
    padding: 25px;
    line-height: 1.2;
    position: relative;
    transition: all .3s;
}
.service-name span {
    display: block;
    text-align: center;
    max-width: 920px;
    margin: 0 auto; 
}
.service-name:hover {
    color: #080706;
}

.service-name::before {
    content: '';  
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;    
    transition: all .3s;
    z-index: -1;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.service-name:first-child:before {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.service-name:hover::before { 
    background: #fff; 
}

.service h2 {
    text-align: center;
    margin-bottom: 40px;
}

.client {
    padding-bottom: 180px;
    padding-top: 110px;
    position: relative;
    overflow: hidden;
}

.client h2 {
    text-align: center;
}

.client-items {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.price {
    padding: 110px 0 160px;
    position: relative;
}

.page-template-price .service .ladder {
    display: none;
}

.page-template-price .case-box {
    padding-top: 110px;
    padding-bottom: var(--padding-bt);
}

.price h2 {
    text-align: center;
    margin-bottom: 30px;
}

.price h2 + p {
    text-align: center;
    margin: 0 auto 80px;
    max-width: 1000px;
    font-size: 20px;
    font-weight: 500;
}

.price-items {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 10px;
    margin-bottom: 80px;
}

.price-item {
    background: #1A1A1A;
    padding: 25px 25px 35px;
    display: flex;
    flex-direction: column;
    position: relative;
}

.price-item h3 {
    font-weight: 700;
    font-size: 30px;
    margin-bottom: 28px;
    text-transform: uppercase;
}

.name-bg {
    position: absolute;
    right: 30px;
    bottom: 25px;
}

.price-btn .btn{
    max-width: 280px;
}

.price-btn {
    display: flex;
    justify-content: center;
}

.price-item ul {
    display: flex;
    flex-direction: column;
    row-gap: 16px;
    margin-bottom: 30px;
}

.price-item ul li {
    position: relative;
    padding-left: 27px;
    line-height: 1;
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 700;
}

.price-item ul li::before {
    position: absolute;
    content: '';
    width: 18px;
    height: 13px;
    left: 0;
    background: url(img/check.svg) no-repeat;
}

.price-sum {
    font-weight: 700;
    font-size: 30px;
    color: var(--main-color);
    text-transform: uppercase;
    margin-top: auto;
}

.our {
    padding: 110px 0 var(--padding-bt);
    position: relative;
    overflow: hidden;
}
.our::after,
.case::after {
    content: '';
    background: rgba(255, 255, 255, 0.1);
    width: 100%;
    height: 1px;
    bottom: 110px;
    position: absolute;
    left: 0;
}

.our h2 {
    text-align: center;
}

.our-item {
    background: #fff;
    width: 401px;
    padding: 25px 28px 30px;
    height: auto;
    display: flex;
    flex-direction: column;
    row-gap: 30px;
    align-items: start;
    color: #0F1717;
}

.our-pagination {
    display: none;
}

.our-item h3 {
    font-size: 30px;
    line-height: 1;
    text-transform: uppercase;
    margin: 0;
    min-height: 60px;
}

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

.our-bg-2 {
    position: absolute;
    right: 0;
    top: 0;
}

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

.case-list {
    padding-top: 110px;
    padding-bottom: 30px;
}

.case-list h2 {
    text-align: center;
}

.case-box {
    overflow: hidden;
    padding-bottom: 80px;
}

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

.case-slide {
    overflow: visible;
}

.case-item {
    background: #1A1A1A;
    height: auto; 
    width: 677px;
    display: flex;
    flex-direction: column
}

.case-slide1 {
    overflow: visible;
}

.case-item1 {
    background: #1A1A1A;
    height: auto; 
    width: 815px;
    display: grid;
    grid-template-columns: 289px 1fr;
    gap: 24px;
    padding: 20px;
}

.case-item2 {
    background: #1A1A1A;
    height: auto;  
    display: grid;
    grid-template-columns: 771px 1fr;
    gap: 34px;
    padding: 20px;
}

.case-item3 {
    background: #1A1A1A;
    height: auto;  
    display: flex;
    flex-direction: column;
    gap: 30px;
    padding: 20px;
}



.case-item-desc {
    padding: 24px;
    flex: 1;
}

.case-item-desc h3{
    margin: 0;
    line-height: 1;
    color: var(--main-color);
    font-size: 24px;
    font-weight: 700;
    text-transform: uppercase;
}

.short {
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 10px;
    display: block;
}

.case-item-link {
    height: 380px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.case-item1-link {
    min-height: 500px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.case-item2-desc {
    padding-top: 10px;
}

.case-item2-link {
    min-height: 434px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.case-item-link img,
.case-item1-link img,
.case-item2-link img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.case-item-link span,
.case-item1-link span,
.case-item2-link span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    position: relative;
    background: var(--main-color);
    transition: all .3s;
    padding-left: 5px;
}

.case-item-link:hover span, 
.case-item1-link:hover span,
.case-item2-link:hover span { 
    background:var(--main-color-hover);
}

.case-item1-desc h3,
.case-item2-desc h3 {
    text-transform: uppercase;
    font-size: 30px;
    margin-bottom: 30px;
    line-height: 1;
}

.task span,
.result span,
.solution span {
    font-size: 14px;
    font-weight: 700;
    display: block;
    margin-bottom: 5px;
    text-transform: uppercase;
}

.task p:last-child,
.result p:last-child,
.solution p:last-child {
    margin-bottom: 0;
}

.task { 
    margin-bottom: 20px; 
}
 
.result span {
    color: var(--main-color);
}
.solution {
    padding-bottom: 30px;
    margin-bottom: 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.case-item3-desc {
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 10px;
}

.case-item3-desc h3{
    color: var(--main-color);
    text-transform: uppercase;
    font-size: 30px;
    margin-bottom: 30px;
    line-height: 1;
}

.case-item3-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 34px;
}

.tag-list li a {
    display: flex;
    align-items: center;
    font-size: 12px;
    text-transform: uppercase;
    height: 39px;
    padding: 0 20px;
    color: #fff;
    border: 1px solid var(--main-color);
    justify-content: center;
    transition: all .3s;
    font-weight: 600;
    cursor: pointer;
    line-height: 1;
}

.tag-list {
    display: flex;
    gap: 10px;
    margin-bottom: 60px;
    justify-content: center;
}

.tag-list li.current_page_item a  {
    background: #4E4E4E;
    color: #fff;
    border: 1px solid #4E4E4E;
}
.tag-list li a:hover {
    background: var(--main-color);
    color: #fff;
}

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

.title-row2 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    padding-top: 60px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.title-row2 h3 {
    text-transform: uppercase;
    font-size: 34px;
    font-weight: 700;
    color: var(--main-color);
}

.title-row2 h3 span {
    color: #fff;
}

.title-row h2,
.title-row h3 {
    margin: 0;
}

.service-btn,
.case-box-ntn {
    padding-top: 70px;
    display: flex;
    justify-content: center;
}

.service-btn .btn{
    max-width: 278px;
}
.case-box-ntn .btn{
    max-width: 228px;
}

.case-gallery {
    display: flex;
    gap: 10px;
}

.process {
    padding: 110px 0 180px;
    background: #fff;
    color: #0F1717;
    position: relative;
    overflow: hidden;
}

.ladder.ladder-black>div {
    background: #000;
}

.process h2 {
    text-align: center;
}

.process-item-num {
    font-size: 34px;
    font-weight: 700;
    line-height: 1;
    color: var(--main-color);
}

.process-item {
    display: grid;
    grid-template-columns: 55px 380px 380px 1fr;
    gap: 100px;
    padding: 30px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.3);
}
.process-item:nth-child(2) { 
    border-top: 1px solid rgba(0, 0, 0, 0.3);
}

.process-item-title {
    font-size: 20px;
    font-weight: 700;
    text-transform: uppercase;
}

.process-item-result {
    font-weight: 700;
    padding-left: 70px;
}

.process-item-result span {
    display: block;
    padding-bottom: 5px;
}

.process-text {
    padding: 100px 0 0;
    max-width: 775px;
    text-align: center;
    font-weight: 700;
    text-transform: uppercase;
    margin: 0 auto 60px;
    font-size: 30px;
}

.process-btn {
    display: flex;
    justify-content: center; 
}

.process-btn .btn {
    max-width: 320px; 
}

.team-item {
    width: 444px; 
    height: auto;
}

.team-slide {
    overflow: visible;
}

.team-item h3 {
    padding: 20px 0 10px;
    font-weight: 700;
    text-transform: uppercase;
    line-height: 1.1;
    font-size: 30px;
}

.job {
    font-weight: 700;
    padding-bottom: 15px;
}

.team h2 { 
    margin-bottom: 0px;
}
.team .title-row { 
    margin-bottom: 10px;
}


.team .title-row + p {
    font-weight: 700; 
    text-transform: uppercase;
    margin-bottom: 80px;
}

.team {
    padding: 110px 0;
    overflow: hidden;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
}

.page-template-service .team {
    border-bottom: 0;
}

.review {
    padding: 110px 0;
    overflow: hidden;
}

.review {
    background: #fff;
    color: #0F1717;
}

.review h2 {
    text-align: center;
}

.review-item {
    width: 515px;
    height: auto;
}

.review-item .content {
    padding-left: 24px;
    border-left: 2px solid var(--main-color);
}

.review-item img {
    max-width: 170px;
}

.review-top {
    padding: 35px 0 20px;
    display: flex;
    justify-content: space-between;
}

.review-top h3, .review-top span {
    margin: 0;
    font-weight: 700;
    font-size: 16px;
    text-transform: uppercase;
}

footer {
    padding-top: 100px;
    position: relative;
    overflow: hidden;
}

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

.footer-bg-2 {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
}

.footer-center {
    display: grid;
    grid-template-columns: 1fr 520px;
    gap: 128px;
    padding-bottom: 165px;
}

.footer__email a {
    font-weight: 600;
    font-size: 24px;
    transition: all .3s;
    color: var(--main-color);
}

.footer__email a:hover { 
    color: #FFFFFF;
}

.footer__contact {
    display: flex;
    gap: 50px;
    align-items: end;
}

.footer__mess {
    display: flex;
    gap: 16px;
}

.footer__mess a img {
    transition: all .3s;
}

.footer__mess a:hover img{
    transform: rotate(360deg);
}

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

.footer__info a {
    transition: all .3s;
}

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

.footer__info p{
    margin-bottom: 0;
}

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

.footer-top .title {
    font-size: 94px;
    font-weight: 700;
    text-transform: uppercase;
    line-height: 1.1;
    letter-spacing: -3px;
    margin-bottom: 50px;
}

.footer-form .form {
    background: #fff;
    padding: 35px 30px;
}

.form-title {
    font-size: 30px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 35px;
    line-height: 1;
    color: #0F1717;
}

.form__field {
    font-size: 20px; 
    height: 65px;
    width: 100%; 
    padding: 0 20px;
    color: #0F1717;
    background: #FFFFFF;
    border: 1px solid rgba(0, 0, 0, 0.4); 
    font-family: 'TTFirsNeue';
} 

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

.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 {
    display: none!important;
}

.modal {
    max-width: 540px;
    padding: 48px;
    width: 100%;
    background: #fff; 
}

.form-btn .btn {
    height: 62px;
    width: 210px;
}

.form-group.form-btn {
    margin: 0;
}

::-webkit-input-placeholder {color: #0F1717;font-family: 'TTFirsNeue';}
::-moz-placeholder          {color: #0F1717;font-family: 'TTFirsNeue';}
:-moz-placeholder           {color: #0F1717;font-family: 'TTFirsNeue';}
:-ms-input-placeholder      {color: #0F1717;font-family: 'TTFirsNeue';}


.fancybox-slide--html .fancybox-close-small {
    color: #000; 
}

.page-content {
    padding-top: 130px;
}

.content h2 { 
    margin-bottom: 30px;
    font-size: 32px;
    text-transform: none;
    line-height: 1;
}

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

.content ul, 
.content ol { 
    margin-bottom: 30px;
    padding-left: 30px;  
}

.content ul li { 
    list-style: disc; 
}

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

.content  { 
    padding-bottom: 75px; 
}
.thanks-modal p {
    color: #0F1717;
}


.form-check {
    padding-bottom: 20px; 
    position: relative;
}

.form-row label#checkpolit-error { 
    top: 35px;
}

.form-row .form-check {
    padding-bottom: 0; 
    padding-top: 10px;
}
 

.form-check span {
    display: block;
    position: relative;
    padding-left: 38px;
    color: #696C78;
    font-size: 14px;
    line-height: 1.2;
}
 
.form-check span a {  
    transition: all .3s;
    text-decoration: underline;
}

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

.form-check-label .form-check-input {
    position: absolute;
    opacity: 0;
}

.form-check-label span:before, .form-check-label span:after {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    transition: 0.15s ease-in-out;
    cursor: pointer;
    transform: translateY(-50%);
}

.form-check-label span:before {
    width: 24px;
    height: 24px;
    background: transparent;
    border: 1px solid #B5B8BC;
    border-radius: 8px;
}

.form-check-input[type=checkbox] + span:after {
    width: 10px;
    height: 5px;
    margin: -3px 0 0 10px;
    border-style: solid;
    border-color: #171D52;
    border-width: 0 0 2px 2px;
    opacity: 0;
    transform: rotate(-45deg) translateY(-50%);
}

.form-check-input:checked + span:after {
    opacity: 1;
}

.form-check-input:checked + span::before {
    border: 1px solid #B5B8BC;
}

.form-check-label .form-check-input.error + span {
    color: red;
}