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


:root {
    --color-gold: #E9B663;
    --color-black: #0F0E0E;

    --background-gold-gradien: linear-gradient(180deg, #e9b663 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: 16px;
    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: 150px !important;
    width: 70px !important;
    background-position: center center !important;
    background-repeat: no-repeat !important;
    opacity: 1 !important;

    margin-top: 0;
    transform: translateY(-50%);
    transition: .1s ease-out;

}

.lSAction>a:hover {
    background-color: rgba(0, 0, 0, 0.17);
}

.lSAction>.lSPrev {
    background-image: url(../img/icons/slider-control-left.svg);
}

.lSAction>.lSNext {
    background-image: url(../img/icons/slider-control-right.svg);
}


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

.landing-title .colored {
    color: #449E48;
}

@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: #449E48;
}

.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-desktop .phone-button {
        color: black;
    }

}


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

    color: #E9B663;
    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: #E9B663;
}

.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;
}
.selectable-input-wrapper label {
    display: flex;
    align-items: center;
}
@media (max-width: 812px) {
	.selectable-input-wrapper label {
    display: flex;
    align-items: center;
}
    .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);
}
.lists {
    display: flex;
    flex-direction: column-reverse;
    align-items: flex-start;
    justify-content: flex-end;
	margin-left: 10px;
}
#fence-thin-container {
	display:none;
}
div#fence-thin-container.open {
	display:block;
}
div#fence-thin-container {
    margin-left: 0 !important;
}