/* Colors */
:root {
  --color-default: #212529;
  --color-primary: #ce1212;
  --color-secondary: #37373F;
  --color-1: #FFF;
  --color-2: #FCFCFC;
  --color-3: #F57F1F;
  --color-4: #000;
  --color-5: #EF9256;
  --color-6: #F5F3EC;
  --color-7: #1C1C1C;
  --color-8: #FEDDC8;
  --color-9: #F8F6F4;
  --color-10: #F9995B;  
  --color-11: #201F1E;
  --color-12: #F0A500;
}

/* Smooth scroll behavior */
:root {
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  color: var(--color-default);
  font-family: 'Josefin Sans', sans-serif;
}
h1, h2, h3, h4, h5, h6{
  font-family: 'League Spartan', sans-serif;
}
a {
  color: var(--color-primary);
  text-decoration: none;
}


/*--------------------------------------------------------------
# Sections & Section Header
--------------------------------------------------------------*/
section {
  overflow: hidden;
  padding: 80px 0;
}

.section-bg {
  background-color: #eee;
}

.section-header {
  text-align: center;
  padding-bottom: 30px;
}

.section-header h2 {
  font-size: 13px;
  letter-spacing: 1px;
  font-weight: 400;
  margin: 0;
  padding: 0;
  color: #7f7f90;
  text-transform: uppercase;
  font-family: var(--font-default);
}

.section-header p {
  margin: 0;
  font-size: 48px;
  font-weight: 400;
  font-family: var(--font-primary);
}

.section-header p span {
  color: var(--color-primary);
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  padding: 15px 0;
  background: rgba(55, 55, 63, 0.05);
  margin-top: 90px;
}

@media (max-width: 575px) {
  .breadcrumbs {
    margin-top: 70px;
  }
}

.breadcrumbs h2 {
  font-size: 24px;
  font-weight: 400;
  margin: 0;
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 14px;
}

.breadcrumbs ol li+li {
  padding-left: 10px;
}

.breadcrumbs ol li+li::before {
  display: inline-block;
  padding-right: 10px;
  color: #676775;
  content: "/";
}

@media (max-width: 992px) {
  .breadcrumbs .d-flex {
    display: block !important;
  }

  .breadcrumbs h2 {
    margin-bottom: 10px;
  }

  .breadcrumbs ol {
    display: block;
  }

  .breadcrumbs ol li {
    display: inline-block;
  }
}

/*--------------------------------------------------------------
# Scroll top button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
  background: var(--color-primary);
  width: 44px;
  height: 44px;
  border-radius: 50px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: #fff;
  line-height: 0;
}

.scroll-top:hover {
  cursor: pointer;
  background: #ec2727;
  color: #fff;
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  overflow: hidden;
  background: #fff;
  transition: all 0.6s ease-out;
  width: 100%;
  height: 100vh;
}

#preloader:before,
#preloader:after {
  content: "";
  position: absolute;
  border: 4px solid var(--color-primary);
  border-radius: 50%;
  -webkit-animation: animate-preloader 2s cubic-bezier(0, 0.2, 0.8, 1) infinite;
  animation: animate-preloader 2s cubic-bezier(0, 0.2, 0.8, 1) infinite;
}

#preloader:after {
  -webkit-animation-delay: -0.5s;
  animation-delay: -0.5s;
}

@-webkit-keyframes animate-preloader {
  0% {
    width: 10px;
    height: 10px;
    top: calc(50% - 5px);
    left: calc(50% - 5px);
    opacity: 1;
  }

  100% {
    width: 72px;
    height: 72px;
    top: calc(50% - 36px);
    left: calc(50% - 36px);
    opacity: 0;
  }
}

@keyframes animate-preloader {
  0% {
    width: 10px;
    height: 10px;
    top: calc(50% - 5px);
    left: calc(50% - 5px);
    opacity: 1;
  }

  100% {
    width: 72px;
    height: 72px;
    top: calc(50% - 36px);
    left: calc(50% - 36px);
    opacity: 0;
  }
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
.header {
  background: #fff;
  transition: all 0.5s;
  z-index: 997;
  height: 55px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.226);
}

@media (max-width: 575px) {
  .header {
    height: 70px;
  }
}

.header.sticked {
  border-color: #fff;
  border-color: #eee;
}

.header .logo img {
  max-height: 40px;
  margin-right: 6px;
}

.header .logo p {
  font-size: 14px;
  font-weight: 500;
  color: #000;
  margin: 0;
}

.header .logo h1 span {
  color: var(--color-primary);
}

.header .btn-book-a-table,
.header .btn-book-a-table:focus {
  font-size: 14px;
  color: #fff;
  background: var(--color-primary);
  padding: 8px 20px;
  margin-left: 30px;
  border-radius: 50px;
  transition: 0.3s;
}

.header .btn-book-a-table:hover,
.header .btn-book-a-table:focus:hover {
  color: #fff;
  background: rgba(206, 18, 18, 0.8);
}

section {
  scroll-margin-top: 90px;
}

/*--------------------------------------------------------------
# Desktop Navigation
--------------------------------------------------------------*/
@media (min-width: 1280px) {
  .navbar {
    padding: 0;
  }

  .navbar ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }

  .navbar li {
    position: relative;
  }

  .navbar>ul>li {
    white-space: nowrap;
    padding: 25px 20px;
  }

  .navbar a,
  .navbar a:focus {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 3px;
    font-size: 12px;
    font-weight: 600;
    color: var(--color-3);
    white-space: nowrap;
    transition: 0.3s;
    position: relative;
  }

  .navbar a i,
  .navbar a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
  }

  .navbar>ul>li>a:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 2px;
    bottom: -6px;
    left: 0;
    background-color: var(--color-primary);
    visibility: hidden;
    width: 0px;
    transition: all 0.3s ease-in-out 0s;
  }

  .navbar a:hover:before,
  .navbar li:hover>a:before,
  .navbar .active:before {
    visibility: visible;
    width: 100%;
  }

  .navbar a:hover,
  .navbar .active,
  .navbar .active:focus,
  .navbar li:hover>a {
    color: #000;
  }

  .navbar .dropdown ul {
    display: block;
    position: absolute;
    left: 28px;
    top: calc(100% + 30px);
    margin: 0;
    padding: 10px 0;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    background: #fff;
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
    transition: 0.3s;
    border-radius: 4px;
  }

  .navbar .dropdown ul li {
    min-width: 200px;
  }

  .navbar .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
    font-weight: 600;
  }

  .navbar .dropdown ul a i {
    font-size: 12px;
  }

  .navbar .dropdown ul a:hover,
  .navbar .dropdown ul .active:hover,
  .navbar .dropdown ul li:hover>a {
    color: var(--color-primary);
  }

  .navbar .dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }

  .navbar .dropdown .dropdown ul {
    top: 0;
    left: calc(100% - 30px);
    visibility: hidden;
  }

  .navbar .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    left: 100%;
    visibility: visible;
  }
}

@media (min-width: 1280px) and (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }

  .navbar .dropdown .dropdown:hover>ul {
    left: -100%;
  }
}

@media (min-width: 1280px) {

  .mobile-nav-show,
  .mobile-nav-hide {
    display: none;
  }
}

/*--------------------------------------------------------------
# Mobile Navigation
--------------------------------------------------------------*/
@media (max-width: 1279px) {
  .navbar {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 400px;
    border-left: 1px solid #666;
    bottom: 0;
    transition: 0.3s;
    z-index: 9997;
  }

  .navbar ul {
    position: absolute;
    inset: 0;
    padding: 50px 0 10px 0;
    margin: 0;
    background: rgba(255, 255, 255, 0.9);
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
  }

  .navbar a,
  .navbar a:focus {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 20px;
    font-family: var(--font-secondary);
    border-bottom: 2px solid rgba(255, 255, 255, 0.8);
    font-size: 16px;
    font-weight: 600;
    color: #7f7f90;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navbar a i,
  .navbar a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
  }

  .navbar a:hover,
  .navbar li:hover>a {
    color: #000;
  }

  .navbar .active,
  .navbar .active:focus {
    color: #000;
    border-color: var(--color-primary);
  }

  .navbar .dropdown ul,
  .navbar .dropdown .dropdown ul {
    position: static;
    display: none;
    padding: 10px 0;
    margin: 10px 20px;
    transition: all 0.5s ease-in-out;
    border: 1px solid #eee;
  }

  .navbar .dropdown>.dropdown-active,
  .navbar .dropdown .dropdown>.dropdown-active {
    display: block;
  }

  .mobile-nav-show {
    color: var(--color-secondary);
    font-size: 28px;
    cursor: pointer;
    line-height: 0;
    transition: 0.5s;
    z-index: 9999;
    margin: 0 10px 0 20px;
  }

  .mobile-nav-hide {
    color: var(--color-secondary);
    font-size: 32px;
    cursor: pointer;
    line-height: 0;
    transition: 0.5s;
    position: fixed;
    right: 20px;
    top: 20px;
    z-index: 9999;
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .navbar {
    right: 0;
  }

  .mobile-nav-active .navbar:before {
    content: "";
    position: fixed;
    inset: 0;
    background: rgba(255, 255, 255, 0.8);
    z-index: 9996;
  }
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about {
  background: url("../../img/background/about.webp");
  background-size: cover;
}
.about .section-headline{
  display: flex;
  justify-content: center;
}
.about .section-headline h1{
  color: var(--color-4);
  text-transform: uppercase;
  padding: 10px 20px;
  font-weight: 700;
  text-align: center;
  width: 350px;
  font-size: 40px;
  letter-spacing: 0.065em;
  border-bottom: 1px solid var(--color-4);
}
.about .swiper {
  width: 100%;
  height: 100%;
}
.about .swiper-slide {
  text-align: center;
  font-size: 18px;
  display: flex;
  justify-content: center;
  flex-direction: row;
  padding: 20px 0 50px;
  justify-content: center;
  /* Center slide text vertically */
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.about .swiper-slide .card01{
  background: var(--color-1);
  border: #dd7837;
  border-style: solid;
  border-width: 1px;
  min-height: 465px;
  border-radius: 20px 0 20px 0;
  width: 451px;
}
.about .swiper-slide img {
  display: block;
  padding: 40px 60px;
  object-fit: cover;
}
.about .swiper-slide .card01 p{
  color: var(--color-4);
  padding: 0 20px;
  font-size: 18px;
  text-align: justify;
}
.about .swiper-slide .card01 p span{
  color: var(--color-3);
  font-weight: 600;
}
.about .btn-insurance{
  display: flex;
  justify-content: center;
}
.about .btn-insurance a{
  background: var(--color-3);
  padding: 10px 20px;
  font-weight: 700;
  font-size: 20px;
  text-align: center;
  text-transform: uppercase;
  color: var(--color-1);
  border-radius: 6px;
  transition: 0.5s;
}
.about .btn-insurance a:hover{
  box-shadow: 0px 1px 20px rgba(240, 165, 0, 0.55);
}
/*--------------------------------------------------------------
# Message Founder Section
--------------------------------------------------------------*/
.ms-founder{
  background: url(../../img/background/mf.webp);
  background-size: cover;
}
.ms-founder .section-headline h1{
  text-align: center;
  color: var(--color-1);
  font-size: 40px;
  text-transform: uppercase;
  letter-spacing: 0.065em;
  font-weight: 700;
  padding-bottom: 40px;
}
.ms-founder .section-content{
  padding-top: 20px;
  border-top: 1px solid var(--color-1);
  border-bottom: 1px solid var(--color-1);
  margin: 0 60px;
  gap: 20px;
}
.ms-founder .section-content .img-founder{
  text-align: left;
}
@media (max-width: 992px) {
  .ms-founder .section-content .img-founder{
    text-align: center;
    margin-bottom: 1.5rem!important;
  }
}
.ms-founder .section-content .message h2{
  padding: 10px 0;
  color: var(--color-1);
  font-size: 20px;
  font-weight: 700;
}
.ms-founder .section-content .message p{
  font-size: 16px;
  color: var(--color-1);
  text-align : justify;
}
.ms-founder .section-content .mark {
  background: rgba(78, 69, 60, 0.12);
  border-left: 10px solid #4D443B;
  color: var(--color-1);
  padding: 20px 10px;
  margin-bottom: 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
}
@media (max-width: 768px) {
  .ms-founder .section-content .mark {
    justify-content: center;
  }
}
.ms-founder .section-content .mark .identiti h3{
  font-size: 18px;
  color: var(--color-1);
  font-weight: 500;
}
.ms-founder .section-content .mark .marking h2{
  font-size: 40px;
  font-weight: 400;
  padding-left: 50px;
  font-family: 'Ms Madi', cursive;
}
@media (max-width: 575px) {
  .ms-founder .section-content .mark .identiti h3{
    padding-left: 0px;
  }
  .ms-founder .section-content .mark .marking h2{
    padding-left: 20px;
  }
}
/*--------------------------------------------------------------
# Odac News Section
--------------------------------------------------------------*/
.news {
  background: var(--color-6);
}
.news .section-headline, .news .explanation{
  display: flex;
  justify-content: center;
}
.news .section-headline h1{
  color: var(--color-4);
  text-align: center;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.065em;
  font-weight: 700;
  padding: 10px 20px;
  border-bottom: 1px solid var(--color-4);
}
.news .explanation p{
  padding-top: 20px;
  color: var(--color-4);
  font-size: 16px;
  width: 852px;
  text-align: center;
  margin-bottom: 20px;
}
.news .articles{
  border: 1px solid var(--color-4);
  border-radius: 36px;
  padding: 20px 30px;
  z-index: 0;
}
.news .articles .article{
  padding: 30px 22px;
}
.news .articles .article img{
  border-radius: 16px;
}
.news .articles .article h1{
  padding-top: 20px;
  font-size: 16px;
  font-weight: 700;
  color: var(--color-4);
}
.news .articles .article p{
  color: var(--color-11);
  font-size: 14px;
}
.news .articles .article span{
  background: var(--color-11);
  padding: 0 6px;
  margin: 0 5px;
  border-radius: 50%;
}
.news .btn-see-more{
  display: flex;
  justify-content: center;
}
.news .btn-see-more a{
  transform: translateY(-20px);
  background: var(--color-3);
  text-align: center;
  padding: 10px 20px;
  color: var(--color-1);
  font-size: 18px;
  font-weight: 700;
  border-radius: 7px;
  z-index: 1;
  transition: 0.8s;
}
.news .articles .btn-see-more:hover{
  box-shadow: rgba(234, 112, 31, 0.534);
}
.not-found.image img{
    width: 350px;
}
.not-found.text h1, .not-found.text h3{
    color: #4b0a05;
}
.not-found.text h1{
    padding-top: 30px;
    font-size: 40px;
    font-weight: 700;
}
.not-found.text button, .not-found.text a{
    border: 0;
    padding: 10px 15px;
    border-radius: 7px;
    background: #EF9256;
    color: #000;
    font-weight: 600;
    margin-top: 15px;
    transition: .3s;
}
.not-found.text button:hover, .not-found.text a:hover{
    background: #000;
    color: #fff;
}
@media (max-width: 520px){
    .not-found.text h1, .not-found.text h3{
        text-align: center;
    }
}
/*--------------------------------------------------------------
# ODAC Expert Section
--------------------------------------------------------------*/
.odac-expert{
  background: var(--color-3);
}
.odac-expert .section-headline{
  display: flex;
  justify-content: center;
}
.odac-expert .section-headline h1{
  font-weight: 700;
  text-align: center;
  padding: 10px 20px;
  text-transform: uppercase;
  font-size: 40px;
  letter-spacing: 0.065em;
  border-bottom: 1px solid var(--color-1);
  color: var(--color-1);
  width: 350px;
}
.odac-expert .explanation p{
  padding: 10px 0;
  color: var(--color-1);
  text-align: center;
  font-size: 16px;
}
.odac-expert .explanation p span{
  font-weight: 600;
}
.odac-expert .nav-tabs {
  border: 0;
  gap: 10px;
}

.odac-expert .nav-link {
  margin: 0 10px;
  padding: 10px 20px;
  transition: 0.3s;
  color: var(--color-3);
  background: var(--color-1);
  border: 0px;
  border-radius: 0;
  cursor: pointer;
  height: 100%;
  border-radius: 20px;
}

@media (max-width: 575px) {
  .odac-expert .nav-link {
    margin: 0 10px;
    padding: 10px 20px;
  }
}

.odac-expert .nav-link i {
  padding-right: 15px;
  font-size: 48px;
  padding: 10px 20px;
}

.odac-expert .nav-link h4 {
  font-size: 18px;
  font-weight: 400;
  margin: 0;
}

@media (max-width: 575px) {
  .odac-expert .nav-link h4 {
    font-size: 16px;
    padding: 10px 20px;
  }
}

.odac-expert .nav-link:hover {
  color: var(--color-1);
  background: #9c9c9c;
  padding: 10px 20px;
}

.odac-expert .nav-link.active {
  color: var(--color-1);
  background: #9c9c9c;
  border: 0px;
  padding: 10px 20px;
}

.odac-expert .tab-content{
  margin-top: 20px;
  padding: 25px;
}
.odac-expert .swiper-slide .card-doctor {
  height: 400px;
}
@media (max-width: 512px){
  .odac-expert .swiper-slide .card-doctor{
    height: 360px;
  }
}

/*ODAC EXPERT*/

#odac-expert .swiper {
  width: 100%;
  height: 100%;
}

#odac-expert .swiper-wrapper .swiper-slide {
  text-align: center;
  font-size: 18px;

  /* Center slide text vertically */
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}

#odac-expert .swiper-wrapper .swiper-slide .card {
  width: 308px;
  border-radius: 36px;
  background: #D7D6D4;
}
#odac-expert .swiper-wrapper .swiper-slide .card .logo{
  position: absolute;
}
#odac-expert .swiper-wrapper .swiper-slide .card .logo img{
  margin: 20px 10px 0;
  width: 62px;
}
#odac-expert .swiper-wrapper .swiper-slide .card .logo h3{
  width: 80px;
  padding-top: 5px;
  text-transform: uppercase; 
  font-weight: 700;
  color: black;
  font-size: 12px;
}
#odac-expert .swiper-wrapper .swiper-slide .card .person{
  position: unset;
}
#odac-expert .swiper-wrapper .swiper-slide .card .name-bar{
  background: linear-gradient(rgba(0, 0, 0, 0.589), rgba(0, 0, 0, 0.589));
  padding: 7px;
  border-radius: 0 0 36px 36px;
}
@media (max-width: 758px){
  #odac-expert .swiper-wrapper .swiper-slide .card .name-bar{
    width: 100%;
  }
}
#odac-expert .swiper-wrapper .swiper-slide .card .name-bar h3{
  color: var(--color-1);
  font-size: 20px;
  font-weight: 700;
  padding: 10px 0 5px;
  text-align: center;
}
#odac-expert .swiper-wrapper .swiper-slide .card .name-bar .btn-more-info{
  border: none;
  background: none;
  justify-content: center;
  display: flex;
}
#odac-expert .swiper-wrapper .swiper-slide .card .name-bar .btn-more-info a{
  font-size: 18px;
  color: var(--color-1);
  font-weight: 500;
  cursor: pointer;
  padding: 5px 20px;
  background: var(--color-12);
  border-radius: 4px;
  transition: .5s;
}
#odac-expert .swiper-wrapper .swiper-slide .card .identiti .btn-more-info a:hover{
  box-shadow: #ea701f50;
}

#odac-expert .swiper-button-next, #odac-expert .swiper-button-prev{
  color: var(--color-1);
  font-size: 20px;
}
.modal-footer{
  display: flex;
  justify-content: center;
}
.modal-footer button{
  color: var(--color-1);
  background: var(--color-3);
  text-transform: uppercase;
  padding: 5px 40px;
  border-radius: 20px;
  border: 0;
  transition: 0.3s;
}
.modal-footer button:hover{
  color: var(--color-1);
  background-color: #9c9c9c;
}
/*--------------------------------------------------------------
# ODAC Service Section
--------------------------------------------------------------*/
.odac-service{
  background-image: url('../../img/background/service.webp');
  background-size: cover;
}
.odac-service .section-headline{
  display: flex;
  justify-content: center;
}
.odac-service .section-headline h1{ 
  color: var(--color-1);
  text-transform: uppercase;
  padding: 10px 20px;
  text-align: center;
  font-size: 40px;
  font-weight: 700;
  letter-spacing: 0.065em;
  border-bottom: 1px solid var(--color-1);
}
.odac-service .explanation{
  margin: 20px 0;
  display: flex;
  justify-content: center;
}
.odac-service .explanation p{
  background: var(--color-1);
  color: var(--color-4);
  width: 784px;
  font-size: 16px;
  padding: 20px 30px;
  border-radius: 20px;
  text-align: center;
}
.odac-service .nav-tabs {
  border: 0;
  margin-bottom: 25px;
}

.odac-service .nav-link {
  margin: 0 10px;
  padding: 10px 20px;
  transition: 0.3s;
  color: var(--color-1);
  border: 0;
  cursor: pointer;
  height: 100%;
  background-color: rgba(0, 0, 0, 0);
}

@media (max-width: 575px) {
  .odac-service .nav-link {
    margin: 0 10px;
    padding: 10px 20px;
  }
}

.odac-service .nav-link i {
  padding-right: 15px;
  font-size: 48px;
  padding: 10px 20px;
}

.odac-service .nav-link h4 {
  font-size: 20px;
  font-weight: 700;
  line-height: 0.6rem;
  padding: 5px;
}

@media (max-width: 575px) {
  .odac-service .nav-link h4 {
    font-size: 16px;
    padding: 10px 20px;
  }
}

.odac-service .nav-link:hover {
  color: var(--color-3);
  border-bottom: 1px solid var(--color-3);
  padding: 10px 20px;
  background-color: rgba(0, 0, 0, 0);
}

.odac-service .nav-link.active {
  font-weight: 700;
  border-bottom: 1px solid var(--color-3);
  background-color: rgba(0, 0, 0, 0);
  padding: 10px 20px;
  color: var(--color-3);
}

/*Basic*/
.odac-service .treatment{
  background: var(--color-1);
  padding: 20px;
  border-radius: 10px;
  box-shadow: 2px 7px rgba(0, 0, 0, 0.425);
  margin-top: 20px;
}
.odac-service .treatment .icon-img{
  padding: 2px;
  border-radius: 5px;
}
.odac-service .treatment .icon-img img{
  height: 100px;
}
.odac-service .treatment .description{
  padding: 10px;
}
.odac-service .treatment .description h3{
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--color-4);
}
.odac-service .treatment .description a{
  color: var(--color-primary);
  font-size: 16px;
}
/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.testimonials .section-headline{
  display: flex;
  justify-content: center;
}
.testimonials .section-headline h1{
  color: var(--color-4);
  text-transform: uppercase;
  padding: 10px 20px;
  text-align: center;
  font-weight: 700;
  font-size: 40px;
  letter-spacing: 0.065em;
  border-bottom: 1px solid var(--color-4);
}
.testimonials .explanation{
  display: flex;
  justify-content: center;
}
.testimonials .explanation p{
  font-size: 16px;
  width: 920px;
  text-align: center;
  padding: 20px 0;
}
.testimonials .testimonials-carousel,
.testimonials .testimonials-slider {
  overflow: hidden;
}
.testimonials .testimonial-item .testimonial-content {
  border-left: 3px solid var(--color-3);
  padding: 30px;
}
.testimonials .testimonial-item{
  margin-top: 40px;
}
.testimonials .testimonial-item .testimonial-img {
  border-radius: 50%;
  border: 4px solid #fff;
  margin: 0;
}
@media (max-width: 768px) {
  .testimonials .testimonial-item .testimonial-img {
    margin: 15px auto 0;
  }
}
.testimonials .testimonial-item h3 {
  font-size: 20px;
  font-weight: bold;
  margin: 10px 0 5px 0;
  color: var(--color-default);
  font-family: var(--font-secondary);
}

.testimonials .testimonial-item h4 {
  font-size: 14px;
  color: #6c757d;
  margin: 0 0 10px 0;
  font-family: var(--font-secondary);
}

.testimonials .testimonial-item .stars i {
  color: #ffc107;
  margin: 0 1px;
}

.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
  color: #f05656;
  font-size: 26px;
  line-height: 0;
}

.testimonials .testimonial-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
}

.testimonials .testimonial-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
  transform: scale(-1, -1);
}

.testimonials .testimonial-item p {
  font-style: italic;
}

.testimonials .swiper-pagination {
  margin-top: 40px;
  position: relative;
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #d1d1d7;
  opacity: 1;
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--color-primary);
}

/*--------------------------------------------------------------
# ODAC Promo Section
--------------------------------------------------------------*/
.odac-promo{
  background: var(--color-3);
}
.odac-promo .border01{
  border: 1px solid rgba(74, 74, 74, 0.76);
  border-radius: 0 20px 0 20px;
}
.odac-promo .section-headline{
  margin-top: 70px;
  display: flex;
  justify-content: center;
}
@media (max-width:512px){
  .odac-promo .section-headline{
    margin-top: 20px;
  }
}
.odac-promo .section-headline h1{
  color: var(--color-1);
  text-transform: uppercase;
  padding: 10px 20px;
  font-weight: 700;
  text-align: center;
  font-size: 40px;
  letter-spacing: 0.065em;
  border-bottom: 1px solid var(--color-1);
}
.odac-promo .explanation{
  margin-top: 20px;
  display: flex;
  justify-content: center;
}
.odac-promo .explanation p{
  font-size: 16px;
  font-weight: 500;
  color: var(--color-1);
  padding-left: 50px;
  width: 470px;
}

.odac-promo .border01 .slider{
  background: rgba(74, 74, 74, 0.76);
  border-radius: 0 20px 0 0;
}

.odac-promo .nav-tabs {
  border: 0;
  gap: 10px;
  margin-bottom: 25px;
}

.odac-promo .nav-link {
  margin: 0 10px;
  transition: 0.3s;
  cursor: pointer;
  height: 100%;
  background-color: var(--color-1);
  color: var(--color-3);
  border: 0;
}

@media (max-width: 575px) {
  .odac-promo .nav-link {
    margin: 0 10px;
    
  }
}

.odac-promo .nav-link i {
  padding-right: 15px;
  font-size: 48px;
  
}

.odac-promo .nav-link h4 {
  font-size: 16px;
  font-weight: 700;
  line-height: 0.6rem;
  padding: 10px 20px 2px;
}

@media (max-width: 575px) {
  .odac-promo .nav-link h4 {
    font-size: 16px;
    padding: 10px 20px;
  }
}

.odac-promo .nav-link:hover {
  color: var(--color-1);
  border-radius: 5px;
  background-color: #9c9c9c;
}

.odac-promo .nav-link.active {
  font-weight: 700;
  border-radius: 5px;
  background: #9c9c9c;
  color: var(--color-1);
}

.odac-promo .scrollSlide{
  width: 100%;
  height: 520px;
}
.odac-promo .swiper-slide {
  font-size: 18px;
  height: auto;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.odac-promo .swiper-slide img{
  margin: 0 0 10px;
}

/*--------------------------------------------------------------
# Franchise Section
--------------------------------------------------------------*/
.franchise{
  background: var(--color-9);
}
.franchise .section-headline{
  display: flex;
  justify-content: center;
}
.franchise .section-headline h1{
  color: var(--color-4);
  text-transform: uppercase;
  padding: 10px 20px;
  font-weight: 700;
  text-align: center;
  font-size: 40px;
  letter-spacing: 0.065em;
  border-bottom: 1px solid var(--color-4);
}
.franchise .explanation{
  display: flex;
  justify-content: center;
  margin: 20px 0;
}
.franchise .explanation p {
  font-size: 30px;
  text-align: center;
  color: var(--color-4);
}
.franchise .swiper {
  width: 100%;
  height: 100%;
}
.franchise .swiper-slide {
  /* Center slide text vertically */
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.franchise .swiper-slide iframe {
  display: block;
  border-radius: 20px;
  width: 100%;
  height: 500px;
  object-fit: cover;
}
@media (max-width:575px) {
  .franchise .swiper-slide iframe{
    height: 300px;
  }
}
.franchise .containers{
  display: flex;
  justify-content: center;
}
.franchise .containers .accordion{
  margin-top: 20px;
  height: 100%;
  width: 900px;
  color: var(--color-1);
}
.franchise .accordion .accordion-button{
  background: #9c9c9c;
  color: var(--color-1);
  font-size: 16px;
}
.franchise .accordion .accordion-button i{
  padding: 10px;
  color: var(--color-1);
  margin-right: 5px;
}
.franchise .accordion-header button{
  color: var(--color-1);
} 
.franchise .accordion .accordion-button.show{
  color: var(--color-4);
  background: var(--color-10);
}
.franchise .btn-bottom{
  margin-top: 20px;
  display: flex;
  margin: 10px;
  text-align: center;
  border-radius: 5px;
}
.franchise .btn-bottom a{
  padding: 10px 20px;
  margin: 10px 20px 0;
  color: var(--color-1);
  font-weight: 600;
  background: var(--color-3);
  border-radius: 5px;
  transition: .8s;
}
.franchise .btn-bottom a:hover{
  background-color: #9c9c9c;
  color: var(--color-1);
}
/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact .info-item {
  background: #f4f4f4;
  padding: 30px;
  height: 100%;
}

.contact .info-item .icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  font-size: 24px;
  line-height: 0;
  color: #fff;
  background: var(--color-primary);
  border-radius: 50%;
  margin-right: 15px;
}

.contact .info-item h3 {
  font-size: 20px;
  color: #6c757d;
  font-weight: 700;
  margin: 0 0 5px 0;
}

.contact .info-item p {
  padding: 0;
  margin: 0;
  line-height: 24px;
  font-size: 14px;
}

.contact .info-item .social-links a {
  font-size: 24px;
  display: inline-block;
  color: rgba(55, 55, 63, 0.7);
  line-height: 1;
  margin: 4px 6px 0 0;
  transition: 0.3s;
}

.contact .info-item .social-links a:hover {
  color: var(--color-primary);
}

.contact .php-email-form {
  width: 100%;
  margin-top: 30px;
  background: #fff;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.08);
}

.contact .php-email-form .form-group {
  padding-bottom: 20px;
}

.contact .php-email-form .error-message {
  display: none;
  color: #fff;
  background: #df1529;
  text-align: left;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .error-message br+br {
  margin-top: 25px;
}

.contact .php-email-form .sent-message {
  display: none;
  color: #fff;
  background: #059652;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px;
}

.contact .php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px; 
  margin: 0 10px -6px 0;
  border: 3px solid #059652;
  border-top-color: #fff;
  -webkit-animation: animate-loading 1s linear infinite;
  animation: animate-loading 1s linear infinite;
}

.contact .php-email-form input,
.contact .php-email-form textarea {
  border-radius: 0;
  box-shadow: none;
  font-size: 14px;
}

.contact .php-email-form input:focus,
.contact .php-email-form textarea:focus {
  border-color: var(--color-primary);
}

.contact .php-email-form input {
  height: 48px;
}

.contact .php-email-form textarea {
  padding: 10px 12px;
}

.contact .php-email-form button[type=submit] {
  background: var(--color-primary);
  border: 0;
  padding: 12px 40px;
  color: #fff;
  transition: 0.4s;
  border-radius: 50px;
}

.contact .php-email-form button[type=submit]:hover {
  background: #ec2727;
}

@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  width: 100%;
  background-size: cover;
  position: relative;
  padding: 70px 0 0;
}
@media (min-width: 576px){
  .hero {
    padding: 55px 0 0;
  }
}
.hero .swiper {
  width: 100%;
  height: 100%;
}
.hero .heroImg{
  display: flex;
  justify-content: center;
}
.hero .swiper-slide {
  text-align: center;
  font-size: 18px;
  background: #fff;

  /* Center slide text vertically */
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}

.hero .swiper-slide img {
  display: block;
  width: 100%;
  object-fit: contain;
}
/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
.footer {
  font-size: 14px;
  background-color: #4D443B;
  color: rgba(255, 255, 255, 0.7);
}
.footer .section-headline{
  display: flex;
  flex-direction: column;
  margin-top: 50px;
  justify-content: center;
}
@media (max-width:512px){
  .footer .section-headline{
    margin-top: 0;
  }
}
.footer .section-headline h1{
  color: var(--color-1);
  padding: 10px 20px;
  font-weight: 700;
  font-size: 40px;
  letter-spacing: 0.065em;
  border-bottom: 1px solid var(--color-1);
}
.footer .section-headline p{
  padding: 20px;
  color: var(--color-1);
  font-size: 16px;
}
.footer .section-headline p a{
  font-weight: 700;
  text-decoration: underline;
  color: var(--color-1);
  transition: .8s;
}
.footer .section-headline p a:hover{
  color: var(--color-3);
}
@media (max-width: 992px) {
  .footer .image{
    display: flex;
    justify-content: center;
  }
  .footer .image img{
    width: 128px;
    height: 100%;
  }
}
.footer .section-headline .contact-us {
  padding: 10px 20px 30px;
}
.footer .section-headline .contact-us a {
  background: var(--color-3);
  padding: 10px 20px;
  font-weight: 500;
  font-size: 16px;
  color: var(--color-1);
  border-radius: 6px;
  transition: 0.5s;
}
.footer .section-headline .contact-us a:hover {
  background: var(--color-5);
  box-shadow: 0px 1px 20px rgba(240, 165, 0, 0.55);
}

.footer .identiti{
  width: 300px;
}
@media (max-width: 992px){
  .footer .identiti{
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
  }
}
.footer .identiti h4{
  font-weight: 700;
  font-size: 20px;
  margin: 0;
  color: var(--color-3);
}
.footer .identiti h4 span{
  color: var(--color-1);
}
.footer .identiti p{
  color: var(--color-1);
  font-size: 12px;
  width: 300px;
  margin: 2px;
}
.footer .identiti .city{
  font-weight: 700;
  font-size: 16px;
}

.footer .icon {
  margin-right: 15px;
  font-size: 24px;
  line-height: 0;
}


.footer .footer-links {
  margin-bottom: 30px;
}

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

.footer .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

.footer .footer-links ul li:first-child {
  padding-top: 0;
}

.footer .footer-links ul a {
  color: rgba(255, 255, 255, 0.6);
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}

.footer .footer-links ul a:hover {
  color: #fff;
}

.footer .social-links{
  margin: 10px 0px;
}
.footer .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5px 10px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 16px;
  color: rgba(255, 255, 255, 0.7);
  margin-right: 10px;
  transition: 0.3s;
}

.footer .social-links a:hover {
  color: #fff;
  border-color: #fff;
}

.footer .copyright {
  text-align: center;
  padding: 30px 0 30px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
