/*
Theme Name: Bruggan
Theme URI:
Author: Mikhail M.
Author URI: https://imbear.site/
Description: Site for Bruggan.com
*/

@font-face {
    font-family: Inter; /* Имя шрифта */
    src: url(fonts/Inter-Light.ttf); /* Путь к файлу со шрифтом */
}
@font-face {
    font-family: Oswald-Light; /* Имя шрифта */
    src: url(fonts/Oswald-Light.ttf); /* Путь к файлу со шрифтом */
}
@font-face {
    font-family: Oswald; /* Имя шрифта */
    src: url(fonts/Oswald-Regular.ttf); /* Путь к файлу со шрифтом */
}

:root{
    --light-gray: #646464;
    --lighter-gray: #D9D9D91A;
    --gray: #2B2B2B;
    --brown: #C5A47E;
}

html {
    font-size: 10px;
    overflow-x: hidden;
}
a{
    color: #fff;
    text-decoration: none;
}
header{
    position: relative;
}
img{
    max-width: 100%;
}
.logo-holder{
    padding: 4rem;
    padding-left: 9rem;
    background: var(--gray);
    position: fixed;
    /*left: 0;*/
    /*top: 0;*/
    z-index: 3;
}
.top-nav{
    position: fixed;
    width: 100%;
    z-index: 2;
}
.top-nav ul{
    list-style: none;
    display: flex;
    justify-content: end;
    padding: 5rem 0;
}
.top-nav li{
    margin-right: 5.5rem;
    position: relative;
}
.top-nav a{
    font-size: 1.8rem;
}
.top-nav a:hover, .top-nav a.active{
    color: white;
    text-decoration: underline;
}

.top-nav .sublist{
    transform: scaleY(0);
    overflow: hidden;
    display: block;
    position: absolute;
    top: 85%;
    transition: 0.3s;
    padding-top: 10px;
    z-index: 0;
}
li:hover .sublist{
    transform: scaleY(1);
}
.sublist li{
    background: var(--gray);
    padding: 0 2rem;
}
.top-nav .sublist a{
    padding: 1rem;
    border-bottom: 1px solid var(--light-gray);
    display: block;
    min-width: 20rem;
}
.top-nav .sublist a:hover{
    text-decoration: none;
    color: var(--brown);
}
.default-title{
    font-weight: normal;
    text-align: right;
}
div.top-nav > div > ul > li:nth-child(4) > ul > li:nth-child(3) > a{
    border: none;
}
.top-nav .sublist li{
    margin:0;
}
.slick-list{
}
.slide-header{
    font-family: "Inter";
    letter-spacing: -2px;
    font-size: 5.4rem;
}
.shadow-logo {
    height: 35rem;
    width: 46rem;
    transition: .2s;
    z-index: 2;
    position: absolute;
    background: var(--gray);
}
.shadow-logo img{
    position: absolute;
    bottom: 4rem;
    left: 8rem;
}
.shadow-logo.hidden{
    height: 0;
    opacity: 0;
    width: 0;
}
.side-menu{
    width: 100px;
    background: #2B2B2B;
    position: fixed;
    height: 100vh;
    left: 0;
    transition: .4s;
    z-index: 2;
}
.side-menu.not_front{
    height: 35rem;
    z-index: 3;
    left: -1.5rem;
    background: transparent;
}
.not_front .socials{
    padding-bottom: 2rem ;
}
.not_front .socials:before {
    bottom: calc(61% + 2rem);
    height: 14rem;
}
.side-menu.hidden{
    left: -200px;
}
.page-front>.row>div{
    padding: 0;
}
.first-slider{
    max-height: 100vh;
}
.socials{
    display: flex;
    align-content: center;
    flex-wrap: wrap;
    flex-direction: column-reverse;
    height: 100%;
    justify-content: flex-start;
    padding-bottom: 14rem;
    position: relative;
}
.socials:before{
    content: "";
    position: absolute;
    left: 49%;
    bottom: calc(42% + 2rem);
    height: 20rem;
    border: 1px solid var(--light-gray);
    display: inline-block;
}
.socials a{
    padding-top: 4rem;
}
.slide-body{
    position: relative;
    width: 100%;
    height: 100vh;
    background-position: bottom;
    background-size: cover;

}
.slick-slide img{
    width: 100%;
    height: 100vh;
}
.slide-content{
    position: absolute;
    right: 15%;
    bottom: 10%;
    text-align: right;
}
img.slide-logo{
    width: 30rem;
    height: auto;
    display: inline-block;
    margin-bottom: 2rem;
}
.btn{
    border-radius: 2rem;
    padding: 1rem 2rem;
    color: #fff;
    font-size: 1.4rem;
}
.btn-warning{
    background: var(--brown);
    border-color: var(--brown);
}
.btn-warning:hover{
    background: var(--gray);
    border-color: var(--gray);
    color: #fff;
}
.btn-transparent{
    border-color: #fff;
}
.btn-transparent:hover{
    background: var(--brown);
    border-color: var(--brown);
    color: #fff;
}
.btn-arrow:after, .prev-arrow:before, .next-arrow:after{
    content: "";
    background-image: url("img/arrow_right_white.png");
    width: 2rem;
    height: 1rem;
    margin-left: 1rem;
    background-repeat: no-repeat;
    background-position: center;
    display: inline-block;
}
input.btn-arrow, input.btn-arrow:hover {
    padding-right: 4rem;
    background-position: 83% center;
    background-repeat: no-repeat;
    background-size: 1.4rem;
    background-image: url(img/arrow_right_white.png);
}
.btn-arrow-prev:before{
    content: "";
    background-image: url("img/arrow_right_white.png");
    width: 2rem;
    height: 1rem;
    margin-right: 1rem;
    background-repeat: no-repeat;
    background-position: center;
    display: inline-block;
    transform: rotate(180deg);
}
.slick-arrow{
    position: absolute;
    top: 40rem;
    left: 24rem;
    border: none;
    background-color: transparent;
    font-size: 1.4rem;
    color: #fff;
    text-transform: uppercase;
    width: auto;
    display: inline-block;
}
.prev-arrow{
    left: 4rem;
    z-index: 1;
}
.prev-arrow:before{
    margin-right: 1rem;
    margin-left: 0;
    transform: rotate(180deg);
}
body{
    background-image: url(img/bg.png);
    background-size: cover;
}
h2{
    font-size: 3.3rem;
    color: #fff;
    position: relative;
    text-align: center;
    text-transform: uppercase;
}
.brown-text{
    color: var(--brown);
}
.about-screen-h2{
    margin-bottom: 15rem;
}
.about-screen-h2:before{
    content: url(img/about.svg);
    position: absolute;
    left: 3rem;
    max-height: 10rem;
    top: -140%;
}
#second-screen{
    margin: 18rem 0;
}
.second-screen__body{
    border-bottom: 1px solid var(--light-gray);
}
h3{
    color: #fff;
    font-size: 4.7rem;
    margin-bottom: 3rem;
}
p{
    color:#fff;
    font-size: 1.4rem;
}
.second-screen__text{
    padding-left: 4rem;
}
.third-screen-h2{
    margin-bottom: 10rem;
}
#third-screen .slick-arrow {
    top: unset;
    position: relative;
    left: unset;
    margin-left: 7rem;
}
.text-right{
    text-align: right;
}
#gal_slider{
    margin-bottom: 7rem;
}
#third-screen .btn{
    margin-left: 10rem;
}
#fourth-screen{
    margin-top: 20rem;
}
#fourth-screen h2{
    text-align: center;
    display: block;
    margin: auto;
    position: relative;
}

#fourth-screen h2:after{
    content: url(img/product.svg);
    position: absolute;
    left: 50%;
    max-height: 7rem;
    top: -6rem;
}

.fourth-screen-first-img{
    text-align: center;
    margin-top: 15rem;
    margin-bottom: 8rem;
}

#fourth-screen h3{
    padding: 0 5rem;
 }

h4{
    padding: 0 5rem;
    font-size: 2.4rem;
    color: #fff;
}

#second_screen_href{
    margin: 1rem 0;
}
.product-second-screen{
    margin: 12rem 0;
}
.first-srez{
    position: relative;
}
.srez-right{
    right: 1rem;
    top: 10%;
    width: 50%;
    text-align: right;
}
.srez-left{
    left: 1rem;
    top: 65%;
    width: 70%;
}
#second-srez-right{
    top: 30%;
}
.srez-right, .srez-left{
    position: absolute;
    border-bottom: 2px solid #CA9375;
    text-transform: uppercase;
}
.srez-header{
    font-size: 2.4rem;
    margin-bottom: 1.5rem;
    font-weight: 500;
}
.srez-text{
    font-size: 1.4rem;
    padding-bottom: 1rem;
}
.first-srez img{
    display: block;
    margin: auto;
}
.secong-srez img {
    max-width: 70%;
    display: block;
    margin: auto;
    margin-bottom: 12rem;
}
.srez-text{
    position: relative;
}
.srez-left .srez-text:after,
.srez-right .srez-text:after{
    content: '';
    width: 1.4rem;
    height: 1.4rem;
    display: inline-block;
    position: absolute;
    left: -0.7rem;
    bottom: -0.7rem;
    border-radius: 50%;
    background: #CA9375;
}
.srez-left .srez-text:after{
    left: unset;
    right: -0.7rem;
}
.srez-center{
    text-align: center;
}
.srez-center-body{
    display: inline-block;
    padding-top: 13rem;
    position: relative;
    margin-top: -8rem;
    padding-right: 8rem;
    padding-left: 8rem;
    border-right: 2px solid #CA9375;
    margin-bottom: 10rem;
    padding-bottom: 2rem;
}
.srez-center-body:before{
    content: '';
    position: absolute;
    display: inline-block;
    width: 50%;
    left: 50%;
    top: 100%;
    height: 18rem;
    border-left: 2px solid #CA9375;
    border-top: 2px solid #CA9375;
}
.srez-center-body:after{
    content: '';
    width: 1.4rem;
    height: 1.4rem;
    display: inline-block;
    position: absolute;
    left: 49.5%;
    bottom: -18rem;
    border-radius: 50%;
    background: #CA9375;
}
.dot{
    position: absolute;
    width: 1.4rem;
    height: 1.4rem;
    display: inline-block;
    right: -.7rem;
    top: -.7rem;
    border-radius: 50%;
    background: #CA9375;
}
#second-srez-left{
    top: 90%;
    left: 17%;
    border: none;
}
#second-srez-left:before{
    content: '';
    display: inline-block;
    width: 1.4rem;
    height: 1.4rem;
    position: absolute;
    bottom: -28.7rem;
    left: -0.5rem;
    background: #CA9375;
    border-radius: 50%;
}
#second-srez-left:after{
    content: '';
    position: absolute;
    height: 28rem;
    border-left: 2px solid #CA9375;
}
#second-srez-left .srez-text:after{
    display: none;
}
.srez-header, .srez-text{
    color: #fff;
}
.gar_25{
    margin-bottom: 7rem;
}
.gar_head, .gar_text{
    text-align: right;
}
.gar_head{
    text-transform: uppercase;
    font-size: 2.4rem;
}
.gar_text{
    margin-bottom: 2rem;
}

#fifth-screen{
    margin-bottom: 15rem;
}

.think_green-header{
    margin-bottom: 2rem;
    text-transform: uppercase;
}
.think_green-body{
    padding-top: 5rem;
}
.think_green-body p{
    font-size: 2.4rem;
}
.think_green-body a{
    margin-top: 6rem;
}

#think_green{
    display: flex;
    align-items: center;
    height: 64rem;
    background-image: url(img/think_green.png);
    background-size: cover;
    background-position: center;
}

#clients{
    margin-top: 15rem;
}
.flex-down{
    display: flex;
    align-items: end;
}
.market-years{
    margin-bottom: 15rem;
}

#clients{
    margin-bottom: 18rem;
}

#clients h2{
    margin-bottom: 14rem;
    text-transform: uppercase;
}
#clients h2:after{
    content: url(img/clients.svg);
    position: absolute;
    left: 0%;
    max-height: 5rem;
    top: -8rem;
}

.clients-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}

.clients-list .client-item {
    width: calc(33.33% - 10px);
    margin-bottom: 8.5rem;
    text-align: center;
}

#contact-sample h2,
#contact-main h2{
    text-transform: uppercase;
    margin-bottom: 15rem;

}
#contact-sample h2:after,
#contact-main h2:after{
    content: url(img/contact.svg);
    position: absolute;
    left: 40%;
    max-height: 5rem;
    top: -7rem;
}
#contact-sample h2:after{
    content: url(img/sample.svg);
}
#contact-sample h2{
    margin-bottom: 5rem;
    margin-top: 3rem;
}

input:not([type="submit"]),
select,
textarea {
    background-color: var(--gray);
    border-radius: 2rem;
    padding: 2rem 2rem;
    color: white;
    margin-bottom: 2rem;
    width: 100%;
    border: none;
    font-size: 2.4rem;
}
textarea{
    max-height: 17rem;
    resize: none;
}
.wpcf7-spinner{
    position: absolute;
}

footer{
    background-image: url("img/vector footer.svg");
    background-position: bottom;
    background-size: contain;
    background-repeat: no-repeat;
    padding-top: 7rem;
    padding-bottom: 16rem;
}
.contact-info-footer a, .contact-info-footer p{
    display: block;
    font-size: 1.4rem;
    color: var(--light-gray);
}
.contact-info-footer a:hover{
    color: var(--brown);
}
.footer-logo img{
    opacity: .3;
}
.social-footer{
    display: flex;
    justify-content: end;
}
.social-footer a{
    margin-left: 4rem;
}

.page-first{
    height: 50rem;
    max-height: 100vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    margin-bottom: 8rem;
    position: relative;
    display: flex;
    align-content: flex-end;
    flex-wrap: wrap;
}

.page-first h1{
    position: absolute;
    bottom: 10vh;
    right: 15vw;
    font-size: 8.8rem;
    color:#fff;
    text-transform: uppercase;
    font-weight: 100;
    font-family: 'Oswald-Light';
    text-align: right;
}
.access-download{
    padding: 2rem;
    text-align: right;
    border: 1px solid var(--light-gray);
}
.access-download .download-spec{
    padding-right: 2rem;
}
.top-nav {
    background: transparent;
    transition: .5s;
}
.moving .top-nav{
    /*background: #2b2b2bb5;*/
    background: var(--gray);
}
.page-body{
    color: #fff;
    font-size: 1.4rem;
    margin-bottom: 15rem;
}

.page-reg-text{
    font-size: 1.8rem;
    color: #fff;
}
.page-service{
    margin-bottom: 15rem;
}
.page-service h2
{
    margin-bottom: 16rem;
}
.page-service h2:after{
    content: url(img/service.svg);
    position: absolute;
    left: 50%;
    max-height: 7rem;
    top: -6rem;
}
.page-service h4{
    padding-left: 0;
    margin-bottom: 3rem;
}
.service-h4-row-2{
    margin-top: 20rem;
}

#regeneration_of_wood{
   background-color: #2B2B2B;
    background-image: url(img/wood.svg);
    background-position: right;
    background-repeat: no-repeat;
    background-size: contain;
    height: 50rem;
    max-height: 100vh;
    margin-bottom: 18rem;
    display: flex;
    align-items: center;
}

#world_wide{
    margin-bottom: 17rem;
    text-align: center;
    position: relative;
}
#world_wide img{
    max-width: 80%;
}

#world_wide h2{
    margin-bottom: 15rem;
}
#world_wide h2:after{
    content: url(img/LOCATION.svg);
    position: absolute;
    left: 10%;
    max-height: 7rem;
    top: -100%;
}
.world-info {
    display: inline-block;
    position: absolute;
    top: 19%;
    left: 14%;
    background: #000004B2;
    padding: 2rem 2rem 5rem 2rem;
    text-align: left;
}
.world-info:after{
    position: absolute;
    left: 50%;
    content: '';
    width: 2rem;
}
.world-info__header{
    color: var(--brown);
    border-bottom: 1px solid var(--brown);
    padding-bottom: 1.6rem;
    margin-bottom: 2.4rem;
    font-size: 1.8rem;
    text-transform: uppercase;
}
.world-info a, .world-info p{
    color: #fff;
    display: block;
    font-size: 1.2rem;
}
#think_green_body .page-get-content{
    font-size: 2.4rem;
}
#think_green_h2{
    margin-top: 20rem;
    margin-bottom: 18rem;
}

#think_green_h2:after{
    content: url(img/nature.svg);
    position: absolute;
    left: 10%;
    max-height: 7rem;
    top: -6rem;
}

#trees{
    margin-top: 9rem;
}

#trees p{
    font-size: 2.4rem;
}

.design-item{
    position: relative;
}
.design-item:hover{
    cursor: pointer;
}
.design-item img{
    width: 100%;
}
.design-item p {
    position: absolute;
    transform: rotate(270deg);
    left: 7rem;
    bottom: 3rem;
    font-size: 2.6rem;
    transform-origin: bottom left;
}

#gal_modal{
    max-height: 100vh;
    background: var(--gray);
}

#gal_modal .slick-slide img{
    max-height: 90vh;
    width: auto;
    float: right;
}
#gal_modal .modal-body{
    padding: 0;
}
#gal_modal .modal-content{
    background: var(--gray);
    border: none;
}
#gal_modal .modal-dialog{
    max-width: 100%;
    padding: 0 20%;
    background: var(--gray);
}

#gal_modal .slick-arrow{
    top: 50%;
    left: -12rem;
    padding-left: 2rem;
}

#gal_modal .next-arrow{
    left: unset;
    right: -14rem;
    padding-left: 0rem;
    padding-right: 2rem;
}

.modal-cross{
    position: absolute;
    top: 1rem;
    right: -8rem;
    z-index: 2;
    background: transparent;
    border: none;
    color: #fff;
    font-size: 4rem;
}
.no-padding{
    padding: 0;
}

#design_ideas{
    margin-bottom: 0;
}

.orange-contacts{
    background: #C5A47E;
    padding-left: 8rem;
    position: relative;
    padding-top: 9rem;
    height: 100%;
}

.orange-contacts:after {
    content: url(img/CONTACTS.svg);
    position: absolute;
    bottom: 5rem;
    right: 7.5rem;
    transform-origin: bottom left;
    box-sizing: content-box;
    transform: scale(.7);
    opacity: .3;
}
.contact-row {
    font-size: 2.4rem;
    color:#fff;
    margin-bottom: 4rem;
}
.contact-row p{
    font-weight: bold;
    font-size: 2rem;
}

#contact_first{
    margin-bottom: 0;
}
#map-contact{
    margin-bottom: 20rem;
}

.left-cat{
    background-position: center;
    height: 100%;
    background-size: cover;
    background-image: url(img/cat-left-1.png);
}
#cladding-row .left-cat{
    background-image: url(img/cat-left-2.png);
}
.right-cat{
    background-position: center;
    background-image: url(img/product-page-terrase.png);
    background-size: cover;

    position: relative;
    padding: 6rem;
    height: 60rem;

    display: flex;
    align-content: flex-end;
    flex-wrap: wrap;
}
.right-cat a, .right-cat p{
    position: relative;
    z-index: 2;
}
.right-cat p{
    font-size: 4.7rem;
    color: #fff;
    line-height: 1;
    margin-bottom:5rem;
    display: block;
    width: 100%;
}
.right-cat:after{
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 1;
    top: 0;
    left: 0;
    /*background: var(--brown);*/
    opacity: .6;
    content: "";
}

#product-podcladka:after,
.right-cat:before {
    position: absolute;
    width: 7rem;
    height: 100%;
    background-image: url(img/TERRACE.svg);
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    right: 3rem;
    bottom: 0rem;
    content: '';
    z-index: 2;
}
#cladding-row .right-cat{
    background-image: url(img/product-page-clading.png);
}
#cladding-row .right-cat:after{
    /*background: var(--gray);*/
}
#cladding-row .right-cat:before{
    background-image: url(img/cladding.svg);
}
#additional-cat-row{
    margin-top: 5rem;
}

#additional-cat-row .right-cat{
    background-image: url(img/access-banner.png);
    padding-left: 17rem;
}
#additional-cat-row-samples .right-cat{
    background-image: url(img/examples-product.png);
}
#additional-cat-row .right-cat:after{
    opacity: 0;
}
#additional-cat-row .right-cat:before{
    background-image: none;
}
.product-categories{
    margin-bottom: 19rem;
}

.breadcrumbs{
    padding-bottom: 4rem;
}
.breadcrumbs a{
    font-size: 1.4rem;
    color: white;
    text-transform: uppercase;
    position: relative;
}
.breadcrumbs a:hover{
    color: var(--brown);
}

.breadcrumbs a:before{
    content: '';
    background-image: url(img/angle.svg);
    background-repeat: no-repeat;
    background-size: contain;
    display: inline-block;
    margin-right: 4rem;
    margin-left: 4rem;
    width: 2rem;
    height: 3rem;
    position: relative;
    top: 1rem;
}
.breadcrumbs .first-bread:before{
    display: none;
}

.product-list-collection{
    color: var(--brown);
    font-size: 3.3rem;
    margin-bottom: 2.5rem;
}

.product-list-title{
    color: #fff;
    font-size: 4rem;
    margin-bottom: 3rem;
    text-transform: uppercase;
}

.product-list-data{
    padding-left: 6rem;
}

.product-list{
    margin-bottom: 19rem;
}

.product-list > .container > .row{
    margin-bottom: 8rem;
    border-bottom: 1px solid var(--light-gray);
}

.flex-center-v{
    display: flex;
    align-items: center;
}

.product-list-img{
    max-width: unset;
    min-width: 60vw;
}

.right{
    float: right;
}

.sample-page{
    margin-top: 8rem;
}
.sample-page h2{
    text-align: left;
    font-size: 4.7rem;
    margin-bottom: 1.5rem;
}

.sample-page h5{
    color: #fff;
    font-size: 2.4rem;
    margin-bottom: 1rem;
}

.sample-tabs{
    margin-top: 9rem;
    margin-bottom: 8rem;
    display: flex;
    justify-content: stretch;
}
.sample-tab{
    width: 33.33%;
    text-align: center;
    font-size: 2.4rem;
    padding: 2.5rem;
    border-bottom: 1px solid var(--light-gray);
}
.sample-tab:hover,
.sample-tab.chosen{
    color: var(--brown);
    border-bottom: 1px solid var(--brown);
}
.sample-tab.chosen{
    border-bottom: 2px solid var(--brown);

}

.single-example{
    padding-left: 25%;
    margin-bottom: 8rem;
}
.single-example img{
    height: 35rem;
    max-width: 100%;
}
.single-example__img-holder{
    margin-bottom: 4rem;
}
.single-example__title{
    font-size: 2.4rem;
    color: var(--brown);
    margin-bottom: .8rem;
}
.single-example__collection{
    font-size: 1.4rem;
    color: #fff;
    text-transform: uppercase;
}
.single-example__img-holder{
    position: relative;
}
.single-example__img-holder:after{
    content: "";
    position: absolute;
    display: inline-block;
    width: 7rem;
    height: 7rem;
    border: 1px solid #fff;
    background-color: var(--light-gray);
    right: 25%;
    bottom: 1rem;
    background-repeat: no-repeat;
    background-position: center;
    border-radius: 50%;
}
.single-example:hover{
    cursor: pointer;
}
.chosen .single-example__img-holder:after,
.single-example:hover .single-example__img-holder:after{
    background-color: var(--brown);
    background-image: url(./img/check_small.svg);
    border: 1px solid var(--brown);
}


.single-chosen__img{
    width: 7rem;
    height: 8rem;
    border: 1px solid #fff;
    display: inline-block;
    margin: 0 auto .8rem;
    position: relative;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.remove_ex{
    width: 1.6rem;
    height: 1.6rem;
    background-color: #fff;
    background-image: url(img/cross.svg);
    background-position: center;
    border-radius: 50%;
    padding: .5rem;
    display: inline-block;
    background-repeat: no-repeat;
    position: absolute;
    top: -0.8rem;
    right: -0.8rem;
}
.remove_ex:hover{
    cursor: pointer;
}

.your-examples{
    position: fixed;
    z-index: 5;
    bottom: 0;
    width: 100%;
    background: var(--gray);
    padding-top: 3rem;
    padding-bottom: 8rem;
    transition: all 1s;
}

.your-examples.missed{
    bottom: -100%;
}

.border-bot{
    border-bottom: 1px solid var(--light-gray);
}

.single-chosen__collection{
    padding: .5rem 1rem;
    border-radius: 2rem;
    background: var(--brown);
    color: white;
    text-transform: uppercase;
    position: absolute;
    bottom: 0;
    width: 100%;
    text-align: center;
    font-size: 1rem;
}
.single-chosen__title{
    font-size: 1.4rem;
    color:#fff;
    text-transform: uppercase;
}

.your-examples__header{
    font-size: 2.4rem;
    color: #fff;
}
.chosen-examples{
    margin-bottom: 2rem;
}
.your-examples__error{
    position: relative;
}
.sample-error{
    background: #A1031C;
    color: #fff;
    position: absolute;
    top: -9rem;
    z-index: 4;
    left: 0;
    transition: all .5s;
    width: 100%;
    padding: 2rem 0;
    font-size: 1.4rem;
    opacity: 1;
}
.sample-error span::before{
    content: "";
    background-image: url(img/error.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 2rem;
    height: 2rem;
    display: inline-block;
    margin-right: 2rem;
    position: relative;
    top: 4px;
}
.sample-error.missed{
    top: 100rem;
    opacity: 0;
}

#contact-sample input:not([type="submit"]),
#contact-sample select,
#contact-sample textarea{
    background-color: #D9D9D91A;
}

#contact-sample .btn {
    width: 100%;
    padding: 2rem 0.5rem;
    font-size: 2.4rem;
}
#contact-sample .btn:hover{
    background: transparent;
    border: 1px solid var(--brown);
}

#contact-sample{
    transition: all .5s;
    opacity: 1;
    transform: scale(1);
    height: auto;
}

#contact-sample.notfound{
    transform: scale(0);
    opacity: 0;
    height: 0;
}

#thank_you{
    text-align: center;
    margin-top: 11rem;
    margin-bottom: 10rem;
}

#thank_you h2{
    font-size: 4.7rem;
}
#thank_you h3{
    margin-top: 2rem;
    font-size: 2.4rem;
}
#thank_you h4{
    color: var(--brown);
    font-size: 2.4rem;
    margin-top: 4rem;
}
#thank_you h5{
    font-size: 1.8rem;
    margin-top: 2rem;
    color: #fff;
}

.first-product-screen{
    margin-top: 6rem;
    margin-bottom: 9rem;
}

.product-main-img img{
    width: 100%;
}

.product-gallery-single{
    position: relative;
    top: -2px;
    padding-top: 2rem;
    border-top: 2px solid var(--light-gray);
}
.product-gallery-single:hover,
.product-gallery-single.active{
    border-top: 2px solid #fff;
    cursor: pointer;
}

.product-gallery{
    border-top: 2px solid var(--light-gray);
    margin-top: 4rem;
}

.single-color{
    display: inline-block;
    width: 5rem;
    height: 5rem;
    border-radius: 50%;
    border: 1px solid var(--light-gray);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    margin-right: 2rem;
}
.single-color.active{
    border: 1px solid var(--brown);
}
.product-subtitle{
    color: var(--brown);
    font-size: 2.4rem;
}
.product-title{
    font-size: 3.3rem;
    color: #fff;
    margin-bottom: 1.5rem;
}

.in_stock{
    font-size: 1.4rem;
    color: #fff;
    margin: 3rem 0;
    text-transform: uppercase;
}

.single-preference{
    color: #fff;
    margin-bottom: 1rem;
}
.single-preference img{
    position: relative;
    top: -0.5rem;
}

#product-podcladka{
    position: relative;
}
#product-podcladka:before{
    content: '';
    height: 100%;
    width: 60%;
    display: block;
    z-index: -1;
    background-image: url(img/product-page.png);
    left: 40%;
    position: absolute;
    opacity: .3;
}

#product-podcladka:after{

}
.icon-preference{
    padding-right: 1rem;
}
.product-desc{
    padding-left: 1rem;
    width: 100%;
}

.second-product-screen{
    margin: 10rem;
}

.second-product-screen h2:before{
    content: url(img/product.svg);
    position: absolute;
    left: 50%;
    max-height: 10rem;
    top: -6rem;
}
.second-product-screen h2{
    margin-bottom: 15rem;
}
.second-product-screen h4{
    color: var(--brown);
    padding-left: 0;
    margin-bottom: 3rem;
}
.second-product-screen p{
    font-size: 1.6rem;
    font-family: 'Inter';
    color:#ccc;
}

.advantages{
    margin-top: 9rem;
    padding-bottom: 4rem;
    border-bottom: 1px solid var(--light-gray);
    margin-bottom: 4rem;
}

.used_for p{
    margin: 0;
}

.product-specification{
    background: var(--gray);
}


.product-specification>.container{
    background-position: top right;
    background-size: 65%;
    background-repeat: no-repeat;
    border-right: 1px solid var(--light-gray);
}
.border-gray > div{
    border: 1px solid var(--light-gray);
}
.border-gray .text-header,
.border-gray .text-description
{
    padding-left: 3rem;
}
.access-specification{
    padding: 10rem 0;
}
.access-specification>.container{
   border: none;
}
.text_1{
    margin-top: 20rem;
    border-top: 2px solid var(--brown);
    padding-top: 2rem;
    position: relative;
}


.text_1:after,
.text_2:before,
.text_2:after{
    content: '';
    display: inline-block;
    border: 2px solid var(--brown);
    border-radius: 50%;
    width: 1.5rem;
    height: 1.5rem;
    position: absolute;
    right: -1.5rem;
    top: -.9rem;
}

.text-header{
    font-size: 2.4rem;
}
.text-description{
    font-size: 1.4rem;
}

.text_2{
    height: 45rem;
    border-right: 2px solid var(--brown);
    display: flex;
    align-items: center;
    position: relative;
    top: -6rem;
    margin-bottom: -15rem;
}

.text_2:before,
.text_2:after{
    right: -.9rem;
    top: -1.5rem;
}

.text_2:after{
    top: unset;
    bottom: -1.5rem;
}
#regeneration_of_wood h3{
    font-size: 4rem;
}
#regeneration_of_wood .page-reg-text{
    font-weight: bold;
}

.text_2 .text-description{
    padding-bottom: 3rem;
    border-bottom: 2px solid var(--brown);
}

.srez{
    max-width: 85%;
}

.blueprint{
    margin-top: 6rem;
    padding-left: 3rem;
    margin-bottom: 12rem;
}

.gray-box{
    border:1px solid var(--light-gray);
    padding-left: 9rem;
}
.gray-left{
    border-left:1px solid var(--light-gray);
}
.no-border-left-right{
  border-right: unset;
  border-left: unset;
}
.download-spec{
    color: #fff;
    font-size: 1.8rem;
    padding-right: 12.5rem;
}
.download-spec:hover{
    color: var(--brown);
}

.download-spec:after{
    content: url(img/doc.svg);
    padding-left: 3rem;
    position: relative;
    top: 0.8rem;
}

.detailed-specification-first-row{
    position: relative;
}

.detailed-specification-first-row:before{
    content: '';
    border-top: 1px solid var(--light-gray);
    width: 100vw;
    top: 0;
    left: -50vw;
    position: absolute;
    display: inline-block;
}

.detailed-specification .text-header,
.detailed-specification .text-description{
    color: #ccc;
}

.detailed-specification .text-header{
    padding-top: 3rem;
    padding-bottom: 1rem;
}
.detailed-specification .text-description{
    padding-bottom: 3rem;
}

.flex-end-center{
    display: flex;
    justify-content: end;
    align-items: center;
}

.product-gallery-section{
    margin-bottom: 20rem;
}
.single-product-gallery{
    margin-bottom: 4rem;
}
.mobile-header{
    display: none;
}

[data-name="your-type"] select option{
    background: var(--gray);
}
.highlight {
    border: 1px solid red;
    background-color: rgba(255, 0, 0, 0.1);
}
.mobile-nav{
    display: none;
}
.mob-second_screen_href{
    display: none;
}
.clients-list .client-item img{
    width: 200px;
}
.desktop-hidden{
    display: none;
}
/*.slick-initialized .slick-slide{*/
/*    width: auto !important;*/
/*}*/
@media (min-width: 1700px) {
    #think_green  h2:after{
        left: 24%;
        top: -4rem;
    }
}

@media (max-width: 1400px) {
    html{
        font-size: 8px;
    }
}

@media (max-width: 768px) {
    .blueprint{
        margin-top: 2rem;
        margin-bottom: 4rem;
    }
    .desktop-header{
        display: none;
    }
    .mobile-header {
        display: block;
        background: #1f1f1fe3;
        height: 90px;
        position: fixed;
        top: 0;
        width: 100vw;
        z-index: 1;
    }
    .breadcrumbs a{
        font-size: 9px;
    }
    .about-screen-h2:before,
    h2:after{
        display: none;
    }
    .shadow-logo{
        height: 23rem;
        width: 23rem;
    }
    .shadow-logo img{
        max-width: 75vw;
    }
    .burger {
        border-top: 2px solid #CCCCCC;
        width: 32px;
        padding: 3px 0;
        position: fixed;
        right: 8%;
        top: 5%;
        z-index: 2;
        height: 3rem;
    }

    .burger:before,
    .burger:after{
        border: 1px solid #CCCCCC;
        position: relative;
        content: '';
        display: block;
        width: 50%;
    }

    .burger:before{
        top: -12px;
        right: -16px;
        position: relative;
    }
    .burger:after{
        top: 1px;
    }


    .logo-holder{
        position: fixed;
        left: 0%;
        top: 0%;
        background: transparent;
    }

    #second-screen{
        padding: 0 2rem;
    }
    .second-screen__text{
        padding: 0;
        margin-bottom: 5rem;
    }
    h3{
        margin-bottom: 4rem;
    }

    #third-screen .btn {
        margin-top: 4rem;
        margin-right: 2rem;
        font-size: 2rem;
        border-radius: 20px;
        text-transform: uppercase;
        padding: 1rem 4rem;
    }

    #fourth-screen{
        margin-top: 10rem;
    }

    #fourth-screen h3 {
        padding: 0px 2rem;
        font-size: 3.7rem;
    }

    h4{
        padding: 0 2rem;
    }
    .fourth-screen-first-img{
        margin-top: 4rem;
    }
    .srez-header{
        font-size: 12px;
    }
    .srez-right{
        width: 75%;
        top: -21%;
    }
    .srez-text{
        font-size: 10px;
        top: -20%;
    }

    #second-srez-right{
        width: 59%;
        top: 21%;
    }

    .srez-left{
        top: 51%;
    }

    .srez-center-body {
        padding-top: 10rem;
        margin-top: -6rem;
        padding-right: 2rem;
        padding-left: 8rem;
        margin-bottom: 15rem;
        padding-bottom: 2rem;
    }

    .secong-srez img{
        max-width: 95%;
    }

    .gar_25{
        width: 70%;
        display: block;
        margin: 1rem auto 7rem;

    }

    #fifth-screen{
        padding: 0 1rem;
    }

    .side-menu{
        width: 72px;
    }
    .slide-header{
        font-family: 'Oswald-Light';
        font-size: 22px;
        margin-bottom: 15px;
    }
    .slide-body .btn{
        padding: 1.2rem 2.2rem;
        font-size: 1.8rem;
        border-radius: 40px;
        margin-top: 10px;
    }
    .slick-arrow{
        font-size: 1.8rem;
        font-family: 'Oswald-Light';
    }
    .think_green-body a{
        font-size: 1.8rem;
        border-radius: 40px;
    }
    .btn-arrow:after, .prev-arrow:before, .next-arrow:after{
        height: 1.5rem;
    }
    .slide-body .btn-arrow:after{
        height: 1.5rem;
        padding-top: 2px;
    }
    .logo-holder{
        padding-left: 3rem;
    }
    .shadow-logo img{
        left: 4rem;
    }

    .page-front{
        max-width: 100vw;
        overflow: hidden;
    }

    .mobile-nav{
        display: block;
        position: fixed;
        bottom: 0;
        width: 100vw;
        background: var(--gray);
        left: 0;
        transition: 0.5s;
        z-index: 999;
        padding-bottom: 12rem;
    }
    .mobile-nav a, .mobile-nav span{
        font-size: 2.4rem;
        padding: 1.6rem;
        text-transform: uppercase;
        border-bottom: 1px solid var(--light-gray);
        display: block;
        color: #fff;
    }
    .mobile-nav a:hover , .mobile-nav span:hover,
    .mobile-nav a:focus, .mobile-nav span:focus{
        color: var(--brown);
    }
    .mobile-nav.hidden-nav{
        left: -100vw;
    }
    .mobile-nav .sublist{
        height: 0;
        overflow: hidden;
        padding-left: 0;
    }
    #third-screen .slick-arrow{
        display: none;
    }
    .mobile-nav .sublist.opened{
        height: auto;
        background: #262626;
    }

    .mobile-nav .sublist li{
        list-style: none;
        padding: 0;
    }
    .mobile-nav .sublist li a{
        font-size: 14px;
        text-transform: capitalize;
        border-bottom: none;

    }
    .mobile-socials{
        display: flex;
        align-items: center;
    }
    .mobile-socials a{
        display: inline-block;
        border-bottom: none;
    }
    img.slide-logo{
        width: 14rem;
    }
    .slide-content{
        right: 7%;
        bottom: 48%;
    }
    .slide-body{
        height: 95vh;
    }
    .first-slider .slick-arrow{
        top: unset;
        bottom: 4rem;
        left: unset;
        right: 5rem;
    }
    .first-slider .prev-arrow.slick-arrow{
        right: 30rem;
    }
    #second-screen{
        margin: 8rem 0;
    }
    .about-screen-h2{
        margin-bottom: 4rem;
    }
    h3{
        font-size: 3.3rem;
    }
    #second_screen_href{
        display: none;
    }
    .mob-second_screen_href #second_screen_href{
        display: inline-block;
        font-size: 2rem;
        text-transform: uppercase;
        margin-top: 3rem;
    }
    .mob-second_screen_href{
        display: block;
        text-align: right;
    }
    #gal_slider {
        margin-bottom: 3rem;
    }
    .gar_head{
        position: relative;
        margin-bottom: 0;
        top: -5px;
        font-size: 1.5rem;
    }
    .gar_head, .gar_text{
        text-align: left;
    }
    .gar_text{
        font-size: 1.2rem;
    }
    #fifth-screen{
        margin-bottom: 8rem;
    }
    #think_green{
        height: 40rem;
        background-position: center right;
    }
    .think_green-body{
        text-align: right;
        padding-right: 3rem;
    }
    .market-years{
        padding: 0 9rem;
    }
    .market-years h4{
        padding: 0;
        font-size: 2.1rem;

    }
    .market-years img{
        margin-bottom: 2rem;
    }
    #clients{
        margin-top: 8rem;
        margin-bottom: 8rem;
    }
    .market-years{
        margin-bottom: 8rem;
    }
    #clients h2{
        margin-bottom: 4rem;
    }
    .clients-list .client-item img{
        width: 95%;
    }
    #contact-sample h2, #contact-main h2{
        margin-bottom: 4rem;
    }
    input:not([type="submit"]), select, textarea{
        background: var(--lighter-gray);
    }
    #contact-main{
        padding: 0 2rem;
    }
    p{
        margin: 0;
    }
    #gal_slider .slick-slide img{
        height: auto;
    }
    .page-first h1{
        font-size: 30px;
        font-family: 'Oswald-Light';
    }
    .design-item p{
        font-family: 'Inter';
        bottom: 7rem;
        font-size: 30px;
    }
    .right-cat p{
        width: 110%;
    }
    .right-cat a{
        font-size: 1.8rem;
        padding: 1.3rem 2rem;
        border-radius: 4rem;
    }
    .right-cat{
        height: 40rem;
    }
    .side-menu.not_front{
        display: none;
    }
    .page-first h1{
        bottom: 17vh;
        right: 7vw;
    }
    .page-first{
        margin-bottom: 3rem;
    }
    .page-body, .page-service{
        padding: 0 1.6rem;
        margin-bottom: 8rem;
    }
    .page-service h2{
        margin-bottom: 4rem;
    }
    .page-service h4 br,
    .page-reg-text__header_right br{
        display: none;
    }
    .page-service img{
        margin: 4rem 0;
        padding: 0 9rem ;
    }
    .service-h4-row-2{
        margin-top: 3rem;
    }
    #regeneration_of_wood{
        background-position: bottom;
        padding-left: 2rem;
        height: 35rem;
    }
    .page-reg-text{
        font-size: 1.4rem;
    }
    #world_wide img{
        max-width: 100%;
    }
    .world-info{
        top: 14%;
    }
    .contact-form-main input.btn-arrow{
        font-size: 1.8rem;
        background-size: 2.4rem;
        background-color: transparent;
        border: 1px solid #fff;
        border-radius: 3rem;
        padding-right: 5rem;
    }
    footer{
        text-align: center;
    }
    footer .text-right{
        text-align: center;
    }
    .social-footer{
        display: flex;
        justify-content: space-evenly;
        width: 50%;
        margin: 2rem auto 0;
    }
    .social-footer a{
        margin: 0;
    }
    #think_green_h2{
        margin-top: 3rem;
        margin-bottom: 4rem;
    }
    #trees{
        margin-top: 2rem;
    }
    #trees p,
    #think_green_body .page-get-content{
        font-size: 1.4rem;
    }
    #trees img{
        margin-bottom: 2rem;
        padding: 0 9rem;
    }
    #map-contact img{
        max-width: 200%;
        left: -50%;
        position: relative;
    }
    .orange-contacts:after {
        right: 1.5rem;
        transform: scale(.5);
        opacity: .2;
    }
    .orange-contacts{
        padding-top: 4rem;
    }
    #map-contact{
        margin-bottom: 8rem;
        overflow: hidden;
    }
    .wpcf7-spinner{
        left: 0;
    }
    .right-cat{
        background-image: url(img/teras-mob.png);
        text-align: right;
        justify-content: right;
    }
    #cladding-row .right-cat{
        background-image: url(img/cat-left-2.png);
    }
    .right-cat:after{
        display: none;
    }
    #additional-cat-row{
        margin-top: 0;
    }
    .page-first h1 span{
        text-align: right;
    }
    #contact_first.product_first_screen{
        margin-bottom: 10rem;
    }
    .breadcrumbs {
        padding-left: 2rem;
        position: relative;
        bottom: -6rem;
        padding-bottom: 0rem;
    }
    .product-list-data{
        padding-left: 2rem;
    }
    .product-list-collection{
        font-size: 12px;
        margin-bottom: 0.5rem;
    }
    .product-list-title{
        font-size: 16px;
    }
    .product-list-img{
        max-width: 190%;
    }
    .product-list{
        overflow: hidden;
    }
    .mob-hidden{
        display: none;
    }
    .product-list-data .btn{
        border: 2px solid #fff;
        text-transform: uppercase;
    }
    .single_product_post{
        height: 70px;
        background: none !important;
    }
    .single_product_post .shadow-logo{
       display: none;
    }
    .breadcrumbs a:before{
        margin-right: 2rem;
        margin-left: 2rem;
    }
    .product-gallery{
        border-top: none;
        margin-top: 0rem;
        position: absolute;
        width: 16.9%;
        top: 136px;
        right: 1px;
        max-height: 100px;
    }
    .product-gallery-single:hover, .product-gallery-single.active, .product-gallery-single{
        border-top: none;
    }
    #product-podcladka{
        background: #363636;
        padding-bottom: 30px;
    }

    #product-podcladka:after{
        content: '';
        background: none;

    }
    #product-podcladka:before{
        background: none;
    }
    .product-desc{
        margin-top: 5rem;
    }
    .single-preference{
        font-size: 12px;
    }
    #order_prod:after {
        height: 2rem;
        position: relative;
        right: -15px;
        top: 2px;
    }
    #order_prod {
        width: 95vw;
        padding: 2rem;
        font-size: 20px;
        border-radius: 40px;
    }
    .second-product-screen{
        margin: 15px;
    }
    .second-product-screen img {
        max-height: 50rem;
        display: block;
        margin: 50px auto;
    }
    .second-product-screen h2:before{
        content: '';
    }
    .desktop-hidden{
        display: block;
    }
    .advantages{
        margin-top: 1rem;
    }
    .second-product-screen h2 {
        margin-bottom: 5rem;
    }
    .text_1{
        margin-top: 7rem;
    }
    .text_2 .text-description{
        border-bottom: none;
    }
    .text_2{
        position: relative;
        border: none;
        height: 27rem;
        top: -3rem;
        margin-bottom: -5rem;
    }
    .top-stick, .bottom-stick{
        height: 48px;
        border-right: 1px solid var(--brown);
        position: absolute;
        left: 50%;
    }
    .top-stick{
        top: 0px;
    }
    .bottom-stick{
        bottom: 0px;
    }
    .text_2:before, .text_2:after{
        right: 48.45%;
    }
    .text_2 .text-description{
        padding-bottom: 0;
    }
    .gray-box{
        padding-left: 16px;
    }
    .detailed-specification .text-description{
        padding-bottom: 0px;
        padding-left: 6px;
        font-size: 10px;
    }
    body > section.product-specification > div > div.detailed-specification > div:nth-child(3) > div.col-md-4.col-5{
        padding-bottom: 20px;
    }
    .detailed-specification .text-header{
        padding-left: 5px;
        text-transform: uppercase;
        padding-top: 10px;
        font-size: 16px;
    }
    .download-spec{
        padding-right: 10px;
        font-size: 12px;
    }
    .download-spec:after{
        padding-left: 0;
    }
    .sample-page h2{
        font-size: 26px;
    }
    .sample-tabs{
        margin-top: 40px;
        margin-bottom: 40px;
    }
    .sample-page{
        padding: 0 15px;
    }
    .sample-page h5{
        font-weight: 100;
    }
    .sample-tab{
        font-size: 14px;
    }
    .single-example{
        padding-left: 10%;
    }
    .single-example__img-holder:after{
        right: -5%;
    }
    #sample-btn{
        position: absolute;
        bottom: 40px;
        right: 20px;
        font-size: 15px;
    }
    .your-examples{
        padding-bottom: 110px;
        padding-top: 30px;
    }
    .your-examples__header{
        padding-bottom: 40px;
        padding-left: 15px;
    }
    .single-chosen__img{
        width: 100px;
        height: 100px;
    }
    .single-chosen__img{
        display: block;
    }
    .single-chosen__title{
        text-align: center;
    }
    .your-examples.opened{
        bottom: unset;
        top: 0;
        max-height: 100vh;
        overflow: scroll;
    }
    #sample-btn.btn-arrow-prev{
        position: fixed;
        margin-bottom: -5px;
        z-index: 22222;
        background: var(--light-gray);
    }
    #regeneration_of_wood .page-reg-text{
        font-size: 3rem;
        font-weight: 100;
    }

    #design_ideas h1{
        font-size: 37px;
        font-weight: 300;
    }

    #design_ideas h1 span{
        display: inline-block;
    }

    #additional-cat-row .cat-title{
        font-size: 24px;
    }

    .single-color{
        width: 4rem;
        height: 4rem;
        margin-right: 1rem;
    }

    .advantages p{
        margin-bottom: 1rem;
    }

    .single-product-gallery .flex-end-center{
        display: none;
    }

    .page-first h1 {
        bottom: 17vh;
        right: 7vw;
        line-height: 33px;
    }
    .product-list-img{
        max-width: 140%;
    }
    .product-list > .container > .row{
        padding-bottom: 4rem;
    }
    .detailed-specification .border-gray .col-6{
        padding-bottom: 2rem;
    }
    .access-download{
        text-align: center;
        padding: 10px;
        padding-bottom: 20px;
        border-bottom: 1px solid var(--light-gray);
    }

    .single-example:hover .single-example__img-holder:after{
        /*background-color: var(--light-gray);*/
        /*background-image: unset;*/
        /*border: 1px solid var(--light-gray);*/
    }
    #trees p,
    #think_green_body .page-get-content{
        font-family: 'Inter';
        font-size: 14px;
    }
}