@import url("https://fonts.googleapis.com/css2?family=Golos+Text:wght@400..900&display=swap");
::-webkit-scrollbar-track {
  border: 0px;
  padding: 2px 0;
  background-color: #ffffff;
}

::-webkit-scrollbar {
  width: 5px;
}

::-webkit-scrollbar-thumb {
  border-radius: 5px;
  box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  background-color: #31968e;
  border: 0;
}

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

a {
  text-decoration: none !important;
}

.text-theme {
  color: #0f4642 !important;
}

.text-gray {
  color: #6f6f6f !important;
}

body {
  font-family: "Golos Text", sans-serif;
  line-height: 1.7;
  font-weight: normal;
  color: #6f6f6f !important;
  font-size: 16px !important;
  text-decoration: none;
  background: #fff;
}

.theme-bg {
  background: #31968e !important;
}

.light-bg {
  background: #ebeff0 !important;
}

.fixed-icon {
  position: fixed;
  right: 40px;
  bottom: 90px;
  width: 50px;
}
.fixed-icon .whatsppchat {
  width: 50px;
  height: 50px;
  background-color: #31968e;
  color: #ffffff;
  border-radius: 50px;
  text-align: center;
  font-size: 30px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  opacity: 1;
  z-index: 2;
  position: relative;
}
.fixed-icon .fb {
  margin-bottom: 10px;
}
.fixed-icon .insta {
  margin-bottom: 10px;
}
.fixed-icon .wave {
  position: absolute;
  top: 0;
  left: 0;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(37, 211, 102, 0.4);
  transform: scale(0.6);
  opacity: 0.8;
  animation: ripple 2.6s infinite;
  z-index: 1;
}
.fixed-icon .wave1 {
  animation-delay: 0s;
}
.fixed-icon .wave2 {
  animation-delay: 0.9s;
}
.fixed-icon .wave3 {
  animation-delay: 1.8s;
}
@keyframes ripple {
  0% {
    transform: scale(0.6);
    opacity: 0.8;
  }
  70% {
    transform: scale(1.8);
    opacity: 0.3;
  }
  100% {
    transform: scale(2.4);
    opacity: 0;
  }
}

.btn {
  font-size: 16px;
  line-height: 1.5em;
  font-weight: normal;
  letter-spacing: 0em;
  text-decoration: none;
  text-transform: capitalize;
  border-radius: 15px 15px 15px 0px;
  outline: 0;
  position: relative;
  padding: 12px 24px;
  display: inline-block;
  overflow: hidden;
}
.btn span {
  position: relative;
  z-index: 1;
}
.btn::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 0%;
  height: 100%;
  background-color: #0f4642;
  z-index: 0;
  transition: all 0.4s ease;
}
.btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0%;
  height: 100%;
  background-color: #0f4642;
  z-index: 0;
  transition: all 0.4s ease;
}
.btn:hover::after {
  width: 50%;
}
.btn:hover::before {
  width: 50%;
}

.btn-check:checked + .btn,
.btn.active,
.btn.show,
.btn:first-child:active,
:not(.btn-check) + .btn:active {
  background-color: #000 !important;
  border-color: #000 !important;
  color: #ffffff !important;
}

.btn:focus-visible {
  box-shadow: none !important;
  background: #000 0% 0% no-repeat padding-box;
  border-color: #000;
  color: #ffffff;
}

.btn-primary {
  background-color: #31968e;
  border: #31968e;
  color: #ffffff;
  display: inline-block;
  letter-spacing: 0em;
  text-decoration: none;
  text-transform: capitalize;
}
.btn-primary:hover {
  background: #31968e;
}
.btn-primary:hover::after {
  width: 50%;
}
.btn-primary:hover::before {
  width: 50%;
}
.btn-primary:focus, .btn-primary:active {
  background: #0f4642 !important;
  color: #ffffff;
}

.btn-outline-primary {
  border-color: #31968e;
  color: #31968e;
}
.btn-outline-primary:hover {
  background: transparent;
  border-color: #0f4642;
  color: #ffffff;
}

.btn-outline-light:hover {
  background: transparent;
  border-color: #ffffff;
  color: #ffffff;
}

.btn-secondary {
  background: #6f6f6f;
  border: #6f6f6f;
  color: #ffffff;
}
.btn-secondary:hover {
  color: #ffffff;
  border: #31968e;
  background: #31968e;
}
.btn-secondary:focus, .btn-secondary:active {
  color: #ffffff;
  border: #31968e;
  background: #31968e;
}

.btn-light {
  background-color: #fff;
  border: #fff;
  color: #000;
}
.btn-light:hover {
  background-color: #000;
  border: #000;
  color: #fff;
}
.btn-light:focus, .btn-light:active {
  background-color: #000;
  border: #000;
  color: #fff;
}

.circle-icon {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-size: 21px;
  text-align: center;
  border-radius: 50px;
  width: 50px;
  height: 50px;
  background-color: #31968e;
  color: #fff;
}
.circle-icon:hover {
  background-color: #6f6f6f;
  color: #fff;
}

@keyframes tilt-shaking {
  0% {
    transform: scale(1);
  }
  25% {
    transform: scale(1.03);
  }
  50% {
    transform: scale(1);
    opacity: 0.8;
  }
  75% {
    transform: scale(1.03);
  }
  100% {
    transform: scale(1);
  }
}
.form-control {
  padding: 15px 20px;
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  text-transform: capitalize;
  color: #333;
  background-color: #ebeff0;
  border: 0;
  border-radius: 10px 10px 10px 0;
  box-shadow: none;
}
.form-control::-moz-placeholder {
  color: #a5a5a5;
  opacity: 1;
}
.form-control::placeholder {
  color: #a5a5a5;
  opacity: 1;
}

form label {
  font-size: 15px;
  font-weight: 400;
  line-height: 18px;
  letter-spacing: 0px;
  text-align: left;
  margin-bottom: 5px;
  text-transform: capitalize;
}
form .form-group .input-group-text {
  padding: 0.375rem;
  width: 45px;
  text-align: center;
  display: inline-grid;
}
form .form-group .input-group-text {
  background-color: rgba(0, 79, 76, 0.28) !important;
  border-right: 0;
  border-top-left-radius: 8px;
  border-bottom-left-radius: 8px;
  color: #0f4642;
  border: 1px solid transparent;
}

hr {
  border-color: #0f4642;
}

.g-recaptcha {
  transform: scale(0.77);
  -webkit-transform: scale(0.77);
  transform-origin: 0 0;
  -webkit-transform-origin: 0 0;
}

.help-block {
  display: inline-block;
  font-size: 13px;
  background: #ff7171;
  color: white;
  padding: 2px 10px;
  margin-top: 8px;
  position: relative;
  border-radius: 3px;
}
.help-block:after {
  content: "";
  display: block;
  position: absolute;
  top: -5px;
  left: 10px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 5px 5px 5px;
  border-color: transparent transparent #ff7171;
}

.sub-title {
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  letter-spacing: 0em;
  color: #848484;
  text-transform: uppercase;
}

.main-title {
  font-size: 42px;
  text-transform: capitalize;
  color: #000;
  font-weight: 700;
  line-height: 52px;
  letter-spacing: 0em;
}

.heading-title {
  font-size: 32px;
  font-weight: 600;
  line-height: 42px;
  letter-spacing: 0em;
  margin-bottom: 30px;
  color: #000;
}

.heading-large {
  font-size: 45px;
  font-weight: 600;
  line-height: 55px;
  letter-spacing: 0em;
  margin-bottom: 30px;
  color: #252525;
}

.owl-carousel .owl-dots.disabled,
.owl-carousel .owl-nav.disabled {
  display: none !important;
}

.owl-arrow-middle .owl-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  justify-content: space-between;
  display: flex;
  height: 30px;
}
.owl-arrow-middle .owl-nav button {
  position: absolute;
}
.owl-arrow-middle .owl-nav button img {
  width: 20px;
}
.owl-arrow-middle .owl-nav .owl-prev {
  left: -50px;
}
.owl-arrow-middle .owl-nav .owl-next {
  right: -50px;
}

.terms {
  padding: 40px 0;
}
.terms .sidebar a {
  display: block;
  font-size: 14px;
  font-weight: 400;
  line-height: 22px;
  letter-spacing: 0em;
  text-align: left;
  padding-bottom: 15px;
  color: #252525;
}
.terms .sidebar .active {
  font-size: 14px;
  font-weight: 400;
  line-height: 22px;
  letter-spacing: 0em;
  text-align: left;
  color: #449452;
}
.terms .date {
  font-size: 16px;
}
.terms p {
  font-size: 14px;
  font-weight: 400;
  line-height: 22px;
  letter-spacing: 0em;
  text-align: left;
  color: #252525;
}
.terms li {
  font-size: 14px;
  font-weight: 400;
  line-height: 22px;
  letter-spacing: 0em;
  text-align: left;
  color: #252525;
  margin-bottom: 10px;
}

.pagination {
  margin: 40px 0px;
  position: relative;
  z-index: 0;
}
.pagination .page-item .page-link,
.pagination .page-item a {
  border: none;
  box-shadow: none;
  background: transparent;
  color: #252525;
  text-align: center;
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: 0px;
  padding: 7px 13px;
  text-align: center;
}
.pagination .page-item .page-link.disable,
.pagination .page-item a.disable {
  opacity: 0.6;
}
.pagination .page-item .page-link.active,
.pagination .page-item a.active {
  color: #449452;
  font-weight: bold;
  opacity: 1;
}
.pagination .page-item .page-link:hover,
.pagination .page-item a:hover {
  color: #449452;
  font-weight: bold;
  opacity: 1;
}
.pagination .page-item .prev {
  margin-right: 15px;
}
.pagination .page-item .next {
  margin-left: 15px;
}

.atc-success {
  background: #fff;
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 999;
  width: 90%;
  max-width: 650px;
  padding: 20px 15px;
  display: none;
}
.atc-success h1 {
  text-align: center;
  font-size: 24px;
  font-weight: 400;
  line-height: 32px;
  color: #000;
  opacity: 1;
  margin-bottom: 15px;
  float: left;
  width: 100%;
}
.atc-success h5 {
  text-align: left;
  font-size: 20px;
  font-weight: 400;
  line-height: 28px;
  color: #000000;
  opacity: 1;
}
.atc-success h4 {
  color: #7ca330;
  font-size: 18px;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: 0em;
}
.atc-success img {
  border-radius: 8px;
}

header {
  z-index: 2;
  position: relative;
  width: 100%;
  z-index: 9;
  transition: all 0.4s ease;
}
header .navbar {
  padding: 7px 0 !important;
  background: #fff;
}
header .logo {
  width: 150px;
}
header nav {
  border-bottom: 1px solid rgba(7, 7, 7, 0.031372549);
  background: transparent 0% 0% no-repeat padding-box;
  transition: all 0.4s ease;
  padding: 15px 0 !important;
}
header nav .navbar-toggler {
  border: 0;
  box-shadow: none;
}
header nav .navbar-toggler:focus {
  box-shadow: none;
}
header nav .navbar-nav .nav-item {
  padding: 0 15px;
}
header nav .navbar-nav .nav-item .nav-link {
  font-size: 16px;
  line-height: 24px;
  font-weight: normal;
  text-transform: capitalize;
  padding: 10px 0px;
  color: #0f4642;
  opacity: 1;
  position: relative;
}
header nav .navbar-nav .nav-item .nav-link::before {
  background-color: #31968e;
  position: absolute;
  content: "";
  bottom: 8px;
  left: 0;
  height: 2px;
  width: 0;
  opacity: 0;
  transition: 0.5s;
}
header nav .navbar-nav .nav-item .nav-link .fa {
  color: #31968e;
  transition: all 0.4s ease;
}
header nav .navbar-nav .nav-item .nav-link.active {
  color: #31968e;
}
header nav .navbar-nav .nav-item .nav-link.active::before {
  width: 100%;
  opacity: 1;
}
header nav .navbar-nav .nav-item .nav-link:hover {
  color: #31968e;
}
header nav .navbar-nav .nav-item .nav-link:hover::before {
  width: 100%;
  opacity: 1;
}
header nav .navbar-nav .nav-item .nav-link:hover .fa {
  rotate: 180deg;
}
header nav .navbar-nav .nav-item ul.sub-menu {
  z-index: 1;
  position: absolute;
  background: #0f4642 0% 0% no-repeat padding-box;
  padding: 15px 15px;
  width: 220px;
  top: 90px;
  opacity: 0;
  border-radius: 15px;
  visibility: hidden;
  transition: all ease 0.4s;
  list-style: none;
}
header nav .navbar-nav .nav-item ul.sub-menu li a {
  color: #ffffff;
  font: normal normal normal 16px/18px "Golos Text", sans-serif;
  letter-spacing: 0px;
  padding: 12px 0;
  display: block;
  opacity: 1;
}
header nav .navbar-nav .nav-item ul.sub-menu li a:hover {
  color: #31968e;
}
header nav .navbar-nav .nav-item:hover .sub-menu {
  opacity: 1;
  visibility: visible;
  top: 75px;
}
header nav .navbar-nav .nav-item .bag-img {
  filter: brightness(0);
}
header nav .navbar-nav .nav-item .bag-img:hover {
  filter: none;
}
header nav .navbar-nav .has-dropdown {
  position: relative;
  z-index: 0;
}
header nav .navbar-nav .has-dropdown .sub-menu {
  z-index: 1;
  position: absolute;
  background: #fff 0% 0% no-repeat padding-box;
  padding: 15px 15px;
  width: 220px;
  left: 0px;
  top: 75px;
  opacity: 0;
  border-radius: 10px;
  visibility: hidden;
  transition: all ease 0.4s;
}
header nav .navbar-nav .has-dropdown .sub-menu .nav-item .nav-link {
  text-align: center;
  color: #6f6f6f;
  font: normal normal normal 13px/18px "Golos Text", sans-serif;
  letter-spacing: 0px;
  padding: 7px 0;
  opacity: 1;
}
header nav .navbar-nav .has-dropdown:hover .sub-menu {
  opacity: 1;
  visibility: visible;
}
header nav .right-nav .nav-item {
  padding: 5px 10px;
}
header nav .right-nav .make-call a {
  color: #ffffff;
  font-weight: 500;
  margin-left: 0px;
}
header nav .hamburger {
  width: 25px;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 6px;
  transition: 0.3s;
}
header nav .hamburger span {
  display: block;
  height: 3px;
  background: #3b3b3b;
  border-radius: 3px;
  transition: 0.3s;
}
header nav {
  /* --- Toggle Active State --- */
}
header nav .hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
header nav .hamburger.active span:nth-child(2) {
  opacity: 0;
}
header nav .hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(8px, -8px);
}

header.home-header {
  position: absolute !important;
}
header.home-header .navbar {
  background: transparent;
}
header.home-header .navbar .navbar-nav .nav-item .nav-link {
  color: #fff;
}
header.home-header .navbar .navbar-nav .nav-item .nav-link:hover, header.home-header .navbar .navbar-nav .nav-item .nav-link.active {
  color: #fff;
}
header.home-header .navbar .navbar-nav .nav-item .nav-link::before {
  background-color: #fff;
}
header.home-header .navbar .logo {
  filter: brightness(0) invert(1);
}

footer {
  padding: 50px 0 0px;
  background-color: #0f4642;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  border-top: 0 solid rgba(12, 7, 5, 0.1);
  position: relative;
  background-size: cover;
  background-position: center;
}
footer .footer-logo {
  display: block;
  margin-bottom: 20px;
}
footer .footer-logo img {
  filter: invert(1) brightness(10);
}
footer .footer-top img {
  position: absolute;
  top: 0;
}
footer p {
  text-align: left;
  font: normal normal normal 14px/24px "Golos Text", sans-serif;
  letter-spacing: 0px;
  color: #fff;
  opacity: 1;
}
footer .footer-content {
  font: normal normal normal 14px/24px "Golos Text", sans-serif;
  margin-bottom: 20px;
}
footer .footer-content .footer-heading h6 {
  color: #ffffff;
  font: normal normal 600 21px/28px "Golos Text", sans-serif;
  letter-spacing: 0px;
  margin-bottom: 25px;
  position: relative;
  display: inline-block;
}
footer .footer-content .footer-list {
  -moz-column-count: 2;
       column-count: 2;
}
footer .footer-content .footer-list li {
  margin-bottom: 5px;
}
footer .footer-content .footer-list li a {
  color: #ffffff;
  font: normal normal 300 14px/23px "Golos Text", sans-serif;
  letter-spacing: 0px;
}
footer .footer-content .contact-area {
  padding-left: 0;
  color: #fff;
  list-style: none;
}
footer .footer-content .contact-area li {
  display: flex;
  align-items: start;
  justify-content: left;
  color: #fff;
  margin-bottom: 15px;
}
footer .footer-content .contact-area li .icons {
  min-width: 30px;
  display: inline-block;
  text-align: center;
}
footer .footer-content .contact-area li i {
  font-size: 18px;
  margin-right: 10px;
  margin-top: 4px;
}
footer .footer-content .contact-area li a {
  text-align: left;
  letter-spacing: 0px;
  opacity: 1;
  margin: 15px 0;
  line-height: 1.45em;
  font-weight: 400;
  color: #fff !important;
  display: block;
  font-size: 14px !important;
}
footer .footer-content .footer-list1 li a {
  text-align: left;
  letter-spacing: 0px;
  opacity: 1;
  margin-bottom: 20px;
  line-height: 1.45em;
  font-weight: 400;
  color: #fff !important;
  display: block;
  font-size: 14px !important;
  position: relative;
}
footer .disclaimer h5 {
  padding-bottom: 0px;
  margin-bottom: 5px;
  font-size: 12px !important;
  color: rgba(33, 31, 29, 0.631372549) !important;
}
footer .disclaimer p {
  padding-bottom: 0px;
  font-size: 12px !important;
  color: rgba(33, 31, 29, 0.631372549) !important;
  margin: 0;
  line-height: 16px;
}
footer .hr-line {
  color: #6f6f6f;
  padding: 0;
  margin: 0;
}
footer .footer-test {
  padding-bottom: 12px;
  padding-top: 3px;
}
footer .footer-test .test-start {
  text-align: start;
  font: normal normal normal 14px/20px "Golos Text", sans-serif;
  letter-spacing: 0px;
  color: #ffffff;
  padding: 10px 0;
  margin: 0;
}
footer .test-end {
  text-align: end;
  font: normal normal normal 14px/20px "Golos Text", sans-serif;
  letter-spacing: 0px;
  color: #ffffff;
  padding: 10px 0;
  margin: 0;
}

.social-icon {
  padding-bottom: 0px;
}
.social-icon .social-connect {
  text-align: center;
  color: #ffffff;
  background-color: transparent;
  border: 1px solid #ffffff;
  font-size: 18px;
  width: 45px;
  height: 45px;
  display: inline-flex;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  margin-right: 5px;
  position: relative;
  transition: all 0.4s ease;
}
.social-icon .social-connect:hover {
  border: 2px solid #ffffff;
  background-color: #ffffff;
  color: #31968e;
}

@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.copyright-area {
  padding-top: 20px;
  border-top: 1px solid rgba(187, 187, 187, 0.2);
}
.copyright-area p {
  font-weight: 400;
  color: #fff;
  font-size: 14px;
  text-transform: capitalize;
  padding: 20px 0 !important;
  margin: 0;
}
.copyright-area p a {
  color: #fff;
}

.hero-section {
  position: relative;
  color: #fff;
}
.hero-section img.w-100 {
  filter: brightness(0.6);
}
.hero-section .carousel-item {
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  position: relative;
  height: 100vh;
}
.hero-section .carousel-item:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(270deg, rgba(0, 79, 76, 0) 12.16%, rgba(0, 79, 76, 0.004) 12.16%, rgba(0, 79, 76, 0.9) 82.49%) !important;
}
.hero-section .carousel-item.first-slide {
  background-image: url(../images/travel-safe-slider-1.webp);
}
.hero-section .carousel-item.second-slide {
  background-image: url(../images/travel-safe-slider-2.webp);
}
.hero-section .carousel-item.third-slide {
  background-image: url(../images/hero-bg.jpg);
}
.hero-section .carousel-caption {
  bottom: inherit;
  top: 50%;
  translate: 0 -50%;
  z-index: 9;
  left: 48px;
  right: 48px;
}
.hero-section .carousel-caption .hero-content {
  z-index: 2;
  max-width: 700px;
  text-align: left;
}
.hero-section .carousel-caption .hero-content h5 {
  color: #31968e;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 300;
  font-size: 14px;
}
.hero-section .carousel-caption .hero-content h1 {
  font-size: 60px;
  font-weight: normal;
  line-height: 1.2;
}
.hero-section .carousel-caption .hero-content p {
  line-height: 1.8;
  font-weight: normal;
}
.hero-section .carousel-caption .hero-content .btn-banner {
  padding: 20px 25px;
  line-height: 1;
  border-radius: 15px 15px 15px 0px;
  font-weight: normal;
  letter-spacing: 2px;
}
.hero-section .carousel-indicators button {
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background-color: #ffffff;
  margin: 0 5px;
  opacity: 1;
}
.hero-section .carousel-indicators .active {
  background-color: #31968e;
}

.heading-section {
  text-align: center;
}
.heading-section .sub-heading {
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #31968e;
  font-size: 14px;
}
.heading-section .main-heading {
  font-weight: normal;
  font-size: 40px;
  color: #0f4642;
  line-height: 1.2;
}

.choose-color {
  background-image: url(../images/saras-bitumens-slider-1.webp);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  position: relative;
  background-color: rgba(0, 0, 0, 0.7294117647);
  background-blend-mode: color;
}
.choose-color .main-heading {
  color: #ffffff;
}
.choose-color .color-box {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0px 2px 20px 0px rgba(255, 255, 255, 0);
}
.choose-color .color-box .img-box {
  overflow: hidden;
  padding: 20px;
  text-align: center;
  background: #fff;
}
.choose-color .color-box .img-box img {
  transition: 0.3s ease all;
  height: 300px;
  margin: 0 auto;
}
.choose-color .color-box .text-box p {
  font-size: 22px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 0px;
  padding: 20px;
  color: #ffffff;
  background-color: #31968e;
  transition: 0.3s ease all;
}
.choose-color .color-box .text-box .btn {
  width: 100%;
}
.choose-color .color-box:hover .img-box img {
  scale: 1.1;
}
.choose-color .color-box:hover .text-box p {
  background: #000000;
}

.section-padding {
  padding: 80px 0;
}

.theme-color {
  color: #31968e;
}

.about-section .heading-section .main-heading {
  color: #0f4642;
}
.about-section ul {
  padding-left: 16px;
}
.about-section ul li {
  list-style-type: disclosure-closed;
  margin-bottom: 15px;
  color: #0f4642;
}
.about-section ul li::marker {
  color: #31968e;
}
.about-section .counter-wrapper {
  background-color: #ebeff0;
  padding: 20px 40px;
  border-radius: 30px 30px 30px 0;
}
.about-section .counter-box {
  text-align: left;
  padding: 20px 0;
  position: relative;
}
.about-section .counter-box::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  height: 1px;
  width: 100%;
  translate: -50% 0;
  background-color: #ffffff;
  transition: 0.5s ease all;
}
.about-section .counter-box .number {
  font-size: 30px;
  font-weight: 600;
  color: #31968e;
  line-height: 1.2;
  margin-bottom: 4px;
  display: block;
  transition: 0.3s ease all;
}
.about-section .counter-box .number i {
  font-size: 30px;
}
.about-section .counter-box .title {
  margin-bottom: 0;
  transition: 0.3s ease all;
}
.about-section .img-box img {
  border-radius: 50% 50% 0 0;
}
.about-section .img-box .quotes-bottom {
  position: absolute;
  bottom: 70px;
  right: -70px;
  background-color: #ffffff;
  border: 1px solid #f1f1f1;
  border-radius: 15px;
  padding: 15px;
  max-width: 250px;
  font-size: 14px;
  text-align: center;
}
.about-section .img-box .quotes-bottom::before {
  content: "";
  position: absolute;
  left: -15px;
  top: -15px;
  border-radius: 50%;
  background-color: #31968e;
  color: #ffffff;
  width: 30px;
  height: 30px;
  background-image: url(../images/about-testimonial-quote.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 20px;
  display: grid;
  place-content: center;
}
.about-section .img-box .quotes-top {
  position: absolute;
  top: 50px;
  right: -70px;
  background-color: #ffffff;
  border: 1px solid #f1f1f1;
  border-radius: 10px;
  padding: 10px 15px;
  max-width: 250px;
  font-size: 14px;
  text-align: center;
  color: #0f4642;
  font-weight: 600;
  animation: leftRight 6s ease-in-out infinite;
}
@keyframes leftRight {
  0%, 100% {
    transform: translateX(0px);
  }
  50% {
    transform: translateX(-70px);
  }
}

.services {
  background-color: #ebeff0;
  background-image: url(../images/section-bg-shape-2-1.svg);
  background-position: bottom center;
  background-repeat: no-repeat;
  background-size: contain;
}
.services .service-box {
  position: relative;
  border-radius: 30px;
  overflow: hidden;
  background: #ffffff;
  padding: 30px;
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.0392156863);
  border: 1px solid #ecf2f0;
  border-radius: 30px 30px 30px 0px;
}
.services .service-box::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0;
  background-color: #0f4642;
  transition: 0.5s ease all;
}
.services .service-box .img-box {
  height: 80px;
  width: 80px;
  background-color: #31968e;
  display: grid;
  place-content: center;
  transition: 0.5s ease all;
  border-radius: 50%;
  margin-bottom: 40px;
  padding: 20px;
  position: relative;
}
.services .service-box .img-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #ffffff;
  transition: 0.5s ease all;
  border-radius: 50%;
  scale: 0;
}
.services .service-box .img-box img {
  filter: invert(1) brightness(10);
  position: relative;
  z-index: 9;
}
.services .service-box .text-box {
  position: relative;
  z-index: 9;
}
.services .service-box .text-box .name {
  font-weight: 500;
  font-size: 22px;
  line-height: 1.5;
  transition: 0.3s ease all;
  color: #0f4642;
  margin-bottom: 16px;
}
.services .service-box .text-box .des {
  margin-bottom: 40px;
  padding-bottom: 40px;
  transition: 0.3s ease all;
  border-bottom: 1px solid #f5f5f5;
}
.services .service-box .text-box .slink {
  background: transparent;
  padding: 0;
  color: #31968e;
  display: flex;
  align-items: center;
  font-weight: 600;
  font-size: 18px;
}
.services .service-box .text-box .slink:hover {
  background: transparent;
  color: #ffffff;
}
.services .service-box:hover .img-box::before {
  scale: 1;
}
.services .service-box:hover .img-box img {
  filter: inherit;
}
.services .service-box:hover .text-box .name {
  color: #ffffff;
}
.services .service-box:hover .text-box .des {
  color: #ffffff;
}
.services .service-box:hover::before {
  height: 100%;
}

.service-details .col-md-4 {
  position: sticky;
  top: 50px;
}
.service-details .service-sidebar {
  background-color: #ebeff0;
  padding: 40px;
  border-radius: 30px 30px 30px 0;
}
.service-details .service-sidebar .sidebar-title {
  font-weight: 600;
  position: relative;
  padding-bottom: 15px;
  color: #0f4642;
}
.service-details .service-sidebar .service-list-group ul li a {
  background-color: #fff;
  padding: 12px 15px;
  border-radius: 10px;
  transition: all 0.3s ease;
  color: #848484;
  font-size: 16px;
}
.service-details .service-sidebar .service-list-group ul li a.active {
  background-color: #0f4642;
  color: #fff !important;
}
.service-details .service-sidebar .service-list-group ul li a.active i {
  transform: translateX(5px);
}
.service-details .service-sidebar .service-list-group ul li a:hover {
  background-color: #0f4642;
  color: #fff !important;
}
.service-details .service-sidebar .service-list-group ul li a:hover i {
  transform: translateX(5px);
}
.service-details .service-sidebar .service-list-group ul li a i {
  transition: transform 0.3s ease;
}
.service-details .more-information-box {
  background-color: #0f4642;
  padding: 30px;
  border-radius: 30px 30px 30px 0;
  margin-top: 40px;
  color: #fff;
}
.service-details .more-information-box .more-information-title {
  font-weight: 600;
  margin-bottom: 15px;
  color: #fff;
}
.service-details .more-information-box .more-information-description {
  font-size: 15px;
  margin-bottom: 25px;
  opacity: 0.9;
}
.service-details .more-information-box .more-information-content {
  display: flex;
  padding: 10px 15px;
  border-radius: 20px 20px 20px 0;
  background: rgba(255, 255, 255, 0.2392156863);
  align-items: center;
}
.service-details .more-information-box .more-information-content-icon {
  height: 60px;
  width: 60px;
  background-color: #ffffff;
  display: grid;
  place-content: center;
  transition: 0.5s ease all;
  border-radius: 50%;
  margin-bottom: 0px;
  padding: 14px;
  margin-right: 20px;
  position: relative;
  color: #0f4642;
  font-size: 25px;
}
.service-details .more-information-box .more-information-content-title {
  font-size: 16px;
  font-weight: normal;
  margin-bottom: 0px;
}
.service-details .more-information-box .more-information-content-description {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 0;
}
.service-details .service-content {
  padding-left: 30px;
}
.service-details .service-content .service-card-title {
  font-weight: 600;
  font-size: 20px;
  color: #0f4642;
  margin-bottom: 20px;
}
.service-details .service-content .service-card-description {
  font-size: 16px;
  color: #848484;
}
.service-details .service-content .clients {
  border-radius: 30px 30px 30px 0;
}
.service-details .service-content .feature-box::before {
  display: none;
}
.service-details .service-content .feature-box .img-box {
  width: 70px;
  height: 70px;
  margin-right: 10px;
  padding: 15px;
  border-radius: 50%;
}
.service-details .service-content .feature-box .text-box {
  width: calc(100% - 80px);
  text-align: left;
  padding-left: 10px;
}
.service-details .service-content .feature-box .text-box .name {
  font-size: 18px;
  margin-bottom: 10px;
  font-weight: bold;
}
.service-details .service-content .feature-box .text-box .des {
  margin-bottom: 0;
}

.why-choose-us .why-choose-box {
  display: flex;
  align-items: center;
  padding: 30px 0;
}
.why-choose-us .why-choose-box .img-box {
  height: 60px;
  width: 60px;
  background-color: #31968e;
  display: grid;
  place-content: center;
  transition: 0.5s ease all;
  border-radius: 50%;
  margin-bottom: 0px;
  padding: 14px;
  margin-right: 20px;
  position: relative;
}
.why-choose-us .why-choose-box .img-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #0f4642;
  transition: 0.5s ease all;
  border-radius: 50%;
  scale: 0;
}
.why-choose-us .why-choose-box .img-box img {
  position: relative;
  z-index: 9;
  width: 100%;
}
.why-choose-us .why-choose-box .name {
  font-weight: bold;
  font-size: 22px;
  line-height: 1.5;
  transition: 0.3s ease all;
  color: #0f4642;
  margin-bottom: 0;
  width: calc(100% - 60px);
}
.why-choose-us .why-choose-box:hover .img-box::before {
  scale: 1;
}
.why-choose-us .choose-img {
  position: relative;
  padding: 40px;
}
.why-choose-us .choose-img::before {
  content: "";
  position: absolute;
  bottom: -105px;
  left: -75px;
  width: 240px;
  height: 300px;
  background-image: url(../images/why-choose-image-bg-shape.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  z-index: -1;
}
.why-choose-us .choose-img::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 40%;
  height: 100%;
  background-color: #0f4642;
  transition: 0.5s ease all;
  border-radius: 30px 30px 30px 0;
  z-index: -1;
}
.why-choose-us .choose-img img {
  border-radius: 30px 30px 30px 0;
  border: 4px solid #ffffff;
}

.home-cta {
  background-color: #0f4642;
}
.home-cta .btn {
  color: #0f4642;
}
.home-cta .btn:hover {
  color: #ffffff;
}
.home-cta .img-box {
  position: relative;
  padding-top: 20px;
  padding-left: 20px;
}
.home-cta .img-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 50%;
  background-color: #ffffff;
  transition: 0.5s ease all;
  border-radius: 30px 30px 30px 0;
  background: rgba(255, 255, 255, 0.1215686275);
}
.home-cta .img-box img.w-100 {
  border-radius: 30px 30px 30px 0;
  position: relative;
}
.home-cta .img-box .rotate-img {
  position: absolute;
  right: -50px;
  bottom: -50px;
  animation: rotate 10s linear infinite;
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.clients {
  position: relative;
  background: #ebeff0;
  margin-top: 50px;
}
.clients .feature-box {
  position: relative;
  padding: 30px;
}
.clients .feature-box::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 1px;
  height: 60%;
  translate: 0 -50%;
  background-color: #ffffff;
  transition: 0.5s ease all;
}
.clients .feature-box .img-box {
  height: 80px;
  width: 80px;
  background-color: #31968e;
  display: grid;
  place-content: center;
  transition: 0.5s ease all;
  border-radius: 50%;
  margin: 0 auto 30px;
  padding: 20px;
  position: relative;
}
.clients .feature-box .img-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #0f4642;
  transition: 0.5s ease all;
  border-radius: 50%;
  scale: 0;
}
.clients .feature-box .img-box img {
  filter: invert(1) brightness(10);
  position: relative;
  z-index: 9;
}
.clients .feature-box .text-box {
  text-align: center;
}
.clients .feature-box .text-box .name {
  font-weight: 500;
  font-size: 22px;
  line-height: 1.5;
  transition: 0.3s ease all;
  color: #0f4642;
  margin-bottom: 16px;
}
.clients .feature-box:hover .img-box::before {
  scale: 1;
}
.clients .custom-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  border-top: 1px solid #ffffff;
  padding-top: 40px;
  margin-top: 10px;
}
.clients .custom-grid .counter-box {
  text-align: center;
  padding: 20px;
  position: relative;
}
.clients .custom-grid .counter-box::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 1px;
  height: 60%;
  translate: 0 -50%;
  background-color: #ffffff;
  transition: 0.5s ease all;
}
.clients .custom-grid .counter-box .number {
  font-size: 42px;
  font-weight: 600;
  color: #31968e;
  line-height: 1.2;
  margin-bottom: 8px;
  display: block;
  transition: 0.3s ease all;
}
.clients .custom-grid .counter-box .number i {
  font-size: 30px;
}
.clients .custom-grid .counter-box .title {
  margin-bottom: 0;
  transition: 0.3s ease all;
}

.no-before::before {
  display: none;
}

.owl-nav button {
  position: absolute !important;
  top: 50% !important;
  translate: 0 -50% !important;
  width: 50px !important;
  height: 50px !important;
  border-radius: 10px !important;
  background: #31968e !important;
  color: #ffffff !important;
  display: inline-grid !important;
  place-items: center !important;
  font-size: 20px !important;
}
.owl-nav button::after {
  content: "\f12f";
  font-family: bootstrap-icons !important;
}
.owl-nav button:hover {
  background: #6f6f6f !important;
}
.owl-nav button span {
  display: none;
}
.owl-nav button.owl-prev {
  left: -60px;
}
.owl-nav button.owl-next {
  right: -60px;
  scale: -1 1;
}

.faq .experience-box h6 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #0f4642;
  line-height: 1;
}
.faq .experience-box p {
  margin: 0;
}
.faq .accordion .accordion-item {
  margin-bottom: 15px;
  overflow: hidden;
  border: 0;
}
.faq .accordion .accordion-item button {
  font-size: 18px;
  font-weight: 600;
  box-shadow: none !important;
  padding: 20px;
  color: #0f4642;
  border-radius: 15px 15px 15px 0;
  border: 1px solid #f1f1f1;
}
.faq .accordion .accordion-item button:after {
  content: "\f64d";
  background-image: none !important;
  font-family: bootstrap-icons !important;
  background-color: #004f4c;
  color: #fff;
  font-size: 15px;
  display: inline-grid;
  place-items: center;
}
.faq .accordion .accordion-item button:not(.collapsed) {
  background: #0f4642 !important;
  color: #ffffff;
  border-radius: 15px 15px 0 0;
  border-color: #0f4642;
  border-bottom-color: rgba(241, 241, 241, 0.3843137255);
}
.faq .accordion .accordion-item button:not(.collapsed)::after {
  content: "\f63b";
  background-color: #ffffff;
  color: #0f4642;
}
.faq .accordion .accordion-item .accordion-collapse {
  background: #0f4642;
  color: #ffffff;
  border-bottom-right-radius: 15px;
}

.testimonials {
  background: #ebeff0;
}
.testimonials .home-testimonials {
  position: relative;
  padding: 120px 0 100px;
}
.testimonials .home-testimonials::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  translate: -50% 0;
  width: 70%;
  height: 100%;
  background-color: #31968e;
  border-radius: 30px 30px 30px 0;
}
.testimonials-item {
  background: #fff;
  padding: 50px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  height: 100%;
}
.testimonials-content {
  margin-bottom: 50px;
}
.testimonials-content p {
  font-size: 16px;
  line-height: 1.8;
  color: #666;
  margin-bottom: 0;
}
.testimonials-info {
  display: flex;
  align-items: center;
}
.testimonials-info-img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  margin-right: 15px;
  flex-shrink: 0;
}
.testimonials-info-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.testimonials-info-content h3 {
  font-size: 18px;
  margin-bottom: 2px;
  color: #0f4642;
  font-weight: 700;
}
.testimonials-info-content p {
  margin: 0;
  font-size: 14px;
  color: #888;
}
.testimonials .owl-carousel .owl-nav {
  position: absolute;
  top: -70px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 15px;
}
.testimonials .owl-carousel .owl-nav button {
  width: 45px;
  height: 45px;
  background: #ffffff !important;
  color: #0f4642 !important;
  border-radius: 15px;
  font-size: 20px;
  display: grid;
  place-items: center;
  transition: all 0.3s ease;
}
.testimonials .owl-carousel .owl-nav button:hover {
  background: #0f4642 !important;
  color: #ffffff !important;
}
.testimonials .owl-carousel .owl-dots {
  position: absolute;
  bottom: -60px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
}
.testimonials .owl-carousel .owl-dots .owl-dot span {
  width: 10px;
  height: 10px;
  background: #dee2e6;
  display: block;
  border-radius: 50%;
  transition: all 0.3s ease;
}
.testimonials .owl-carousel .owl-dots .owl-dot.active span {
  background: #0f4642;
  width: 25px;
  border-radius: 10px;
}

.page-banner {
  /*background-image: url(../images/page-header-bg.jpg);*/
  background-image: url(../images/travel-safe-bg-page.webp);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  background-attachment: fixed;
  position: relative;
  min-height: 70vh;
  display: grid;
  place-items: center;
}
.page-banner::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(270deg, rgba(0, 79, 76, 0) 12.16%, rgba(0, 79, 76, 0.004) 12.16%, rgba(0, 79, 76, 0.9) 82.49%) !important;
}
.page-banner .page-title {
  font-size: 55px;
  line-height: 1.1;
  color: #ffffff;
  font-weight: 600;
  position: relative;
  z-index: 1;
}
.page-banner nav {
  position: relative;
  z-index: 1;
}
.page-banner nav li {
  color: #31968e !important;
}
.page-banner nav li a {
  color: #ffffff;
}

.team-wrapper {
  background-color: #ebeff0;
  background-image: url(../images/section-bg-shape-2-1.svg);
  background-position: bottom center;
  background-repeat: no-repeat;
  background-size: contain;
}
.team-wrapper .team-box {
  position: relative;
  background: #ffffff;
  border-radius: 30px 30px 30px 0;
  overflow: hidden;
  transition: 0.4s ease all;
  border: 1px solid #f1f1f1;
}
.team-wrapper .team-box .img-box {
  overflow: hidden;
}
.team-wrapper .team-box .img-box img {
  transition: 0.8s ease all;
}
.team-wrapper .team-box .img-box .social-icons-box {
  position: absolute;
  top: 20px;
  right: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.team-wrapper .team-box .img-box .social-icons-box .primary-icon {
  width: 40px;
  height: 40px;
  background-color: #ffffff;
  color: #0f4642;
  border-radius: 50%;
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: 0.3s ease all;
}
.team-wrapper .team-box .img-box .social-icons-box .primary-icon:hover {
  background-color: #0f4642;
  color: #ffffff;
}
.team-wrapper .team-box .img-box .social-icons-box .hover-icons {
  display: flex;
  flex-direction: column;
  gap: 10px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: 0.5s ease all;
}
.team-wrapper .team-box .img-box .social-icons-box .hover-icons a {
  width: 40px;
  height: 40px;
  background-color: #ffffff;
  color: #0f4642;
  border-radius: 50%;
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: 0.3s ease all;
}
.team-wrapper .team-box .img-box .social-icons-box .hover-icons a:hover {
  background-color: #0f4642;
  color: #ffffff;
}
.team-wrapper .team-box .team-content {
  padding: 15px;
  text-align: center;
}
.team-wrapper .team-box .team-content .name {
  font-size: 25px;
  font-weight: 600;
  color: #0f4642;
  margin-bottom: 0px;
}
.team-wrapper .team-box .team-content .designation {
  margin-bottom: 0;
}
.team-wrapper .team-box:hover .img-box img {
  scale: 1.05;
}
.team-wrapper .team-box:hover .social-icons-box .hover-icons {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.contact-us .contact-form {
  background: #ebeff0;
  padding: 60px;
  border-radius: 30px 30px 30px 0;
}
.contact-us .contact-card {
  padding: 0;
}
.contact-us .contact-card .title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 0px;
  color: #ffffff;
}
.contact-us .contact-card i {
  width: 50px;
  text-align: center;
  font-size: 25px;
  color: #31968e;
}
.contact-us .contact-card div {
  width: calc(100% - 50px);
  padding-left: 20px;
}
.contact-us .contact-card div p {
  margin-bottom: 0;
  color: #ffffff;
}
.contact-us .contact-card-wrapper {
  border-radius: 30px 30px 30px 0;
  background-image: url(../images/contact-cta-bg-img.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 60px;
  position: relative;
  overflow: hidden;
}
.contact-us .contact-card-wrapper::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(270deg, rgba(0, 79, 76, 0) 12.16%, rgba(0, 79, 76, 0.004) 12.16%, rgba(0, 79, 76, 0.9) 82.49%) !important;
}
.contact-us .contact-card-wrapper hr {
  max-width: 250px;
  border-color: #fff;
  position: relative;
  z-index: 1;
}
.contact-us .contact-card-wrapper .contact-card {
  position: relative;
  z-index: 1;
}
.contact-us .contact-card-wrapper .contact-card i {
  color: #ffffff;
  font-size: 40px;
}

.contact-map {
  position: relative;
  translate: 0 10px;
}

.claim-wrapper .card {
  background: #ebeff0;
  border-radius: 30px 30px 30px 0;
}
.claim-wrapper .card .card-body {
  padding: 40px;
}
.claim-wrapper .card .card-body h4 {
  font-weight: 600;
}
.claim-wrapper .nav-pills {
  background: #0f4642;
  padding: 10px;
  border-radius: 6px;
  margin-bottom: 40px;
  gap: 10px;
}
.claim-wrapper .nav-pills .nav-link {
  background: #31968e;
  border-radius: 6px;
  padding: 10px 20px;
  min-width: 180px;
  text-align: center;
  font-weight: 500;
  color: #fff;
  font-size: 16px;
}
.claim-wrapper .nav-pills .nav-link.active, .claim-wrapper .nav-pills .nav-link:hover {
  background: #fff;
  color: #0f4642;
  opacity: 1;
}
.claim-wrapper .nav-pills .tab-pane .form-group label {
  font-weight: 500;
  font-size: 14px;
}
.claim-wrapper .nav-pills .tab-pane .form-group .input-group > * {
  border: 0;
}
.claim-wrapper .nav-pills .tab-pane .form-group .input-group .input-group-text {
  background: #0f4642;
  color: #fff;
  padding: 6px 15px;
  font-size: 20px;
}
.claim-wrapper .nav-pills .tab-pane .form-group .form-control {
  background-color: #fff;
  padding: 10px 15px;
  border: 0;
}
.claim-wrapper .nav-pills .tab-pane .form-group .form-control:focus {
  outline: none;
  box-shadow: none;
}
.claim-wrapper .nav-pills .tab-pane .form-group .form-control::-webkit-input-placeholder {
  opacity: 0.5;
}
.claim-wrapper .step {
  display: none;
}
.claim-wrapper .step.active {
  display: block;
}
.claim-wrapper .inner-div {
  background: rgb(255, 255, 255);
  border-radius: 15px 15px 15px 0;
  padding: 30px;
  margin-bottom: 40px;
}
.claim-wrapper .luggage-form .form-control {
  background: #ffffff;
}
.claim-wrapper .progressbar {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
  position: relative;
}
.claim-wrapper .progressbar::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 100%;
  height: 2px;
  background-color: rgba(71, 42, 161, 0.0705882353);
  /* z-index: -1; */
}
.claim-wrapper .progressbar {
  /* Progress filled line */
}
.claim-wrapper .progressbar .progress {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  height: 2px;
  background-color: #0f4642;
  /* z-index: -1; */
  transition: width 0.3s ease;
}
.claim-wrapper .progressbar .progress-step {
  text-align: center;
  font-size: 14px;
  font-weight: 500;
  background: #f8f9fa;
  position: relative;
  padding: 5px 10px 5px 5px;
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
}
.claim-wrapper .progressbar .progress-step span.num {
  width: 25px;
  height: 25px;
  margin-right: 5px;
  border-radius: 6px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
}
.claim-wrapper .progressbar .progress-step.active span.num {
  color: #0f4642;
}
.claim-wrapper .progressbar .progress-step.active {
  background: #0f4642;
}
.claim-wrapper .progressbar .progress-step.active {
  color: #fff;
}
.claim-wrapper .doctor-card .book-appointment-form {
  display: none;
}
.claim-wrapper .doctor-card {
  border-radius: 20px 20px 20px 0;
  overflow: hidden;
}
.claim-wrapper .doctor-card .doctor-header {
  background: #0f4642;
  padding: 15px 20px;
}
.claim-wrapper .doctor-card .doctor-header h5 {
  color: #ffffff;
  margin-bottom: 0;
}
.claim-wrapper .doctor-card .doctor-header small {
  color: #ffffff;
  line-height: 1.5;
  display: inline-block;
}
.claim-wrapper .doctor-card .doctor-content {
  padding: 20px;
  background: #ebeff0;
}

/* custom radio button  */
.custum-radio-button [type=radio]:checked,
.custum-radio-button [type=radio]:not(:checked) {
  position: absolute;
  left: -9999px;
}

.custum-radio-button [type=radio]:checked + label,
.custum-radio-button [type=radio]:not(:checked) + label {
  position: relative;
  padding-left: 28px;
  cursor: pointer;
  line-height: 20px;
  display: inline-block;
  color: #666;
}

.custum-radio-button [type=radio]:checked + label:before,
.custum-radio-button [type=radio]:not(:checked) + label:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 18px;
  height: 18px;
  border: 1px solid rgba(29, 64, 205, 0.6117647059);
  border-radius: 100%;
  background: #fff;
}

.custum-radio-button [type=radio]:checked + label:after,
.custum-radio-button [type=radio]:not(:checked) + label:after {
  content: "";
  width: 12px;
  height: 12px;
  background: #0f4642;
  position: absolute;
  top: 3px;
  left: 3px;
  border-radius: 100%;
  transition: all 0.2s ease;
}

.custum-radio-button [type=radio]:not(:checked) + label:after {
  opacity: 0;
  transform: scale(0);
}

.custum-radio-button [type=radio]:checked + label:after {
  opacity: 1;
  transform: scale(1);
}

/* custom radio button end  */
/* custom file upload  */
.custom-upload-file .et_pb_contact_form_label {
  display: block;
  color: black;
  font-weight: bold;
  letter-spacing: 1.2px;
  font-size: 18px;
  padding-bottom: 5px;
}

.custom-upload-file input[id=et_pb_contact_brand_file_request_0] {
  display: none;
}

.custom-upload-file label[for=et_pb_contact_brand_file_request_0] {
  background: rgba(77, 77, 77, 0.568627451);
  height: 145px;
  background-image: url("https://www.svgrepo.com/show/9488/cloud-upload-signal.svg");
  background-repeat: no-repeat;
  background-position: top 18px center;
  background-size: 35px;
  color: transparent;
  margin: auto;
  width: 100%;
  position: relative;
  box-sizing: border-box;
  border-radius: 6px;
}

.custom-upload-file label[for=et_pb_contact_brand_file_request_0]:before {
  content: "Drag and Drop a file here";
  display: block;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 14px;
  color: #fff;
  font-weight: 400;
  left: 0;
  right: 0;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.custom-upload-file label[for=et_pb_contact_brand_file_request_0]:after {
  display: block;
  content: "Browse";
  background: #fff;
  width: 86px;
  height: 27px;
  line-height: 27px;
  position: absolute;
  bottom: 19px;
  font-size: 14px;
  color: #0f4642;
  font-weight: 500;
  left: 0;
  right: 0;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  border-radius: 4px;
}

.custom-upload-file label[for=et_pb_contact_brand_request_0]:after {
  content: " (Provide link or Upload files if you already have guidelines)";
  font-size: 12px;
  letter-spacing: -0.31px;
  color: #7a7a7a;
  font-weight: normal;
}

.custom-upload-file label[for=et_pb_contact_design_request_0]:after {
  content: " (Provide link or Upload design files)";
  font-size: 12px;
  letter-spacing: -0.31px;
  color: #7a7a7a;
  font-weight: normal;
}

.custom-upload-file label[for=et_pb_contact_brand_file_request_0].changed,
.custom-upload-file label[for=et_pb_contact_brand_file_request_0]:hover {
  background-color: #0f4642;
}

.custom-upload-file label[for=et_pb_contact_brand_file_request_0] {
  cursor: pointer;
  transition: 400ms ease;
}

.file_names {
  display: block;
  position: absolute;
  color: black;
  left: 0;
  bottom: -30px;
  font-size: 13px;
  font-weight: 300;
}

.file_names {
  text-align: center;
}

/* custom file upload end */
.thankyou-box {
  background-color: #0f4642;
}

/* dashboard table  */
.claim-card {
  border-radius: 6px;
  /* box-shadow: 0 3px 6px rgba(0, 0, 0, 0.08); */
  padding: 20px;
  background: #fff;
  transition: 0.3s ease all;
  font-size: 14px;
}
.claim-card:hover {
  transform: translateY(-5px);
}

.status-badge {
  font-weight: 500;
  padding: 4px 10px;
  border-radius: 4px;
  font-size: 0.85rem;
}

.light-warning {
  background-color: #fff4e5;
  color: #c77d00;
}

.light-success {
  background-color: rgba(25, 135, 84, 0.2117647059);
  color: #198754;
}

.light-primary {
  background-color: rgba(29, 64, 205, 0.1882352941);
  color: #0f4642;
}

.btn-view {
  background-color: #0f4642;
  color: white;
  border-radius: 4px;
  padding: 4px 12px;
  font-size: 0.85rem;
}
.btn-view:hover {
  background-color: #0f4642;
  color: #ffffff;
}

.admin-data .form-select {
  padding: 10px;
  border: 0;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 500;
}
.admin-data .form-select:focus {
  outline: none;
  box-shadow: none;
}

.blog-wrapper {
  padding: 60px 20px;
  background: #f9f9f9;
}
.blog-wrapper .blog-title {
  text-align: center;
  font-size: 32px;
  margin-bottom: 40px;
  font-weight: 700;
}
.blog-wrapper .blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}
.blog-wrapper .blog-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  transition: 0.3s ease;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}
.blog-wrapper .blog-card:hover {
  transform: translateY(-8px);
}
.blog-wrapper .blog-card .blog-img img {
  width: 100%;
  display: block;
}
.blog-wrapper .blog-card .blog-content {
  padding: 20px;
}
.blog-wrapper .blog-card .blog-content .blog-category {
  display: inline-block;
  font-size: 12px;
  color: #0f4642;
  margin-bottom: 10px;
  font-weight: 600;
}
.blog-wrapper .blog-card .blog-content .blog-heading {
  font-size: 20px;
  margin-bottom: 10px;
}
.blog-wrapper .blog-card .blog-content .blog-desc {
  font-size: 14px;
  color: #666;
  margin-bottom: 15px;
}
.blog-wrapper .blog-card .blog-content .blog-btn {
  text-decoration: none;
  color: #000;
  font-weight: 600;
  position: relative;
}
.blog-wrapper .blog-card .blog-content .blog-btn::after {
  content: "";
  width: 0;
  height: 2px;
  background: #000;
  position: absolute;
  left: 0;
  bottom: -3px;
  transition: 0.3s;
}
.blog-wrapper .blog-card .blog-content .blog-btn:hover::after {
  width: 100%;
}

/* dashboard table end  */
@media only screen and (max-width: 1299px) {
  .container {
    max-width: 100%;
  }
}
@media only screen and (max-width: 767px) {
  .progress-step {
    padding: 5px;
  }
  .progress-step span.num {
    margin: 0;
  }
  .progress-step span.text {
    display: none;
  }
  .claim-wrapper .nav-pills .nav-link {
    min-width: 1px;
    padding: 10px;
    font-size: 14px;
  }
  header .navbar-brand img {
    width: 120px;
  }
}
@media only screen and (max-width: 575px) {
  .admin-data .form-select {
    width: 100%;
  }
}
@media (max-width: 1199px) {
  header .container,
  footer .container {
    max-width: 100%;
  }
}
@media (max-width: 991px) {
  .navbar-collapse {
    flex-basis: 100%;
    flex-grow: 1;
    align-items: center;
    padding: 20px 0;
    position: fixed;
    width: 240px;
    left: 0;
    top: 0;
    z-index: 9;
    height: 100vh;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
    background: #fff;
  }
  header nav .navbar-nav .nav-item .nav-link {
    padding: 7px 0px;
    display: inline-block;
  }
  .container,
  .container-lg,
  .container-md,
  .container-sm {
    max-width: 100%;
  }
  .service-details .service-content .border-end,
  .service-details .service-content .border-bottom {
    border: 0 !important;
  }
  .service-details .service-content .service-card {
    padding: 10px 0 !important;
  }
  .contact-us .contact-form {
    padding: 30px;
  }
}
@media (max-width: 767px) {
  body,
  p {
    font-size: 14px;
    line-height: 1.3;
  }
  header nav {
    padding: 5px 0 !important;
  }
  header nav .logo {
    width: 100px;
  }
  .fixed-icon {
    right: 10px;
  }
  .fixed-icon .whatsppchat {
    width: 35px;
    height: 35px;
    font-size: 21px;
  }
  .fixed-icon .wave {
    width: 35px;
    height: 35px;
  }
  h6 {
    font-size: 14px;
    font-weight: 600;
  }
  .btn {
    font-size: 13px;
    padding: 10px 13px;
    border-radius: 7px;
  }
  .service-details .col-md-4 {
    position: inherit;
  }
  .service-details .col-md-4 .service-sidebar {
    margin-bottom: 30px;
    padding: 20px;
    border-radius: 20px 20px 20px 0;
  }
  .service-details .col-md-4 .more-information-box {
    padding: 20px;
    border-radius: 20px 20px 20px 0;
  }
  .service-details .service-content {
    padding-left: 0;
    padding-top: 30px;
  }
  .service-details .service-content .feature-box .img-box {
    margin: 0;
  }
  .page-banner {
    min-height: 30vh;
    background-attachment: scroll;
  }
  .page-banner .page-title {
    font-size: 35px;
  }
  .heading-section .main-heading {
    font-size: 35px;
  }
  .about-section .img-box {
    margin-bottom: 20px;
  }
  .about-section .img-box .quotes-top,
  .about-section .img-box .quotes-bottom {
    right: 0;
  }
  .about-section .counter-wrapper {
    margin-top: 20px;
  }
  .clients .custom-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .home-cta .img-box .rotate-img {
    right: 0;
    bottom: 0;
    width: 100px;
  }
  .section-padding {
    padding: 35px 0;
  }
  .clients .feature-box {
    padding: 10px;
  }
  .contact-us .contact-form {
    margin-top: 20px;
  }
  .claim-wrapper .card .card-body {
    padding: 20px;
  }
  .claim-wrapper .inner-div {
    padding: 20px;
  }
  .service-details .service-sidebar .service-list-group ul li {
    margin-bottom: 14px !important;
  }
  .service-details .service-sidebar .sidebar-title {
    margin-bottom: 10px !important;
  }
  .claim-wrapper .doctor-card .doctor-content p {
    margin-bottom: 6px !important;
  }
  .claim-wrapper .doctor-card .doctor-header small {
    margin-bottom: 8px;
  }
  .hero-section .carousel-item {
    height: 75vh;
  }
  .hero-section .carousel-item .carousel-caption {
    left: 0;
    right: 0;
    padding: 10px 15px;
  }
  .hero-section .carousel-item .carousel-caption .hero-content h1 {
    font-size: 36px;
  }
  .hero-section .carousel-item .carousel-caption .hero-content .btn-banner {
    padding: 15px 12px;
    letter-spacing: 1px;
  }
}
@media (max-width: 576px) {
  .page-banner .page-title {
    font-size: 30px;
  }
  .owl-nav .owl-next {
    right: -2px;
  }
  .owl-nav .owl-prev {
    left: -2px;
  }
  .title {
    font-size: 14px;
  }
  .xs-font {
    font-size: 11px;
  }
  .contact-us .contact-form {
    padding: 20px;
    border-radius: 20px 20px 20px 0;
  }
}/*# sourceMappingURL=style.css.map */