@import url(./header.css);
@import url(./footer.css);
@import url(./first.css);
@import url(./landing-product-list.css);
@import url(./calculator.css);

@font-face {
    font-family: 'Mont';
    src: url('Mont-Bold.eot');
    src: local('Mont Bold'), local('Mont-Bold'),
        url('Mont-Bold.eot?#iefix') format('embedded-opentype'),
        url('Mont-Bold.woff2') format('woff2'),
        url('Mont-Bold.woff') format('woff'),
        url('Mont-Bold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
}

@font-face {
    font-family: 'Mont';
    src: url('Mont-SemiBold.eot');
    src: local('Mont SemiBold'), local('Mont-SemiBold'),
        url('Mont-SemiBold.eot?#iefix') format('embedded-opentype'),
        url('Mont-SemiBold.woff2') format('woff2'),
        url('Mont-SemiBold.woff') format('woff'),
        url('Mont-SemiBold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
}

@font-face {
    font-family: 'Mont';
    src: url('Mont-Thin.eot');
    src: local('Mont Thin'), local('Mont-Thin'),
        url('Mont-Thin.eot?#iefix') format('embedded-opentype'),
        url('Mont-Thin.woff2') format('woff2'),
        url('Mont-Thin.woff') format('woff'),
        url('Mont-Thin.ttf') format('truetype');
    font-weight: 100;
    font-style: normal;
}

@font-face {
    font-family: 'Mont';
    src: url('Mont-Regular.eot');
    src: local('Mont Regular'), local('Mont-Regular'),
        url('Mont-Regular.eot?#iefix') format('embedded-opentype'),
        url('Mont-Regular.woff2') format('woff2'),
        url('Mont-Regular.woff') format('woff'),
        url('Mont-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Mont';
    src: url('Mont-Light.eot');
    src: local('Mont Light'), local('Mont-Light'),
        url('Mont-Light.eot?#iefix') format('embedded-opentype'),
        url('Mont-Light.woff2') format('woff2'),
        url('Mont-Light.woff') format('woff'),
        url('Mont-Light.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
}



:root {
    --color-white: #fff;
    --color-black: #0F0E0E;

    --background-gold-gradien: linear-gradient(180deg, #fff 0%, #e19b4e 100%);
}


.send-form-error {
    display: none;
    margin-top: -10px;
    margin-bottom: 10px;
    padding-left: 30px;
    color: #ff6347;
    font-size: 15px;
    line-height: 19px;
}


html {
    overflow-x: hidden;
}

/* * {
    box-sizing: content-box;
} */
body {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 100vh;

    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;


}

a,
button {
    cursor: pointer;
}

.container {
    padding-left: 30px;
    padding-right: 30px;
    max-width: 1260px;
    width: 100%;

    margin-left: auto;
    margin-right: auto;

    box-sizing: border-box;
}

input[type=submit],
.action-button {
    display: inline-flex;
    padding: 6px 24px 6px 40px;
    background: var(--background-gold-gradien);
    border: none;
    border-radius: 8px;

    transition: .1s ease-out;
    text-decoration: none;
}

input[type=submit],
.action-button:hover {
    transform: scale(1.06);
    filter: brightness(1.04);
}


input[type=submit] .action-button__text,
.action-button__text {
    position: relative;

    color: white;
    font-size: 22px;
    font-weight: 600;
    line-height: 40px;

    text-transform: uppercase;
}

input[type=submit] .action-button__text.online-bubble-icon::after,
.action-button__text.online-bubble-icon::after {
    left: -19px;
}

input[type=submit] .action-button__text.online-bubble-icon::after,
.action-button__text.online-bubble-icon::after {
    content: '' !important;
    display: block;
}

.online-bubble-icon::before {

    content: '';
    position: absolute;
    top: 45%;

    left: -18px;
    transform: translateY(-50%);

    width: 4px;
    height: 4px;

    -webkit-animation: circle-pulse 2s infinite;
    animation: circle-pulse 2s infinite;
    border-radius: 50%;
    -webkit-box-shadow: 0 0 0 0 #4daa57;
    box-shadow: 0 0 0 0 #4daa57;

    z-index: 1;
}

@keyframes circle-pulse {
    0% {
        -webkit-transform: scale(0.95);
        transform: scale(0.95);
        -webkit-box-shadow: 0 0 0 0 rgba(77, 170, 87, 0.9);
        box-shadow: 0 0 0 0 rgba(77, 170, 87, 0.9);
    }

    50% {
        -webkit-transform: scale(1);
        transform: scale(1);
        -webkit-box-shadow: 0 0 0 8px rgba(77, 170, 87, 0);
        box-shadow: 0 0 0 8px rgba(77, 170, 87, 0);
    }

    100% {
        -webkit-transform: scale(0.95);
        transform: scale(0.95);
        -webkit-box-shadow: 0 0 0 0 rgba(77, 170, 87, 0);
        box-shadow: 0 0 0 0 rgba(77, 170, 87, 0);
    }
}
.lSAction>a {
    height: 48px !important;
    width: 48px !important;
    background-position: center center !important;
    opacity: 1 !important;
    margin-top: 0;
    transform: translateY(-50%);
    transition: .1s ease-out;
    background-size: contain !important;
}


.lSAction>.lSPrev {
    background-image: url(../img/prevs.svg);
}

.lSAction>.lSNext {
    background-image: url(../img/nexts.svg);
}


.landing-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 45px;
    line-height: 42px;
    text-align: center;
}

.landing-title .colored {
    color: #339dc7;
}

@media (max-width: 600px) {
    .container {
        padding-left: 10px;
        padding-right: 10px;
    }

    .landing-title {
        font-size: 16px;
        line-height: 24px;
        margin-bottom: 26px;
    }
}


@media (max-width: 600px) {
    .container {
        padding-left: 10px;
        padding-right: 10px;
    }

    .landing-title {
        font-size: 24px;
        line-height: 24px;
        margin-bottom: 26px;
    }

    /* .landing-title  */
}



.logo__main {
    margin-bottom: 8px;

    font-weight: 700;
    font-size: 20px;
    text-transform: uppercase;
    line-height: 28px;
    letter-spacing: 5.6px;
}

.logo__text {
    font-size: 12px;
    color: #339dc7;
}

.online-bubble-icon {
    position: relative;
}

.online-bubble-icon::after {
    content: '';
    position: absolute;
    left: -10px;
    top: 50%;

    width: 6px;
    height: 6px;
    border-radius: 100%;

    background-color: #45C436;
    transform: translateY(-50%);

    z-index: 2;
}

.phone-button {
    margin-bottom: 15px;

    color: white;
    font-size: 20px;
    font-weight: 500;
    line-height: 1.3;
    text-decoration: none;

    transition: all 0.1s ease-out;
}

.phone-button:visited,
.phone-button:hover,
.phone-button:active {
    color: inherit;
}


.phone-button:hover,
.no-bg-button:hover {
    transform: scale(1.1);
    filter: brightness(1.4);
}

@media (max-width: 1200px) {

    .header-row-pc .phone-button {
        color: black;
    }

}


.no-bg-button {
    display: inline-flex;
    padding: 8px 0;

    color: #fff;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.3;
    text-transform: uppercase;

    background: transparent;
    border: none;

    transition: all 0.1s ease-out;
}

.no-bg-button:visited,
.no-bg-button:focus,
.no-bg-button:active {
    outline: none;
    color: inherit;
}


.social-list {
    display: flex;
}

.social-list-item {
    margin-left: 10px;
    margin-right: 10px;

    width: 32px;
    height: 32px;

    font-size: 0;

    background-position: center;
    background-repeat: no-repeat;

    transition: all 0.1s ease-out;
}

.social-list-whatsapp {
    background-image: url(../img/icons/whatsapp-icon.svg);
}

.social-list-telegram {
    background-image: url(../img/icons/telegram-icon.svg);
}

.social-list-item:hover {
    filter: brightness(1.1);
    transform: scale(1.15);
}




/* WORK GALLERY */
/* WORK GALLERY */
/* WORK GALLERY */


.works {
    padding-top: 45px;
    padding-bottom: 45px;
}

.works .container {
    box-sizing: border-box;
    max-width: 1260px;
}

.works-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    column-gap: 20px;
    row-gap: 20px;
}

.works-gallery-item {
    display: inline-flex;
    width: 100%;
    height: 100%;
    transition: .1s ease-out;
}

.works-gallery-item:hover {
    transform: scale(1.04);
}

.works-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 768px) {
    .works-gallery {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        column-gap: 10px;
        row-gap: 10px;
    }
}

@media (max-width: 400px) {
    .works-gallery {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        column-gap: 6px;
        row-gap: 6px;
    }
}


.reviews {
    position: relative;
    padding-top: 70px;
    padding-bottom: 125px;
    background-color: black;
    color: white;

    background-image: url(../img/review-background-photo.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.reviews .lSSlideWrapper {
    border-radius: 8px;
    position: static !important;
}

.reviews-list {
    /* height: 100% !important;
    height: auto !important;
	*/
    height: fit-content !important;
    display: flex;
    align-items: stretch;
    margin-bottom: 20px;

}

.reviews-header {
    display: flex;
    align-items: center;
    margin-bottom: 26px;
}

.reviews-header__title {
    margin-top: 0;
    margin-bottom: 0;
    display: inline-flex;
    text-align: left;
}

.reviews-header .no-bg-button {
    display: inline-flex;
    margin-left: auto;

    text-decoration: none;
    color: #fff;
}

.review-item {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding: 22px 26px;

    color: black;
    background-color: white;
    border-radius: 8px;
}

.review-item .review-header {
    display: flex;
    align-items: center;
    margin-bottom: 16px;
}

.review-image-item {
    padding: 12px;
}

.review-image-item {
    padding: 0;
    background: transparent;

    border-radius: 8px;
}

.review-image-item img {
    cursor: pointer;
    border-radius: 8px;
}


.review-image {
    width: auto;
    max-height: 340px;
    object-fit: cover;
}

.review-item .review-photo {
    max-width: 65px;
    max-height: 65px;
    height: 65px;
    width: 65px;

}

.review-item .review-photo {
    box-sizing: content-box;
    position: relative;
    padding-right: 16px;
    margin-right: 20px;
}

.review-item .review-photo::after {
    content: '';
    display: inline-flex;
    width: 3px;
    height: 70%;
    background: var(--background-gold-gradien);

    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    /* right: 0; */
    /* bottom: 0; */
}

.review-item .review-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;

    border-radius: 100%;

    width: 35px;
    height: 35px;
    max-width: unset;
}


.review-item > .review-meta {
    display: inline-flex;
    flex-direction: column;
    background-color: white;
    width: fit-content;
    border-radius: 8px;
    margin-left: 20px;
    margin-bottom: 10px;
    box-shadow: 0 0 10px 2px rgba(0, 0, 0, 0.2);
}


.review-item > .review-meta .review-name {
    display: inline-flex;
    background-color: white;
    width: fit-content;
    padding: 4px 8px;
    border-radius: 8px; 
    padding-bottom: 0px;
    
    
    font-weight: 600;
}

.review-item > .review-meta .review-sub-name {
    padding: 2px 8px;
    padding-top: 0;
    padding-bottom: 8px;
}

.review-name {
    font-weight: 600;
    font-size: 16px;
    line-height: 22px;
}

.review-sub-name {
    font-weight: 500;
    font-size: 13px;
    line-height: 20px;
    color: #646464;
}

.review-content {
    font-weight: 500;
    font-size: 13px;
    line-height: 20px;
}

@media (max-width: 812px) {
    .review-item {
        padding: 20px 12px;
    }

    .review-item .review-photo {
        max-width: unset;
        max-height: unset;
        height: unset;
        width: unset;
        padding-right: 8px;
        margin-right: 8px;
    }

    .review-name {
        font-size: 13px;
    }

    .review-sub-name {
        font-size: 10px;
    }
}

.review-content p {
    margin-bottom: 0;
    margin-top: 0;
}



.review-slider-bar {
    margin-top: 20px;
    position: relative;
    height: 5px;
    width: 100%;
    color: white;
    background-color: transparent;
}

.review-slider-bar::after {
    content: '';
    position: absolute;
    width: 100%;
    left: 0;
    right: 0;
    height: 2px;
    bottom: 0;
    background-color: white;
    z-index: 1;

}

.review-slider-bar__fill {
    position: absolute;
    right: 0;

    /* position: relative; */
    z-index: 10;
    height: 100%;
    /* width: 40%; */
    background: var(--background-gold-gradien);

    transition: 0.2s ease-out;
}


@media (max-width: 812px) {
    .reviews {
        padding-top: 40px;
        padding-bottom: 60px;
        /* background-image: url(../img/review-mobile-background.jpg); */
    }

    .reviews .no-bg-button {
        text-align: center;
    }


    @media (max-width: 812px) {
        .reviews {
            padding-top: 40px;
            padding-bottom: 60px;
        }

        .reviews .no-bg-button {
            text-align: center;
        }

        #review-slider {
            /* padding-left: 10px !important;
            padding-right: 10px  !important;
            height: fit-content !important;
            width: fit-content !important; */
        }




        .review-item {
            /* display: flex; */
            /* flex-direction: column; */
            /* height: fit-content; */

            /* max-width: 90vw; */
            /* max-width: 80%; */
            /* width: 80vw !important; */

            /* height: fit-content !important; */
            /* width: fit-content !important; */
        }
    }

}




.contacts {

    padding-top: 80px;
    padding-bottom: 123px;
}

.contacts .landing-title {
    text-align: left;
}

.contacts-row {
    margin-bottom: 20px;
    display: flex;
    font-size: 16px;
    line-height: 22px;
    color: var(--color-black);
    align-items: center;
}

.contacts-row p {
    margin-bottom: 0;
    margin-top: 0;
}


.contact-icon__phone,
.contact-icon__map {
    width: 32px;
    height: 32px;
    margin-right: 12px;

    background-size: 28px;
    background-position: center;
    background-repeat: no-repeat;
    /* background-size: cover; */
}


.contact-icon__map {
    background-image: url(../img/icons/map-icon.svg);
    background-size: 18px 25px;
}

.contact-icon__phone {
    background-image: url(../img/icons/phone-icon.svg);
    background-size: 27px;
}

.contacts-meta-left {
    display: flex;
    flex-direction: column;
}

.contact-phone-button {
    font-size: 18px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 3px;
    text-decoration: none;
    color: var(--color-black);
}

.contact-phone-button:visited {
    color: inherit;
}

.contacts-action-button {
    display: inline-flex;
    margin-top: 40px;
}

@media (max-width: 812px) {
    .contacts {
        padding-top: 40px;
        padding-bottom: 60px;
    }

    .contacts-action-button {
        margin-top: 10px;
    }


}

@media(max-width: 400px) {
    .works {
        padding-bottom: 25px;
    }

    .contacts {
        padding-top: 10px;
    }
}



/*  CAlback form */

#callback-from {
    max-width: 440px;
}

.callback-form-title {
    margin-bottom: 40px;
    margin-top: 18px;

    font-size: 28px;
    text-align: center;
}


#popup-thanks .header__actions-right {
    display: flex;
    justify-content: center;
    flex-direction: column;
}

#popup-thanks h4 {
    text-align: center;
    margin-bottom: 0;
}


#popup-thanks .header__actions-right {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;

    margin-left: 0;
}

#popup-thanks .header__actions-call-buton a {
    color: black;
    width: fit-content;
}

#popup-thanks .header__actions-social-list {
    justify-content: center;
}

#popup-thanks .social-list-whatsapp {
    transform: scale(1.5);
}

#popup-thanks .social-list-telegram {
    transform: scale(1.25);
}


body, h1, h2, h3, h4, h5, h6, p, a, input, strong, b, div, span {
font-family: 'Mont';
}


/* Button resets and style */
.flare-button {
	color: #ffffff;
	cursor: pointer;
	text-decoration: none !important;
	border-radius: 20px !important;
	padding: 15px 40px !important;
	border: 0px solid #000 !important;		
	}

/* Initiate Auto-Pulse animations */
.flare-button {
	animation: borderPulse 5000ms infinite ease-out, colorShift 12000ms infinite ease-in;
}


/* Continue animation and add shine on hover */
.flare-button:hover,
.flare-button:focus {
	animation: borderPulse 5000ms infinite ease-out, colorShift 12000ms infinite ease-in, hoverShine 200ms;
}

/* Declate color shifting animation */
@keyframes colorShift {
	0%, 100% {
			background: #f9d85e;
	}
	33% {
		background: #ffcf22;
	}
	66%{
		background: #ffbf58;
	}
}

/* Declare border pulse animation */
@keyframes borderPulse {
  0% {
    box-shadow: inset 0px 0px 0px 5px rgba(255, 255, 255,.4), 0px 0px 0px 0px rgba(255,255,255,1);
  }
  100% {
    box-shadow: inset 0px 0px 0px 3px rgba(117, 117, 255,.2), 0px 0px 0px 10px rgba(255,255,255,0);
  }
}

/* Declare shine on hover animation */
@keyframes hoverShine {
	0%{
		background-image: linear-gradient(135deg, rgba(255,255,255,.4) 0%, rgba(255,255,255,0) 50%, rgba(255,255,255,0) 100%);
	}
	50%{
		background-image: linear-gradient(135deg, rgba(255,255,255,0) 0%, rgba(255,255,255,.4) 50%, rgba(255,255,255,0) 100%);
	}
	100%{
		background-image: linear-gradient(135deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0) 50%, rgba(255,255,255,.4) 100%);
	}
}
a.product-type-tab img {
    width: 55px;
}
.calculator-wrapper {
    width: 100%;
    max-width: unset !important;
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}
.base-input, .base-input[type="text"], .base-input[type="number"] {
    width: -webkit-fill-available;
}
.callback-form-wrapper {
    display: flex;
    gap: 20px;
}
.calc__final, .calc__image {
    width: 50% !important;
}
.calc__image {
    display: flex;
    object-fit: cover;
}
.calc__image img {
    width: -webkit-fill-available;
    border-radius: 10px;
}

.calc__image img {
    width: 100%;
    border-radius: 10px;
    object-fit: cover;
}
@media screen and (max-width: 1200px) {
	.calc__image {
    display: none !important;
}
	.calc__final {
    width: 100% !important;
}
	.mobile-menu__close-button {
    position: absolute;
    right: 92px;
    top: 32px;
    width: 52px;
    height: 52px;
    opacity: 0.6;
    background-color: transparent;
    border: none;
}
}

@media screen and (max-width: 840px) {
	div#contacts {
    flex-direction: column;
    justify-content: flex-start;
}
	.new_site_footer .center__col, .new_site_footer .right__col {
    margin: 0;
    margin-bottom: 30px;
}
}

@media screen and (max-width: 560px) {
	.map .map__text {
    width: auto;
}
	.map .map__body iframe {
    position: relative;
}
	section.map {
    height: fit-content;
}
	.container:has(.map__text) {
    padding: 0 !important;
}
.map__text {
    margin: 0 !important;
}
	.map__text {
    padding-left: 10px !important;
}
	footer .left__col, footer .center__col, footer .right__col {
    width: 100%;
}
	footer#colophon {
    padding: 0;
}
	.header_actions-left {
    margin: 0;
}
	.selectable-input-label {
    font-size: 10px;
    padding-left: 28px;
}
	.mobile-menu__close-button {
    position: absolute;
    right: 52px;

}
	.header__actions-right {
    margin-top: 20px;
}
}
.swiper-button-next::after, .swiper-button-prev::after {
    content: unset;
}
.swiper-button-prev img, .swiper-button-next img {
    height: 38px;
    width: 38px;
}
.works .container {
    max-width: unset;
    padding: 0 !important;
}
.works__card img {
    border-radius: 1rem;
    z-index: 0;
    filter: brightness(0.7);
}
.works__card img {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}
.swiper {
    width: 100%;
    height: 100%;
}.works__card {
    display: flex;
    align-items: flex-end;
}
.works__card, .services__card {
    height: 30rem;
    border-radius: 1rem;
}
@media screen and (min-width: 1024px) {
    .works__card img {
        -o-object-fit: cover !important;
        object-fit: cover !important;
        background: #fdead6 !important;
    }
}
.callback-button {
    background: #16779c !important;
}
a.flare-button {
    line-height: 1 !important;
    height: 30px !important;
    display: flex;
    justify-content: center;
    align-items: center;
}
@media screen and  (min-width: 1200px) {
ul#hero-screen-slider, ul#hero-screen-slider li, ul#hero-screen-slider img {
    height: calc(100vh - 95px) !important;
    padding-top: 0 !important;
}}



.review-card {
  background-color: var(--clr-card-bg);
  padding: var(--sp-lg);
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow-sm);
}

.review-card .icon {
  font-size: 5rem;
  color: var(--clr-mute);
}

.review-card .card-title {
  font-size: var(--fs-lg);
  font-weight: var(--fw-md);
  margin-top: var(--sp-xl);
  margin-bottom: var(--sp-sm);
}

.review-card .card-body {
  margin-bottom: var(--sp-xl);
}

.review-card .card-footer {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: var(--sp-sm);
  align-items: center;
}

.review-card .profile-photo {
  max-width: 60px;
  border-radius: 50%;
}

.review-card .name {
  display: block;
  font-size: var(--fs-md);
  font-weight: var(--fw-md);
  margin-bottom: var(--sp-xs);
}

.review-card .rate-stars {
  color: var(--clr-gold);
  font-size: var(--fs-xs);
}