@import url('https://fonts.googleapis.com/css2?family=Roboto+Mono:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;1,100;1,200;1,300;1,400;1,500;1,600;1,700&display=swap');
*{
	box-sizing: border-box;
    margin: 0;
    padding: 0;
}
*::before,
*::after{
	box-sizing: border-box;
}
body{
    font-family: "Roboto Mono" ;
    font-weight: 400;
    font-size: 15px;
    line-height: 1.6;
}
a{
    text-decoration: none;
    color: #000;
    white-space: nowrap;
    transition: all .15s ease-in-out;
}
a:hover{
    color: rgb(0, 162, 255);
}
p{
    margin: 0;
}
/* Header */
.header-content{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.header-content__inner{
    display: flex;
    align-items: center;
    justify-content: flex-end;
    width: 50%;
}
.decoration-line{
    content: '';
    width: 1px;
    height: 40px;
    background: rgb(221, 221, 221);
    margin: 15px;
}
.burger{
    display: none;
}
/* Nav */
.navbar{
    border-top: 1px solid rgb(221, 221, 221);
    border-bottom: 1px solid rgb(221, 221, 221);
}
.collapse{
    display: flex;
    align-items: center;
    justify-content: center;
}
.navbar-nav{
    display: flex;
    align-items: center;
    justify-content: space-around;
}
nav.navbar .dropdown:hover > .dropdown-menu{
    display: block; 
    transition: .3s ease-in-out;
} 
.drop-item {
    display: block;
    width: 100%;
    padding: 0.25rem 1rem;
    clear: both;
    white-space: nowrap;
    background-color: transparent;
    border: 0;
}
/* Main - hero */
.hero{
    position: relative;
    min-height: 80vh;
    background-blend-mode: color;
    background-size: cover;
    background: rgba(0, 0, 0, .1) url(../img/main-header.png) no-repeat top;
}
.hero--bg-fixed{
    background-attachment: fixed;
}
.hero-content{
    position: absolute;
    background: linear-gradient(-90deg, rgba(0, 0, 0, 0),rgba(0, 0, 0, .5));
    mask-image: linear-gradient(to right, rgba(0, 0, 0, 1), rgba(0, 0, 0, 0));
    opacity: 1;
    display: grid;
    align-content: center;
    height: 100%;
    padding: 0 100px;
    /* backdrop-filter: blur(5px);  */
}
.hero-content > h1{
    font-size: 54px;
    color: rgb(255, 255, 255);
}
.object-decorated{
    display: inline-flex;
    align-items: center;
}
.object-decorated > p{
    color: rgb(255, 255, 255);
    font-size: 22px;
    font-weight: 500;
    padding-left: 10px;
    margin-bottom: 0.5rem;
}
.object-decorated__divider{
    width: 50px;
    height: 5px;
    background: rgb(0, 162, 255);
}
/* Main - services-list */
.services-list{
    padding: 100px 50px;
}
/*.services-title{*/
/*    display: none;*/
/*}*/
.services-item{
    position: relative;
    width: 300px;
}
.services-item > img{
    height: 230px;
    opacity: 1;
}
.services-item::before{
    content: '';
    position: absolute;
    top: 70px;
    left: -15px;
    bottom: -25px;
    width: 50px;
    border: 3px solid rgb(0, 162, 255);
    border-top: 0;
    border-right: 0;
    transition: .3s ease-out;
}
.services-desc{
    transition: .15s ease-in-out;
}
.services-item:hover::before{
    top: 5px;
}
.services-subtitle{
    padding: 12px 0 0 50px;
}
/* Main - statistics-list */
.statistics-list{
    background: rgb(243, 245, 252);
    padding: 150px 50px;
}
.statistics-item{
    display: flex;
    flex-direction: column;
    border-radius: 10px;
    /* box-shadow: -12px -12px 0 -2px rgba(243, 245, 252), -12px -12px rgb(207, 209, 216);    */
}
.big-number{
    font-size: 70px;
    font-weight: 300;
}
.big-number__desc{
    font-size: 18px;
}
.promo h2{
    font-size: 46px;
    font-weight: 500;
}
.promo span{
    width: 35px;
    height: 4px;
    opacity: .7;
    margin: 0 15px;
}
.promo p{
    font-size: 20px;
}
.promo-text{
    color: rgb(172, 172, 172);
    font-weight: 400;
    padding: 30px 0 50px 0;
}
.contacts-button{
    border: 1px solid rgb(0, 162, 255);
    border-radius: 5px;
    width: auto;
    max-width: 50%;
    background: rgb(0, 162, 255);
    text-align: center;
    color: #fff;
    padding: 16px 34px;
    transition: .15s ease-in-out;
}
.contacts-button:hover{
    background: rgb(243, 245, 252);
}
/* Main - partners */
.partners{
    position: relative;
    background-blend-mode: color;
    background-size: cover;
    background: rgba(255, 255, 255, .1) url(../img/forest.jpg) no-repeat center;
    padding: 50px 0;
}
.partners--bg-fixed {
    background-attachment: fixed;
}
.partners-title-text {
    font-size: 24px;
    color:rgba(0, 0, 0, .8);
    color: #fff;
}
.object-decorated__title:nth-child(1) {
    height: 1px;
    width: 5%;
    background-color: rgb(236, 236, 236);
}
.object-decorated__title:nth-child(3) {
    height: 1px;
    width: 71%;
    background-color: rgb(236, 236, 236);
}
.partners-item--bg {
    background: rgba(255, 255, 255, 0.2); 
    backdrop-filter: blur(2px); 
    width: 140px;
    height: 140px;
    margin: 20px;
    border-radius: 20px;
}
/* Main - hero (contacts) */
.hero-contacts {
    position: relative;
    background-blend-mode: color;
    background-size: cover;
    background: rgba(0, 0, 0, .5) url(../img/contacts1.png) no-repeat center;
}

.contacts__item {
    margin: 20px;
}
.contacts__item p {
    font-weight: bold;
    font-size: 16px;
    color: rgba(0, 0, 0, .8);
}
.contacts__item i {
    margin-bottom: 10px;
    color: rgba(0, 0, 0, .8);
}

.blur {
    background: rgba(255, 255, 255, 0.2); 
    backdrop-filter: blur(2px);
    height: 40vh;
    width: 100%;
  }
.main-link {
    color: rgb(0, 162, 255);
}
.main-link:hover {
    color: #fff;
}
.textarea {
    resize: none;
    height: 170px;
}
/* Main - map (contacts) */
.contacts {
    height: 40vh;
}
.container-map {
    position: relative;
    background-color: #fff;
    border-radius: 5px;
    box-shadow: 0 0 20px 1px rgb(219, 219, 219);
}
.container-form {
    background-color: #fff;
    border-radius: 5px;
    box-shadow: 0 0 20px 1px rgb(219, 219, 219);
}
table{
    display: table;
    font-size: 18px;
    border-collapse: separate;
    color: gray;
    height: 100%;
}
td {
    padding: 0 20px 20px 0;
}

.hero-service {
    position: relative;
    background-blend-mode: color;
    background-size: cover;
    background: rgba(0, 0, 0, .5) url(../img/services_background.jpg) no-repeat center;
}
.service {
    padding: 70px 0;
}

.service__item {
    margin: 20px;
}
.service__item p {
    font-weight: bold;
    font-size: 16px;
    color: rgba(0, 0, 0, .8);
}
.service__item i {
    margin-bottom: 10px;
    color: rgba(0, 0, 0, .8);
}


/* Main - hero (requisites) */
.hero-requisites {
    position: relative;
    background-blend-mode: color;
    background-size: cover;
    background: rgba(0, 0, 0, .5) url(../img/requisites.jpg) no-repeat center;
}
/* Main - requisites (requisites) */
.requisites {
    padding: 70px 0;
}
.requisites__item {
    margin: 20px;
}
.requisites__item p {
    font-weight: bold;
    font-size: 16px;
    color: rgba(0, 0, 0, .8);
}
.requisites__item i {
    margin-bottom: 10px;
    color: rgba(0, 0, 0, .8);
}
/* Footer */
.footer {
    background: rgb(54, 54, 54);
    color: #fff;
}
.footer a {
    color: rgb(218, 218, 218);
}
.footer a:hover {
    color: #fff;
}
.object-decorated__footer {
    height: 1px;
    width: 100%;
    background-color: rgba(236, 236, 236, .3);
}

/* Sliders */

.photo-gallery {
    height: 100vh;
}
.swiper {
    width: 70%;
    height: 100%;
}
.swiper-slide {
    text-align: center;
    font-size: 18px;
    background: #fff;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    padding-bottom: 70px;
}
.swiper-slide img {
    width: 70%;
    object-fit: cover;
    border: 1px solid rgb(212, 212, 212);
}
.swiper-slide > img {
    transition: .3s ease-in-out;
}
.swiper-button-prev {
    color: rgb(0, 162, 255);

}
.swiper-button-next {
    color: rgb(0, 162, 255);
}
.swiper-gallery {
    width: 100%;
    padding-top: 150px;
    padding-bottom: 80px;
}
.swiper-slide-gallery {
    background-position: center;
    background-size: cover;
    width: 300px;
    height: 300px;
}

.swiper-slide-gallery {
    background: #fff !important;
}

.swiper-slide-visible {
    background: #fff !important;
}

.swiper-pagination-fraction {
    padding-bottom: 30px;
}

.work_performed__block {
    height: 100vh;
}

.work_performed {
    width: 50%;
}

.page-navigation {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: white;
}

.page-navigation > ul {
    flex-direction: row;
    margin-top: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgb(221, 221, 221);
}

.service {
    background-color: white;
}


.container-service {
    margin-left: auto;
    margin-right: auto;
    background-color: white;
    border-radius: 20px;
    width: 70%;
    height: 100%;
    padding: 20px;
    box-shadow:
            0 1px 4px rgba(0, 0, 0, .3),
            -23px 0 20px -23px rgba(0, 0, 0, .4),
            23px 0 20px -23px rgba(0, 0, 0, .4),
            0 0 40px rgba(0, 0, 0, .1) inset;
}

.container-service > div {
    display: flex;
    justify-content: space-between;
    text-align: justify;
    margin-bottom: 20px;
}

.container-service > div > div > h4:first-letter {
    color: red;
    font-size: 40px;
}

.container-service > div > div > h4 {
    text-align: center;
}

.container-service > div > .leftBlock.text {
    padding: 10px;
    width: 100%;
    -webkit-box-shadow: 0 5px 10px 2px rgba(34, 60, 80, 0.2) inset;
    -moz-box-shadow: 0 5px 10px 2px rgba(34, 60, 80, 0.2) inset;
    box-shadow: 0 5px 10px 2px rgba(34, 60, 80, 0.2) inset;
}

.container-service > div > .rightBlock.text {
    padding: 10px;
    width: 100%;
    -webkit-box-shadow: 0 5px 10px 2px rgba(34, 60, 80, 0.2) inset;
    -moz-box-shadow: 0 5px 10px 2px rgba(34, 60, 80, 0.2) inset;
    box-shadow: 0 5px 10px 2px rgba(34, 60, 80, 0.2) inset;
}

.container-service > .repair {
    width: 100%;
}

.photo-gallery {
    height: 800px;
}

.photo-gallery,
.container-gallery {
    position: relative;
    height: 100%;
}

.container-gallery {
    background: #eee;
    font-family: Helvetica Neue, Helvetica, Arial, sans-serif;
    font-size: 14px;
    color: #000;
    margin: 0;
    padding: 0;
}

.swiper {
    width: 100%;
    height: 900px;
}

.swiper-slide {
    text-align: center;
    font-size: 18px;
    background: #fff;

    /* Center slide text vertically */
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
}

.swiper-slide img {
    width: 80%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}

.drop-down-list {
    border: none;
}

.mobileInfo {
    display: none;
}

@media (min-width: 500px) and (max-width: 1399px) {
    .container-service > div > .rightBlock.image, .leftBlock.image {
        display: none;
    }

    .container-service > div > .rightBlock.text {
        width: 100%;
        margin-right: 0;
    }
    .container-service > div > .leftBlock.text {
        width: 100%;
        margin-right: 0;
        padding-right: 0;
    }
}

@media (min-width: 576px) and (max-width: 1399px){
    .hero{
        min-height: 80vh;
    }
    .hero-content h1{
        font-size: 46px;
    }
    .hero-content p{
        font-size: 21px;
    }
    .header-content__item {
        padding-right: 40px;
        display: flex;
    }

    .services-item{
        width: 250px;
    }
    .services-item > img{
        height: 200px;
    }
    .services-item::before{
        width: 30px;
    }
    .services-subtitle{
        padding: 12px 0 0 22px;
    }
    .services-list{
        padding: 120px 50px;
    }
    .statistics-list{
        padding: 130px 50px;
    }
    .big-number{
        font-size: 65px;
    }
    .big-number__desc{
        font-size: 17px;
    }
    .promo h2{
        font-size: 42px;
    }
    .promo p{
        font-size: 18px;
    }
    .contacts-button{
        padding: 14px 32px;
    }
    .partners-item--bg{
        width: 130px;
        height: 130px;
        margin: 15px;
        padding: 5px;
    }
}
@media (min-width: 576px) and (max-width: 1199px) {

    /* Header */

    .hero{
        min-height: 70vh;
    }
    /* Main - services-list */
    .services-list{
        padding: 85px 35px;
    }
    .services-item{
        width: 280px;
    }
    .services-item::before{
        width: 50px;
    }
    .services-item > img{
        height: 220px;
    }
    .services-subtitle{
        padding: 12px 0 0 50px;
    }
    .services-column:nth-child(1),
    .services-column:nth-child(3){
        display: flex;
        justify-content: flex-end;
        margin: 2em;
    }
    .services-column:nth-child(2),
    .services-column:nth-child(4){
        display: flex;
        justify-content: flex-start;
        margin: 2em;
    }
    /* Main - statistics-list */
    .statistics-list{
        padding: 100px 40px;
    }
    .big-number{
        font-size: 60px;
        font-weight: 300;
    }
    .big-number__desc{
        font-size: 15px;
    }
    .promo > h2{
        font-size: 38px;
        font-weight: 500;
    }
    .promo > span{
        width: 30px;
        height: 4px;
        opacity: .7;
        margin: 0 10px;
    }
    .promo > p{
        font-size: 18px;
    }
    /* Main - partners */
    .partners-item--bg{
        width: 130px;
        height: 130px;
        margin: 15px;
        padding: 5px;
    }
    .logo{
        width: 20%;
    }
    .header-content {
        display: flex;
        align-items: center;
    }
    .table-map {
        font-size: 14px;
    }
}
@media (min-width: 576px) and (max-width: 991px){
    /* Header */

    .mobileInfo {
        width: 100%;
        position: absolute;
        top: 0;
        display: block;
        padding-top: 10px;
        color: #FFFFFF;
        opacity: 0.8;
        margin-left: 20px;
    }

    .header-content{
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
    .header-content > a {
        padding-right: 0;
    }

    .header-content__inner{
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 0;
    }
    .decoration-line,
    .header-content__item:nth-child(1){
        display: none;
    }
    .logo{
        width: 30%;
    }
    .burger{
        display: block;
    }
    /* Nav */
    .navbar{
        display: none;
    }
    .navbar-toggler{
        display: block;
    }
    .hero{
        min-height: 67vh;
    }
    .hero-content > h1{
        font-size: 40px;
    }
    .object-decorated > p{
        font-size: 18px;
    }
    .object-decorated__divider{
        width: 50px;
        height: 4px;
        background: rgb(0, 162, 255);
    }
    /* Main - services */
    .services-item{
        width: 250px;
    }
    .services-item img{
        height: 210px;
    }
    .services-item::before{
        width: 35px;
        bottom: -18px;
    }
    .services-subtitle{
        padding: 4px 0 0 30px;
    }
    /* Main - statistics-list */
    .statistics-item{
        display: none;
    }
    .statistics-list{
        padding: 100px 50px;
    }

    /* Main - partners */
    .partners-item--bg{
        width: 100px;
        height: 100px;
    }
    .partners-title-text{
        font-size: 18px;
    }
    /* Main - requisites (requisites) */
    .requisites{
        padding: 30px 0;
    }

    .dropbtn {
        background-color: #3498DB;
        padding: 15px;
        color: white;
        font-size: 16px;
        border: none;
        cursor: pointer;
    }

    .dropbtn:hover, .dropbtn:focus {
        background-color: #2980B9;
    }

    .dropdownMenu {
        position: relative;
        display: inline-block;
        padding-left: 0;
    }

    .dropdown-content {
        display: none;
        position: absolute;
        right: -180px;
        background-color: #f1f1f1;
        margin-right: 200px;
        min-width: 160px;
        overflow: auto;
        box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2);
        z-index: 100;
    }

    .dropdown-content a {
        color: black;
        padding: 12px 16px;
        text-decoration: none;
        display: block;
    }

    .dropdown a:hover {background-color: #ddd;}

    .show {display: block;}
}
@media (min-width: 576px) and (max-width: 767px){
    body{
        font-size: 14px;
    }
    .header-content {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .header-content__item {
        width: 220px;
        padding-right: 0;
    }

    .logo {
        width: 30%;
    }
    .hero {
        min-height: 60vh;
    }
    .partners-title-text {
        font-size: 16px;
    }
    .object-decorated__title:nth-child(1) {
        display: none;
    }
    .object-decorated__title:nth-child(3) {
        display: none;
    }
    .partners-title {
        margin-left: 10%;
    }
    .footer {
        font-size: 13px;
    }
    .footer-contacts {
        font-size: 12px;
    }
    .partners-title-text {
        display: none;
    }
    .partners-item--bg {
        width: 80px;
        height: 80px;
    }
    .requisites > .container > div:last-child {
        display: block!important;
        text-align: center;
    }
}

@media (max-width: 575px){
    /* Header */

    .hero-content > h1 {
        font-size: 32px;
    }

    .mobileInfo {
        width: 100%;
        position: absolute;
        top: 0;
        display: block;
        color: #FFFFFF;
        opacity: 0.8;
        margin: 10px 0 0 20px;
    }

    .hero > .container-fluid > .hero-content {
        padding: 10px 0 0 20px;
    }

    .header-content{
        position: relative;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .header-content__inner {
        display: none;
    }

    .logo{
        width: 170px;
    }

    .header-content__item{
        display: none;
    }
    .decoration-line{
        display: none;
    }
    /* Nav */
    .navbar{
        display: none;
    }
    /* Main - hero */
    .hero-content{
        padding: 0;
    }
    /* Main - statistics */
    .statistics-item{
        display: none;
    }
    /* Main - partners */
    .partners-item--bg{
        width: 70px;
        height: 70px;
    }

    .dropbtn {
        background-color: #3498DB;
        color: white;
        padding: 16px;
        font-size: 16px;
        border: none;
        cursor: pointer;
    }

    .dropbtn:hover, .dropbtn:focus {
        background-color: #2980B9;
    }

    .dropdownMenu {
        position: relative;
        right: -15px;
        display: inline-block;
        width: 100px;
    }

    .dropdownMenu > button {
        background: transparent;
        color: black;
    }

    .dropdown-content {
        display: none;
        position: absolute;
        right: 20px;
        background-color: #f1f1f1;
        min-width: 160px;
        overflow: auto;
        box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2);
        z-index: 100;
    }

    .dropdown-content a {
        color: black;
        padding: 12px 16px;
        text-decoration: none;
        display: block;
    }

    .dropdown a:hover {background-color: #ddd;}

    .show {display: block;}

    .service {
        padding: 0;
    }

    .container-service {
        padding: 0;
        width: 100%;
    }

    .container-service > div > div > p > img {
        display: none;
    }

    .navbar-nav {
        display: grid;
        font-size: 20px;
        text-align: center;
        text-decoration: underline;
    }

    .contacts.container-form {
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .container-fluid > .row > #withUs > .col-sm-10 {
        display: grid!important;
        grid-template-columns: repeat(3, 1fr);
        justify-content: center;
    }
    .container-fluid > .row > .row > .col-sm-10 > div:nth-child(7) {
        grid-column: 2;
    }
    .list.services-list {
        padding: 100px 50px 100px 20px;
    }

    .requisites > .container > div:last-child {
        display: block!important;
        text-align: center;
    }

    iframe.work_performed {
      width: 100%;
    }
    .performed_work {
        overflow-x: hidden;
    }
}



