@charset "utf-8";
/*
font-family: 'Raleway', sans-serif;*/
body{
    font-family: 'Montserrat', sans-serif;
    color: #696D7D;
    font-size: 16px;
    line-height: 1.4;
}
.footer {
    min-height: 300px;
    background: #333;
}

h2{
    font-family: 'Raleway';
    font-style: normal;
    font-weight: 700;
    font-size: 50px;
    line-height: 1.1;
    margin-bottom: 70px;
}

h3{
    font-weight: 700;
    font-size: 24px;
    line-height: 1.3;
    margin-bottom: 20px;
}

h4{

}

@media(max-width: 767px) {
    h2 {
        font-size: 30px;
        margin-bottom: 40px;
    }
    h3{
        font-size: 20px;
    }
}

.yellow{
    color: #FFEFBE;
}
a {
    color: #5253FF;
}

a:hover {
    color: #333;
}

a.invert {
    color: #333;
}

a.invert:hover {
    color: #5253FF;
}

.btn {
    font-family: 'Raleway';
    display: inline-block;
    text-decoration: none;
    cursor: pointer;
    padding: 34px 70px;
    border: none;
    font-weight: bold;
    font-size: 20px;
    line-height: 1.1;
    text-transform: uppercase;
    color: #696D7D;
    background: #FFEFBE;
    text-align: center;
    transition: all 300ms ease-out;
}

.btn:hover {
    background: #EDCF76;
    color: #696D7D;
}
.btn.block{
    padding-left: 15px;
    padding-right: 15px;
    width: 100%;
}
@media(max-width: 1099px){
    .btn {
        padding: 25px 50px;
        font-size: 18px;
    }
}
@media(max-width: 767px){
    .btn {
        padding: 20px 40px;
        font-size: 16px;
    }
}

/* Header */
.header{
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    color: #fff;
    transition: all ease-out 300ms;
}
.header.active{
    background: rgba(0,0,0,0.7);
}
.header a{
    color: #fff;
}
.header-inner{
    height: 90px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: center;
}
.header .logo{
    width: 160px;
}
.header-tel{
    width: 200px;
    text-align: right;
}
.header-tel a{
    font-weight: 600;
    font-size: 20px;
    line-height: 1.1;
}
.header-tel a:hover{
    color: #FFEFBE;
}
.top-menu{
    width: calc(100% - 400px);
    text-align: center;
}
.top-menu > ul > li{
    display: inline-block;
    margin: 0 34px 0 0;
}
.top-menu > ul > li:last-of-type{
    margin-right: 0;
}
.top-menu a:hover,
.top-menu a.active,
.top-menu .active > a{
    color: #FFEFBE;
}
.header-right-path{
    display: flex;
    align-items: center;
}
.mobile-menu-tel{
    padding: 30px 20px 0;
}
.mobile-menu-tel a{
    color: #fff;
    font-weight: 600;
}
@media(max-width: 1259px){
    .header-tel {
        width: 170px;
    }
    .header-tel a {
        font-size: 17px;
    }
    .top-menu > ul > li{
        font-size: 13px;
    }
    .top-menu {
        width: calc(100% - 370px);
    }
}
@media(max-width: 1099px){
    .top-menu > ul > li{
        margin-right: 15px;
    }
}
@media(max-width: 991px){
    .header-inner{
        height: 66px;
    }
    .top-menu{
        display: none;
    }
    .header-tel {
        width: 200px;
        position: relative;
        margin-right: 70px;
        bottom: -3px;
    }
    .header-tel a{
        font-size: 20px;
    }
}
@media(max-width: 767px){
    .header-tel{
        display: none;
    }
}
/* /. Header */

/* first-section */
.first-section{
    background: url(../images/bg1.jpg) 50% / cover no-repeat;
    height: 100vh;
}
.first-section > .container{
    height: 100%;
}
.first-section-inner{
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 0;
}
.first-section h1{
    font-family: 'Raleway';
    font-style: normal;
    font-weight: 700;
    font-size: 70px;
    line-height: 1.1;
}
.first-section .sub-title{
    font-size: 40px;
    line-height: 1.1;
    color: #FFEFBE;
    margin-top: 60px;
    margin-bottom: 80px;
}
@media(max-width: 1099px){
    .first-section h1 {
        font-size: 60px;
        line-height: 1.2;
    }
    .first-section .sub-title {
        font-size: 30px;
        margin-top: 50px;
        margin-bottom: 70px;
    }
}
@media(max-width: 767px){
    .first-section-inner {
        padding: 70px 0;
    }
    .first-section h1 {
        font-size: 10vw;
    }
    .first-section .sub-title {
        font-size: 6vw;
        margin-top: 10vw;
        margin-bottom: 12vw;
    }
}
/* /. first-section */

section{
    padding: 100px 0;
    width: 100%;
    overflow: hidden;
}
 
/* catalog */
.catalog{
    display: grid;
    grid-gap: 90px;
    grid-template-columns: repeat(2, 1fr);
}
.catalog .item{
    text-align: center;
    border: 1px solid #B4B6BE;
    padding: 60px 70px 70px;
    height: 100%;
}
.catalog .item-title{
    font-weight: 700;
    font-size: 30px;
    line-height: 1.1;
    color: #00A72F;
}
.catalog .item-img{
    margin: 20px 0;
}
.catalog .item-price{
    margin-bottom: 30px;
    font-size: 24px;
    line-height: 1.1;
}
@media(max-width: 1099px){
    .catalog {
        grid-gap: 40px;
    }
}
@media(max-width: 991px){
    .catalog .item {
        padding: 30px;
    }
    .catalog .item-price{
        font-size: 20px;
    }
    .catalog .item-title{
        font-size: 22px;
    }
    .catalog {
        grid-gap: 30px;
    }
}
@media(max-width: 767px){
    .catalog {
        grid-template-columns: 1fr;
    }
    section{
        padding: 70px 0;
    }
}
/* /. catalog */


/* about-section */
.about-section{
    background: url(../images/bg2.jpg) 50% / cover no-repeat;
}
.about-section-inner{
    display: flex;
    flex-wrap: wrap;
}
.about-section .item-content{
    width: 52%;
    padding-right: 20px;
}
.about-section .item-video{
    width: 48%;
}
.about-section .item-video{
    border: 1px solid #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}
.about-section .item-video a:hover{
    opacity: 0.7;
}
@media(max-width: 767px){
    .about-section .item-content{
        width: 100%;
        padding-right: 0;
        text-align: center
    }
    .about-section .item-content ul{
        text-align: left;
    }
    .about-section .item-video{
        width: 100%;
        height: 200px;
        margin-top: 35px;
    }
    .about-section .item-video img{
        width: 57.5px;
    }
}
/* ./ about-section */


/* services */
.services{
    display: grid;
    grid-gap: 30px;
    grid-template-columns: repeat(4, 1fr);
}
.services .item{
    height: 100%;
    border: 1px solid #B4B6BE;
    padding: 30px 25px;
    text-align: center;
}
.services .item img{
    width: 100%;
    min-height: 300px;
}
.services .item-title{
    font-weight: 700;
    font-size: 30px;
    line-height: 1.2;
    color: #696D7D;
    margin-bottom: 25px;
}
.services .item-price{
    padding: 30px 0;
    font-size: 24px;
    line-height: 1.2;
}
@media(max-width: 1099px){
    .services .item {
        padding: 30px;
    }
    .services .item-title{
        font-size: 26px;
    }
    .services .item-price {
        padding: 25px 0;
        font-size: 20px;
    }
}
@media(max-width: 991px){
    .services {
        grid-gap: 20px;
    }
    .services .item {
        padding: 20px;
    }
    .services .item-title{
        font-size: 24px;
    }
    .services .item-price {
        padding: 20px 0;
        font-size: 18px;
    }
}
@media(max-width: 767px){
    .services {
        grid-gap: 30px;
        grid-template-columns: 1fr;
    }
    .services .item {
        padding: 30px 20px;
    }
    .services .item-title{
        font-size: 20px;
    }
    .services .item-price {
        font-size: 16px;
    }
}
/* /. services */

/* portfolio-section */
.portfolio-section{
    background: url(../images/bg3.jpg) 50% / cover no-repeat;
}
.portfolio-carousel-wrapper{
    padding-left: 105px;
    padding-right: 105px;
}
.portfolio-carousel .slick-prev:after,
.portfolio-carousel .slick-next:after{
    display: none;
}
.portfolio-carousel .slick-prev{
    width: 74px;
    height: 16px;
    left: -105px;
    top: calc(50% - 8px);
    background: url(../images/prev.svg) 0 0 no-repeat;
    margin: 0;
}
.portfolio-carousel .slick-next{
    width: 74px;
    height: 16px;
    right: -105px;
    top: calc(50% - 8px);
    background: url(../images/next.svg) 0 0 no-repeat;
    margin: 0;
}
.portfolio-carousel .slick-prev:hover{
    transform: translateX(-10px);
}
.portfolio-carousel .slick-next:hover{
    transform: translateX(10px);
}
.portfolio-carousel .item{
    padding: 0 18px;
}
.portfolio-carousel .item img{
    width: 100%;
    height: 300px;
    object-fit: cover;
}
.portfolio-section .btn-wrapper{
    width: 410px;
    max-width: 100%;
    margin: auto;
}
.portfolio-carousel .item a{
    display: block;
    position: relative;
}
.portfolio-carousel .item a:before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    transition: all ease-out 300ms;
    opacity: 0;
    background: rgba(0,0,0,0.3);
}
.portfolio-carousel .item a:hover:before{
    opacity: 1;
}
.portfolio-carousel .item a:after{
    content: "";
    position: absolute;
    top: calc(50% - 25px);
    left: calc(50% - 25px);
    width: 50px;
    height: 50px;
    background: url(../images/zoom.svg) 50% no-repeat;
    transition: all ease-out 300ms;
    opacity: 0;
    transform: scale(0);
}
.portfolio-carousel .item a:hover:after{
    opacity: 1;
    transform: scale(1);
}
@media(max-width: 767px){
    .portfolio-carousel-wrapper{
        padding-left: 0;
        padding-right: 0;
    }
    .portfolio-carousel .item{
        padding: 0 5px;
    }
}
/* /. portfolio-section */

/* certificates */
.certificates{
    display: grid;
    grid-gap: 80px;
    grid-template-columns: 1fr 1fr 1fr;
}
.certificates .item{
    text-align: center;
}
.certificates a{
    display: block;
}
.certificates a img{
    width: 100%;
}
.certificates a:hover{
    box-shadow: 0 0 30px rgba(0,0,0,0.3);
}
@media(max-width: 1099px){
    .certificates{
        grid-gap: 40px;
    }
}
@media(max-width: 991px){
    .certificates{
        grid-gap: 30px;
    }
}
@media(max-width: 767px){
    .certificates{
        grid-template-columns: 1fr;
    }
}
/* /. certificates */


/* THANKS  */
.after-sending-modal{
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 99001;
    background: rgba(255,255,255,1);
    padding: 30px;
    text-align: center;
    color: #000;
    transition: all 300ms ease-out;
    -webkit-transform: scale(0);
    -moz-transform: scale(0);
    -o-transform: scale(0);
}
.after-sending-modal.after-sending-modal_active{
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -o-transform: scale(1);
}
.after-sending-modal__inner{
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.after-sending-modal__title{
    font-size: 36px;
    line-height: 1.4;
    margin-bottom: 30px;
    width: 500px;
    max-width: 100%;
}
.after-sending-modal__text{
    font-size: 18px;
    line-height: 1.6;
    width: 500px;
    max-width: 100%;
}
.after-sending-modal_error{
    color: red;
}
/* /. THANKS  */

/* contacts-section */
.contacts-section{
    background: url(../images/bg4.jpg) 50% / cover no-repeat;
}
.contacts-section-inner{
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 50px;
    align-items: center;
}
.feedback-block{
    background: #FFFFFF;
    padding: 60px;
}
.feedback-title{
    font-size: 20px;
    line-height: 1.2;
    margin-bottom: 50px;
}
.contacts .item{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    color: #fff;
    font-weight: 600;
    font-size: 30px;
    line-height: 1.2;
    margin-bottom: 50px;
}
.contacts .item a{
    color: #fff;
}
.contacts .item a:hover{
    color: #FFEFBE;
}
.contacts .item-icon{
    width: 55px;
}
.contacts .item-content{
    width: calc(100% - 55px);
    padding-left: 30px;
}

@media(max-width: 1099px){
    .contacts-section-inner{
        grid-gap: 40px;
    }
    .feedback-block{
        padding: 50px;
    }
    .feedback-title{
        font-size: 18px;
        margin-bottom: 40px;
    }
    .contacts .item{
        font-size: 26px;
    }
}
@media(max-width: 991px){
    .contacts-section-inner{
        grid-template-columns: 1fr 1.1fr;
    }
    .feedback-block{
        padding: 40px;
    }
    .contacts .item{
        font-size: 19px;
    }
    .contacts .item-content{
        padding-left: 15px;
    }
}
@media(max-width: 767px){
    .contacts-section-inner{
        display: block;
    }
    .feedback-block {
        padding: 20px;
        margin-top: 50px;
    }
    .feedback-title {
        font-size: 16px;
        margin-bottom: 20px;
    }
    .portfolio-carousel .item img {
        height: auto;
    }
}
/* /. contacts-section */

.fancybox_modal{
    padding: 60px;
}
@media(max-width: 767px){
    .fancybox_modal{
        padding: 50px 25px;
    }
}