/* ------------------------------- Google Font ------------------------------ */
@import url('https://fonts.googleapis.com/css2?family=Nunito+Sans:opsz,wght@6..12,300;6..12,400;6..12,500;6..12,600;6..12,700;6..12,800&display=swap');

:root {
  --main-color: #FF914D;
  --aqua: #1b6c86;
  --main2: #092139;
  --light: #0D2B4B;
  --background: #fdfdfd;


  --gray: #b1aeaf;
  --gray2: #949494;
  --background2: #f6f6f6;
  --black: #000;
  --black1: #292929;
  --black2: #0e0e0e;

  --brown: #946f5c;
  --white-color: #fff;
  --off-white: #f3f2f75c;

  --text-color: var(--black2);
  --subtext: var(--black1);
  --heading-color: var(--main-color);
  --subHead-color: var(--main2);

  /* ------------------------------ border-radius ----------------------------- */
  --normalradius: 1rem;
  --mid-radius: 3rem;
  --round: 10rem;

  /* ------------------------------- box-shadow ------------------------------- */

  --box-shadow1: rgba(34, 34, 34, 0.3) 0px 0px 11px;
  --box-shadow2: rgba(36, 35, 35, 0.19) 0px 10px 20px, rgba(37, 36, 34, 0.23) 0px 6px 6px;
  --defult-shadow: rgba(33, 33, 36, 0.2) 0px 8px 24px;


  /* --------------------------------- border --------------------------------- */
  --border: 1px solid var(--main-color);
  --border-black: 1px solid var(--black);
  --border-dash: 1px dashed var(--main-color);
  /* ---------------------------------- Font ---------------------------------- */

  --font-normal: 400;
  --font-medium: 500;
  --font-semi-bold: 600;
  --font-bold: 700;

  --10: 1rem;
  --13: 1.3rem;
  --16: 1.6rem;
  --18: 1.8rem;
  --20: 2rem;
  --23: 2.3rem;
  --25: 2.5rem;
  --30: 3rem;
  --35: 3.5rem;
  --40: 4rem;
  --48: 4.8rem;

}



@media(min-width:569px) and (max-width:1079px) {
  :root {
    --10: 0.8rem;
    --13: 1.1rem;
    --16: 1.3rem;
    --18: 1.5rem;
    --20: 1.7rem;
    --23: 1.9rem;
    --25: 2.1rem;
    --30: 2.6rem;
    --35: 3rem;
    --40: 3.2rem;
    --48: 4rem;
  }
}

@media(min-width:400px) and (max-width:568px) {
  :root {
    --10: 0.7rem;
    --13: 1rem;
    --16: 1.2rem;
    --18: 1.4rem;
    --20: 1.5rem;
    --23: 1.8rem;
    --25: 2rem;
    --30: 2.3rem;
    --35: 2.8rem;
    --40: 2.5rem;
    --48: 3.8rem;
  }
}

@media(max-width:400px) {
  :root {
    --10: 0.7rem;
    --13: 1rem;
    --16: 0.9rem;
    --18: 1.1rem;
    --20: 1.5rem;
    --23: 1.8rem;
    --25: 2rem;
    --30: 2.3rem;
    --35: 2.8rem;
    --40: 2rem;
    --48: 2.8rem;
  }
}

* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

html {
  /* font-size: 62.5%; */
  /* sets the base font size to 10px */
  scroll-behavior: smooth;
}

html,
body {
  overflow-x: hidden !important;
  height: 100%;
}

body {
  font-family: -apple-system,system-ui,BlinkMacSystemFont,"Segoe UI",Roboto,'Nunito Sans', sans-serif !important;
  /* font-family: 'Nunito Sans', sans-serif !important; */
  font-weight: var(--font-normal) !important;
  line-height: 1.5 !important;
  color: var(--text-color) !important;
  background-color: var(--background) !important;
  text-rendering: optimizeLegibility;

}

main {
  margin-top: 110px;
}

a {
  text-decoration: none !important;
  /* color: var(--main-color) !important; */
  cursor: pointer;
}

p {
    line-height:1.5 !important
}

ul {
  padding-left: 0rem !important;
}

.space {
  padding: 7rem 0rem 4rem;
}

.space-top {
  padding-top: 6rem;
}

.mt-6 {
  margin-top: 4rem;
}

/*** Button ***/
.btn {
  font-weight: 500;
  -webkit-transition: .5s;
  -o-transition: .5s;
  transition: .5s;
}

.btn.btn-primary,
.btn.btn-outline-primary:hover {
  color: #FFFFFF;
}

.btn-square {
  width: 38px;
  height: 38px;
}

.btn-sm-square {
  width: 32px;
  height: 32px;
}

.btn-lg-square {
  width: 48px;
  height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-weight: normal;
}

.btn-style-one {
  position: relative;
  display: inline-block;
  vertical-align: top;
  margin: 0;
  line-height: 30px;
  padding: 16px 40px 16px;
  color: #ffffff;
  font-weight: 600;
  font-size: 20px;
  text-align: center;
  border: 1px solid var(--main-color);
  text-transform: uppercase;
  background: var(--main-color);
  border-radius: 5px;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.btn-style-one span {
  position: relative;
  display: block;
  z-index: 1;
}

.btn-style-one:hover {
  color: var(--main-color);
  background: none;
  border-color: var(--main-color);
}

.btn-style-one.semi-round {
  border-radius: 30px 30px;
}

.btn-style-two {
  position: relative;
  display: inline-block;
  vertical-align: top;
  margin: 0;
  line-height: 30px;
  padding: 16px 40px 16px;
  color: var(--main-color);
  font-weight: 600;
  font-size: 20px;
  text-align: center;
  border: 1px solid var(--main-color);
  text-transform: uppercase;
  background: none;
  border-radius: 5px;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.btn-style-two span {
  position: relative;
  display: block;
  z-index: 1;
}

.btn-style-two:hover {
  color: #ffffff;
  background: var(--main-color);
  border-color: var(--main-color);
}

.btn-style-two.semi-round {
  border-radius: 30px 30px;
}


.theme-btn .icon-left {
  padding-right: 10px;
}

.theme-btn .icon-right {
  padding-left: 10px;
}

.theme_color {
  color: var(--main-color);
}

.btn-style-three {
  position: relative;
  padding: 16px 28px;
  border-radius: 6px;
  border: none;
  color: #fff;
  cursor: pointer;
  background-color: var(--main-color);
  -webkit-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

.btn-style-three:active {
  -webkit-transform: scale(0.96);
  -ms-transform: scale(0.96);
  transform: scale(0.96);
}

.btn-style-three:before,
.btn-style-three:after {
  position: absolute;
  content: "";
  width: 150%;
  left: 50%;
  height: 100%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  z-index: -1000;
  background-repeat: no-repeat;
}

.btn-style-three:hover {
  color: #fff;
  font-weight: 700;
}

.btn-style-three:hover:before {
  top: -70%;
  background-image: -o-radial-gradient(circle, #092139 20%, transparent 20%),
    -o-radial-gradient(circle, transparent 20%, #092139 20%, transparent 30%),
    -o-radial-gradient(circle, #092139 20%, transparent 20%),
    -o-radial-gradient(circle, #092139 20%, transparent 20%),
    -o-radial-gradient(circle, transparent 10%, #092139 15%, transparent 20%),
    -o-radial-gradient(circle, #092139 20%, transparent 20%),
    -o-radial-gradient(circle, #092139 20%, transparent 20%),
    -o-radial-gradient(circle, #092139 20%, transparent 20%),
    -o-radial-gradient(circle, #092139 20%, transparent 20%);
  background-image: radial-gradient(circle, #092139 20%, transparent 20%),
    radial-gradient(circle, transparent 20%, #092139 20%, transparent 30%),
    radial-gradient(circle, #092139 20%, transparent 20%),
    radial-gradient(circle, #092139 20%, transparent 20%),
    radial-gradient(circle, transparent 10%, #092139 15%, transparent 20%),
    radial-gradient(circle, #092139 20%, transparent 20%),
    radial-gradient(circle, #092139 20%, transparent 20%),
    radial-gradient(circle, #092139 20%, transparent 20%),
    radial-gradient(circle, #092139 20%, transparent 20%);
  background-size: 10% 10%, 20% 20%, 15% 15%, 20% 20%, 18% 18%, 10% 10%, 15% 15%,
    10% 10%, 18% 18%;
  background-position: 50% 120%;
  -webkit-animation: greentopBubbles 0.6s ease;
  animation: greentopBubbles 0.6s ease;
}

@-webkit-keyframes greentopBubbles {
  0% {
    background-position: 5% 90%, 10% 90%, 10% 90%, 15% 90%, 25% 90%, 25% 90%,
      40% 90%, 55% 90%, 70% 90%;
  }

  50% {
    background-position: 0% 80%, 0% 20%, 10% 40%, 20% 0%, 30% 30%, 22% 50%,
      50% 50%, 65% 20%, 90% 30%;
  }

  100% {
    background-position: 0% 70%, 0% 10%, 10% 30%, 20% -10%, 30% 20%, 22% 40%,
      50% 40%, 65% 10%, 90% 20%;
    background-size: 0% 0%, 0% 0%, 0% 0%, 0% 0%, 0% 0%, 0% 0%;
  }
}

@keyframes greentopBubbles {
  0% {
    background-position: 5% 90%, 10% 90%, 10% 90%, 15% 90%, 25% 90%, 25% 90%,
      40% 90%, 55% 90%, 70% 90%;
  }

  50% {
    background-position: 0% 80%, 0% 20%, 10% 40%, 20% 0%, 30% 30%, 22% 50%,
      50% 50%, 65% 20%, 90% 30%;
  }

  100% {
    background-position: 0% 70%, 0% 10%, 10% 30%, 20% -10%, 30% 20%, 22% 40%,
      50% 40%, 65% 10%, 90% 20%;
    background-size: 0% 0%, 0% 0%, 0% 0%, 0% 0%, 0% 0%, 0% 0%;
  }
}

.btn-style-three:hover::after {
  bottom: -70%;
  background-image: -o-radial-gradient(circle, #1b6c86 20%, transparent 20%),
    -o-radial-gradient(circle, #1b6c86 20%, transparent 20%),
    -o-radial-gradient(circle, transparent 10%, #1b6c86 15%, transparent 20%),
    -o-radial-gradient(circle, #1b6c86 20%, transparent 20%),
    -o-radial-gradient(circle, #1b6c86 20%, transparent 20%),
    -o-radial-gradient(circle, #1b6c86 20%, transparent 20%),
    -o-radial-gradient(circle, #1b6c86 20%, transparent 20%);
  background-image: radial-gradient(circle, #1b6c86 20%, transparent 20%),
    radial-gradient(circle, #1b6c86 20%, transparent 20%),
    radial-gradient(circle, transparent 10%, #1b6c86 15%, transparent 20%),
    radial-gradient(circle, #1b6c86 20%, transparent 20%),
    radial-gradient(circle, #1b6c86 20%, transparent 20%),
    radial-gradient(circle, #1b6c86 20%, transparent 20%),
    radial-gradient(circle, #1b6c86 20%, transparent 20%);
  background-size: 15% 15%, 20% 20%, 18% 18%, 20% 20%, 15% 15%, 20% 20%, 18% 18%;
  background-position: 50% 0%;
  -webkit-animation: greenbottomBubbles 0.6s ease;
  animation: greenbottomBubbles 0.6s ease;
}

@-webkit-keyframes greenbottomBubbles {
  0% {
    background-position: 10% -10%, 30% 10%, 55% -10%, 70% -10%, 85% -10%,
      70% -10%, 70% 0%;
  }

  50% {
    background-position: 0% 80%, 20% 80%, 45% 60%, 60% 100%, 75% 70%, 95% 60%,
      105% 0%;
  }

  100% {
    background-position: 0% 90%, 20% 90%, 45% 70%, 60% 110%, 75% 80%, 95% 70%,
      110% 10%;
    background-size: 0% 0%, 0% 0%, 0% 0%, 0% 0%, 0% 0%, 0% 0%;
  }
}

@keyframes greenbottomBubbles {
  0% {
    background-position: 10% -10%, 30% 10%, 55% -10%, 70% -10%, 85% -10%,
      70% -10%, 70% 0%;
  }

  50% {
    background-position: 0% 80%, 20% 80%, 45% 60%, 60% 100%, 75% 70%, 95% 60%,
      105% 0%;
  }

  100% {
    background-position: 0% 90%, 20% 90%, 45% 70%, 60% 110%, 75% 80%, 95% 70%,
      110% 10%;
    background-size: 0% 0%, 0% 0%, 0% 0%, 0% 0%, 0% 0%, 0% 0%;
  }
}


/*** Navbar ***/
.navbar .logo {
  width: 150px;
  height: 70px;
}

.navbar.sticky-top {
  top: -100px;
  -webkit-transition: .5s;
  -o-transition: .5s;
  transition: .5s;
}

.navbar .navbar-brand,
.navbar a.btn {
  height: 80px
}

.navbar .navbar-nav .nav-link {
  margin-right: 30px;
  padding: 25px 0;
  color: var(--dark);
  font-weight: 500;
  text-transform: uppercase;
  outline: none;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
  color: var(--primary);
}

.navbar .dropdown-toggle::after {
  border: none;
  content: "\f107";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  vertical-align: middle;
  margin-left: 8px;
}

/*** 

====================================================================
  Banner Slider Section
====================================================================

***/

.banner-section {
  position: relative;
  padding: 0 0;
  background: #101010;
}

.banner-section .auto-container {}

.banner-section .banner-container {
  position: relative;
}

.banner-section .banner-slider {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.banner-section .slide-item {
  position: relative;
  width: 100%;
  padding: 0px;
  overflow: hidden;
}

.banner-section .slide-item:before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.28);
  z-index: 1;
}

.banner-section .slide-item .image-layer {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;

}

.nav-last {
  width: 100%;
  height: 60px;
  background-color: var(--bs-primary);
  position: relative;
  z-index: 99;
  top: 23px;

}

.nav-last .container {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  height: 100%;
}

.nav-last .nav-link-last {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
}

.nav-last .nav-link-last img {
  margin-right: 15px;
}

.nav-last .nav-link-last a {
  color: var(--white-color);
  font-weight: 700;
  font-size: 20px;
}


.banner-section .slide-item .image-layer:before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;

  z-index: 1;
}

.banner-section .slide-item .content-box {
  position: relative;
  display: table;
  vertical-align: middle;
  width: 100%;
  padding: 10px 0px 10px;
  height: 600px;
  z-index: 10;
}

.banner-section .slide-item .content {
  position: relative;
  display: table-cell;
  width: 100%;
  vertical-align: middle;
  z-index: 5;
}

.banner-section .slide-item .inner {
  position: relative;
  display: block;
  width: 100%;
  margin: 0px 120px 0px;
  text-align: left;
  z-index: 5;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateY(50px);
  -ms-transform: translateY(50px);
  transform: translateY(50px);
}

.banner-section .active .slide-item .inner {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translate(0);
  -ms-transform: translate(0);
  transform: translate(0);
  -webkit-transition: all 1000ms ease 300ms;
  -o-transition: all 1000ms ease 300ms;
  transition: all 1000ms ease 300ms;
}

.banner-section .active .slide-item .inner .inner-content {
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  align-items: flex-start;
  width: 50%;
}

.banner-section .slide-item h1 {
  position: relative;
  font-weight: 900;
  font-size: 50px;
  color: #ffffff;
  text-transform: none;
  line-height: 1.10em;
  -webkit-animation: tracking-in-expand 0.7s ease-in both;
  animation: tracking-in-expand 0.7s ease-in both;
}

@-webkit-keyframes tracking-in-expand {
  0% {
    letter-spacing: -0.5em;
    opacity: 0;
  }

  40% {
    opacity: 0.6;
  }

  100% {
    opacity: 1;
  }
}

@keyframes tracking-in-expand {
  0% {
    letter-spacing: -0.5em;
    opacity: 0;
  }

  40% {
    opacity: 0.6;
  }

  100% {
    opacity: 1;
  }
}

.banner-section .slide-item h1 span {
  position: relative;
  display: inline-block;
  vertical-align: top;
}

.banner-section .slide-item h1 .bg-vector {
  position: absolute;
  right: 70px;
  bottom: -50px;
  width: 300px;
  z-index: 0;
}

.banner-section .slide-item .bg-image {
  position: absolute;
  right: 200px;
  top: -85px;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateX(-100px);
  -ms-transform: translateX(-100px);
  transform: translateX(-100px);
}

.banner-section .active .slide-item .bg-image {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translate(0);
  -ms-transform: translate(0);
  transform: translate(0);
  -webkit-transition: all 1000ms ease 1000ms;
  -o-transition: all 1000ms ease 1000ms;
  transition: all 1000ms ease 1000ms;
}

.banner-section .slide-item .text {
  position: relative;
  display: block;
  color: #ffffff;
  font-size: 20px;
  font-weight: 400;
  max-width: 840px;
  margin: 30px 0px;
}

.banner-section .slide-item .links-box {
  position: relative;
  display: block;
}

.banner-section .slide-item .links-box .link {
  position: relative;
  display: inline-block;
  vertical-align: top;
  margin: 0 10px 20px;
}

.banner-section .slide-item .links-box .link .theme-btn {
  padding-left: 50px;
  padding-right: 50px;
}

.banner-section .owl-theme .owl-nav {
  position: absolute;
  left: 0;
  top: 40%;
  margin-top: 50px;
  width: 100%;
  height: 0;
}

.banner-section .owl-theme .owl-nav .owl-prev {
  position: absolute;
  left: 30px;
  top: 0;
  width: 60px;
  height: 60px;
  border: 1px solid #ffffff;
  color: #ffffff;
  font-size: 24px;
  line-height: 60px;
  text-align: center;
  border-radius: 30px;
  -webkit-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  transition: all 500ms ease;

}

.banner-section .owl-theme .owl-nav .owl-next {
  position: absolute;
  right: 30px;
  top: 0;
  width: 60px;
  height: 60px;
  border: 1px solid #ffffff;
  color: #ffffff;
  font-size: 24px;
  line-height: 60px;
  text-align: center;
  border-radius: 30px;
  -webkit-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  transition: all 500ms ease;
}

.banner-section .owl-theme .owl-nav .owl-prev:hover,
.banner-section .owl-theme .owl-nav .owl-next:hover {
  color: var(--main-color);
  border-color: var(--main-color);
}

.banner-section .owl-theme .owl-dots {
  position: absolute;
  bottom: 30px;
  width: 100%;
  text-align: center;
}

.banner-section .owl-theme .owl-dots .owl-dot {
  position: relative;
  display: inline-block;
  margin: 0 5px;
}

.banner-section .owl-theme .owl-dots .owl-dot span {
  position: relative;
  display: block;
  width: 15px;
  height: 15px;
  background: #ffffff;
  -webkit-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  transition: all 500ms ease;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  align-self: center;
}

.banner-section .owl-theme .owl-dots .owl-dot:hover span,
.banner-section .owl-theme .owl-dots .owl-dot.active span {
  background: var(--main-color);
}


.about-fe {
  font-size: 20px;
  font-weight: 700;
  color: var(--main2);
}

.title-box .dots span {
  position: relative;
  display: block;
  width: 25px;
  height: 5px;
  border-bottom: 5px solid #FF914D;

}

@-webkit-keyframes tracking-in-expand {
  0% {
    letter-spacing: -0.5em;
    opacity: 0;
  }

  40% {
    opacity: 0.6;
  }

  100% {
    opacity: 1;
  }
}

@keyframes tracking-in-expand {
  0% {
    letter-spacing: -0.5em;
    opacity: 0;
  }

  40% {
    opacity: 0.6;
  }

  100% {
    opacity: 1;
  }
}

.title-box .dots span:before {
  content: '';
  position: absolute;
  left: 30px;
  top: 0;
  width: 5px;
  height: 5px;
  border-bottom: 5px solid #FF914D;
}

.title-box .dots span:after {
  content: '';
  position: absolute;
  left: 40px;
  top: 0;
  width: 3px;
  height: 5px;
  border-bottom: 5px solid #FF914D;
}

.title-box h2 {
  position: relative;
  display: inline-block;
  font-weight: 900;
  text-transform: none;
  color: var(--main2);
  line-height: 1.1em;
  font-size: 54px;
  padding-top: 1rem;
  margin: 0 0;
  -webkit-animation: tracking-in-expand 0.7s ease-in both;
  animation: tracking-in-expand 0.7s ease-in both;
}

.title-box.style-two h2 {
  font-size: 54px;
  line-height: 1.15em;
}

.title-box h2 span {
  position: relative;
  z-index: 1;
}

.title-box h2 .bg-vector {
  position: absolute;
  right: -50px;
  bottom: -55px;
  width: 300px;
  z-index: 0;
}

.title-box.centered h2 .bg-vector {
  right: -100px;
}

.center {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.why-block {
  position: relative;
  margin-bottom: 30px;
}

.why-block .inner-box {
  position: relative;
  display: block;
  padding: 50px 30px 50px 40px;
  border-radius: 15px;
  min-height: 380px;
  background: #ffffff;
  -webkit-box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.15);
  box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.15);
  cursor: pointer;
}


.why-block .icon-box {
  position: relative;
  display: block;
  width: 80px;
  height: 80px;
  background: #FF914D;
  color: #ffffff;
  text-align: center;
  line-height: 80px;
  font-size: 32px;
  margin-bottom: 30px;
  border-radius: 50%;
  -webkit-transition: all 700ms ease;
  -o-transition: all 700ms ease;
  transition: all 700ms ease;
}

.why-block:hover .icon-box {
  -ms-transform: rotate(30deg);
  -webkit-transform: rotate(30deg);
  transform: rotate(30deg);
  border-color: #e30b17;
  -webkit-transition: all 700ms ease;
  -o-transition: all 700ms ease;
  transition: all 700ms ease;
}

.why-block h4 {
  position: relative;
  font-weight: 700;
  color: var(--main2);
  margin-bottom: 20px;
}

.why-main {
  margin-top: 7rem !important;
  position: relative;
}

.why-mainbg::before {
  position: absolute;
  content: '';
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  background: url(../Images/pattern-1.png) left top no-repeat;
}

.why-mainbg::after {
  position: absolute;
  content: '';
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  background: url(../Images/pattern-2.png) right top no-repeat;
  z-index: -1;
}

.program-block-two {
  position: relative;
  margin-bottom: 30px;
}

.owl-theme .program-block-two {
  margin-bottom: 0px;
}

.program-block-two .inner-box {
  position: relative;
  display: block;
  background: #ffffff;
  text-align: center;
  overflow: hidden;
  border-radius: 15px;
  -webkit-box-shadow: var(--defult-shadow);
  box-shadow: var(--defult-shadow);
}

.program-block-two .image-box,
.program-block-two .image-box .image {
  position: relative;
  display: block;
  border-radius: 5px 5px 0 0;
}

.program-block-two .image-box .image img {
  display: block;
  width: 100%;
  border-radius: 5px 5px 0 0;
}

.program-block-two .image-box .icon-box {
  position: absolute;
  left: 50%;
  margin-left: -60px;
  bottom: -60px;
  width: 120px;
  font-size: 32px;
  height: 120px;
  line-height: 120px;
  text-align: center;
  background: #FF914D;
  border-radius: 50%;
  z-index: 9;
}

.program-block-two .image-box .icon-box img {
  max-height: 50px;
}

.program-block-two .mid-box {
  position: relative;
  display: block;
  padding: 85px 45px 50px;
}

.program-block-two h4 {
  font-weight: 700;
  margin-bottom: 25px;
}

.program-block-two h4 a:hover {
  color: #FF914D;
}

.program-block-two .text {
  position: relative;
  font-size: 16px;
}

.program-block-two .link-box {
  position: relative;
  display: block;
  padding: 17px 20px;
  border-top: 1px solid rgba(0, 0, 0, 0.10);
}

.program-block-two .link-box a {
  font-weight: 600;
  color: #FF914D;
  text-transform: uppercase;
  font-size: 16px;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.program-block-two .link-box a i {
  position: relative;
  top: 2px;
  font-size: 20px;
  padding-left: 5px;
}

.program-block-two .link-box a:hover {
  color: #191825;
}

/*** Team ***/
.team-items {
  margin: -.75rem;
}

.team-item {
  padding: .75rem;
}

.team-item::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 0;
  top: 0;
  left: 0;
  background: #FFFFFF;
  -webkit-transition: .5s;
  -o-transition: .5s;
  transition: .5s;
  z-index: -1;
}

.team-item:hover::after {
  height: 100%;
  background: var(--primary);
}

.team-item .team-social {
  position: absolute;
  width: 100%;
  height: 0;
  top: 0;
  left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  background: rgba(0, 0, 0, .75);
  overflow: hidden;
  opacity: 0;
  -webkit-transition: .5s;
  -o-transition: .5s;
  transition: .5s;
}

.team-item:hover .team-social {
  height: 100%;
  opacity: 1;
}

/*** Footer ***/
.footer {
  padding: 3rem 0rem;
}

.footer .footer-logo {
  width: 170px;
  height: 80px;
}

.footer .btn.btn-link {
  display: block;
  margin-bottom: 5px;
  padding: 0.5rem 0rem;
  text-align: left;
  color: var(--white-color);
  font-weight: normal;
  text-transform: capitalize;
  -webkit-transition: .3s;
  -o-transition: .3s;
  transition: .3s;
}

.footer .btn.btn-link::before {
  position: relative;
  content: "\f105";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  color: var(--white-color);
  margin-right: 10px;
}

.footer .btn.btn-link:hover {
  color: var(--primary);
  letter-spacing: 1px;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.copyright {
  background: #092139;
}

.copyright a {
  color: var(--primary);
}

.copyright a:hover {
  color: var(--light);
}

.course {
  background-color: var(--off-white);
}

.list-unstyled {
  text-align: left;
}

.pricecard .btn {
  padding-inline: 2rem !important;
}



/* ------------------------- service-contact-footer ------------------------- */
.service-contact-footer {
  padding: 40px 0px;
  background-color: var(--off-white);
}



.service-contact-footer .text {
  font-size: var(--16);
  margin-bottom: 30px;
}

.service-contact-footer .btn-style-eighteen:hover {
  background-color: transparent;
  border: 1px solid white;
  color: white;
}

.head-service {
  padding-top: 100px;
}

.head-service .text {
  margin-bottom: 1.5rem;
}

.accordion {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  font-family: "Sora", sans-serif;
  max-width: 991px;
  min-width: 320px;
  margin: 50px auto;
  padding: 0 50px;
}

.accordion h1 {
  font-size: 32px;
  text-align: center;
}

.accordion-item {
  margin-top: 16px;
  border: 1px solid #fcfcfc;
  border-radius: 6px;
  background: #ffffff;
  -webkit-box-shadow: rgba(0, 0, 0, 0.05) 0px 1px 2px 0px;
  box-shadow: rgba(0, 0, 0, 0.05) 0px 1px 2px 0px;
}

.accordion-item .accordion-item-title {
  position: relative;
  margin: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
  padding: 14px 20px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.accordion-item .accordion-item-desc {
  display: none;
  font-size: 16px;
  line-height: 1.5;
  font-weight: 500;
  color: #444;
  border-top: 1px dashed #ddd;
  padding: 10px 20px 20px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.accordion-item input[type="checkbox"] {
  position: absolute;
  height: 0;
  width: 0;
  opacity: 0;
}

.accordion-item input[type="checkbox"]:checked~.accordion-item-desc {
  display: block;
}

.accordion-item input[type="checkbox"]:checked~.accordion-item-title {
  color: var(--main-color);
  border-left: 3px solid var(--main-color);
}

.accordion-item input[type="checkbox"]:checked~.accordion-item-title .icon:after {
  content: "-";
  font-size: 20px;
}

.accordion-item input[type="checkbox"]~.accordion-item-title .icon:after {
  content: "+";
  font-size: 20px;
}

.accordion-item:first-child {
  margin-top: 0;
}

.accordion-item .icon {
  margin-left: 14px;
}

@media screen and (max-width: 767px) {
  .accordion {
    padding: 0 16px;
  }

  .accordion h1 {
    font-size: 22px;
  }
}

/* Testimonial Page Section */

.testimonial-page-section {
  position: relative;
  padding-top: 90px;
}

/* Testimonial Block Five */

.testimonial-block-five {
  position: relative;
  margin-bottom: 130px;
}

.testimonial-block-five .inner-box {
  position: relative;
  text-align: center;
  padding: 35px 30px;
  background-color: #ffffff;
  background-position: left top;
  background-repeat: no-repeat;
  -webkit-transition: all 1000ms ease;
  -o-transition: all 1000ms ease;
  transition: all 1000ms ease;
  -webkit-box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.15);
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.15);
  border-radius: 15px;
}

.testimonial-block-five .inner-box:before {
  position: absolute;
  content: '';
  left: 0px;
  bottom: 0px;
  width: 0px;
  height: 5px;
  background-color: var(--main-color);
  -webkit-transition: all 1000ms ease;
  -o-transition: all 1000ms ease;
  transition: all 1000ms ease;
}

.testimonial-block-five .inner-box:after {
  position: absolute;
  content: '';
  right: 0px;
  bottom: 0px;
  width: 0px;
  height: 5px;
  background-color: var(--main-color);
  -webkit-transition: all 1000ms ease;
  -o-transition: all 1000ms ease;
  transition: all 1000ms ease;
}

.testimonial-block-five .inner-box:hover::before,
.testimonial-block-five .inner-box:hover::after {
  width: 100%;
}

.testimonial-block-five .inner-box .quote-icon {
  position: absolute;
  right: 45px;
  top: -20px;
  color: #e0e0e0;
  font-size: 60px;
  line-height: 1em;
  -webkit-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  transition: all 500ms ease;
}

.testimonial-block-five .inner-box:hover {
  -webkit-transform: translateY(-20px);
  -ms-transform: translateY(-20px);
  transform: translateY(-20px);
}

.testimonial-block-five .inner-box:hover .quote-icon {
  color: var(--main-color);
}

.testimonial-block-five .inner-box .image-outer {
  position: relative;
  display: inline-block;
}

.testimonial-block-five .inner-box .image {
  position: relative;
  width: 76px;
  height: 76px;
  overflow: hidden;
  margin: 0 auto;
  border-radius: 50px;
}

.testimonial-block-five .inner-box .image-outer:before {
  position: absolute;
  content: '';
  left: -4px;
  top: -4px;
  right: -4px;
  bottom: -4px;
  border-radius: 50px;
  border: 2px solid --main-color;
}

.testimonial-block-five .inner-box .text {
  position: relative;
  color: #000000;
  font-size: 16px;
  line-height: 1.7em;
  margin-top: 20px;
  margin-bottom: 10px;
}

.testimonial-block-five .inner-box h5 {
  position: relative;
  color: var(--main2);
  font-size: 20px;
  font-weight: 700;
  line-height: 1.7em;
}

.testimonial-block-five .inner-box .designation {
  position: relative;
  color: #9c9c9c;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.4em;
}

.area h5 {
  margin-top: 35px;
  font-weight: 700;
  text-align: left;
  cursor: pointer;
  padding-left: 15px;
  text-transform: uppercase;
}

.area h5::before {
  content: "\f3c5";
  font-family: "Font Awesome 5 Free";
  color: var(--bs-primary);
  margin-right: 15px;
}

.area h5:hover {
  color: var(--main-color);
  font-size: 22px;

}
.media-body h4 a {
    color: #0C2B4B !important
}

.sec-title .text {
    font-size: 18px;
    line-height: 1.5;
    font-weight: 500;
    text-align: justify
}

.joinform {
  padding: 2rem;
  border-radius: 15px;
  -webkit-box-shadow: rgba(61, 61, 59, 0.336) 0px 2px 8px 0px;
  box-shadow: rgba(61, 61, 59, 0.336) 0px 2px 8px 0px;

}

.joinform label {
  margin-bottom: 10px;
  color: var(--bs-dark);
  font-weight: 800;
}

.joinform .form-control {
  padding: 13px;
  border-radius: 5px;
  -webkit-box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

.whytext i {
  padding: 0.7rem;
  background-color: var(--bs-primary);
  color: var(--white-color);
  border-radius: 50%;
  font-size: 16px;
  -webkit-margin-end: 10px;
  margin-inline-end: 10px;
}

.whytext svg {
  color: var(--bs-primary);
  margin-right: 15px;
}

.whytext {
  font-size: 18px;
  font-weight: 600;
  margin: 1rem 0rem;
}

.service-contact-footer {
  padding: 40px 0px;
  background-color: var(--off-white);
}



.service-contact-footer .text {
  font-size: 16px;
  margin-bottom: 30px;
}

.service-contact-footer .btn-style-eighteen:hover {
  background-color: transparent;
  border: 1px solid white;
  color: white;
}

/* ----------------------------- POstcode input ----------------------------- */
.search {
  display: inline-block;
  position: relative;
  width: 45%;
}

.search input[type="text"] {
  width: 90%;
  padding: 15px;
  border: none;
  outline: none;
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.search button[type="submit"] {
  background-color: var(--bs-primary);
  border: none;
  color: #000;
  cursor: pointer;
  padding: 15px 20px;
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  position: absolute;
  top: 0;
  right: 0;
  -webkit-transition: .9s ease;
  -o-transition: .9s ease;
  transition: .9s ease;
  font-weight: 800;
}

.search button[type="submit"]:hover {
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
  color: rgb(255, 255, 255);
  background-color: var(--bs-primary);
}

/* ----------------------------- \Toggle switch ----------------------------- */

.switch {
  position: relative;
  height: 1.9rem;
  width: 3.9rem;
  cursor: pointer;
  -moz-appearance: none;
  appearance: none;
  -webkit-appearance: none;
  border-radius: 9999px;
  background-color: rgba(100, 116, 139, 0.377);
  -webkit-transition: all .3s ease;
  -o-transition: all .3s ease;
  transition: all .3s ease;
  margin-top: 20px;
}

.switch:checked {
  background-color: var(--bs-primary);
}

.switch::before {
  position: absolute;
  content: "";
  left: calc(1.5rem - 1.65rem);
  top: calc(1.5rem - 1.6rem);
  display: block;
  height: 2rem;
  width: 2.1rem;
  cursor: pointer;
  border: 1px solid rgba(100, 116, 139, 0.527);
  border-radius: 9999px;
  background-color: rgba(255, 255, 255, 1);
  -webkit-box-shadow: 0 3px 10px rgba(100, 116, 139, 0.327);
  box-shadow: 0 3px 10px rgba(100, 116, 139, 0.327);
  -webkit-transition: all .3s ease;
  -o-transition: all .3s ease;
  transition: all .3s ease;
}

.switch:hover::before {
  -webkit-box-shadow: 0 0 0px 8px rgba(0, 0, 0, .15);
  box-shadow: 0 0 0px 8px rgba(0, 0, 0, .15)
}

.switch:checked:hover::before {
  -webkit-box-shadow: 0 0 0px 8px rgba(236, 233, 72, 0.15);
  box-shadow: 0 0 0px 8px rgba(236, 233, 72, 0.15)
}

.switch:checked:before {
  -webkit-transform: translateX(100%);
  -ms-transform: translateX(100%);
  transform: translateX(100%);
  border-color: var(--bs-primary);
}

.checkbox-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.form-checkbox-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  cursor: pointer;
  font-weight: 600;
  position: relative;
  overflow: hidden;
  -webkit-transition: 0.25s ease;
  -o-transition: 0.25s ease;
  transition: 0.25s ease;
  padding: 5px;
  border: 1px solid #f5c8265e;
  width: 150px;
  border-radius: 40px;
  margin-top: 20px;
  font-size: 18px;
  margin-inline: 10px;
  color: #afafaf;
}

.form-check-input {
  padding: 11px;
  margin-left: -10px !important;
  margin-top: 0 !important;
}

.form-check-input:checked+.form-check-label {
  color: #000 !important;
}

.form-check-input:checked+.form-checkbox-item {
  border: 1px solid #FF914D !important;
}

.filter {
  margin-top: 100px;
}

/* -------------------------------- whatsapp -------------------------------- */
/* CSS Multiple Whatsapp Chat */
.whatsapp-name {
  font-size: 16px;
  font-weight: 600;
  padding-bottom: 0;
  margin-bottom: 0;
  line-height: 0.5;
}

#whatsapp-chat {
  -webkit-box-sizing: border-box !important;
  box-sizing: border-box !important;

  outline: none !important;
  position: fixed;
  width: 350px;
  border-radius: 10px;
  -webkit-box-shadow: 0 1px 15px rgba(32, 33, 36, 0.28);
  box-shadow: 0 1px 15px rgba(32, 33, 36, 0.28);
  bottom: 90px;
  right: 30px;
  overflow: hidden;
  z-index: 99;
  -webkit-animation-name: showchat;
  animation-name: showchat;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}

a.blantershow-chat {
  /*   background: #009688; */
  background: #fff;
  color: #404040;
  position: fixed;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-weight: 400;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  z-index: 98;
  bottom: 25px;
  right: 30px;
  font-size: 15px;
  padding: 10px 20px;
  border-radius: 30px;
  -webkit-box-shadow: 0 1px 15px rgba(32, 33, 36, 0.28);
  box-shadow: 0 1px 15px rgba(32, 33, 36, 0.28);
}

a.blantershow-chat svg {
  -webkit-transform: scale(1.2);
  -ms-transform: scale(1.2);
  transform: scale(1.2);
  margin: 0 10px 0 0;
}

.header-chat {
  /*   background: linear-gradient(to right top, #6f96f3, #164ed2); */
  background: #009688;
  background: #095e54;
  color: #fff;
  padding: 20px;
}

.header-chat h3 {
  margin: 0 0 10px;
}

.header-chat p {
  font-size: 14px;
  line-height: 1.5;
  margin: 0;
}

.info-avatar {
  position: relative;
}

.info-avatar img {
  border-radius: 100%;
  width: 50px;
  float: left;
  margin: 0 10px 0 0;
}

a.informasi {
  padding: 20px;
  display: block;
  overflow: hidden;
  -webkit-animation-name: showhide;
  animation-name: showhide;
  -webkit-animation-duration: 0.5s;
  animation-duration: 0.5s;
}

a.informasi:hover {
  background: #f1f1f1;
}

.info-chat span {
  display: block;
}

#get-label,
span.chat-label {
  font-size: 12px;
  color: #888;
}

#get-nama,
span.chat-nama {
  margin: 5px 0 0;
  font-size: 15px;
  font-weight: 700;
  color: #222;
}

#get-label,
#get-nama {
  color: #fff;
}

span.my-number {
  display: none;
}

/* .blanter-msg {
  color: #444;
  padding: 20px;
  font-size: 12.5px;
  text-align: center;
  border-top: 1px solid #ddd;
} */
textarea#chat-input {
  border: none;
  font-family: "Arial", sans-serif;
  width: 100%;
  height: 46px;
  outline: none;
  resize: none;
  padding: 10px;
  font-size: 14px;
}

a#send-it {
  width: 40px;
  font-weight: 700;
  padding: 10px 10px 0;
  background: #eee;

  svg {
    fill: #a6a6a6;
    height: 24px;
    width: 24px;
  }
}

.first-msg {
  background: transparent;
  padding: 30px;
  text-align: center;

  & span {
    background: #e2e2e2;
    color: #333;
    font-size: 14.2px;
    line-height: 1.5;
    border-radius: 10px;
    padding: 15px 20px;
    display: inline-block;
  }
}

.start-chat .blanter-msg {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

#get-number {
  display: none;
}

a.close-chat {
  position: absolute;
  top: 5px;
  right: 15px;
  color: #fff;
  font-size: 30px;
}

@-webkit-keyframes ZpjSY {
  0% {
    background-color: rgb(182, 181, 186);
  }

  15% {
    background-color: rgb(17, 17, 17);
  }

  25% {
    background-color: rgb(182, 181, 186);
  }
}

@keyframes ZpjSY {
  0% {
    background-color: rgb(182, 181, 186);
  }

  15% {
    background-color: rgb(17, 17, 17);
  }

  25% {
    background-color: rgb(182, 181, 186);
  }
}

@-webkit-keyframes hPhMsj {
  15% {
    background-color: rgb(182, 181, 186);
  }

  25% {
    background-color: rgb(17, 17, 17);
  }

  35% {
    background-color: rgb(182, 181, 186);
  }
}

@keyframes hPhMsj {
  15% {
    background-color: rgb(182, 181, 186);
  }

  25% {
    background-color: rgb(17, 17, 17);
  }

  35% {
    background-color: rgb(182, 181, 186);
  }
}

@-webkit-keyframes iUMejp {
  25% {
    background-color: rgb(182, 181, 186);
  }

  35% {
    background-color: rgb(17, 17, 17);
  }

  45% {
    background-color: rgb(182, 181, 186);
  }
}

@keyframes iUMejp {
  25% {
    background-color: rgb(182, 181, 186);
  }

  35% {
    background-color: rgb(17, 17, 17);
  }

  45% {
    background-color: rgb(182, 181, 186);
  }
}

@-webkit-keyframes showhide {
  from {
    -webkit-transform: scale(0.5);
    transform: scale(0.5);
    opacity: 0;
  }
}

@keyframes showhide {
  from {
    -webkit-transform: scale(0.5);
    transform: scale(0.5);
    opacity: 0;
  }
}

@-webkit-keyframes showchat {
  from {
    -webkit-transform: scale(0);
    transform: scale(0);
    opacity: 0;
  }
}

@keyframes showchat {
  from {
    -webkit-transform: scale(0);
    transform: scale(0);
    opacity: 0;
  }
}

@media screen and (max-width: 480px) {
  #whatsapp-chat {
    width: auto;
    left: 5%;
    right: 5%;
    font-size: 80%;
  }
}

.hide {
  display: none;
  -webkit-animation-name: showhide;
  animation-name: showhide;
  -webkit-animation-duration: 0.5s;
  animation-duration: 0.5s;
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
  opacity: 1;
}

/* .show {
  display: block;
  -webkit-animation-name: showhide;
  animation-name: showhide;
  -webkit-animation-duration: 0.5s;
  animation-duration: 0.5s;
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
  opacity: 1;
} */

.whatsapp-message-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  z-index: 1;
}

.whatsapp-message {
  padding: 7px 14px 6px;
  background-color: rgb(255, 255, 255);
  border-radius: 0px 8px 8px;
  position: relative;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  opacity: 0;
  -webkit-transform-origin: center top 0px;
  -ms-transform-origin: center top 0px;
  transform-origin: center top 0px;
  z-index: 2;
  -webkit-box-shadow: rgba(0, 0, 0, 0.13) 0px 1px 0.5px;
  box-shadow: rgba(0, 0, 0, 0.13) 0px 1px 0.5px;
  margin-top: 4px;
  margin-left: -54px;
  max-width: calc(100% - 66px);
}

.whatsapp-chat-body {
  padding: 20px 20px 20px 10px;
  background-color: rgb(230, 221, 212);
  position: relative;

  &::before {
    display: block;
    position: absolute;
    content: "";
    left: 0px;
    top: 0px;
    height: 100%;
    width: 100%;
    z-index: 0;
    opacity: 0.08;
    background-image: url("https://elfsight.com/assets/chats/patterns/whatsapp.png");
    /* // background-image: url(https://res.cloudinary.com/eventbree/image/upload/v1575782560/Widgets/whatsappbg_opt.jpg); */
  }
}

.dAbFpq {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  z-index: 1;
}

.eJJEeC {
  background-color: rgb(255, 255, 255);
  width: 52.5px;
  height: 32px;
  border-radius: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-left: 10px;
  opacity: 0;
  -webkit-transition: all 0.1s ease 0s;
  -o-transition: all 0.1s ease 0s;
  transition: all 0.1s ease 0s;
  z-index: 1;
  -webkit-box-shadow: rgba(0, 0, 0, 0.13) 0px 1px 0.5px;
  box-shadow: rgba(0, 0, 0, 0.13) 0px 1px 0.5px;
}

.hFENyl {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.ixsrax {
  height: 5px;
  width: 5px;
  margin: 0px 2px;
  border-radius: 50%;
  display: inline-block;
  position: relative;
  -webkit-animation-duration: 1.2s;
  animation-duration: 1.2s;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
  top: 0px;
  background-color: rgb(158, 157, 162);
  -webkit-animation-name: ZpjSY;
  animation-name: ZpjSY;
}

.dRvxoz {
  height: 5px;
  width: 5px;
  margin: 0px 2px;
  background-color: rgb(182, 181, 186);
  border-radius: 50%;
  display: inline-block;
  position: relative;
  -webkit-animation-duration: 1.2s;
  animation-duration: 1.2s;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
  top: 0px;
  -webkit-animation-name: hPhMsj;
  animation-name: hPhMsj;
}

.kAZgZq {
  padding: 7px 14px 6px;
  background-color: rgb(255, 255, 255);
  border-radius: 0px 8px 8px;
  position: relative;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  opacity: 0;
  -webkit-transform-origin: center top 0px;
  -ms-transform-origin: center top 0px;
  transform-origin: center top 0px;
  z-index: 2;
  -webkit-box-shadow: rgba(0, 0, 0, 0.13) 0px 1px 0.5px;
  box-shadow: rgba(0, 0, 0, 0.13) 0px 1px 0.5px;
  margin-top: 4px;
  margin-left: -54px;
  max-width: calc(100% - 66px);

  &::before {
    position: absolute;
    background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAmCAMAAADp2asXAAAABGdBTUEAALGPC/xhBQAAAAFzUkdCAK7OHOkAAACQUExURUxpccPDw9ra2m9vbwAAAAAAADExMf///wAAABoaGk9PT7q6uqurqwsLCycnJz4+PtDQ0JycnIyMjPf3915eXvz8/E9PT/39/RMTE4CAgAAAAJqamv////////r6+u/v7yUlJeXl5f///5ycnOXl5XNzc/Hx8f///xUVFf///+zs7P///+bm5gAAAM7Ozv///2fVensAAAAvdFJOUwCow1cBCCnqAhNAnY0WIDW2f2/hSeo99g1lBYT87vDXG8/6d8oL4sgM5szrkgl660OiZwAAAHRJREFUKM/ty7cSggAABNFVUQFzwizmjPz/39k4YuFWtm55bw7eHR6ny63+alnswT3/rIDzUSC7CrAziPYCJCsB+gbVkgDtVIDh+DsE9OTBpCtAbSBAZSEQNgWIygJ0RgJMDWYNAdYbAeKtAHODlkHIv997AkLqIVOXVU84AAAAAElFTkSuQmCC");
    background-position: 50% 50%;
    background-repeat: no-repeat;
    background-size: contain;
    content: "";
    top: 0px;
    left: -12px;
    width: 12px;
    height: 19px;
  }
}

.bMIBDo {
  font-size: 13px;
  font-weight: 700;
  line-height: 18px;
  color: rgba(0, 0, 0, 0.4);
}

.iSpIQi {
  font-size: 14px;
  line-height: 19px;
  margin-top: 4px;
  color: rgb(17, 17, 17);
}

.iSpIQi {
  font-size: 14px;
  line-height: 19px;
  margin-top: 4px;
  color: rgb(17, 17, 17);
}

.cqCDVm {
  text-align: right;
  margin-top: 4px;
  font-size: 12px;
  line-height: 16px;
  color: rgba(17, 17, 17, 0.5);
  margin-right: -8px;
  margin-bottom: -4px;
}

/* Conversation */

.conversation {
  height: calc(100% - 12px);
  position: relative;
  background: url("https://i.ibb.co/3s1f9Jq/default-wallpaper.png") repeat;
  z-index: 0;
}

.conversation ::-webkit-scrollbar {
  -webkit-transition: all .5s;
  transition: all .5s;
  width: 5px;
  height: 1px;
  z-index: 10;
}

.conversation ::-webkit-scrollbar-track {
  background: transparent;
}

.conversation ::-webkit-scrollbar-thumb {
  background: #b3ada7;
}

.conversation .conversation-container {
  height: calc(100% - 68px);
  -webkit-box-shadow: inset 0 10px 10px -10px #000000;
  box-shadow: inset 0 10px 10px -10px #000000;
  overflow-x: hidden;
  padding: 0 16px;
}

.conversation .conversation-container:after {
  content: "";
  display: table;
  clear: both;
}

/* Messages */

.message {
  color: #000;
  clear: both;
  line-height: 18px;
  font-size: 15px;
  padding: 8px;
  position: relative;
  margin: 8px 0;
  max-width: 85%;
  word-wrap: break-word;
  z-index: -1;
}

.message:after {
  position: absolute;
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
}

.metadata {
  display: inline-block;
  float: right;
  padding: 0 0 0 7px;
  position: relative;
  bottom: -4px;
}

.metadata .time {
  color: rgba(0, 0, 0, .45);
  font-size: 11px;
  display: inline-block;
}

.metadata .tick {
  display: inline-block;
  margin-left: 2px;
  position: relative;
  top: 4px;
  height: 16px;
  width: 16px;
}

.metadata .tick svg {
  position: absolute;
  -webkit-transition: .5s ease-in-out;
  -o-transition: .5s ease-in-out;
  transition: .5s ease-in-out;
}

.metadata .tick svg:first-child {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-transform: perspective(800px) rotateY(180deg);
  transform: perspective(800px) rotateY(180deg);
}

.metadata .tick svg:last-child {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-transform: perspective(800px) rotateY(0deg);
  transform: perspective(800px) rotateY(0deg);
}

.metadata .tick-animation svg:first-child {
  -webkit-transform: perspective(800px) rotateY(0);
  transform: perspective(800px) rotateY(0);
}

.metadata .tick-animation svg:last-child {
  -webkit-transform: perspective(800px) rotateY(-179.9deg);
  transform: perspective(800px) rotateY(-179.9deg);
}

.message:first-child {
  margin: 16px 0 8px;
}

.message.received {
  background: #fff;
  border-radius: 0px 5px 5px 5px;
  float: left;
}

.message.received .metadata {
  padding: 0 0 0 16px;
}

.message.received:after {
  border-width: 0px 10px 10px 0;
  border-color: transparent #fff transparent transparent;
  top: 0;
  left: -10px;
}

.message.sent {
  background: #e1ffc7;
  border-radius: 5px 0px 5px 5px;
  float: right;
}

.message.sent:after {
  border-width: 0px 0 10px 10px;
  border-color: transparent transparent transparent #e1ffc7;
  top: 0;
  right: -10px;
}

.slider .owl-item>div {
  cursor: pointer;
  margin: 6% 8%;
  transition: margin 0.4s ease;
}

.slider .owl-item.center>div {
  cursor: auto;
  margin: 0;
}

.slider .owl-item:not(.center)>div:hover {
  opacity: .75;
}

.pricecard:nth-child(4),
.pricecard:nth-child(5),
.pricecard:nth-child(6) {
  margin-top: 30px !important;
}

.card {
  position: relative;
  max-width: 370px;
  border-radius: 15px;
  border: 1px dashed var(--bs-primary) !important;
  outline: none;
  margin: 0 auto;
  border-radius: 30px !important;
  -webkit-box-shadow: 0 10px 15px rgba(0, 0, 0, .1);
  box-shadow: 0 10px 15px rgba(0, 0, 0, .1);
  -webkit-transition: .5s;
  transition: .5s;
  -webkit-border-radius: 30px !important;
  -moz-border-radius: 30px !important;
  -ms-border-radius: 30px !important;
  -o-border-radius: 30px !important;

}

.card:hover {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}


.card:not(.no-before)::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 40%;
  background: rgba(255, 255, 255, .1);
  z-index: 1;
  -webkit-transform: skewY(-5deg) scale(1.5);
  transform: skewY(-5deg) scale(1.5);
}

.card .card-title {
  margin-top: 30px;
  padding-bottom: 30px;
}


.card .card-body {
  border-top: 2px solid var(--bs-primary);
  padding: 30px;
  border-radius: 130px;
  -webkit-border-radius: 140px;
  -moz-border-radius: 130px;
  -ms-border-radius: 130px;
  -o-border-radius: 130px;
}

.card .card-body .price {
  border: 2px solid white;
  border-radius: 100px;
  -webkit-border-radius: 100px;
  -moz-border-radius: 100px;
  -ms-border-radius: 100px;
  -o-border-radius: 100px;
  width: 110px;
  height: 110px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  margin-bottom: 30px;
  background-color: var(--bs-primary);
  ;
  color: white !important;
  font-size: 28px;
}

.card .card-discription {
  padding-top: 60px;
  padding-bottom: 10px;
  line-height: 1.5;
}

.card .card-body .btn {
  width: 180px;
}

.card .card-body .btn:hover {
  cursor: pointer !important;
}

.slider .owl-prev {
  font-size: 80px !important;
  position: relative;
  right: 10px;
}

.slider .owl-next {
  font-size: 80px !important;
}

.slider .owl-nav {
  display: flex;
  justify-content: center;
}


.carousel {
  margin: 50px auto;
}

.carousel .carousel-item {
  color: #999;
  overflow: hidden;
  min-height: 120px;
  font-size: 13px;
}

.carousel .media {
  position: relative;
  padding: 0 0 0 20px;
  margin-left: 20px;
}

.carousel .media img {
  width: 75px;
  height: 75px;
  display: block;
  border-radius: 50%;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  border: 2px solid #fff;
}

.carousel .testimonial {
  color: #fff;
  position: relative;
  background: var(--bs-primary) !important;
  padding: 15px;
  margin: 0 0 20px 20px;
}

.carousel .testimonial::before,
.carousel .testimonial::after {
  content: "";
  display: inline-block;
  position: absolute;
  left: 0;
  bottom: -20px;
}

.carousel .testimonial::before {
  width: 20px;
  height: 20px;
  background: var(--bs-primary) !important;
  box-shadow: inset 12px 0 13px rgba(0, 0, 0, 0.5);
}

.carousel .testimonial::after {
  width: 0;
  height: 0;
  border: 10px solid transparent;
  border-bottom-color: #fff;
  border-left-color: #fff;
}

.carousel .carousel-item .row>div:first-child .testimonial {
  margin: 0 20px 20px 0;
}

.carousel .carousel-item .row>div:first-child .media {
  margin-left: 0;
}

.carousel .testimonial p {
  text-indent: 40px;
  line-height: 21px;
  margin: 0;
}

.carousel .testimonial p::before {
  content: "\201D";
  font-family: Arial, sans-serif;
  color: #fff;
  font-weight: bold;
  font-size: 68px;
  line-height: 70px;
  position: absolute;
  left: -25px;
  top: 0;
}

.carousel .overview {
  padding: 3px 0 0 15px;
}

.carousel .overview .details {
  padding: 5px 0 8px;
}

.carousel .overview b {
  text-transform: uppercase;
  color: var(--bs-primary)5;
}

.carousel-control-prev,
.carousel-control-next {
  width: 30px !important;
  height: 30px;
  background: var(--bs-primary) !important;
  text-shadow: none;
  top: -50px !important;
}

.carousel-control-prev i,
.carousel-control-next i {
  font-size: 16px;
}

.carousel-control-prev {
  left: auto !important;
  right: 40px;
}

.carousel-control-next {
  left: auto;
}

.carousel-indicators {
  bottom: -80px !important;
}

.carousel-indicators li,
.carousel-indicators li.active {
  width: 17px !important;
  height: 17px !important;
  border-radius: 0 !important;
  margin: 1px 5px !important;
  box-sizing: border-box !important;
  -webkit-border-radius: 0 !important;
  -moz-border-radius: 0 !important;
  -ms-border-radius: 0 !important;
  -o-border-radius: 0 !important;
}

.carousel-indicators li {
  background: #e2e2e2 !important;
  border: 4px solid #fff !important;
}

.carousel-indicators li.active {
  color: #fff !important;
  background: var(--bs-primary) !important;
  border: 5px double !important;
}

.star-rating li {
  padding: 0 2px;
}

.star-rating i {
  font-size: 14px;
  color: #ffdc12;
}

title2::after {
  content: "";
  width: 20%;
  position: absolute;
  height: 4px;
  border-radius: 1px;
  background: var(--bs-primary);
  left: 0;
  top: 50px;
}


.information .information-card svg {
  width: 40px !important;
  height: 40px !important;
}

.information .information-card {
  padding-inline: 30px;
  max-width: 320px;
  border-left: 4px solid var(--bs-primary);

}

.feature_part {
  padding-top: 65px;

}

.feature_part .single_feature_text h2 {
  font-size: 42px;
  line-height: 1.222;
  margin-bottom: 20px;
}

@media (max-width: 576px) {
  .feature_part .single_feature_text h2 {
    margin-top: 0px;
    font-size: 25px;
    margin-bottom: 15px;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .feature_part .single_feature_text h2 {
    margin-top: 0px;
    font-size: 30px;
    margin-bottom: 15px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .feature_part .single_feature_text h2 {
    font-size: 30px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .feature_part .single_feature_text h2 {
    margin-top: 0px;
    font-size: 35px;
  }
}

.feature_part .single_feature_text p {
  line-height: 1.5;
}

.feature_part .single_feature_text .btn_1 {
  margin-top: 45px;
}

@media (max-width: 576px) {
  .feature_part .single_feature_text .btn_1 {
    margin-top: 25px;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .feature_part .single_feature_text .btn_1 {
    margin-top: 25px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .feature_part .single_feature_text .btn_1 {
    margin-top: 25px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .feature_part .single_feature_text .btn_1 {
    margin-top: 25px;
  }
}

.feature_part .single_feature_part {
  padding: 50px 20px 35px;
  text-align: center;
  -webkit-transition: 0.6s;
  transition: 0.6s;

}


@media (max-width: 576px) {
  .feature_part .single_feature_part {
    padding: 25px 10px;
    margin-top: 25px;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .feature_part .single_feature_part {
    padding: 30px 15px;
    margin-top: 25px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .feature_part .single_feature_part {
    padding: 30px 25px;
    margin-top: 25px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .feature_part .single_feature_part {
    margin-top: 25px;
  }
}

.feature_part .single_feature_part span {
  margin-bottom: 30px;
  display: inline-block;
  position: relative;
  z-index: 1;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  text-align: center;
  background-color: #ff914d30;
  display: inline-block;
  line-height: 80px;
  -webkit-transition: 0.6s;
  transition: 0.6s;
}

@media (max-width: 576px) {
  .feature_part .single_feature_part span {
    margin-bottom: 25px;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .feature_part .single_feature_part span {
    margin-bottom: 35px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .feature_part .single_feature_part span {
    margin-bottom: 35px;
  }
}

.feature_part .single_feature_part span i {
  color: #0c2e60;
  font-size: 24px;
  -webkit-transition: 0.6s;
  transition: 0.6s;
}

.feature_part .single_feature_part h4 {
  font-weight: 700;
  font-size: 23px;
  margin-bottom: 20px;
}

@media (max-width: 576px) {
  .feature_part .single_feature_part h4 {
    margin-bottom: 15px;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .feature_part .single_feature_part h4 {
    margin-bottom: 15px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .feature_part .single_feature_part h4 {
    margin-bottom: 15px;
  }
}

.feature_part .single_feature_part p {
  color: #7f7f7f;
  line-height: 1.5
  font-size: 15px;
  text-align: justify;
}




.single_feature_padding {
  padding-top: 140px;
}

@media (max-width: 576px) {

  .single_feature_padding {
    padding-top: 70px;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {

  .single_feature_padding {
    padding-top: 70px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {

  .single_feature_padding {
    padding-top: 70px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {

  .single_feature_padding {
    padding-top: 70px;
  }
}

.service-item {
  box-shadow: 0 0 45px rgba(0, 0, 0, .07);
  width: 400px;
}

.service-item img {
  height: 200px;

}

.contact-info {
  display: flex;
  align-items: center;
  margin: 50px 0px;
}

.contact-info i {
  font-size: 30px;
  color: var(--bs-dark);
  margin-right: 20px;
}

.contact-upper {
  width: 100%;
  height: 300px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--bs-dark);
}

.contact-info-main {
  padding-top: 50px;
}

.header-top {
  width: 100%;
  height: 500px;
  background: linear-gradient(rgba(0, 0, 0, 0.70),
      rgba(0, 0, 0, 0.68)), url(../Images/drive10.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  justify-content: center;
  align-items: center;

}

.header-top .content h1 {
  color: #FF914D;
  text-align: center;
  font-weight: 800;
  font-size: 64px;
}

.header-top .content P {
  color: var(--background);
  font-size: 20px;
  text-align: center;
}

.header-top .content .link {
  display: flex;
  justify-content: center;
  align-items: center;
}

.header-top .content .theme-btn {
  margin-top: 30px;

}

.head-service .text {
  font-size: 20px;
  line-height: 1.5;
  font-weight: 600;
  text-align: justify;
}

.head-service img {
  border-radius: 20px;
  box-shadow: rgba(255, 145, 0, 0.2) 0px 8px 24px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  -o-border-radius: 20px;
}

.services-section-four {
  position: relative;
  z-index: 1;

}

.services-block-four {
  position: relative;
}

.services-block-four .inner-box {
  position: relative;
  overflow: hidden;
  -webkit-transition: all 1000ms ease;
  -moz-transition: all 100ms ease;
  -ms-transition: all 1000ms ease;
  -o-transition: all 1000ms ease;
  transition: all 1000ms ease;
}

.services-block-four .inner-box .image {
  position: relative;
}

.services-block-four .inner-box .image img {
  position: relative;
  width: 100%;
  display: block;
}

.services-block-four .inner-box .image .overlay-box {
  position: absolute;
  left: 0px;
  bottom: 0px;
  height: 60px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px 45px 10px;
  -webkit-transition: all 1000ms ease;
  -moz-transition: all 100ms ease;
  -ms-transition: all 1000ms ease;
  -o-transition: all 1000ms ease;
  transition: all 1000ms ease;
  background-color: var(--main-color);
}

.services-block-four .inner-box .image .overlay-box .content {
  position: relative;
  align-self: center;

}

.services-block-four .inner-box .image .overlay-box .content .icon-box {
  position: absolute;
  left: -45px;
  top: 0px;
  color: #eee;
  font-size: 26px;
  line-height: 1em;
}

.services-block-four .inner-box .image .overlay-box h6 {
  position: relative;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.4em;
  font-size: 20px;
}

.services-block-four .inner-box:hover .image .overlay-box {
  margin-bottom: -100px;
}

.services-block-four .inner-box .image .overlay-box-two {
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  display: block;
  color: #ffffff;
  opacity: 0;
  transition: all 500ms ease;
  -webkit-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -webkit-transform: scaleX(0);
  -ms-transform: scaleX(0);
  -o-transform: scaleX(0);
  -moz-transform: scaleX(0);
  transform: scaleX(0);
  background-color: var(--main-color);
}

.services-block-four .inner-box:hover .image .overlay-box-two {
  top: 0px;
  opacity: 1;
  -webkit-transform: scaleX(1);
  -ms-transform: scaleX(1);
  -o-transform: scaleX(1);
  -moz-transform: scaleX(1);
  transform: scaleX(1);
}

.services-block-four .inner-box .image .overlay-box-two .overlay-inner-two {
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  display: table;
  vertical-align: middle;
  padding: 10px 30px;
}

.services-block-four .inner-box .image .overlay-box-two .overlay-inner-two .content {
  position: relative;
  display: table-cell;
  vertical-align: middle;
}

.services-block-four .inner-box .image .overlay-box-two .icon-box {
  position: absolute;
  left: 0px;
  color: var(--bs-dark);
  font-size: 16px;
  line-height: 1em;
}

.services-block-four .inner-box .image .overlay-box-two h6 {
  position: relative;
  font-weight: 700;
  line-height: 1.4em;
  font-size: 20px;
  margin-bottom: 12px;
}

.services-block-four .inner-box .image .overlay-box-two h6 a {
  position: relative;
  color: #ffffff;
}

.services-block-four .inner-box .image .overlay-box-two .text {
  position: relative;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6em;
  color: #ffffff;
  margin-bottom: 15px;
}

.services-block-four .inner-box .image .overlay-box-two .read-more {
  position: relative;
  color: #509cf9;
  font-size: 14px;
  transition: all 500ms ease;
  -webkit-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  -moz-transition: all 500ms ease;
}

.services-block-four .inner-box .image .overlay-box-two .read-more:hover {
  color: #ffffff;
}

.services-section-four .btn-box {
  position: relative;
  margin-top: 45px;
}

/* News Block Four */

.news-block-four {
  position: relative;
  margin-bottom: 0px;
}

.news-block-four .inner-box {
  position: relative;
  transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -webkit-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.15);
}

.news-block-four .inner-box .image {
  position: relative;
  overflow: hidden;
}

.news-block-four .inner-box .image img {
  position: relative;
  width: 100%;
  display: block;
}

.news-block-four .inner-box .image .overlay-box {
  position: absolute;
  content: '';
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  display: block;
  text-align: center;
  transition: all 300ms ease;
  -webkit-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
}

.news-block-four .inner-box .image .overlay-box .plus {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 54px;
  height: 54px;
  color: #012068;
  font-size: 18px;
  line-height: 54px;
  text-align: center;
  border-radius: 50%;
  font-weight: 700;
  margin-left: -27px;
  margin-top: -27px;
  transform: scale(0, 0);
  -moz-transform: scale(0, 0);
  -webkit-transform: scale(0, 0);
  -ms-transform: scale(0, 0);
  -o-transform: scale(0, 0);
  display: inline-block;
  background-color: #ffffff;
  transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -webkit-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
}

.news-block-four .inner-box:hover .image .overlay-box .plus {
  transform: scale(1, 1);
  -moz-transform: scale(1, 1);
  -webkit-transform: scale(1, 1);
  -ms-transform: scale(1, 1);
  -o-transform: scale(1, 1);
}

.news-block-four .inner-box .image .overlay-box:before {
  position: absolute;
  content: '';
  left: -100%;
  top: 0px;
  width: 100%;
  height: 100%;
  opacity: 0.85;
  display: block;
  transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -webkit-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  background-color: rgba(0, 0, 0, 0.90);
}

.news-block-four .inner-box:hover .image .overlay-box:before {
  left: 0%
}

.news-block-four .inner-box .lower-content {
  position: relative;
  transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -webkit-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  padding: 30px 30px 35px;
}

.news-block-four .inner-box .lower-content .post-meta {
  position: relative;
}

.news-block-four .inner-box .lower-content .post-meta li {
  position: relative;
  margin-right: 20px;
  color: #0b1598;
  font-size: 14px;
  padding-left: 22px;
  display: inline-block;
}

.news-block-four .inner-box .lower-content .post-meta li:last-child {
  margin-right: 0px;
}

.news-block-four .inner-box .lower-content .post-meta li .fa {
  position: absolute;
  left: 0px;
  top: 0px;
  color: var(--main-color);
  font-size: 14px;
}

.news-block-four .inner-box .lower-content h5 {
  position: relative;
  font-weight: 700;
  line-height: 1.5em;
  margin-bottom: 13px;
  margin-top: 8px;
  margin-bottom: 24px;
}

.news-block-four .inner-box .lower-content h5 a {
  position: relative;
  color: #012068;
  transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -webkit-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
}

/* Blog Single */

.blog-single {
  position: relative;
}

.blog-single .inner-box {
  position: relative;
  border-radius: 5px;
  overflow: hidden;
}

.blog-single .inner-box .image {
  position: relative;
}

.blog-single .inner-box .image img {
  position: relative;
  width: 100%;
  display: block;
}

.blog-single .inner-box .lower-content {
  position: relative;
  padding: 25px 25px;
}

.blog-single .inner-box .lower-content .post-meta {
  position: relative;
  margin-bottom: 18px;
  padding-bottom: 16px;
  border-bottom: 1px solid #ececf0;
}



.blog-single .inner-box .lower-content .post-meta li {
  position: relative;
  margin-right: 20px;
  color: #333333;
  font-size: 14px;
  font-weight: 600;
  padding-left: 22px;
  display: inline-block;
}

.blog-single .inner-box .lower-content .post-meta li:last-child {
  margin-right: 0px;
}

.blog-single .inner-box .lower-content .post-meta li .fa {
  position: absolute;
  left: 0px;
  top: 0px;
  color: var(--main-color);
  font-size: 14px;
}

.blog-single .inner-box .lower-content h4 {
  position: relative;
  color: #012068;
  font-weight: 600;
  line-height: 1.4em;
  margin-bottom: 13px;
  margin-top: 20px;
  margin-bottom: 28px;
  font-size: 30px;
}

.blog-single .inner-box .lower-content .text {
  position: relative;
}

.blog-single .inner-box .lower-content .text .news-gallery {
  position: relative;
  margin-top: 30px;
}

.blog-single .inner-box .lower-content .text .news-gallery .row {
  margin: 0px -12px;
}

.blog-single .inner-box .lower-content .text .news-gallery .column {
  padding: 0px 12px;
  margin-bottom: 24px;
}

.blog-single .inner-box .lower-content .text h5 {
  position: relative;
  color: #1a1e66;
  font-weight: 500;
  line-height: 1.4em;
  margin-top: 15px;
  margin-bottom: 20px;
}

.blog-single .inner-box .lower-content .text p {
  position: relative;
  color: #000;
  font-size: 16px;
  line-height: 1.9em;
  margin-bottom: 20px;
  font-size: 20px;
}

.blog-single .inner-box .lower-content .text p a {
  color: #1a1e66;
  font-weight: 600;
  text-decoration: underline;
}

.blog-single .inner-box .lower-content blockquote {
  position: relative;
  border: none;
  padding: 0px;
  margin-top: 40px;
  margin-bottom: 30px;
  background-color: #f4f7fc;
  padding: 45px 30px 45px 110px;
}

.blog-single .inner-box .lower-content blockquote .quote-icon {
  position: absolute;
  left: -20px;
  top: -20px;
  width: 113px;
  height: 113px;
  color: var(--main-color);
  font-size: 40px;
  line-height: 113px;
  text-align: center;
  border-radius: 50%;
  background-color: #ffffff;
}

.blog-single .inner-box .lower-content blockquote .quote-text {
  position: relative;
  font-size: 20px;
  color: #1a1e66;
  font-weight: 400;
  line-height: 1.7em;
}

.btn-style-eighteen {
  font-size: 20px;
  font-weight: 700;
}

.nav-last .intensive:hover {
  color: #092139;
  font-size: 22px;
  text-shadow: 2px 1px 3px rgba(255, 255, 255, 0.856);
}


.address-main .address-title {
  font-size: 30px;
  padding-bottom: 15px;
  text-align: center;
  border-bottom: 1px solid #00000034;
}

.address {
  display: flex;
  align-items: flex-start;
  font-size: 20px;
  font-weight: 600;
  padding: 20px 10px;
}

.address-main .main-address {
  width: 25%;
  border-right: 1px solid #00000034;
}

.address-main .centers {
  width: 75%;
}

.address-main .address i {
  color: var(--main-color);
}

.address-main {
  display: flex;
  justify-content: space-between;
  padding: 2rem;
  border-radius: 15px;
  -webkit-box-shadow: rgba(61, 61, 59, 0.336) 0px 2px 8px 0px;
  box-shadow: rgba(61, 61, 59, 0.336) 0px 2px 8px 0px;
  margin: 0rem 0rem 3rem;
}

.address-main .address .addres-single {
  display: flex;
  align-items: flex-start;
  font-size: 20px;
  padding-inline: 15px;
  font-weight: 600;
}

.activetabletxt:hover {
  cursor: pointer;
  color: var(--main-color);
  font-weight: 700;
}


/* ------------------------- price card pass me fast ------------------------ */

.price-row .col-lg-4,
.price-row .col-md-6,
.price-row .col-sm-12 {
  display: flex;
  justify-content: center;
  align-items: center;
}

.pricecard-pass-main {
  border: 5px solid #32C3D7;
  background-color: var(--white-color);
  width: 380px;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
}

.pricecard-pass {
  padding: 10px 20px 0px 20px;
}

.pricecard-pass-main .head {
  display: flex;
  justify-content: Center;
  align-items: center;
  width: 100%;
  padding: 10px 0px;
  background-color: #32C3D7;
}

.pricecard-pass-main .head span {
  color: #fff;
  font-weight: 600;
  font-size: 20px;
}

.pricecard-pass .head-2 {
  display: flex;
  justify-content: Center;
  align-items: center;
}

.pricecard-pass .head-2 .hour {
  width: 120px;
  height: 120px;
  background-color: #EAF9FB;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  color: #000;
  padding: 20px 0px;
}

.pricecard-pass .head-2 .hour h1 {
  font-size: 42px;
  font-weight: 800;
}

.pricecard-pass .head-2 .hour span {
  font-size: 17px;
  font-weight: 400;
  margin-top: -10px;
}


.pricecard-pass .price-main {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-inline: 15px;
  padding-top: 10px;
  border-bottom: 1px solid #00000034;
}

.pricecard-pass .price-main .price {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-end;
  color: #000;

}

.pricecard-pass .price-main .price span {
  font-size: 15px;
  font-weight: 400;
}

.pricecard-pass .price-main .price h1 {
  font-size: 40px;
  font-weight: 800;
  color: #32C3D7;
}


.pricecard-pass .discription {
  text-align: left;
  padding: 15px 0px 0px 0px;
  display: flex;
  flex-direction: column;
}

.pricecard-pass .discription span {
  font-size: 17px;
  font-weight: 700;
  line-height: 1.5;
}

.pricecard-pass .discription span::before {
  content: "\f00c";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  margin-right: 10px;
  color: #32C3D7;
}

.pricecard-pass-main .bestseller {
  background-color: #E3B557;
  color: #fff;
  padding-inline: 30px;
  padding: 5px;
  width: max-content;
  width: 130px;
  text-align: center;
  margin-right: 15px;
}

.pricecard-pass-main .bestseller i {
  color: white;
  font-size: 15px;
  margin-right: 10px;
}


.pricecard-pass .duration {
  display: flex;
  justify-content: center;
  align-items: center;
  border-top: 1px solid #00000034;
  padding: 10px 0px;

}

.pricecard-pass .duration i {
  font-size: 30px;
  margin-right: 25px;
  color: #32C3D7;
}

.pricecard-pass .duration span {
  font-size: 20px;
  color: #000;
  font-weight: 700;
}

.pricecard-pass .duration h2 {
  font-weight: 700;
  font-size: 35px;
  color: #32C3D7;
}

.pricecard-pass-main .navigate {
  width: 100%;
  background-color: #32C3D7;
  color: #fff;
  text-align: center;
  font-size: 20px;
  font-weight: 600;
  cursor: pointer;
  padding: 10px 0px;
}
.pricecard-pass-main .navigate a{
  color: #fff;
  font-weight: 700;
  font-size: 22px;
}


#price2 {
  border-color: #FFB84C;
}

#price2 .head {
  background-color: #FFB84C;
}
#price2 .pricecard-pass .head-2 .hour {
  background-color: #FFF7E8;
}

#price2 .pricecard-pass .price-main .price h1 {
  color: #FFB84C;
}

#price2 .pricecard-pass .duration h2 {
  color: #FFB84C;
}
#price2 .pricecard-pass .discription span::before{
  color: #FFB84C;
}

#price2 .pricecard-pass .duration i {
  color: #FFB84C;

}

#price2 .navigate {
  background-color: #FFB84C;
}



/* -------------------------------- timeline -------------------------------- */

.timeline-featuers {
  border: 1px solid #28282850;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  background-color: #fff;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  margin: 20px 10px;
}

.timeline-featuers .top {
  width: 100%;
  background-color: #0D2B4B;
  padding: 10px 0px;
  color: #fff;
  border-radius: 10px;
  text-align: center;

}

.timeline-featuers .timecard {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  flex-wrap: wrap;
  border-right: 1px solid #28282850;
  margin: 20px 0px;
}

.timeline-featuers .timecard .icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #00aced;

}

.timeline-featuers .timecard .icon i {
  font-size: 30px;
  color: #fff;

}

.timeline-featuers .timecard span {
  font-size: 40px;
  color: #00aced;
  font-weight: 700;
}

.timeline-featuers .timecard p {
  font: 18px;
  font-weight: 600;
}

.timeline-featuers #time2 .icon {
  background-color: #FFAA00;
}

.timeline-featuers #time2 span {
  color: #FFAA00;
}

.timeline-featuers #time1 .icon {
  background-color: #2ACD5A;
}

.timeline-featuers #time1 span {
  color: #2ACD5A;
}

.timeline-featuers .timecard .content1 {
  min-height: 150px;
  text-align: justify;
  padding: 10px 10px;
}

.timeline-featuers .timecard .content1 p {
  line-height: 2;
}
.Google-review{
max-height: 700px;
overflow-y: scroll;
margin-bottom: 100px;
}
.price-switch{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-around;
}
.price-heading{
  margin-top: 150px;
}
.question{
  padding: 4rem 0rem;
}
.faqs{
  position: relative;
  z-index: 1 !important;
}
.price-box {
    text-align: center !important;
    padding: 1em;
    margin-top: 1em;
    margin-bottom: 1em;
    display: inline !important;
}
.price-box:hover {
    background-color: #e5e5e5;
    border: 0px solid #c9c4c4;
    cursor: pointer;
    border-radius: 10px;
}
.price-box.book-active {
    background-color: #b1b1b1 !important;
    border-radius: 10px;
}
.price-box.book-active *{
    color: white !important;
    font-weight: bold !important;
}

.mobile-btn-intensive-course {
    height: 45px !important;
    margin-top: 7px;
    padding: 6px !important;
}


.popup {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.95);
    background: linear-gradient(135deg, #fff 80%, #e3f0ff 100%);
    border: none;
    border-radius: 18px;
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.25);
    z-index: 9999;
    min-width: 45vw;
    max-width: 900px;
    transition: box-shadow 0.3s, transform 0.3s;
    animation: popupFadeIn 0.5s;
    overflow: hidden;
    overflow-y: auto;
}

@keyframes popupFadeIn {
    from {
        opacity: 0;
        transform: translate(-50%, -60%) scale(0.9);
    }

    to {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
    }
}

.popup-row {
    width: 100%;
    margin: 0;
}

.popup-img-col {
    padding: 30px;
}

.popup-img {
    border-radius: 18px;
}

.popup-content {
    padding: 30px;
}

    .popup-content h2 {
        margin: 0 0 12px;
        font-size: 1.7rem;
        color: #FF914D;
        letter-spacing: 1px;
        font-weight: 700;
    }

.popup-offer-title {
    font-size: 1.2rem;
    color: #1976d2;
    font-weight: 600;
}

.popup-lead {
    font-size: 1.2rem;
    color: #263238;
    text-align: center;
    margin-bottom: 8px;
    font-weight: 700;
}

.popup-btn {
    width: 48%;
    font-size: 1.1rem;
    margin: 0 1%;
}

.mail-input {
    animation: fadeInMail 0.4s;
    padding: 8px 5PX;
    display: flex;
    justify-content: space-between;
    margin-top: 3rem;
}

@keyframes fadeInMail {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.mail-input input[type="email"] {
    padding: 10px 12px;
    border: 1px solid #bdbdbd;
    border-radius: 5px;
    font-size: 1rem;
    margin-bottom: 10px;
    outline: none;
    transition: border 0.2s;
}

    .mail-input input[type="email"]:focus {
        border: 1.5px solid #1976d2;
    }

.send-button {
    width: 100%;
    margin-top: 0;
}

.close-btn {
    position: absolute;
    top: -5px;
    right: 10px;
    background: transparent;
    border: 0;
    outline: none !important;
    font-size: 2rem;
    color: black;
    cursor: pointer;
    transition: color 0.2s;
}


.pop-one-btn {
    background-color: #FF914D;
    color: #fff;
    border: 1px solid #FF914D;
}

.popup-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(44, 62, 80, 0.25);
    backdrop-filter: blur(16px);
    z-index: 1032;
    transition: backdrop-filter 0.3s;
}

.pop-up {
    width: 48%;
}

.pop-up input {
    height: 50px;
    margin-top: 0.5rem;
}


.set-btn-group-pop {
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin-top: 1.5rem;
    width: 100%;
    flex-wrap: wrap;
}
/* Responsive */
@media (max-width: 767px) {
    .popup {
        min-width: 98vw;
        width: 98vw;
        min-height: unset;
        max-height: 98vh;
        border-radius: 12px;
        padding: 0;
    }

    .popup-row {
        flex-direction: column;
        min-height: unset;
    }

    .popup-content-col {
        padding: 18px 8px;
    }

    .popup-content {
        padding: 18px 8px;
    }

    body.popup-open {
        overflow: hidden;
        position: fixed;
        width: 100vw;
    }
}

@media (max-width: 550px) {
    .btn-group {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .btn-group a {
        width: 100% !important;
        justify-content: center;
    }

    .set-btn-group-pop {
        justify-content: center;
        align-items: center;
        gap: 10px;
        margin-top: 1.5rem;
        width: 100%;
        flex-wrap: wrap;
    }
}