html {
  scroll-behavior: smooth;
}

body {
  position: relative;
}

* {
  font-family: "Manrope", sans-serif;
  font-weight: 400;
}

.animate__animated {
  --animate-duration: 1.5s;
  animation-timing-function: cubic-bezier(0.25, 1, 0.5, 1);
}

/* floating buttons */
.floating-buttons {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 2;
}
@media (max-width: 767px) {
  .floating-buttons {
    bottom: 10px;
    right: 12px;
  }
}
.floating-buttons .circle-btn {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 24px;
  margin-bottom: 15px;
}
@media (max-width: 767px) {
  .floating-buttons .circle-btn {
    width: 28px;
    height: 28px;
  }
}
.floating-buttons .circle-btn.green {
  background: #39b54a;
}
.floating-buttons .circle-btn.blue {
  background: #14529d;
}

img {
  max-width: 100%;
  width: 100%;
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  padding-bottom: 8px;
  border-bottom: 1px solid #d6d6d6;
}
.section-head h2 {
  color: #14529d;
}
@media (max-width: 767px) {
  .section-head h2 {
    color: #14529d;
    font-size: 24px;
  }
}
.section-head .view_all a {
  color: #767676;
  font-weight: 600;
}
.section-head .view_all a svg {
  margin-left: 6px;
  animation: fadeInOut 0.8s ease-in-out infinite alternate;
}
@keyframes fadeInOut {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

.view_all a {
  color: #767676;
  font-weight: 600;
}
.view_all a svg {
  margin-left: 6px;
  animation: fadeInOut 0.8s ease-in-out infinite alternate;
}
@keyframes fadeInOut {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Manrope", sans-serif;
  padding: 0;
  margin: 0;
  font-weight: 600;
}

h1 {
  font-size: 60px;
}

h2 {
  font-size: 36px;
  font-weight: 700;
}

h3 {
  font-size: 32px;
}

h4 {
  font-size: 20px;
}

h5 {
  font-size: 16px;
}

h6 {
  font-size: 12px;
}

ul {
  margin: 0;
  padding: 0;
}

a {
  text-decoration: none;
}
a:hover {
  text-decoration: none;
}

ul li {
  list-style: none;
}

a .fade-in-image {
  animation: fadeIn 2s ease-in-out forwards;
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -3.2px;
}

sup {
  top: -8px;
}

.btn_secondary_rounded {
  font-weight: 600;
  text-transform: uppercase;
  font-size: 18px;
  color: #fff;
  display: inline-block;
  vertical-align: middle;
  cursor: pointer;
  border-radius: 24px;
  box-shadow: 0px 5px 10px -10px #ea867f;
  transition: all 500ms ease;
  background: linear-gradient(90deg, #780865, #3871c1 50%, #053678) var(--x, 0)/200%;
}

.btn_secondary_rounded:hover {
  --x: 100%;
  color: #fff;
}

/* ------------------------------------
     Preloader CSS
---------------------------------------*/
.preloaderBg {
  background-color: #ffffff;
  height: 100%;
  width: 100%;
  position: fixed;
  margin-top: 0;
  top: 0;
  z-index: 999999;
}

.loader-container {
  width: 70px;
  height: 70px;
  border-radius: 100%;
  animation: sk-scaleout 1s infinite ease-in-out;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.preloader {
  margin: auto;
  background: url(../image/logo.png) no-repeat center;
  background-size: 70px;
  width: 70px;
  height: 70px;
}

.preloader2 {
  border: 2px solid #f3f3f3;
  border-top: 2px solid #14529d;
  border-radius: 50%;
  width: 100px;
  height: 100px;
  animation: spin 1s ease-in-out infinite;
  position: relative;
  margin: auto;
  top: -82px;
  left: -18px;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
header {
  position: sticky;
  top: 0; /* Ensures it sticks to the very top */
  z-index: 1000; /* Ensures it appears above other content */
  background-color: #ffffff;
}
header .navbar {
  padding: 0;
}
@media (max-width: 991px) {
  header .navbar {
    padding: 0 0 8px 0;
  }
}
header .navbar .navbar-brand img {
  width: 60px;
  height: 60px;
  -o-object-fit: contain;
     object-fit: contain;
}
@media (max-width: 1199px) {
  header .navbar .navbar-brand img {
    width: 60px;
    height: 60px;
  }
}
header .navbar ul li {
  padding: 0 12px;
}
@media (max-width: 1199px) {
  header .navbar ul li {
    padding: 0 4px;
  }
}
header .navbar ul li a {
  color: #575757;
  text-transform: capitalize;
  font-weight: 600;
  padding: 4px 16px;
}
@media (max-width: 991px) {
  header .navbar ul li a {
    padding: 8px 16px;
  }
}
header .navbar ul li a:hover {
  color: #886920;
}
header .navbar ul li a.active {
  color: #886920;
}
header .navbar .right_nav_link {
  display: flex;
  align-items: center;
}
@media (max-width: 991px) {
  header .navbar .right_nav_link {
    flex-direction: column;
    align-items: flex-start;
  }
}
header .navbar a {
  color: #575757;
  text-transform: capitalize;
  font-weight: 600;
  padding: 4px 16px;
}
@media (max-width: 991px) {
  header .navbar a {
    padding: 8px;
  }
}
header .navbar a:hover {
  color: #886920;
}
header .navbar .btn_primary {
  background-color: #e3ecfb;
  color: #4b98e5;
  border-radius: 8px;
  border: 2px solid #e3ecfb;
  font-weight: 600;
}
header .navbar .btn_primary:hover {
  background-color: #4b98e5;
  color: #e3ecfb;
  border: 2px solid #4b98e5;
}
header .navbar .btn_secondary_rounded {
  color: #fff;
  height: 40px;
  padding: 4px 16px;
  display: flex;
  align-items: center;
}
header .navbar .btn_secondary_rounded:hover {
  color: #fff;
}
@media (max-width: 1199px) {
  header .navbar .btn_secondary_rounded {
    height: 36px;
    padding: 4px 8px;
    font-size: 14px;
  }
}

.hamburger {
  position: relative;
  width: 40px;
  height: 40px;
  text-align: center;
  background: #fff;
  border-radius: 50%;
  padding: 10px 8px;
  box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.52);
}

.hamburger span {
  display: block;
  height: 1px;
  width: 100%;
  background: #de5e55;
  border-radius: 3px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transform-origin: center;
  margin: 5px 4px;
}
.hamburger span:first-child {
  width: 16px;
}
.hamburger span:nth-child(2) {
  width: 24px;
}
.hamburger span:last-child {
  width: 16px;
}

/* Closed State */
.navbar-toggler.collapsed .hamburger span:nth-child(1) {
  transform: translateY(0) rotate(0);
}

.navbar-toggler.collapsed .hamburger span:nth-child(2) {
  opacity: 1;
  transform: scaleX(1);
}

.navbar-toggler.collapsed .hamburger span:nth-child(3) {
  transform: translateY(0) rotate(0);
}

/* Open State (X icon) */
.navbar-toggler:not(.collapsed) .hamburger span:nth-child(1) {
  transform: translateY(2px) rotate(45deg);
}

.navbar-toggler:not(.collapsed) .hamburger span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.navbar-toggler:not(.collapsed) .hamburger span:nth-child(3) {
  transform: translateY(-10px) rotate(-45deg);
}

.navbar-toggler:focus {
  box-shadow: none;
}

.dropdown:hover .dropdown-menu {
  display: block !important;
  margin-top: 0;
}

.dropdown-item:hover {
  background: transparent;
}

.dropdown-menu {
  transition: 0.2s ease-in-out;
  background: #fff;
  border: none;
  box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075) !important;
}

.nav-link,
.dropdown-item {
  position: relative;
  display: inline-block;
}

.nav-link:hover::after,
.nav-link.active::after,
.dropdown-item::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: #886920;
  transition: width 0.3s ease;
}

.nav-item.dropdown-toggle .nav-link::after {
  content: "";
  height: 0px;
}

.nav-link:hover::after,
.nav-link.active::after,
.dropdown-item:hover::after {
  width: 100%;
}

.dropdown-toggle::after {
  display: none;
  margin-left: 0.255em;
  vertical-align: 0.255em;
  content: "";
  border-top: 0.3em solid;
  border-right: 0.3em solid transparent;
  border-bottom: 0;
  border-left: 0.3em solid transparent;
}

.section-tittle span,
.section-tittle .section-label {
  color: #c41e3a;
}

@media (max-width: 575px) {
  .section-tittle {
    margin-bottom: 50px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .section-tittle {
    margin-bottom: 50px;
  }
}
.section-tittle span {
  font-size: 18px;
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  margin-bottom: 17px;
  text-transform: uppercase;
  color: #eb566c;
  display: inline-block;
  position: relative;
  padding-left: 68px;
}

@media (max-width: 575px) {
  .section-tittle span {
    font-size: 14px;
  }
}
.section-tittle span::before {
  position: absolute;
  content: "";
  width: 54px;
  height: 2px;
  background: #eb566c;
  top: 0;
  left: 0px;
  top: 50%;
  transform: translateY(-50%);
}

.section-tittle h2,
.section-tittle .h2 {
  color: #434343;
  font-weight: 900;
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .section-tittle h2,
  .section-tittle .h2 {
    font-size: 31px;
  }
}
@media (max-width: 575px) {
  .section-tittle h2,
  .section-tittle .h2 {
    font-size: 31px;
  }
}
.section-tittle2 span {
  color: #cecece;
}

.section-tittle2 span::before {
  background: #fff;
}

.section-tittle2 h2,
.section-tittle2 .h2 {
  color: #fff;
}

@media (max-width: 575px) {
  .section-tittle2 h2,
  .section-tittle2 .h2 {
    font-size: 27px;
  }
}
@media (max-width: 575px) {
  .section-tittle {
    margin-bottom: 50px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .section-tittle {
    margin-bottom: 50px;
  }
}
.section-tittle span {
  font-size: 18px;
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  margin-bottom: 17px;
  text-transform: uppercase;
  color: #eb566c;
  display: inline-block;
  position: relative;
  padding-left: 68px;
}

@media (max-width: 575px) {
  .section-tittle span {
    font-size: 14px;
  }
}
.section-tittle span::before {
  position: absolute;
  content: "";
  width: 54px;
  height: 2px;
  background: #eb566c;
  top: 0;
  left: 0px;
  top: 50%;
  transform: translateY(-50%);
}

.categories-area {
  margin-top: -80px;
}

.categories-area .single-cat {
  border: 9px solid transparent;
  padding: 30px 22px;
  transition: all 0.4s ease-out 0s;
  position: relative;
  z-index: 1;
  background: white;
  box-shadow: 0px 8px 12px 0px rgba(205, 205, 205, 0.35);
}
@media (max-width: 991px) {
  .categories-area .single-cat {
    margin: 20px 0;
  }
}

@media (max-width: 575px) {
  .categories-area .single-cat {
    padding: 30px 22px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .categories-area .single-cat {
    padding: 30px 18px;
  }
}
.categories-area .single-cat::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 0;
  background: #14529d;
  transition: all 0.4s ease-out 0s;
  bottom: 0;
  left: 0;
  z-index: -1;
  border: 9px solid #fff;
}

.categories-area .single-cat .cat-icon svg {
  color: #14529d;
  height: 65px;
  width: 65px;
  margin-bottom: 30px;
  display: block;
  margin: auto;
}

.categories-area .single-cat .cat-cap h3 .categories-area .single-cat .cat-cap .h3 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 21px;
  display: block;
  transition: all 0.2s ease-out 0s;
  font-family: "Sarabun", sans-serif;
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .categories-area .single-cat .cat-cap h5 > a,
  .categories-area .single-cat .cat-cap .h5 > a {
    font-size: 21px;
  }
}
@media (max-width: 575px) {
  .categories-area .single-cat .cat-cap h5 > a,
  .categories-area .single-cat .cat-cap .h5 > a {
    font-size: 23px;
  }
}
.categories-area .single-cat .cat-cap p {
  margin-bottom: 36px;
  color: #57667e;
  font-size: 16px;
  transition: all 0.2s ease-out 0s;
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .categories-area .single-cat .cat-cap p {
    font-size: 15px;
  }
}
.categories-area .single-cat .cat-cap a {
  color: #1c165c;
  font-size: 16px;
  font-weight: 600;
  transition: all 0.2s ease-out 0s;
}

.categories-area .single-cat:hover {
  border: 9px solid transparent;
}

.categories-area .single-cat:hover::before {
  height: 100%;
}

.categories-area .single-cat:hover .cat-icon svg {
  color: #fff;
}

.categories-area .single-cat:hover .cat-cap h3,
.categories-area .single-cat:hover .cat-cap .h3 {
  color: #fff;
}

.categories-area .single-cat:hover .cat-cap h5 a,
.categories-area .single-cat:hover .cat-cap .h5 a {
  color: #fff;
}

.categories-area .single-cat:hover .cat-cap p {
  color: #fff;
}

.categories-area .single-cat:hover .cat-cap a {
  color: #fff;
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about {
  position: relative;
  margin: 40px 0;
}

.about .about-content h2 {
  font-weight: 700;
  margin-bottom: 1.5rem;
  position: relative;
  color: #14529d;
}
@media only screen and (max-width: 767px) {
  .about .about-content h2 {
    font-size: 24px;
  }
}

.about .about-content h2:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.5rem;
  width: 80px;
  height: 4px;
  background-color: var(--accent-color);
}

.about .about-content .lead {
  font-size: 1.15rem;
  margin-bottom: 1.5rem;
  color: color-mix(in srgb, var(--heading-color), transparent 10%);
}

.about .about-content p {
  margin-bottom: 1rem;
  line-height: 1.7;
}

.about .achievement-boxes .achievement-box {
  background-color: var(--surface-color);
  border-left: 4px solid var(--accent-color);
  padding: 1.2rem;
  height: 100%;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.about .achievement-boxes .achievement-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.about .achievement-boxes .achievement-box h3 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0.3rem;
  color: var(--accent-color);
}

.about .achievement-boxes .achievement-box p {
  margin-bottom: 0;
  font-size: 0.9rem;
  font-weight: 500;
}

.about .certifications h5 {
  font-size: 1.1rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.about .certifications img {
  transition: transform 0.3s ease;
  filter: grayscale(100%);
  opacity: 0.7;
}

.about .certifications img:hover {
  filter: grayscale(0);
  opacity: 1;
  transform: scale(1.05);
}

.about .cta-container .btn-primary {
  background-color: #14529d;
  border-color: #14529d;
  color: #fff;
  padding: 0.75rem 1.5rem;
  font-weight: 500;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.about .cta-container .btn-primary:hover {
  background-color: #fff;
  border-color: color-mix(in srgb, #14529d, #000 10%);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px color-mix(in srgb, #14529d, transparent 70%);
  color: #14529d;
}

.about .about-image {
  position: relative;
}

.about .about-image .main-image {
  border-radius: 8px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  width: 100%;
}

.about .about-image .image-overlay {
  position: absolute;
  bottom: -60px;
  right: -30px;
  width: 50%;
  z-index: 2;
  border-radius: 8px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.about .about-image .image-overlay img {
  border: 5px solid var(--background-color);
}

.about .about-image .experience-badge {
  position: absolute;
  top: 30px;
  left: -30px;
  background-color: #14529d;
  color: #fff;
  padding: 1.5rem;
  border-radius: 50%;
  width: 130px;
  height: 130px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  box-shadow: 0 10px 25px color-mix(in srgb, var(--accent-color), transparent 60%);
}

.about .about-image .experience-badge span {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
}

.about .about-image .experience-badge p {
  font-size: 0.8rem;
  margin-bottom: 0;
  margin-top: 0.3rem;
}

@media (max-width: 991.98px) {
  .about .about-image {
    margin-top: 3rem;
  }
  .about .about-image .image-overlay {
    bottom: -40px;
    right: -20px;
  }
  .about .about-image .experience-badge {
    width: 100px;
    height: 100px;
    padding: 1rem;
    left: -20px;
  }
  .about .about-image .experience-badge span {
    font-size: 1.5rem;
  }
  .about .about-image .experience-badge p {
    font-size: 0.7rem;
  }
}
@media (max-width: 767.98px) {
  .about .achievement-boxes .achievement-box {
    padding: 1rem;
  }
  .about .achievement-boxes .achievement-box h3 {
    font-size: 1.8rem;
  }
  .about .achievement-boxes .achievement-box p {
    font-size: 0.8rem;
  }
  .about .about-image .image-overlay {
    bottom: -30px;
    right: 0;
    width: 40%;
  }
}
.banner_slider_section {
  position: relative;
  height: 500px;
  margin-bottom: 40px;
}
.banner_slider_section .single-banner-slide {
  height: 500px;
}
@media only screen and (max-width: 767px) {
  .banner_slider_section .single-banner-slide {
    height: 400px;
  }
}
.banner_slider_section .single-banner-slide:hover img {
  transform: scale(1.04);
}
.banner_slider_section .single-banner-slide img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: all 4s ease;
}
.banner_slider_section .single-banner-slide .overlay {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: #000000;
  opacity: 0.6;
  height: 100%;
  width: 100%;
}
.banner_slider_section .single-banner-slide h2 {
  color: #fff;
  position: absolute;
  bottom: 150px;
  font-size: 40px;
}
.banner_slider_section .owl-theme .custom-nav {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
}
.banner_slider_section .owl-theme .custom-nav .owl-prev,
.banner_slider_section .owl-theme .custom-nav .owl-next {
  position: absolute;
  height: 100px;
  color: inherit;
  background: none;
  border: none;
  z-index: 100;
  color: #fff;
}
.banner_slider_section .owl-theme .custom-nav .owl-prev {
  left: 0;
}
.banner_slider_section .owl-theme .custom-nav .owl-next {
  right: 0;
}

/* =============================
     6. Package area start
==============================*/
.package-area .view_all a img {
  height: 20px;
  width: 20px;
}
.package-area .package-card-xl {
  margin: 15px 0;
  box-shadow: 0px 0px 30px rgba(17, 17, 17, 0.08);
  overflow: hidden;
  border-radius: 10px;
  display: flex;
}
.package-area .package-card-xl .package-thumb-xl img {
  width: 300px;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 10px;
}
.package-area .package-card-xl .package-details-xl {
  width: 60%;
  padding: 25px 30px;
}
.package-area .package-card-xl .package-details-xl .package-info {
  display: flex;
  align-items: center;
  flex-direction: row;
  justify-content: space-between;
}
.package-area .package-card-xl .package-details-xl .package-info h5 {
  font-style: normal;
  font-weight: 700;
  font-size: 15px;
  line-height: 23px;
  color: #886920;
}
.package-area .package-card-xl .package-details-xl .package-info h5 span {
  font-size: 20px;
}
.package-area .package-card-xl .package-details-xl .package-info h5 i {
  margin-right: 5px;
}
.package-area .package-card-xl .package-details-xl h3 {
  font-style: normal;
  font-weight: 700;
  font-size: 23px;
  line-height: 27px;
  color: #14529d;
  text-transform: capitalize;
  padding: 15px 0;
}
.package-area .package-card-xl .package-details-xl h3 i {
  color: #886920;
  font-size: 18px;
}
.package-area .package-card-xl .package-details-xl h3 a {
  color: #14529d;
}
.package-area .package-card-xl .package-details-xl .package-rating {
  margin-top: 10px;
}
.package-area .package-card-xl .package-details-xl .package-rating strong {
  font-weight: 700;
  font-size: 13px;
  color: #886920;
}
.package-area .package-card-xl .package-details-xl .package-rating strong i {
  font-size: 20px;
  color: #14529d;
  margin-right: 5px;
}
.package-area .package-card-xl .package-details-xl .package-rating strong i::before {
  vertical-align: middle;
}
.package-area .package-card {
  margin: 15px 0;
  box-shadow: 0px 0px 30px rgba(17, 17, 17, 0.08);
  overflow: hidden;
}
.package-area .package-card:hover .package-thumb img {
  transform: scale(1.05);
}
.package-area .package-card .package-thumb {
  overflow: hidden;
}
.package-area .package-card .package-thumb img {
  width: 100%;
  transition: all 0.4s;
  height: 250px;
}
.package-area .package-card .package-details {
  padding: 20px 15px;
}
.package-area .package-card .package-details .package-info {
  display: flex;
  align-items: center;
  flex-direction: row;
  justify-content: space-between;
}
.package-area .package-card .package-details .package-info h5 {
  font-style: normal;
  font-weight: 700;
  font-size: 15px;
  line-height: 23px;
  color: #886920;
}
.package-area .package-card .package-details .package-info h5 span {
  font-size: 20px;
}
.package-area .package-card .package-details .package-info h5 i {
  margin-right: 5px;
}
.package-area .package-card .package-details h3 {
  font-style: normal;
  font-weight: 700;
  font-size: 23px;
  line-height: 28px;
  color: #14529d;
  text-transform: capitalize;
  padding: 0 0 16px 0;
}
.package-area .package-card .package-details h3 i {
  color: #54524e;
  font-size: 18px;
}
.package-area .package-card .package-details h3 a {
  color: #14529d;
  font-weight: 800;
}
.package-area .package-card .package-details .package-rating {
  display: flex;
}
.package-area .package-card .package-details .package-rating i {
  font-size: 18px;
  color: #14529d;
  margin-right: 5px;
}
.package-area .package-card .package-details .package-rating strong {
  font-weight: 700;
  font-size: 13px;
  color: #886920;
  display: flex;
  align-items: center;
}
.package-area .offer-area .offer-slider.owl-carousel .owl-nav button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.package-area .offer-area .offer-slider.owl-carousel .owl-nav button.owl-prev {
  left: -7%;
}
.package-area .offer-area .offer-slider.owl-carousel .owl-nav button.owl-next {
  right: -7%;
}
.package-area .offer-card {
  margin: 30px 0;
}
.package-area .offer-card:hover .offer-thumb img {
  transform: scale(1.05);
}
.package-area .offer-card .offer-thumb {
  overflow: hidden;
}
.package-area .offer-card .offer-thumb img {
  width: 100%;
  transition: all 0.4s;
}
.package-area .offer-card .offer-details {
  border: 1px solid #f1f1f1;
  padding: 20px 15px;
}
.package-area .offer-card .offer-details .offer-info {
  display: flex;
  justify-content: space-between;
}
.package-area .offer-card .offer-details .offer-info h5 {
  font-style: normal;
  font-weight: 700;
  font-size: 15px;
  line-height: 23px;
  color: #886920;
}
.package-area .offer-card .offer-details .offer-info h5 span {
  font-size: 20px;
}
.package-area .offer-card .offer-details .offer-info h5 i {
  margin-right: 5px;
}
.package-area .offer-card .offer-details .offer-info ul.offer-rating {
  display: flex;
}
.package-area .offer-card .offer-details .offer-info ul.offer-rating li {
  margin-left: 5px;
  color: #14529d;
}
.package-area .offer-card .offer-details h3 {
  font-style: normal;
  font-weight: 700;
  font-size: 23px;
  line-height: 27px;
  color: #14529d;
  text-transform: capitalize;
  padding: 20px 0 18px 0;
}
.package-area .offer-card .offer-details h3 i {
  color: #c5b12d;
  font-size: 18px;
}
.package-area .offer-card .offer-details h3 a {
  color: #14529d;
}
.package-area .offer-card .offer-details strong {
  font-weight: 700;
  font-size: 25px;
  line-height: 29px;
  color: #886920;
}
.package-area .offer-card .offer-details strong span {
  color: #a5a5a5;
  margin-left: 10px;
  font-size: 18px;
  text-decoration: line-through;
}

/* =============================
      Package area end
==============================*/
/* =============================
      honeycrumb start
==============================*/
.honeycomb_block {
  margin: 100px 0 200px 0;
}

.honeycomb_block body {
  font-family: "Montserrat", sans-serif;
  background: #3ea0eb;
}

.honeycomb_block *,
.honeycomb_block *::before,
.honeycomb_block *::after {
  box-sizing: border-box;
}

.honeycomb_block .honeycomb {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  justify-content: center;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0;
  transform: translateY(34.375px);
}

.honeycomb_block .honeycomb-cell {
  flex: 0 1 250px;
  max-width: 250px;
  height: 137.5px;
  margin: 65.47619px 12.5px 25px;
  position: relative;
  padding: 0.5em;
  text-align: center;
  z-index: 1;
}
.honeycomb_block .honeycomb-cell:hover img {
  transform: scale(1.09);
}

.honeycomb_block .honeycomb-cell__title {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  hyphens: auto;
  word-break: break-word;
  text-transform: uppercase;
  color: #fff;
  font-weight: 700;
  font-size: 23px;
  transition: opacity 350ms;
}

.honeycomb_block .honeycomb-cell__title > small {
  font-weight: 300;
  margin-top: 0.25em;
}

.honeycomb_block .honeycomb-cell__image {
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
  transition: all 0.9s;
}

.honeycomb_block .honeycomb-cell::before,
.honeycomb_block .honeycomb-cell::after {
  content: "";
}

.honeycomb_block .honeycomb-cell::before,
.honeycomb_block .honeycomb-cell::after,
.honeycomb_block .honeycomb-cell__image {
  top: -50%;
  left: 0;
  width: 100%;
  height: 200%;
  display: block;
  position: absolute;
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  z-index: -1;
}

.honeycomb_block .honeycomb-cell::before {
  background: #fff;
  transform: scale(1.055);
}

.honeycomb_block .honeycomb-cell::after {
  background: #3ea0eb;
  opacity: 0.5;
  transition: opacity 350ms;
}

.honeycomb_block .honeycomb-cell:hover .honeycomb-cell__title {
  opacity: 0;
}

.honeycomb_block .honeycomb-cell:hover::before {
  background: #72f88e;
}

.honeycomb_block .honeycomb-cell:hover::after {
  opacity: 0;
}

.honeycomb_block .honeycomb__placeholder {
  display: none;
  opacity: 0;
  width: 250px;
  margin: 0 12.5px;
}

@media (max-width: 550px) {
  .honeycomb_block .honeycomb-cell {
    margin: 81.25px 25px;
  }
}
@media (min-width: 550px) and (max-width: 825px) {
  .honeycomb_block .honeycomb-cell:nth-child(3n) {
    margin-right: calc(50% - 125px);
    margin-left: calc(50% - 125px);
  }
  .honeycomb_block .honeycomb__placeholder:nth-child(3n+5) {
    display: block;
  }
}
@media (min-width: 825px) and (max-width: 1100px) {
  .honeycomb_block .honeycomb-cell:nth-child(5n+4) {
    margin-left: calc(50% - 275px);
  }
  .honeycomb_block .honeycomb-cell:nth-child(5n+5) {
    margin-right: calc(50% - 275px);
  }
  .honeycomb_block .honeycomb__placeholder:nth-child(5n),
  .honeycomb_block .honeycomb__placeholder:nth-child(5n+3) {
    display: block;
  }
}
@media (min-width: 1100px) {
  .honeycomb_block .honeycomb-cell:nth-child(7n+5) {
    margin-left: calc(50% - 400px);
  }
  .honeycomb_block .honeycomb-cell:nth-child(7n+7),
  .honeycomb_block .honeycomb-cell:nth-child(7n+5):nth-last-child(2) {
    margin-right: calc(50% - 400px);
  }
  .honeycomb_block .honeycomb__placeholder:nth-child(7n+7),
  .honeycomb_block .honeycomb__placeholder:nth-child(7n+9),
  .honeycomb_block .honeycomb__placeholder:nth-child(7n+11) {
    display: block;
  }
}
/* =============================
      honeycrumb end
==============================*/
/* =============================
      blog section start
==============================*/
.blog-section {
  overflow: hidden;
  padding: 40px 0;
}
.blog-section .item-single img {
  height: 240px;
  -o-object-fit: cover;
     object-fit: cover;
}
.blog-section .item-single .content {
  transition: 0.5s;
  padding: 25px 16px;
}
.blog-section .item-single .content .info-list li {
  display: flex;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: #767676;
}
.blog-section .item-single .content .info-list li svg {
  color: #c5b12d;
  height: 20px;
  width: 20px;
}
.blog-section .item-single .content .info-list li i {
  margin-top: -2px;
}
.blog-section .item-single .content h3 {
  margin-top: 12px;
  margin-bottom: 12px;
  font-size: 24px;
}
.blog-section .item-single .content h3 a {
  color: #134179;
  font-weight: 600;
}
.blog-section .item-single .content p {
  margin: 0;
}
.blog-section .item-single:hover .content {
  background-color: #155fb4;
}
.blog-section .item-single:hover .content .info-list li {
  color: #fff;
}
.blog-section .item-single:hover .content .info-list li i {
  color: #fff;
}
.blog-section .item-single:hover .content h3 a {
  color: #fff;
}
.blog-section .item-single:hover .content h3 a:hover {
  text-decoration: none;
}
.blog-section .item-single:hover .content p {
  color: #fff;
}

/* =============================
      blog section end
==============================*/
/* =============================
      testimonial section start
==============================*/
.testimonial_section {
  margin: 40px 0;
}
.testimonial_section .morecontent span {
  display: none;
}
.testimonial_section .morelink {
  display: block;
  font-weight: 600;
  font-size: 16px;
  color: #14529d;
}
.testimonial_section .testimonial-item {
  padding: 10px;
}
.testimonial_section .quote-bubble {
  width: 100%;
  font-weight: 300;
  position: relative;
  border-radius: 4px;
  background-color: white;
  padding: 12px 20px;
  margin-bottom: 46px;
  filter: drop-shadow(-1px -1px 10px rgba(0, 0, 0, 0.08));
}
.testimonial_section .quote-bubble .date {
  font-size: 14px;
  padding: 12px 0 0;
}
.testimonial_section .quote-bubble h4 {
  padding: 20px 0;
}
.testimonial_section .quote-bubble svg {
  height: 40px;
  width: 40px;
}
.testimonial_section .quote-bubble .content {
  color: #434343;
  font-size: 14px;
  line-height: 30px;
  font-weight: 600;
}
.testimonial_section .quote-bubble::after {
  clear: both;
  content: "";
  display: table;
}
.testimonial_section .quote-bubble:after {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  bottom: -20px;
  left: 60px;
  border-left: 0px solid transparent;
  border-right: 100px solid transparent;
  border-top: 56px solid white;
  rotate: degree;
  transform: rotate(147deg);
}
.testimonial_section .testimonial-user span {
  color: #000;
  font-weight: 700;
  display: block;
}

/* =============================
      testimonial section end
==============================*/
/* =============================
     experience_section start
==============================*/
.experience_section {
  margin: 40px 20px;
}
.experience_section .hero-section {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
}
.experience_section .hero-section .experience_divide {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  text-align: left;
  margin: 40px 0;
}
@media (max-width: 500px) {
  .experience_section .hero-section .experience_divide {
    gap: 12px;
    margin: 20px 0;
  }
}
.experience_section .hero-section .experience_divide p {
  font-weight: 700;
  font-style: italic;
}
.experience_section .hero-section .experience_divide svg {
  height: 20px;
  width: 20px;
}
.experience_section {
  /* background image */
}
.experience_section .hero-img {
  width: 100%;
  height: 300px;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: right;
     object-position: right;
}
@media (max-width: 500px) {
  .experience_section .hero-img {
    -o-object-fit: cover;
       object-fit: cover;
  }
}
.experience_section {
  /* gradient overlay */
}
.experience_section .hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, #2d5f7a 60%, rgba(0, 0, 0, 0) 80%);
}
.experience_section {
  /* text content */
}
.experience_section .hero-content {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 60px;
  color: white;
  max-width: 520px;
}
@media (max-width: 500px) {
  .experience_section .hero-content {
    left: 20px;
  }
}
.experience_section .hero-content h1 {
  font-size: 38px;
  font-weight: 700;
  line-height: 1.4;
}
@media only screen and (max-width: 767px) {
  .experience_section .hero-content h1 {
    font-size: 24px;
  }
}
.experience_section .hero-small {
  font-size: 14px;
  letter-spacing: 1px;
  margin-bottom: 15px;
}
.experience_section {
  /* button */
}
.experience_section .hero-btn {
  margin-top: 25px;
}
@media only screen and (max-width: 767px) {
  .experience_section .hero-btn {
    margin-top: 12px;
  }
}
.experience_section .hero-btn svg {
  height: 20px;
  width: 20px;
}
.experience_section .hero-btn:hover {
  background: #14529d;
  color: #fff;
}

/* =============================
     experience_section end
==============================*/
/* =============================
     footer section start
==============================*/
footer {
  background: #f5f5f5;
}
footer .top_footer {
  padding: 20px 0;
}
footer .top_footer .top_footer_divide {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
@media (max-width: 991px) {
  footer .top_footer .top_footer_divide {
    grid-template-columns: 1fr;
  }
}
footer .top_footer .top_footer_divide .we_are_associated_with {
  display: grid;
  gap: 2px;
}
footer .top_footer .top_footer_divide .we_are_associated_with .associated_links {
  display: flex;
  gap: 20px;
}
footer .top_footer .top_footer_divide .we_are_associated_with .associated_links img {
  height: 80px;
  width: 80px;
  -o-object-fit: contain;
     object-fit: contain;
}
footer .top_footer .top_footer_divide .recommended {
  display: grid;
  gap: 2px;
}
footer .top_footer .top_footer_divide .recommended img {
  height: 100px;
  width: 200px;
  -o-object-fit: contain;
     object-fit: contain;
}
footer section {
  padding: 60px 0;
  min-height: 100vh;
}
footer .Social-media ul {
  transform: translate(0, -50%);
  white-space: nowrap;
  display: flex;
  grid-auto-rows: 30px;
}
footer .Social-media ul li i {
  font-family: "FontAwesome";
  font-size: 18px;
  line-height: 18px;
}
footer .Social-media ul li {
  position: relative;
  list-style: none;
  display: inline-block;
  width: 30px;
  height: 19px;
  margin: 0 4px;
  transition: 0.9s;
  padding: 0;
}
footer .Social-media ul li:first-child i {
  padding: 2px 10px;
  line-height: 18px;
}
footer .Social-media ul li:nth-child(2) i {
  padding: 2px 8px;
}
footer .Social-media ul li:nth-child(3) i {
  padding: 0px 6px;
}
footer .Social-media ul li:nth-child(4) i {
  padding: 0px 8px;
}
footer .Social-media ul li:nth-child(5) i {
  padding: 0px 8px;
}
footer .Social-media ul li:hover {
  transform: translateY(-30px);
}
footer .Social-media ul li::before,
footer .Social-media ul li::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
footer .Social-media ul li::before {
  transform: rotate(60deg);
}
footer .Social-media ul li::after {
  transform: rotate(-60deg);
}
footer .Social-media ul li a {
  display: inline-block;
  width: 100%;
  height: 100%;
  color: #fff;
  text-align: center;
  text-decoration: none;
  font-size: 15px;
}
footer .Social-media ul li:nth-of-type(1) a,
footer .Social-media ul li:nth-of-type(1)::before,
footer .Social-media ul li:nth-of-type(1)::after {
  background: #3b5999;
}
footer .Social-media ul li:nth-of-type(2) a,
footer .Social-media ul li:nth-of-type(2)::before,
footer .Social-media ul li:nth-of-type(2)::after {
  background: #55acee;
}
footer .Social-media ul li:nth-of-type(3) a,
footer .Social-media ul li:nth-of-type(3)::before,
footer .Social-media ul li:nth-of-type(3)::after {
  background: #dd4b39;
}
footer .Social-media ul li:nth-of-type(4) a,
footer .Social-media ul li:nth-of-type(4)::before,
footer .Social-media ul li:nth-of-type(4)::after {
  background: #0077b5;
}
footer .Social-media ul li:nth-of-type(5) a,
footer .Social-media ul li:nth-of-type(5)::before,
footer .Social-media ul li:nth-of-type(5)::after {
  background: #00aff0;
}
footer .main-footer {
  background: #e6e6e6;
}
footer .footer-content {
  padding: 40px 0;
}
footer .footer-content .logo-widget {
  margin-top: -5px;
}
footer .footer-content .logo-widget .footer-social li:last-child {
  margin-right: 0px;
}
footer .footer-content .logo-widget .footer-social li a {
  position: relative;
  display: inline-block;
  width: 42px;
  height: 42px;
  line-height: 42px;
  background: #2e3138;
  color: #9ea0a9;
  text-align: center;
  border-radius: 50%;
}
footer .footer-content .logo-widget .footer-social li a:hover {
  color: #ffffff;
  background: #ff5e14;
}
footer .footer-content .logo-widget .logo-box {
  margin-bottom: 12px;
}
footer .footer-content .logo-widget .text p {
  color: #292929;
  margin-bottom: 32px;
  text-align: justify;
}
footer .footer-content .footer-title {
  font-size: 24px;
  line-height: 35px;
  color: #000000;
  font-weight: 700;
  margin-bottom: 27px;
}
footer .service-widget {
  padding: 0 0 0 26px;
}
@media (max-width: 991px) {
  footer .service-widget {
    padding: 0;
  }
}
footer .service-widget .list li a svg {
  color: #767676;
}
footer .service-widget .list li a {
  font-weight: 500;
  color: #1a1a1a;
  color: #455a64 !important;
  text-decoration: none;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding: 0.3rem 0;
  transition: all 0.6s ease;
}
footer .service-widget .list li a:hover {
  color: #14529d !important;
  transform: translateX(8px);
}
footer .footer-content .contact-widget p {
  color: #9ea0a9;
  margin-bottom: 15px;
}
footer .contact_list li {
  display: grid;
  grid-template-columns: 24px auto;
  gap: 8px;
  padding: 12px 0;
}
footer {
  /** footer-bottom **/
}
footer .footer-bottom {
  background: #163864;
  padding: 8px 0;
  color: #fff;
}
footer .footer-bottom .copyright,
footer .footer-bottom .copyright a,
footer .footer-bottom .footer-nav li a {
  position: relative;
  color: #fff;
}
footer .footer-bottom .copyright a:hover,
footer .footer-bottom .footer-nav li a:hover {
  color: #ff5e14;
}
footer .footer-bottom .footer-nav {
  position: relative;
  text-align: right;
}
footer .footer-bottom .footer-nav li {
  position: relative;
  display: inline-block;
  margin-left: 29px;
}
footer .footer-bottom .footer-nav li:first-child {
  margin-left: 0px;
}
footer .footer-bottom .footer-nav li:before {
  position: absolute;
  content: "";
  background: #9ea0a9;
  width: 1px;
  height: 14px;
  top: 7px;
  left: -18px;
}
footer .footer-bottom .footer-nav li:first-child:before {
  display: none;
}
footer .logo-box img {
  max-width: 60px;
}

/* =============================
     footer section end
==============================*/
/* =============================
     trek section start
==============================*/
.trek_banner {
  /* background: #f8f9fa; */
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.trek_banner .about-title {
  font-weight: 800;
  color: #14529d;
}
@media only screen and (max-width: 767px) {
  .trek_banner .about-title {
    font-size: 24px;
  }
}
.trek_banner .about-text {
  font-size: 18px;
  line-height: 1.8;
  color: #444;
  margin-top: 20px;
}
.trek_banner .more-btn {
  margin-top: 25px;
  font-weight: 600;
  color: #333;
  text-decoration: none;
}
.trek_banner .more-btn i {
  margin-left: 8px;
}
.trek_banner .mountain-img {
  position: absolute;
  bottom: 0;
  right: 0;
  max-width: 45%;
  opacity: 0.9;
}
@media (max-width: 768px) {
  .trek_banner .mountain-img {
    position: relative;
    max-width: 100%;
    margin-top: 40px;
  }
}

/* =============================
     trek section end
==============================*/
/* =============================
    why_choose_us start
==============================*/
.why_choose_us {
  background: #f5f6f8;
  padding: 20px 0;
}
.why_choose_us .main-title {
  font-weight: 700;
  margin-bottom: 16px;
  color: #14529d;
}
@media only screen and (max-width: 767px) {
  .why_choose_us .main-title {
    font-size: 24px;
  }
}
.why_choose_us .feature-box {
  display: flex;
  align-items: flex-start;
  margin-bottom: 30px;
}
.why_choose_us .icon-box {
  width: 46px;
  height: 46px;
  border: 3px solid #14529d;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  /* font-size: 26px; */
  color: #14529d;
  margin-right: 16px;
}
.why_choose_us .icon-box svg {
  height: 40px;
  width: 40px;
  -o-object-fit: contain;
     object-fit: contain;
  padding: 8px;
}
.why_choose_us .feature-box h5 {
  font-weight: 700;
  margin-bottom: 5px;
}
.why_choose_us .feature-box p {
  font-size: 14px;
  color: #666;
  margin: 0;
}
.why_choose_us .travel-img {
  max-width: 100%;
}

/* =============================
    why_choose_us end
==============================*/
/* =============================
    gallery start
==============================*/
.gallery_section {
  padding: 40px 0;
}
.gallery_section .gallery_divide {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 1rem;
  justify-content: center;
  align-items: center;
}
.gallery_section .card {
  background: #ffffff;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 3px rgba(0, 0, 0, 0.24);
  color: #333333;
  border-radius: 2px;
}
.gallery_section .card-image {
  background: #ffffff;
  display: block;
  padding-top: 70%;
  position: relative;
  width: 100%;
  overflow: hidden;
}
.gallery_section .card-image img {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  scale: 1;
  transition: scale 0.6s ease;
  height: 200px;
}
.gallery_section .card-image img:hover {
  scale: 1.2;
  transition: scale 1s ease;
}
@media only screen and (max-width: 600px) {
  .gallery_section .gallery_divide {
    display: grid;
    grid-template-columns: 1fr;
    grid-gap: 1rem;
  }
}

/* =============================
    gallery end
==============================*/
/* -----------------------------------------
  Page Title CSS
----------------------------------------- */
.page-title-area {
  position: relative;
  overflow: hidden;
  z-index: 1;
  height: 306px;
  padding: 100px 0;
}
.page-title-area::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
  opacity: 0.5;
  background: #090031;
  z-index: -1;
}
.page-title-area .bg-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
  -o-object-fit: cover;
     object-fit: cover;
}
.page-title-area .page-title-content {
  text-transform: capitalize;
  text-align: center;
}
.page-title-area .page-title-content h1 {
  color: #fff;
  margin-bottom: 20px;
  margin-top: -10px;
  line-height: 1.2;
}
.page-title-area .page-title-content ul {
  padding: 0;
  margin: 0;
}
.page-title-area .page-title-content ul li {
  margin-right: 10px;
  padding-left: 15px;
  display: inline-block;
}
.page-title-area .page-title-content ul li:first-child {
  padding-left: 0;
}
.page-title-area .page-title-content ul li i {
  font-size: 14px;
  margin-left: -20px;
  margin-right: 10px;
  color: #fff;
  vertical-align: -1px;
}
.page-title-area .page-title-content ul li a {
  color: #fff;
}
.page-title-area .page-title-content ul li a:hover {
  color: #14529d;
}

/* -----------------------------------------
  Contact CSS
----------------------------------------- */
.contact-section {
  overflow: hidden;
}
.contact-section .contact_top-section {
  padding: 40px;
  /* Card */
}
.contact-section .contact_top-section .contact-card {
  max-width: 700px;
  margin: auto;
  background: #ffffff;
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 15px 40px rgba(0, 123, 255, 0.1);
  animation: fadeUp 0.7s ease;
}
.contact-section .contact_top-section {
  /* Title */
}
.contact-section .contact_top-section .contact-title {
  text-align: center;
  font-weight: 700;
  color: #0d3b66;
  margin-bottom: 30px;
}
.contact-section .contact_top-section {
  /* Inputs */
}
.contact-section .contact_top-section .form-control {
  border-radius: 10px;
  padding: 14px;
  border: 1px solid #d0e2ff;
  transition: all 0.3s ease;
}
.contact-section .contact_top-section {
  /* Placeholder */
}
.contact-section .contact_top-section .form-control::-moz-placeholder {
  color: #7a9cc6;
}
.contact-section .contact_top-section .form-control::placeholder {
  color: #7a9cc6;
}
.contact-section .contact_top-section {
  /* Focus effect */
}
.contact-section .contact_top-section .form-control:focus {
  border-color: #0d6efd;
  box-shadow: 0 0 10px rgba(13, 110, 253, 0.25);
}
.contact-section .contact_top-section {
  /* Hover */
}
.contact-section .contact_top-section .form-control:hover {
  border-color: #0d6efd;
}
.contact-section .contact_top-section {
  /* Checkbox */
}
.contact-section .contact_top-section .form-check-label {
  color: #555;
}
.contact-section .contact_top-section .form-check a {
  color: #0d6efd;
  text-decoration: none;
}
.contact-section .contact_top-section {
  /* Button */
}
.contact-section .contact_top-section .btn-submit {
  width: 100%;
  background: linear-gradient(135deg, #14529d, #247bd3);
  border: none;
  padding: 14px;
  border-radius: 10px;
  color: #fff;
  font-weight: 600;
  transition: all 0.3s ease;
}
.contact-section .contact_top-section {
  /* Button Hover */
}
.contact-section .contact_top-section .btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(13, 110, 253, 0.3);
}
.contact-section .contact_top-section {
  /* Animation */
}
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.contact-section .content {
  max-width: 409px;
  margin-left: auto;
}
.contact-section .info-content {
  position: relative;
  margin-bottom: 25px;
}
.contact-section .info-content .sub-title {
  margin-bottom: 20px;
}
.contact-section .info-content .content-list {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  gap: 12px;
}
.contact-section .info-content .content-list h6 {
  font-weight: 400;
  color: #1a1a1a;
  margin-bottom: 0;
}
.contact-section .info-content .content-list h6 span {
  font-weight: 600;
}
.contact-section .info-content .content-list h6 a {
  color: #1a1a1a;
}
.contact-section .info-content .content-list svg {
  height: 28px;
  width: 28px;
  -o-object-fit: contain;
     object-fit: contain;
  padding: 4px;
  background: #fff;
  border-radius: 4px;
  margin-right: 8px;
  box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.1);
  color: #14529d;
  vertical-align: middle;
}
@media only screen and (max-width: 767px) {
  .contact-section .info-content {
    padding: 16px;
  }
}
.contact-section .contact-map {
  overflow: hidden;
  padding-bottom: 50%;
  position: relative;
  height: 100%;
  border: none;
  margin: 0;
}
.contact-section .contact-map iframe {
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  position: absolute;
  border: 0;
}

/* -----------------------------------------
  Main Form CSS
----------------------------------------- */
.main-form form {
  max-width: 600px;
  margin: auto;
  padding: 30px;
  background: #f9f8fe;
  border-radius: 3px;
  border: 5px solid #fff;
  box-shadow: 0px 0px 29px 0px rgba(102, 102, 102, 0.1);
}
.main-form .form-group {
  margin-bottom: 20px;
  position: relative;
}
.main-form .form-group .input-icon {
  position: absolute;
  top: 18px;
  left: 10px;
}
.main-form .form-group .input-icon i {
  color: #14529d;
  vertical-align: -2px;
  font-size: 20px;
}
.main-form .form-group .form-control {
  padding-left: 35px;
}
.main-form .check-group {
  background-color: transparent;
}
.main-form .btn-primary {
  width: 100%;
  border-radius: 5px;
  box-shadow: none;
}
@media only screen and (max-width: 767px) {
  .main-form {
    padding: 20px 16px;
  }
}
.main-form #msgSubmit {
  font-size: 20px;
  margin-top: 8px;
  color: #14529d;
}
.main-form .btn-primary.disabled,
.main-form .btn-primary:disabled {
  background: #14529d;
  border: 1px solid #14529d;
}
.main-form .btn-primary.disabled:hover,
.main-form .btn-primary:disabled:hover {
  color: #14529d;
  background: transparent;
  border: 1px solid #14529d;
}
.main-form .sub-title {
  text-align: center;
  margin-bottom: 30px;
  line-height: 1;
}
.main-form .content {
  margin-bottom: 30px;
  text-align: center;
}
.main-form .content h3 {
  font-size: 30px;
  margin-top: -7px;
  margin-bottom: 5px;
}
.main-form .checkbox label {
  position: relative;
  padding-left: 28px;
  cursor: pointer;
  line-height: 20px;
  font-weight: 500;
  font-size: 14px;
  display: inline-block;
  margin-bottom: 0;
  color: #1a1a1a;
}
.main-form .checkbox label a {
  color: #14529d;
}
.main-form .checkbox [type=checkbox]:checked,
.main-form .checkbox [type=checkbox]:not(:checked) {
  display: none;
}
.main-form .checkbox [type=checkbox]:checked + label:after,
.main-form .checkbox [type=checkbox]:not(:checked) + label:after {
  content: "";
  width: 8px;
  height: 8px;
  background: #14529d;
  position: absolute;
  top: 5.5px;
  left: 6px;
  border-radius: 50%;
  transition: 0.5s;
}
.main-form .checkbox [type=checkbox]:checked + label::before,
.main-form .checkbox [type=checkbox]:not(:checked) + label::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 19px;
  height: 19px;
  border-radius: 50%;
  border: 1px solid #14529d;
  background: #fff;
  transition: 0.5s;
}
.main-form .checkbox [type=checkbox]:checked + label::before {
  border: 1px solid #14529d;
  background: unset;
}
.main-form .checkbox [type=checkbox]:not(:checked) + label:after {
  display: none;
}
.main-form .link {
  text-align: right;
}
.main-form .link a {
  display: inline-block;
  font-weight: 500;
  font-size: 14px;
  line-height: 1.3;
}

.blogdetail_page section {
  padding: 60px 10%;
}
.blogdetail_page .blog-wrap {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}
.blogdetail_page .blog-main {
  flex: 3;
  min-width: 300px;
}
.blogdetail_page .blog-sidebar {
  flex: 1.2;
  min-width: 250px;
  order: -1;
}
.blogdetail_page {
  /* Move sidebar to left */
}
.blogdetail_page .blog-title {
  font-size: 28px;
  color: #14529d;
  margin-bottom: 15px;
}
.blogdetail_page .blog-meta {
  display: flex;
  gap: 20px;
  font-size: 14px;
  color: #777;
  margin-bottom: 20px;
  flex-wrap: wrap;
}
.blogdetail_page .blog-meta span {
  display: flex;
  align-items: center;
  gap: 6px;
}
.blogdetail_page .blog-meta i {
  color: #14529d;
}
.blogdetail_page .blog-image img {
  width: 100%;
  height: 300px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 10px;
  margin-bottom: 20px;
}
.blogdetail_page .highlight {
  background: linear-gradient(90deg, #fff3cd, #fff);
  padding: 18px;
  border-left: 6px solid #14529d;
  margin-bottom: 25px;
  font-weight: 600;
  border-radius: 6px;
}
.blogdetail_page .blog-content p {
  margin-bottom: 15px;
  font-size: 16px;
  line-height: 1.8;
  color: #767676;
}
.blogdetail_page {
  /* SIMILAR BLOGS */
}
.blogdetail_page .similar-blog {
  margin-bottom: 20px;
  display: flex;
  gap: 12px;
  transition: 0.3s;
}
.blogdetail_page .similar-blog:hover {
  transform: translateX(5px);
}
.blogdetail_page .similar-blog img {
  width: 80px;
  height: 80px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 8px;
}
.blogdetail_page .similar-meta {
  font-size: 12px;
  color: #777;
  display: flex;
  gap: 8px;
  margin-bottom: 5px;
  flex-wrap: wrap;
}
.blogdetail_page .similar-meta i {
  color: #14529d;
}
.blogdetail_page .similar-title {
  font-weight: 600;
  color: #14529d;
  font-size: 14px;
}
.blogdetail_page {
  /* MORE BLOGS FROM AUTHOR */
}
.blogdetail_page .more-blogs {
  margin-top: 40px;
}
.blogdetail_page .more-blogs h3 {
  color: #14529d;
  margin-bottom: 25px;
}
.blogdetail_page .breaker {
  width: 100%;
  height: 3px;
  background: linear-gradient(to right, #14529d, #fff, #14529d);
  margin: 25px 0;
  border-radius: 3px;
}
.blogdetail_page .more-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 900px) {
  .blogdetail_page .more-list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 500px) {
  .blogdetail_page .more-list {
    grid-template-columns: repeat(1, 1fr);
  }
}
.blogdetail_page .more-block {
  background: #fff;
  padding: 12px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: 0.3s;
}
.blogdetail_page .more-block:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}
.blogdetail_page .more-block img {
  width: 100%;
  height: 150px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 8px;
  margin-bottom: 10px;
}
.blogdetail_page .more-block h4 {
  color: #14529d;
  margin-bottom: 6px;
}
.blogdetail_page .more-block .meta {
  font-size: 12px;
  color: #555;
}

.blog_list_page section {
  padding: 70px 10%;
}
.blog_list_page h2 {
  text-align: center;
  margin-bottom: 40px;
  color: #14529d;
}
.blog_list_page {
  /* BLOG GRID */
}
.blog_list_page .blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}
.blog_list_page .blog-grid a .blog {
  height: 100%;
  border: 1px solid #ddd;
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.3s;
}
.blog_list_page .blog-grid a .blog:hover {
  transform: translateY(-5px);
}
.blog_list_page .blog-grid a .blog img {
  width: 100%;
  height: 200px;
  -o-object-fit: cover;
     object-fit: cover;
}
.blog_list_page .blog-grid a .blog-content {
  padding: 15px;
}
.blog_list_page .blog-grid a .blog-content .blog-meta {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  color: #14529d;
  margin-bottom: 10px;
}
.blog_list_page .blog-grid a .blog-content .blog-meta span {
  font-weight: 700;
  font-size: 15px;
  line-height: 23px;
  color: #886920;
}
.blog_list_page .blog-grid a .blog-content h4 {
  color: #14529d;
  font-weight: 700;
}
.blog_list_page .blog-grid a .blog-content p {
  color: #434343;
  font-size: 14px;
  padding: 10px 0 0 0;
}

/* BREADCRUMB */
.breadcrumb {
  height: 100px;
  background: url("https://images.unsplash.com/photo-1556911220-e15b29be8c8f") center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 16px;
  font-weight: bold;
  position: relative;
}
.breadcrumb .overlay {
  background: rgba(0, 0, 0, 0.4196078431);
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
.breadcrumb a {
  color: #d7de20;
}

.course_detail_page section {
  padding: 60px 2%;
}
.course_detail_page {
  /* LAYOUT */
}
.course_detail_page .detail-wrap {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}
.course_detail_page .main-detail {
  flex: 3;
  min-width: 300px;
}
.course_detail_page .sidebar {
  flex: 1.3;
  min-width: 250px;
}
.course_detail_page {
  /* COURSE TOP */
}
.course_detail_page .course-hero img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}
.course_detail_page .course-info {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin: 25px 0;
  padding: 15px;
  background: #e3ecfb;
  border-radius: 10px;
  font-weight: 700;
  color: #163864;
}
.course_detail_page .course-info span {
  display: flex;
  align-items: center;
  gap: 6px;
  flex: 1;
  justify-content: left;
}
.course_detail_page h1 {
  margin: 20px 0;
  font-size: 30px;
}
.course_detail_page .highlight {
  background: linear-gradient(90deg, #c1daf6, #e3ecfb);
  padding: 18px;
  border-left: 6px solid #14529d;
  margin: 25px 0;
  font-weight: 600;
  border-radius: 6px;
}
.course_detail_page {
  /* GALLERY */
}
.course_detail_page .gallery {
  margin: 30px 0;
}
.course_detail_page .gallery-track {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
}
@media (max-width: 900px) {
  .course_detail_page .gallery-track {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 500px) {
  .course_detail_page .gallery-track {
    grid-template-columns: repeat(1, 1fr);
  }
}
.course_detail_page .gallery img {
  width: 100%;
  height: 200px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 10px;
  cursor: pointer;
  transition: 0.3s;
}
.course_detail_page .gallery img:hover {
  transform: scale(1.05);
}
.course_detail_page {
  /* GALLERY MODAL */
}
.course_detail_page .gallery-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.85);
  align-items: center;
  justify-content: center;
  z-index: 999;
}
.course_detail_page .gallery-modal img {
  max-width: 80%;
  max-height: 80%;
  border-radius: 10px;
}
.course_detail_page .gallery-modal .close {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 35px;
  color: #fff;
  cursor: pointer;
}
.course_detail_page .gallery-modal .nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 50px;
  color: #fff;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.course_detail_page .gallery-modal .prev {
  left: 5%;
}
.course_detail_page .gallery-modal .next {
  right: 5%;
}
.course_detail_page {
  /* DESCRIPTION */
}
.course_detail_page .description {
  margin-top: 30px;
  font-size: 16px;
  line-height: 1.8;
}
.course_detail_page {
  /* YOU MAY ALSO LIKE */
}
.course_detail_page .related-courses {
  margin-top: 50px;
  width: 100%;
}
.course_detail_page .related-courses h2 {
  color: #14529d;
  margin-bottom: 25px;
  text-align: center;
}
.course_detail_page .related-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  width: 100%;
}
@media (max-width: 900px) {
  .course_detail_page .related-list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .course_detail_page .related-list {
    grid-template-columns: repeat(1, 1fr);
  }
}
.course_detail_page .course-block {
  background: #fff;
  padding: 15px;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s;
}
.course_detail_page .course-block:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.12);
}
.course_detail_page .course-block img {
  width: 100%;
  height: 200px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 8px;
  margin-bottom: 10px;
}
.course_detail_page .course-block h4 {
  color: #14529d;
  margin: 8px 0;
}
.course_detail_page .course-block .meta {
  font-size: 13px;
  color: #555;
}
.course_detail_page .course-block button {
  margin-top: 10px;
  padding: 6px 12px;
  border: none;
  background: #14529d;
  color: #fff;
  border-radius: 5px;
  cursor: pointer;
  transition: 0.3s;
}
.course_detail_page .course-block button:hover {
  background: #247bd3;
}
.course_detail_page {
  /* SIDEBAR */
}
.course_detail_page .sidebar {
  position: sticky;
  top: 120px;
}
.course_detail_page .sidebar h3 {
  margin-bottom: 20px;
  color: #14529d;
  font-size: 22px;
}
.course_detail_page .popular {
  display: flex;
  gap: 12px;
  margin-bottom: 18px;
  padding: 12px;
  border: 1px solid #eee;
  border-radius: 10px;
  align-items: center;
  background: #fff;
  transition: all 0.3s;
}
.course_detail_page .popular:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.12);
}
.course_detail_page .popular img {
  width: 80px;
  height: 80px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 10px;
}
.course_detail_page .meta {
  font-size: 13px;
  color: #14529d;
  margin-bottom: 4px;
}
.course_detail_page .package_tab {
  padding: 40px 0;
}
.course_detail_page .package_tab .nav {
  justify-content: space-between;
}
.course_detail_page .package_tab .content-details ul {
  padding: 32px;
}
.course_detail_page .package_tab .content-details ul li {
  list-style-type: circle;
  padding: 6px 0;
}
.course_detail_page .package_tab .hold {
  padding: 8px 0;
}
.course_detail_page .package_tab h4 {
  margin: 12px 0;
  padding: 8px 0;
  border-bottom: 1px solid #575757;
  width: auto;
  color: #14529d;
}
.course_detail_page .package_tab .custom-tabs .nav-link {
  color: #1a1a1a;
  font-weight: 600;
  border: none;
  position: relative;
  background: transparent;
}
.course_detail_page .package_tab .custom-tabs .nav-link.active,
.course_detail_page .package_tab .custom-tabs .nav-link:hover {
  color: #886920;
  background: none;
}
.course_detail_page .package_tab .custom-tabs .nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  text-align: center;
  margin: auto;
  bottom: -5px;
  width: 50%;
  height: 2px;
  background-color: #2c5aa0;
  transition: 1s;
}
.course_detail_page .package_tab .custom-tabs .nav-link.active::after,
.course_detail_page .package_tab .custom-tabs .nav-link:hover::after {
  content: "";
  position: absolute;
  /* left: 0; */
  bottom: -5px;
  width: 95%;
  height: 2px;
  background-color: #886920;
}
.course_detail_page .package_tab .tab-content-box {
  border-radius: 16px;
  padding: 20px;
  margin-top: 20px;
  background: #fff;
  box-shadow: 0 15px 40px rgba(0, 123, 255, 0.1);
  animation: fadeUp 0.7s ease;
}
.course_detail_page .package_tab .tab-pane {
  transform: translateX(20px);
  opacity: 0;
  transition: all 0.9s ease;
}
.course_detail_page .package_tab .tab-pane.active.show {
  transform: translateX(0);
  opacity: 1;
}

.book_now_form {
  /* Section */
  /* Card */
}
.book_now_form .form-card {
  margin: auto;
  background: #ffffff;
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  animation: fadeIn 0.8s ease;
}
.book_now_form {
  /* Title */
}
.book_now_form .form-title {
  text-align: center;
  font-weight: 700;
  margin-bottom: 35px;
  color: #222;
}
.book_now_form {
  /* Input group */
}
.book_now_form .input-group {
  margin-bottom: 20px;
  transition: all 0.3s ease;
}
.book_now_form {
  /* Icon box */
}
.book_now_form .input-group-text {
  background: #14529d;
  color: #fff;
  border: none;
  transition: 0.3s;
}
.book_now_form {
  /* Inputs */
}
.book_now_form .form-control {
  border: 1px solid #ddd;
  padding: 12px;
  border-radius: 0 10px 10px 0;
  transition: all 0.3s ease;
}
.book_now_form {
  /* Focus Animation */
}
.book_now_form .form-control:focus {
  border-color: #c1daf6;
  box-shadow: 0 0 10px #c1daf6;
}
.book_now_form {
  /* Hover Animation */
}
.book_now_form .input-group:hover .form-control {
  border-color: #c1daf6;
}
.book_now_form .input-group:hover .input-group-text {
  background: #c1daf6;
  color: #14529d;
}
.book_now_form {
  /* Textarea */
}
.book_now_form textarea.form-control {
  height: 130px;
  resize: none;
}
.book_now_form {
  /* Button */
}
.book_now_form .btn-book {
  width: 100%;
  background: linear-gradient(135deg, #14529d, #247bd3);
  color: #fff;
  padding: 14px;
  border-radius: 10px;
  font-weight: 600;
  border: none;
  transition: all 0.3s ease;
}
.book_now_form {
  /* Button hover animation */
}
.book_now_form .btn-book:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}
.book_now_form {
  /* Entry animation */
}
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.we_accept {
  padding: 20px 0 0 0;
}
.we_accept svg {
  margin: 8px 0;
  height: 28px;
  width: 28px;
  -o-object-fit: contain;
     object-fit: contain;
}
.we_accept .we_accept_cards {
  display: flex;
  gap: 12px;
}/*# sourceMappingURL=style.css.map */