@font-face {
    font-family: 'BressayDisplayDeva';
    src: url('../fonts/BressayDisplayDeva.eot');
    src: url('../fonts/BressayDisplayDeva.eot') format('embedded-opentype'),
         url('../fonts/BressayDisplayDeva.woff2') format('woff2'),
         url('../fonts/BressayDisplayDeva.woff') format('woff'),
         url('../fonts/BressayDisplayDeva.ttf') format('truetype'),
         url('../fonts/BressayDisplayDeva.svg#BressayDisplayDeva') format('svg');
}


:root {
    --color_base:111,108,101; /* #6F6C65 */
    --color_black: 0, 0, 0;
    --color_white: 255, 255, 255;
    --baseFont: 'BressayDisplayDeva';
    --imgWhite: invert(100%) sepia(100%) saturate(0%) hue-rotate(13deg) brightness(103%) contrast(102%);
    --imgBlack: invert(0%) sepia(100%) saturate(0%) hue-rotate(108deg) brightness(93%) contrast(103%);
}


body {
    font-family: var(--baseFont);
    color: rgb(var(--color_base));
}
a,
a:hover,
a:focus {
    outline: none;
    -webkit-box-shadow: none;
    box-shadow: none;
    text-decoration: none;
}
button:focus {
    outline: none;
}

.bg{background-color: #F4F4F5;}
.bg01{background-image: url('../images/bg-pattern01.webp'); background-repeat: no-repeat;
    background-position: 0 0;
    background-size: cover;
}
.bg02{
    background-image: url('../images/bg-pattern02.webp'); background-repeat: no-repeat;
    background-position: 0 0;
    background-size: cover;
}

.content p {
    line-height: 22px;
    color: rgb(var(--color_base));
    margin-bottom: 1.5rem;
}
.content p:last-child{margin-bottom: 0;}

.content p a{
    color: inherit;
    text-decoration: none;
}

.content h3{
    text-transform: uppercase;
    margin: 0 0 12px;
}
.content ul{
    color: rgb(var(--color_base));
    margin: 0 0 1rem;
    padding: 0;
    padding-left: 1.5rem;
}
.content ul li{margin-bottom: 0.4rem;


}

.padding {
    padding: 50px 0;
}
.padding-sm{
    padding: 50px 0;
}
.padding-full{
    padding: 85px;
}

h2.title, h2{
    text-transform: uppercase;
    margin-bottom: 12px;
}
h3{
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}



hr{
    margin: clamp(0.9375rem, 0.75rem + 0.9375vw, 1.875rem) 0 0;
}
.btn-custom{
    color: rgb(var(--color_base));
    text-transform: uppercase;
    padding: 12px;
    border-radius: 0;
    line-height: normal;
    position: relative;
    font-size: 0.75rem;
    border: 1px solid rgb(var(--color_base));
    letter-spacing: 0.28px;
    margin-top: 1rem;
    text-decoration: none !important;
    transition: background-color .3s linear;
}
.btn-custom:hover, .btn-custom:focus,.btn-custom:active{outline: none;
    color: rgb(var(--color_white)) !important;
    background-color: rgb(var(--color_base)) !important;
    border-color: rgb(var(--color_base)) !important;
}
.btn-custom.has-icon:hover{
    padding-right: 32px;
}
.btn-custom.has-icon::after{
    content: "";
    background-image: url('../images/dot-white.svg');
    background-repeat: no-repeat;
    background-position: 0 0;
    width: 8px;
    height: 8px;
    position: relative;
    left: -5px;
    transition: all .3s linear;
    display: inline-block;
    opacity: 0;
    visibility: hidden
}
.btn-custom.has-icon:hover::after{
    left: 16px;
    opacity: 1;
    visibility: visible;
}

body.active{overflow: hidden; padding-right: 12px;}

#wrapper{max-width: 1920px; margin: 0 auto;}
/* .container{max-width: 1400px;} */

.space-lr {
    padding: 0 clamp(0rem, -0.75rem + 3.75vw, 3.75rem);
    padding: 0 50px;
}

/* header */
.header{
    z-index: 99;
    background-color: transparent;
    padding: 24px 0;
    max-width: 1920px;
    background: url('../images/header-bg.png') center/cover no-repeat;
}
.header::before{
    z-index: -1;
    content: "";
    position: absolute;
    inset: 0;
     backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    /* Smooth fade top → bottom */
    mask-image: linear-gradient(
        to bottom,
        rgba(0,0,0,1) 0%,
        rgba(0,0,0,1) 35%,
        rgba(0,0,0,0.6) 55%,
        rgba(0,0,0,0.3) 70%,
        rgba(0,0,0,0) 100%
    );

    -webkit-mask-image: linear-gradient(
        to bottom,
        rgba(0,0,0,1) 0%,
        rgba(0,0,0,1) 35%,
        rgba(0,0,0,0.6) 55%,
        rgba(0,0,0,0.3) 70%,
        rgba(0,0,0,0) 100%
    );
}
.header *{transition: all .3s linear;}
.header .navbar-brand{
    max-width: 225px;
    transition: all .3s linear;
    display: block;
}

#main-menu .nav-item .nav-link{
color: rgb(var(--color_white));
line-height: normal;
text-transform: uppercase;
font-size: 0.875rem;
letter-spacing: 1px;
margin-right: 1rem;
padding: 0;
}

#main-menu .nav-item.menu-icon .nav-link{margin-right: 0;}

#main-menu .nav-item .dropdown-menu .nav-item .nav-link{
    text-transform: none;
}
#main-menu .nav-item .dropdown-menu .nav-tabs .nav-item .nav-link{
    text-transform: uppercase;
}

#main-menu .nav-item.menu-icon .nav-link span.icon{
    background-image: url('../images/menu-icon.svg');
    background-repeat: no-repeat;
    background-position: 0 0;
    width: 24px;
    height: 24px;
    background-size: cover;
    display: block;
}
#main-menu .nav-item.menu-icon .nav-link.show span.icon{
    background-image: url('../images/menu-close-icon.svg');
}

.close-icon02{
     background-image: url('../images/menu-close-icon.svg');
    background-repeat: no-repeat;
    background-position: 0 0;
    width: 24px;
    height: 24px;
    background-size: cover;
    display: none; position: relative; right: -30px;}
.close-icon02.active{display: block; opacity: 1; visibility: visible;}

.menu-icon .dropdown-toggle::after{display: none;}

#main-menu ul{align-items: center;}

.menu-icon a{
    color: rgb(var(--color_white));
    font-size: 0.875rem;
    line-height: normal;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 0;
}

/* new css */
.header .navbar,.header .dropdown{position: inherit;}
.header .navbar .navbar-toggler{border: 0;
    border-radius: 0;
    filter: brightness(0) invert(1);
    opacity: 1;

}
.header .navbar .navbar-toggler:focus,.header .navbar .navbar-toggler:active{
    box-shadow: none !important;

}
#main-menu .dropdown-menu{position: fixed; z-index: -1; width: 100%;
    border: none; border-radius: 0; left: 0; top: 0; margin: 0; padding: 0;
    background: url('../images/menu-bg.jpg') no-repeat 0 0;
    background-size: cover; height: 100vh; min-height: 100%;
}
.dropdown-menu-wrap{ flex-grow: 1;
    overflow-x: hidden;
    overflow-y1: scroll;}
#main-menu .dropdown-menu .container{display: flex;
    flex-direction: column;
    height: 100%;
}

.top-space{flex-shrink: 0;}

#main-menu .dropdown-menu h3{color: rgb(var(--color_white)); margin-bottom: 0.5rem;}
#main-menu .dropdown-menu ul{padding: 0; margin: 0 0 1.5rem; list-style: none;}
#main-menu .dropdown-menu ul li{margin-bottom: 4px;}
#main-menu .dropdown-menu ul li a{
    color: rgb(var(--color_white));
}
#main-menu .dropdown-menu ul li a:hover{
    color: rgba(var(--color_white),0.7);
}
#main-menu .dropdown-menu .pic-wrap-outer .shape{width: 108px; left: -54px !important; height: 108px; top: 60%;}

.language-link a{text-decoration: underline;}
.language-link-mob{display: none; color: rgb(var(--color_white)); text-decoration: underline; }

.menu-wrapper #sub-menu{width: 54%; border: none; border-radius: 0; align-items: flex-start;}

.menu-wrapper #sub-menu .nav-item{border: none; margin-bottom: 1.5rem;}
.menu-wrapper #sub-menu .nav-item .nav-link{
    background-color: transparent; border: none; border-radius: 0;
     color: rgb(var(--color_white));
    margin: 0;
    padding: 0;
    text-underline-offset: 3px;
    font-size: 1.5rem;
    text-transform: uppercase;
    text-align: left;
    transition: all .3s linear;
}
.menu-wrapper #sub-menu .nav-item .nav-link.active{
    text-decoration: underline;
}
.menu-wrapper #sub-menu .nav-item:last-child{margin-bottom: 0;}
.menu-wrapper #menuTabs{width: 46%;}
.menu-wrapper #menuTabs .accordion-item{border: none; border-radius: 0;
    background-color: transparent;
}
.menu-wrapper #menuTabs .accordion-item .accordion-body ul li a{text-transform: none; font-size: 1rem;}

#accordionMenu .accordion-header .accordion-button{text-transform: uppercase;}
#accordionMenu .accordion-header a.accordion-button::after{display: none;}

#accordionMenu{
    border-radius: 0;
}
#accordionMenu .accordion-header{
    border: none;
    box-shadow: none;
}
#accordionMenu .accordion-button{
    border: none;
    border-radius: 0;
    text-transform: uppercase;
    box-shadow: none;
    border-bottom: 1px solid rgba(var(--color_base),0.15);
}

#accordionMenu .accordion-button:focus{
    box-shadow: none;
}
#accordionMenu .accordion-button:not(.collapsed){
    background-color: rgba(var(--color_base,0.7));
    color: rgb(var(--color_white));
}

#accordionMenu .accordion-button::after{
      filter: brightness(0);
}
#accordionMenu .accordion-button:not(.collapsed)::after{
    filter: brightness(0) invert(1);
}
#accordionMenu .accordion-item{
    border: none;
}
#accordionMenu .accordion-item:last-child{
    margin-bottom: 0;
}
#accordionMenu .accordion-item .accordion-body ul{
    margin: 0;
    padding: 0;
    list-style: none;
}
#accordionMenu .accordion-item .accordion-body ul li a{
    color: inherit;
    text-decoration: none;
    padding: 0.5rem 0;
    display: block;
    text-transform: none;
    margin-right: 0;
}


/* banner */
#banner {
    width: 100%;
    position: relative;
    overflow: hidden;
}

#banner .item {
    overflow: hidden;
    height: 120vh;
    max-height: 860px;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}



#banner .home-container{
    z-index: 1;
    left: 50%;
    top: 65%;
    transform: translate(-50%, -65%);
    width: calc(100% - 180px);

}
#banner .banner-content{width: 90%; max-width: 550px; text-align: left; color: rgb(var(--color_white)); }
#banner .banner-content .banner-title{text-transform: uppercase;
    letter-spacing: 2px;
    font-size: clamp(1.125rem, 0.8036rem + 1.6071vw, 2.25rem);
}
#banner .banner-content .sub-text{
    font-size: 0.875rem;
    font-style: italic;

}
#banner .owl-carousel .owl-dots{
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    z-index: 33;
    transition: all .3s linear;
}
#banner .owl-carousel button.owl-dot span{background-image: url('../images/dots.png');
    background-repeat: no-repeat;
    background-position: 0 0;
    width: 8px;
    height: 8px;
    display: block;
}

#banner .owl-carousel button.owl-dot.active span{
    background-position: 0 -14px;
}




/* about-block */
.about .about-pic{}
.about .about-pic .shape{ width: 126px; height: 126px;
position: absolute;
right: -63px;
top: calc(50% - 63px);
transform: translateY(-50%);
transform-origin: center center;
background-image: url('../images/shape01.png');
background-repeat: no-repeat;
background-position: 0 0;
background-size: cover;
animation: rotate-animation 20s infinite linear;
}

@keyframes rotate-animation {
	0% {
		transform: rotate(0deg);
  }
  50% {
		transform: rotate(180deg);
	}
	100% {
		transform: rotate(360deg);
	}
}


.pic-outer{overflow: hidden; z-index: 1;}
.pic-outer *{ transition: all .3s linear;}
.pic-outer:hover img{transform: scale(1.1);}


.divider{
    background-image: url('../images/line.png');
    background-repeat: no-repeat;
    background-position: 0 0;
    height: 2px;
    width: 100%;
    opacity: 1;
    border: none;
    margin: 0;
    background-size: cover;
}



/* new slider */
:root {

    --item-gap: 24px;
    --transition-speed: 0.5s;
    --wide-multiplier: 1.5;
    /* How much wider the center item is */
}

.signature-section {
    width: 100%;
    text-align: center;
}

.slider-container {
    position: relative;
    width: 100%;
    margin: 0 auto;
    overflow: hidden;

}

.slider-wrapper1 {
    display: flex;
    transition: transform var(--transition-speed) cubic-bezier(0.4, 0, 0.2, 1);
    align-items: center;
    /* Center items vertically */
    will-change: transform;
}

.slider-item {
    position: relative;
    flex-shrink: 0;
    height: 530px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}
.slider-item::before{
    content: "";
    background-color: rgba(var(--color_base),0.25);
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    transition: all .5s linear;
}

.slider-item img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.slider-item .slide-data {
    position: relative;
    opacity: 1;
    visibility: visible;
    width: 100%;
    height: 100%;
    z-index: 3;
    transition: all .5s linear;
}
.slider-item .slide-data span{
    display: flex;
    justify-content: center;
    align-items: flex-end;
    height: 75%;
    color: rgb(var(--color_white));
    letter-spacing: 2px;
    transition: all .5s linear;
    position: relative;
    text-transform: uppercase;
}
.slider-item .slide-data::before{
    content: "";
    border: 10px solid transparent;
    padding: 15px;
    border-image: url('../images/frame.png') 10 stretch;
    position: absolute;
    inset: 50px;
    transition: all .5s linear;
}

.signature-slider .owl-item.center .slider-item .slide-data{
    opacity: 1;
    visibility: visible;
}
.signature-slider .owl-item.center .slider-item:hover::before{
    background-color: rgba(var(--color_base),0.5);
}

.slider-item:hover .slide-data::before{
    inset:40px;

}
.slider-item:hover .slide-data span{
    height: 50%;
}



.signature-slider .owl-nav{ width: 220px;
    margin: 3rem auto 0;
    left: 0;
    right: 0;
    bottom: 0;
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.signature-slider .owl-nav::after{
    content: "";
    height: 41px;
    position: absolute;
    left: 50%;
    background-color: #B6BBBE;
    width: 1px;
    top: 50%;
    transform: translateY(-50%);
}

  .signature-slider .owl-nav button.owl-prev{
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1px solid rgb(var(--color_base));
    left: 0; align-items: center; display: flex;
    justify-content: center;

}
  .signature-slider .owl-nav button.owl-next{
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1px solid rgb(var(--color_base));
    right: 0; align-items: center; display: flex;
    justify-content: center;

}
.signature-slider .owl-nav button:hover{
    background-color: rgb(var(--color_base));
}
  .signature-slider .owl-nav button span{width: 7px; height: 12px;  background-repeat: no-repeat;
    background-size: contain;
    display: block;
    position: relative;
    margin: auto;
    transition: all .2s linear;
    flex-shrink: 0;
    margin: 0 5px;
}
.signature-slider .owl-nav button.owl-prev .prev-arrow{background-image: url('../images/arrow.png'); }
.signature-slider .owl-nav button.owl-next .next-arrow{background-image: url('../images/arrow.png'); transform: rotate(180deg); }
.signature-slider .owl-nav button:hover span{
    filter: invert(1) grayscale(1);
}
.signature-slider .owl-nav::after {
    content: "";
    height: 1px;
    background-color: #B6BBBE;
    width: 140px;
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    margin: 0 auto;
    transform: translateY(-50%);
}




/* Controls Container */
.slider-controls {
    display: flex;
    justify-content: center;
    gap: 150px;
    margin-top: 30px;
    position: relative;
}
.slider-controls::after {
    content: "";
    height: 1px;
    background-color: #B6BBBE;
    width: 140px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

.slider-nav {
    position: relative;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: transparent;
    border: 1px solid rgb(var(--color_base));
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10;
    transition: all 0.3s ease;

}

.slider-nav.next img{
    transform: rotate(180deg);
}
.slider-nav:hover {
    background: rgb(var(--color_base));
}
.slider-nav:hover img{
    filter: invert(1) grayscale(100);
}

/* Responsive Logic */





/* -------- */




#advanced-technology{background-size: cover;
    background-repeat: no-repeat;
    background-position: right top;
    min-height: 710px;
}
#adv-accordion{
    background-color: transparent;
    border-radius: 0;
}
#adv-accordion .accordion-header{
    border: none;
    box-shadow: none;
}
#adv-accordion .accordion-button{
    border: none;
    border-radius: 0;
    background-color: transparent;
    padding: 0;
    color: rgb(var(--color_white));
    text-transform: uppercase;
    box-shadow: none;
}
#adv-accordion .accordion-body{padding: 12px 0 0 0;}
#adv-accordion .accordion-body p{margin-bottom: 0;color: rgb(var(--color_white)); }
#adv-accordion .accordion-button::after{display: none;}
#adv-accordion .accordion-button:focus{
    box-shadow: none;
}

#adv-accordion .accordion-item{
    background-color: transparent;
    border: none;
    margin-bottom: 36px;
}
#adv-accordion .accordion-item:last-child{
    margin-bottom: 0;

}

#advanced-technology .btn-custom{color: rgb(var(--color_white)); border-color: rgb(var(--color_white)); margin-top: 2rem;}

/* team */

.owl-carousel.owl-flex .owl-stage{display: flex;}
.owl-carousel.owl-flex .item {
    height: 100%;
}
.owl-carousel.owl-flex .item .card {
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: space-between;
    text-decoration: none;
}


/* team */
#team{overflow: hidden;}
#team .team-tabs{
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}
#team .team-tabs .team-tab{
    color: rgb(var(--color_base));
    text-transform: uppercase;
    text-decoration: none;
    font-size: 0.875rem;
    letter-spacing: 1px;
    padding-bottom: 4px;
    border-bottom: 2px solid transparent;
    transition: all .3s linear;
}
#team .team-tabs .team-tab:hover,
#team .team-tabs .team-tab.active{
    border-bottom-color: rgb(var(--color_base));
}
#team .team-pane{display: none;}
#team .team-pane:first-of-type{display: block;}
#team .owl-carousel>div { overflow: visible;}
.item.team-item{margin-bottom: 0; height: 100%;}
.team-item{margin-bottom: 1.5rem;}
.team-item{position: relative;
    border: 4px solid transparent;
    border-image: url('../images/frame.png') 4 stretch;
    transition: all .5s linear;

}
.team-item .text{ color: rgb(var(--color_white)); font-size: clamp(1rem, 0.95rem + 0.25vw, 1.25rem); font-weight: 600;}
.team-item .card .card-header{min-height: 134px; display: flex; flex-direction: column; padding-top: 70px; letter-spacing: 1px; color: rgb(var(--color_base)); text-transform: uppercase;}
.team-item .card .card-header .post{font-size: 12px; margin-top: 6px;}
.team-item .card .card-body{margin-top: auto;}

#team .slider.style01 .owl-nav{position: absolute; right: 0; width: 220px;
     display: flex;
    justify-content: center;
    gap: 150px;
    top: -5rem;

}

#team .slider.style01 .owl-nav::after {
    content: "";
    height: 1px;
    background-color: #B6BBBE;
    width: 140px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

#team .slider.style01 .owl-nav .owl-prev,#team .slider.style01 .owl-nav .owl-next {
    position: relative;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: transparent;
    border: 1px solid rgb(var(--color_base));
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10;
    transition: all 0.3s ease;

}
#team .slider.style01 .owl-nav .owl-prev i,#team .slider.style01 .owl-nav .owl-next i{
    background-image: url('../images/arrow.png');
    background-repeat: no-repeat;
    background-position: center center;
    width: 7px;
    height: 12px;
}
#team .slider.style01 .owl-nav .owl-next i{
    transform: rotate(180deg);
}
#team .slider.style01 .owl-nav button:hover{
    background-color: rgb(var(--color_base));
}
#team .slider.style01 .owl-nav button:hover i{
    filter: invert(1) grayscale(1) !important;
}

.team-item.style02{padding: 3rem 3rem 0 0;}
.team-item.style02 img{
    aspect-ratio: 395/490;
}

/* ----------- */


#treatment-block h2.title{left: 96px; top: 132px; z-index: 2; color: rgb(var(--color_base)); position: absolute;}
#treatment-block .owl-carousel.owl-drag .owl-item{height: 100%;}
#treatment-block #sync1 .item .link-icon{position: absolute; transition: all .3s linear;}
#treatment-block #sync1 .item .link-icon img{border-radius: 0; width: auto; height: auto;}
#treatment-block #sync1 .item.face .link-icon{top: 50%; left: 51.5%;}
#treatment-block #sync1 .item.body .link-icon{top: 46%; left: 45%;}
#treatment-block #sync1 .item .link-data{position: absolute; top:1rem; right: 1rem; width: 370px;
   background-color: rgb(var(--color_white));  transition: all .3s linear; height: calc(100% - 2rem); opacity: 0; visibility: hidden; transform: scale(0.9);
}
#treatment-block #sync1 .item .link-data .data-wrapper{
    padding: 36px;
    height: 100%;
}
#treatment-block #sync1 .item .link-data .data-inner{
    border: 4px solid transparent;
    border-image: url('../images/frame.png') 4 stretch;
    padding: 48px 40px 40px;
    height: 100%;
}
#treatment-block #sync1 .item .link-data ul{margin: 0; padding: 0; list-style: none;}
#treatment-block #sync1 .item .link-data ul li{font-size: 1.25rem; margin-top: 1rem;}
#treatment-block #sync1 .item .link-data ul li:first-child{margin-top: 0;}
#treatment-block #sync1 .item .link-data ul li a{color: rgb(var(--color_base));}
#treatment-block #sync1 .item .link-data ul li:hover a{color: rgb(var(--color_black));}
#treatment-block #sync1 .item .link-data img{width: auto; border-radius: 0;}
#treatment-block #sync1 .item .link-data.active{opacity: 1; visibility: visible; transform: scale(1);}
#treatment-block #sync1 .item .link-data .close-icon{right: 54px; top: 54px;}
#treatment-block #sync1 .item .link-data h4{  margin-bottom: 1.5rem; text-transform: uppercase;}



#treatment-block #sync2{position: absolute; width: 424px; height: calc(100% - 168px); background: rgb(var(--color_white)); left: 0; top: 0; margin: 84px 48px; padding: 3rem;}
#treatment-block #sync2 .owl-nav{position: absolute; display: flex; left: 3rem; bottom: 3rem;}
#treatment-block #sync2 .owl-nav button{width: 32px; height: 32px; border-radius: 50%;}
#treatment-block #sync2 .owl-nav button:hover{background-color: rgb(var(--color_base));}
#treatment-block #sync2 .owl-stage-outer{height: 100%;}
#treatment-block #sync2 .owl-stage{height: 100%;}
#treatment-block #sync2 .owl-item{height: 100%;}
#treatment-block #sync2 .item{height: 100%;}
#treatment-block #sync2 .card{background-color: transparent; border: none;}
#treatment-block #sync2 .card h4{margin-top: auto; text-transform: uppercase; margin-bottom: 4rem; color: rgb(var(--color_base)); }
#treatment-block .owl-nav button{ width: 32px; height: 32px; border: 1px solid rgb(var(--color_base));
    border-radius: 50%; margin-right: 12px; cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
transition: all 0.3s ease;}

#treatment-block .owl-nav button i{
    background-image: url('../images/arrow.png');
    background-repeat: no-repeat;
    background-position: center center;
    width: 7px;
    height: 12px;
    display: block;
}

#treatment-block .owl-nav button span {

    color: rgb(var(--color_base));
    line-height: 1.4rem;

    display: inline-block;
}

#treatment-block .owl-nav button.owl-next .next-arrow{transform: rotate(180deg);}
#treatment-block .owl-nav button:hover i{
    filter: invert(1) grayscale(1) !important;
}




/*treatment-block-mobile*/
#treatment-block-mob .owl-carousel.owl-drag .owl-item{height: 100%;}
#treatment-block-mob .item .link-icon{position: absolute; transition: all .3s linear; z-index: 0;
      animation: slowZoom 3s ease-in-out infinite alternate;
}
@keyframes slowZoom {
  0% {
    transform: scale(0.8); /* Original size */
  }
  50% {
    transform: scale(1); /* Zoom in to 1.5 times original size */
  }
  100% {
    transform: scale(0.8); /* Return to original size */
  }
}


#treatment-block-mob .item .link-icon img{border-radius: 0; width: auto; height: auto;}
#treatment-block-mob .item.face .link-icon{top: 40%; left: 24.5%;}
#treatment-block-mob .item.body .link-icon{ top: 44%; left: 21%;}

#treatment-block-mob .item .link-data{position: absolute; inset: 0;
    transition: all .3s linear; height: calc(100% - 2rem); opacity: 0; visibility: hidden; transform: scale(0.9);
    height: 100%;  margin: 0 auto; overflow-y: scroll;
    background-color: rgb(var(--color_white));
    color: rgb(var(--color_base));
}
#treatment-block-mob .item .link-data .data-wrapper{
    padding: 36px;
    height: 100%;
}
#treatment-block-mob .item .link-data .data-inner{
    border: 4px solid transparent;
    border-image: url('../images/frame.png') 4 stretch;
    padding: 48px 40px 40px;
    height: 100%;
    overflow-y: scroll;
}

#treatment-block-mob .item .link-data ul{margin: 0; padding: 0; list-style: none;}
#treatment-block-mob .item .link-data ul li{font-size: 1.25rem; margin-top: 1rem;}
#treatment-block-mob .item .link-data ul li:first-child{margin-top: 0;}
#treatment-block-mob .item .link-data img{width: auto; border-radius: 0;}
#treatment-block-mob .item .link-data.active{opacity: 1; visibility: visible; transform: scale(1);}
#treatment-block-mob .item .link-data .close-icon{right: 54px; top: 54px;}
#treatment-block-mob .item .link-data h4{ color: rgb(var(--color_base));  margin-bottom: 1.5rem; text-transform: uppercase; }
#treatment-block-mob .item .card{position: absolute; left: 0; bottom: 0; padding: 1rem;border: none;
    border-radius: 0;
    padding: 2rem;
    margin: 1.5rem;
    width: calc(100% - 3rem);
    color: rgb(var(--color_base));
}
#treatment-block-mob .item .link-data p{color: rgb(var(--color_base));}
#treatment-block-mob .item .link-data ul li a{color: rgb(var(--color_base));}
#treatment-block-mob .item .card h2{margin-bottom: 40px;}
#treatment-block-mob .item .card h4{margin-bottom: 0;}
#treatment-block-mob .owl-nav{ position: absolute; left: auto;
    bottom: 55px;
    width: 110px;
    top: auto;
    right: 25px;
    height: 32px;
}

#treatment-block-mob .owl-nav button.owl-prev,#treatment-block-mob .owl-nav button.owl-next{
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
     width: 32px; height: 32px; border: 1px solid rgb(var(--color_base));
    border-radius: 50%;  }
#treatment-block-mob .owl-nav button.owl-prev{left: 1rem;}
#treatment-block-mob .owl-nav button.owl-next{right: 1rem;}
#treatment-block-mob .owl-nav button span {
    font-size: 2rem;
    color: rgb(var(--color_base));
    line-height: 1.4rem;

    display: inline-block;
}
#treatment-block-mob .owl-nav button.owl-next:hover,
#treatment-block-mob .owl-nav button.owl-prev:hover{
    background-color: transparent;
}
#treatment-block-mob .owl-nav button.owl-next .next-arrow{transform: rotate(180deg);}
#treatment-block-mob .owl-nav button.owl-prev i,#treatment-block-mob .owl-nav button.owl-next i{
     background-image: url('../images/arrow.png');
    background-repeat: no-repeat;
    background-position: center center;
    width: 7px;
    height: 12px;
    display: block;
    margin: auto;
}



/* video-gallery */

#video-gallery .video-tabs {
    list-style: none;
    margin: 0 0 1.5rem 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}
#video-gallery .video-tabs li { margin: 0; padding: 0; }
#video-gallery .video-tabs .video-tab {
    color: rgb(var(--color_base));
    text-transform: uppercase;
    text-decoration: none;
    font-size: 0.875rem;
    letter-spacing: 1px;
    padding: 0.25rem 0;
    border-bottom: 2px solid transparent;
    transition: border-color 0.3s linear, color 0.3s linear;
}
#video-gallery .video-tabs .video-tab:hover { border-bottom-color: rgba(var(--color_base), 0.5); }
#video-gallery .video-tabs .video-tab.active { border-bottom-color: rgb(var(--color_base)); font-weight: 600; }
#video-gallery .video-pane { display: none; }
#video-gallery .video-pane.active { display: block; }

.gallery-slider{padding: 85px 0 100px;}
.gallery-slider.owl-carousel .owl-stage-outer{overflow: visible;}


.gallery-slider .owl-item > div {
    cursor: pointer;

    transition: margin 0.4s ease;
  }
    .gallery-slider .owl-item.center{
    z-index: 2;
  }
  .gallery-slider .owl-item.center > div {
    cursor: auto;
    margin: 0;
  }
  .gallery-slider .owl-item img{
    transition: all .3s linear;
  }
  .gallery-slider .owl-item .pic-wrap{
    transition: all .3s linear;
  }
  .gallery-slider .owl-item .pic-wrap::after{
    content: "";
    background-color: rgba(var(--color_base),0.5);
    position: absolute;
    width: 100%;
    height: 100%;
    inset: 0;
    display: block;
  }
.gallery-slider .owl-item .pic-wrap::before{
    content: "";
    background: url('../images/play-icon.svg') no-repeat 0 0;
    width: 60px;
    height: 60px;
    display: block;
    background-size: cover;
    margin: auto;
position: absolute;
inset: 0;
z-index: 1;
transition: all .3s linear;
}

  .gallery-slider .owl-item.center .pic-wrap{
    transform: scale(1.4);
    margin-top: -0.5rem;
  }
  .gallery-slider .owl-item.center .pic-wrap::before{
    transform: scale(0.72);
  }

  .gallery-slider .owl-item.center:hover .pic-wrap::before{
    transform: scale(1);
  }
  .gallery-slider .owl-item:hover .pic-wrap::before{
    transform: scale(1.2);
  }

  .gallery-slider .item .pic-wrap{
    display: block;
    text-decoration: none;
    overflow: hidden;
  }




.gallery-slider .owl-nav{ width: 220px;
    margin: 0 auto;
    left: 0;
    right: 0;
    position: absolute;
    bottom: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.gallery-slider .owl-nav::after{
    content: "";
    height: 41px;
    position: absolute;
    left: 50%;
    background-color: rgb(var(--color_white));
    width: 1px;
    top: 50%;
    transform: translateY(-50%);
}

  .gallery-slider .owl-nav button.owl-prev{
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1px solid rgb(var(--color_base));
    left: 0; align-items: center; display: flex;
    justify-content: center;

}
  .gallery-slider .owl-nav button.owl-next{
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1px solid rgb(var(--color_base));
    right: 0; align-items: center; display: flex;
    justify-content: center;

}
.gallery-slider .owl-nav button:hover{
    background-color: rgb(var(--color_base));
}
  .gallery-slider .owl-nav button span{width: 7px; height: 12px;  background-repeat: no-repeat;
    background-size: contain;
    display: block;
    position: relative;
    margin: auto;
    transition: all .2s linear;
    flex-shrink: 0;
    margin: 0 5px;
}
.gallery-slider .owl-nav button.owl-prev .prev-arrow{background-image: url('../images/arrow.png'); }
.gallery-slider .owl-nav button.owl-next .next-arrow{background-image: url('../images/arrow.png'); transform: rotate(180deg); }
.gallery-slider .owl-nav button:hover span{
    filter: invert(1) grayscale(1);
}
.gallery-slider .owl-nav::after {
    content: "";
    height: 1px;
    background-color: #B6BBBE;
    width: 140px;
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    margin: 0 auto;
    transform: translateY(-50%);
}



.link{  text-transform: uppercase;
color: rgb(var(--color_base)); text-transform: uppercase;
text-underline-offset: 8px;
transition: all .3s linear;
font-size: 14px;
}
.link:hover,.link:focus{
    text-decoration: underline;
    text-underline-offset: 3px;
}



/* blog-slider */

.blog-slider .item-inner{position: relative; display: block;}
.blog-slider .item-inner .info{
    transition: all .3s linear;
    color: rgb(var(--color_base));
}
.blog-slider .item-inner .info .date{}
.blog-slider .item-inner .info .read-time{ padding-left: 32px; position: relative;}
.blog-slider .item-inner .info .read-time::before{
    content: "";
    background-image: url('../images/dots.png');
    background-position: 0 0;
    width: 8px;
    height: 8px;
    display: block;
    position: absolute;
    left: 13px;
    top: 7px;
}

.blog-slider .item-inner .pic-wrap{position: relative; overflow: hidden; }
.blog-slider .item-inner .pic-wrap *{ transition: all .3s linear;}
.blog-slider .item-inner:hover img{transform: scale(1.1);}

.blog-slider .item-inner:hover .pic-wrap img{transform: scale(1.1);}


#social-wall{
    background-image: url('../images/social-bg.jpg');
    background-repeat: no-repeat;
    background-position: center top;
    background-size: cover;
}

.tagline{
    font-size: clamp(1.875rem, 1.2679rem + 3.0357vw, 4rem);
    line-height: normal;
    text-transform: uppercase;
    letter-spacing: 1px;
    background-image: url("../images/bg.jpg");
    background-size: cover;
    background-position: center;

    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

/* get-in-touch*/
.form-control{background-color: transparent; border-radius: 0; border: none;
    border-bottom:1px solid #B6BBBE; padding: 12px 0; color: rgb(var(--color_base));
}

.form-control:focus{box-shadow: none; background-color: transparent; color: rgb(var(--color_black)); border-color: rgba(var(--color_black),0.5);}
.form-control::-webkit-input-placeholder {color: rgb(var(--color_base)); }
.form-control::-moz-placeholder {color: rgb(var(--color_base)); }
.form-control:-ms-input-placeholder { color: rgb(var(--color_base));  }
.form-control:-moz-placeholder { color: rgb(var(--color_base)); }
textarea.form-control {height: 100px; resize: none;}
#get-in-touch .btn-submit,.cust-form .btn-submit{border-radius: 0; border: 1px solid rgb(var(--color_base));
    text-transform: uppercase;
    font-size: 14px;

}
#get-in-touch .btn-submit:hover, #get-in-touch .btn-submit:focus,.cust-form .btn-submit:hover, .cust-form .btn-submit:focus{
    background-color: rgb(var(--color_base));
    color: rgb(var(--color_white));
}


/*
#map-block .card{background-color: rgb(var(--color_base)); border: 0; border-radius: 0;
    padding: 0 36px;
}
#map-block .card ul{margin: 0;}
#map-block .card ul li{border-bottom: 1px solid #878787; padding: 36px 0;}
#map-block .card ul li:last-child{border-bottom: none;}
#map-block .card ul li h3{margin-bottom: 6px; color: rgb(var(--color_white));}
#map-block .card ul li p{margin-bottom: 0; color: #B6BBBE;}
#map-block iframe{display: block;} */

#map-block{ overflow: hidden; position: relative;}
#map-block .row.gx-0{margin: 0 12px;}
.map-bg{background-color:#1E1E1E; position: absolute; left: 0; right: 0; bottom: 0; z-index: 0;}

.address-panel{
    background-color: #6f6a61;
    color: #fff;
    padding: 0 36px;
    height: 100%;
    position: relative;
    border: none;
    box-shadow: none;
}
.address-panel .nav-link{
    text-decoration: none;
    color: inherit;
    background-color: transparent;
    border-radius: 0;
    border: none;
    padding: 0;
    position: relative;
    width: 100%;
    border-bottom: 1px solid rgba(255,255,255,0.3);
}
.address-panel .nav-link:hover,.address-panel .nav-link.active{
    border-bottom: 1px solid rgba(255,255,255,0.3);
}
.address-panel .nav-link.active{
    background-color: transparent;
}
.address-panel .nav-link:last-child .address-box{border: none;}
.address-panel .nav-link::after{
    content: "";
    background-image: url('../images/shape02.png');
    background-repeat: no-repeat;
    background-position: 0 0;
    background-size: cover;
    width: 72px;
    height: 72px;
    position: absolute;
    right: -72px;
    top: 36px;
    z-index: 0;
    animation: rotate-animation 20s infinite linear;
    opacity: 0;
    transform: scale(0);
    visibility: hidden;
}
.address-panel .nav-link.active::after{
    opacity: 1;
    visibility: visible;
    transform: scale(1);
}

.address-box{
    padding: 36px 0;
    /* border-bottom: 1px solid rgba(255,255,255,0.3); */
}



.address-box h5{
    font-size: 20px;
    letter-spacing: 1px;
    margin-bottom: 6px;
    color: rgb(var(--color_white));
}

.address-box p{
    color: #B6BBBE;
    margin: 0;
}
.map-embed{position: relative; z-index: 2; background-color: rgb(var(--color_base));}
.map-embed iframe{
    width: 100%;
    height: 100%;
    min-height: 450px;
    border: 0;
    display: block;

}

/* footer */
.footer{
    background:#1E1E1E;
}
.footer .social{color: rgb(var(--color_white));}
.footer .social img{
    filter: invert(1) grayscale(1);
}
.footer .social:hover{
    color:#d6b36a;
}
.footer .social:hover img{
filter: invert(89%) sepia(11%) saturate(2038%) hue-rotate(337deg) brightness(91%) contrast(84%);
}

.footer h6{
    color:rgb(var(--color_white));
    font-size:16px;
    letter-spacing:1px;
    margin-bottom:24px;
}

.footer ul{
    padding:0;
    margin:0;
    list-style:none;
}

.footer ul li{
    margin-bottom:12px;
}

.footer a{
    color:#B6BBBE;
    text-decoration:none;
}

.footer a:hover{
    color:#d6b36a;
}

.footer-divider{
    border-top:1px solid #d6b36a;
    margin:40px 0;
}

.social{
    font-size:14px;
}

footer .btn-custom{
    color:#DADCDA;
    padding:10px 25px;
    font-size:14px;
    background:transparent;
    width: 100%;
    margin: 0 0 12px;
}

.copyright{font-size: 12px; color: #878787;}

.footer .bottom p{font-size: 14px;}

.footer .shape{ width: 90px; height: 90px;
margin: 0 auto;
transform-origin: center center;
background-image: url('../images/shape03.png');
background-repeat: no-repeat;
background-position: 0 0;
background-size: cover;
animation: rotate-animation 20s infinite linear;}



.whatsapp{
    color:#B6BBBE;
}

.whatsapp img{
    filter: invert(82%) sepia(5%) saturate(198%) hue-rotate(159deg) brightness(90%) contrast(91%);
}
.whatsapp:hover img{
    filter: invert(89%) sepia(11%) saturate(2038%) hue-rotate(337deg) brightness(91%) contrast(84%);
}

.footer-bottom, .footer-bottom a{
    font-size: 12px;
    color: #878787;
}
.footer-bottom a{text-decoration: underline;}

/* inner page styles */
#inner-banner {
    height: 100vh;
    max-height: 460px;
    overflow: hidden
}

#inner-banner .banner-pic {
    height: 100%
}

#inner-banner .banner-pic:before {
    content: "";
    background-color: rgb(var(--color_base),.35);
    position: absolute;
    width: 100%;
    height: 100%;
    display: block
}

#inner-banner .container {
    z-index: 1;
    left: 50%;
    top: 70%;
    transform: translate(-50%,-70%)
}

#inner-banner h1 {
    margin-bottom: 0;
    text-transform: uppercase;
}


.pic-wrap-outer .shape{ width: 126px; height: 126px;
position: absolute;
right: -63px;
top: calc(50% - 63px);
transform: translateY(-50%);
transform-origin: center center;
background-image: url('../images/shape01.png');
background-repeat: no-repeat;
background-position: 0 0;
background-size: cover;
z-index: 1;
animation: rotate-animation 20s infinite linear;
}
.pic-wrap-outer .shape03{
    background-image: url('../images/shape03.png');
    left: -63px;
    right: auto;
}

.left-position{
    left: -63px !important;
    right: auto !important;
}

.right-position{
    left: auto !important;
    right: -63px !important;
}

.pic-wrap-outer .shape02{
    background-image: url('../images/shape02.png');
}

.pic-wrap-outer .shape04{
    background-image: url('../images/shape04.png');
}
.pic-wrap-outer.center{position: relative; height: 100%;}
.pic-wrap-outer.center .shape01,.pic-wrap-outer.center .shape02,.pic-wrap-outer.center .shape03,.pic-wrap-outer.center .shape04{
    left: 0;
    right: 0;
    margin: 0 auto;
}

.pic-wrap{overflow: hidden; z-index: 1;}
.pic-wrap-outer *{ transition: all .3s linear;}
.pic-wrap-outer:hover img{transform: scale(1.1);}


.column-wrap{overflow: hidden;}

.left-column,.right-column{padding:50px; position: relative;}
.left-column{
    background:#E0E4E0;
    color: rgb(var(--color_base));
    padding-left: 12px;
}
.right-column{
    background:rgb(var(--color_base));
    color:#DADCDA;
    padding-right: 12px;
}
.left-column::before{content: "";
    background:#E0E4E0;
    position: absolute;
    left: -100%;
    top: 0;
    height: 100%;
    width: 100%;
    display: block;
}
.right-column::before{content: "";
    background:rgb(var(--color_base));
    position: absolute;
    right: -100%;
    top: 0;
    height: 100%;
    width: 100%;
    display: block;
}


.card-border{
    border: 6px solid transparent;
    border-image: url('../images/frame.png') 6 stretch;
    border-radius: 0;
    padding: 50px;
}
.card-border h2.title{
    color: rgb(var(--color_base));
}
.card-border h5{color: rgb(var(--color_base));}

.banner-bg-section{
    background-position: 0 0;
    background-repeat: no-repeat;
    background-size: cover;
    padding:50px 0;
    height: 100%;
    min-height: 700px;
}

.banner-bg-content{
    background:rgb(var(--color_white));
    padding:50px;
    height: 100%;
    min-height: 600px;
}

/* inner-accordion */
#inner-accordion{
    background-color: transparent;
    border-radius: 0;
}
#inner-accordion .accordion-header{
    border: none;
    box-shadow: none;
}
#inner-accordion .accordion-button{
    border: none;
    border-radius: 0;
    background-color: transparent;
    padding: 0;
    color: rgb(var(--color_base));
    text-transform: uppercase;
    box-shadow: none;
}
#inner-accordion .accordion-body{padding: 12px 0 0 0;}
#inner-accordion .accordion-body p{margin-bottom: 0;color: rgb(var(--color_base)); }
#inner-accordion .accordion-button::after{display: none;}
#inner-accordion .accordion-button:focus{
    box-shadow: none;
}

#inner-accordion .accordion-item{
    background-color: transparent;
    border: none;
    margin-bottom: 24px;
}
#inner-accordion .accordion-item:last-child{
    margin-bottom: 0;

}

.consultation-step .col{position: relative;}
.consultation-step .col::after{content: "";
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    width: 1px;
    background-color: #B6BBBE;
}
.consultation-step .col:last-child::after{display: none;}
.consultation-step .consultation-item {padding: 12px 0;}
.consultation-step .consultation-item h5{text-transform: uppercase;}

.consultation-block.style02{background-image: url('../images/bg-gray.webp'); background-repeat: no-repeat; background-position: 0 0;
    background-size: cover;
    color: rgb(var(--color_white));
}

.consultation-block.style02 p{
    color: rgb(var(--color_white));
}
.consultation-block.style02 .clr-base p{color: rgb(var(--color_base));}

.bullet-style01{margin: 0; padding: 0 !important; list-style: none;}
.bullet-style01 li{position: relative; border-bottom: 1px solid #DADCDA; padding: 16px 0; padding-left: 24px; }
.bullet-style01 li::before{content: ""; width: 12px; height: 12px; border: 1px solid #D6BB65;
    position: absolute; left: 0; top: 20px; border-radius: 50%;
}
.bullet-style01 li:last-child{border: none;}

.plan-list{margin: 0; padding: 0 !important; list-style: none;}
.plan-list li{position: relative; border-bottom: 1px solid #DADCDA; padding: 1.5rem 0; }
.plan-list li h5{color: rgb(var(--color_white));}
.plan-list li:last-child{border-bottom: none; padding-bottom: 0;}


/* inner-accordion */
#inner-accordion{
    background-color: transparent;
    border-radius: 0;
}
#inner-accordion .accordion-header{
    border: none;
    box-shadow: none;
}
#inner-accordion .accordion-button{
    border: none;
    border-radius: 0;
    background-color: transparent;
    padding: 0;
    color: rgb(var(--color_base));
    text-transform: uppercase;
    box-shadow: none;
}
#inner-accordion .accordion-body{padding: 12px 0 0 0;}
#inner-accordion .accordion-body p{margin-bottom: 0;color: rgb(var(--color_base)); }
#inner-accordion .accordion-button::after{display: none;}
#inner-accordion .accordion-button:focus{
    box-shadow: none;
}

#inner-accordion .accordion-item{
    background-color: transparent;
    border: none;
    margin-bottom: 24px;
}
#inner-accordion .accordion-item:last-child{
    margin-bottom: 0;

}

#inner-accordion.style02 .accordion-item{
    margin: 0;
    padding: 1.5rem 0;
    border-bottom: 1px solid #B6BBBE;
    border-radius: 0;
}
#inner-accordion.style02 .accordion-button::after{
    display: inline-block;
    background-image: url('../images/arrow-down.svg');
    background-repeat: no-repeat;
    width: 24px;
    height: 24px;

}


.blog-item{position: relative; display: block;}
.blog-item .info{
    transition: all .3s linear;
    color: rgb(var(--color_base));
}
.blog-item .info .read-time{ padding-left: 32px; position: relative;}
.blog-item .info .read-time::before{
    content: "";
    background-image: url('../images/dots.png');
    background-position: 0 0;
    width: 8px;
    height: 8px;
    display: block;
    position: absolute;
    left: 13px;
    top: 7px;
}

.blog-item .pic-wrap{position: relative; overflow: hidden; }
.blog-item .pic-wrap *{ transition: all .3s linear;}
.blog-item:hover img{transform: scale(1.1);}
.blog-item:hover .pic-wrap img{transform: scale(1.1);}

.blog-details h2{margin-top: 60px; font-size: 1.5rem;}
.blog-details h2:first-child{margin-top: 60px;}
.blog-details h6{text-transform: uppercase;}
.blog-details ul,.blog-details ol{margin-bottom: 1.5rem;}
.blog-details ul li a,.blog-details ol li a{color: inherit; text-decoration: underline;}


.address-item{text-align: center; position: relative; height: 100%;}
.address-wrap .address-item::after{content: ""; width: 1px; right: 0; top: 0; height: 100%; background-color: #B6BBBE; display: block; position: absolute;}
.address-wrap .col:last-child .address-item::after{display: none;}
.address-wrap .address-item a:hover{color: rgb(var(--color_black));}

.address-card { background-color: #E0E4E0;}
.address-card h5{text-transform: uppercase; color: rgb(var(--color_base));}
.address-card a:hover{color: rgb(var(--color_black));}

.machine-item{ display: block; margin-bottom: 1.5rem; color: inherit; aspect-ratio: 312/312;}
.machine-item:hover{color: rgb(var(--color_black));}
.machine-item .item-inner{position: relative;
    border: 4px solid transparent;
    border-image: url('../images/frame.png') 4 stretch;
    transition: all .5s linear;
    min-height: 312px;
}
.machine-item .item-inner img{position: absolute;
    inset: 0;
    max-height: 85%;
    margin: auto;
    transition: all .3s linear;
}
.machine-item:hover .item-inner img{
    transform: scale(1.05);
}
.machine-item h5{text-transform: uppercase;}
.machine-item.style02 .item-inner{min-height: 530px;}


.pagination{justify-content: center;}
.pagination .page-numbers{border: 1px solid rgb(var(--color_base)); margin: 5px; text-transform: uppercase; font-size: 14px; padding:6px 12px; color: rgb(var(--color_base)); display: block; line-height: normal;}
.pagination .page-numbers:hover,.pagination .page-numbers.current{
    background-color: rgb(var(--color_base));
    color: rgb(var(--color_white));
}


/* Mobile spacing */
@media (max-width: 767px){
    .about-left,
    .about-right{
        padding:50px 25px;
    }

}
