@font-face {
    font-family: 'Inter_Bold';
    src: url('../font/Inter-Bold.woff2') format('woff2'),
    url('../font/Inter-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Inter_Regular';
    src: url('../font/Inter-Regular.woff2') format('woff2'),
    url('../font/Inter-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Inter_Light';
    src: url('../font/Inter-Light.woff2') format('woff2'),
    url('../font/Inter-Light.woff') format('woff');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}




:root {
    --pimary-color: #cc9544;
    --secondary-color: #cc9544;
    --font-body: 'Inter_Regular', 'sans-serif';
    --font-storng: 'Inter_Bold', 'sans-serif';
    --font-title: 'Inter_Bold', 'sans-serif';
    --font-light: 'Inter_Light', 'sans-serif';

}

html {
    scroll-behavior: smooth;
}

* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

body {
    padding: 0;
    margin: 0;
    font-family: var(--font-body);
    font-size: 16px;
    color: #3a3a3a;
    line-height: 1.7;
    overflow-x: hidden;
    background: #ededed;
}

input, select, button, a, textarea {
    font-family: inherit;
    font-size: inherit;
    color: inherit;
    cursor: pointer;
    outline: none;
    transition: all 0.25s;
}

input {
    -webkit-border-radius: 0;
    border-radius: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
}

select {
    -webkit-appearance: inherit;
    -moz-appearance: inherit;
    appearance: inherit;
    list-style: none;
}

::selection {
    background: #242424;
    color: #ffffff;
}

strong, b {
    font-family: var(--font-storng);
}

select option {
    color: black !important;
}

h1, h2, h3, h4 {
    font-family: var(--font-title);
    font-weight: 800;
    line-height: normal;
    margin: 0;
}
h1{
    text-transform: uppercase;
    font-size: 44px;
}
.container {
    padding: 0;
    width: 1100px;
}

.section_header {
    position: absolute;
    width: 100%;
    left: 0;
    height: 100px;
    top: 30px;
    z-index: 1;
}

.hamberger_menu {
    display: block;
    height: auto;
    position: absolute;
    right: 50px;
    top: 15px;
}

.button_container {
    position: relative;
    top: 0;
    /*bottom: 0;*/
    height: 18px;
    width: 30px;
    margin: auto;
    cursor: pointer;
    transition: all 0.5s;
    z-index: 15;
    right: 0;
    left: auto;
    bottom: 0;
}

.button_container:hover {
    opacity: 1;
}

.button_container.active .top {
    -webkit-transform: translateY(8px) translateX(0) rotate(45deg);
    transform: translateY(8px) translateX(0) rotate(45deg);
    background: #fff;
    width: 100%;
}

.button_container.active .middle {
    opacity: 0;
    background: #fff;
}

.button_container.active .bottom {
    -webkit-transform: translateY(-8px) translateX(0) rotate(-45deg);
    transform: translateY(-8px) translateX(0) rotate(-45deg);
    background: #fff;
}

.button_container span {
    background: #ffffff;
    border: none;
    height: 2px;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    transition: all .35s ease;
    cursor: pointer;
}

.button_container span:nth-of-type(1) {
    width: 100%;
}

.button_container span:nth-of-type(2) {
    top: 8px;
}

.button_container span:nth-of-type(3) {
    top: 16px;
    /*width: 60%;*/
}

.button_container:hover span:nth-of-type(3), .button_container.active span:nth-of-type(3) {
    width: 100%;
}

.overlay {
    position: fixed;
    /*background-image: url('../images/icon/bg.jpg');*/
    background: #000000d9;
    top: 0;
    right: 0;
    width: 0;
    height: 100%;
    overflow: hidden;
    transition: all 0.5s;
    display: grid;
    z-index: 2;
}

.overlay.open {
    opacity: 1;
    visibility: visible;
    width: 100%;
    height: 100%;
    /*grid-template-columns: 1fr 2fr;*/
}

.overlay.open li {
    -webkit-animation: fadeInUp .9s ease forwards;
    animation: fadeInUp .9s ease forwards;
    -webkit-animation-delay: .35s;
    animation-delay: .35s;
}

.overlay.open li:nth-of-type(2) {
    -webkit-animation-delay: .40s;
    animation-delay: .40s;
}

.overlay.open li:nth-of-type(3) {
    -webkit-animation-delay: .45s;
    animation-delay: .45s;
}

.overlay.open li:nth-of-type(4) {
    -webkit-animation-delay: .50s;
    animation-delay: .50s;
}

.overlay.open li:nth-of-type(5) {
    -webkit-animation-delay: .55s;
    animation-delay: .55s;
}

.overlay.open li:nth-of-type(6) {
    -webkit-animation-delay: .60s;
    animation-delay: .60s;
}

.overlay.open li:nth-of-type(7) {
    -webkit-animation-delay: .65s;
    animation-delay: .65s;
}

.overlay.open li:nth-of-type(8) {
    -webkit-animation-delay: .70s;
    animation-delay: .70s;
}

.overlay.open li:nth-of-type(9) {
    -webkit-animation-delay: .75s;
    animation-delay: .75s;
}

.overlay.open li:nth-of-type(10) {
    -webkit-animation-delay: .80s;
    animation-delay: .80s;
}

.overlay.open li:nth-of-type(11) {
    -webkit-animation-delay: .85s;
    animation-delay: .85s;
}

.overlay nav {
    position: relative;
    /* -webkit-transform: translateY(-50%); */
    /* transform: translateY(-50%); */
    text-align: left;
    padding: 0 50px;
    margin-top: 75px;
}

.overlay ul {
    list-style: none;
    margin: 100px auto 0;
    position: relative;
    height: 100%;
    color: #ffffff;
    text-align: left;
    padding: 0 50px;
    z-index: 60;
    font-size: 16px;
}

.overlay ul li {
    /*display: block;*/
    position: relative;
    padding: 8px 0;
    opacity: 0;
    width: 100%;
    line-height: initial;
}

.overlay ul li a {
    display: block;
    position: relative;
    color: #ffffff;
    text-decoration: none;
    /*overflow: hidden;*/
    opacity: 1;
    text-transform: uppercase;
    transition: all 0.25s;
}

.overlay ul li a.active,
.overlay ul li a:hover,
.nav_mobile .overlay-menu .active {
    color: var(--pimary-color);
    opacity: 1;
}

.overlay ul li a:hover:after,
.overlay ul li a:focus:after,
.overlay ul li a:active:after {
    width: 100%;
}

@-webkit-keyframes fadeInRight {
    0% {
        opacity: 0;
        left: 20%;
    }

    100% {
        opacity: 1;
        left: 0;
    }
}

@keyframes fadeInRight {
    0% {
        opacity: 0;
        left: 20%;
    }

    100% {
        opacity: 1;
        left: 0;
    }
}

.overlay-menu .left {
    width: 50%;
    flex: 1;
    background: #000000c0;
    -webkit-backdrop-filter: saturate(0);
    backdrop-filter: saturate(0);
    transition: all .3s ease;
}

.overlay-menu .right {
    flex: 1;
    background: #000000;
    color: #fff;
    overflow: hidden;
    /*overflow-y: auto;*/
    height: 100%;
    text-align: left;
    width: 50%;
    margin: 0 0 0 auto;
}

.fix_body {
    overflow: hidden !important;
}

.brand_logo {
    position: absolute;
    left: 50px;
    height: 100px;
    top: 0;
    transition: all 0.5s;
}

.brand_logo img {
    width: auto;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: brightness(0) invert(1);
}

.images_icon {
    object-fit: cover;
    display: inline-block;
    width: 20px;
    height: 20px;
    -webkit-mask-size: 100%;
    -webkit-mask-repeat: no-repeat;
    background: #ffffff;
    transition: all 0.25s;
}

.social_header {
    position: absolute;
    right: 100px;
    top: 15px;
}

.social_header ul {
    margin: 0;
    padding: 0;
}

.social_header li {
    list-style: none;
    padding-right: 15px;
    line-height: normal;
    float: left;
}

.social_header li:nth-last-child(1) {
    padding-right: 0;
}

.section_slideshow {
    position: relative;
    width: 100%;
    height: 100vh;
    background-size: cover;
    background-position: top left;
    background-attachment: fixed;
    overflow: hidden;
}

.section_slideshow img {
    width: 100%;
    height: 100vh;
    object-fit: cover;
    display: block;
}

.overlay_slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
    min-height: 100vh;
    display: flex;
    align-items: end;
    justify-content: center;
    flex-direction: column;
    text-align: right;
}
.overlay_slide:before{
    content: '';
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    background: rgba(255, 255, 255, .06);
    animation-name: fadeInLeft;
    animation-duration: 1s;
    animation-delay: 2s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    animation-timing-function: ease-in-out;
    width: 100%;
    height: 100%;
    min-height: 100vh;
    position: absolute;
    left: 0;
    top: 0;
}

.slide_blur h2 {
    font-size: 150px;
    line-height: 140px;
    /*position: relative;*/
    text-align: right;
    text-transform: uppercase;
}

.overlay_slide h3 {
    text-transform: uppercase;
    font-size: 26px;
    color: #ffffff;
}
.slide_blur h4{
    font-size: 18px;
    color: #ffffff;
}
.slide_blur h3{
    color: #ffffff;
    text-transform: uppercase;
    font-weight: normal;
    font-style: italic;
    font-family: var(--font-body);
    margin-left: 100px;
}
.slide_blur p{
    color: #ffffff;
}

.slide_blur {
    width: 550px;
    margin: 0 0 0 auto;
    height: 100vh;
    display: flex;
    align-items: start;
    color: transparent;
    background-image: url('../images/slideshow/slideshow-1.jpg');
    background-size: auto;
    background-position: top left;
    -webkit-background-clip: text;
    background-clip: text;
    filter: brightness(.9);
    padding-right: 10px;
    flex-direction: column;
    text-align: left;
    justify-content: center;
    /*padding-top: 30%;*/
    animation-name: fadeIn;
    animation-duration: 1s;
    animation-delay: 2.5s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    animation-timing-function: ease-in-out;
    padding-top: 100px;
    background-attachment: fixed;
}
.slide_blur span{
    display: none;
}

.details_slide {
    width: 50%;
    right: 0;
    position: absolute;
    margin: auto;
    text-align: left;
    text-transform: uppercase;
    top: 0;
    bottom: 0;
    padding-left: 10px;
    display: flex;
    align-items: start;
    justify-content: start;
    flex-direction: column;
    height: 615px;
    padding-top: 100px;
}

.details_slide h2 {
    color: #ffffff;
    font-size: 150px;
    line-height: 140px;
}

.details_slide h2 > label, .slide_blur h2 > label {
    display: inline-block;
    width: 100%;
}
.details_slide h4{
    font-size: 85px;
    text-transform: uppercase;
    color: #ffffff;
}
.text_slide{
    width: 550px;
    margin: 0 auto 0 0;
    animation-name: fadeIn;
    animation-duration: 1s;
    animation-delay: 2.5s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    animation-timing-function: ease-in-out;
}
.text_slide h3{
    /*opacity: 0;*/
    font-size: 26px;
    text-transform: uppercase;
    font-weight: normal;
    font-style: italic;
}
.button_slide{
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 25px;
}
.btn_slide{
    background: none;
    border: 1px solid #ffffff;
    padding: 10px 20px;
    border-radius: 50px;
    color: #ffffff;
    transition: all 0.25s;
}
.btn_slide:hover{
    background: #ffffff;
    color: #000000;
}
.section_welcome{
    padding: 100px 0 100px 100px;
    display: flow-root;
    width: 100%;
    overflow: hidden;
}
.row_welcome{
    display: flex;
    align-items: center;
}
.row_welcome img{
    width: calc(100% + 200px);
    height: auto;
    object-fit: contain;
    object-position: left;
}
.details_welcome{
    font-size: 18px;
    background: #ffffff80;
    border-radius: 50px 0 0 50px;
    padding: 100px 50px;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
}

.details_welcome h2{
    font-size: 42px;
    font-weight: normal;
    font-family: var(--font-light);
}
.details_welcome h1{
    font-size: 70px;
    text-transform: uppercase;
    color: var(--secondary-color);
}
.details_welcome label{
    font-size: 18px;
}
.details_welcome .btn_slide{
    border: 1px solid #3a3a3a;
    color: #3a3a3a;
    margin-top: 15px;
}
.details_welcome .btn_slide:hover{
   background: #3a3a3a;
    color: #ffffff;
}
.section_product{
    padding: 0 100px 100px;
    text-align: center;
    overflow: hidden;
}
.section_product h2{
    font-size: 48px;
    text-transform: uppercase;
}
.section_product h2>label{
    font-family: var(--font-light);
}
.scroll_menu{
    height: 60px;
    position: fixed;
    top: 0;
    background: #ffffff;
    /*backdrop-filter: blur(25px);*/
    /*-webkit-backdrop-filter: blur(25px);*/
    box-shadow: rgba(0, 0, 0, 0.09) 0 0 10px;
}
.scroll_menu .brand_logo{
    height: 60px;
    padding: 5px 0;
}
.scroll_menu .social_header{
    top: 0;
    bottom: 0;
    display: flex;
    align-items: center;
}
.scroll_menu .brand_logo img{
    filter: none;
}
.scroll_menu .images_icon{
    background: #3a3a3a;
}
.scroll_menu .button_container span{
    background: #3a3a3a;
}
.scroll_menu .hamberger_menu{
    top: 0;
    bottom: 0;
    display: flex;
    align-items: center;
}
.images_product{
    position: relative;
    width: 100%;
    height: 330px;
    border-radius: 55px;
    overflow: hidden;
}
.images_product img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: all 0.25s;
}
.slide_product .slide:hover .images_product img{
    transform: scale(1.05);
}
.slide_product{
    margin-top: 50px;
}
.slide_product .slide{
    padding: 0 15px;
}
.details_product{
    position: absolute;
    bottom: 25px;
    font-size: 20px;
    background: #ffffff42;
    padding: 10px;
    text-align: center;
    text-transform: uppercase;
    width: calc(100% - 30px);
    margin: auto;
    left: 0;
    right: 0;
    border-radius: 55px;
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    line-height: normal;
    transition: all 0.5s;
}
.slide_product .slide:hover .details_product{
    background: #ffffffe0;
    bottom: 30px;
}
.section_why{
    position: relative;
    overflow: hidden;
    background-size: cover;
    background-attachment: fixed;
}
.section_why img{
    width: 100%;
    height: 700px;
    object-fit: cover;
    display: none;
}
.details_why{
    /*position: absolute;*/
    width: 50%;
    height: 100%;
    right: 0;
    top: 0;
    font-size: 18px;
    background: #e6e6e600;
    padding: 100px 100px 100px 50px;
    overflow: hidden;
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    display: flex;
    justify-content: center;
    flex-direction: column;
    color: #ffffff;
    float: right;
}
.section_why h3{
    font-size: 32px;
    text-transform: uppercase;
    color: #ffffff;
}
.section_why h3>label{
    font-family: var(--font-light);
}
.details_why ul{
    margin: 30px 0 0;
    padding: 0;
}
.details_why li{
    padding: 10px 0 10px 30px;
    list-style: none;
    position: relative;
}
.details_why li:before{
    content: '';
    background-image: url('../images/icon/marijuana.png');
    width: 20px;
    height: 20px;
    background-size: cover;
    filter: brightness(0) invert(1);
    position: absolute;
    top: 15px;
    left: 0;
}
.section_branches{
    position: relative;
    overflow: hidden;
}
.section_branches img{
    width: 100%;
    height: 700px;
    object-fit: cover;
    display: block;
}
.details_branches{
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    text-align: center;
    margin: auto;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
}
.details_branches p>label{
    display: inline-block;
    width: 100%;
}
.details_branches h2{
    font-size: 110px;
    text-transform: uppercase;
    line-height: 100px;
    margin-bottom: 30px;
}
.details_branches h3{
    font-size: 80px;
    text-transform: uppercase;
    letter-spacing: 30px;
}
.details_branches .btn_slide{
    margin-top: 30px;
}
.leaf{
    position: absolute;
    z-index: 1;
}
.leaf img{
    width: 80%;
    height: auto;
    display: block;
}
.leaf_1{
    right: 25%;
    bottom: 50%;
}
.leaf_2{
    right: 38%;
    bottom: 59%;
}
.leaf_3{
    right: 25%;
    bottom: 50%;
}
.section_footer{
    padding: 50px 0 0;
    background-image: url('../images/icon/bg-footer.jpg');
    background-size: cover;
    background-position: bottom;
    color: #ffffff;
    overflow: hidden;
}
.row_footer h4{
    text-transform: uppercase;
    margin-bottom: 15px;
}
.row_footer ul{
    margin: 0;
    padding: 0;
}
.row_footer li{
    list-style: none;
    padding: 0;
    margin: 0;
}
.row_footer img{
    width: 120px;
    height: auto;
    display: block;
    margin: auto 0;
    filter: brightness(0) invert(1);
}
.row_footer .col-xs-4{
    width: 30%;
}
.row_footer .col-xs-2{
    width: 20%;
}
.row_footer li label{
    width: 70px;
}
.row_footer p{
    margin: 10px 0;
}
.row_footer a:hover{
    color: #3a3a3a;
}
.social_footer{
    margin-top: 30px;
}
.social_footer ul{
    display: flex;
    align-items: center;
    gap: 20px;
}
.social_footer .images_icon{
    background: #ffffff;
    width: 25px;
    height: 25px;
}
.social_footer .images_icon:hover{
    background: #3a3a3a;
}
.row_copy{
    background: #000000;
    text-align: center;
    margin-top: 50px;
    display: flow-root;
    width: 100%;
    padding: 15px 0;
}
.row_copy p{
    margin: 0;
    opacity: 0.7;
}
.row_copy a{
    color: #ffc619;
}
.slick-dots{
    padding: 0;
    margin-top: 50px;
}
.slick-dots li {
    margin: 0 5px;
    display: flex;
    align-items: center;
}
.slick-dots button{
    width: 13px;
    height: 13px;
    opacity: 1;
    background: transparent;
    border: 3px solid var(--pimary-color);
}
.slick-dots li.slick-active button{
    background: var(--pimary-color);
    width: 15px;
    height: 15px;
}
.slide_product .slick-list{
    margin: 0 -15px;
}
.section_parallax{
    height: 60vh;
    position: relative;
    background-size: cover;
}
.section_parallax img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.section_aboutus{
    padding: 100px 0;
    display: flow-root;
    width: 100%;
    background-size: cover;
    background-attachment: fixed;
}
.section_aboutus img{
    display: none;
}
.section_aboutus .col-xs-6{
    float: right;
}

.details_aboutus {
    font-size: 18px;
    background: #ffffff80;
    border-radius: 55px 0 0 55px;
    padding: 50px;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
}
.details_aboutus h2{
    font-family: var(--font-light);
    font-size: 50px;
    text-transform: uppercase;
}
.details_aboutus h1{
    font-family: var(--font-title);
    font-size: 60px;
    text-transform: uppercase;
}
.section_vision{
    padding: 100px 0;
    display: flow-root;
    width: 100%;
    background-size: cover;
    background-attachment: fixed;
    background-position: center;
}
.details_vision{
    color: #ffffff;
    height: 380px;
    text-align: left;
    background: #ffffff00;
    border-radius: 55px;
    padding: 50px;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
}
.details_vision h2{
    text-transform: uppercase;
    font-size: 50px;
}
.details_vision h2>label{
    font-family: var(--font-light);
    display: inline-block;
    width: 100%;
}
.slide_vision .slide{
    padding: 0 25px;
}
.slide_vision .slick-list{
    margin: 0 -25px;
}
.section_contact{
    text-align: center;
    padding: 100px 0;
    display: flow-root;
    width: 100%;
}
.section_contact p>label{
    display: inline-block;
    width: 100%;
}
.row_contact{
    text-align: left;
    margin-top: 50px;
}
.row_contact p{
    margin: 0;
}
.row_contact h4{
    font-size: 18px;
    margin-bottom: 15px;
    text-transform: uppercase;
    color: var(--secondary-color);
}
.row_contact ul{
    margin: 30px 0;
    padding: 0;
}
.row_contact li{
    list-style: none;
}
.row_contact li>label{
    font-family: var(--font-storng);
    width: 120px;
}
.row_contact .col-xs-5{
    padding-right: 50px;
}
.row_contact .images_icon{
    background: #3a3a3a;
    width: 30px;
    height: 30px;
}
.row_contact a:hover{
    color: var(--secondary-color);
}
.row_contact .images_icon:hover{
    background: var(--secondary-color);
}
.row_contact .social_footer ul{
    grid-template-columns: 1fr 1fr 1fr;
    display: grid;
    width: fit-content;
    gap: 10px 20px;
    margin-bottom: 0;
}
.row_input{
    color: #585858;
}
.row_input label>span{
    color: red;
}
.input_data{
    background: transparent;
    border: none;
    border-bottom: 1px solid #9f9f9f;
    padding: 3px 0;
    width: 100%;
}
.row_input .col-xs-12{
    margin-bottom: 15px;
}
.row_input textarea{
    height: 200px;
}
.btn_contact{
    background: #3a3a3a;
    border-color: #3a3a3a;
    padding: 10px 30px;
}
.btn_contact:hover{
    background: var(--secondary-color);
    border-color: var(--secondary-color);
    color: #ffffff;
}
span.error, span#span_error{
    color: red;
    font-size: 14px;
    font-style: italic;
}
.section_googlemap{
    padding: 0 0 100px;
}
.section_googlemap iframe{
    width: 100%;
    height: 600px;
    display: block;
}
.section_ourbranches{
    padding: 100px 0;
    text-align: center;
}
.section_ourbranches p>label{
    display: inline-block;
    width: 100%;
}
.row_branches{
    display: flow-root;
    width: 100%;
}
ul.branch_tabs{
    display: inline-block;
    margin: 50px auto;
    padding: 0;
}
ul.branch_tabs li{
    list-style: none;
    float: left;
    font-family: var(--font-storng);
    text-transform: uppercase;
    background: #e1e1e1;
    text-align: center;
    padding: 5px 30px;
    margin: 0 10px;
    border-radius: 100px;
    color: #adadad;
    cursor: pointer;
    transition: all 0.25s;
}
ul.branch_tabs li.active{
    background: #3a3a3a;
    color: #ffffff;
}
.branch_grid{
    display: grid;
    gap: 30px;
    grid-template-columns: 1fr 1fr;
}
.branch_item{
    border-radius: 30px;
    overflow: hidden;
    position: relative;
}
.branch_item img{
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
}
.details_ourbranches{
    position: relative;
    height: 360px;
    width: 100%;
    padding: 50px;
    overflow: hidden;
    background-size: 400%;
    background-position: bottom;
    color: #3a3a3a;
    font-size: 18px;
}
.details_ourbranches:before{
    content: '';
    width: 100%;
    height: 100%;
    background-color: #e6e6e600;
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    position: absolute;
    left: 0;
    top: 0;
}
.details_ourbranches p>label{
    display: inline-block;
    width: 100%;
    font-family: var(--font-storng);
}
.details_ourbranches h2{
    font-size: 26px;
    text-transform: uppercase;
}
.details_ourbranches h3{
    font-size: 22px;
    text-transform: uppercase;
    font-family: var(--font-light);
}
.details_text{
    position: relative;
    text-align: left;
}
.details_text .btn_contact{
    background: var(--secondary-color);
    border-color: var(--secondary-color);
}
.details_text .btn_contact:hover{
    background: #3a3a3a;
    border-color: #3a3a3a;
}
.section_services{
    padding: 100px 0;
    text-align: center;
}
.row_services{
    margin-top: 50px;
    padding: 0 50px;
}
.slide_services img{
    width: 100%;
    height: 500px;
    border-radius: 30px;
    display: block;
    object-fit: cover;
}
.details_services{
    text-align: left;
    padding: 50px 0 0;
}
.details_services h2{
    text-transform: uppercase;
    font-size: 32px;
}
.details_services h2>label{
    font-family: var(--font-light);
}
.slide_services .slick-arrow{
    position: absolute;
    height: 50px;
    width: auto;
    background: none;
    border: none;
    left: 0;
    top: 250px;
    z-index: 1;
    padding: 0;
}
.slide_services .slick-arrow img{
    width: auto;
    height: 50px;
}
.slide_services .slick-prev{
    left: -60px;
}
.slide_services .slick-next{
    left: auto;
    right: -60px;
}
.box_services{
    background: #dadada;
    width: 130px;
    height: 130px;
    border-radius: 100%;
    display: flex;
    align-items: center;
    margin: auto;
    justify-content: center;
    font-family: var(--font-storng);
    text-align: center;
    flex-direction: column;
    color: #b6b6b6;
    line-height: normal;
}
.box_services label{
    display: inline-block;
    width: 100%;
}
.thumbnails_services{
    display: flow-root;
    width: 100%;
}
.thumbnails_services .slick-list{
    /*display: inline-block;*/
    margin: 0 auto 50px;
    padding: 0!important;
    overflow: inherit;
}
.thumbnails_services .slide.slick-current .box_services{
    background: var(--secondary-color);
    color: #ffffff;
}
.thumbnails_services .slide{
    padding: 0 15px;
}
.thumbnails_services .images_icon{
    width: 40px;
    height: 40px;
    margin-bottom: 10px;
    background: #b6b6b6;
}
.thumbnails_services .slide.slick-current .images_icon{
    background: #ffffff;
}