@font-face {
    font-family: "Manrope";
    font-style: normal;
    font-weight: normal;
    font-display: swap;
    src: url("../fonts/Manrope-Regular.ttf") format("truetype");
}

@font-face {
    font-family: "Manrope";
    font-style: normal;
    font-weight: bold;
    font-display: swap;
    src: url("../fonts/Manrope-Bold.ttf") format("truetype");
}

:root {
    --mainBg: #151515;
    --darkBg: #101010;
    --textColor: #ffffff;
    --textColor2: #9F9F9F;
    --accentColor: #F88A48;
    --placeholder: #737373;
    --error: #F14B4B;
    --border: #5a5a5a;
}


body {
    background-color: var(--mainBg);
    color: var(--textColor);
    margin: 0;
    padding: 0;
    position: relative;
    font-size: 20px;
    font-family: "Manrope", sans-serif;
    line-height: 1.6;
}


/* global box-sizing */
*,
*:after,
*:before {
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
    font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    outline: none;
}

/* clear */
.clear:before,
.clear:after {
    content: ' ';
    display: table;
}

.clear:after {
    clear: both;
}

.clear {
    *zoom: 1;
}

img {
    max-width: 100%;
    vertical-align: bottom;
}

a {
    color: inherit;
    text-decoration: none;
}

a:hover {
    color: var(--accentColor);
}

a:focus {
    outline: 0;
}

a:hover,
a:active {
    outline: 0;
}

textarea:focus,
input:focus {
    outline: 0;
    border: 1px solid #04A4CC;
}
.no-scroll{
    overflow-y: hidden;
}
.container {
    width: 1690px;
    padding: 0 15px;
    max-width: 100%;
    margin: 0 auto;
}
.d-flex {
    display: flex;
}
.j-between {
    justify-content: space-between;
}
.j-center{
    justify-content: center;
}
.a-center {
    align-items: center;
}
.f-wrap {
    flex-wrap: wrap;
}
.dark-bg{
    background-color: var(--darkBg);
}
.btn {
    display: inline-flex;
    padding: 20px 50px;
    justify-content: center;
    align-items: center;
    border-radius: 90px;
    border: 1px solid var(--textColor, #FFF);
    background: rgba(255, 255, 255, 0.01);
    backdrop-filter: blur(1.5px);
    transition: all .3s ease;
    color: var(--textColor);
    cursor: pointer;
    font-size: 20px;
    font-family: "Manrope", sans-serif;
}
.btn:hover {
    background: var(--accentColor);
    border-color: var(--accentColor);
    color: var(--textColor);
}

h1 {
    font-size: 2.9em;
    font-style: normal;
    font-weight: 400;
}
h2 {
    font-size: 1.8em;
    font-style: normal;
    font-weight: 400;
}
h3 {
    font-size: 1.2em;
    font-style: normal;
    font-weight: 400;
}

.wrapper {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.wrapper>* {
    width: 100%;
}
.text-center{
    text-align: center;
}

/*header*/
.menu-toggle{
    font-size: 0;
    background: none;
    border: none;
    display: none;
}
.menu-toggle.open svg:last-child{
    display: inline;
}
.menu-toggle svg:last-child,
.menu-toggle.open svg:first-child{
    display: none;
}
.mob-menu{
    position: fixed;
    z-index: 10;
    top: 62px;
    left: 0;
    width: 100%;
    height: calc(100vh - 62px);
    background-color: var(--darkBg);
    overflow-y: auto;
    display: none;
}
.mob-menu .inner{
    display: flex;
    flex-direction: column;
    padding: 60px 16px 50px;
    min-height: 100%;
}
.mob-menu .inner>*{
    width: 100%;
}
.mob-menu .inner .nav ul{
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
}
.mob-menu .inner .btn{
    margin-top: auto;
}


.header .d-flex {
    height: 112px;
}

.header .btn {
    padding: 14px 40px;
}

.nav ul {
    display: flex;
    align-items: center;
    list-style-type: none;
    margin: 0;
    padding: 0;
    gap: 110px;
}
.accent{
    color: var(--accentColor);
}

/*footer*/
.footer {
    margin-top: auto;
    background-color: #000;
    padding-top: 90px;
}

.social a {
    font-size: 0;
    margin-left: 28px;
}

.social a:hover path {
    fill: var(--accentColor);
}

.copyright {
    color: var(--placeholder);
    font-size: 16px;
    padding: 40px 0;
    margin-top: 80px;
    border-top: 1px solid var(--textColor);
}

.copyright a {
    margin-right: 24px;
}



/*main*/
.wrapper section,
.section {
    padding: 130px 0;
}

.section-title {
    margin: 0 0 40px;
}

.section-subtitle {
    width: 700px;
    max-width: 100%;
    margin: 0 0 90px;
}
.slider-section{
    position: relative;
}
.main-slider {
    margin: 0;
}

.main-slider .item {
    position: relative;
    height: calc(100vh - 112px);
    min-height: 500px;
}
.main-slider .item a{
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}
.main-slider .item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.img-wrap {
    display: block;
    height: 100%;
    width: 100%;
}

.img-wrap canvas {
    height: 100%;
}

.img-wrap img {
    height: 100%;
    display: block;
}
.img-wrap picture:nth-child(2) img,
.img-wrap img:nth-child(2) {
    position: absolute;
    top: 0;
    left: 0;
    /*opacity: 0;*/
    transition: opacity 0.3s;
}
.item:hover .img-wrap img:nth-child(2),
.item:hover .img-wrap picture:nth-child(2) img {
    opacity: 1;
}

.js .img-wrap img {
    /*display: none;*/
}

.slider-section .btn {
    position: absolute;
    bottom: 60px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
    white-space: nowrap;
}

.slick-arrow {
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
    top: 50%;
    font-size: 0;
    width: 90px;
    height: 60px;
    border-radius: 30px;
    transform: translateY(-50%);
    cursor: pointer;
    background:rgba(0,0,0,0);
    transition: all .3s ease;
}
.slick-arrow:hover{
    background:rgba(0,0,0,.6);
}

.slick-prev {
    left: calc((100% - 1690px)/2);
}

.slick-next {
    right: calc((100% - 1690px)/2);
}

.features-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-column-gap: 95px;
    grid-row-gap: 110px;
}
.features-list .item .title{
    margin: 32px 0 24px;
}
.features-list .item .text{
    color: var(--textColor2);
}
.features-list .item a{
    margin-top: 40px;
}
.section-coast{
    position: relative;
    padding: 136px 0;
    text-align: center;
}
.section-coast img{
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.section-coast p{
    margin: 0 auto 60px;
    max-width: 100%;
    width: 700px;
}

.about{
    background-color: var(--darkBg);
}
.about-blocks {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-column-gap: 95px;
    grid-row-gap: 70px;
    overflow: hidden;
}

.about-blocks .item {
    padding-bottom: 34px;
    position: relative;
}
.about-blocks .item h3{
    margin: 32px 0 24px;
}
.about-blocks .item .text{
    color: var(--textColor2)
}

.about-blocks .item+.item:before {
    content: '';
    display: block;
    width: 1px;
    background: #5A5A5A;
    position: absolute;
    bottom: 0;
    top: 114px;
    left: -43px;
}

.about-blocks .divider {
    grid-column: span 3;
    height: 1px;
    background: #5A5A5A
}

.callback>.container>.d-flex{
    padding: 90px 0;
    border-top: 1px solid #fff;
    border-bottom: 1px solid #fff;
}
.callback .section-title{
    width: calc(40% - 20px);
}
.callback .col{
    width: calc(60% - 20px);
}
.callback .input-wrap{
    width: calc(50% - 30px);
    margin-bottom: 20px;
}
.callback .form-cell:last-child{
    padding-top: 18px;
    margin-left: 60px;
}
.input-label{
    font-size: 16px;
    margin: 0 0 8px;
}
.red{
    color: var(--error);
}
.form-cell input,
.callback .input-wrap input{
    width: 100%;
    background: none;
    border: none;
    color: inherit;
    font-size: 20px;
    padding: 12px 8px;
    border-bottom: 1px solid var(--border);
}
.wpcf7-acceptance .wpcf7-list-item{
    margin: 0;
    font-size: 16px;
}
.wpcf7-acceptance a{
    text-decoration: underline;
}
.wpcf7-acceptance label{
    position: relative;
    padding-left: 30px;
    cursor: pointer;
}
.wpcf7-acceptance label input{
    visibility: hidden;
    position: absolute;
}
.wpcf7-acceptance label>span:before{
    display: block;
    position: absolute; 
    left: 0;
    top: 50%;
    margin-top: -9px;
    width: 18px;
    height: 18px;
    border: 1px solid #fff;
    border-radius: 3px
}
.wpcf7-acceptance label> input:checked+span:before{
    background-image: url(../img/check.svg);
    background-repeat: no-repeat;
    background-position: center;
}
.wpcf7-not-valid-tip{
    display: none;
}
.callback .input-wrap input[aria-invalid=true]{
    border-bottom-color: var(--error);
}
.steps-list {
    display: grid;
    grid-template-rows: repeat(4, 1fr);
    grid-column-gap: 200px;
    grid-row-gap: 50px;
    grid-auto-flow: column;
}

.steps-list .item {
    position: relative;
    padding-top: 50px;
    padding-left: 56px;
    border-top: 1px solid var(--textColor2);
}
.steps-list .item h3{
    margin: 0 0 24px;
}
.steps-list .item .text{
    color: var(--textColor2);
}
.steps-list .item .numb {
    position: absolute;
    font-size: 24px;
    left: 0;
    top: 50px;
}

.gallery-slider .item{
    padding: 0 10px;
    height: 720px;
}
.gallery-slider .item img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.gallery-slider .slick-list{
    padding: 0 calc((100% - 1100px)/2);
}

.brif-section{
    background-color: var(--darkBg);
}

.brif-section .form-cell{
    width: calc(25% - 60px);
    margin-bottom: 70px;
}
.brif-section .form-cell.large{
    width: calc(50% - 40px);
}
.file-label{
    cursor: pointer;
    display: flex;
    align-items: center;
    margin-top: 20px;
}
.file-label span{
    display: inline-block;
    border-bottom: 1px solid var(--textColor);
}
.file-label svg{
    margin-right: 8px;
}
.file-label input{
    visibility: hidden;
    position: absolute;
}
.wpcf7-radio{
    max-width: 100%;
    width: 520px;
    display: flex;
    flex-wrap:wrap;
    margin-bottom: 50px;
}
.wpcf7-radio .wpcf7-list-item{
    margin: 0 0 16px;
    width: 200px;
}
.wpcf7-radio .wpcf7-list-item:nth-child(even){
    margin-left: 120px;
}
.wpcf7-radio label{
    position: relative;
    cursor: pointer;
}
.wpcf7-radio label input{
    width: 0;
    height: 0;
    visibility: hidden;
    position: absolute;
}
.wpcf7-radio label span{
    position: relative;
    padding-left: 30px;
}
.wpcf7-radio label span:before{
    content: '';
    display: block;
    position: absolute;
    left: 0;
    top: 50%;
    margin-top: -9px;
    width: 18px;
    height: 18px;
    border: 1px solid var(--textColor);
    border-radius: 10px;
}
.wpcf7-radio label span:after{
    content: '';
    display: block;
    position: absolute;
    left: 4px;
    top: 50%;
    margin-top: -5px;
    width: 10px;
    height: 10px;
    background: var(--textColor);
    border-radius: 10px;
    opacity: 0;
}
.wpcf7-radio label input:checked+span:after{
    opacity: 1;
}
.form-cell textarea{
    display: block;
    width: 100%;
    background: none;
    color: inherit;
    border: 1px solid var(--textColor);
    height: 110px;
    padding: 12px 18px;
    border-radius: 12px;
    resize: none;
}
.form-cell .nice-select{
    background: var(--darkBg);
    width: 100%;
    padding: 12px 8px;
    border-radius: 0;
    border: none;
    border-bottom: 1px solid var(--border);
    font-size: 20px;
    height: 48px;
    line-height: 1;
}
.form-cell .nice-select .list{
    width: 100%;
    background: var(--darkBg);
    border-radius: 0;
    border: 1px solid var(--border) 
}
.form-cell h3{
    margin-top: 0;
}
.nice-select .option:hover, .nice-select .option.focus, .nice-select .option.selected.focus{
    background-color: var(--accentColor);
}
.nice-select:after{
    border: none;
    transform: none;
    width: 24px;
    height: 24px;
    background-image: url(../img/Chevron-Down.svg);
    background-repeat: no-repeat;
    background-position: center;
    right: 8px;
    top: 50%;
    margin-top: -12px;
    transform-origin: 50% 50%;
}
.nice-select.open:after{
    transform: rotateX(180deg);
}

.page-heading{
    position: relative;
    height: 600px;
    padding-top: 80px;
    display: flex;
    align-items: center;
}
.page-heading:after{
    content:'';
    display: block;
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,.3);
}
.page-heading img{
    position: absolute;
    z-index: -1;
    width: 100%;
    height: 100%;
    object-fit: cover;
    top: 0;
    left: 0;
}
.page-heading h1{
    margin: 0;
    line-height: 1.4;
}
.page-heading p{
    max-width: 100%;
    width: 500px; 
}
#breadcrumbs{
    height: 80px;
    background-color: rgba(16, 16, 16, .8);
    display: flex;
    align-items: center;
    word-spacing: 8px;
    color: var(--textColor2);
}
.page-heading #breadcrumbs{
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
}
#breadcrumbs a{

}
.breadcrumb_last,
#breadcrumbs a:hover{
    color: var(--textColor);
}

.contacts{
    position: relative;
    overflow: hidden;
}
.contacts .col:first-child{
    padding-right: 120px;
    width: 56%;
}
.contacts .col:last-child{
    position: relative;
    padding-left: 130px;
    width: 44%;
}
.contacts .col:last-child:before{
    content: '';
    display: block;
    position: absolute;
    left: 0;
    top: -130px;
    bottom: -130px;
    width: 200%;
    background-color: var(--darkBg);
    z-index: -1;
}
.contacts .col:last-child .section-title{
    margin-bottom: 20px;
}
.contacts .form-cell .nice-select{
    background-color: var(--mainBg);
}
.contacts .form-cell{
    width: calc(50% - 40px);
    margin-bottom: 50px;
}
.contacts .form-cell.large{
    width: 100%;
}
.contacts form{
    display: block;
    width: 740px;
    max-width: 100%;
}
.contacts .wpcf7-radio{
    margin-bottom: 0;
}
.contacts .file-label{
    margin-bottom: 36px;
}
.contact-item{
    margin-bottom: 70px;
}
.contact-item h3{
    margin: 0 0 30px;
}
.contact-item a{
    display: flex;
    align-items: center;
    margin-top: 24px;
}
.contact-item a svg{
    margin-right: 16px;
}
.contact-item p{
    margin: 0 0 16px;
}

.posts-list{
    display: grid;
    grid-template-columns: repeat(3,1fr);
    grid-column-gap: 50px;
    grid-row-gap: 90px;
    margin-bottom: 90px;
}
.posts-list .post>a:last-child{
    display: inline-block;
    border-bottom: 1px solid var(--textColor);
}
.posts-list .post h3{
    margin: 32px 0 24px;
}
.posts-list .post p{
    color: var(--textColor2);
}
.posts-list .post img{
    width: 100%;
    height: 420px;
    object-fit: cover;
}

.single-post-section{
    padding-top: 90px;
}
.single-post-section .post-title{
    width: calc(42% - 50px);
    margin: 0;
    /*padding-top: 170px;*/
    position: sticky;
    top: 30px;
    align-self: flex-start;
}
.single-post-section .content{
    width: calc(58% - 50px);
}
.single-post-section .post-meta{
    padding: 100px 0;
    border-bottom: 1px solid var(--textColor);
}
.single-post-section .post-meta img{
    margin-right: 16px;
}
.related .section-title{
    margin: 0 0 90px;
}
.related .posts-list{
    margin-bottom: 0;
}
.section-404{
    position: relative;
    display: flex;
    align-items: center;
    min-height: calc(100vh - 112px)
}
.section-404 img{
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}
.section-404 .section-title{
    margin-bottom: 20px;
}
.section-404 .section-subtitle{
    margin-bottom: 40px;
}

.section-calc{
    position: relative;
    overflow: hidden;
    min-height: 750px;
    display: flex;
    align-items: center;
}
.section-calc img{
    position: absolute;
    top: 50%;
    transform:translateY(-50%);
    right: 0;
}
.section-calc .section-title{
    width: 885px;
    max-width: 100%;
}
.single-service .features-list{
    grid-template-columns: repeat(4,1fr);
    grid-column-gap: 80px;
}
.add-list{
    margin-top: 87px;
}
.add-list .item{
    border-bottom: 1px solid var(--textColor);
}
.add-list .item:first-child{
    border-top: 1px solid var(--textColor);
}
.add-list .item .title{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 48px 30px;
    cursor: pointer;
}
.add-list .item .title.active svg{
    transform: rotate(180deg);
}
.add-list .item .text{
    display: none;
}
.add-list .item .text .inner{
    padding-bottom: 48px;
    columns: 2;
    column-gap: 40px;
    padding-left: 30px;
    padding-right: 30px;
}
.add-list .item .text .inner ul{
    margin-top: 0;
    padding-left: 0;
}
.add-list .item .text .inner p{
    margin: 0 0 30px;
}
.add-list .item .text .inner ul li{
    margin-bottom: 20px;
    -webkit-column-break-inside: avoid;
          page-break-inside: avoid;
               break-inside: avoid;
}

.type-nav{
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 90px;
}
.type-nav a{
    color: var(--placeholder)
}
.type-nav a:hover{
    color: var(--accentColor);
}
.type-nav a.active{
    color: var(--textColor)
}   
.type-nav a+a:before{
    content: '';
    display: inline-block;
    width: 110px;
    height: 1px;
    background-color: var(--placeholder);
    margin-right: 40px;
    margin-left: 40px;
    vertical-align: middle;
    pointer-events: none;
}

.projects-list .row{
    display: flex;
    justify-content: space-between;
    margin-right: -10px;
    margin-left: -10px;
}
.projects-list .row+.row{
    margin-top: 20px;
}
.projects-list .row:nth-child(even){
    flex-direction: row-reverse;
    justify-content: flex-end;
}
.projects-list .row .item:first-child{
    width: calc(63% - 20px);
}
.projects-list .row .item:last-child{
    width: calc(37% - 20px);
}
.projects-list .row .item{
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    height: 700px;
    transition:all .3s ease;
    margin: 0 10px;
}
.projects-list .row .item img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}
.projects-list .row .item a{
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
}
.projects-list .row .item h2,
.projects-list .row .item p{
    opacity: 0;
    transition:all .3s ease;
    margin: 0;
    max-width: 90%;
    width: 490px;
}
.projects-list .row .item h2{
    margin-bottom: 12px;
}
.projects-list .row .item:hover a,
.projects-list .row .item:hover h2,
.projects-list .row .item:hover p{
    opacity: 1;
}
.projects-list .row .item:hover{
    background-color: rgba(0,0,0,.4);
}

.more-btn-wrap .btn{
    margin-top: 90px;
}
.proj-wrap{
    padding-top: 106px;
}
.proj-wrap h1{
    margin: 0 0 40px;
}
.proj-desc{
    padding-bottom: 90px;
    margin-bottom: 90px;
    border-bottom: 1px solid var(--textColor);
}
.proj-desc .col:first-child{
    padding-right: 114px;
    width: calc(100% - 546px);
}
.proj-desc .col:last-child{
    padding-left: 114px;
    border-left: 1px solid var(--border);
    width: 546px;
}
.proj-desc .col:last-child p{
    margin: 0;
}
.proj-desc .col:last-child p+p{
    margin-top: 20px;
}
.proj-desc .col:last-child p span:first-child{
    color: var(--textColor2);
    display: inline-block;
    width: 190px;
}


.modal,
.modal-box {
  z-index: 900;
}

.modal-sandbox {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: transparent;
}

.modal {
  display: none; 
  position: fixed;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background: rgb(0,0,0);
  background: rgba(21, 21, 21, 0.75);
  overflow: auto;
}

.modal-box {
  position: relative;
  max-width: 95%;
  width: 1100px;
  margin: 100px auto;
  animation-name: modalbox;
  animation-duration: .4s;
  animation-timing-function: cubic-bezier(0,0,.3,1.6);
}

.modal-body {
  background: var(--mainBg);
  position: relative;
  padding-left: 450px;
}
.modal-body img{
	position: absolute;
	width: 450px;
	height: 100%;
	top: 0;
	left: 0;
	object-fit: cover;
}

/* Close Button */
.close-modal {
	position: absolute;
  	cursor: pointer;
  	top: 20px;
  	right: 20px;
}
.close-modal:hover path{
	stroke: var(--accentColor)
}

/* Animation */
@-webkit-keyframes modalbox {
  0% {
    top: -250px; 
    opacity: 0;
  }
  100% {
    top: 0; 
    opacity: 1;
  }
}

@keyframes modalbox {
  0% {
    top: -250px; 
    opacity: 0;
  }
  100% {
    top: 0; 
    opacity: 1;
  }
}

.modal-wrap{
	padding: 90px 70px;
}
.modal-wrap h3{
	margin: 0 0 50px;
}
.modal-wrap .input-wrap+.input-wrap{
	margin-top: 50px;
}
.modal-wrap .wpcf7-acceptance{
	display: block;
	margin: 40px 0;
}

.fancybox-bg{
	background-color: #000;
}
.fancybox-is-open .fancybox-bg{
	opacity: .7;
}
.fancybox-navigation .fancybox-button{
	background: none;
	padding-left: 0;
	padding-right: 0;
}
.res-wrap,
.calc-wrap{
    padding: 70px 100px;
}
.calc-items{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.calc-items .item{
    display: flex;
    justify-content: space-between;
    /*width: calc(50% - 86px);*/
    width: 100%;
    margin-bottom: 65px;
    gap:120px;
}
.calc-items .item .label{
    width: calc(100% - 270px);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap:120px;
}
.calc-items .item .label h3{
    margin: 0;
    width: 400px;
}
.calc-items .item .label p{
    margin: 0;
    color: var(--textColor2);
    width: 600px;
}
.calc-items .item .val{
    width: 220px;
    position: relative;
}
.calc-items .item .val .tw{
    position: absolute;
    top: 0;
    right: -32px;
}
.form-btns{
    position: relative;
    padding-top: 70px;
    border-top: 1px solid var(--border);
}
.form-btns button[type=reset]{
    background: none;
    border: none;
    color: var(--placeholder);
    border-bottom: 1px solid var(--placeholder);
    position: absolute;
    right: 0;
    bottom: 35px;
    padding: 0;
    transform:translateY(50%);
    transition: all .3s ease;
}
.form-btns button[type=reset]:hover{
    color: var(--textColor)
}
.calc-items .item input{
    display: block;
    width: 100%;
    border-radius: 70px;
    border: 1px solid var(--border);
    background: #000;
    padding: 16px 20px;
    text-align: center;
    color: var(--textColor);
    line-height: 1.9;
    -moz-appearance:textfield; /* Firefox */
}
.calc-items .item input::-webkit-outer-spin-button,
.calc-items .item input::-webkit-inner-spin-button {
    /* display: none; <- Crashes Chrome on hover */
    -webkit-appearance: none;
    margin: 0; /* <-- Apparently some margin are still there even though it's hidden */
}
.calc-items .item input.required{
    border-color: var(--error);
}
.calc-items .item input:focus{
    border-color: var(--textColor);
}
.calc-items .item .nice-select{
    border-radius: 32px;
    border: 1px solid var(--border);
    background: #000;
    padding: 16px 20px;
    height: auto;
    line-height: 1.5;
    font-size: 20px;
    text-align: center !important;
}
.calc-items .item .nice-select.open{
    border-color: var(--textColor);
    border-bottom-width: 0;
    border-radius: 32px 32px 0 0;
}
.calc-items .nice-select .list{
    background-color: #000;
    margin-top: 0;
    border: 1px solid var(--textColor);
    border-top-width: 0;
    border-radius: 0 0 32px 32px;
    left: -1px !important;
    right: -1px !important;
}
.calc-items .nice-select .list .option{
    padding: 12px 20px;
    text-align: center;
}
.res-wrap{
    margin-top: 70px;
}
.res-wrap .total{
    margin: 0 0 50px;
    color: var(--accentColor);
}
.included{
    display: flex;
    justify-content: space-between;
}
.included .label{
    width: 30%;
    margin: 0;
}
.included .list{
    width: 70%;
    columns: 2;
    column-gap: 70px
}
.included .list p{
    display: flex;
    justify-content: space-between;
    margin: 0 0 12px;
}
.calc-form{
    display: flex;
    margin-top: 70px;
    padding-top: 70px;
    border-top: 1px solid var(--border);
}
.calc-form h3{
    margin: 0;
    width: 30%;
}
.calc-form .wpcf7{
    width: 70%;
}
.calc-form .input-wrap{
    width: calc(50% - 40px);
    margin-bottom: 20px;
}
.calc-form .form-cell:last-child {
    padding-top: 18px;
    margin-left: 60px;
}

#downBtn,
#upBtn{
    position: fixed;
    font-size: 0;
    right: 50px;
    bottom: 40px;
    cursor: pointer;
}
#downBtn svg{
    transform:rotate(180deg);
}

.wpcf7 form .wpcf7-response-output{
    display: none !important;
}
.unaccepted .wpcf7-acceptance label>span:before,
.form-cell input[aria-invalid="true"], 
.callback .input-wrap input[aria-invalid="true"]{
    border-color: var(--error);
}
.page-content{
    padding: 90px 0 130px;
}
.page-content h1{
    margin-top: 0;
}

body .ui-tooltip{
    font-size: 16px;
    color:var(--textColor);
    padding: 16px;
    border:none !important;
    border-radius: 8px;
    background: var(--border);
    box-shadow: 3px 13px 20px 0px rgba(0, 0, 0, 0.62);
}
body .ui-tooltip:before{
    content: '';
    display: block;
    position: absolute;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 5px 6px 5px;
    border-color: transparent transparent var(--border) transparent;
    left: calc(50% + 33px );
    top: -6px;
}