/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
* {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Open Sans", sans-serif;
  color: #444444;
}

a {
  color: #006383;
  text-decoration: none;
}

a:hover {
  color: #0082ac;
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Raleway", sans-serif;
}


.light-background {
  --background-color: #f9f9f9;
  --surface-color: #ffffff;
  --default-color: #ffffff;
}

.dark-background {
  --background-color: #1b1b1b;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #353535;
  --contrast-color: #ffffff;
}
/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  background: #fff;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #006383;
  border-top-color: #d1e6f9;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  animation: animate-preloader 1s linear infinite;
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

@media (max-width: 992px) {
  .content[data-aos] {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: #1977cc;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.back-to-top i {
  font-size: 28px;
  color: #fff;
  line-height: 0;
}

.back-to-top:hover {
  background: #298ce5;
  color: #fff;
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

.datepicker-dropdown {
  padding: 20px !important;
}

/*--------------------------------------------------------------
# Top Bar
--------------------------------------------------------------*/
#topbar {
  background: #003f5e;
  height: 40px;
  font-size: 14px;
  transition: all 0.5s;
  z-index: 999;
}

#topbar.topbar-scrolled {
  top: -40px;
}

#topbar .contact-info a {
  line-height: 1;
  color: #fff;
  transition: 0.3s;
}

#topbar .contact-info a:hover {
  color: #fff;
}

#topbar .contact-info i {
  color: #fff;
  padding-right: 4px;
  margin-left: 15px;
  line-height: 0;
}

#topbar .contact-info i:first-child {
  margin-left: 0;
}

#topbar .social-links a {
  color: #fff;
  padding-left: 15px;
  display: inline-block;
  line-height: 1px;
  transition: 0.3s;
}

#topbar .social-links a:hover {
  color: #fff;
}

#topbar .social-links a:first-child {
  border-left: 0;
}

.dropdown-toggle {
  position: relative;
  top: 0px;
  border-radius: 0px;
  height: 40px;
  font-size: 14px;
  margin-left: 20px;
  background-color: #006383;
  color: #fff;
  border: none;
  z-index: 99;
}

.dropdown-toggle:hover {
  background-color: #005571;
}

.dropdown-item:hover {
  background-color: #007ea7;
  font-size: 14px;
  color: #fff;
}

.dropdown-item {
  font-size: 14px;
}

@media (max-width: 768px) {
  .contact-info .bi-clock {
    display: none;
  }
  .clock {
    display: none;
  }
}

@media (max-width: 507px) {
  .contact-info .bi-phone {
    display: none;
  }
  .phone {
    display: none;
  }
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  background: #fff;
  transition: all 0.5s;
  z-index: 997;
  padding: 15px 0;
  top: 40px;
  box-shadow: 0px 2px 15px rgba(25, 119, 204, 0.1);
}

#header.header-scrolled {
  top: 0;
}

#header .logo {
  margin: 0;
  padding: 0;
  width: 236px;
  height: 53px;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.navbar {
  padding: 0;
}

.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}

.navbar li {
  position: relative;
}

.navbar > ul > li {
  position: relative;
  white-space: nowrap;
  padding: 8px 0 8px 25px;
}

.navbar a,
.navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 15px;
  font-weight: 500;
  color: #003f5e;
  white-space: nowrap;
  transition: 0.3s;
  border-bottom: 2px solid #fff;
  padding: 5px 2px;
}

.navbar a i,
.navbar a:focus i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover > a {
  color: #003f5e;
  border-color: #003f5e;
}

.dropdown.active > a {
  border-bottom: 2px solid #003f5e;
}

.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 20px;
  top: calc(100% + 30px);
  margin: 0;
  padding: 10px 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
}

.navbar .dropdown ul li {
  min-width: 200px;
}

.navbar .dropdown ul a {
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 500;
  text-transform: none;
  color: #082744;
  border: none;
}

.navbar .dropdown ul a i {
  font-size: 12px;
}

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover>a {
  color: #1977cc;
}

.navbar .dropdown:hover>ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.navbar .dropdown .dropdown ul {
  top: 0;
  left: calc(100% - 30px);
  visibility: hidden;
}

.navbar .dropdown .dropdown:hover>ul {
  opacity: 1;
  top: 0;
  left: 100%;
  visibility: visible;
}

@media (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }

  .navbar .dropdown .dropdown:hover>ul {
    left: -100%;
  }
}

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
  color: #2c4964;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}

.mobile-nav-toggle.bi-x {
  color: #fff;
}

@media (max-width: 1200px) {
  .mobile-nav-toggle {
    display: block;
  }

  .navbar ul {
    display: none;
  }
}

@media (max-width: 375px) {
  .mobile-nav-toggle {
    display: block;
  }

  .navbar ul {
    display: none;
  }
}

.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(28, 47, 65, 0.9);
  transition: 0.3s;
  z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}

.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
  background-color: #fff;
  overflow-y: auto;
  transition: 0.3s;
}

.navbar-mobile > ul > li {
  padding: 0;
}

.navbar-mobile a,
.navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 15px;
  color: #2c4964;
  border: none;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover > a {
  color: #003f5e;
}

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
  margin: 15px;
}

.navbar-mobile .dropdown ul {
  position: static;
  display: none;
  margin: 10px 20px;
  padding: 10px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

.navbar-mobile .dropdown ul li {
  min-width: 200px;
}

.navbar-mobile .dropdown ul a {
  padding: 10px 20px;
}

.navbar-mobile .dropdown ul a i {
  font-size: 12px;
}

.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover > a {
  color: #003f5e;
}

.navbar-mobile .dropdown > .dropdown-active {
  display: block;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  height: 95vh;
  background-color: rgba(60, 60, 60, 0.8);
  overflow: hidden;
  position: relative;
  margin-bottom: -200px;
  padding-left: 100px;
}

#hero .carousel,
#hero .carousel-inner,
#hero .carousel-item,
#hero .carousel-item::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
}

#hero .carousel-item {
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

#hero .carousel-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

#hero .content {
  position: absolute;
  bottom: 60px;
  left: 0;
  right: 0;
  opacity: 0;
  animation: fadeInFromBottom 2s ease forwards;
  animation-delay: 1.5s;
  z-index: 2 !important;
}

@keyframes fadeInFromBottom {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

#hero h1 {
  font-size: 42px;
  font-weight: 700;
  line-height: 56px;
  text-transform: uppercase;
  color: #fff;
  text-wrap: nowrap;
  margin-right: 100px;
}

#hero h2 {
  position: relative;
  color: #fff;
  font-size: 20px;
  font-weight: 500;
  text-wrap: nowrap;
  left: -30px;
  bottom: -13px;
}

#chevron-circle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background-color: #fff;
  color: #006383;
  margin-left: 10px;
}

#hero .btn-services {
  font-family: "Raleway", sans-serif;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 16px 30px;
  border-radius: 50px;
  transition: 0.5s;
  color: #fff;
  background: #006383;
  margin-left: 50px;
}

#hero .btn-services:hover {
  background: #0082ac;
}

.hero .carousel {
  inset: 0;
  position: absolute;
  overflow: hidden;
}

.hero .carousel-item {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition-duration: 0.4s;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.hero .carousel-item img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 95vh;
  z-index: -1;
}

.hero .carousel-item::before {
  content: "";
  height: 95vh;
  background: linear-gradient(
    180deg,
    #000000 -20.34%,
    rgba(102, 102, 102, 0) 71.68%
  );
  transform: matrix(1, 0, 0, -1, 0, 0);
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero .carousel-control-prev {
  justify-content: start;
}

.hero .carousel-control-next {
  justify-content: end;
}

.hero .carousel-control-prev-icon,
.hero .carousel-control-next-icon {
  background: none;
  font-size: 26px;
  line-height: 0;
  background: rgba(var(--default-color-rgb), 0.2);
  color: rgba(var(--default-color-rgb), 0.6);
  border-radius: 50px;
  width: 54px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero .carousel-control-prev,
.hero .carousel-control-next {
  z-index: 3;
  transition: 0.3s;
}

.hero .carousel-control-prev:hover,
.hero .carousel-control-next:hover {
  opacity: 0.9;
}

@media (max-width: 1400px) {
  #hero .content {
    bottom: 50px;
    padding-left: 12px;
    text-wrap: nowrap;
  }

  #hero h1 {
    font-size: 34px;
    line-height: 48px;
    margin-bottom: 10px;
    margin-right: 50px;
  }

  #hero h2 {
    font-size: 17px;
    line-height: 24px;
    text-wrap: nowrap;
    left: 0px;
  }

  #hero .btn-services {
    font-size: 13px;
    padding: 12px 24px;
    margin-left: 50px;
  }
}

@media (max-width: 1200px) {
  #hero .content {
    bottom: 50px;
    text-wrap: nowrap;
  }

  #hero h1 {
    font-size: 32px;
    line-height: 48px;
    margin-bottom: 10px;
  }

  #hero h2 {
    font-size: 16px;
    line-height: 24px;
    text-wrap: nowrap;
    left: 0px;
  }

  #hero .btn-services {
    font-size: 12px;
    padding: 12px 24px;
  }
}

@media (max-width: 992px) {
  #hero {
    margin-bottom: -10px;
    height: 100vh;
  }

  #hero .carousel-item img {
    height: 100vh;
    object-fit: cover;
  }

  #hero .carousel-item::before {
    height: 100vh;
  }

  #hero .carousel {
    height: 100vh;
  }

  #hero .content {
    bottom: 40px;
    text-wrap: nowrap;
  }

  #hero h1 {
    font-size: 32px;
    line-height: 48px;
    margin-bottom: 10px;
    margin-right: 0px;
  }

  #hero h2 {
    font-size: 16px;
    line-height: 24px;
    text-wrap: wrap;
    left: 0px;
    bottom: 10px;
  }

  #hero .btn-services {
    font-size: 12px;
    padding: 12px 24px;
    margin-left: 0px;
  }
}

@media (max-height: 600px) {
  #hero {
    height: 94vh;
  }
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 80px 0;
}

.section-bg {
  background-color: #f1f7fd;
}

.section-title {
  text-align: center;
  padding-bottom: 30px;
}

.section-title h2 {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
  color: #2c4964;
}

.section-title h2::before {
  content: "";
  position: absolute;
  display: block;
  width: 120px;
  height: 1px;
  background: #ddd;
  bottom: 1px;
  left: calc(50% - 60px);
}

.section-title h2::after {
  content: "";
  position: absolute;
  display: block;
  width: 40px;
  height: 3px;
  background: #003f5e;
  bottom: 0;
  left: calc(50% - 20px);
}

.section-title h4::before {
  content: "";
  position: absolute;
  display: block;
  width: 120px;
  height: 1px;
  background: #ddd;
  bottom: 1px;
  left: calc(50% - 60px);
}

.section-title h4::after {
  content: "";
  position: absolute;
  display: block;
  width: 40px;
  height: 3px;
  background: #003f5e;
  bottom: 0;
  left: calc(50% - 20px);
}

.section-title p {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  background-color: #f1f7fd;
  height: 320px;
  margin-top: 120px;
}

.breadcrumbs {
  background-image: url("./assets/img/services-bg.webp") !important;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

@media (max-width: 992px) {
  .breadcrumbs {
    margin-top: 100px;
  }
}

.breadcrumbs h2 {
  font-size: 38px;
  font-weight: 600;
  color: #fff;
  margin: 80px 0 0 0;
}

.breadcrumbs a {
  color: #fff;
}

@media (max-width: 992px) {
  .breadcrumbs h2 {
    margin: 60px 0 10px 0;
  }
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin-bottom: -80px;
  font-size: 14px;
  color: #fff !important;
}

.breadcrumbs ol li + li {
  padding-left: 10px;
}

.breadcrumbs ol li + li::before {
  display: inline-block;
  padding-right: 10px;
  color: #fff;
  content: "/";
}

@media (max-width: 768px) {
  .breadcrumbs .d-flex {
    display: block !important;
  }

  .breadcrumbs ol {
    display: block;
  }

  .breadcrumbs ol li {
    display: inline-block;
  }
}

/*--------------------------------------------------------------
# Why Us
--------------------------------------------------------------*/

#why-us {
  margin-top: 90px;
}

.why-us .container {
  position: relative;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  padding-bottom: 15px;
  background: #fff;
  padding: 10px 40px;
  border-radius: 8px;
  animation: zoomIn 2s ease forwards;
  z-index: 2;
}

@keyframes zoomIn {
  from {
    transform: scale(0);
  }
  to {
    transform: scale(1);
  }
}

.why-us .choose-box {
  width: 100%;
  padding: 20px 20px;
}

.why-us .choose-box img {
  display: block;
  font-size: 32px;
  color: #003f5e;
  float: left;
  line-height: 0;
  padding-right: 15px;
}

.why-us .choose-box h5 {
  font-size: 16px;
  line-height: 24px;
  display: block;
  font-weight: 500;
  color: #333;
  margin-left: 40px;
  position: relative;
  white-space: nowrap;
}

.why-us .choose-box span {
  font-size: 22px;
  line-height: 24px;
  display: block;
  font-weight: 700;
  color: #003f5e;
  max-width: 100%;
  white-space: nowrap;
  overflow: hidden;
}

.why-us .choose-box p {
  margin: 0 0 0 55px;
  font-size: 14px;
  color: #333333;
  letter-spacing: 0.2;
}

.circle {
  position: absolute;
  top: 20px;
  right: 0;
  transform: translateY(-50%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background-color: #006383;
  color: #fff;
  transition: background-color 0.3s;
}

.circle:hover {
  background-color: #0094c3;
  color: #fff;
}

@media (max-width: 1400px) {
  .why-us .choose-box {
    padding: 20px 0px;
  }

  .why-us .choose-box h5 {
    font-size: 14px;
    margin-left: 30px;
  }

  .why-us .choose-box span {
    font-size: 18px;
  }
}

@media (max-width: 992px) {
  #why-us {
    margin: -60px 0 0 0;
    padding-bottom: 0px;
  }
}

@media (max-width: 575px) {
  .why-us .container {
    padding: 10px 20px;
  }
}

/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/

.about {
  position: relative;
  margin-top: 180px;
  margin-bottom: 100px;
}

.about img {
  position: absolute;
  top: -480px;
  right: 0;
  margin-top: 50px;
}

.about:before {
  position: absolute;
  top: 30px;
  bottom: 0;
  left: 0;
  z-index: -1;
  width: 655px;
  height: 417px;
  background-color: #c9edff;
  content: "";
  border-top-right-radius: 189.366px;
  border-bottom-right-radius: 150px;
}

.about .counter {
  position: relative;
  top: 60px;
  background-color: #003f5e;
  border-radius: 100%;
  border: 10px solid #ffffff;
  height: 387.64px;
  width: 387.64px;
}

.about .counter img {
  position: relative;
  width: 526.49px;
  height: 564px;
  top: -248px;
}

.about .content {
  position: relative;
  margin-top: -150px;
}


.about .content h4 {
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 8px;
  color: #333;
}

.about .content h3 {
  font-size: 38px;
  font-weight: 600;
  margin-bottom: 30px;
  letter-spacing: 0.2;
  line-height: 1.4;
  color: #003f5e;
}

.about .content h2 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 20px;
  color: #003f5e;
}

.about .content p {
  font-size: 18px;
  font-weight: 400;
  color: #1e1e1e;
  letter-spacing: 0.2;
}

.about .content ul li {
  display: flex;
  margin-top: 10px;
}

.about .content ul i {
  flex-shrink: 0;
  font-size: 32px;
  color: #006383;
  margin-right: 20px;
}

.about .content ul h5 {
  font-size: 17px;
  font-weight: 700;
}

.about .content ul p {
  font-size: 15px;
}

#about .icon-boxes h4 {
  font-size: 18px;
  font-weight: 800;
  color: #333;
  margin-bottom: 15px;
}

#about .icon-boxes h3 {
  font-size: 20px;
  font-weight: 500;
  color: #333;
  margin-bottom: 15px;
}

#about .icon-boxes p {
  letter-spacing: 0.2;
  line-height: 28px;
}

.about .content ul{
  position: relative;
  list-style-type: none;
  left: -30px;
}

.about .content i{
  color: #003f5e;
  font-size: 20px;
}

#about .icon-box {
  margin-top: 40px;
}

#about .icon-box .icon {
  float: left;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border: 2px solid #91cde1;
  border-radius: 50px;
  transition: 0.5s;
}

#about .icon-box .icon i {
  color: #006383;
  font-size: 32px;
}

#about .icon-box .title {
  margin-left: 85px;
  font-weight: 700;
  font-size: 18px;
}

#about .icon-box .title a {
  font-size: 20px;
  color: #343a40;
  transition: 0.3s;
}

.about .icon-box .title a:hover {
  color: #006383;
}

#about .icon-box .description {
  margin-left: 85px;
  line-height: 24px;
  font-size: 15px;
  font-family: "Open Sans";
}

#about .video-box {
  background: url("assets/img/CEO.jpg") center center no-repeat;
  background-size: cover;
  min-height: 500px;
}

#about .play-btn {
  width: 94px;
  height: 94px;
  background: radial-gradient(#006383 50%, rgba(0, 126, 167, 0.4) 52%);
  border-radius: 50%;
  display: block;
  position: absolute;
  left: calc(50% - 47px);
  top: calc(50% - 47px);
  overflow: hidden;
}

#about .play-btn::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 100;
  transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

#about .play-btn::before {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  animation-delay: 0s;
  animation: pulsate-btn 2s;
  animation-direction: forwards;
  animation-iteration-count: infinite;
  animation-timing-function: steps;
  opacity: 1;
  border-radius: 50%;
  border: 5px solid rgba(0, 126, 167, 0.7);
  top: -15%;
  left: -15%;
  background: rgba(198, 16, 0, 0);
}

#about .play-btn:hover::after {
  border-left: 15px solid #006383;
  transform: scale(20);
}

#about .play-btn:hover::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border: none;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 200;
  animation: none;
  border-radius: 0;
}

@keyframes pulsate-btn {
  0% {
    transform: scale(0.6, 0.6);
    opacity: 1;
  }

  100% {
    transform: scale(1, 1);
    opacity: 0;
  }
}

@media (max-width: 1900px) {
  .about:before {
    width: 580px;
  }
}

@media (max-width: 1700px) {
  .about:before {
    width: 450px;
  }
}

@media (max-width: 1500px) {
  .about:before {
    width: 410px;
  }
}

@media (max-width: 1300px) {
  .about:before {
    width: 400px;
  }
}

@media (max-width: 1200px) {
  .about {
    position: relative;
    margin-top: 180px;
    margin-bottom: 100px;
  }

  .about img {
    position: absolute;
    top: -480px;
    right: 0;
    margin-top: 50px;
  }

  .about:before {
    width: 350px;
    height: 350px;
  }

  .about .counter {
    height: 320px;
    width: 320px;
  }

  .about .counter img {
    width: 440px;
    height: 471.35px;
    top: -223px;
    left: -2px;
  }

  .about .content {
    margin-top: -80px;
  }

  .about .content h4 {
    font-size: 22px;
  }

  .about .content h3 {
    font-size: 38px;
  }

  .about .content p {
    font-size: 16px;
  }
}

@media (max-width: 992px) {
  .about .content {
    margin-top: 80px;
  }
}

@media (max-width: 768px) {
  .about:before {
    width: 360px;
    height: 350px;
  }

  .about .counter {
    height: 320px;
    width: 320px;
    left: 20px;
  }

  .about .counter img {
    width: 440px;
    height: 471.35px;
    top: -224px;
    left: -2px;
  }

  .about .content h4 {
    font-size: 20px;
  }

  .about .content h3 {
    font-size: 32px;
  }

  .about .content p {
    font-size: 17px;
  }

  #about .icon-boxes p {
    padding-top: 30px;
  }

  .about img {
    height: 317.61px;
    width: 409.8px;
  }
}

@media (max-width: 578px) {
  .about:before {
    width: 350px;
    height: 260px;
  }
  #pattern {
    display: none;
  }
  .about .counter img {
    position: relative;
    width: 385px;
    height: 425.1px;
    top: -172px;
  }
}

@media (max-width: 577px) {
  .about:before {
    width: 255px;
    height: 260px;
  }

  .about .counter {
    height: 234px;
    width: 234px;
    left: 20px;
  }

  .about .counter img {
    position: relative;
    width: 320px;
    height: 353.33px;
    top: -191px;
    left: -3px;
  }
}

@media (max-width: 429px) {
  .about:before {
    width: 205px;
    height: 220px;
  }

  .about .counter {
    height: 208px;
    width: 208px;
    top: 50px;
    left: 12px;
  }

  .about .counter img {
    width: 270px;
    height: 289.35px;
    top: -152px;
  }
}

/*--------------------------------------------------------------
# Alt Features Section
--------------------------------------------------------------*/
.about .icon-box {
  display: flex;
}

.about .icon-box h4 {
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 4px 0;
}

.about .icon-box i {
  font-size: 32px;
  line-height: 44px;
  color: #007094;
  margin-right: 15px;
}

.about .icon-box p {
  font-size: 15px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/

#services {
  margin-top: 100px;
  background-color: #fafafa;
  padding: 100px 0;
}

#services h2 {
  position: relative;
  font-size: 40px;
  font-weight: 600;
  letter-spacing: 0.2;
  line-height: 28px;
  color: #003f5e;
  top: -10px;
}

#services h5 {
  font-size: 18px;
  font-weight: 400;
  font-family: "Open Sans", sans-serif;
  letter-spacing: 0.2;
  line-height: 28px;
  margin: 0 -100px;
  color: #1e1e1e;
}

#services h6 {
  position: relative;
  font-size: 22px;
  color: #333;
  top: -18px;
}

.services .title {
  font-weight: 600;
  margin-bottom: 15px;
  font-size: 18px;
  position: relative;
  padding-bottom: 10px;
}

.services .title::after {
  content: "";
  position: absolute;
  width: 75px;
  height: 3px;
  bottom: -4px;
  background: #003f5e;
  left: calc(50% - 40px);
  transition: 0s !important;
}

.services .image-box:hover .title:after {
  position: absolute;
  background: white;
  transition: 0s !important;
}

.services .image-box:active {
  background: #003f5e;
}

.services .title:hover {
  color: #fff !important;
}

#services content {
  position: relative;
  top: -100px;
}

#chevron-circles {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background-color: #fff;
  color: #006383;
  margin-left: 10px;
}

#services .btn-services {
  font-family: "Raleway", sans-serif;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 16px 30px;
  border-radius: 50px;
  transition: 0.5s;
  color: #fff;
  margin-left: 180px;
  background: #006383;
}

#services .btn-services:hover {
  background: #007ea7;
}

.services .image-box {
  text-align: center;
  background: #fff;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  border-radius: 22px;
  margin-top: 150px;
  transition: all ease-in-out 0.3s;
}

.services .image-box:hover {
  background: #003f5e;
}

.services .image-box:active {
  background: #003f5e !important;
}

.services .image-box .image {
  margin: 0 auto;
  top: -75px;
  width: 150px;
  height: 150px;
  background-size: cover;
  background-position: center;
  border-radius: 5px;
  transition: all 0.3s ease-out 0s;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transform-style: preserve-3d;
  position: relative;
  z-index: 2;
}

.services .image-box .image::before {
  position: absolute;
  content: "";
  height: 110%;
  width: 110%;
  background: #e0e6ea;
  border-radius: 100px;
  transition: all 0.3s ease-out 0s;
  transform: translateZ(-1px);
  z-index: -1;
}

.services .image-box h4 {
  font-weight: 700;
  margin-bottom: 15px;
  margin-top: -55px;
  font-size: 24px;
  color: #003f5e;
}

.services .image-box h4 a {
  color: #003f5e;
}

.services .image-box p {
  line-height: 24px;
  font-size: 15px;
  padding-top: 6px;
  margin-bottom: 40px;
  padding-left: 20px;
  padding-right: 20px;
}

.services .image-box:hover .image::before {
  background: rgba(255, 255, 255, 0.3);
}

.services .image-box:hover h4 a,
.services .image-box:hover p {
  color: #fff;
}


.team .contents ul {
  list-style: none;
  padding: 0;
}

.team .contents ul li {
  display: flex;
  align-items: flex-start;
  margin-top: 20px;
}

.team .contents ul i {
  flex-shrink: 0;
  font-size: 24px;
  color: #007094;
  margin-right: 6px;
  line-height: 0;
}

.team .contents ul h5 {
  font-size: 17px;
  font-weight: 600;
}

.team .contents ul p {
  font-size: 15px;
  margin-bottom: 0; 
}

.team .contents ul li:last-child p:last-of-type {
  margin-bottom: 20px; 
}


@media (max-width: 1400px) {
  #services .content h2 {
    padding-right: 80px;
    font-size: 34px;
  }

  #services .btn-services {
    position: relative;
    padding: 12px 24px;
    font-size: 12px;
    margin-left: 110px;
  }
}

@media (max-width: 1200px) {
  .services .image-box h5 {
    font-size: 26px;
  }
}

@media (max-width: 1024px) {
  #services .content {
    padding-left: 10px;
  }

  #services .content h2 {
    font-size: 32px;
  }

  .services .image-box::after {
    position: absolute;
  }

  #services .content h5 {
    position: relative;
    font-size: 17px;
    margin: -10px 0 !important;
    padding-bottom: 20px;
  }

  #services .content h6 {
    position: relative;
    font-size: 20px;
    top: -10px;
  }

  #services .btn-services {
    position: relative;
    padding: 12px 24px;
    font-size: 12px;
    margin-left: 0px;
  }
}




/* Sidebar
================================================== */
.sidebar .widget-title {
  font-size: 16px;
  font-weight: 700;
  position: relative;
  margin: 0 0 30px;
  padding-left: 15px;
  text-transform: uppercase;
  border-left: 3px solid #006383;
}

/* Widget common */
.sidebar .widget {
  margin-bottom: 40px;
}

.sidebar-left .widget {
  margin-right: 20px;
}

.sidebar-right .widget {
  margin-left: 20px;
}

.sidebar .widget.box {
  padding: 25px;
}

.widget.box.solid {
  background: #f2f2f2;
}

.widget.box.red {
  background: #ec483b;
  color: #fff;
}

.widget.box.red .widget-title {
  color: #fff;
}

.widget ul li {
  line-height: 30px;
}

.sidebar .widget ul li a {
  color: #303030;
  border-radius: 4px;
}

.sidebar .widget ul li a:hover {
  color: #006383;
}

.sidebar .widget ul li i {
  margin-right: 5px;
}

.sidebar .btn {
  font-weight: 700;
  font-size: 12px;
  margin-top: 15px;
  padding: 10px 25px;
}

/* Sidebar nav */
.sidebar ul.nav-tabs {
  border: 0;
  border-radius: 6px !important;
}

.sidebar ul.nav-tabs li {
  width: 100%;
}

.sidebar ul.nav-tabs li a {
  color: #303030;
  border-radius: 0;
  padding: 15px 0;
  padding-left: 0;
  font-weight: 400;
  border-bottom: 1px solid #ddd;
  display: block;
  transition: 400ms;
}

.sidebar ul.nav-tabs li.active a,
.sidebar ul.nav-tabs li:hover a {
  color: #006383;
}

.sidebar ul.nav-tabs li {
  color: #303030;
  line-height: normal;
}

.sidebar ul.nav-tabs li:last-child a {
  border-bottom: 0;
}

.gap-40 {
  clear: both;
  height: 40px;
}

/* Column title */
.column-title {
  margin: 0 0 20px 0;
}

.column-title-small {
  font-size: 20px;
  font-weight: 600;
  margin: 0 0 20px 0;
}

/* Service menu */
.sidebar ul.service-menu li {
  width: 100%;
}

.sidebar ul.service-menu li a {
  background-color: #f4f4f4;
  padding: 15px 20px;
  border: 0;
  margin-bottom: 8px;
  position: relative;
  transition: 400ms;
  display: block;
}

.sidebar ul.service-menu li.active a,
.sidebar ul.service-menu li:hover a {
  background: #006383;
  color: #fff;
  cursor: pointer;
}

/*--------------------------------------------------------------
# differentiation Section
--------------------------------------------------------------*/
.differentiation .differentiation-item {
  background-color: var(--surface-color);
  text-align: center;
  border: 1px solid #E3E3E3;
  border-radius: 16px;
  padding: 40px 30px 20px 30px;
  transition: all ease-in-out 0.3s;
  height: 100%;
}

.differentiation .differentiation-item .icon {
  margin: 0 auto;
  width: 64px;
  height: 64px;
  background: #005571;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: 0.3s;
  transform-style: preserve-3d;
}

.differentiation .differentiation-item .icon i {
  color: #fff;
  font-size: 28px;
  transition: ease-in-out 0.3s;
}


.differentiation h2 {
  position: relative;
  font-size: 40px;
  font-weight: 600;
  letter-spacing: 0.2;
  line-height: 28px;
  color: #003f5e;
}

.differentiation p {
  position: relative;
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 0.2;
  line-height: 28px;
  margin-top: -10px;
  padding-bottom: 30px;
}

.differentiation .section-title h2::before {
  display: none;
}

.differentiation .section-title h2::after {
  display: none;
}

.differentiation .differentiation-item h3 {
  font-weight: 700;
  margin: 10px 0 15px 0;
  font-size: 22px;
  padding-bottom: 8px;
  color: #003f5e;
}

.differentiation .differentiation-item p {
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Clients Section
--------------------------------------------------------------*/
.clients {
  background-color: #fafafa;
}

.clients .swiper {
  padding: 10px 0;
}

.clients h3 {
  font-size: 40px;
  font-weight: 600;
  color: #003f5e;
  margin-bottom: 20px;
  letter-spacing: 0.2;
}

.clients p {
padding-bottom: 20px;
font-size: 18px;
font-weight: 400;
color: #1e1e1e;
letter-spacing: 0.2;
line-height: 35px;
}

.clients .swiper-wrapper {
  height: auto;
}

.clients .swiper-slide img {
  transition: 0.3s;
}

.clients .swiper-slide img:hover {
  transform: scale(1.1);
}

.clients .swiper-pagination {
  margin-top: 80px;
  position: relative;
}

.clients .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: transparent;
  border: 2px solid rgba(0, 99, 131, 0.5);
  opacity: 1;
}

.clients .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #003f5e;
  border: none;
}


/*--------------------------------------------------------------
# Mission/Vission
--------------------------------------------------------------*/

.vision .container {
  box-shadow: 0 5px 25px 0 rgba(214, 215, 216, 0.6);
  background: #fff;
  border-radius: 8px;
}

.vision .icon-box + .icon-box {
  margin-top: 50px;
}

.vision .icon-box .icon {
  float: left;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  background: #f3f8fa;
  border-radius: 6px;
  transition: 0.5s;
}

.vision .icon-box .icon i {
  color: #006383;
  font-size: 32px;
}

.vision .icon-box .title {
  margin-left: 95px;
  font-weight: 700;
  margin-bottom: 10px;
  font-size: 24px;
}

.vision .icon-box .title a {
  color: #343a40;
  transition: 0.3s;
}

.vision .icon-box .title a:hover {
  color: #68a4c4;
}

.vision .icon-box .description {
  margin-left: 95px;
  letter-spacing: 0.2;
  line-height: 28px;
  font-size: 16px;
}

.vision .video-box {
  position: relative;
}

.vision .video-box img {
  padding-top: 15px;
  padding-bottom: 15px;
}

.vision .play-btn {
  width: 94px;
  height: 94px;
  background: radial-gradient(#006383 50%, rgba(0, 126, 167, 0.3) 52%);
  border-radius: 50%;
  display: block;
  position: absolute;
  left: calc(50% - 47px);
  top: calc(50% - 47px);
  overflow: hidden;
}

.vision .play-btn::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 100;
  transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.vision .play-btn::before {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  animation-delay: 0s;
  animation: pulsate-btn 2s;
  animation-direction: forwards;
  animation-iteration-count: infinite;
  animation-timing-function: steps;
  opacity: 1;
  border-radius: 50%;
  border: 5px solid rgba(0, 126, 167, 0.7);
  top: -15%;
  left: -15%;
  background: rgba(198, 16, 0, 0);
}

.vision .play-btn:hover::after {
  border-left: 15px solid #006383;
  transform: scale(20);
}

.vision .play-btn:hover::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border: none;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 200;
  animation: none;
  border-radius: 0;
}

@keyframes pulsate-btn {
  0% {
    transform: scale(0.6, 0.6);
    opacity: 1;
  }

  100% {
    transform: scale(1, 1);
    opacity: 0;
  }
}

/*--------------------------------------------------------------
# Blog Posts Section
--------------------------------------------------------------*/
.blog-posts article {
  background-color: var(--surface-color);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  padding: 30px;
  height: 100%;
}

.blog-posts .gy-4 {
  --bs-gutter-y: 0rem !important;
  --bs-gutter-x: 0rem !important;
}


.blog-posts .post-img {
  max-height: 579px;
  margin: -30px -30px 0 -30px;
  overflow: hidden;
}

.blog-posts .title {
  font-size: 24px;
  font-weight: 700;
  padding: 0;
  margin: 30px 0;
}

#post-container {
  display: block !important;
}

.blog-posts .title a {
  color: var(--heading-color);
  transition: 0.3s;
}

.blog-posts .title a:hover {
  color: #0082ac;
}

.blog-posts .meta-top {
  margin-top: 20px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.blog-posts .meta-top ul {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  align-items: center;
  padding: 0;
  margin: 0;
}

.blog-posts .meta-top ul li+li {
  padding-left: 20px;
}

.blog-posts .meta-top i {
  font-size: 16px;
  margin-right: 8px;
  line-height: 0;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.blog-posts .meta-top a {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-size: 14px;
  display: inline-block;
  line-height: 1;
}

.blog-posts .content {
  margin-top: 20px;
}


.blog-posts .content .read-more {
  text-align: right;
}

.blog-posts .content .read-more a {
  background: #006383;
  color: #ffffff;
  display: inline-block;
  padding: 8px 30px;
  transition: 0.3s;
  font-size: 14px;
  border-radius: 4px;
}

.blog-posts .content .read-more a:hover {
  background: #0082ac;
}

/*--------------------------------------------------------------
# Blog Pagination Section
--------------------------------------------------------------*/
#blog-pagination {
  margin-bottom: 80px;
}

.blog-pagination {
  padding-top: 0;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.blog-pagination ul {
  display: flex;
  padding: 0;
  margin: 0;
  list-style: none;
}

.blog-pagination li {
  margin: 0 5px;
  transition: 0.3s;
}

.blog-pagination li a {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  padding: 7px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.blog-pagination li a.active,
.blog-pagination li a:hover {
  background: #006383;
  color: #ffffff;
}

.blog-pagination li a.active a,
.blog-pagination li a:hover a {
  color: var(--contrast-color);
}

#pagination-container li.active a {
  background: #006383;
  color: #ffffff;
}

#pagination-container li.disabled a {
  pointer-events: none;
  opacity: 0.5;
}

/*--------------------------------------------------------------
# Blog Details Section
--------------------------------------------------------------*/
.blog-details {
  padding-bottom: 120px;
}

.blog-details .article {
  background-color: var(--surface-color);
  padding: 30px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.blog-details .post-img {
  margin: -30px -30px 20px -30px;
  overflow: hidden;
}

.blog-details .title {
  color: var(--heading-color);
  font-size: 28px;
  font-weight: 700;
  padding: 0;
  margin: 30px 0;
}

.blog-details .content {
  margin-top: 20px;
}

.blog-details .content h3 {
  font-size: 22px;
  margin-top: 30px;
  font-weight: bold;
}

.blog-details .content blockquote {
  overflow: hidden;
  background-color: color-mix(in srgb, var(--default-color), transparent 95%);
  padding: 60px;
  position: relative;
  text-align: center;
  margin: 20px 0;
}

.blog-details .content blockquote p {
  color: var(--default-color);
  line-height: 1.6;
  margin-bottom: 0;
  font-style: italic;
  font-weight: 500;
  font-size: 22px;
}

.blog-details .content blockquote:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background-color: var(--accent-color);
  margin-top: 20px;
  margin-bottom: 20px;
}

.blog-details .meta-top {
  margin-top: 20px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.blog-details .meta-top ul {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  align-items: center;
  padding: 0;
  margin: 0;
}

.blog-details .meta-top ul li+li {
  padding-left: 20px;
}

.blog-details .meta-top i {
  font-size: 16px;
  margin-right: 8px;
  line-height: 0;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.blog-details .meta-top a {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-size: 14px;
  display: inline-block;
  line-height: 1;
}

.blog-details .meta-bottom {
  padding-top: 10px;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.blog-details .meta-bottom i {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  display: inline;
}

.blog-details .meta-bottom a {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  transition: 0.3s;
}

.blog-details .meta-bottom a:hover {
  color: var(--accent-color);
}

.blog-details .meta-bottom .cats {
  list-style: none;
  display: inline;
  padding: 0 20px 0 0;
  font-size: 14px;
}

.blog-details .meta-bottom .cats li {
  display: inline-block;
}

.blog-details .meta-bottom .tags {
  list-style: none;
  display: inline;
  padding: 0;
  font-size: 14px;
}

.blog-details .meta-bottom .tags li {
  display: inline-block;
}

.blog-details .meta-bottom .tags li+li::before {
  padding-right: 6px;
  color: var(--default-color);
  content: ",";
}

.blog-details .meta-bottom .share {
  font-size: 16px;
}

.blog-details .meta-bottom .share i {
  padding-left: 5px;
}

/*--------------------------------------------------------------
# Blog Author Section
--------------------------------------------------------------*/
.blog-author {
  padding: 10px 0 40px 0;
}

.blog-author .author-container {
  background-color: var(--surface-color);
  padding: 20px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.blog-author img {
  max-width: 120px;
  margin-right: 20px;
}

.blog-author h4 {
  font-weight: 600;
  font-size: 20px;
  margin-bottom: 0px;
  padding: 0;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.blog-author .social-links {
  margin: 0 10px 10px 0;
}

.blog-author .social-links a {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
  margin-right: 5px;
}

.blog-author p {
  font-style: italic;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Blog Comments Section
--------------------------------------------------------------*/
.blog-comments {
  padding: 10px 0;
}

.blog-comments .comments-count {
  font-weight: bold;
}

.blog-comments .comment {
  margin-top: 30px;
  position: relative;
}

.blog-comments .comment .comment-img {
  margin-right: 14px;
}

.blog-comments .comment .comment-img img {
  width: 60px;
}

.blog-comments .comment h5 {
  font-size: 16px;
  margin-bottom: 2px;
}

.blog-comments .comment h5 a {
  font-weight: bold;
  color: var(--default-color);
  transition: 0.3s;
}

.blog-comments .comment h5 a:hover {
  color: var(--accent-color);
}

.blog-comments .comment h5 .reply {
  padding-left: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.blog-comments .comment h5 .reply i {
  font-size: 20px;
}

.blog-comments .comment time {
  display: block;
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin-bottom: 5px;
}

.blog-comments .comment.comment-reply {
  padding-left: 40px;
}

/*--------------------------------------------------------------
# Comment Form Section
--------------------------------------------------------------*/
.comment-form {
  padding-top: 10px;
}

.comment-form form {
  background-color: var(--surface-color);
  margin-top: 30px;
  padding: 30px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.comment-form form h4 {
  font-weight: bold;
  font-size: 22px;
}

.comment-form form p {
  font-size: 14px;
}

.comment-form form input {
  background-color: var(--surface-color);
  color: var(--default-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 70%);
  font-size: 14px;
  border-radius: 4px;
  padding: 10px 10px;
}

.comment-form form input:focus {
  color: var(--default-color);
  background-color: var(--surface-color);
  box-shadow: none;
  border-color: var(--accent-color);
}

.comment-form form input::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

.comment-form form textarea {
  background-color: var(--surface-color);
  color: var(--default-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 70%);
  border-radius: 4px;
  padding: 10px 10px;
  font-size: 14px;
  height: 120px;
}

.comment-form form textarea:focus {
  color: var(--default-color);
  box-shadow: none;
  border-color: var(--accent-color);
  background-color: var(--surface-color);
}

.comment-form form textarea::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

.comment-form form .form-group {
  margin-bottom: 25px;
}

.comment-form form .btn-primary {
  border-radius: 4px;
  padding: 10px 20px;
  border: 0;
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

.comment-form form .btn-primary:hover {
  color: var(--contrast-color);
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
}

/*--------------------------------------------------------------
# Widgets
--------------------------------------------------------------*/
.widgets-container {
  background-color: var(--surface-color);
  padding: 30px;
  margin: 80px 0 120px 0;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.widget-title {
  color: var(--heading-color);
  font-size: 20px;
  font-weight: 700;
  padding: 0;
  margin: 0 0 20px 0;
}

.widget-item {
  margin-bottom: 40px;
}

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

.search-widget form {
  background: var(--background-color);
  border: 1px solid #c4c4c4;
  padding: 3px 10px;
  position: relative;
  transition: 0.3s;
}

.search-widget form input[type=text] {
  border: 0;
  padding: 4px;
  border-radius: 4px;
  width: calc(100% - 40px);
  background-color: var(--background-color);
  color: var(--default-color);
}

.search-widget form input[type=text]:focus {
  outline: none;
}
.search-widget form button {
  background: #006383;
  color: var(--contrast-color);
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  border: 0;
  font-size: 16px;
  padding: 0 15px;
  margin: -1px;
  transition: 0.3s;
  border-radius: 0 4px 4px 0;
  line-height: 0;
}

.search-widget form button i {
  line-height: 0;
  color: #ffffff;
}

.search-widget form button:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

.search-widget form:is(:focus-within) {
  border-color: #006383;
}

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

.categories-widget ul li {
  padding-bottom: 10px;
}

.categories-widget ul li i {
  color: #006383;
}



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

.categories-widget ul a {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  transition: 0.3s;
}

.categories-widget ul a:hover {
  color: #0082ac;
}

.categories-widget ul a span {
  padding-left: 5px;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 14px;
}





.recent-posts-widget .post-item {
  display: flex;
  margin-bottom: 15px;
}

.recent-posts-widget .post-item:last-child {
  margin-bottom: 0;
}

.recent-posts-widget .post-item img {
  width: 80px;
  margin-right: 15px;
}

.recent-posts-widget .post-item h4 {
  font-size: 15px;
  font-weight: bold;
  margin-bottom: 5px;
}

.recent-posts-widget .post-item h4 a {
  color: var(--default-color);
  transition: 0.3s;
}

.recent-posts-widget .post-item h4 a:hover {
  color: var(--accent-color);
}

.recent-posts-widget .post-item time {
  display: block;
  font-style: italic;
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

.tags-widget {
  margin-bottom: -10px;
}

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

.tags-widget ul li {
  display: inline-block;
}

.tags-widget ul a {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 14px;
  padding: 6px 14px;
  margin: 0 6px 8px 0;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 60%);
  display: inline-block;
  transition: 0.3s;
}

.tags-widget ul a:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
  border: 1px solid var(--accent-color);
}

.tags-widget ul a span {
  padding-left: 5px;
  color: color-mix(in srgb, var(--default-color), transparent 60%);
  font-size: 14px;
}

/*--------------------------------------------------------------
# Career
--------------------------------------------------------------*/
#career {
  margin-top: 20px;
  margin-bottom: 100px;
  background-color: #fff !important;
}

.careerDetails .php-email-form {
  width: 100%;
  background: #fff;
}

.careerDetails.php-email-form .form-group {
  padding-bottom: 8px;
}

.careerDetails .php-email-form .error-message {
  display: none;
  color: #fff;
  background: #ed3c0d;
  text-align: left;
  padding: 15px;
  font-weight: 600;
}

.careerDetails .php-email-form .error-message br + br {
  margin-top: 25px;
}

.careerDetails .php-email-form .sent-message {
  display: none;
  color: #fff;
  background: #18d26e;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}

.careerDetails .php-email-form .loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px;
}

.careerDetails .php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #18d26e;
  border-top-color: #eee;
  animation: animate-loading 1s linear infinite;
}

.careerDetails .php-email-form input,
.careerDetails .php-email-form textarea {
  border-radius: 0;
  box-shadow: none;
  font-size: 14px;
}

.careerDetails .php-email-form input {
  height: auto;
}

.careerDetails .php-email-form select {
  height: 44px;
  border-radius: 0;
  font-size: 14px;
}

.careerDetails .php-email-form textarea {
  padding: 10px 12px;
}

.careerDetails .php-email-form button[type="submit"] {
  background: #003f5e;
  border: 0;
  padding: 10px 30px;
  color: #fff;
  transition: 0.4s;
  border-radius: 50px;
}

.careerDetails .php-email-form button[type="submit"]:hover {
  background: #0082ac;
}

.job-item {
  border: 1px solid transparent;
  border-radius: 2px;
  box-shadow: 0 0 45px rgba(0, 0, 0, 0.08);
  transition: 0.5s;
}

.job-item h5 {
  font-weight: 600;
}

.job-item:hover {
  border-color: rgba(0, 0, 0, 0.08);
  box-shadow: none;
}

.search {
  background-color: #003f5e;
}

.btn-search {
  background-color: #006383;
  color: #fff;
}

.btn-search:hover {
  background-color: #0082ac;
  color: #fff;
}

.btn-job {
  padding: 6px 12px;
  text-align: center;
  border: none;
  border-radius: 6px;
  background-color: #006383;
  color: #fff;
}

.btn-job:hover {
  background-color: #0082ac;
  color: #fff;
}

.btn-square {
  border-radius: 6px;
  border: #007094;
  background-color: #cbdfe6;
}

.btn-square:hover {
  background-color: #b4dfee;
  color: #fff;
}

.btn-square.clicked {
  background-color: #3293b2;
  color: white;
}

.fa-heart.clicked {
  color: #ffffff !important;
}

.text-start i {
  color: #007094;
}

.text-start i:hover {
  color: #fff;
}

@media (max-width: 768px) {
  #career {
    margin-bottom: 60px;
  }
}

/*--------------------------------------------------------------
# Job Details
--------------------------------------------------------------*/
#job-title h3 {
  font-size: 24;
  font-weight: 700;
  color: #333;
}

.job-item i {
  color: #006383 !important;
}

#job-title i {
  color: #006383 !important;
}

#job-info h4 {
  font-size: 22;
  font-weight: 700;
  color: #333;
}

#job-info i {
  color: #006383 !important;
}

#job-summary {
  background: #b4dfee !important;
}

#job-summary h4 {
  font-size: 22;
  font-weight: 700;
  color: #333;
}

#job-summary p {
  color: 11ee1e;
}

#job-summary i {
  color: #006383 !important;
}

#company-detail {
  background: #b4dfee !important;
}

#company-detail h4 {
  font-size: 22;
  font-weight: 700;
  color: #333;
}

#company-detail p {
  color: 11ee1e;
}

#btn-apply {
  border: none;
  background: #006383 !important;
  color: #fff;
}

#btn-apply:hover {
  border: none;
  background: #0082ac !important;
  color: #fff;
}

/*--------------------------------------------------------------
# Newsletter
--------------------------------------------------------------*/
#newsletter {
  margin-bottom: 70px;
  background-color: #f9f9f9 !important;
}

#newsletter .section-title p {
  padding: 0 160px;
}

@media (max-width: 992px) {
  #newsletter .section-title p {
    padding: 20px 20px !important;
  }
}

/*--------------------------------------------------------------
# Our Team
--------------------------------------------------------------*/
#team {
  margin-bottom: 70px;
  background-color: #f9f9f9 !important;
}

#team .section-title {
  padding-bottom: 60px;
}

.team .member {
  padding-left: 0px !important;
  margin-bottom: 20px;
  overflow: hidden;
  text-align: center;
  border-radius: 4px;
  background: #fff;
  box-shadow: 0px 2px 15px rgba(18, 66, 101, 0.08);
}

.team .member .member-img {
  position: relative;
  overflow: hidden;
}

.team .member .member-info {
  padding: 25px 15px;
}

.team .member .member-info h4 {
  font-weight: 700;
  margin-bottom: 5px;
  font-size: 18px;
  color: #124265;
}

.team .member .member-info span {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: #aaaaaa;
}

.team .member .member-info p {
  font-style: italic;
  font-size: 14px;
  line-height: 26px;
  color: #777777;
}

/*--------------------------------------------------------------
# FAQs
--------------------------------------------------------------*/
#who {
  background-color: #fbfbfb;
  margin-bottom: 60px;
}

#who .section-title p {
  padding: 20px 150px;
}

.who .who-list {
  padding: 0 10px;
}

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

.who .who-list li + li {
  margin-top: 15px;
}

.who .who-list li {
  padding: 20px;
  background: #f1f7fd;
  border-radius: 4px;
  position: relative;
}

.who .who-list a {
  display: block;
  position: relative;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  padding: 0 30px;
  outline: none;
  cursor: pointer;
}

.who .who-list .icon-help {
  font-size: 24px;
  position: absolute;
  right: 0;
  left: 20px;
  color: #006383;
}

.who .who-list .icon-show,
.who .who-list .icon-close {
  font-size: 24px;
  position: absolute;
  right: 0;
  top: 0;
}

.who .who-list p {
  margin-bottom: 0;
  padding: 10px 5px 0 30px;
  font-size: 15px;
  font-weight: 400;
}

.who .who-list .icon-show {
  display: none;
}

.who .who-list a.collapsed {
  color: #343a40;
}

.who .who-list a.collapsed:hover {
  color: #006383;
}

.who .who-list a.collapsed .icon-show {
  display: inline-block;
}

.who .who-list a.collapsed .icon-close {
  display: none;
}

@media (max-width: 1200px) {
  .who .who-list {
    padding: 0;
  }
}

@media (max-width: 992px) {
  #who .section-title p {
    padding: 20px 20px;
  }
}

@media (max-width: 575px) {
  .vision {
    padding-bottom: 60px;
  }
}

/*--------------------------------------------------------------
# Privacy
--------------------------------------------------------------*/
#privacy {
  padding: 60 0 100px 0 !important;
}

#privacy  h3 {
  position: relative;
  font-size: 32px;
  font-weight: 700;
  letter-spacing: 0.2;
  line-height: 28px;
  color: #003f5e;
  padding-top: 30px;
  padding-bottom: 10px;
}

.privacy .privacy-item h2 {
  position: relative;
  font-size: 28px;
  font-weight: 700;
  letter-spacing: 0.2;
  line-height: 28px;
  color: #006383;
  padding-top: 30px;
  padding-bottom: 10px;
}

.privacy .privacy-item p {
  position: relative;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.2;
  line-height: 28px;
  margin-top: -10px;
  padding-bottom: 16px;
}


/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
#contact {
  padding: 0 0 60px 0 !important;
  margin-top: -30px !important;
  overflow: hidden;
}

.contact .info {
  position: relative;
  width: 100%;
  background: #fff;
}

.contact .info i {
  font-size: 20px;
  color: #003f5e;
  float: left;
  width: 44px;
  height: 44px;
  background: #cbdfe6;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
}

.contact .info h4 {
  padding: 0 0 4px 60px;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 5px;
  color: #2c4964;
}

.contact .info p {
  padding: 0 20px 0 60px;
  margin-bottom: 8px;
  font-size: 14px;
  color: #4b7dab;
}

.contact .info a {
  padding: 0 20px 0 0px;
  margin-bottom: 0;
  font-size: 14px;
  color: #4b7dab;
}

.contact .info .address1,
.contact .info .email,
.contact .info .telephone {
  margin-top: 40px;
}

.contact .php-email-form {
  width: 100%;
  background: #fff;
}

.contact .php-email-form .form-group {
  padding-bottom: 8px;
}

.contact .php-email-form .error-message {
  display: none;
  color: #fff;
  background: #ed3c0d;
  text-align: left;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .error-message br + br {
  margin-top: 25px;
}

.contact .php-email-form .sent-message {
  display: none;
  color: #fff;
  background: #18d26e;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px;
}

.contact .php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #18d26e;
  border-top-color: #eee;
  animation: animate-loading 1s linear infinite;
}

.contact .php-email-form input,
.contact .php-email-form textarea {
  border-radius: 0;
  box-shadow: none;
  font-size: 14px;
}

.contact .php-email-form input {
  height: 44px;
}

.contact .php-email-form select {
  height: 44px;
  border-radius: 0;
  font-size: 14px;
}

.contact .php-email-form textarea {
  padding: 10px 12px;
}

.contact .php-email-form button[type="submit"] {
  background: #003f5e;
  border: 0;
  padding: 10px 30px;
  color: #fff;
  transition: 0.4s;
  border-radius: 50px;
}

.contact .php-email-form button[type="submit"]:hover {
  background: #0082ac;
}

.contact .map {
  position: relative;
  margin-bottom: 100px;
}

@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  color: #444444;
  font-size: 14px;
  background: #003048;
  margin-top: -66px;
}

#footer .footer-top {
  padding: 60px 0 30px 0;
  background: #003f5e;
  box-shadow: 0px 2px 15px rgba(25, 119, 204, 0.1);
}

#footer .footer-top .footer-contact {
  margin-bottom: 30px;
  padding: 0 0 0 12px;
}

#footer .footer-top .space {
  padding: 0px !important;
}

#footer .footer-top .footer-contact h4 {
  font-size: 20px;
  margin: 0 0 15px 0;
  padding: 2px 0 2px 0;
  line-height: 1;
  font-weight: 700;
  color: #fff;
}

#footer .footer-top .footer-contact p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
  font-family: "Raleway", sans-serif;
  color: #fafafa;
}

#footer .footer-top h4 {
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  position: relative;
  padding-bottom: 12px;
}

#footer .footer-top .footer-links {
  margin-bottom: 30px;
}

#footer .footer-top .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

#footer .footer-top .footer-links ul i {
  padding-right: 0px;
  color: #fff;
  font-size: 18px;
  line-height: 1;
}

#footer .footer-top .footer-links ul li {
  padding: 11px 0;
  display: flex;
  align-items: center;
}

#footer .footer-top .footer-links .d-flex:hover a {
  color: #00b5ef;
}

#footer .footer-top .footer-links .d-flex:hover i {
  color: #00b5ef;
}

#footer .footer-top .footer-links ul li:first-child {
  padding-top: 0;
}

#footer .footer-top .footer-links ul a {
  color: #fafafa;
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}

#footer .footer-top .footer-links ul a:hover {
  text-decoration: none;
  color: #0094c3;
}

@media (min-width: 743px) and (max-width: 1024px) {
  .footer-contact,
  .footer-links {
    flex: 0 0 100%;
    max-width: 100%;
  }
}

.copyright {
  color: #fff;
  font-weight: 100;
}

@media (max-width: 992px) {
  .copyright {
    font-size: 14px;
  }
}
@media (max-width: 743px) {
  .copyright span {
    display: block;
  }
}
