:root {
  --primary: #fdc830;
  --light: #f8f8f8;
  --dark: #111212;
  --light-dark: #161616;
}

.text-primary {
  color: var(--primary) !important;
}

.btn-primary {
  background-color: var(--primary) !important;
  border-color: var(--primary) !important;
  border-radius: 0;
}

.border-primary {
  border-color: var(--primary) !important;
}
.bg-dark {
  background-color: var(--dark) !important;
}
.bg-light-dark {
  background-color: var(--light-dark) !important;
}

body {
  font-family: 'Nunito', sans-serif;
  font-weight: normal;
  color: var(--light);
  background-color: var(--dark);
  direction: ltr;
}

body.dark {
  --primary: #fdc830;
  --light: #f8f8f8;
  --dark: #111212;
  --light-dark: #161616;
  color: var(--light);
  background-color: var(--dark);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--light);
}
h1 {
  font-weight: 800 !important;
}
p {
  color: var(--light);
}
.header {
  background-color: var(--dark);
}
.logo h1 {
  text-transform: uppercase;
  font-size: clamp(16px, 4vw, 26px);
}
a {
  text-decoration: none;
}
.back-to-top {
  position: fixed;
  display: none;
  right: 30px;
  bottom: 30px;
  z-index: 99;
}

::placeholder {
  color: var(--light) !important;
  font-size: 14px;
  opacity: 1;
}


input:-moz-placeholder {
  color: var(--light) !important;
  font-size: 14px;
  opacity: 1;
}

textarea:-moz-placeholder {
  color: var(--light) !important;
  font-size: 14px;
  opacity: 1;
}


input:-ms-input-placeholder {
  color: var(--light) !important;
  font-size: 14px;
  opacity: 1;
}

.form-control {
  color: var(--dark);
  border-radius: 0;
}

.form-floating > label {
  color: var(--dark);
}

.form-floating > .form-control-plaintext ~ label,
.form-floating > .form-control:focus ~ label,
.form-floating > .form-control:not(:placeholder-shown) ~ label,
.form-floating > .form-select ~ label {
  color: var(--primary) !important;
}


#spinner {
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.5s ease-out,
    visibility 0s linear 0.5s;
  z-index: 99999;
}

#spinner.show {
  transition:
    opacity 0.5s ease-out,
    visibility 0s linear 0s;
  visibility: visible;
  opacity: 1;
}


.btn {
  font-weight: 500;
  transition: 0.5s;
}

.btn.btn-primary,
.btn.btn-secondary {
  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: flex;
  align-items: center;
  justify-content: center;
  font-weight: normal;
}

.btn-outline-body {
  color: var(--primary);
  border-color: #777777;
}

.btn-outline-body:hover {
  color: #ffffff;
  background: var(--primary);
  border-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;
  margin-right: 8px;
}

.navbar .navbar-nav .nav-link {
  margin-right: 30px;
  padding: 30px 0;
  color: var(--light);
  font-weight: 500;
  text-transform: uppercase;
  outline: none;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
  color: var(--primary);
}

.navbar.sticky-top {
  top: -100px;
  transition: 0.5s;
}
.navbar-toggler {
  color: var(--light) !important;
  padding: 0;
  border: 0;
}
.navbar-toggler:focus {
  box-shadow: none;
}
.navbar-toggler-icon {
  background-image: none !important;
  color: var(--light) !important;
  font-size: 30px;
  width: auto;
  height: auto;
}

@media (max-width: 991.98px) {
  .navbar .navbar-nav .nav-link {
    margin-right: 0;
    padding: 10px 0;
  }
  .navbar.sticky-top {
    padding-top: 10px;
    padding-bottom: 10px;
  }
}

.dropdown-item.active,
.dropdown-item:active {
  background-color: var(--primary) !important;
}
.dropdown-item {
  transition: 0.5s;
  padding-top: 10px;
  padding-bottom: 10px;
}
.dropdown-item:focus,
.dropdown-item:hover {
  background-color: var(--primary) !important;
  color: var(--light) !important;
}

@media (min-width: 992px) {
  .navbar .nav-item .dropdown-menu {
    display: block;
    visibility: hidden;
    top: 100%;
    transform: rotateX(-75deg);
    transform-origin: 0% 0%;
    transition: 0.5s;
    opacity: 0;
    width: 240px;
  }

  .navbar .nav-item:hover .dropdown-menu {
    transform: rotateX(0deg);
    visibility: visible;
    transition: 0.5s;
    opacity: 1;
  }
}

@media (min-width: 430px) and (max-width: 930px) {
  .navbar-nav {
    height: 250px;
    overflow-y: scroll;
  }
}


.owl-carousel-inner {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  background: rgba(0, 0, 0, 0.5);
}

@media (max-width: 768px) {
  .header-carousel .owl-carousel-item {
    position: relative;
    min-height: 500px;
  }

  .header-carousel .owl-carousel-item img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .header-carousel .owl-carousel-item p {
    font-size: 16px !important;
  }
}

.header-carousel .owl-dots {
  position: absolute;
  width: 60px;
  height: 100%;
  top: 0;
  right: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.header-carousel .owl-dots .owl-dot {
  position: relative;
  width: 45px;
  height: 45px;
  margin: 5px 0;
  background: var(--dark);
  transition: 0.5s;
}

.header-carousel .owl-dots .owl-dot.active {
  width: 60px;
  height: 60px;
}

.header-carousel .owl-dots .owl-dot img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  padding: 2px;
  transition: 0.5s;
  opacity: 0.3;
}

.owl-carousel-item {
  height: 750px;
}

.header-carousel .owl-dots .owl-dot.active img {
  opacity: 1;
}

.page-header {
  background:
    linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
    url(../img/abstract-bg-1.jpg) center center no-repeat;
  background-size: cover;
}

.breadcrumb-item + .breadcrumb-item::before {
  color: var(--light);
}


.section-title {
  color: var(--primary);
  font-weight: 600;
  letter-spacing: 5px;
  text-transform: uppercase;
}


.fact-item h3 {
  color: var(--dark);
  font-weight: 600;
  font-size: 24px;
}
.fact-item p {
  color: var(--dark);
}
.facts-icon{
  width: 70px;
  height: 70px;
}
.fact-item .fact-icon {
  width: 120px;
  height: 120px;
  margin-top: -60px;
  margin-bottom: 1.5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  border-radius: 120px;
  transition: 0.5s;

  
  img{
    width: 90px;
    height: 90px;
    object-fit: contain;
  }
}

.fact-item:hover .fact-icon {
  background: var(--dark);
}

.fact-item .fact-icon i {
  color: var(--primary);
  transition: all 0.5s ease;
}

.fact-item:hover .fact-icon i {
  color: #ffffff;
}


.about-img,
.feature-img {
  position: relative;
  height: 100%;
  min-height: 400px;
}

.about-img-2 img {
  width: 100%;
  height: 300px;
  position: relative;
  object-fit: cover;
  max-width: 600px;
  display: block;
  margin: 0 auto;
}

.about-img img,
.feature-img img {
  position: absolute;
  width: 60%;
  height: 80%;
  object-fit: cover;
}

.about-img img:last-child,
.feature-img img:last-child {
  margin: 20% 0 0 40%;
}

.about-img::before,
.feature-img::before {
  position: absolute;
  content: "";
  width: 60%;
  height: 80%;
  top: 10%;
  left: 20%;
  border: 5px solid var(--primary);
  z-index: -1;
}


.service-item .bg-img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.service-item .service-text {
  background: var(--light);
  transition: 0.5s;
  z-index: 1;
}

.service-item:hover .service-text {
  background: rgba(0, 0, 0, 0.85);
}

.service-item * {
  transition: all 0.5s ease;
}

.service-item:hover * {
  color: #ffffff;
}
.service-item h3 {
  font-size: 25px;
}
.service-item h3,
.service-item p {
  color: var(--dark);
}

.service-item .btn {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  color: var(--dark);
  background: #ffffff;
  white-space: nowrap;
  overflow: hidden;
  transition: 0.5s;
}

.service-item:hover .btn {
  width: 140px;
}


.project .nav .nav-link {
  background: var(--light);
  transition: 0.5s;
  border-radius: 0;
  color: var(--dark);
  padding: 18px !important;
}
.project .nav .nav-link span {
  color: var(--dark);
  font-size: 20px;
  text-align: start;
}

.project .nav .nav-link.active {
  background: var(--primary);
}

.project .nav .nav-link.active span {
  color: #ffffff !important;
}


.team-items {
  margin: -0.75rem;
}

.team-item h3 {
  color: var(--dark);
  font-size: 20px;
}

.team-item {
  padding: 0.75rem;
}

.team-item::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 0;
  top: 0;
  left: 0;
  background: #ffffff;
  transition: 0.5s;
  z-index: -1;
}

.team-item:hover::after {
  height: 100%;
  background: var(--primary);
}

.team-item .team-social {
  position: absolute;
  width: 100%;
  bottom: -20px;
  left: 0;
}

.team-item .team-social .btn {
  display: inline-flex;
  margin: 0 2px;
  color: var(--primary);
  background: var(--light);
}

.team-item .team-social .btn:hover {
  color: #ffffff;
  background: var(--primary);
}


.bootstrap-datetimepicker-widget.bottom {
  top: auto !important;
}

.bootstrap-datetimepicker-widget .table * {
  border-bottom-width: 0px;
}

.bootstrap-datetimepicker-widget .table th {
  font-weight: 500;
}

.bootstrap-datetimepicker-widget.dropdown-menu {
  padding: 10px;
  border-radius: 2px;
}

.bootstrap-datetimepicker-widget table td.active,
.bootstrap-datetimepicker-widget table td.active:hover {
  background: var(--primary);
}

.bootstrap-datetimepicker-widget table td.today::before {
  border-bottom-color: var(--primary);
}


.testimonial-carousel {
  display: flex !important;
  flex-direction: column-reverse;
  max-width: 700px;
  margin: 0 auto;
}

.testimonial-carousel .owl-dots {
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 30px;
}

.testimonial-carousel .owl-dots .owl-dot {
  position: relative;
  width: 60px;
  height: 60px;
  margin: 0 5px;
  transition: 0.5s;
}

.testimonial-carousel .owl-dots .owl-dot.active {
  width: 100px;
  height: 100px;
}

.testimonial-carousel .owl-dots .owl-dot::after {
  position: absolute;
  width: 40px;
  height: 40px;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  content: "\f10d";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  color: var(--primary);
  background: #ffffff;
  border-radius: 40px;
  transition: 0.5s;
  opacity: 0;
}

.testimonial-carousel .owl-dots .owl-dot.active::after {
  opacity: 1;
}

.testimonial-carousel .owl-dots .owl-dot img {
  opacity: 0.4;
  transition: 0.5s;
  width: 50px;
  height: 50px;
}

.testimonial-carousel .owl-dots .owl-dot.active img {
  opacity: 1;
}


.footer .btn.btn-link {
  display: block;
  margin-bottom: 5px;
  padding: 0;
  text-align: start;
  color: #777777;
  font-weight: normal;
  text-transform: capitalize;
  transition: 0.3s;
  text-decoration: none;
}

.footer .btn.btn-link::before {
  position: relative;
  content: "\f105";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  color: var(--primary);
  margin-right: 10px;
  display: inline-block;
}

.footer .btn.btn-link:hover {
  color: var(--primary);
  letter-spacing: 1px;
  box-shadow: none;
  text-decoration: none;
}

.footer .form-control {
  border-color: #777777;
}

.footer .form-control:focus {
  color: var(--light) !important;
}

.footer .copyright {
  padding: 25px 0;
  font-size: 15px;
  border-top: 1px solid rgba(256, 256, 256, 0.1);
}

.footer .copyright p {
  color: var(--light);
}

.footer .copyright a {
  color: var(--light);
}

.footer .copyright a:hover {
  color: var(--primary);
}

.no-border {
  border: none;
}

.map-style {
  height: 450px;
}



.mt-0 {
  margin-top: 0px !important;
}
.mt-10 {
  margin-top: 10px;
}
.mt-15 {
  margin-top: 15px;
}
.mt-20 {
  margin-top: 20px;
}
.mt-30 {
  margin-top: 30px;
}
.mt-40 {
  margin-top: 40px;
}
.mt-50 {
  margin-top: 50px;
}
.mt-60 {
  margin-top: 60px;
}
.mt-70 {
  margin-top: 70px;
}
.mt-80 {
  margin-top: 80px;
}
.mt-90 {
  margin-top: 90px;
}
.mt-100 {
  margin-top: 100px !important;
}
.mt-110 {
  margin-top: 110px;
}
.mt-120 {
  margin-top: 120px;
}
.mt-130 {
  margin-top: 130px;
}
.mt-135 {
  margin-top: 135px;
}
.mt-140 {
  margin-top: 140px;
}
.mt-150 {
  margin-top: 150px !important;
}
.ml-10 {
  margin-left: 10px;
}
.ml-15 {
  margin-left: 15px;
}
.ml-20 {
  margin-left: 20px;
}
.ml-30 {
  margin-left: 30px;
}
.ml-40 {
  margin-left: 40px;
}
.ml-50 {
  margin-left: 50px;
}
.ml-60 {
  margin-left: 60px;
}
.ml-70 {
  margin-left: 70px;
}
.ml-80 {
  margin-left: 80px;
}
.mb-0 {
  margin-bottom: 0px !important;
}
.mb-5 {
  margin-bottom: 5px;
}
.mb-10 {
  margin-bottom: 10px;
}
.mb-20 {
  margin-bottom: 20px;
}
.mb-30 {
  margin-bottom: 30px;
}
.mb-40 {
  margin-bottom: 40px;
}
.mb-50 {
  margin-bottom: 50px;
}
.mb-60 {
  margin-bottom: 60px;
}
.mb-70 {
  margin-bottom: 70px;
}
.mb-80 {
  margin-bottom: 80px;
}
.mb-90 {
  margin-bottom: 90px;
}
.mb-100 {
  margin-bottom: 100px;
}
.mb-110 {
  margin-bottom: 110px;
}
.mb-120 {
  margin-bottom: 120px;
}

.mr-0 {
  margin-right: 0px !important;
}
.mr-5 {
  margin-right: 5px;
}
.mr-10 {
  margin-right: 10px;
}
.mr-20 {
  margin-right: 20px;
}
.mr-30 {
  margin-right: 30px;
}
.mr-40 {
  margin-right: 40px;
}
.mr-50 {
  margin-right: 50px;
}
.mr-60 {
  margin-right: 60px;
}
.mr-70 {
  margin-right: 70px;
}
.mr-80 {
  margin-right: 80px;
}
.mr-90 {
  margin-right: 90px;
}
.mr-100 {
  margin-right: 100px;
}
.mr-110 {
  margin-right: 110px;
}
.mr-120 {
  margin-right: 120px;
}

#registerMessage,
#reviewMessage {
  display: none;
}

.registerMessage,
.reviewMessage {
  background-color: var(--primary);
  color: #000000;
  padding: 30px;
  border-radius: 30px;

  h2,
  p {
    color: #000000 !important;
  }
}

.hero {
  height: auto;
  min-height: 700px;
  position: relative;
}

.navbar-brand {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
}

.navbar-brand img {
  width: 50px;
  height: 50px;
  object-fit: contain;
}

.owl-carousel{
  direction: ltr !important;
}
.owl-carousel .owl-item img {
  height: 100%;
  object-fit: cover;
}

.service-icon {
  width: 100px;
  height: 100px;
  object-fit: contain;
  display: inline-block;
  margin-bottom: 30px;

    img{
    width: 90px;
    height: 90px;
    object-fit: contain;
  }
}

body.ocean {
  --primary: #1a7d8a;
  --light: #f6fefd;
  --dark: #03181a;
  --light-dark: #1d1f1f;
  color: var(--dark);
  background-color: var(--light);

  .bg-light {
    background-color: #cdf9ff !important;

    h3,
    h4,
    h5,
    h2,
    h1,
    p {
      color: #000000 !important;
    }
  }

  #spinner img,
  .facts-icon,
  .service-icon img,
  .fact-icon img {
    filter: invert(36%) sepia(68%) saturate(438%) hue-rotate(140deg)
      brightness(90%) contrast(95%);
  }

  .fact-item:hover .fact-icon {
    background: var(--dark);
  }

  h1,
  h2,
  h3,
  h4,
  h5,
  h6 {
    color: var(--primary) !important;
  }

  p {
    color: var(--dark);
  }

  .footer p {
    color: var(--light) !important;
  }

  .footer .btn.btn-link {
    color: var(--light);
  }

  .form-control {
    color: var(--dark);
  }

  .registerMessage h2,
  .reviewMessage h2,
  .registerMessage p,
  .reviewMessage p {
    color: #fff !important;
  }

  #contact {
    .bg-light-dark {
      background-color: #54c5d4 !important;
    }

    .bg-dark {
      background-color: var(--light) !important;
    }

    .contact-col {
      a h3 {
        color: #fff;
        transition: 0.4s linear;
      }

      a h3:hover {
        color: var(--primary);
      }
    }
  }

  .owl-item h1 {
    color: #fff !important;
  }

  .hero h1 {
    color: #fff !important;
  }
}

body.midnight {
  --primary: #573fca;
  --light: #e8e8f1;
  --dark: #0b081a;
  --light-dark: #181138;

  color: var(--dark);
  background-color: var(--light);

  .bg-light {
    background-color: #deddff !important;

    h3,
    h4,
    h5,
    h2,
    h1,
    p {
      color: #000000 !important;
    }
  }

  #spinner img,
  .facts-icon,
  .service-icon img,
  .fact-icon img {
    filter: invert(27%) sepia(87%) saturate(2800%) hue-rotate(216deg)
      brightness(92%) contrast(95%);
  }

  .fact-item:hover .fact-icon {
    background: var(--dark);
  }

  h1,
  h2,
  h3,
  h4,
  h5,
  h6 {
    color: var(--primary) !important;
  }

  p {
    color: var(--dark);
  }

  .footer p {
    color: var(--light) !important;
  }

  .footer .btn.btn-link {
    color: var(--light);
  }

  .form-control {
    color: var(--dark);
  }

  .registerMessage h2,
  .reviewMessage h2,
  .registerMessage p,
  .reviewMessage p {
    color: #fff !important;
  }

  #contact {
    .bg-light-dark {
      background-color: #b1b0d5 !important;
    }

    .bg-dark {
      background-color: var(--light) !important;
    }

    .contact-col {
      a h3 {
        color: #fff;
        transition: 0.4s linear;
      }

      a h3:hover {
        color: var(--primary);
      }
    }
  }

  .owl-item h1 {
    color: #fff !important;
  }

  .hero h1 {
    color: #fff !important;
  }
}

.btn.btn-primary:hover,
.btn.btn-secondary:hover {
  transform: scale(0.91);
  opacity: 0.9;
}

a {
  color: var(--primary);
  transition: 0.4s linear;
}

a:hover {
  opacity: 0.9;
}

#portfolio-slider img {
  height: 430px !important;
  object-fit: cover;
  position: relative !important;
}

.testimonial-img {
  width: 200px !important;
  height: 200px !important;
  margin: 20px auto;
}

.blog-img {
  width: 100%;
  height: 300px;
  position: relative;
  display: inline-block;
}

.blog-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-item {
  background-color: var(--light);
  padding: 30px;
}

.footer .container {
  --bs-gutter-x: 3rem;
}

.project-img-single,
.blog-img-single,
.service-img-single {
  width: 100%;
  display: block;
  height: auto;
  max-width: 700px;
  margin: 0 auto 30px;
}

.login-link {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
}



.about-img img:first-child,
.feature-img img:first-child {
  filter: brightness(0.7);
}

.hero h1 {
  color: #fff !important;
}

#about-us-2 .about-img-2 {
  max-width: 800px;
  width: 100%;
  height: 340px;
  margin: 0 auto;
  border: 5px solid var(--primary);
  padding: 10px;

  img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover;
  }
}

#services-2 {
  .services-2-img {
    position: relative;
    width: 100%;
    height: 187px !important;
    display: inline-block;
    margin-bottom: 20px;

    img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      position: relative;
    }
  }
}

#project-2 {
  .project-img {
    display: inline-block;
    width: 100%;
    height: 230px;
    transition: 0.4s linear;

    img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
  }

  .project-img:hover {
    opacity: 0.9;
  }
}

.project-2-item {
  padding: 20px;
  background-color: var(--light);
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  text-align: center;
  border: 5px solid var(--primary);
}

#testimonial-row {
  .testimonial-item {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
    padding: 10px;
    height: 100%;
    background-color: var(--light);

    img {
      border: 5px solid var(--primary);
      width: 90px;
      height: 90px;
    }

    h3,
    h4,
    h5,
    p {
      color: var(--dark);
    }
  }
}

.testimonial-text {
  text-align: start;
}

#about-single-2 img {
  height: 440px;
  margin: 0 auto;
  border: 5px solid var(--primary);
  padding: 10px;
}

.flex-grow {
  flex-grow: 1;
}

#blog-cat-2 {
  .blog-item {
    border: 5px solid var(--primary);
    padding: 10px;
    background-color: var(--light);
  }
}

#project-cat-2 {
  .project-item {
    padding: 10px;
    border: 5px solid var(--primary);
    background-color: var(--light);
  }

  .project-img {
    height: 276px !important;
    display: inline-block;
    width: 100%;
    margin-bottom: 30px;

    img {
      width: 100%;
      height: 100%;
    }
  }
}

body.dark-red {
  --primary: #e44947;
  --light: #f8f8f8;
  --dark: #111212;
  --light-dark: #161616;
  color: var(--light);
  background-color: var(--dark);

  #spinner img,
  .facts-icon,
  .service-icon img,
  .fact-icon img {
    filter: invert(41%) sepia(74%) saturate(1820%) hue-rotate(325deg)
      brightness(95%) contrast(95%);
  }


}

.bg-light {
  
  color: #000000 !important;

  h3,
  h4,
  h5,
  h2,
  h1,
  p {
    color: #000000 !important;
  }
}

@media (max-width: 767px) {
  .fact-item {
    padding-bottom: 50px !important;
  }

  #testimonial-row {
    .testimonial-item {
      flex-direction: column;
      align-items: center;
      justify-content: center;
      text-align: center;
    }

    .testimonial-text{
      text-align: center;
    }
  }

  .header-carousel .owl-dots{
    right: 13px !important;
  }
}

.hero img {
  width: 100%;
  height: 100%;
  position: absolute;
  object-fit: cover;
  left: 0;
  top: 0;
}


.footer-contact{
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.breadcrumb {
    display: flex;
  flex-direction: row;
  align-items: anchor-center;
}

.footer .col-lg-3.col-md-6{
  flex-grow: 1;
}

@media (max-width: 991px){
    .fact-item {
    padding-bottom: 50px !important;
  }
}

.display-1{
  font-size: clamp(26px, 6vw, 56px) !important;
}

#services-id-1{
  .service-item:hover{
    h3, p{
      color: #fff !important;
    }
  }
}

.dir{
  direction: ltr !important;
}

#spinner img{
  width: 50px;
  height: 50px;
}

.comment-av img{
    width: 100px;
    height: 100px;
    object-fit: cover;
    border: 2px solid var(--primary);
}

.comment-single{
  max-width: 800px;
  width: 100%;
  margin: 30px auto;
}

.comment-block{
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
  padding: 20px;
  border: 2px solid var(--primary);

}

.reply-block{
  margin-top: 30px;
  margin-bottom: 30px;
  margin-left: auto;
  width: calc(100% - 100px);
  position: relative;
}

.reply-block::before {
  content: "\f3e5";
  font-family: "Font Awesome 6 Free";
  font-weight: 900; 
  position: absolute;
  left: -40px;
  top: 18px;
  font-size: 22px;
  color: var(--primary);
  transform: rotate(180deg);
}

.comment-name{
  color: var(--primary);
  font-size: 18px;
  margin-bottom: 12px;

}

.comments-title{
  margin-bottom: 30px;
  color: var(--primary);
}

.info-blog{
  display: flex;
  flex-direction: row;
  align-items: center;
  flex-wrap: wrap;
  justify-content: space-evenly;
  gap: 20px;
  margin-bottom: 30px;

  span{
    color: var(--primary);
  }
}

@media (max-width: 767px){
  .comment-block{
    flex-direction: column;
    text-align: center;
  }

  .reply-block{
    width: 90%;
  }

  .reply-block::before {
    left: -29px;
  }
}

.navbar-brand{
  margin-left: 0 !important;
  margin-right: 0 !important;
}

#single-blog{
  position: relative;
  flex-direction: row-reverse;
}

.single-img-wr{
  position: sticky;
  top: 20%;
}
.disclaimer-section {
  padding: 40px 0;
  background-color: #f8f9fb;
}

.disclaimer-box {
  max-width: 900px;
  margin: 0 auto;
  padding: 25px 30px;
  border-left: 4px solid var(--accent-color);
  background-color: #ffffff;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  border-radius: 12px;
  border: 3px double red;
}

.disclaimer-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--primary-text);
}

.disclaimer-text {
  font-size: 14px;
  line-height: 1.6;
  color: var(--secondary-text);
}

@media (max-width: 768px) {
  .disclaimer-box {
    padding: 20px;
  }

  .disclaimer-title {
    font-size: 16px;
  }

  .disclaimer-text {
    font-size: 13px;
  }
}