@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css');
:root {
  --primary-blue: #1e3a8a;
  --light-blue: #3b82f6;
  --theme: #2893E6;
  --white: #fff;
  --black: #021422;
  --bg: #F5F5F5;
  --section-bg: #EEEFF4;
  --p-color: #5E5F63;
}

body {
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: normal;
  line-height: 28px;
  color: var(--black);
  padding: 0;
  margin: 0;
  overflow-x: hidden;
}

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

a {
  text-decoration: none;
  outline: none !important;
  cursor: pointer;
  color: var(--black);
  transition: all 0.4s ease-in-out;
}

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

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Inter", sans-serif;
  margin: 0px;
  padding: 0;
  color: var(--black);
  text-transform: capitalize;
  transition: all 0.4s ease-in-out;
}

h1 {
  font-size: 42px;
  font-weight: 600;
  line-height: 106%;
}

h2 {
  font-size: 36px;
  line-height: 115%;
  font-weight: 700;
}

@media (max-width: 1199px) {
  h2 {
    font-size: 32px;
  }
}

@media (max-width: 991px) {
  h2 {
    font-size: 28px;
  }
}

@media (max-width: 575px) {
  h2 {
    font-size: 24px;
  }
}

h3 {
  font-size: 24px;
  font-weight: 600;
  line-height: 145%;
}

@media (max-width: 575px) {
  h3 {
    font-size: 20px;
  }
}

h4 {
  font-size: 22px;
  font-weight: 700;
}

@media (max-width: 575px) {
  h4 {
    font-size: 20px;
  }
}

h5 {
  font-size: 20px;
  font-weight: 600;
}

h6 {
  font-size: 18px;
  font-weight: 600;
  line-height: 156%;
}

.h-800 {
  height: 800px;
}

@media (max-width: 1600) {
  .h-800 {
    height: 750px;
  }
}

.bg-cover {
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  background-position: center;
}

.section-title {
  position: relative;
  z-index: 99;
  margin-bottom: 30px;
  margin-top: -6px;
}

@media (max-width: 767px) {
  .section-title {
    margin-bottom: 0;
  }
}

.section-title span {
  color: var(--theme);
  margin-bottom: 10px;
  display: inline-block;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.11em;
}

.section-title span.color-style {
  color: var(--theme);
}

.section-title h2 {
  text-transform: capitalize;
}

.link-btn {
  text-transform: capitalize;
  font-size: 16px;
  color: var(--black);
  font-weight: 600;
}

.link-btn span {
  background-image: linear-gradient(var(--theme), var(--theme));
  background-position: 0 95%;
  background-repeat: no-repeat;
  background-size: 0% 2px;
  display: inline-block;
  transition: all 0.4s ease-in-out;
}

.link-btn i {
  margin-left: 10px;
  font-size: 16px;
  transition: all 0.4s ease-in-out;
  font-size: 12px;
  width: 25px;
  height: 25px;
  line-height: 25px;
  border-radius: 25px;
  background-color: var(--theme);
  text-align: center;
  color: var(--white);
}

.link-btn:hover span {
  color: var(--theme);
  background-size: 100% 1px;
}

.swiper-button-next:after,
.swiper-button-prev:after {
  font-size: 18px;
}

.swiper-button-next,
.swiper-button-prev {
  top: 95%;
  width: 35px;
  height: 35px;
  background-color: var(--black);
  color: var(--white);
  border-radius: 50px;
  transition: 0.5s all;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
  background-color: var(--theme);
}

.swiper-button-next {
  right: 46%;
}

.swiper-button-prev {
  left: 46%;
}

@media (max-width: 991px) {
  .swiper-button-next {
    right: 44%;
  }

  .swiper-button-prev {
    left: 44%;
  }
}

@media (max-width: 767px) {
  .swiper-button-next {
    right: 40%;
  }

  .swiper-button-prev {
    left: 40%;
  }
}

@media (max-width: 375px) {
  .swiper-button-next {
    right: 35%;
  }

  .swiper-button-prev {
    left: 35%;
  }
}

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

.ripple {
  position: relative;
}

.ripple::before,
.ripple::after {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 60px;
  height: 60px;
  -webkit-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(214, 17, 30, 0.5);
  -webkit-animation: rippleOne 3s infinite;
  animation: rippleOne 3s infinite;
}

@-webkit-keyframes rippleOne {
  70% {
    -webkit-box-shadow: 0 0 0 40px rgba(244, 68, 56, 0);
    box-shadow: 0 0 0 40px rgba(244, 68, 56, 0);
  }

  100% {
    -webkit-box-shadow: 0 0 0 0 rgba(244, 68, 56, 0);
    box-shadow: 0 0 0 0 rgba(244, 68, 56, 0);
  }
}

@keyframes rippleOne {
  70% {
    -webkit-box-shadow: 0 0 0 40px rgba(244, 68, 56, 0);
    box-shadow: 0 0 0 40px rgba(244, 68, 56, 0);
  }

  100% {
    -webkit-box-shadow: 0 0 0 0 rgba(244, 68, 56, 0);
    box-shadow: 0 0 0 0 rgba(244, 68, 56, 0);
  }
}

.ripple::before {
  -webkit-animation-delay: 0.9s;
  animation-delay: 0.9s;
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
}

.ripple::after {
  -webkit-animation-delay: 0.6s;
  animation-delay: 0.6s;
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
}

/* Header Part */
.header {
  width: 100%;
  height: auto;
}

.top-bar {
  background-color: var(--white);
  color: var(--black);
  padding: 8px 0;
  position: relative;
  z-index: 9;
  width: 100%;
}

@media (max-width: 991px) {
  .top-bar {
    display: none;
  }
}

.top-bar::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: linear-gradient(173.69deg, #4BDFEF 3.94%, #085088 82.03%);
  z-index: -1;
  left: 75%;
}

@media (max-width: 1680px) {
  .top-bar::before {
    left: 80%;
  }
}

@media (max-width: 1440px) {
  .top-bar::before {
    opacity: 0;
  }
}

@media (max-width: 991px) {
  .header-top-section::before {
    display: none;
  }
}

.top-bar a {
  color: var(--black);
  text-decoration: none;
}

.top-bar a:hover {
  color: var(--cyan);
}

.top-bar-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.top-bar-wrapper .contact-list {
  display: flex;
  align-items: center;
  gap: 25px;
}

.top-bar-wrapper .contact-list li {
  font-size: 15px;
  color: #021422;
}

.top-bar-wrapper .contact-list li a {
  color: #021422;
}

.top-bar-wrapper .contact-list li a:hover {
  color: var(--theme);
}

.top-bar-wrapper .contact-list li i {
  color: var(--theme);
  margin-right: 10px;
}

.top-bar-wrapper .top-right {
  display: flex;
  align-items: center;
  gap: 65px;
}

.top-bar-wrapper .top-right .social-icon {
  gap: 15px;
}

.top-bar-wrapper .top-right .social-icon a {
  color: #021422;
}

.top-bar-wrapper .top-right .social-icon a:hover {
  color: var(--theme);
}

.top-bar-wrapper .top-right .header-menu {
  display: flex;
  align-items: center;
  gap: 20px;
}

.top-bar-wrapper .top-right .header-menu li a {
  color: var(--white);
  background-image: linear-gradient(var(--white), var(--white));
  background-position: 0 95%;
  background-repeat: no-repeat;
  background-size: 0% 2px;
  display: inline-block;
  transition: all 0.4s ease-in-out;
}

.top-bar-wrapper .top-right .header-menu li a:hover {
  background-size: 100% 1px;
  color: var(--black)
}

@media (max-width: 1440px) {
  .top-bar-wrapper .top-right .header-menu li a {
    color: var(--black);
  }

  .top-bar-wrapper .top-right .header-menu li a:hover {
    color: var(--theme)
  }
}

.main-header {
  background-color: var(--black);
  padding: 15px 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.logo img {
  max-width: 240px;
}

.main-header .main-menu ul li a {
  display: inline-block;
  font-size: 18px;
  font-weight: 600;
  color: #FFFFFF;
  padding: 8px 15px;
  text-align: left;
  position: relative;
  text-transform: capitalize;
  transition: all 0.4s ease-in-out;
  margin: 0 15px;
}

.main-header .main-menu ul li a i {
  font-size: 15px;
  font-weight: 600;
  margin-left: 5px;
}

.main-header .main-menu ul li a:hover,
.main-header .main-menu ul li a.active {
  color: var(--theme) !important;
}

.main-header .main-menu .dropdown-menu a {
  color: var(--black);
  /* padding: 5px 10px; */
    margin: 0;
  font-weight: normal;
 font-size: 16px;
  position: relative;
  display: inline-block;
  margin: 10px 20px;
  padding: 0;
  width: auto;}

.navbar-expand-lg .navbar-nav .dropdown-menu{
  border-radius: 0;
    top: 130%;
  left: 10%;
}

.main-header .main-menu .dropdown-menu a:hover,
.main-header .main-menu .dropdown-menu a.active {
  /* background-color: transparent !important; */
    background-color: transparent !important;
  color: var(--theme) !important;
}
.main-header .main-menu .dropdown-menu a::after {
  content: '';
  position: absolute;
  width: 100%;
  transform: scaleX(0);
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: #179FCF;
  transition: transform 0.25s ease-out;
}

.main-header .main-menu .dropdown-menu a:hover::after,
.main-header .main-menu .dropdown-menu a.active::after {
  transform: scaleX(1);
}

@media (min-width: 992px) {
  .navbar .dropdown:hover .dropdown-menu {
    display: block;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .navbar .dropdown-menu {
    margin-top: 0;
    display: block;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
  }
}
.header-right .contact-info {
  gap: 20px;
  color: #fff;
  font-size: 14px;
  padding-left: 30px
}

.header-right .contact-info .content {
  vertical-align: middle;
}

.header-right .contact-info .content p {
  text-transform: uppercase;
  font-size: 14px;
  margin-bottom: 0;
  line-height: 1.2;
  color: var(--white);
}

.header-right .contact-info .content a {
  font-size: 14px;
  color: #fff;
}

.header-right .contact-info .content a:hover {
  color: var(--theme) !important;
}

.navbar-nav .nav-link.active,
.navbar-nav .nav-link.show {
  color: var(--theme);
}

.header-right .contact-info .icon i {
  font-size: 20px;
  color: var(--white);
  border: 1px solid var(--white);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.btn-close-white {
  filter: invert(1) grayscale(100%) brightness(200%);
}

@media (max-width: 991.98px) {
  .desktop-menu {
    display: none !important;
  }

  .contact-info {
    font-size: 12px;
  }

  .phone-number {
    font-size: 14px;
  }
}

@media (min-width: 992px) {
  .mobile-toggle {
    display: none !important;
  }
}

/* Hero Part */
.hero-section {
  position: relative;
  max-height: 800px;
}

.hero-slider {
  max-height: 800px;
}

.hero-image {
  overflow: hidden;
  position: absolute !important;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  opacity: 1;
  z-index: -2;
  background-size: cover;
  transform: scale(1);
  -webkit-transition: all 8s ease-out 0s;
  -moz-transition: all 8s ease-out 0s;
  -ms-transition: all 8s ease-out 0s;
  -o-transition: all 8s ease-out 0s;
  transition: all 8s ease-out 0s;
}

.hero-image::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: linear-gradient(90deg, #16171A 0.06%, rgba(22, 23, 26, 0) 99.93%);
  z-index: -1;
}

.hero-section .swiper-slide-active .hero-image {
  -webkit-transform: scale(1.12);
  -moz-transform: scale(1.12);
  transform: scale(1.12);
}

.hero-section .swiper-dot {
  position: absolute;
  bottom: 5%;
  left: 50%;
  z-index: 9;
  transform: translateX(-50%);
}

.hero-section .swiper-dot .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  transition: 0.6s;
  background-color: var(--white);
  opacity: 1;
  border-radius: 10px;
}

.hero-section .swiper-dot .swiper-pagination-bullet:not(:last-child) {
  margin-right: 10px;
}

.hero-section .swiper-dot .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: linear-gradient(180deg, #2DE2ED 0%, #2893E6 100%);
  transition: 0.6s;
  position: relative;
}

.hero-section .swiper-dot .swiper-pagination-bullet.swiper-pagination-bullet-active::before {
  position: absolute;
  width: 22px;
  height: 22px;
  line-height: 22px;
  top: -6px;
  left: -6px;
  border-radius: 50%;
  background-color: transparent;
  border: 2px solid var(--theme);
  content: "";
}

.hero-content {
  padding: 180px 0 180px;
  position: relative;
  z-index: 9;
}

@media (max-width: 1366px) {
  .hero-content {
    padding: 98px 0 180px;
    position: relative;
    z-index: 9;
  }
}

@media (max-width: 767px) {
  .hero-content {
    text-align: center;
    margin: 0 auto;
    padding: 130px 0 130px;
  }
}

.hero-content .hero-subtitle {
  color: var(--white);
  background-color: var(--black);
  padding: 8px 20px;
  line-height: 1;
  display: inline-block;
  letter-spacing: 1px;
  margin-bottom: 30px;
}

.hero-content h1 {
  color: var(--white);
  margin-bottom: 15px;
}

@media (max-width: 1399px) {
  .hero-content h1 {
    font-size: 70px;
  }
}

@media (max-width: 991px) {
  .hero-content h1 {
    font-size: 56px;
  }
}

@media (max-width: 767px) {
  .hero-content h1 {
    font-size: 43px;
  }
}

@media (max-width: 575px) {
  .hero-content h1 {
    font-size: 34px;
  }
}

.hero-content p {
  color: var(--white);
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 40px;
}

.shape-image {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  bottom: 0;
}

.shape-image img {
  width: 100%;
  height: 100%;
}

.shape-image-2 {
  position: absolute;
  top: -25%;
  right: 0;
  z-index: 9;
}

@media (max-width: 1199px) {
  .shape-image-2 {
    display: none;
  }
}

.theme-btn {
  background-color: var(--theme);
  font-weight: 700;
  color: var(--white);
  transition: all 0.4s ease-in-out;
  text-transform: capitalize;
  position: relative;
  overflow: hidden;
  font-size: 16px;
  padding: 15px 35px;
  border-radius: 0;
  z-index: 9;
  display: inline-block;
  line-height: 1;
}

.theme-btn i {
  margin-left: 8px;
  transition: all 0.4s ease-in-out;
}

@media (max-width: 575px) {
  .theme-btn i {
    margin-left: 3px;
    font-size: 12px;
  }
}

.theme-btn span {
  position: relative;
  z-index: 9;
}

.theme-btn::after {
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 0;
  content: "";
  background-color: var(--black);
  transition: all 0.4s ease-in-out;
  border-radius: 0;
  z-index: 1;
}

.theme-btn::before {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50%;
  height: 0;
  content: "";
  background-color: var(--black);
  transition: all 0.4s ease-in-out;
  border-radius: 0;
  z-index: 1;
}

.theme-btn:hover {
  color: var(--white);
}

.theme-btn:hover::before {
  height: 100%;
}

.theme-btn:hover::after {
  height: 100%;
}

.theme-btn:hover i {
  transform: translate(5px);
}

.theme-btn.hover-white::before,
.theme-btn.hover-white::after {
  background-color: var(--white);
}

.theme-btn.hover-white:hover {
  color: var(--black);
}

.theme-btn.hover-white:hover i {
  transform: translate(5px);
  color: var(--black);
}

.theme-btn.bg-white {
  color: var(--black);
}

.theme-btn.bg-white:hover {
  color: var(--white);
}

.theme-btn.bg-white:hover i {
  transform: translate(5px);
  color: var(--white);
}

.theme-btn.line-height {
  line-height: 1.3;
}

@media (max-width: 767px) {
  .theme-btn {
    padding: 22px 30px;
  }
}

@media (max-width: 575px) {
  .theme-btn {
    padding: 18px 30px;
  }

  .theme-btn span {
    font-size: 14px;
  }
}

/* Index About Part */
.index-about-section {
  padding: 120px 0;
}

.index-about-section img {
  border: none;
  border-radius: 0;
  box-shadow: none;
  height: auto;
  max-width: 100%;
}

.about-wrapper .about-image-items {
  position: relative;
  padding-left: 25px;
}

.about-wrapper .about-image-items::before {
  position: absolute;
  top: 100px;
  left: 0;
  content: "";
  height: 210px;
  width: 5px;
  background: linear-gradient(180deg, #2893E6 0%, #085088 100%);
  border-radius: 9px;
}

.about-wrapper .about-image-items .border-shape {
  position: absolute;
  bottom: -30px;
  right: 6%;
  z-index: 1;
}

@media (max-width: 575px) {
  .about-wrapper .about-image-items .border-shape {
    display: none;
  }
}

.about-wrapper .about-image-items .about-image {
  width: 437px;
  height: 530px;
  position: relative;
  z-index: 1;
}

@media (max-width: 991px) {
  .about-wrapper .about-image-items .about-image {
    width: 100%;
  }
}

@media (max-width: 575px) {
  .about-wrapper .about-image-items .about-image {
    max-width: 430px;
    width: initial;
    height: 400px;
  }
}

.about-wrapper .about-image-items .about-image .about-image-2 {
  position: absolute;
  bottom: -100px;
  right: -100px;
}

@media (max-width: 1399px) {
  .about-wrapper .about-image-items .about-image .about-image-2 {
    right: -98px;
  }
}

@media (max-width: 1199px) {
  .about-wrapper .about-image-items .about-image .about-image-2 {
    right: 0;
  }
}

@media (max-width: 991px) {
  .about-wrapper .about-image-items .about-image .about-image-2 {
    bottom: 0;
  }
}

@media (max-width: 767px) {
  .about-wrapper .about-image-items .about-image .about-image-2 {
    bottom: 0;
    right: 0;
    width: 250px;
  }

  .about-wrapper .about-image-items .about-image .about-image-2 img {
    width: 100%;
    height: 100%;
  }
}

@media (max-width: 767px) {
  .about-wrapper .about-image-items .about-image .about-image-2 {
    width: 200px;
  }
}

/* .circle-progress-bar-wrapper { */
/* display: flex; */
/* justify-content: space-around; */
/* gap: 50px; */
/* flex-wrap: wrap; */
/* } */

/* .single-circle-bar { */
/* text-align: center; */
/* } */

.circle-bar {
  width: 90px;
  height: 90px;
  position: relative;
  margin-right: 15px;
}

.circle-bar canvas {
  width: 100%;
  height: 100%;
}

.percentage {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 20px;
  font-weight: bold;
  color: #333;
}

.services-list {
  margin: 0.5rem 0 3rem 0;
}

.service-item {
  padding: 0.5rem 0;
  /* border-bottom: 1px solid #e2e8f0; */
  transition: all 0.3s ease;
}

.service-item:last-child {
  border-bottom: none;
}

.service-icon {
  color: var(--theme);
  font-size: 1.2rem;
}

.service-text {
  font-weight: 600;
  color: #5E5F63;
}


.about-button .contact-info {
  gap: 10px;
  color: #5E5F63;
  font-size: 14px;
}

.about-button .contact-info .content {
  vertical-align: middle;
}

.about-button .contact-info .content div {
  text-transform: uppercase;
  font-size: 14px;
  margin-bottom: 0;
  line-height: 1;
}

.about-button .contact-info .content a {
  font-size: 14px;
  font-weight: bold;
  color: var(--black);
}

.about-button .contact-info .content a:hover {
  color: var(--theme) !important;
}

.about-button .contact-info .icon i {
  font-size: 20px;
  color: var(--theme);
  border: 1px solid var(--theme);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Service Part */
/* .service-wrapper .swiper-slide { */
  /* max-width: 375px; */
  /* margin: 0 15px; */
/* } */

.offerings-card {
  border: none;
  max-width: 445px;
  display: inline-block;
  text-align: center;
  margin: 60px 0 0 0;
  padding: 0 40px 38px 40px;
  background-color: var(--section-bg);
  border-radius: 4px;
  min-width: 200px;
  transition: all ease 0.4s;
}

.offerings-card:hover {
  background-color: var(--black);
  box-shadow: 0px 6px 15px rgba(14, 90, 242, 0.18);
}

.offerings-card .offerings-card-img {
  display: block;
  width: 112px;
  height: 112px;
  line-height: 100px;
  background-color: var(--black);
  border-radius: 50%;
  margin: -60px auto 30px auto;
  transition: all ease 0.4s;
}

.offerings-card:hover .offerings-card-img {
  box-shadow: 5px -5px 6px 0px #00000033;
}

.offerings-card .offerings-card-img img {
  filter: brightness(0) invert(1);
  transition: all ease 0.3s;
}
.offerings-card:hover .offerings-card-img{
  background-color: var(--white);
}
.offerings-card:hover .offerings-card-img img {
  filter: none;
}

.offerings-card .offerings-card-des p {
  font-weight: 700;
  font-size: 20px;
  line-height: 30px;
  text-align: center;
  color: #343434;
}

.offerings-card-des div {
  line-height: 1.5;
  height: 65px;
}

.offerings-card:hover .offerings-card-des p,
.offerings-card:hover .offerings-card-des a,
.offerings-card:hover .offerings-card-des div {
  color: #FFFFFF;
}

.offerings-card .offerings-card-des a {
  font-weight: 400;
  font-size: 16px;
  line-height: 26px;
  letter-spacing: 0%;
  text-align: center;
  /* text-decoration: underline; */
  text-decoration-style: solid;
  text-decoration-thickness: Auto;
  color: var(--black);
}
.service-wrapper .link-btn i{
  background-color: var(--black);
}
.service-wrapper .offerings-card:hover .link-btn {
  color: var(--white);
  transition: initial !important;
}

.service-wrapper .offerings-card:hover .link-btn i {
  background-color: var(--white);
  color: var(--theme);
}

.service-wrapper .offerings-card:hover .link-btn span {
  color: var(--theme);
  background-image: linear-gradient(var(--theme), var(--theme));
}
/* Video Part */

.cta-banner-section {
  position: relative;
  background-attachment: fixed;
}

.cta-banner-section::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-image: var(--color-gradient-2);
}

.cta-banner-wrapper .video-box {
  text-align: center;
  margin: 0 auto;
  padding: 120px 0;
}

@media (max-width: 767px) {
  .cta-banner-wrapper .video-box {
    padding: 100px 0;
  }
}

@media (max-width: 575px) {
  .cta-banner-wrapper .video-box {
    padding: 80px 0;
  }
}

.cta-banner-wrapper .video-box .video-buttton {
  width: 100px;
  height: 100px;
  line-height: 100px;
  text-align: center;
  border-radius: 50%;
  background-color: var(--white);
  color: var(--theme);
  display: inline-block;
  font-size: 18px;
}

@media (max-width: 1199px) {
  .cta-banner-wrapper .video-box .video-buttton {
    width: 90px;
    height: 90px;
    line-height: 90px;
  }
}

@media (max-width: 767px) {
  .cta-banner-wrapper .video-box .video-buttton {
    width: 80px;
    height: 80px;
    line-height: 80px;
    font-size: 18px;
  }
}

@media (max-width: 575px) {
  .cta-banner-wrapper .video-box .video-buttton {
    width: 70px;
    height: 70px;
    line-height: 70px;
  }
}

.cta-banner-wrapper .video-box .ripple::before,
.cta-banner-wrapper .video-box .ripple::after {
  width: 100px;
  height: 100px;
  box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7);
}

@media (max-width: 1199px) {

  .cta-banner-wrapper .video-box .ripple::before,
  .cta-banner-wrapper .video-box .ripple::after {
    width: 90px;
    height: 90px;
  }
}

@media (max-width: 767px) {

  .cta-banner-wrapper .video-box .ripple::before,
  .cta-banner-wrapper .video-box .ripple::after {
    width: 80px;
    height: 80px;
  }
}

@media (max-width: 575px) {

  .cta-banner-wrapper .video-box .ripple::before,
  .cta-banner-wrapper .video-box .ripple::after {
    width: 70px;
    height: 70px;
  }
}

/* Counter Part */
.feature-icon-box-wrapper {
  padding: 50px;
  background-color: var(--white);
  box-shadow: 0px 8px 18px 0px #959DA533;
  position: relative;
  z-index: 9;
  margin-top: -120px;
}

@media (max-width: 575px) {
  .feature-icon-box-wrapper {
    padding: 50px 30px;
  }
}

.feature-icon-box-wrapper .icon-box-items {
  position: relative;
}

/* .feature-icon-box-wrapper .icon-box-items::before { */
/* position: absolute; */
/* bottom: -75%; */
/* left: 0; */
/* height: 2px; */
/* width: 100%; */
/* content: ""; */
/* background: var(--theme); */
/* transition: 0.3s; */
/* opacity: 0; */
/* } */
/*  */
/* @media (max-width: 1399px) { */
/* .feature-icon-box-wrapper .icon-box-items::before { */
/* display: none; */
/* } */
/* } */

@media (max-width: 575px) {
  .feature-icon-box-wrapper .icon-box-items {
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
  }
}

.feature-icon-box-wrapper .icon-box-items .icon {
  font-size: 42px;
  width: 87px;
  height: 87px;
  border-radius: 50%;
  text-align: center;
  color: var(--black);
  box-shadow: 0px 6.64px 19.91px 0px #959DA533;
  display: flex;
  justify-content: center;
  align-items: center;
}

@media (max-width: 575px) {
  .feature-icon-box-wrapper .icon-box-items .icon {
    width: 80px;
    height: 80px;
    line-height: 90px;
    font-size: 32px;
  }
}

.feature-icon-box-wrapper .icon-box-items .content h3 {
  margin-bottom: 10px;
}

.feature-icon-box-wrapper .icon-box-items:hover::before {
  opacity: 1;
}

.feature-icon-box-wrapper .icon-box-items.active::before {
  opacity: 1;
}

/* Brand Part */
.brand-wrapper h6 {
  font-size: 14px;
  position: relative;
  margin-bottom: 50px;
}

.brand-wrapper h6::before {
  position: absolute;
  top: 10px;
  left: 35px;
  content: "";
  height: 1px;
  width: 480px;
  background-color: var(--black);
}

@media (max-width: 1399px) {
  .brand-wrapper h6::before {
    width: 400px;
  }
}

.brand-wrapper h6::after {
  position: absolute;
  top: 10px;
  right: 35px;
  content: "";
  height: 1px;
  width: 480px;
  background-color: var(--black);
}

@media (max-width: 1399px) {
  .brand-wrapper h6::after {
    width: 400px;
  }
}

@media (max-width: 1199px) {

  .brand-wrapper h6::before,
  .brand-wrapper h6::after {
    width: 300px;
  }
}

@media (max-width: 991px) {

  .brand-wrapper h6::before,
  .brand-wrapper h6::after {
    width: 0;
  }
}

.brand-wrapper .brand-image {
  text-align: center;
  filter: grayscale(100%);
  transition: all 0.4s ease-in-out;
  height: 72px;
}

.brand-wrapper .brand-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.brand-wrapper .brand-image:hover {
  filter: initial;
}

/* Testimonial Part */
.testimonial-section {
  background-color: var(--section-bg);
}

.testimonial-card-items {
  margin-top: 30px !important;
  border: 1px solid #959DA54F;
  padding: 45px 35px;
  position: relative;
}

.testimonial-card-items::before {
  position: absolute;
  right: 40px;
  top: 40px;
  content: "";
  width: 32px;
  height: 24px;
  background-image: url(../static_images/quote.png);
  background-repeat: no-repeat;
  background-size: cover;
}

.testimonial-card-items .author-items {
  display: flex;
  align-items: center;
  gap: 23px;
}

.testimonial-card-items .author-items .author-image {
  width: 75px;
  height: 75px;
  border-radius: 50%;
}

.testimonial-card-items .author-items .author-content h5 {
  margin-bottom: 5px;
}

.testimonial-card-items p {
  margin-top: 30px;
  font-size: 18px;
  text-align: justify;
}

.testimonial-card-items ul {
  margin-top: 40px;
}

.testimonial-card-items ul li {
  padding: 15px;
  background-color: var(--black);
  color: var(--white);
  font-weight: 500;
  position: relative;
}

.testimonial-card-items ul li::after {
  content: "";
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 25px solid transparent;
  border-bottom: 35px solid var(--black);
  position: absolute;
  top: -15px;
  left: 50px;
  right: 0;
  transition: all 0.4s ease-in-out;
  z-index: -1;
}

.testimonial-section .swiper-dot {
  position: absolute;
  bottom: 5%;
  left: 50%;
  z-index: 9;
  transform: translateX(-50%);
}

.testimonial-section .swiper-pagination-bullet {
  border: 2px solid #2893E6;
  background: var(--white);
  width: 10px;
  height: 10px;
  opacity: 1;
}

.testimonial-section .swiper-pagination-bullet-active {
  background-color: #2893E6 !important;
}

/* Consultation Part */
.consultation-section {
  margin-top: -120px;
}

.cta-chat-wrapper {
  background-color: var(--black);
  padding: 40px;
  border-radius: 7px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

@media (max-width: 1199px) {
  .cta-chat-wrapper {
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
    text-align: center;
  }
}

@media (max-width: 575px) {
  .cta-chat-wrapper {
    text-align: center;
  }
}

.cta-chat-wrapper .chat-items {
  display: flex;
  align-items: center;
  gap: 35px;
}

@media (max-width: 1199px) {
  .cta-chat-wrapper .chat-items {
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
  }
}

.cta-chat-wrapper .chat-items .icon {
  font-size: 52px;
  color: var(--white);
}

.cta-chat-wrapper .chat-items .content h3 {
  font-size: 36px;
  color: var(--white);
  margin-bottom: 10px;
}

@media (max-width: 575px) {
  .cta-chat-wrapper .chat-items .content h3 {
    font-size: 28px;
  }
}

.cta-chat-wrapper .chat-items .content p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.52);
}

/* Country Part */

.countries-card-items {
  display: flex;
  align-items: center;
  gap: 20px;
  background-color: var(--white);
  box-shadow: 0px 8px 24px 0px #959DA533;
  margin-top: 30px;
  padding: 10px;
  border-radius: 10px;
  transition: all 0.4s ease-in-out;
}

@media (max-width: 991px) {
  .countries-card-items {
    flex-wrap: wrap;
  }
}

.countries-card-items .thumb {
  width: 60px;
  height: 60px;
}

.countries-card-items .thumb img {
  width: 100%;
  height: 100%;
  transition: all 0.4s ease-in-out;
  border-radius: 50px;
  padding: 0.3rem;
}

.countries-card-items .content h3 {
  margin-bottom: 5px;
}

.countries-card-items .content h3 a:hover {
  color: var(--theme);
}

.countries-card-items:hover {
  transform: translateY(-10px);
}

.countries-card-items:hover .thumb img {
  transform: rotate(360deg);
}

/* Contact One Part */
.contact-wrapper {
  position: relative;
  margin-top: 3px;
}

.contact-wrapper .contact-left {
  position: relative;
  display: block;
  margin-right: 70px;
  padding-top: 90px;
  padding-bottom: 30px;
  z-index: 1;
}

@media (max-width: 991px) {
  .contact-wrapper .contact-left {
    margin-right: 0;
  }
}

.contact-wrapper .contact-left .contact-bg {
  position: absolute;
  top: 0;
  left: -375px;
  right: -433px;
  bottom: -120px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  clip-path: polygon(0 0, 100% 0%, 73% 100%, 0% 100%);
  z-index: -1;
}

.contact-wrapper .contact-left .contact-shape {
  position: absolute;
  top: 0;
  bottom: -120px;
  left: -375px;
  right: -190px;
  background-repeat: no-repeat;
  background-position: right center;
  background-size: cover;
  opacity: 0.8;
  z-index: -1;
}

.contact-wrapper .contact-left .form-clt input,
.contact-wrapper .contact-left .form-clt textarea,
.contact-wrapper .contact-left .form-clt select {
  border: none;
  outline: none;
  width: 100%;
  background-color: var(--white);
  padding: 18px 30px;
  color: #757575;
}

.contact-wrapper .contact-left .form-clt textarea {
  padding: 18px 30px 90px;
}

.contact-wrapper .contact-left .form-clt .nice-select {
  background-color: var(--white);
  border-radius: 0;
  padding: 17px 30px;
}

.contact-wrapper .contact-left .form-clt .nice-select span {
  font-weight: 400;
}

.contact-wrapper .contact-left .theme-btn {
  background-color: var(--black);
}

.contact-wrapper .contact-left .theme-btn span {
  transition: all 0.4s ease-in-out;
}

.contact-wrapper .contact-left .theme-btn::before,
.contact-wrapper .contact-left .theme-btn::after {
  background-color: var(--white);
}

.contact-wrapper .contact-left .theme-btn:hover span {
  color: var(--black);
}

.contact-wrapper .contact-right {
  position: relative;
  display: block;
  margin-left: -30px;
  margin-right: -315px;
  margin-top: 40px;
}

@media (max-width: 991px) {
  .contact-wrapper .contact-right {
    margin: 0;
  }
}

.contact-wrapper .contact-right::before {
  content: "";
  position: absolute;
  top: -40px;
  left: 344px;
  border-bottom: 40px solid var(--black);
  border-left: 20px solid transparent;
  border-right: 30px solid transparent;
}

.contact-wrapper .contact-right .google-map-box {
  position: relative;
  display: block;
  clip-path: polygon(25% 0%, 100% 0%, 100% 100%, 0% 100%);
}

@media (max-width: 991px) {
  .contact-wrapper .contact-right .google-map-box {
    clip-path: none;
  }
}

.contact-wrapper .contact-right .google-map-box iframe {
  position: relative;
  display: block;
  border: none;
  height: 730px;
  width: 100%;
  mix-blend-mode: luminosity;
}

@media (max-width: 991px) {
  .contact-wrapper .contact-right .google-map-box iframe {
    clip-path: none;
    mix-blend-mode: normal;
    height: 620px;
  }
}

@media (max-width: 767px) {
  .contact-wrapper .contact-right .google-map-box iframe {
    height: 520px;
  }
}

@media (max-width: 575px) {
  .contact-wrapper .contact-right .google-map-box iframe {
    height: 420px;
  }
}

/* Footer Part */
.footer {
  background-color: var(--black);
  color: var(--white);
  position: relative;
}

.footer .logo-section img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.footer .logo-section p {
  color: #8A8C94;
}

.footer .social-links a {
  color: #8A8C94;
  background: #5C5C5B1A;
  padding: 12px;
  border-radius: 50px;
}

.footer .social-links a:hover {
  background-color: var(--theme);
}

.footer-link a {
  color: #8A8C94;
  position: relative;
  padding-left: 20px;
  font-size: 16px;
}

.footer-section h5 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 10px;
  position: relative;
  color: var(--white);
}

/* .footer-section h5::after { */
/* content: ''; */
/* display: block; */
/* width: 30px; */
/* height: 2px; */
/* background-color: #4fc3f7; */
/* margin-top: 8px; */
/* } */

.footer-link a:before {
  position: absolute;
  top: 6px;
  left: 0;
  width: 6px;
  height: 6px;
  content: "";
  border-radius: 50%;
  background-color: var(--theme);
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease-in-out;
}

.footer-link a:hover:before {
  opacity: 1;
  visibility: visible;
}

.footer-link a:hover {
  padding-left: 22px;
  color: var(--theme);
}

.footer-link a:after {
  position: absolute;
  top: -6px;
  left: 0;
  /* content: "\f324"; */
  content: "»";
  font-family: "Font Awesome 5 Pro";
  transition: all 0.4s ease-in-out;
  opacity: 1;
  visibility: visible;
}

.footer-link a:hover:after {
  opacity: 0;
  visibility: hidden;
}

.footer-location p {
  color: #8A8C94;
}

.footer-location p a {
  color: #8A8C94;
}

.footer-location p a:hover {
  color: var(--theme);
}

.footer-bottom {
  background-color: #000000;
  font-size: 14px;
  text-align: center;
  /* position: absolute; */
  /* bottom: 0; */
  /* left: 0; */
  /* right: 0; */
}

/* Breadcrumb Part */
.breadcrumb-wrapper {
  position: relative;
  overflow: hidden;
  z-index: 9;
  background-position: bottom;
}

.breadcrumb-wrapper::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: linear-gradient(90deg, rgba(2, 20, 34, 0.8) 6%, rgba(40, 147, 230, 0.8) 99.93%);
  z-index: -1;
}

.breadcrumb-wrapper .page-list {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  margin-top: 20px;
}

.breadcrumb-wrapper .page-list li a {
  color: var(--white);
  transition: all 0.4s ease-in-out;
  font-size: 18;
  font-weight: 600;
}

.breadcrumb-wrapper .page-list li span {
  color: var(--white);
  transition: all 0.4s ease-in-out;
}

.breadcrumb-wrapper .page-list li {
  position: relative;
}

.breadcrumb-wrapper .page-list li:before {
  /* content: "\f068"; */
  content: "»";
  font-family: 'Font Awesome 5 Pro';
  color: var(--white);
  position: absolute;
  /* top: 2px; */
  left: -22px;
  font-size: 13px;
}

.breadcrumb-wrapper .page-list li:first-child:before {
  display: none;
}

.breadcrumb-wrapper .page-heading {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 99;
}

@media (max-width: 991px) {
  .breadcrumb-wrapper .page-heading {
    flex-wrap: wrap;
    gap: 20px;
    /* justify-content: center; */
  }
}

.breadcrumb-wrapper .page-heading h1 {
  color: var(--white);
  font-size: 50px;
  position: relative;
  z-index: 9;
  line-height: 1.3;
}

.breadcrumb-wrapper .page-heading h1::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 128px;
  height: 8px;
  background-color: white;
  border-radius: 6px;
}

@media (max-width: 1199px) {
  .breadcrumb-wrapper .page-heading h1 {
    font-size: 50px;
  }
}

@media (max-width: 991px) {
  .breadcrumb-wrapper .page-heading h1 {
    font-size: 48px;
  }
}

@media (max-width: 767px) {
  .breadcrumb-wrapper .page-heading h1 {
    font-size: 36px;
  }

  .breadcrumb-wrapper .page-heading h1::after {
    width: 80px;
  }
}

.breadcrumb-wrapper .page-heading .breadcrumb-items {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.breadcrumb-wrapper .page-heading .breadcrumb-items li {
  font-size: 18px;
  color: var(--white);
  font-weight: 500;
  text-transform: capitalize;
}

@media (max-width: 575px) {
  .breadcrumb-wrapper .page-heading .breadcrumb-items li {
    font-size: 16px;
  }
}

.breadcrumb-wrapper .page-heading .breadcrumb-items li a {
  color: var(--theme);
  transition: all 0.4s ease-in-out;
}

.breadcrumb-wrapper .page-heading .breadcrumb-items li a:hover {
  color: var(--theme);
}

.breadcrumb-wrapper .page-heading .breadcrumb-items li i {
  font-size: 18px;
  color: var(--theme);
}

@media (max-width: 575px) {
  .breadcrumb-wrapper .page-heading .breadcrumb-items li i {
    font-size: 16px;
  }
}

/* Page Info */
.about-info h2 {
  font-weight: 600;
  letter-spacing: 3%;
  padding: 25px 0;
}

.about-info p {
  font-weight: 400;
  font-size: 18px;
  line-height: 26px;
  letter-spacing: 0%;
}

.about-info p span {
  font-weight: 700;
  font-size: 20px;
  color: var(--black);
}

.mission-vision span {
  font-weight: 600;
  font-size: 18px;
  line-height: 23.44px;
  letter-spacing: 0%;
  color: var(--black);
}

.mission-vision p {
  font-weight: 400;
  font-size: 16px;
  line-height: 27px;
  letter-spacing: 0%;

}

.ifo-img {
  width: 100%;
  height: 243px;
}

.ifo-img img {
  width: 100%;
  height: 100%;
  object-position: center;
}

.overlay-about-info {
  background-color: var(--black);
  position: absolute;
  top: -2%;
  right: -2%;
  width: 225px;
  height: 392px;

}

/* About Director Info Part */
.about-director {
  background: linear-gradient(to right, rgba(2, 20, 34, 0.84), rgba(2, 20, 34, 0.84)),
    url("/static_images/about-bg.webp") center/cover no-repeat;
  /* background-image: url("/assets/static_images/slider.webp"); */
  width: 100%;
  height: auto;
}

.director-img {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.title-heading {
  color: var(--theme);
  margin-bottom: 30px;
}

.director-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: all 1s ease-in;
}

.director-img:hover img {
  transform: scale(1.1);
}

.director-info {
  height: 100%;
}

.director-info p {
  font-size: 20px;
  line-height: 28px;
  letter-spacing: 1px;
}

.director-info p span {
  color: var(--theme);
  text-transform: capitalize;
}

.director-title {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--black);
  text-align: center;
  text-transform: capitalize;
  color: var(--white);
  padding: 5px 0;
}

.director-title div {
  font-size: 24px;
}

/* Process Part */
.process-work-wrapper {
  position: relative;
}

.process-work-wrapper .line-shape {
  position: absolute;
  top: 60%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 880px;
}

.process-work-wrapper .line-shape img {
  width: 100%;
  height: 100%;
}

@media (max-width: 1399px) {
  .process-work-wrapper .line-shape {
    display: none;
  }
}

.process-work-wrapper .work-process-items {
  margin-top: 30px;
}

.process-work-wrapper .work-process-items .icon {
  width: 100px;
  height: 100px;
  line-height: 110px;
  text-align: center;
  border-radius: 50%;
  background-color: var(--white);
  box-shadow: 0px 8px 24px 0px #959DA533;
  position: relative;
  margin: 0 auto;
  color: var(--black);
  font-size: 46px;
}

.process-work-wrapper .work-process-items .icon .number {
  width: 34px;
  height: 34px;
  line-height: 34px;
  text-align: center;
  border-radius: 50%;
  background-color: var(--black);
  color: var(--white);
  position: absolute;
  top: 0;
  left: 0;
  font-weight: 400;
  font-size: 18px;
}

.process-work-wrapper .work-process-items .content {
  margin-top: 30px;
  color: #5E5F63;
}

.process-work-wrapper .work-process-items .content h4 {
  margin-bottom: 5px;
  font-weight: 700;
  color: var(--theme);
}

/* Blog Part */
.news-box-items {
  margin-top: 30px;
  position: relative;
  background-color: var(--white);
  box-shadow: 0px 8px 24px 0px #959DA533;
}

.news-box-items .news-image {
  position: relative;
  overflow: hidden;
}

.news-box-items .news-image img {
  width: 100%;
  height: 100%;
  position: relative;
  display: block;
  object-fit: cover;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.news-box-items .news-image img:first-child {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  -webkit-transform: translateX(50%) scaleX(2);
  transform: translateX(50%) scaleX(2);
  opacity: 0;
  -webkit-filter: blur(10px);
  filter: blur(10px);
}

.news-box-items .news-image .date {
  position: absolute;
  top: 10px;
  left: 10px;
  font-size: 30px;
  font-weight: 700;
  letter-spacing: -0.6px;
  color: var(--white);
  background-color: var(--theme);
  text-align: center;
  z-index: 3;
}

.news-box-items .news-image .date span {
  position: relative;
  display: block;
  font-size: 18px;
  padding: 7px 15px;
  line-height: 1em;
  color: var(--black);
  background-color: var(--white);
}

.news-box-items .news-content {
  padding: 30px;
}

.news-box-items .news-content .post-date {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
}

.news-box-items .news-content .post-date li {
  transition: all 0.4s ease-in-out;
}

.news-box-items .news-content .post-date li i {
  color: var(--theme);
  margin-right: 5px;
  transition: all 0.4s ease-in-out;
}

.news-box-items .news-content h3 {
  margin-bottom: 10px;
}

.news-box-items .news-content h3 a:hover {
  color: var(--theme);
}

.news-box-items .news-content p {
  margin-bottom: 15px;
}

.news-box-items:hover .news-image img:first-child {
  -webkit-transform: translateX(0) scaleX(1);
  transform: translateX(0) scaleX(1);
  opacity: 1;
  -webkit-filter: blur(0);
  filter: blur(0);
}

.news-box-items:hover .news-image img:nth-child(2) {
  -webkit-transform: translateX(-50%) scaleX(2);
  transform: translateX(-50%) scaleX(2);
  opacity: 0;
  -webkit-filter: blur(10px);
  filter: blur(10px);
}

.blog-section .swiper-dot {
  position: absolute;
  bottom: 5%;
  left: 50%;
  z-index: 9;
  transform: translateX(-50%);
}

.blog-section .swiper-pagination-bullet {
  border: 2px solid #2893E6;
  background: var(--white);
  width: 10px;
  height: 10px;
  opacity: 1;
}

.blog-section .swiper-pagination-bullet-active {
  background-color: #2893E6 !important;
}

/* Choose Us Part */
.chooseus-section {
  background-color: var(--bg);
}

.countries-card-items {
  box-shadow: none;
  background-color: transparent;
}

@media (max-width: 991px) {
.countries-card-items {
    flex-wrap: nowrap;
  }
}

.country-section .thumb {
  width: 50px;
  height: 50px;
  background: linear-gradient(90deg, #33D6ED 0%, #085088 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.country-section .thumb i {
  color: white;
  font-size: 24px;
}

.country-section .content h3 {
  position: relative;
  margin-bottom: 10px;
}

.country-section .content h3::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 82px;
  height: 3px;
  background: linear-gradient(90deg, #33D6ED 0%, #085088 100%);
  border-radius: 6px;
}

.country-section .content p {
  font-size: 14px;
  margin-bottom: 0;
}

/* Contact Part */
.contact-box-item {
  margin: 0 0 30px 0;
}

.contact-box-icon a {
  font-size: 32px;
  color: var(--theme);
}

.contact-box-title a {
  color: var(--theme);
}

.contact-box-description a {
  color: var(--black);
  font-weight: bold;
}

.contact-box-description a:hover {
  color: var(--theme);
}

.contact-box-img img {
  width: 100%;
  height: 100%;
}

.contact-form-wrapper {
  box-shadow: 0px 4px 4px 0px #00000040;
  border-left: 5px solid var(--black);
  padding: 15px 35px 40px 35px;
}

.contact-title span {
  text-transform: capitalize;
  font-weight: 700;
}

.contact-title h3 {
  font-size: 42px;
  font-weight: bold;
}

.contact-section .contact-wrapper .contact-left .form-clt input,
.contact-section .contact-wrapper .contact-left .form-clt textarea,
.contact-section .contact-wrapper .contact-left .form-clt select {
  background-color: var(--bg);
}

.contact-section .contact-wrapper .contact-left .theme-btn {
  background-color: var(--theme);
}

.contact-section .contact-wrapper .contact-left .theme-btn span {
  transition: all 0.4s ease-in-out;
}

.contact-section .contact-wrapper .contact-left .theme-btn::before,
.contact-section .contact-wrapper .contact-left .theme-btn::after {
  background-color: var(--black);
}

.contact-section .contact-wrapper .contact-left .theme-btn:hover span {
  color: var(--white);
}

.contact-box-map iframe {
  width: 100%;
  height: 437px;
}

/* Blog Page Part */
.blog-main-item-01 {
  position: relative !important;
  border: 1px solid #F2F5FA;
}

.blog-main-item-01+.blog-main-item-01 {
  margin-top: 45px;
}

.blog-main-item-01.format-video .thumbnail-wrap>a {
  margin-bottom: 20px;
  display: block;
}

.blog-main-item-01 .thumbnail-wrap {
  position: relative;
  z-index: 0;
  padding: 30px 30px 26px 30px;
  border-radius: 0;
  padding-bottom: 0;
}

.blog-main-item-01 .thumbnail-wrap .thumbnail {
  margin-bottom: 23px;
}

/* .blog-main-item-01 .thumbnail-wrap img { */
/* -webkit-transition: all 300ms ease-in-out; */
/* transition: all 300ms ease-in-out; */
/* height: 350px; */
/* width: 100%; */
/* object-fit: cover; */
/* } */

.blog-main-item-01 .thumbnail-wrap .thumbnail {
  position: relative;
  overflow: hidden;
}

.blog-main-item-01 .thumbnail-wrap .thumbnail img {
  width: 100%;
  height: 100%;
  position: relative;
  display: block;
  object-fit: cover;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.blog-main-item-01 .thumbnail-wrap .thumbnail img:first-child {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  -webkit-transform: translateX(50%) scaleX(2);
  transform: translateX(50%) scaleX(2);
  opacity: 0;
  -webkit-filter: blur(10px);
  filter: blur(10px);
}

.blog-main-item-01:hover .thumbnail-wrap .thumbnail img:first-child {
  -webkit-transform: translateX(0) scaleX(1);
  transform: translateX(0) scaleX(1);
  opacity: 1;
  -webkit-filter: blur(0);
  filter: blur(0);
}

.blog-main-item-01:hover .thumbnail-wrap .thumbnail img:nth-child(2) {
  -webkit-transform: translateX(-50%) scaleX(2);
  transform: translateX(-50%) scaleX(2);
  opacity: 0;
  -webkit-filter: blur(10px);
  filter: blur(10px);
}

.blog-main-item-01 .thumbnail-wrap .blog-cat-list a {
  height: 30px;
  line-height: 30px;
  background: var(--black);
  padding: 0 15px;
  font-size: 14px;
  color: var(--white);
  -webkit-transition: 0.4s;
  transition: 0.4s;
  display: inline-block;
  margin-right: 3px;
  margin-top: 4px;
}

.blog-main-item-01 .thumbnail-wrap .blog-cat-list a:hover {
  background: var(--theme);
  color: var(--white);
}

.blog-main-item-01 .thumbnail-wrap .blog-cat-list a:last-child {
  margin-right: 0;
}

.blog-main-item-01 .content {
  padding: 30px;
}

.blog-main-item-01 .content .post-meta-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-bottom: 1px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.blog-main-item-01 .content .post-meta-wrap .social-icon li {
  padding-left: 0;
  margin-top: 0;
}

.blog-main-item-01 .content .title {
  font-size: 26px;
  line-height: 1.5;
  margin-top: 0;
  -webkit-transition: all 300ms;
  transition: all 300ms;
  -ms-word-wrap: break-word;
  word-wrap: break-word;
  margin-bottom: 17px;
  word-break: break-all;
}

.blog-main-item-01 .content .title a {
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
}

.blog-main-item-01:hover .content .title a {
  color: var(--theme);

}

.blog-main-item-01 .content p {
  font-size: 16px;
  margin-bottom: 31px;
}

.blog-main-item-01 .content .post-author {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.blog-main-item-01 .content .post-author .author-image {
  border-radius: 50%;
  width: 40px;
  height: 40px;
  margin-right: 15px;
}

.blog-main-item-01 .content .post-author a {
  color: #001b61;
  font-size: 16px;
  font-weight: 500;
}

.blog-main-item-01 .blog-bottom .btn {
  height: 42px;
  width: 42px;
  line-height: 43px;
  padding: 0;
  text-align: center;
  background: var(--theme);
  color: var(--white);
}

.blog-main-item-01 .blog-bottom .btn svg {
  font-size: 16px;
  margin-top: auto;
  margin-left: auto;
  float: inherit;
}

.blog-main-item-01 .blog-bottom .btn i {
  float: inherit;
  padding-left: 0;
}

.blog-main-item-01 .blog-bottom .read-btn-text {
  font-weight: 500;
}

.post-meta {
  margin: 0;
  padding: 0;
  list-style: none;
  padding-left: 0 !important;
}

.post-meta li {
  display: inline-block;
  font-size: 15px;
  line-height: 1;
  position: relative;
  z-index: 0;
  padding-left: 0 !important;
  color: #757575;
  list-style: none !important;
  text-transform: capitalize;
  margin-right: 20px;
}

.post-meta li+li {
  margin-top: 0 !important;
}

.post-meta li svg {
  margin-right: 5px;
}

.post-meta li::before {
  display: none !important;
}

.post-meta li:last-child {
  margin-right: 0;
}

.post-meta li.white {
  color: var(--white);
}

.post-meta li.white span {
  color: var(--white);
}

.post-meta li:before {
  display: none;
}

.post-meta li a {
  -webkit-transition: all 300ms;
  transition: all 300ms;
  color: var(--p-color);
}

.blog-cat-list {
  display: flex;
  justify-content: end;
  align-items: center;
  flex-wrap: wrap;
  gap: 5px;
}

.widget {
  border: 2px solid #ededed;
  padding: 30px;
  margin-bottom: 40px;
}

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

.widget ul li {
  margin: 16px 0;
  display: block;
  word-break: break-word;
}

.widget ul li+li {
  margin-top: 10px;
}

.widget ul li:before {
  display: none;
}

.widget ul li:last-child {
  margin-bottom: 0;
}

.widget ul li:first-child {
  margin-top: 0;
}

.widget ul li ul {
  margin-left: 20px;
  margin-top: 10px;
}

.widget .widget-headline {
  font-size: 24px;
  line-height: 1;
  text-transform: capitalize;
  position: relative;
  z-index: 0;
  margin-bottom: 25px;
}

.widget:last-child {
  margin-bottom: 0;
}

.widget .widget-headline:before {
  position: absolute;
  bottom: 0;
  left: 30px;
  width: 63px;
  height: 2px;
  content: "";
  background-color: var(--theme);
}

.widget .widget-headline:after {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 20px;
  height: 2px;
  content: "";
  background-color: var(--black);
}

.widget .widget-headline {
  padding-bottom: 15px;
}

.widget_search .post-inside-wrapper {
  position: relative;
}

.widget_search .search-form {
  position: relative;
}

.widget_search .search-form .form-group {
  margin-bottom: 0;
}

.widget_search .search-form .form-group .form-control {
  background-color: var(--bg);
  font-size: 15px;
  padding: 20px;
  width: 100%;
  border: none;
  border-radius: 0;
}

.widget_search .search-form .form-group .form-control::-webkit-input-placeholder {
  color: var(--p-color);
}

.widget_search .search-form .form-group .form-control::-moz-placeholder {
  color: var(--p-color);
}

.widget_search .search-form .form-group .form-control:-ms-input-placeholder {
  color: var(--p-color);
}

.widget_search .search-form .form-group .form-control::-ms-input-placeholder {
  color: var(--p-color);
}

.widget_search .search-form .form-group .form-control::placeholder {
  color: var(--p-color);
}

.widget_search .search-form .submit-btn {
  position: absolute;
  right: 0;
  top: 0;
  width: 70px;
  font-size: 18px;
  height: 100%;
  background-color: var(--theme);
  color: var(--white);
  text-align: center;
  transition: all 0.3s ease-in-out;
  border: 0;
}

.widget_search .search-form .submit-btn:hover {
  color: var(--black);
}

.widget_visaland_category .service-item-list {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px;
  background-color: var(--bg);
  font-weight: 500;
  transition: all 0.4s ease-in-out;
}

.widget_visaland_category .service-item-list:hover {
  background: var(--theme);
  color: var(--white);
}

.widget_visaland_category .service-item-list:hover span {
  color: var(--white);
}

.widget_visaland_popular_posts .thumb a img {
  width: 95px;
  height: 95px;
  display: block;
  object-fit: cover;
}

.widget_visaland_popular_posts .theme-recent-post-item {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 20px;
  font-size: 14px;
  transition: all 0.5s ease-in;
}

.widget_visaland_popular_posts .theme-recent-post-item:hover {
  background-color: var(--theme);
}

.widget_visaland_popular_posts .theme-recent-post-item .time {
  position: relative;
  margin-left: 25px;
  margin-bottom: 5px;
  display: block;
  color: var(--theme);
  transition: all 0.5s ease-in;
}

.widget_visaland_popular_posts .theme-recent-post-item:hover .time {
  color: var(--white);
}

.widget_visaland_popular_posts .theme-recent-post-item .time:before {
  content: "\f073";
  font-family: 'Font Awesome 5 Pro';
  position: absolute;
  top: 0;
  left: -25px;
  color: var(--theme);
  transition: all 0.5s ease-in;
}

.widget_visaland_popular_posts .theme-recent-post-item:hover .time::before {
  color: var(--white);
}

.widget_visaland_popular_posts .theme-recent-post-item h6 {
  font-size: 16px;
}

.widget_visaland_popular_posts .theme-recent-post-item h6 a {
  transition: all 0.5s ease-in;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
}

.widget_visaland_popular_posts .theme-recent-post-item:hover h6 a {
  color: var(--white);
}

/* Blog Detail Part */
.blog-wrapper h2 {
  line-height: 1.4;
  font-size: 36px;
  font-weight: 600;
}

.entry-content .post-meta {
  display: flex;
  gap: 20px;
}

.entry-content .post-meta li {
  font-size: 14px;
  font-weight: 500;
}

.entry-content .post-meta li i {
  margin-right: 5px;
  color: var(--theme);
}

.post-content h3 {
  margin-bottom: 20px;
  font-size: 32px;
}

.blog-details-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid #F2F5FA;
  border-bottom: 1px solid #F2F5FA;
  padding: 30px 0;
  margin: 30px 0;
}

@media (max-width: 524px) {
  .blog-details-footer {
    flex-direction: column;
    gap: 5px;
  }
}

.blog-details-footer .social-icon li {
  list-style: none;
  padding-left: 0;
  font-size: 15px;
  background: transparent !important;
  margin-top: 0;
  margin-left: 5px !important;
}

.blog-details-footer .social-icon li:hover {
  color: var(--theme);
}

.blog-details-footer .social-icon li:hover .blog-details-footer .social-icon li:before {
  display: none;
}

.blog-details-footer .right {
  display: flex;
  justify-content: center;
  align-items: center;
}

.blog-details-footer .right .title {
  margin-right: 10px;
}

.blog-details-footer .right .social-share li {
  padding-left: 0;
  margin-top: 0;
}

.blog-details-footer .right .social-share li:before {
  display: none;
}

.blog-details-footer .left {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

@media (max-width: 351px) {
  .blog-details-footer .left {
    flex-direction: column;
  }
}

.blog-details-footer .left .title {
  margin-right: 10px;
}

.blog-details-footer .left .tags li a {
  display: inline-block;
  border: 1px solid #F2F5FA;
  padding: 12px 26px;
  line-height: 1;
  margin-right: 8px;
  text-transform: capitalize;
  font-weight: 500;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}


.blog-details-footer .left .tags li a:hover {
  background-color: var(--theme);
  color: var(--white);
}

.blog-wrapper h1,
.blog-wrapper h2,
.blog-wrapper h3,
.blog-wrapper h4,
.blog-wrapper h5,
.blog-wrapper h6 {
  font-weight: 600;
}

.blog-wrapper .single-blog-post {
  margin-bottom: 40px;
  position: relative;
}

.blog-wrapper .single-blog-post.post-details .post-content {
  border: none;
}

.blog-wrapper .single-blog-post.post-details .post-content img {
  margin-top: 20px;
  margin-bottom: 20px;
}

.blog-wrapper .single-blog-post.post-details .post-content img {
  width: 100%;
  height: auto;
}

.blog-wrapper .single-blog-post.post-details .post-content .single-post-image {
  width: 100%;
  height: 100%;
}

.blog-wrapper .single-blog-post.post-details .post-content h1 {
  font-size: 36px;
  line-height: 1.4;
}

.blog-wrapper .single-blog-post.post-details .post-content h1,
.blog-wrapper .single-blog-post.post-details .post-content h2,
.blog-wrapper .single-blog-post.post-details .post-content h3,
.blog-wrapper .single-blog-post.post-details .post-content h4,
.blog-wrapper .single-blog-post.post-details .post-content h5,
.blog-wrapper .single-blog-post.post-details .post-content h6 {
  margin-top: 10px;
}

.blog-wrapper .single-blog-post.post-details .post-content table {
  margin-top: 20px;
}

@media (max-width: 767px) {
  .blog-wrapper .single-blog-post.post-details .post-content h1 {
    font-size: 28px;
  }

  .blog-wrapper .single-blog-post.post-details .post-content h3 {
    font-size: 20px;
  }
}

.blog-wrapper .single-blog-post.post-details blockquote {
  background-color: var(--theme);
  color: var(--white);
  font-size: 26px;
  line-height: 1.4;
  font-family: "Inter", sans-serif;
  font-weight: 400;
  padding: 60px;
  text-align: center;
  margin: 40px 0px;
  position: relative;
  z-index: 1;
}

.blog-wrapper .single-blog-post.post-details blockquote p {
  color: var(--white);
}

.blog-wrapper .single-blog-post.post-details blockquote a {
  color: var(--white);
}

@media (max-width: 767px) {

  .blog-wrapper .single-blog-post.post-details blockquote {
    padding: 30px 15px;
    font-size: 18px;
    line-height: 1.5;
  }
}

.blog-wrapper .single-blog-post.post-details blockquote::before {
  right: 30px;
  font-size: 110px;
  line-height: 1;
  font-family: "Font Awesome 5 Pro";
  position: absolute;
  content: "\f10d";
  bottom: -20px;
  color: var(--white);
  z-index: -1;
  opacity: 0.1;
  font-weight: 900;
}

.blog-wrapper .single-blog-post:last-child {
  margin-bottom: 0;
}

.blog-wrapper .single-blog-post .post-featured-thumb {
  height: 450px;
  width: 100%;
  position: relative;
  margin-bottom: -2px;
}

.blog-wrapper .single-blog-post .post-featured-thumb .post-date {
  position: absolute;
  top: 20px;
  left: 20px;
  padding: 15px 30px;
  background-color: var(--theme);
  text-align: center;
}

.blog-wrapper .single-blog-post .post-featured-thumb .post-date h4 {
  color: var(--white);
}

.blog-wrapper .single-blog-post .post-featured-thumb .post-date h4 span {
  color: var(--white);
  text-transform: uppercase;
  font-size: 15px;
}

@media (max-width: 991px) {
  .blog-wrapper .single-blog-post .post-featured-thumb {
    height: 280px;
  }
}

@media (max-width: 767px) {
  .blog-wrapper .single-blog-post .post-featured-thumb {
    height: 230px;
  }
}

.blog-wrapper .single-blog-post .post-featured-thumb .video-play-btn {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
}

.blog-wrapper .single-blog-post .post-featured-thumb .video-play-btn .play-video {
  border-radius: 50%;
  width: 80px;
  height: 80px;
  line-height: 80px;
  font-size: 18px;
}

.blog-wrapper .single-blog-post .post-content {
  padding-top: 30px;
  overflow: hidden;
  box-sizing: border-box;
}

@media (max-width: 575px) {
  .blog-wrapper .single-blog-post .post-content {
    padding-top: 20px;
  }
}

.blog-wrapper .single-blog-post .post-content h2 {
  line-height: 1.4;
  font-size: 36px;
  font-weight: 600;
}

@media (max-width: 575px) {
  .blog-wrapper .single-blog-post .post-content h2 {
    font-size: 28px;
  }
}

.blog-wrapper .single-blog-post .post-content h2 a:hover {
  color: var(--theme);
}

.blog-wrapper .single-blog-post .post-content p {
  font-size: 16px;
}

@media (max-width: 767px) {
  .blog-wrapper .single-blog-post .post-content {
    padding: 30px 10px;
  }
}

@media (max-width: 414px) {
  .blog-wrapper .single-blog-post .post-content h2 {
    font-size: 22px;
  }
}

.blog-wrapper .single-blog-post .post-content .post-cat a {
  color: var(--white);
  display: inline-block;
  background-color: var(--theme);
  padding: 14px 18px 12px;
  line-height: 1;
  font-size: 16px;
  font-weight: 700;
  transition: all 0.3s ease-in-out;
  margin-bottom: 20px;
  text-transform: capitalize;
  font-family: "Inter", sans-serif;
}

@media (max-width: 767px) {
  .blog-wrapper .single-blog-post .post-content .post-cat a {
    font-size: 12px;
  }
}

.blog-wrapper .single-blog-post .post-content .post-cat a:hover {
  background-color: var(--black);
}

.blog-wrapper .single-blog-post .post-content ul {
  margin-bottom: 0;
  list-style-type: disc;
  margin-top: 30px;
}

.blog-wrapper .single-blog-post .post-content ul ol {
  margin-bottom: 0;
}

.blog-wrapper .single-blog-post .post-content ul ul {
  margin-bottom: 0;
}

.blog-wrapper .single-blog-post .post-content ul li {
  line-height: 1.5;
  margin-top: 10px;
  list-style-type: disc;
  color: var(--p-color);
  position: relative;
  font-size: 18px;
  padding-left: 30px;
}

.blog-wrapper .single-blog-post .post-content ul li::before {
  position: absolute;
  left: 0;
  top: 0;
  font-family: "Font Awesome 5 Pro";
  content: "\f00c";
  color: var(--theme);
}

.blog-wrapper .single-blog-post .post-content ol {
  margin-bottom: 0;
  list-style-type: decimal;
}

.blog-wrapper .single-blog-post .post-content ol ul {
  margin-bottom: 0;
}

.blog-wrapper .single-blog-post .post-content ol ol {
  margin-bottom: 0;
}

.blog-wrapper .single-blog-post .post-content ol li {
  line-height: 1.5;
  margin-top: 10px;
  list-style-type: decimal;
}

.blog-wrapper .single-blog-post .post-content p {
  margin-top: 15px;
}

.blog-wrapper .single-blog-post .post-content .post-meta {
  margin-bottom: 10px;
}

.blog-wrapper .single-blog-post .post-content .post-meta span {
  color: var(--p-color);
  font-weight: 500;
  font-size: 18px;
  line-height: 1;
  display: inline-block;
  margin-right: 25px;
}

@media (max-width: 767px) {
  .blog-wrapper .single-blog-post .post-content .post-meta span {
    font-size: 15px;
  }
}

.blog-wrapper .single-blog-post .post-content .post-meta span i {
  margin-right: 5px;
  color: var(--theme);
  font-weight: 700;
}

.blog-wrapper .single-blog-post .post-content .author-info {
  overflow: hidden;
}

.blog-wrapper .single-blog-post .post-content .author-info .author-img {
  height: 40px;
  width: 40px;
  line-height: 40px;
  border-radius: 50%;
  background-color: #f2f2f2;
  margin-right: 15px;
  float: left;
  overflow: hidden;
  background-position: center;
  background-size: cover;
}

@media (max-width: 767px) {
  .blog-wrapper .single-blog-post .post-content .author-info .author-img {
    margin-right: 5px;
  }
}

.blog-wrapper .single-blog-post .post-content .author-info h5 {
  display: inline-block;
  line-height: 1;
  font-size: 16px;
  margin-top: 9px;
}

.blog-wrapper .single-blog-post .post-content .author-info h5 a:hover {
  color: var(--theme);
}

@media (max-width: 767px) {
  .blog-wrapper .single-blog-post .post-content .author-info h5 {
    font-size: 14px;
  }
}

.blog-wrapper .single-blog-post .post-content .post-link a {
  font-weight: 700;
}

.blog-wrapper .single-blog-post .post-content .post-link a:hover {
  color: var(--theme);
}

@media (max-width: 767px) {
  .blog-wrapper .single-blog-post .post-content .post-link a {
    font-size: 14px;
  }
}

.blog-wrapper .single-blog-post .post-content .post-link a i {
  margin-right: 5px;
}

@media (max-width: 767px) {
  .blog-wrapper .single-blog-post .post-content .post-link a i {
    margin-right: 3px;
  }
}

.alignleft {
  float: left;
  margin: 0 1em 1em 0;
  /* Adjust margin as needed */
}

.blog-wrapper .single-blog-post.post-details .post-content .blog-bottom-img img {
  width: 365px;
  height: 215px;
  object-fit: cover;
  object-position: center;
  margin-top: 0;
  margin-bottom: 0;
  margin-right: 2rem;
}

.blog-details-footer .right ul {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.single-post-navigation {
  word-break: break-word;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border: 1px solid #F2F5FA;
  padding: 25px;
}

.single-post-navigation .single-post-navigation-center-grid {
  font-size: 25px;
}

.single-post-navigation .single-post-navigation-center-grid a {
  color: var(--theme);
}

.single-post-navigation .single-post-navigation-center-grid a:hover,
.single-post-navigation .single-post-navigation-center-grid a:focus {
  color: var(--black);
}

.single-post-navigation .prev-post a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
  color: #8E8E8E;
  -webkit-transition: all 300ms;
  transition: all 300ms;
}

.single-post-navigation .prev-post a i {
  height: 45px;
  width: 45px;
  border-radius: 45px;
  line-height: 45px;
  background: #F4F4F4;
  display: inline-block;
  text-align: center;
  margin-right: 5px;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.single-post-navigation .prev-post a:hover {
  color: var(--black);
}

.single-post-navigation .prev-post a:hover i {
  background: var(--theme);
  color: var(--white);
}

.single-post-navigation .next-post a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
  color: #8E8E8E;
  -webkit-transition: all 300ms;
  transition: all 300ms;
}

.single-post-navigation .next-post a i {
  height: 45px;
  width: 45px;
  border-radius: 45px;
  line-height: 45px;
  background: #F4F4F4;
  display: inline-block;
  text-align: center;
  margin-left: 5px;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.single-post-navigation .next-post a:hover {
  color: var(--black);
}

.single-post-navigation .next-post a:hover i {
  background: var(--theme);
  color: var(--white);
}

.single-post-navigation .title-with-link {
  -webkit-transition: 0.3s;
  transition: 0.3s;
  overflow: hidden;
}

.single-post-navigation .title-with-link i {
  margin-top: 3px;
}

.single-post-navigation .title-with-link span {
  letter-spacing: 1px;
  text-transform: capitalize;
  font-weight: 500;
}

.comments-area {
  margin-top: 30px;
}

.comments-area .comments-title {
  font-size: 24px;
  line-height: 34px;
  font-weight: 500;
  margin-bottom: 38px;
}

.comments-area .comment-list {
  margin: 0;
  padding: 0;
  list-style: none;
  margin-bottom: 20px;
}

.comments-area .comment-list .comment-respond {
  margin-bottom: 57px;
}

.comments-area .comment-list .comment-respond {
  margin-top: 37px;
}

.comments-area .comment-list .comment-reply-title {
  font-size: 17px;
  margin-bottom: 15px;
}

.comments-area .comment-list .comment-reply-title small {
  font-size: 16px;
  line-height: 1;
  top: 1px;
  margin-bottom: 0;
}

.comments-area .comment-list li:last-child {
  margin-bottom: 0;
}

.comments-area .comment-list li:last-child .single-comment-wrap .thumb .date {
  margin-bottom: 0;
}

.comments-area .comment-list li ul.children {
  margin: 0;
  padding: 0;
  list-style: none;
  margin-top: 30px;
}

.comments-area .comment-list li ul.children li {
  margin-left: 50px;
  list-style: none;
}

.comments-area .comment-list li .single-comment-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  --ms-flex-item-align: start;
  -ms-flex-item-align: start;
  align-self: flex-start;
  border-bottom: 1px solid #F2F5FA;
  padding: 30px 0;
}

.comments-area .comment-list li .single-comment-wrap .thumb {
  margin-right: 20px;
  min-width: 80px;
  border-radius: 50%;
}

.comments-area .comment-list li .single-comment-wrap .thumb img {
  margin-bottom: 10px;
  border-radius: 50%;
  border: 2px solid #fafafa;
  -webkit-box-shadow: 0 0 50px 0 rgba(0, 0, 0, 0.02);
  box-shadow: 0 0 50px 0 rgba(0, 0, 0, 0.02);
}

.comments-area .comment-list li .single-comment-wrap .date {
  display: block;
  font-size: 14px;
  line-height: 20px;
  margin-bottom: 10px;
}

.comments-area .comment-list li .single-comment-wrap .content {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  position: relative;
  max-width: 630px;
}

.comments-area .comment-list li .single-comment-wrap .content .title {
  font-size: 19px;
  line-height: 28px;
  font-weight: 500;
  padding-right: 70px;
}

.comments-area .comment-list li .single-comment-wrap .content .comment-content {
  max-width: 630px;
}

.comments-area .comment-list li .single-comment-wrap .content p {
  word-break: break-word;
}

.comments-area .comment-list li .single-comment-wrap .content p:last-child {
  margin-bottom: 0;
}

.comments-area .comment-list li .single-comment-wrap .content .comment-reply-link {
  font-weight: 500;
  position: absolute;
  top: 0;
  right: 0;
  -webkit-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
  background: var(--theme);
  color: var(--white);
  font-size: 14px;
  padding: 5px 15px;
}

.comments-area .comment-list li .single-comment-wrap .content .comment-reply-link:after {
  position: static;
  content: "\f3e5";
  font-family: "Font Awesome 5 Pro";
  font-size: 14px;
  line-height: 1;
  margin-left: 5px;
  font-weight: 900;
}

.comments-area .comment-list li .single-comment-wrap .content .comment-reply-link:hover {
  background: var(--black);
  color: var(--white);
}

.comments-area .comment-list li.comment {
  margin-bottom: 30px;
}

.comments-area .comment-list .has-children {
  padding-left: 80px;
}

.comments-area .comment-list ol:not([class]) {
  margin-bottom: 20px;
}

.comments-area .comment-list ol:not([class]) li ol {
  margin-bottom: 0;
}

.comments-area .comment-list .children li:last-child {
  margin-bottom: 30px;
}

.comments-area .comment-list ul:not([class]) {
  margin-bottom: 20px;
}

.comments-area .comment-list ul:not([class]) ul {
  margin-bottom: 0px;
}

.comments-area .reply-title {
  font-size: 24px;
  line-height: 34px;
  font-weight: 500;
  margin-bottom: 25px;
}

.comments-area .comment-reply-title {
  font-size: 24px;
  line-height: 34px;
  font-weight: 500;
  margin-bottom: 25px;
}

.comments-area .comment-reply-title small {
  font-size: 24px;
  line-height: 34px;
  font-weight: 500;
  margin-left: 10px;
  display: inline-block;
  position: relative;
  top: 4px;
  margin-bottom: 0;
}

.comments-area .comment-form-wrap {
  padding: 65px 95px 70px;
}

.comments-area .form-submit {
  margin-bottom: 30px;
  margin-top: 20px;
}

.blog-content-page-content-area .comments-area .comment-list li .single-comment-wrap .time {
  display: block;
  font-size: 14px;
  line-height: 20px;
  margin-bottom: 10px;
}

.comment-form .form-group.textarea .form-control {
  min-height: 150px;
  resize: none;
  line-height: 26px;
}

.comment-form .form-group.textarea .form-control:focus {
  outline: none;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.comment-form .form-group {
  position: relative;
}

.comment-form .form-group .form-control {
  height: 52px;
  line-height: 52px;
  border-radius: 0;
  border: 0;
  border: 1px solid #F2F5FA;
  padding: 11px 20px;
  padding-right: 35px;
  font-size: 15px;
  margin-bottom: 10px;
  background: transparent;
}

.comment-form .btn-wrap .boxed-btn {
  font-size: 14px;
}

.comment-form .submit-btn {
  height: 55px;
  line-height: 55px;
  width: auto;
  border-radius: 0;
  font-weight: 500;
  background-color: var(--theme);
  border: none;
  cursor: pointer;
  -webkit-transition: 0.3s ease-in;
  transition: 0.3s ease-in;
  color: var(--white);
  padding: 0 30px;
}

.comment-form .submit-btn:hover {
  background-color: var(--black);
  color: var(--white);
}

/* Sector Part */
.sector-section,
.job-description {
  background-image: url(/static_images/sector-bg.png);
  background-position: left;
  background-repeat: no-repeat;
  background-size: contain;
}

.sector-card {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  background: #fff;
  margin-bottom: 30px;
  cursor: pointer;
}

.sector-card:hover {
  transform: translateY(-15px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.sector-card .card-image {
  position: relative;
  height: 414px;
  overflow: hidden;
}

.sector-card .card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.sector-card:hover .card-image img {
  transform: scale(1.1);
}

.card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.7) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.sector-card:hover .card-overlay {
  opacity: 1;
}

.sector-card .card-content {
  padding: 25px;
  text-align: center;
  background: var(--bg);
  position: relative;
  z-index: 2;
}

.sector-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 12px;
  transition: color 0.3s ease;
}

.sector-card:hover .sector-title {
  color: var(--theme);
}

.find-jobs-btn {
  display: inline-block;
  color: var(--theme);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  position: relative;
  transition: all 0.3s ease;
}

.find-jobs-btn::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -3px;
  left: 0;
  background-color: var(--theme);
  transition: width 0.3s ease;
}

.sector-card:hover .find-jobs-btn::after {
  width: 100%;
}

.find-jobs-btn:hover {
  color: var(--theme);
  text-decoration: none;
}

/* Job Part */
.section-header {
  background-color: #F2F2F6 !important;
  padding: 0px !important;
}

.section-header span {
  font-size: 20px;
  line-height: 25px;
  font-weight: normal;
  color: #262161;
}

.bg-dark-blue {
  background-color: #262161;
}

.job-table-wrapper table {
  text-align: center;
  font-size: 16px;
  line-height: 25px;
  padding: 5px;
  text-transform: capitalize;
}

.table-container {
  box-shadow: 0px 1px 1px 0px #00000040;
  margin-bottom: 20px;
}

.table th {
  vertical-align: middle;

}

.table td {
  vertical-align: middle;
}

.job-table-wrapper .table>:not(:first-child) {
  border-top: unset;
}

/* Job Description Section Start */

.job-descreption-item {
  gap: 98px;
}

.job-descreption-item ul {
  list-style: none;
}

.job-descreption-item ul li {
  margin-bottom: 25px;
}

.job-descreption-item ul li:before {
  content: "✓";
  color: var(--black);
  padding-right: 12px;
}

.job-share {
  display: flex;
  align-items: center;
  gap: 24px;
}

.job-share span {
  font-weight: 600;
  font-size: clamp(16px, 2vw, 20px);
  line-height: 100%;
}

.job-share a {
  color: #000000;
}

.job-share a:hover {
  color: var(--theme);
}

.category-brand {
  transition: transform 0.5s;
}

.category-brand:hover {
  transform: scale(1.1);
}

.job-descreption-item strong {
  font-weight: 600;
  font-size: clamp(18px, 2.5vw, 24px);
  line-height: 100%;
}

.job-descreption-title {
  font-weight: 600;
  font-size: clamp(24px, 3vw, 32px) !important;
  line-height: 100%;
}

.job-description-sidebar {
  border-radius: 20px;
  padding: 28px 20px;
  background-color: var(--black);
  color: var(--white);
}

.job-sidebar-item {
  display: flex;
  align-items: center;
  gap: 20px;
  transition: all 0.3s ease;
}

.job-sidebar-item:hover {
  transform: translateY(-5px);
}

.job-sidebar-item p {
  font-weight: 400;
  font-size: clamp(14px, 1vw, 16px);
  line-height: 100%;
  color: #6c757d;
}

.job-sidebar-item iframe {
  border-radius: 12px;
  width: 100%;
}

.job-description-sidebar strong {
  font-weight: 700;
  font-size: clamp(16px, 2vw, 18px);
  line-height: 100%;
}
