@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Nanum+Gothic&display=swap');

:root {
    --theme: #0f1556; 
    --secondary:#B97A14; 
    --black: #000;
    --gray: #353535;
    --gray-500:#878787;
    --gray-400:#9C9C9C;
    --gray-200:#F8F8F8;
    --gray-100:#FBFBFB;
    --white: #ffffff;
    --rounded-6: 0.375rem;
    --rounded-10: 0.625rem;
    --rounded-16: 1rem;
    --rounded-20: 1.25rem;
    --rounded-30: 1.875rem;
    --rounded-50: 3rem;
    --transition: all .4s linear;
    --fontmontserrat: "Montserrat", sans-serif;
    --font-sm: 0.75rem;
    --font-md: 0.875rem;
    --font-lg: 1rem;
    --font-xl: 1.125rem;
    --font-2xl: 1.25rem;
    --font-3xl: 1.375rem;
    --font-4xl: 1.5rem;
    --font-5xl: 2rem;
    --font-6xl: 2.5rem;
    --font-xxl: 3rem;
}



.gradient-light{
    background: #ffffff;
    background: linear-gradient(180deg,rgba(255, 255, 255, 1) 0%, rgba(244, 247, 255, 1) 100%);
}

/*--------------------------------------*/

/*Element Base
/*--------------------------------------*/
body {
    font-size: 1rem;
    font-family: "Montserrat", sans-serif;
    font-weight: 400;
    background: #fff;
    color: var(--gray);
    overflow-x: hidden;

}
.icon{
    width:4rem;
}
/*--------------------------------------*/

/*Typography
/*--------------------------------------*/
h1,
h2,
h3,
h4,
h5,
h6 {
     font-family: "Montserrat", sans-serif;
    font-weight: 600;
    color: var(--black);
    margin-bottom: 1rem;
 }

h1 {
    font-size: 2.813rem;
    color: var(--white);
}

h2 {
    font-size: 2.25rem;
}
h3 strong,
h2 strong{
      font-weight: 700;
}
h3 {
    font-size: 2.rem;
}

h4, .h4 {
    font-size: 1.25rem;
    font-weight: 600;
}

h5 {
    font-size: 1.25rem;
    line-height: 1.5;
    color: var(--gray);
}

h6 {
    font-size: 1rem;
    line-height: 1.5;
}

p {
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 1.5rem;

}

.font-sm {
    font-size: var(--font-sm);
}

.font-md {
    font-size: var(--font-md);
}

.font-lg {
    font-size: var(--font-lg);
}

.font-xl {
    font-size: var(--font-xl);
}

.font-2xl {
    font-size: var(--font-2xl);
}

.font-3xl {
    font-size: var(--font-3xl);
}

.font-4xl {
    font-size: var(--font-4xl);
}

.font-5xl {
    font-size: var(--font-5xl);
}

.font-6xl {
    font-size: var(--font-6xl);
}

.font-xxl {
    font-size: var(--font-xxl);
}

.font-weight-400 {
    font-weight: 400;
}

.font-weight-500 {
    font-weight: 500;
}

.font-weight-600 {
    font-weight: 600;
}

.font-weight-700 {
    font-weight: 700;
}

.font-weight-800 {
    font-weight: 800;
}

ul {
    padding: 0;
    list-style: none;
    margin-bottom: 0 !important;
}

ul li a {
    text-decoration: none;
}

a {
    text-decoration: none;
    transition: var(--transition);
    color: var(--primary);
    font-weight: 500;
}

a:hover {
    color: var(--theme);
}

.pb-20 {
    padding-bottom: 20px;
}

.pb-30 {
    padding-bottom: 30px;
}

.pb-50 {
    padding-bottom: 50px;
}
.pb-70 {
    padding-bottom: 70px!important;
}
.pt-20 {
    padding-top: 20px;
}

.pt-30 {
    padding-top: 30px;
}

.pt-50 {
    padding-top: 50px;
}

.pt-100 {
    padding-top: 100px;
}

.mb-10 {
    margin-bottom: 10px;
}

.mb-20 {
    margin-bottom: 20px;
}

.mb-30 {
    margin-bottom: 30px;
}

.mb-50 {
    margin-bottom: 50px;
}

.mb-80 {
    margin-bottom: 80px;
}


.mt-30 {
    margin-top: 30px;
}

.mt-50 {
    margin-top: 50px;
}

.mt-55 {
    margin-top: 55px;
}

.w-16 {
    width: 16px !important;
}

.h-16 {
    height: 16px !important;
}

.top--50 {
    top: -50px;
}

.bg-dark{
    background: var(--gray);
}

.bg-theme {
    background: var(--theme);
}

.bg-gray-200 {
    background:var(--gray-200)
}
.bg-gray-100 {
    background:var(--gray-100)
}
.text-blue {
    color: var(--blue);
}
.text-theme{
    color: var(--theme);
}
.border.border-color {
    border-color: var(--warning) !important;
}
.list-styled {
  list-style: disc;
  padding-left: 1.5rem;
}
#scrollTop {
    z-index: 99;
    cursor: pointer;
    border: none;
    position: fixed;
    bottom: 1rem;
    right: 1rem;
    width: 3rem;
    height: 3rem;
    font-size: 2rem;
    font-weight: bold;
    text-align: center;
    color: #FFFFFF;
    background: var(--theme);
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=75)";
    display: none;
    transition: 0.6s all ease-in-out;
    -moz-transition: 0.6s all ease-in-out;
    -ms-transition: 0.6s all ease-in-out;
    -webkit-transition: 0.6s all ease-in-out;
    border-radius: 50%;
}

#scrollTop i {
    display: flex;
    align-items: center;
    justify-content: center;
}

#scrollTop:hover {
    background-color: var(--black);
}
.link a{
   position: relative;  
     color: #0F1D56;
}
.link a::before{
     width: 100%;
    height: 1px;
    background: #0F1D56;
    content: '';
    position: absolute;
    left: 0;
    bottom: -4px;
    display: block;
    transition: all 1s;
}

.link:hover a::before{
     width: 0%;
}
.link.link-2 a{
    color: #B97A14;
}
.link.link-2 a::before{
    background: #B97A14;
}

.call-us{
    font-family: "Nanum Gothic", sans-serif;
    text-transform: uppercase;
    font-size:.875rem;
    line-height: 1.25;
    font-weight: 800;
}
.call-us a{
     font-size:.95rem;
}


 #loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.loader {
  position: absolute;
  top: calc(50% - 32px);
  left: calc(50% - 32px);
  width: 64px;
  height: 64px;
  border-radius: 50%;
  perspective: 800px;
}

.inner {
  position: absolute;
  box-sizing: border-box;
  width: 100%;
  height: 100%;
  border-radius: 50%;  
}

.inner.one {
  left: 0%;
  top: 0%;
  animation: rotate-one 1s linear infinite;
  border-bottom: 3px solid #0f1556;
}

.inner.two {
  right: 0%;
  top: 0%;
  animation: rotate-two 1s linear infinite;
  border-right: 3px solid #0f1556;
}

.inner.three {
  right: 0%;
  bottom: 0%;
  animation: rotate-three 1s linear infinite;
  border-top: 3px solid #0f1556;
}

@keyframes rotate-one {
  0% {
    transform: rotateX(35deg) rotateY(-45deg) rotateZ(0deg);
  }
  100% {
    transform: rotateX(35deg) rotateY(-45deg) rotateZ(360deg);
  }
}

@keyframes rotate-two {
  0% {
    transform: rotateX(50deg) rotateY(10deg) rotateZ(0deg);
  }
  100% {
    transform: rotateX(50deg) rotateY(10deg) rotateZ(360deg);
  }
}

@keyframes rotate-three {
  0% {
    transform: rotateX(35deg) rotateY(55deg) rotateZ(0deg);
  }
  100% {
    transform: rotateX(35deg) rotateY(55deg) rotateZ(360deg);
  }
}
/*--------------------------------------*/

/*Buttton
/*--------------------------------------*/
.btn {
    font-family: "Montserrat", sans-serif;
    font-weight: 600;
    padding: .5rem 1.75rem;
    border-radius:30px;
    border: none;
    display: inline-flex;
    align-items: center;
        transition: all .4s;
    font-size: 1rem;
    line-height: 1.5;
    box-shadow: 0 5px 10px rgba(0, 0, 0, .1);

}

.btn.btn-primary {
    background: var(--theme);
    color: var(--white);
    border: 1px solid var(--theme);


}

.btn.btn-primary:hover {
    background: var(--white)!important;
    color: var(--theme)!important;
 }

.btn.btn-se {
    background: var(--white);
    color: var(--theme);
}

.btn.btn-white:hover {
    background: var(--black);
    color: var(--white);
}

.btn.btn-sm {
    font-weight: 600;
    padding: .5rem 1.25rem;
    font-size: .9rem;
}

.btn.btn-secondary {
    background:var(--white);
    color: var(--secondary);
    border: 1px solid var(--secondary);
}

.btn.btn-secondary:hover {
    background: var(--secondary)!important;
    color: var(--white)!important;
}

.btn.btn-outline-white {
    border: 1px solid var(--white);
    color: var(--white);
    background: transparent;
}

.btn.btn-outline-white:hover {
    background-color: var(--white);
    color: var(--theme);
}

.btn-rounded {
    border-radius: 4rem;
    padding: .5rem .5rem .5rem 1.25rem;
    box-shadow: 0 .25rem .25rem rgba(0, 0, 0, .2);
}

.btn-rounded i {
    background-color: #fff;
    color: var(--warning);
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.btn-close {
    position: absolute;
    z-index: 1;
    opacity: 1;
    color: #fff;
    right: -1rem;
    top: -1rem;
    padding: .65rem !important;
    background: #B97A14 url(../images/close-icon.svg) no-repeat center;
    background-size: 1rem;
    border-radius: 50%;
}

.btn img {
    transition: all .4s;
}

.btn.btn-outline-primary {
    border: 1px solid var(--theme);
    color: var(--theme) !important;
}

.btn.btn-outline-primary:hover {
    background-color: var(--theme);
    color: var(--white) !important;
}

.btn-close:hover {
    opacity: .8;
}

.form-select,
.form-control {
    padding: .70rem 1rem;
    border-radius: var(--rounded-10);
    font-size: var(--font-md);
    font-weight: 500;
    box-shadow: 0 .25rem .5rem rgba(0, 0, 0, .1);
}


.sepration {
    padding-top: 80px;
}

.sepration-y {
    padding: 60px 0;
}

.z-index-9 {
    z-index: 9;
}

.text-justify {
    text-align: justify;
}

.img-fluid {
    object-fit: cover;
}

.modal-content {
    border-radius: var(--rounded-20);
    box-shadow: 0px 0px 20px 1px rgba(255, 255, 255, .3);
}

.rounded-0 {
    border-radius: 0;
}

.rounded-6 {
    border-radius: var(--rounded-6);
}

.rounded-10 {
    border-radius: var(--rounded-10);
}

.rounded-16 {
    border-radius: var(--rounded-16);
}

/*.rounded-20 {
    border-radius: var(--rounded-20);
}
*/
.rounded-50 {
    border-radius: var(--rounded-50);
}

.rounded-30 {
    border-radius: var(--rounded-30);
}


.bg-theme {
    background: var(--theme);
}

.height-auto {
    height: auto !important;
}

@media (min-width: 1400px) {
    .container {
        max-width: 1340px;
    }
}

.max-width-900 {
    max-width: 900px;
}


.icon-widget{
    background: #E4E9FF;
    width: 7rem;
    height: 7rem;
    border-radius: 50%;
    transition: all .4s;
    border:2px solid transparent;
}
.icon-widget .img-fluid{
    width: 3.5rem!important;
    height: 3.5rem;
}

.badge-outline-light{
    border: 1px solid var(--gray-400);
    color: var(--gray-400);
    font-weight: 400;
}


.ul-menu li{
    display: inline-block;
    font-size: 0.875rem;
}
.ul-menu li:after{
    content: '/';
    margin:0 .2rem 0 .5rem;
}
/*--------------------------------------*/

/*Header
/*--------------------------------------*/
header .header-top{
    font-size: .75rem;
    font-weight: 400;
    opacity: 1;
    transition: all .4s linear;
}
header .btn-wrap {
    right: 1rem;
    top: 0;
}

header .btn.btn-primary {
    background-color: var(--theme);
    font-size: 12px;
    font-weight: 400;
    color: var(--white);
    border-color: var(--theme);
}

header .btn.btn-primary:hover {
    color: var(--theme);
    border-color: var(--theme);
}

.navbar-brand img {
    height: 100%;
    width: auto;
    object-fit: contain;
    transition: all .4s linear;
}

.navbar-toggler-icon {
    width: 1.5em;
}

.sticky {
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 105;
}

.navbar-brand {
    height: 67px;
    width: auto;
    transition: all .4s linear;
    padding: 0;
}
.navbar-brand .logo{
    height: 67px;
}
.navbar-brand .scroll{
    display: none;
    opacity: 0;
}
.navbar {
    padding: .75rem 0;
    justify-content: center;
    background: transparent;
    transition: all .4s linear;

}



.navbar .nav-link {
    font-size: 1rem;
    opacity: 1;
    font-weight: 500;
    padding: 1rem 1.25rem !important;
    transition: all .5s;
    position: relative;
    color: #58595B;
    font-family: var(--fontmontserrat);
    display: ruby;

}
/*
.navbar .nav-item::before{
    content: '/';
    display: inline-block;
}*/
.navbar .nav-item:first-child::before{
    display: none;
}
.nav-item.dropdown:hover > .nav-link,
.navbar .nav-link.active,
.navbar .nav-link:hover {
    color: var(--theme);
    font-weight: 600;
}
.dropdown::before{
    content: '';
    background: url(../images/dropdown.png) no-repeat;
    background-position: center;
    position: absolute;
    width: 10px;
    height: 8px;
    display: block;
    position: absolute;
    top:.5rem;
    visibility: visible;
    right: 0;
}

.navbar-nav .nav-link.show {
    color: var(--theme);
}
.fixed-top.sticky .header-top{
    display: none;
    opacity: 0;
}

.fixed-top.sticky .navbar-brand .logo,
.fixed-top.sticky .navbar-brand{
    height: 49px;
}
.fixed-top.sticky .navbar-brand .noScroll{
    display: none;
    opacity: 0;
}
.fixed-top.sticky .navbar-brand .scroll{
    display: block;
    opacity: 1;
}

.fixed-top.sticky .navbar {
    padding: .75rem 0;
    box-shadow: 0 0 10px rgba(0, 0, 0, .1);
    background: rgba(255, 255, 255, .9);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    -ms-backdrop-filter: blur(4px);
    -moz-backdrop-filter: blur(4px);
}

.fixed-top.sticky .navbar .nav-link {
      color: var(--gray-500);
}
.nav-item.dropdown:hover > .nav-link,
.fixed-top.sticky .navbar .nav-link.active, .fixed-top.sticky .navbar .nav-link:hover{
    color: var(--theme);
}
.offcanvas {
    background:var(--theme);
    height: 100vh;
    align-items: center;
}

.dropdown-toggle::after {
    background: url(../images/arrow-down.svg) no-repeat;
    width: 10px;
    height: 8px;
    background-position: center;
    background-size: 14px;
    position: relative;
    top: 3px;
    border: 0;
    left: 2px;
    display: none;
}

.dropdown-menu {
    padding: 0rem 0rem;
    border: 0;
    font-size: .875rem;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    box-shadow: 0 0 1.25rem rgba(0, 0, 0, .1);
    border-radius:.5rem;
    animation: growDown 300ms ease-in-out forwards;
    transform-origin: top center;
    margin: 0;
    margin-left: .25rem;
    width: 14rem;
    top:36px;
}
   
.dropdown-item{
 white-space:unset;
}

.dropdown-menu li:hover:first-child .dropdown-item{
    border-top-left-radius: .35rem;
    border-top-right-radius: .35rem;
}
.dropdown-menu li:hover:last-child .dropdown-item{
    border-bottom-left-radius: .35rem;
    border-bottom-right-radius: .35rem;
}
.dropdown-menu li:last-child {
    border: 0;
}

.dropdown-menu li .dropdown-item {
    padding: .60rem 1rem;
    border-bottom: 1px solid #f2f2f2;
}
.dropdown-menu li:last-child .dropdown-item {
    border: 0;
}

.dropdown-menu li .dropdown-item:hover {
    background: var(--theme);
    color: var(--white);
}

.navbar-toggler {
    border: 0;
    padding: 0;
    margin-left: 1rem;
}
.navbar-toggler:focus {
    box-shadow: none;
    padding: 0;
}

header .dropdown:hover .dropdown-menu {
    display: block;
    margin-top: 0px;
}

.top-link li a{
    color: #878787;
}
.top-link li:last-child{
    margin-left: 1rem;
}
.top-link li:first-child::after{
      content: '/';
       margin: 0 .5rem;
}
.offcanvas-header .btn-close{
    top:1rem;
    right: 1rem;
    border-radius: .5rem;
}
/*--------------------------------------*/

/*Hero Banner Section
/*--------------------------------------*/

main{
    margin-top: 138px;
}
.hero-slider {
    margin-bottom: 2rem; 
 
}
.hero-slider .img-banner {
    height: 100%;
    object-fit: cover;
    object-position:  top right;
    min-height: 550px;
     height: 55vh;
}
.hero-slider .caption {
    position: absolute;
    z-index: 99;
    padding: 3rem;
    top: 0;
    right: 0;
    width: 550px;
    display: flex;
    align-items: center;
     background: #3e4fa3;
    background: radial-gradient(circle,rgba(62, 79, 163, .5) 0%, rgba(14, 15, 79, .8) 100%);  
    border-radius: 2rem;
    top:4rem;
    right:6rem;

}
.hero-slider .icon{
    width: 4rem!important;
    height: 4rem;
    border-radius: 50%;
    object-fit:contain;
    background-color: #fff;
    margin-right: .5rem;
    border: .25rem solid #FFF;
   
}
.hero-slider .caption .caption-widget {   
    max-width: 450px;
    margin: auto;
    color: var(--white);   
}
.hero-slider .caption h1 {
    font-size: 3.25rem;
    line-height: 1;
}
.hero-slider .caption h1 strong{
    font-size: 4.5rem;
       font-weight: 700;
}

.hero-slider .owl-item.active h1 {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  animation-name: fadeInDown;
  animation-delay: 0.3s;
}
.hero-slider .owl-item.active p {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  animation-name: fadeInUp;
  animation-delay: 0.3s;
  margin-bottom: 0.75rem;
}

.hero-slider .owl-nav {
    position: absolute;
    top: 50%;
    right: 0;
    width: 84%;
    margin: 0 8%;
    display: flex;
    justify-content: space-between;
}

.hero-slider .owl-nav button.owl-prev span,
.hero-slider .owl-nav button.owl-next span {
    display: none;
}
.hero-slider .owl-nav button.owl-prev,
.hero-slider .owl-nav button.owl-next {
    background-color: var(--theme);
    display: inline-block;
    width: 3.25rem;
    height: 3.25rem;
    line-height: 1;
    border-radius: 3rem;
    margin-left: .75rem;
    font-size: 2rem;
    transition: all .4s;
}
.hero-slider .owl-nav button.owl-prev {
    background-image: url(../images/arrow.svg);
    background-position: center;
    background-repeat: no-repeat;
}

.hero-slider .owl-nav button.owl-next {
    background-image: url(../images/arrow.svg);
    background-position: center;
    background-repeat: no-repeat;
       transform: rotate(180deg);
}

.hero-slider .owl-nav button.owl-prev:hover,
.hero-slider .owl-nav button.owl-next:hover {
    background: var(--primary);
    opacity: .7;
}

.hero-slider .owl-nav button.owl-prev:hover {
    background-image: url(../images/arrow.svg);
    background-position: center;
    background-repeat: no-repeat;
}

.hero-slider .owl-nav button.owl-next:hover {
    background-image: url(../images/arrow.svg);
    background-position: center;
    background-repeat: no-repeat;
}

.hero-slider .owl-dots {
    position: absolute;
    z-index: 99;
    width: 100%;
    bottom:34px;
    text-align: center;

}
.hero-slider .owl-dots .owl-dot {
    width: 0.625rem;
    height: 0.625rem;
    border-radius: 1rem;
    background-color: #fff;
    margin: 0 .15rem;
}

.hero-slider .owl-dots .owl-dot.active {
    background-color: var(--theme);
}

.organ-widget{
    cursor: pointer;
}
.organ-widget:hover .btn.btn.btn-primary{
    background: var(--white) !important;
    color: var(--theme) !important;
}

.organ-widget .icon-widget .img-fluid{
    transition: all .4s;
}
.organ-widget:hover .icon-widget .img-fluid{
    width: 3rem!important;
    height: 3rem;
}
.service-block{
    cursor: pointer;
}
.service-block .img-widget{
    height: 14rem;
    border-radius: 2rem;
    overflow: hidden;
}
.service-block .img-widget .img-fluid {
    transition: all .4s;
    height: 14rem;
}
.service-block:hover .img-widget .img-fluid{
    transform: scale(1.2);
}
.service-block:hover .btn.btn-secondary{
        background: transparent;
    color: var(--secondary);
}


.hero-banner .caption .caption-widget h1 {
    font-size: 3rem;
}
.client-slider .life-style-widget{
    max-width: 150px;
    margin: auto;
    text-align: center;
    cursor: pointer;
    padding: 1rem 1rem 0;
}
.client-slider .life-style-widget .lifestyle-icon{
    width: 5rem;
    height: 5rem;
    border-radius: var(--rounded-50);
    margin:0 auto 1rem;
    background: #fff;
}
.client-slider .life-style-widget .lifestyle-icon img{
    width: 42px;
    height: 42px;
}
.client-slider .life-style-widget h5{
    font-size: 1rem;
}
.client-slider .life-style-widget .lifestyle-icon img,
.client-slider .life-style-widget h5,
.client-slider .life-style-widget .lifestyle-icon{
    transition: all .4s;
}

.client-slider .life-style-widget:hover .lifestyle-icon{
    box-shadow: 0 0 20px rgba(0, 0, 0, .2);
}
.client-slider .life-style-widget:hover .lifestyle-icon img{
    opacity: .5;
}
.client-slider .life-style-widget:hover h5{
    color: #B97A14;
}
/*
.about-section .about-info,
.about-section .right-img,
.about-section{
    height: 45vh;
}
.about-section .right-img{
    position: absolute;
    top:0;
    right: 0;
    width: 40%;
    border-top-left-radius: 5rem;
    border-bottom-left-radius: 5rem;
    object-position: top;
}
    */
  .about-section .right-img{
    width: 400px;
    height: 400px;
    border-radius: 50%;
    margin: auto;
    display: block;
   
    position: relative;
    overflow: hidden;
      border: 2px dotted #ccc;
      padding: 1.5rem;
}
  .about-section .right-img img{
    width: 100%;
    height: 100%;
     border-radius: 50%;
      box-shadow: 0 3px 17px rgba(0, 0, 0, .14);
  }



.discount-banner{
    height: 40vh;
    background-size: cover!important;
    cursor: pointer;
    transition: all .4s;
}
.discount-banner .caption{
    position: absolute;
     background: #ffffff;
    background: linear-gradient(90deg,rgba(255, 255, 255, 0) 0%, rgba(15, 29, 96, 1) 83%);
    width: 100%;
    height: 100%;
    text-align: right;
}
.discount-banner .caption .caption-block{
    max-width: 350px;
    text-align: left;
}
.discount-banner .caption h1{
    font-size: 5.625rem;
    line-height: 1;
}
.discount-banner .caption h1 span{
    font-size: 2rem;
}

.discount-banner.discount-banner-2 .caption{
       background: #ffffff;
    background: linear-gradient(259deg,rgba(255, 255, 255, 0) 0%, rgba(185, 120, 20, 1) 83%);
} 
.discount-banner:hover{
    background-position: -20px!important;
}  
.steps{
    display: flex;
    justify-content: space-between;
    position: relative;
}
.steps::before{
    content: '';
    height: 2px;
    background: #fff;
    width: calc(100% - 200px);
    display: block;
    top:2.75rem;
    left: 10%;
    position: absolute;
    border:1px dotted #ccc;
}
.steps .icon-widget{
    width: 5.5rem;
    height: 5.5rem;
    background: #fff;
    border: 2px dotted #ccc;
    margin: auto;
    position: relative;
    z-index: 1;
}
.steps .col{
    max-width: 230px;
    text-align: center;
}
footer{
    background: #0F1D56;
}
footer,
footer p{
     font-size: .875rem;
}
footer,
footer h4{
    color: #fff;
}
footer li{
    line-height: 2;
}
footer a:hover{
    color: var(--secondary);
}
.footer-last{
    background: #5A68A1;
}

.owl-dots{
    text-align: center;
    margin-top: 40px;
}
.owl-carousel button.owl-dot{
    width: .75rem;
    height:.75rem;
    background: var(--gray-500);
    margin: 0 .25rem;
    border-radius: 5rem;

}
.owl-carousel button.active{
    background: var(--secondary);
}
.owl-carousel .owl-nav button.owl-prev,
.owl-carousel .owl-nav button.owl-next{
    top:50%;
    position: absolute;
    margin-top: -40px;
}
.owl-carousel .owl-nav button.owl-prev{
    left: -70px;
}
.owl-carousel .owl-nav button.owl-next{
    right: -70px;
}
.owl-carousel .owl-nav button.owl-next, .owl-carousel .owl-nav button.owl-prev{
    font-size: 40px;
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    background-color: #B97A14;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}
.owl-carousel .owl-nav span{
    height: 20px;
    line-height: .3;
}


.inner-banner.hero-slider .img-banner{
       min-height: 400px;
    height: 40vh;
}
.inner-banner.hero-slider .caption{
    border-bottom-left-radius: 3rem;
    border-top-left-radius: 3rem;
}

.book-left-img{
    background: url(../images/book-img.jpg) no-repeat; background-size: cover; height: 620px;
    background-position: 0%;
    border-top-left-radius: var(--rounded-20);
    border-bottom-left-radius: var(--rounded-20);
}

.team-block{
        box-shadow: 0 3px 17px rgba(0, 0, 0, .14);
        border-radius: var(--rounded-30);
        margin: 1rem;
        background: var(--white);
}
.team-block .img-fluid{
    object-position: top;
}
.team-block h4{
    font-size: 1.25rem;
    padding-right: 2rem;
      overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  height: 50px;
}
.badge-outline-success{
    border-color: #0d8d06;
    color:#0d8d06;
}
.tab-panel{   
    z-index: 9;
    left: 0;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}
.tab-panel ul{
  position: relative;  
    top: -40px;
    display: flex;
    align-items: center;
    justify-content: center;
    
}
.tab-panel li{
    background: #fff;
    border-right: 1px solid #f1f1f1;
    padding:1.35rem 4rem 1.35rem 4rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    box-shadow: 0 3px 10px rgba(0, 0, 0, .1);
    cursor: pointer;
}
.tab-panel li i{
    font-size: 1.75rem;
}
.tab-panel li:hover,
.tab-panel li.active{
    background:#3e4fa3;
    color: #fff;
    border-color:#495bb8 ;
}
.tab-panel li:hover path,
.tab-panel li.active path{
     stroke: #fff;
}
.tab-panel li:nth-child(4):hover path,
.tab-panel li:nth-child(2):hover path{
     stroke: #fff;
     fill:transparent;
}


.tab-panel li:first-child{
    border-bottom-left-radius: .75rem;
    border-top-left-radius: .75rem;
}
.tab-panel li:last-child{
    border-bottom-right-radius:.75rem;
    border-top-right-radius:.75rem;
    border-right: 0;
}
.about-text-info p{
    overflow: hidden;   
    margin-bottom: 1rem;
     display: -webkit-box;
   -webkit-line-clamp: 6; 
           line-clamp: 6; 
   -webkit-box-orient: vertical;
}
.packages-widget{
    display: flex;
}
.packages-widget .packages-list{
    min-width: 300px;
    position: relative;

}

.packages-widget .packages-list li a{
    font-size: 1rem;
    padding:.875rem 1.5rem;
    color: #878787;
    display: block;
    transition: all .4s;
    border-bottom: 1px solid #e9e9e9;
}
.packages-widget .packages-list li a:hover{
    color: var(--primary);
}
.packages-widget .packages-list li:last-child a{
    border-bottom: 0;
}
.packages-widget .packages-panel{
    width: 100%;
    margin-left: 2rem;
}
.social-links{
    display: flex;
}
.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    margin-right: 10px;
    color: white;
    transition: all 0.3s;
}
.social-links a:hover {
    background: var(--secondary);
    color: var(--white);
    transform: translateY(-3px);
}


.dropdown-menu {
  -webkit-transition: all .5s, background, 2s .5s linear;
  transition: all .5s, background 2s .5s linear;
  overflow: hidden;
}
.dropdown:hover .dropdown-menu {
  overflow: visible; 
}



.dropdown-menu {display: block; visibility: hidden;opacity:0;transform: translateY(50px);transition:.5s ease all;}
.dropdown:hover .dropdown-menu{display: block;visibility: visible;opacity:1;transform: translateY(0px);transition:.5s ease all;}





.tab-panel.tab-panel-inner li:nth-child(2):hover path{
       fill: #fff;
}
.tab-panel.tab-panel-inner li:nth-child(3):hover path{
       fill: #fff!important;
}
.tab-panel.tab-panel-inner li.active{
    fill: #fff;
}
.object-center{
    object-position: center!important;
}
.side-img{
    border-radius: var(--rounded-30);
    height: 400px;
}
.process-block{
    padding: 4rem 2rem 1rem;
    min-height: 280px;
}
.process-no{
    background: var(--theme);
    color:var(--white);
    width: 60px;
    height: 60px;
    border-radius: var(--rounded-50);
    display: block;
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    position: absolute;
    left: 50%;
    margin-left: -30px;
    top:-30px;
    display: flex;
    align-items: center;
    justify-content: center;
}



.connect-bg{
    background: url(../images/banner2.png) no-repeat;
    height: 300px;
    background-position: center;
    background-size: cover;
}
.acc-section:before,
.connect-bg::before{
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, .5);
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    z-index: 1;
    content: '';
}
.connect-bg > div{
    position: relative;
    z-index: 2;
}
.max-width-300{
    max-width: 300px;
}
.about-section.acc-section .right-img{
    width: 200px;
    height: 200px;
    padding: .75rem;
}
.acc-section:before{
    left: 0;
    width: 33%;
    background: #fff;
}
.acc-section .container-fluid{
    z-index: 2;
    position: relative;
}

.landing-banner{
    background:url('../images/about-banner.png');
    height: 200px;;
    background-color: var(--theme);
    display: flex;
    align-items: center;
    
}
.landing-banner .caption{
    position: absolute;
    height: 100%;
    width: 100%;
    left: 0;
    top:0;
    background: rgba(15, 21, 86, .9)
}
.max-width-100{
    max-width: 100px;
}
.home-care-section .right-img{
    width: 100px;
    height: 100px;
    padding: .25rem;
    transition: all .4s linear;
}
.home-care-section .col{
    cursor: pointer;
    min-width: 14%;
    max-width: 14%;
}
.home-care-section .col span{
    font-weight: 600;
}
.home-care-section .col:hover span{
    color: var(--theme);
}
.home-care-section .col:hover .right-img{
    filter: grayscale(1);
}
.call-back{
    background-color: #0d8d06;
    color: #fff;
    min-width: 3rem;
    height: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    border-radius: 50%;
}
.modal-fullscreen .btn-close{
    top: 0rem;
    right: 0rem;
    position: relative;
}
.service-request-img{
    height: 300px;
    object-fit: cover;
}
h6{
    margin-bottom: .25rem;
}
.health-packages .right-img{
    display: flex;
    align-items: center;
    justify-content: center;
    padding: .25rem;
}
.health-packages .right-img img{
    width: 42px;
    height: 42px;
    box-shadow: none;
    border-radius: 0;
}
.contentBox{
    display: none;
}
.input-group-text{
        box-shadow: 0 .25rem .5rem rgba(0, 0, 0, .1);
}
.avatar{
    min-width: 4rem;
    height: 4rem;
    border-radius: 50%;
}
.dr-block h4{
    height: auto;
}
.dr-block p{
    font-size: 1rem;
}
.branches-section .team-block h4{
    height: auto;
}
.accordion-button{
    font-weight: 600;
}
.accordion-button:not(.collapsed){
    background-color: var(--theme);
    color: var(--white);
}
.font-lg-md{
    font-size:.875rem;
}
.gallery-section .team-block .img-widget .img-fluid{
    object-position: 50% 30%;
 }
/*--------------------------------------*/

/*Responsive
/*--------------------------------------*/
@media all and (max-width: 1680px) {
    .about-section .right-img {
    width: 300px;
    height: 300px;
    }
     .navbar .nav-link {
        padding: .35rem 1rem !important;
    }
    .about-section.home-care-section .right-img{
    width: 100px;
    height: 100px;
    padding: .25rem;
    transition: all .4s linear;
}
}
@media all and (max-width: 1480px) {
    .navbar-brand .logo,
    .navbar-brand {
        height: 54px;
    }
    .navbar-brand {
        margin-top: 0px;
    }
    .navbar .nav-link {
        padding: .35rem .65rem !important;
    }
    .call-us {
        font-size: .775rem;
    }
    .call-us a {
        font-size: .83rem;
    }
    main {
        margin-top: 120px;
    }
     .hero-slider .caption {
        width: 45%;
    }
    .hero-slider .caption h1 strong {
        font-size: 4.6rem;
    }
    .hero-slider .caption .caption-widget {
        max-width: 390px;
    }
    .owl-carousel .owl-nav button.owl-prev{
        left: -20px;
    }
    .owl-carousel .owl-nav button.owl-next{
        right: -20px;
    }
    .process-block{
        margin-bottom: 3rem;
    }
}
@media all and (max-width: 1399px){
    .navbar .nav-item::before{
        display: none;
    }
    .navbar .nav-item{
        line-height: 2;
        margin-bottom: 0rem;
    }
    .navbar .nav-link{
        color: #8196f5;      
        padding: .5rem 1rem!important;
        border-bottom: 1px solid #1d2d77;
        display: block;
    }
    .nav-item.dropdown:hover > .nav-link, .navbar .nav-link.active, .navbar .nav-link:hover {
        color: var(--secondary);
        font-weight: 600;
        background: transparent;
    }
   
    .navbar-nav .nav-link.show {
         color: var(--white);
    }
    .dropdown-menu.show{
       display: block;
      
    }
    .fixed-top.sticky .navbar .nav-link {
        color: var(--white);
    }
    .offcanvas {       
        box-shadow: 80px 0 100px rgb(13, 11, 168, .5);
    }
    .offcanvas-body{
        min-width: 100%;
        padding: 0;
        padding-top: 2rem;
    }
     .dropdown-menu {display: none; visibility: visible;opacity:1;transform: translateY(0px);transition:inherit;   border-radius: 0;
        width: 100%;
        margin: 0;}
   .dropdown:hover .dropdown-menu{display: block;visibility: visible;opacity:1;transform: translateY(0px);transition:inherit;}
}
@media all and (max-width: 1280px){
    .hero-slider .img-banner {
        height: 50vh;
    }    
}
@media all and (max-width: 1199px) {  
    .offcanvas {
        align-items: start;
    }
    .hero-slider .img-banner{
        min-height: 450px;
    } 
    .hero-slider .caption h1 strong {
        font-size: 4.25rem;
    }
 .hero-slider .caption {
        width:50%;
    }
  
    .tab-panel li{
        padding: 1rem 2rem;
        font-size: .875rem;
        line-height: 1.25;
    }
    .tab-panel li svg{
        width: 2rem;
    }
    .about-section .about-info {
        padding: 3rem 0;
        min-height: 400px;
    }
  .acc-section:before{
    display: none;
  }
      .about-section .right-img {
        width: 250px;
        height: 250px;
        padding: 1.25rem;
    }
}

@media all and (max-width: 991px) {
        .hero-slider .img-banner {
        min-height: 400px;
    }
    h2 {
        font-size: 2rem;
    }
    .sepration-y{
        padding: 50px 0;
    }
    .hero-slider .caption {
        width:45%;
        top: 2rem;
        right: 2rem;
       padding: 2rem 3rem;
    }
    .hero-slider .caption .caption-widget {
        max-width: 100%
    }
    .hero-slider .img-banner {
        height: 45vh;
    } 
    .hero-slider.inner-banner .caption-widget h1,
    .hero-banner .caption .caption-widget h1{
         font-size: 2.25rem;
    }
    .hero-slider.inner-banner .caption-widget h1 strong,
    .hero-banner .caption .caption-widget h1 strong {
        font-size: 2.75rem;
    }
  
    .hero-slider .caption p{
        margin-bottom: 1rem;
    }
    .hero-slider .caption h4{
        font-size: 1.15rem;
    }
  
    .tab-panel li{
        padding: .75rem 1.25rem;
    }
    .about-section .about-info{
        height: auto;
    }   
     .about-section .right-img{
        margin:1rem auto 1.5rem;
    }
    .home-care-section .col{    
        min-width: 20%;
    }
    .home-care-section .right-img{
            width:90px;
            height: 90px;
            padding: .25rem;
            transition: all .4s linear;
        }
    .health-packages .right-img img {
    width: 42px;
    height: 42px;
    }
    .about-section .right-img {
        width: 200px;
        height: 200px;
        padding: 1rem;
    }
  .landing-banner { 
  
    height: 110px;
  }
  .font-lg-md{
    font-size:.75rem;
}
}

@media all and (max-width: 767px) {
    .hero-slider .img-banner {
        height: 35vh;
    }
 
    .hero-slider .caption {
        width:55%;
        padding: 2rem;
    }
     .hero-slider .caption h1{
         font-size: 2rem;
    }
    .hero-slider .caption h1 strong {
        font-size: 2.5rem;
    }
  
        h2 {
        font-size: 1.75rem;
    }
    .icon-widget {
        width: 5rem;
        height: 5rem;
    }
    .icon-widget .img-fluid {
        width: 3rem !important;
        height: 3rem;
    }
    .btn { 
        padding: .35rem 1.25rem;
        font-size: .875rem;
    }
    .service-block .img-widget,
    .service-block .img-widget .img-fluid {
        height: 11rem;
    }
    .about-section {
       height: auto;
       padding: 4rem 0 3rem;
    }
   
      .about-section .about-info{
        min-height: auto;
        padding: 2rem 0 0rem;
    }
    .about-section .about-info h2 {
        font-size: 2.15rem;
    }
    .client-slider .life-style-widget .lifestyle-icon {
        width: 4rem;
        height: 4rem;
    }
    .client-slider .life-style-widget .lifestyle-icon img {
        width: 36px;
        height: 36px;
    }
       main {
        margin-top: 108px;
    }
    .font-2xl {
        font-size: var(--font-xl);
    }
    .steps h5{
        font-size: 1rem;
    }
    .steps::before {
        width: calc(100% - 140px);
    }
    .steps .col {
    max-width: 120px;
    text-align: center;
    }
    .sepration-y {
        padding: 30px 0;
    }
    .inner-banner.hero-slider .img-banner {
        min-height: 200px;
        height: 30vh;
    }

    

    .packages .service-block .img-widget, 
    .packages .service-block .img-widget .img-fluid {
        height: 9rem;
    }
    .packages .service-block h4{
        font-size: 1rem;
        min-height: 40px;
        overflow: hidden;
        text-overflow: ellipsis;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
    }
    .packages .service-block p{
        font-size: .875rem;
         min-height: 40px;
        overflow: hidden;
        text-overflow: ellipsis;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
    }
    .btn-close {
        right: .5rem;
        top: .5rem;
    }
     .tab-panel{
        padding: 0rem 0;
        width: calc(100%);
        max-width: calc(100%);
        left: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        top: 0;
        display: block;
        overflow: auto;
    }
    .tab-panel ul{
        position: inherit;
        margin-left: 0;
        left: 0;
        top: 0;
                display: inline-flex;
        width: 100%;
        min-width: fit-content;
    }
    

    .tab-panel ul li{
        min-width: 250px;
        border-bottom: 1px solid #e2e2e2;
    }
  
      .tab-panel li:first-child,
    .tab-panel li:last-child{
        border-radius: 0;
    }
    .team-block .img-widget, .team-block .img-widget .img-fluid {
        height: 15rem;
    }

     .inner-banner.hero-slider .caption{
        border-radius: 0;
        height: 100%;
        right: 0;
        top: 0;
        width: 100%;
        text-align: center;
     }

       .home-care-section .col{
        font-size: .875rem;
    }
   
  
}

@media all and (max-width: 567px) {
    h2 {
        font-size: 1.55rem;
    }
    h4, .h4 {
    font-size: 1.15rem;
    font-weight: 600;
}
    .link a {
        font-size: .875rem;
    }
    .hero-slider .img-banner {
        height: 25vh;
        min-height: 300px;
    }
   
    .hero-slider .owl-item p{
        font-size: .875rem;
        margin-bottom: .5rem;
        line-height: 1.15;
    }
    .hero-slider .caption {
        width:70%;
        border-bottom-left-radius: 2rem;
        border-top-left-radius: 2rem;
        right:1rem
        }
   .hero-banner .caption .caption-widget h1{
         font-size: 1.5rem;
         margin-bottom: .5rem;
    }
    .hero-banner .caption .caption-widget h1 strong {
        font-size: 1.75rem;
    }
    .hero-slider .caption h4{
        font-size: .875rem;
        margin-bottom: 0;
    }
    .about-section .about-info h2 {
        font-size: 1.5rem;
    }
       .steps::before {
        top:2rem;
        width: calc(100% - 95px);
    }
    .steps .icon-widget {
        width: 4rem;
        height: 4rem;
    }
    .steps .icon-widget img{
        width: 2rem;
        min-width: 2rem;
        height: 2rem;
    }
    .steps h5 {
        font-size: .875rem;
        padding: 0 .25rem;
    }
    .organ-slider .font-xl{
        font-size: var(--font-lg);
    }
    .discount-banner {
        height: 30vh;
    }
    .discount-banner .caption h1 {
        font-size: 4rem;
    }
    .discount-banner .caption h1 span {
        font-size: 1.5rem;
    }
    .discount-banner .caption .caption-block {
        max-width: 250px;   
    }
    .btn {
        padding: .35rem 1rem;
    }
    .team-block{
        margin: 0rem .25rem 1.25rem;
    }
  .tab-panel ul li{
    min-width: 190px;
  }
    .home-care-section .right-img {
    width: 80px;
    height: 80px;
    }
     .health-packages .right-img img {
    width: 32px;
    height: 32px;
    }
        .home-care-section .col {
        min-width: 33.33%;
    }
    .gallery-section .team-block .img-widget,    
    .gallery-section .team-block .img-widget .img-fluid {
        height: 10rem;
    }
}





