@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700&display=swap');

html {
    scroll-behavior: smooth;
}
* {
	padding: 0px;
	margin: 0px;
	border: none;
}

*,
*::before,
*::after {
	box-sizing: border-box;
}

:focus,
:active {
	outline: none;
}

a:focus,
a:active {
	outline: none;
}

/* Links */

a, a:link, a:visited  {
    /* color: inherit; */
    text-decoration: none;
    /* display: inline-block; */
}

a:hover  {
    /* color: inherit; */
    text-decoration: none;
}

/* Common */

aside, nav, footer, header, section, main {
	display: block;
}

h1, h2, h3, h4, h5, h6, p {
    font-size: inherit;
	font-weight: inherit;
}

p {
    margin: 0;
    padding: 0;
}

ul, ul li {
	list-style: none;
    padding: 0;
    margin: 0;
}

img {
	vertical-align: top;
}

img, svg {
	max-width: 100%;
	height: auto;
}

address {
  font-style: normal;
}

/* Form */

input, textarea, button, select {
	font-family: inherit;
    font-size: inherit;
    color: inherit;
    background-color: transparent;
}

input::-ms-clear {
	display: none;
}

button, input[type="submit"] {
    display: inline-block;
    box-shadow: none;
    background-color: transparent;
    background: none;
    cursor: pointer;
}

input:focus, input:active,
button:focus, button:active {
    outline: none;
}

button::-moz-focus-inner {
	padding: 0;
	border: 0;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
}


body {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    line-height: 20px;
    color: #000;
    background: linear-gradient(180deg, #F6F7F8 0%, rgba(246, 247, 248, 0) 100%);
}

.container {
    max-width: 1140px;
}

section {
    margin-bottom: 160px;
}

.section__title {
    margin-bottom: 49px;
    font-size: 32px;
}

.btn {
    background: #FDCB18;
    border-radius: 12px;  
    text-align: center;
    padding: 16px;  
    font-weight: 700;
    font-size: 18px;
    line-height: 22px;
    transition: all 0.5s ease;
}

.btn:hover {
    background: #FDA118;
    transition: all 0.5s ease;
}

.btn:active {
    background: #FD8618;
    transition: all 0.5s ease;
}

.logo img{
    width: 157px;
    height: 47px;
    object-fit: contain;
}

/*  MOBILE MENU */ 
.mobile-menu {
    position: fixed;
    display: flex;
    align-items: center;
    top: 0;
    background-color: #fff;
    left: 0;
    right: 0;
    z-index: 6;
    padding: 16px;
  }
  .mobile-menu__btn {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 30px;
    cursor: pointer;
    transition: 0.4s;
  }
  .mobile-menu__icon {
    display: block;
    position: relative;
    background: #000;
    width: 90%;
    height: 2px;
    width: 15px;
    transition: 0.4s;
  }
  .mobile-menu__icon::after, .mobile-menu__icon::before {
    content: "";
    display: block;
    position: absolute;
    background: #000;
    width: 100%;
    height: 2px;
    transition: 0.4s;
  }
  .mobile-menu__icon::after {
    top: 4px;
  }
  .mobile-menu__icon::before {
    top: -4px;
  }
  .mobile-menu__container {
    position: fixed;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    top: 80px;
    left: 0;
    right: 0;
    z-index: 999; 
    height: 0;
    opacity: 1;
    transition: 0.5s;
    transition-delay: 0.2s;
    overflow: hidden;
    background-color: #fff;
  }
.mobile-menu__checkbox:checked ~ .mobile-menu__container.active {
	height:0;
}
  .mobile-menu__list {
    transition: 0.5s;
    transition-delay: 0.5s;
    list-style: none;
    padding-left: 0;
    margin: 30px 0 ;
  }
  .mobile-menu__item {
    font-size: 26px;
    padding-bottom: 32px;
  }
  .mobile-menu__link {
    text-decoration: none;
    color: #000;
  }
  .mobile-menu__checkbox {
    display: none;
  }
  .mobile-menu__checkbox:checked ~ .mobile-menu__nav {
    opacity: 1;
    transition-delay: 0s;
  }
  .mobile-menu__checkbox:checked ~ .mobile-menu__container {
    height: 100%;
    transition-delay: 0s;
  }
  .mobile-menu__checkbox:checked ~ .mobile-menu__btn .mobile-menu__icon {
    background: transparent;
  }
  .mobile-menu__checkbox:checked ~ .mobile-menu__btn .mobile-menu__icon::before, .mobile-menu__checkbox:checked ~ .mobile-menu__btn .mobile-menu__icon::after {
    top: 0;
  }
  .mobile-menu__checkbox:checked ~ .mobile-menu__btn .mobile-menu__icon::after {
    transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
  }
  .mobile-menu__checkbox:checked ~ .mobile-menu__btn .mobile-menu__icon::before {
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
  }

.phone-mobile {
border-radius:50%;
width:30px;
height:30px;
padding:4px;
background:#FDCB18; 
}
.logo_mobile img {
    height: 47px; 
    width: 105px;
    object-fit: contain;
}

.nav__menu__number_mobile {
    margin: 32px 0;
}

.footer__mobile {
    background: linear-gradient(0deg, #484848, #484848);
    width: 100%;
    padding: 16px 4px;
    color: #fff;
    font-size: 10px;
    bottom: 12%;
    position: absolute;
}

.footer__mobile__copy {
    max-width: 180px;
    width: 100%;
    margin: 0 auto;
    margin-bottom: 32px;
}
  

.nav__menu__contacts__item {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.5s ease;
}

.nav__menu__contacts__item:hover {
    background-color: #FDCB18;
    transition: all 0.5s ease;
}

.nav__menu__contacts__item:active {
    background-color: #FD8618;
    transition: all 0.5s ease;
}

.header {
    background-color: #fff;
}

.nav {
    padding: 32px 32px 0 32px;
}

.nav-fix {
    padding:20px 32px;
    background-color: #fff;
    z-index: 3;
}

.nav-fix.active {
    display: flex!important;
}

.btn-fix {
    font-size: 15px;
    margin-right: 0!important;
    padding: 12px 24px;
}

.nav__menu__link {
    color:#000
}

.nav__menu {
    margin-bottom: 0;
    margin-left: 70px;
}

.nav__menu__item {
    margin-right: 40px;
}

.nav__menu__item:last-child {
    margin-right: 0px;
}

.nav__menu__item:hover .nav__menu__link {
   color: #3a3737;
}

.nav__menu__contacts a{
    margin-right: 20px;
}
.nav__menu__number {
    color: #000;
    display: flex;
}

.nav__menu__number:hover {
    color: #3a3737;
}

.nav__menu__number::before {
    content: url('../images/phone.svg');
    margin-right: 8px;
    height: 20px;
    width: 20px;
}

.nav__menu__number:hover::before {
    content: url('../images/phone-hover.svg');
}

.nav__menu__number:active::before {
    content: url('../images/phone-active.svg');
}

.offer {
    margin-top: 147px;
}

.offer__title {
    font-size: 40px;
    line-height: 49px;
}

.offer__subtitle  {
    max-width: 655px;
    width: 100%;
    margin: 20px auto 49px; 
}


header {
    background: url('../images/header-img.jpg') no-repeat center bottom / contain;
}


.offer__contact a {
    background-color: #fff;
    padding: 7px;
    border-radius: 50%;
    margin-right: 16px;
    width: 30px;
    height: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.offer__contact {
    margin: 36px auto 120px;
    display: flex;
    justify-content: center;
}

.advantages__card {
    padding: 32px;
    box-shadow: 0px 15px 30px rgba(0, 0, 0, 0.03);
    border-radius: 12px; 
    background-color: #fff; 
    max-width: 350px;
    width: 100%;
}

.advantages__card:last-child {
    margin-right: 0px;
}

.advantages__card__title {
    font-size: 20px;
    line-height: 24px;
    font-weight: 600;
    margin-left: 16px;
}

.advantages__card__wrap {
    margin-bottom: 16px;
}

.advantages__block {
    margin-top: -3%;
}

.about__us__card {
    box-shadow: 0px 15px 30px rgba(0, 0, 0, 0.03);
    border-radius: 12px;
    background-color: #fff;
    border: 2px solid transparent;
    position: relative;
    max-width: 350px;
    width: 100%;
    padding: 0;
    margin-bottom: 30px;
    cursor: pointer;
    min-height:506px; 
}

.about__us__card:hover {
    box-shadow: 0px 20px 35px rgba(0, 0, 0, 0.05);
}

.about__us__btn {
    padding: 12px 44px;
    font-size: 15px;
    transition: all .5s ease;
    text-align: center;
    justify-content: center;
    margin-top: 16px;
    display: flex;
    position:absolute;
    bottom:4%;
    max-width:314px;
    width:100%; 
}


.about__us__card img {
    object-fit: cover;
    max-width: 350px;
    height: 255px;
    width: 100%;
    border-radius: 12px 12px 0 0;
}

.about__us__title {
    font-size: 32px;
}

.about__us__card__wrap {
    padding: 16px ;
}

.about__us__card__title {
    margin-bottom: 16px;
}

.certificate_img {
    max-width: 300px;
}

.certificate__title {
    max-width: 900px;
    margin: 0 auto 49px;
}

.works__image {
    border-radius: 12px;
    height: 100%;
    width: 351px;
    margin-bottom: 30px;
    object-fit: cover;
}

.works__image img {
    object-fit: cover;
    width: 100%;
}

.works__image:nth-child(1) img{
    height: 262px;
}

.works__image:nth-child(2) img{
    height: 194px;
}

.works__image:nth-child(3) img{
    height: 221px;
}

.works__image:nth-child(4) img{
    height: 208px;
}

.works__image:nth-child(5) img{
    height: 306px;
}

.works__image:nth-child(6) img{
    height: 245px;
}
.works__image:nth-child(7) img{
    height: 266px;
}

.works__image:nth-child(8) img{
    height: 228px;
}

.works__image:nth-child(9) img{
    height: 256px;
}


.works__image img {
    border-radius: 12px;
}

.works__image:nth-child(5) {
    margin-top: -68px;
}

.works__image:nth-child(6) {
    margin-top: -30px;
}

.works__image:nth-child(7) {
    margin-top: -33px;
}
.works__image:nth-child(9) {
    margin-top: -25px;
}

.footer {
    padding: 32px 0;
    background: #484848;
    color: #fff;
    font-size: 13px;
}

.form__title {
    font-size: 32px;
    margin-bottom: 48px;
}

.input {
    background: #FFFFFF;
    border: 1px solid #757575;
    border-radius: 12px;
    padding: 16px;
    max-width: 300px;
    width: 100%;
    margin-bottom: 24px;
}

.custom-checkbox {
    display: block;
    position: relative;
    cursor: pointer;
    margin-right: 14px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    margin-bottom: 21px;
    
}

.custom-checkbox  input {
    position: absolute;
    z-index: -1;
    opacity: 0;
}

.checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 20px;
    width: 20px;
    border:1px solid #000;
    border-radius: 4px;
}

.custom-checkbox:hover input ~ .checkmark {
    background-color: #fff;
    border-radius: 4px;
    border:1px solid #000;
}

.custom-checkbox input:checked ~ .checkmark {
    background-color: #FDCB18;
    border: 1px solid #FDCB18;
}

.checkmark:after {
    content: "";
    position: absolute;
    display: none;
  }
.custom-checkbox input:checked ~ .checkmark:after {
    display: block;
  }
.custom-checkbox .checkmark:after {
    width: 8px;
    height: 15px;
    left: 6px;
    top: 0px;
    border: solid #000;
    border-radius: 2px;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

.politics__wrap {
    max-width: 300px;
    width: 100%;
}

.politics__wrap p {
    margin-left: 14px;
}
.politics__wrap:hover .politics__link {
    color: #FDA118;
}

.politics__link {
    color: #FDCB18;
}

.order__form {
    background: #FFFFFF;
    box-shadow: 0px 15px 30px rgba(0, 0, 0, 0.03);
    border-radius: 12px;
    max-width: 410px;
    width: 100%;
    padding: 48px;
    display: none;
    position: relative;
}

#send_form_button {
    margin: 0 auto;
}

.modalClose {
    width: 30px;
    height: 30px;
    cursor: pointer;
    position: absolute;
    top: 4%;
    right: 6%;
}

.modal-overlay {
    position: fixed;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.45);
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    width: 100%;
    z-index: 9;
    display: none;
}

#error {
    margin-top: 5px;
    color: #D8000C;
}

.mt-3 {
    margin-top: 3px;
}


/*  BEFORE/AFTER   */ 

.twentytwenty-container {
    height:600px;
    }
    .twentytwenty-container img {
    height:600px;
    }
    
    .twentytwenty-overlay {
    display:none!important;
    }
    
    .swiper-pagination {
        position: relative;
        margin-top: 30px;
    }
    
    .swiper-pagination-bullet {
        opacity: 1;
    }
    
    .swiper-pagination-bullet-active {
        background-color: #FDCB18;
    }

    .lg-backdrop.in {
        opacity: 0.6;
    }

    /*   SCHEME   */ 
    .scheme__img {
        margin-left: 5%;
    }
    .scheme__wrap {
        position: relative;
    }
    .info__icon {
        position: absolute;
        opacity: 1;
        transition: all .5s ease;
    }

    .info__icon:hover {
        opacity: 0.8;
        transition: all .5s ease;
    }

    .info__icon_1 {   
        top: 68.5%;
        left: 51.5%;
    }

    .info__icon_2 {
        top: 60%;
        left: 55.5%;
    }

    .info__icon_3 {
        top: 55%;
        left: 59.5%;
    }

    .info__icon_4 {
        top: 57%;
        left: 72.5%;
    }
    .info__icon_5{
        top: 46%;
        left: 60.5%;
    }
    .info__icon_6 {
        top: 34%;
        left: 73.5%;
    }
    .info__icon_7 {
        top: 26%;
        left: 66%;
    }
    .info__icon_8 {
        top: 21%;
        left: 55%;
    }

    .info__icon_9 {
        top: 33%;
        left: 56%;
    }
    .info__icon_10 {
        top: 39%;
        left: 50.5%;
    }
    .info__icon_11 {
        top: 57%;
        left: 72.5%;
    }
    .info__icon_12 {
        top: 53%;
        left: 36.5%;
    }
    .info__icon_13 {
        top: 42%;
        left: 22%;
    }
    .info__icon_14 {
        top: 35%;
        left: 33%;
    }
    .info__icon_15 {
        top: 32%;
        left: 35.5%;
    }
    .info__icon_16 {
        top: 40%;
        left: 36%;
    }
    .info__icon_17 {
        top: 46%;
        left: 40.5%;
    }

    .tooltip-inner {
        background-color: #fff;
        opacity: 1 !important;
        color: #000;
        max-width: 280px;
    }
    .tooltip.bs-tooltip-top .tooltip-arrow::before {
        border-top-color: #fff !important;
    }


    @media (max-width:1400px) {
        .twentytwenty-container {
            height:500px;
            }
        .twentytwenty-container img {
            height:500px;
            }
        }    

@media (max-width:1100px) {
    .nav__menu__contacts a {
        margin-right: 0px;
    }
    .advantages__card {
        max-width: 310px;
    }
    .about__us__card {
        max-width: 310px;
    }
    .works__image {
        max-width: 310px;
    }
    .nav-fix {
        padding: 16px;
    }
    .nav__menu__item {
        margin-right: 15px;
    }
    .nav-fix .logo {
        width: 120px;
    }
    .nav__menu__number {
        margin-right: 10px;
    }
}

@media (max-width:992px) {
    section {
        margin-bottom: 120px;
    }
    .logo {
        max-width: 130px;
        width: 100%;
    }
    .nav__menu__item {
        margin-right: 15px;
    }
    .nav-fix {
        padding: 25px 15px;
    }
    .btn-fix {
        padding: 8px 18px;
        border-radius: 8px;
    }
    .advantages__card {
        margin: -3px 30px 30px;
    }
    .about__us__card {
        max-width: 47%;
        margin-left: 20px;
    }
    .about__us__card img {
        max-width: 100%;
    }
    .works__image:nth-child(4) {
        margin-top: -78px;
    }
    .works__image:nth-child(5) {
        margin-top: -76px;
    }
    .works__image:nth-child(6) {
        margin-top: -36px;
    }
    .works__image:nth-child(7) {
        margin-top: -40px;
    }
    .nav-fix.active {
        display: none!important;
    }
    .certificate__title {
        font-size: 26px;
    }
    .info__icon {
        width: 20px;
        height: 20px;
    }
}

@media (max-width:930px) {
    .works__image:nth-child(4) {
        margin-top: -54px;
    }
    .works__image:nth-child(6) {
        margin-top: -56px;
    }
    .works__image:nth-child(8) {
        margin-top: -88px;
    }
    .works__image:nth-child(7) {
        margin-top: 14px;
    }
    .works__image:nth-child(5) {
        margin-top: 0px;
    }
    .works__image:nth-child(8) {
        margin-top: -98px;
    }
    .works__image:nth-child(9) {
        display: none;
    }
}

@media (max-width:768px) {
    .offer__title {
        font-size: 32px;
        line-height: 30px;
    }
    .advantages__card {
        max-width: 90%;
        margin: 35px 20px 20px;
    }
    .advantages__card:last-child {
        margin-right: 20px;
    }
    .about__us__card {
        max-width: 90%;
    }
    .about__us__btn {
        max-width: 94%;
        left: auto;
        right: auto;
    }
    .swiper-slide {
        max-width: 100%;
        width: 100%;
        border-radius: 12px;
    }
    .swiper-slide img {
        width: 100%;
        object-fit: cover;
        border-radius: 12px;
        height: 350px;
    }
    .swiper-pagination {
        position: relative;
        margin-top: 48px;
    }

    .swiper-pagination-bullet {
        background: #D9D9D9;
    }
    .swiper-pagination-bullet-active {
        background: #000;
        border: 3px solid rgba(0, 0, 0, 0.15);
    }
    .footer__wrap {
        flex-direction: column;
        align-items: center;
    }
    .order__form {
        max-width: 400px;
        padding: 36px;
    }
    .input {
        max-width: 250px;
    }
    .form__btn {
        background: #FDCB18;
        border-radius: 12px;  
        text-align: center;  
        font-weight: 700;
        font-size: 18px;
        line-height: 22px;
        transition: all 0.5s ease;
        max-width: 250px;
        width: 100%;
    }
    .politics__wrap p {
        font-size: 14px;
    }
    .swiper-pagination-bullet {
        width: 12px;
        height: 12px;
        margin: 0 8px!important;
    }
    .certificate__title {
        font-size: 25px;
    }
}

@media (max-width:576px) {
    section {
        margin-bottom: 72px;
    }
    .offer__subtitle {
        font-size: 14px;
        line-height: 17px;
    }
    .header {
        background: url(../images/header-mobile.jpg) no-repeat center bottom / cover;
    }
    .advantages__block {
        margin-top: -27%;
    }
    .about__us__card {
        margin: 0 0 16px 0;
        max-width: 100%;
    }
    .footer {
        font-size: 10px;
    }
    .input__wrap {
        flex-direction: column;
        align-items: center;
    }
    .input {
        max-width: 100%;
    }
    .form__wrap {
        flex-direction: column;
        max-width: 100%;
    }
    .form__title {
        text-align: center;
    }
    .politics__wrap {
        margin-bottom: 24px;
    }
    .modalClose {
        top: 11%;
    }
    .certificate__title {
        font-size: 20px;
    }
    .info__icon {
        width: 15px;
        height: 15px;
    }
}

@media (max-width:425px) {
    .order__form {
        height: 100%;
        overflow: hidden;
    }
    .form__title {
        margin-top: 27%;
        font-size: 20px;
    }
    .certificate__title {
        font-size: 18px;
    }
    .info__icon {
        width: 10px;
        height: 10px;
    }
}

@media (min-width:1500px) {
    .offer {
        margin-bottom: 8%;
    }

}