@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");
ul, ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

a {
  cursor: pointer;
}

a, img {
  text-decoration: none !important;
  transition: 0.3s all ease-in-out;
}

* {
  margin: 0;
  padding: 0;
}

:focus {
  outline: none !important;
}

html {
  font-size: 16px;
}

p {
  line-height: 28px;
}

body {
  font-family: "Inter", sans-serif;
  font-size: 16px;
  line-height: 20px;
  font-weight: 300;
  background: #FFF;
  -moz-osx-font-smoothing: grayscale;
  word-break: break-word;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden !important;
}

/* Preloader
-----------------------------------------------------------------*/
body.loaded {
  overflow: hidden !important;
  height: 100% !important;
}

.closeBtn {
  right: 10px;
  top: 14px;
  position: absolute;
  width: 40px;
  height: 40px;
  border-radius: 6px;
  border: none;
}

.offcanvas1 {
  position: fixed;
  top: 0;
  left: -280px;
  width: 280px;
  height: 100%;
  background: #FFF;
  transition: left 0.3s ease;
  z-index: 1002;
  padding: 20px;
  overflow: auto;
}
.offcanvas1 .mb-logo {
  width: 100%;
  margin-bottom: 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid #efefef;
}
.offcanvas1 .mb-logo img {
  width: 120px;
}

/* Mobile menu container */
.mobile-menu {
  width: 100%;
}
.mobile-menu li {
  border-bottom: 1px solid #efefef;
}
.mobile-menu li:last-child {
  border-bottom: none;
}

/* Menu list */
.mobile-menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

/* Main links */
.mobile-menu a,
.submenu-toggle {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 15px 0px;
  text-decoration: none;
  color: #333;
  font-size: 16px;
  background: none;
  border: none;
  cursor: pointer;
  font-weight: 400;
}

/* Sub menu */
.submenu {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.submenu a {
  padding: 12px 30px;
  font-size: 14px;
}

/* Open state */
.submenu.open {
  max-height: 300px;
}

.arrow {
  font-size: 18px;
  transition: transform 0.3s ease;
}

.submenu.open + .arrow {
  transform: rotate(45deg);
}

.offcanvas1.active {
  left: 0;
}

/* Overlay */
.overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease;
  z-index: 1001;
  backdrop-filter: blur(9px);
}

.overlay.active {
  opacity: 1;
  visibility: visible;
}

/* Page content */
.page-content {
  transition: transform 0.3s ease;
}

.page-content.active {
  transform: translateX(280px);
}

.loader-wrap {
  position: fixed;
  z-index: 10;
  height: 100vh;
  width: 100%;
  left: 0;
  top: 0;
  display: flex;
  overflow: hidden;
  align-items: center;
  justify-content: center;
  background: transparent;
  z-index: 99999999999999;
}

.menu-open {
  overflow: hidden;
}

.loader-wrap svg {
  position: absolute;
  top: 0;
  width: 100vw;
  height: 110vh;
  fill: #FFF;
}

.loader-wrap .loader-wrap-heading .load-text {
  font-size: 60px;
  font-weight: 200;
  letter-spacing: 5px;
  text-transform: uppercase;
  z-index: 20;
}

.load-text span {
  animation: loading 0.1s infinite alternate;
}

.load-text img {
  width: 200px;
}

.progress-wrap {
  position: fixed;
  bottom: 30px;
  right: 15px;
  height: 44px;
  width: 44px;
  cursor: pointer;
  display: block;
  border-radius: 50px;
  z-index: 100;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 400ms linear;
  background-color: #FFF;
}

.progress-wrap.active-progress {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.progress-wrap::after {
  position: absolute;
  font-family: "Font Awesome 5 Free";
  content: "\f077";
  text-align: center;
  line-height: 44px;
  font-size: 13px;
  font-weight: 900;
  color: #123155;
  left: 0;
  top: 0;
  height: 44px;
  width: 44px;
  cursor: pointer;
  display: block;
  z-index: 1;
  transition: all 400ms linear;
}

.progress-wrap svg path {
  fill: none;
}

.progress-wrap svg.progress-circle path {
  stroke: #123155;
  stroke-width: 4;
  box-sizing: border-box;
  transition: all 400ms linear;
}

@keyframes loading {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}
/* ====================== [ Start overlay1 ] ====================== */
[data-overlay-dark],
[data-overlay-light] {
  position: relative;
}

[data-overlay-dark] .container,
[data-overlay-dark] .container-xxl,
[data-overlay-light] .container-xxl,
[data-overlay-light] .container {
  position: relative;
  z-index: 7;
}

[data-overlay-dark]:before,
[data-overlay-light]:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1;
  pointer-events: none;
}

[data-overlay-dark]:before {
  background: #fff;
}

[data-overlay-light]:before {
  background: #fff;
}

[data-overlay-dark],
[data-overlay-dark] h1,
[data-overlay-dark] h2,
[data-overlay-dark] h3,
[data-overlay-dark] h4,
[data-overlay-dark] h5,
[data-overlay-dark] h6,
[data-overlay-dark] span,
.bg-dark h1,
.bg-dark h2,
.bg-dark h3,
.bg-dark h4,
.bg-dark h5,
.bg-dark h6,
.bg-dark span,
.bg-color h1,
.bg-color h2,
.bg-color h3,
.bg-color h4,
.bg-color h5,
.bg-color h6,
.bg-color span {
  color: #fff;
}

[data-overlay-dark="0"]:before,
[data-overlay-light="0"]:before {
  opacity: 0;
}

[data-overlay-dark="1"]:before,
[data-overlay-light="1"]:before {
  opacity: 0.1;
}

[data-overlay-dark="2"]:before,
[data-overlay-light="2"]:before {
  opacity: 0.2;
}

[data-overlay-dark="3"]:before,
[data-overlay-light="3"]:before {
  opacity: 0.3;
}

[data-overlay-dark="4"]:before,
[data-overlay-light="4"]:before {
  opacity: 0.4;
}

[data-overlay-dark="5"]:before,
[data-overlay-light="5"]:before {
  opacity: 0.5;
}

[data-overlay-dark="6"]:before,
[data-overlay-light="6"]:before {
  opacity: 0.6;
}

[data-overlay-dark="7"]:before,
[data-overlay-light="7"]:before {
  opacity: 0.7;
}

[data-overlay-dark="8"]:before,
[data-overlay-light="8"]:before {
  opacity: 0.8;
}

[data-overlay-dark="9"]:before,
[data-overlay-light="9"]:before,
[data-overlay-color="9"]:before {
  opacity: 0.9;
}

[data-overlay-dark="10"]:before,
[data-overlay-light="10"]:before {
  opacity: 1;
}

/* ====================== [ End Overlay ] ====================== */
.carousel-dark .carousel-indicators [data-bs-target] {
  background-color: #123155;
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translate3d(0, 30%, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
.fadeInUp {
  animation-name: fadeInUp;
}
@keyframes fadeInUp2 {
  from {
    opacity: 0;
    transform: translate3d(0, 100%, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
.fadeInUp {
  animation-name: fadeInUp2;
}

.overlay1 {
  height: 0%;
  width: 100%;
  position: fixed;
  z-index: 9999;
  top: 0;
  left: 0;
  background-color: #123155;
  background-color: #123155;
  overflow-y: hidden;
  transition: 0.5s;
  background-image: url(../images/banner-overlay.svg);
  background-repeat: repeat-x;
  background-position: bottom left;
  background-size: 620px;
}

.overlay-content {
  position: relative;
  text-align: center;
  margin-top: 30px;
  padding-left: 30px;
}
.overlay-content a {
  margin-bottom: 10px;
  color: #FFF;
  display: block;
  text-align: left;
  font-size: 18px;
}

.overlay a:hover, .overlay a:focus {
  color: #f1f1f1;
}

.overlay1 .closebtn {
  background-color: #2FAECF;
  border: 1px solid #2EC7EF;
  padding: 2px 15px 2px 6px;
  font-size: 16px;
  display: flex;
  align-items: center;
  border-radius: 35px;
  color: #FFF;
}

header {
  width: 100%;
  padding: 30px;
  position: absolute;
  left: 0;
  top: 0;
}
header .desktop-nav {
  width: 100%;
  background-color: #123155;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
header .desktop-nav .left {
  display: flex;
  align-items: center;
}
header .desktop-nav .left .logo {
  padding: 20px 17px 20px 10px;
}
header .desktop-nav .left .logo img {
  filter: brightness(0) invert(1);
}
header .desktop-nav .left .h-contact {
  padding: 17px;
  display: flex;
  border-left: 1px solid #245286;
  border-right: 1px solid #245286;
}
header .desktop-nav .left .h-contact .icon {
  width: 45px;
  height: 45px;
  background-image: url(../images/shape-1.svg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
header .desktop-nav .left .h-contact .content {
  padding-left: 12px;
}
header .desktop-nav .left .h-contact .content p {
  font-size: 14px;
  margin-bottom: 0px;
}
header .desktop-nav .left .h-contact .content p span {
  color: #52BFEA;
}
header .desktop-nav .left .h-contact .content h4 {
  font-size: 18px;
  color: #FFF;
  margin: 0;
}
header .desktop-nav .left .h-contact .content h4 a {
  color: #FFF;
}
header .desktop-nav .left .nav {
  padding-left: 20px;
}
header .desktop-nav .left .nav li a {
  padding: 0px 15px;
  color: #98C3F6;
  font-size: 16px;
}
header .desktop-nav .left .nav li a:hover {
  color: #FFF;
}
header .desktop-nav .left .nav li.active a {
  color: #FFF;
  font-weight: 600;
}
header .desktop-nav .right {
  display: flex;
  align-items: center;
  padding-right: 10px;
}
header .desktop-nav .right a {
  height: 58px;
  padding: 20px 61px 20px 27px;
  display: inline-block;
  background-color: #FFF;
  border-radius: 50px;
  color: #123155;
  position: relative;
  font-weight: 400;
}
header .desktop-nav .right a span {
  width: 45px;
  height: 45px;
  background-color: #52BFEA;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  position: absolute;
  right: 5px;
  top: 7px;
  transition: 0.3s all ease-in-out;
}
header .desktop-nav .right a:hover span {
  transform: rotate(45deg);
}
header .desktop-nav .right .mobile-nav {
  width: 55px;
  height: 55px;
  background-image: url(../images/shape-1.svg);
  background-size: 100% 100%;
  background-position: center center;
  background-repeat: no-repeat;
  display: none;
  justify-content: center;
  align-items: center;
}

.mobile-contact {
  display: flex;
  align-items: center;
  background-color: #123155;
  border-radius: 10px;
  margin-top: 30px;
  padding: 10px;
}
.mobile-contact .icon {
  width: 45px;
  height: 45px;
  background-image: url(../images/shape-1.svg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.mobile-contact .content {
  padding-left: 12px;
}
.mobile-contact .content p {
  font-size: 14px;
  margin-bottom: 0px;
  line-height: normal;
}
.mobile-contact .content p span {
  color: #52BFEA;
}
.mobile-contact .content h4 {
  font-size: 18px;
  color: #FFF;
  margin: 0;
  line-height: 2px;
}
.mobile-contact .content h4 a {
  color: #FFF;
}

.hero-slider {
  position: relative;
  z-index: -1;
  padding: 10px;
}
.hero-slider .timimg-sec {
  position: absolute;
  right: 10px;
  bottom: 9px;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 16px;
  padding-right: 160px;
  padding-top: 35px;
  padding-bottom: 22px;
  padding-left: 50px;
}
.hero-slider .timimg-sec .icon {
  width: 54px;
  height: 54px;
  background-color: #52BFEA;
  display: flex;
  justify-content: center;
  border-radius: 6px;
  padding: 15px;
}
.hero-slider .timimg-sec .content p {
  margin: 0;
  font-weight: 600;
  color: #123155;
}
.hero-slider .timimg-sec .bg-shape {
  position: absolute;
  bottom: 0;
  right: 0px;
  z-index: -1;
  width: 100%;
  height: 100%;
}
.hero-slider .timimg-sec:hover .icon img {
  animation: fd-bounce-2 1s;
}

@keyframes fd-bounce-2 {
  0%, 100%, 20%, 50%, 80% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-5px);
  }
  60% {
    transform: translateY(-2.5px);
  }
}
.slick-slide {
  border-radius: 20px;
  overflow: hidden;
}

/*-- Hero Slider Content Animation --*/
.hero-slider-content > * {
  animation-duration: 1s;
  animation-fill-mode: both;
  animation-name: fadeOutUp;
}

.slick-active .hero-slider-content > * {
  animation-name: fadeInUp;
}

.slick-active .hero-slider-content > *:nth-child(1) {
  animation-delay: 0.7s;
}

.slick-active .hero-slider-content > *:nth-child(2) {
  animation-delay: 1s;
}

.slick-active .hero-slider-content > *:nth-child(3) {
  animation-delay: 1.5s;
}

.slick-active .hero-slider-content > *:nth-child(4) {
  animation-delay: 1.8s;
}

.slick-active .hero-slider-content > *:nth-child(5) {
  animation-delay: 2.5s;
}

.slick-active .hero-slider-content > *:nth-child(6) {
  animation-delay: 3s;
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translate3d(0, 100%, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
@keyframes fadeOutUp {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }
}
.hero-slider-item {
  height: 550px;
  display: flex;
  align-items: center;
  padding-top: 92px;
}

@media only screen and (min-width: 1200px) and (max-width: 1599.98px) {
  .hero-slider-item {
    height: 550px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199.98px), only screen and (min-width: 1200px) and (max-width: 1499.98px) {
  .hero-slider-item {
    height: 500px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991.98px), only screen and (max-width: 767.98px) {
  .hero-slider-item {
    height: 400px;
  }
}
@media only screen and (max-width: 575.98px) {
  .hero-slider-item {
    height: 350px;
  }
}
.hero-slider-content .slide-title {
  color: #123155;
  font-size: 35px;
  line-height: 1.2;
  font-weight: 600;
  text-transform: uppercase;
}

.hero-slider-content .slide-title span {
  display: block;
  font-weight: 800;
}

@media only screen and (min-width: 768px) and (max-width: 991.98px) {
  .hero-slider-content .slide-title {
    font-size: 35px;
  }
}
@media only screen and (max-width: 767.98px) {
  .hero-slider-content .slide-title {
    font-size: 30px;
  }
}
@media only screen and (max-width: 479.98px) {
  .hero-slider-content .slide-title {
    font-size: 25px;
  }
}
.hero-slider-content .slide-desc {
  color: #26E1FF;
  font-weight: 500;
  line-height: 1.3;
  padding-bottom: 0px;
}

.hero-slider-content {
  width: 590px;
}
.hero-slider-content p {
  color: #123155;
  font-weight: 400;
  font-size: 18px;
}

.btn-hero {
  height: 58px;
  padding: 16px 61px 18px 27px;
  display: inline-block;
  background-color: #123155;
  border-radius: 50px;
  color: #FFF;
  position: relative;
  transition: 0.3s all ease-in-out;
}
.btn-hero span {
  width: 45px;
  height: 45px;
  background-color: #FFF;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  position: absolute;
  right: 5px;
  top: 6px;
  transition: 0.3s all ease-in-out;
}
.btn-hero:hover {
  background-color: #52BFEA;
}
.btn-hero:hover span {
  transform: rotate(45deg);
}

img {
  max-width: 100%;
  transition: 0.4s;
}

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

.hero-overlay {
  position: relative;
}

.hero-overlay:before {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
  position: absolute;
  background-color: rgba(0, 0, 0, 0.5);
  display: none;
}

@media only screen and (max-width: 767.98px) {
  .hero-overlay:before {
    display: block;
  }
}
.slick-slider .slick-slide > div > div {
  vertical-align: middle;
}

.slick-arrow-style button.slick-arrow {
  top: 50%;
  left: 30px;
  width: 40px;
  height: 40px;
  font-size: 25px;
  border-radius: 50%;
  color: #222222;
  background-color: #fff;
  border: 1px solid #e5e5e5;
  cursor: pointer;
  position: absolute;
  transform: translateY(-50%);
  line-height: 42px;
  opacity: 0;
  visibility: hidden;
  transition: 0.4s;
}

.slick-arrow-style button.slick-arrow i {
  display: block;
  padding-left: 0px;
}

.slick-arrow-style button.slick-arrow.slick-next {
  left: auto;
  right: 30px;
}

.slick-arrow-style button.slick-arrow:hover {
  color: #fff;
  border-color: #123155;
  background-color: #123155;
}

.slick-arrow-style:hover button.slick-arrow {
  opacity: 1;
  visibility: visible;
  transform: translateY(-50%);
  z-index: 1;
}

.slick-arrow-style:hover button.slick-arrow.slick-prev {
  left: 10px;
}

.slick-arrow-style:hover button.slick-arrow.slick-next {
  right: 10px;
}

.slick-arrow-style_hero button.slick-arrow {
  font-size: 30px;
  left: 0;
  width: 50px;
  height: 50px;
  background-color: #f6f6f6;
  border-radius: 7px;
  line-height: 50px;
  z-index: 1;
}

.slick-arrow-style_hero button.slick-arrow.slick-next {
  right: 0;
}

.slick-arrow-style_hero button.slick-arrow:hover {
  color: #fff;
  background-color: #123155;
}

.slick-arrow-style_hero:hover button.slick-arrow.slick-next {
  right: 15px;
}

.slick-arrow-style_hero:hover button.slick-arrow.slick-prev {
  left: 15px;
}

/*--------- slick slider dot style start -------*/
.slick-dot-style ul.slick-dots {
  bottom: 15px;
  left: 50%;
  position: absolute;
  transform: translateX(-50%);
}

.slick-dot-style ul.slick-dots li {
  display: inline-block;
  margin-right: 10px;
}

.slick-dot-style ul.slick-dots li:last-child {
  margin-right: 0;
}

.slick-dot-style ul.slick-dots li button {
  width: 14px;
  height: 14px;
  padding: 0;
  border: none;
  display: block;
  text-indent: -5000px;
  cursor: pointer;
  border-radius: 50%;
  transition: 0.4s;
  border: 2px solid #777777;
  background-color: transparent;
}

.slick-dot-style ul.slick-dots li.slick-active button {
  border-color: #123155;
  background-color: #123155;
}

.slick-row-3 .slick-list {
  margin: 0 -3px;
}

.slick-row-3 .slick-list .slick-slide {
  margin: 0 3px;
}

@media only screen and (max-width: 767.98px) {
  .slick-sm-row-3 .slick-list {
    margin: 0 -3px !important;
  }
  .slick-sm-row-3 .slick-list .slick-slide {
    margin: 0 3px !important;
  }
}
.slick-row-4 .slick-list {
  margin: 0 -4px;
}

.slick-row-4 .slick-list .slick-slide {
  margin: 0 4px;
}

@media only screen and (max-width: 767.98px) {
  .slick-sm-row-4 .slick-list {
    margin: 0 -4px !important;
  }
  .slick-sm-row-4 .slick-list .slick-slide {
    margin: 0 4px !important;
  }
}
.slick-row-5 .slick-list {
  margin: 0 -5px;
}

.slick-row-5 .slick-list .slick-slide {
  margin: 0 5px;
}

@media only screen and (max-width: 767.98px) {
  .slick-sm-row-5 .slick-list {
    margin: 0 -5px !important;
  }
  .slick-sm-row-5 .slick-list .slick-slide {
    margin: 0 5px !important;
  }
}
.slick-row-6 .slick-list {
  margin: 0 -6px;
}

.slick-row-6 .slick-list .slick-slide {
  margin: 0 6px;
}

@media only screen and (max-width: 767.98px) {
  .slick-sm-row-6 .slick-list {
    margin: 0 -6px !important;
  }
  .slick-sm-row-6 .slick-list .slick-slide {
    margin: 0 6px !important;
  }
}
.slick-row-7 .slick-list {
  margin: 0 -7px;
}

.slick-row-7 .slick-list .slick-slide {
  margin: 0 7px;
}

@media only screen and (max-width: 767.98px) {
  .slick-sm-row-7 .slick-list {
    margin: 0 -7px !important;
  }
  .slick-sm-row-7 .slick-list .slick-slide {
    margin: 0 7px !important;
  }
}
.slick-row-8 .slick-list {
  margin: 0 -8px;
}

.slick-row-8 .slick-list .slick-slide {
  margin: 0 8px;
}

@media only screen and (max-width: 767.98px) {
  .slick-sm-row-8 .slick-list {
    margin: 0 -8px !important;
  }
  .slick-sm-row-8 .slick-list .slick-slide {
    margin: 0 8px !important;
  }
}
.slick-row-9 .slick-list {
  margin: 0 -9px;
}

.slick-row-9 .slick-list .slick-slide {
  margin: 0 9px;
}

@media only screen and (max-width: 767.98px) {
  .slick-sm-row-9 .slick-list {
    margin: 0 -9px !important;
  }
  .slick-sm-row-9 .slick-list .slick-slide {
    margin: 0 9px !important;
  }
}
.slick-row-10 .slick-list {
  margin: 0 -10px;
}

.slick-row-10 .slick-list .slick-slide {
  margin: 0 10px;
}

@media only screen and (max-width: 767.98px) {
  .slick-sm-row-10 .slick-list {
    margin: 0 -10px !important;
  }
  .slick-sm-row-10 .slick-list .slick-slide {
    margin: 0 10px !important;
  }
}
.slick-row-11 .slick-list {
  margin: 0 -11px;
}

.slick-row-11 .slick-list .slick-slide {
  margin: 0 11px;
}

@media only screen and (max-width: 767.98px) {
  .slick-sm-row-11 .slick-list {
    margin: 0 -11px !important;
  }
  .slick-sm-row-11 .slick-list .slick-slide {
    margin: 0 11px !important;
  }
}
.slick-row-12 .slick-list {
  margin: 0 -12px;
}

.slick-row-12 .slick-list .slick-slide {
  margin: 0 12px;
}

@media only screen and (max-width: 767.98px) {
  .slick-sm-row-12 .slick-list {
    margin: 0 -12px !important;
  }
  .slick-sm-row-12 .slick-list .slick-slide {
    margin: 0 12px !important;
  }
}
.slick-row-13 .slick-list {
  margin: 0 -13px;
}

.slick-row-13 .slick-list .slick-slide {
  margin: 0 13px;
}

@media only screen and (max-width: 767.98px) {
  .slick-sm-row-13 .slick-list {
    margin: 0 -13px !important;
  }
  .slick-sm-row-13 .slick-list .slick-slide {
    margin: 0 13px !important;
  }
}
.slick-row-14 .slick-list {
  margin: 0 -14px;
}

.slick-row-14 .slick-list .slick-slide {
  margin: 0 14px;
}

@media only screen and (max-width: 767.98px) {
  .slick-sm-row-14 .slick-list {
    margin: 0 -14px !important;
  }
  .slick-sm-row-14 .slick-list .slick-slide {
    margin: 0 14px !important;
  }
}
.slick-row-15 .slick-list {
  margin: 0 -15px;
}

.slick-row-15 .slick-list .slick-slide {
  margin: 0 15px;
}

@media only screen and (max-width: 767.98px) {
  .slick-sm-row-15 .slick-list {
    margin: 0 -15px !important;
  }
  .slick-sm-row-15 .slick-list .slick-slide {
    margin: 0 15px !important;
  }
}
.slick-slider .slick-slide > div {
  margin-bottom: 30px;
}

.slick-slider .slick-slide > div:last-child {
  margin-bottom: 0;
}

.section-mv {
  width: 100%;
  padding: 20px 0px 20px 0px;
}
.section-mv .cmn-content {
  width: 100%;
  height: 100%;
  padding: 30px;
  border-radius: 20px;
  background: linear-gradient(135deg, rgb(18, 49, 85) 1%, rgb(28, 73, 125) 100%);
  position: relative;
}
.section-mv .cmn-content::before {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  background-image: url(../images/shape-6.svg);
  width: 120px;
  height: 84px;
}
.section-mv .cmn-content h4 {
  color: #FFF;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}
.section-mv .cmn-content h4 img {
  margin-right: 10px;
}
.section-mv .cmn-content p {
  color: #D5E9FF;
  margin: 0;
}
.section-mv .rotate-sec {
  width: 100%;
  height: 100%;
  background-color: #52BFEA;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.section-mv .rotate-sec .icon {
  animation: icon-rotated 10s linear infinite;
}
.section-mv .experience-sec {
  width: 100%;
  height: 100%;
  padding: 20px;
  border-radius: 20px;
  background-color: #D8F0FC;
  display: flex;
  align-items: center;
  justify-content: center;
}
.section-mv .experience-sec h5 {
  font-size: 85px;
  font-weight: 700;
  color: #123155;
}
.section-mv .experience-sec p {
  text-transform: uppercase;
  color: #123155;
  margin: 0;
  font-weight: 600;
}

@keyframes icon-rotated {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.about-sec {
  width: 100%;
  background-image: url(../images/about-bg-shape-1.png);
  background-repeat: no-repeat;
}
.about-sec .content-sec {
  display: grid;
  grid-template-columns: 1.3fr 1fr 0.7fr;
  gap: 38px;
  align-items: center;
}
.about-sec .content-sec .left h2 {
  font-size: 16px;
}
.about-sec .content-sec .left h3 {
  font-size: 34px;
  text-transform: uppercase;
}
.about-sec .content-sec .quality-sec .about-quality {
  width: 170px;
  height: 350px;
  background-color: #52BFEA;
  background-image: url(../images/logo-shape.svg);
  background-position: center 10px;
  background-repeat: no-repeat;
  border-radius: 16px 16px 100px 100px;
  position: relative;
}
.about-sec .content-sec .quality-sec .about-quality .icon {
  width: 175px;
  height: 175px;
  background-color: #52BFEA;
  border: 5px solid #FFF;
  border-radius: 50%;
  position: absolute;
  left: -1px;
  bottom: -2px;
  animation: icon-rotated 10s linear infinite;
  padding: 5px;
}

.safa-branches {
  width: 100%;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  background-attachment: fixed !important;
  padding: 80px 0px;
}
.safa-branches .head-sec {
  width: 100%;
}
.safa-branches .head-sec h4 {
  font-size: 35px;
  font-weight: 700;
  text-transform: uppercase;
}
.safa-branches .head-sec p {
  font-size: 20px;
}
.safa-branches .col-box {
  width: 100%;
  display: flex;
  gap: 20px;
}
.safa-branches .col-box .box {
  padding-right: 20px;
  border-right: 1px solid #123155;
}
.safa-branches .col-box .box:last-child {
  border: none;
}
.safa-branches .col-box .box .logo-txt {
  width: 100%;
  margin-bottom: 5px;
}
.safa-branches .col-box .box h5 {
  text-transform: uppercase;
  font-size: 16px;
}
.safa-branches .col-box .box p {
  margin-bottom: 1px;
  font-weight: 400;
}

.products {
  width: 100%;
  background-position: top center;
  background-size: cover;
  background-repeat: no-repeat;
}
.products .head-sec h5 {
  font-size: 16px;
}
.products .head-sec h6 {
  font-size: 34px;
  text-transform: uppercase;
}
.products .item {
  width: 100%;
}
.products .box {
  width: 100%;
  border-radius: 20px;
  border: 1px solid #F5F5F5;
  background-color: #FFF;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.06);
  overflow: hidden;
}
.products .box .p-img {
  width: 100%;
  padding: 20px;
}
.products .box .content {
  width: 100%;
  text-align: center;
  padding: 30px;
}
.products .owl-carousel .owl-nav.disabled, .products .owl-carousel .owl-dots.disabled {
  display: block;
  position: absolute;
  top: -50px;
}
.products .owl-nav {
  position: absolute;
  right: 10px;
}
.products .owl-prev {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background-color: #D8F0FC !important;
  transition: 0.3s all ease-in-out;
}
.products .owl-prev:hover {
  background-color: #123155 !important;
  color: #FFF !important;
}
.products .owl-next {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background-color: #D8F0FC !important;
  margin-left: 10px;
  transition: 0.3s all ease-in-out;
}
.products .owl-next:hover {
  background-color: #123155 !important;
  color: #FFF !important;
}

.core-offering {
  width: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}
.core-offering::before {
  content: "";
  background-color: #123155;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  position: absolute;
  z-index: 1;
  opacity: 0.9;
}
.core-offering .core-offering-bg {
  width: 100%;
  position: relative;
  z-index: 2;
}
.core-offering .core-offering-bg::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 139px;
  height: 188px;
  background-image: url(../images/shape-10.svg);
  background-repeat: no-repeat;
  background-size: 100%;
  mix-blend-mode: color-dodge;
}
.core-offering .core-offering-bg::after {
  content: "";
  position: absolute;
  right: 0;
  top: 5%;
  width: 232px;
  height: 308px;
  background-image: url(../images/shape-9.svg);
  background-repeat: no-repeat;
  background-size: 100%;
  mix-blend-mode: color-dodge;
}
.core-offering .core-offering-bg .container {
  position: relative;
  z-index: 9;
}
.core-offering .core-offering-bg .head-sec h5 {
  font-size: 34px;
  text-transform: uppercase;
  color: #FFF;
}
.core-offering .core-offering-bg .head-sec p {
  color: #FFF;
  font-size: 18px;
}
.core-offering .core-offering-bg .box {
  width: 100%;
  background-color: #FFF;
  background-image: url(../images/logo-shade-bg6.svg);
  background-repeat: no-repeat;
  background-position: 0px 0px;
  background-size: 180px;
  padding: 30px 200px 30px 30px;
  border-radius: 20px;
  position: relative;
}
.core-offering .core-offering-bg .box .count {
  font-size: 108px;
  font-weight: 700;
  color: #F7F7F7;
  position: absolute;
  right: 20px;
  top: 50px;
}
.core-offering .core-offering-bg .box h3 {
  font-size: 24px;
  color: #123155;
  position: relative;
  z-index: 1;
}
.core-offering .core-offering-bg .box p {
  position: relative;
  z-index: 1;
}
.core-offering .core-offering-bg .box:hover .count {
  animation: fd-bounce-2 1s;
}

.get-in-touch {
  width: 100%;
}
.get-in-touch .form-sec {
  width: 100%;
  padding-right: 60px;
}
.get-in-touch .form-sec h5 {
  font-size: 16px;
}
.get-in-touch .form-sec h6 {
  font-size: 34px;
}
.get-in-touch .form-sec .form-control {
  width: 100%;
  height: 68px;
  background-color: #FAFEFF;
  border: 1px solid #A1B1C1;
}
.get-in-touch .form-sec .txt {
  height: 150px;
  resize: none;
}
.get-in-touch .contact-details {
  width: 100%;
  background-color: #52BFEA;
  border-radius: 40px;
  overflow: hidden;
}
.get-in-touch .contact-details .img-sec {
  width: 100%;
  position: relative;
}
.get-in-touch .contact-details .img-sec img {
  width: 100%;
  border-radius: 40px;
}
.get-in-touch .contact-details .img-sec::before {
  content: "";
  width: 100%;
  height: 100%;
  background-color: #D8F0FC;
  position: absolute;
  left: 0;
  top: 0;
  border-radius: 40px;
  mix-blend-mode: color;
}
.get-in-touch .contact-details .contact-info {
  width: 100%;
  padding: 30px;
}
.get-in-touch .contact-details .contact-info h6 {
  font-size: 24px;
  color: #123155;
  margin-bottom: 15px;
}
.get-in-touch .contact-details .contact-info ul li {
  margin-bottom: 10px;
  background-repeat: no-repeat;
  background-position: 0px 0px;
  padding: 10px 0px 10px 49px;
}
.get-in-touch .contact-details .contact-info ul li a {
  color: #123155;
  font-weight: 400;
}
.get-in-touch .contact-details .contact-info ul li.phone-icon {
  background-image: url(../images/phone-icon7.svg);
}
.get-in-touch .contact-details .contact-info ul li.mail-icon {
  background-image: url(../images/mail-icon6.svg);
}

.enquiry-popup {
  backdrop-filter: blur(10px);
}
.enquiry-popup .modal-content {
  padding: 10px;
  border-radius: 20px;
}
.enquiry-popup .modal-content .modal-body {
  background-image: url(../images/enquiry-bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 15px;
}
.enquiry-popup .modal-content .modal-body .btn-close {
  position: absolute;
  right: 10px;
  top: 10px;
  background-color: #FFF;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  padding: 6px;
  background-size: 10px;
}
.enquiry-popup .modal-content .modal-body .form-sec h4 {
  font-size: 26px;
  color: #FFF;
  font-weight: 400;
}
.enquiry-popup .modal-content .modal-body .form-sec p {
  color: #FFF;
  line-height: 22px;
  font-size: 16px;
}
.enquiry-popup .modal-content .modal-body .form-sec .form-control {
  width: 100%;
  height: 55px;
  margin-bottom: 10px;
  font-size: 14px;
  border-radius: 6px;
}
.enquiry-popup .modal-content .modal-body .form-sec .txt {
  height: 100px;
}
.enquiry-popup .modal-content .modal-body .form-sec .btn-style {
  width: 100%;
  height: 55px;
  background-color: #52BFEA;
  color: #123155;
  border: none;
  border-radius: 6px;
  text-transform: uppercase;
  font-weight: 600;
}

.p-60 {
  padding: 60px 0px;
}

footer {
  width: 100%;
  padding: 10px;
}
footer .footer-sec-first {
  width: 100%;
  background: url(../images/footer-bg.jpg) center center;
  background-attachment: fixed;
  background-size: cover;
  border-radius: 20px;
}
footer .footer-sec-first .footer-sec {
  width: 100%;
  padding: 60px 0px 20px 0px;
  position: relative;
}
footer .footer-sec-first .footer-sec::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 178px;
  height: 135px;
  background-image: url(../images/f-shape-2.svg);
  background-position: bottom left;
  background-repeat: no-repeat;
}
footer .footer-sec-first .footer-sec .f-logo-sec {
  width: 100%;
}
footer .footer-sec-first .footer-sec .f-logo-sec .f-logo img {
  filter: brightness(0) invert(1);
}
footer .footer-sec-first .footer-sec .f-box {
  width: 100%;
}
footer .footer-sec-first .footer-sec .f-box h3 {
  font-size: 18px;
  color: #FFF;
  font-weight: 500;
  margin-bottom: 15px;
}
footer .footer-sec-first .footer-sec .f-box .f-link li {
  margin-bottom: 10px;
}
footer .footer-sec-first .footer-sec .f-box .f-link li a {
  font-size: 16px;
  color: #D8F0FC;
}
footer .footer-sec-first .footer-sec .f-box .f-contact {
  width: 100%;
}
footer .footer-sec-first .footer-sec .f-box .f-contact li {
  margin-bottom: 4px;
  background-repeat: no-repeat;
  background-position: 0px center;
  background-size: 38px;
  padding: 12px 0px 10px 48px;
}
footer .footer-sec-first .footer-sec .f-box .f-contact li p {
  color: #D8F0FC;
  margin: 0;
}
footer .footer-sec-first .footer-sec .f-box .f-contact li a {
  color: #D8F0FC;
}
footer .footer-sec-first .footer-sec .f-box .f-contact li.icon-map {
  background-image: url(../images/map.svg);
}
footer .footer-sec-first .footer-sec .f-box .f-contact li.icon-phone {
  background-image: url(../images/call.svg);
}
footer .footer-sec-first .footer-sec .f-box .f-contact li.icon-mail {
  background-image: url(../images/mail.svg);
}
footer .footer-sec-first .footer-sec .f-box .f-map {
  width: 100%;
  padding: 10px;
  background-color: rgba(255, 255, 255, 0.4);
  border-radius: 6px;
}
footer .footer-sec-first .footer-sec .f-box .f-map iframe {
  width: 100%;
  height: 170px;
  display: block;
  border-radius: 6px;
}
footer .footer-sec-first .f-bottom {
  width: 100%;
  padding: 20px 0px;
  border-top: 1px solid #3EC4F0;
}
footer .footer-sec-first .f-bottom .copyright {
  display: flex;
  align-items: center;
}
footer .footer-sec-first .f-bottom .copyright p {
  color: #D8F0FC;
  margin: 0;
}
footer .footer-sec-first .f-bottom .f-media-sec {
  width: 100%;
  display: flex;
  justify-content: end;
}
footer .footer-sec-first .f-bottom .f-media-sec .f-media {
  display: flex;
  gap: 3px;
}
footer .footer-sec-first .f-bottom .f-media-sec .f-media a {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: url(../images/shape-1.svg);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  color: #123155;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 18px;
}

.inner-banner {
  width: 100%;
  padding: 10px;
}
.inner-banner .inner-banner-sec {
  border-radius: 20px;
  overflow: hidden;
  padding: 160px 10px 50px 10px;
}
.inner-banner .inner-banner-sec h1 {
  text-align: center;
  color: #123155;
}
.inner-banner .inner-banner-sec nav {
  display: flex;
  justify-content: center;
}
.inner-banner .inner-banner-sec nav li {
  color: #52BFEA;
  font-size: 16px;
  font-weight: 500;
}
.inner-banner .inner-banner-sec nav li a {
  color: #123155;
}

.inner-about-sec {
  width: 100%;
  background-image: url(../images/about-bg-shape-1.png);
  background-repeat: no-repeat;
}
.inner-about-sec .left h2 {
  font-size: 16px;
}
.inner-about-sec .left h3 {
  font-size: 34px;
  text-transform: uppercase;
}
.inner-about-sec .left .about-txt {
  width: 100%;
  display: flex;
  margin-top: 20px;
}
.inner-about-sec .left .about-img {
  width: 480px;
  margin-top: 10px;
}
.inner-about-sec .left .about-img img {
  width: 100%;
  border-radius: 10px;
}
.inner-about-sec .left .content {
  width: 63%;
  padding-left: 30px;
}

.mission-sec {
  width: 100%;
  background-color: #D8F0FC;
}
.mission-sec .box {
  width: 100%;
  border: 1px solid #c8d3e1;
  padding: 30px;
  background-color: rgba(255, 255, 255, 0.27);
  border-radius: 20px;
}
.mission-sec .box .content {
  width: 100%;
  padding: 20px 0px;
}
.mission-sec .box .content h3 {
  font-size: 32px;
  color: #123155;
}
.mission-sec .box .section-img {
  width: 100%;
  height: 310px;
}
.mission-sec .box .section-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 20px;
}

.core-value {
  width: 100%;
}
.core-value .about-core {
  display: grid;
  grid-template-columns: 1.5fr 0.5fr 1fr;
  align-items: center;
}
.core-value .about-core .content {
  position: relative;
  z-index: 9;
}
.core-value .about-core .content h5 {
  font-size: 16px;
}
.core-value .about-core .content h6 {
  font-size: 34px;
  text-transform: uppercase;
  background-color: #FFF;
  border-radius: 10px;
  padding-right: 10px;
  padding-top: 10px;
}
.core-value .about-core .img-sec {
  margin-left: -285px;
  height: 100%;
}
.core-value .about-core .img-sec img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 30px;
}
.core-value .about-core .content-item-sec {
  padding-left: 30px;
}
.core-value .about-core .content-item-sec .box {
  margin-bottom: 20px;
}
.core-value .about-core .content-item-sec .box:last-child {
  margin-bottom: 0px;
}
.core-value .about-core .content-item-sec .box h4 {
  font-size: 24px;
  color: #123155;
}

.contact-sec {
  width: 100%;
}
.contact-sec .box {
  width: 100%;
  background-color: #FFF;
  border-radius: 10px;
  border: 1px solid #6589aa;
  padding: 20px;
}
.contact-sec .box h4 {
  font-size: 22px;
  background-image: url(../images/map-icon.svg);
  background-repeat: no-repeat;
  background-size: 25px;
  padding-left: 29px;
}
.contact-sec .box h5 {
  font-size: 16px;
}
.contact-sec .box p {
  margin-bottom: 5px;
}
.contact-sec .box p a {
  color: #123155;
  font-weight: 400;
  background-repeat: no-repeat;
  padding: 5px 0px 5px 44px;
  display: inline-block;
}
.contact-sec .box p a.call {
  background-image: url(../images/call.svg);
}
.contact-sec .box p a.phone {
  background-image: url(../images/mail.svg);
}
.contact-sec .form-sec {
  width: 100%;
  background-color: #D8F0FC;
  padding: 30px;
  border-radius: 20px;
}
.contact-sec .form-sec h5 {
  font-size: 16px;
  color: #123155;
}
.contact-sec .form-sec h6 {
  font-size: 34px;
  color: #123155;
}
.contact-sec .form-sec .form-control {
  width: 100%;
  height: 68px;
  background-color: #FAFEFF;
  border: none;
  padding: 20px;
}
.contact-sec .form-sec .txt {
  height: 150px;
  resize: none;
}
.contact-sec .contact-img {
  width: 100%;
  height: 100%;
  background-color: #D8F0FC;
  border-radius: 10px;
  overflow: hidden;
}
.contact-sec .contact-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 10px;
  mix-blend-mode: luminosity;
}

.products-sec {
  width: 100%;
}
.products-sec .head-sec {
  text-align: center;
}
.products-sec .head-sec h5 {
  font-size: 16px;
}
.products-sec .head-sec h6 {
  font-size: 34px;
  text-transform: uppercase;
}
.products-sec .box {
  width: 100%;
  border-radius: 20px;
  border: 1px solid #F5F5F5;
  background-color: #FFF;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.06);
  overflow: hidden;
}
.products-sec .box .p-img {
  width: 100%;
  padding: 20px;
  text-align: center;
}
.products-sec .box .content {
  width: 100%;
  text-align: center;
  padding: 30px;
}

.services-sec {
  width: 100%;
}
.services-sec .head-sec {
  text-align: center;
}
.services-sec .head-sec h5 {
  font-size: 34px;
  text-transform: uppercase;
}
.services-sec .head-sec h6 {
  font-size: 16px;
}
.services-sec .box {
  width: 100%;
  background-color: #FFF;
  background-image: url(../images/logo-shade-bg6.svg);
  background-repeat: no-repeat;
  background-position: right bottom;
  background-size: 100px;
  padding: 14px;
  border-radius: 20px;
  position: relative;
  border: 1px solid #123155;
}
.services-sec .box .img {
  width: 100%;
  height: 200px;
  margin-bottom: 15px;
  overflow: hidden;
  border-radius: 10px;
}
.services-sec .box .img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 10px;
  transition: 0.3s all ease-in-out;
}
.services-sec .box h3 {
  font-size: 18px;
  color: #123155;
  position: relative;
  z-index: 1;
}
.services-sec .box p {
  position: relative;
  z-index: 1;
}
.services-sec .box:hover .count {
  animation: fd-bounce-2 1s;
}
.services-sec .box:hover .img img {
  transform: scale(1.05) !important;
}

.whatsapp-icon .btn-whatsapp-pulse {
  background: #25d366;
  color: white;
  position: fixed;
  bottom: 10px;
  right: 20px;
  font-size: 40px;
  display: flex;
  z-index: 99;
  justify-content: center;
  align-items: center;
  width: 0;
  height: 0;
  padding: 28px;
  text-decoration: none;
  border-radius: 50%;
  animation-name: pulse;
  animation-duration: 1.5s;
  animation-timing-function: ease-out;
  animation-iteration-count: infinite;
}
.whatsapp-icon .btn-whatsapp-pulse-border {
  bottom: 115px;
  animation-play-state: paused;
}
.whatsapp-icon .btn-whatsapp-pulse-border::before {
  content: "";
  position: absolute;
  border-radius: 50%;
  padding: 25px;
  border: 5px solid #25d366;
  opacity: 0.75;
  animation-name: pulse-border;
  animation-duration: 1.5s;
  animation-timing-function: ease-out;
  animation-iteration-count: infinite;
}
@keyframes pulse-border {
  0% {
    padding: 25px;
    opacity: 0.75;
  }
  75% {
    padding: 50px;
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}

@media (max-width: 1240px) {
  header .desktop-nav .left .nav li a {
    padding: 0px 11px;
  }
  header .desktop-nav .left .h-contact .content h4 {
    font-size: 16px;
  }
}
@media (max-width: 1200px) {
  header .desktop-nav .right a {
    height: 50px;
    padding: 16px 61px 16px 20px;
    font-size: 14px;
  }
  header .desktop-nav .right a span {
    right: 3px;
    top: 3px;
  }
  header .desktop-nav .left .logo img {
    width: 118px;
  }
  header .desktop-nav .left .nav li a {
    font-size: 14px;
  }
}
@media (max-width: 1090px) {
  header .desktop-nav .right a span {
    display: none;
  }
  header .desktop-nav .right a {
    padding: 16px 20px;
  }
  header .desktop-nav .left .h-contact {
    padding: 17px 9px;
  }
  header .desktop-nav .right {
    padding-right: 0px;
  }
  header .desktop-nav .left .h-contact .content h4 {
    font-size: 14px;
  }
  header .desktop-nav .left .logo {
    padding: 20px 15px;
  }
  header .desktop-nav .left .logo img {
    width: 105px;
  }
}
@media (max-width: 991px) {
  header .desktop-nav .left .h-contact, header .desktop-nav .left .nav, header .desktop-nav .right .quote {
    display: none;
  }
  header .desktop-nav .right .mobile-nav {
    display: flex;
  }
  footer .footer-sec-first .footer-sec .f-box {
    padding: 20px;
    background-color: rgba(255, 255, 255, 0.08);
    border-radius: 10px;
  }
  footer .footer-sec-first .footer-sec {
    padding: 30px 0px;
  }
  footer .footer-sec-first .f-bottom .copyright {
    justify-content: center;
    text-align: center;
    margin-bottom: 10px;
  }
  footer .footer-sec-first .f-bottom .f-media-sec {
    justify-content: center;
  }
  .get-in-touch .form-sec {
    padding-right: 0px;
  }
  .inner-about-sec .left .about-txt {
    display: block;
  }
  .inner-about-sec .left .about-img {
    width: 100%;
    margin-bottom: 15px;
  }
  .inner-about-sec .left .content {
    padding-left: 0px;
    width: 100%;
  }
  .core-value .about-core {
    grid-template-columns: 1fr;
  }
  .core-value .about-core .img-sec {
    margin-left: 0px;
    height: 250px;
  }
  .core-value .about-core .img-sec img {
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .core-value .about-core .content-item-sec {
    padding-left: 0px;
    padding-top: 15px;
  }
  .contact-sec .contact-img {
    display: none;
  }
}
@media (max-width: 768px) {
  .hero-slider-content {
    width: 100%;
    text-align: center;
  }
  header {
    padding: 10px 10px 0px 10px;
    position: relative;
  }
  .hero-slider-item {
    padding-top: 0px;
  }
  .hero-slider .timimg-sec {
    display: none;
  }
  .about-sec .content-sec {
    grid-template-columns: 1fr;
    gap: 4px;
  }
  .about-sec .quality-sec {
    display: none;
  }
  .p-60 {
    padding: 30px 0px;
  }
  .about-sec .content-sec .left h3, .products .head-sec h6, .core-offering .core-offering-bg .head-sec h5, .get-in-touch .form-sec h6, .inner-about-sec .left h3, .core-value .about-core .content h6, .mission-sec .box .content h3, .products-sec .head-sec h6, .services-sec .head-sec h5 {
    font-size: 25px;
  }
  .safa-branches .col-box {
    display: block;
  }
  .safa-branches .col-box .box {
    border: 1px solid #9eafc4 !important;
    padding: 20px;
    border-radius: 20px;
    margin-bottom: 10px;
  }
  .safa-branches {
    padding: 30px 0px;
  }
  .safa-branches .head-sec h4 {
    font-size: 24px;
  }
  .products .head-sec {
    margin-bottom: 50px !important;
  }
  .get-in-touch .contact-details {
    margin-top: 30px;
  }
  .inner-banner .inner-banner-sec {
    padding: 50px 10px 50px 10px;
  }
  .mission-sec .box {
    padding: 20px;
  }
}
@media (max-width: 600px) {
  .core-offering .core-offering-bg .box {
    padding: 30px 130px 30px 30px;
  }
}/*# sourceMappingURL=main.css.map */