/* Fonts */
@font-face {
  font-family: 'Calibri Bold';
  src: url('../calibri-font-family/calibri-bold.ttf') format('truetype');
}

@font-face {
  font-family: 'Calibri Regular';
  src: url('../calibri-font-family/calibri-regular.ttf') format('truetype');
}

:root {
  --background-color: #ffffff;
  /* Background color for the entire website, including individual sections */
  --default-color: #1b2950;
  /* Default color used for the majority of the text content across the entire website */
  --heading-color: #2c4964;
  /* Color for headings, subheadings and title throughout the website */
  --accent-color: #56b8e6;
  /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
  --surface-color: #ffffff;
  /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
  --contrast-color: #ffffff;
  /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
}

:root {
  --nav-color: rgba(255, 255, 255, 0.6);
  /* The default color of the main navmenu links */
  --nav-hover-color: #ffffff;
  /* Applied to main navmenu links when they are hovered over or active */
  --nav-mobile-background-color: #ffffff;
  /* Used as the background color for mobile navigation menu */
  --nav-dropdown-background-color: #ffffff;
  /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
  --nav-dropdown-color: #212529;
  /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #56b8e6;
  /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
}

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

.dark-background {
  --background-color: #17283b;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #254160;
  --contrast-color: #ffffff;
}

/* Smooth scroll */
:root {
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
  color: var(--default-colo);
  background-color: var(--background-color);
  font-family: 'Calibri Regular', sans-serif !important;
}

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: #1b2950;
  font-family: "Calibri Bold", sans-serif !important;
}

p {
  color: #1b2950;
}

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
#header {
  height: 80px;
  transition: all 0.5s;
  z-index: 997;
  transition: all 0.5s;
  background: #9397a1;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 4px 6px -2px rgb(0, 0, 0, 0.5);
}

#header.header-scrolled {
  background: #fff;
  height: 64px;
  box-shadow: 0px 2px 4px rgba(74, 98, 109, 0.4);
}

#header .logo a {
  padding-top: 5px;
}

#header .logo a,
#header .logo a:hover {
  text-decoration: none;
  display: block;
}

#header .logo img {
  margin: 0;
  max-height: 40px;
}

@media (max-width: 768px) {
  #header {
    height: 64px;
  }

  #header .logo h1 {
    font-size: 28px;
  }
}

.header-bg {
  padding: 120px 0 60px;
}

.header-bg::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: #1b2950;
}

@media (min-width: 1025px) {
  .header-bg {
    background-attachment: fixed;
  }
}

/*--------------------------------------------------------------
# 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;
}

#header.header-scrolled .navbar a {
  color: #1b2950;
}

.navbar a,
.navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0 10px 30px;
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  white-space: nowrap;
  transition: 0.3s;
}

.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 {
  opacity: 0.5;
}

.navbar a:hover {
  opacity: 0.5;
  color: #fff;
}

#header.header-scrolled .navbar .dropdown ul {
  background: #fff;
  box-shadow: 3px 3px 10px rgb(117, 134, 165, 0.4);
}

.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 14px;
  top: calc(100% + 30px);
  border-radius: 10px;
  margin: 0;
  padding: 10px 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: #fff;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: 0.3s;
}

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

.navbar .dropdown ul a {
  padding: 10px 20px;
  font-size: 18px;
  text-transform: none;
  color: #1b2950;
}

.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: #1b2950;
}

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

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
  cursor: pointer;
  display: none;
}

.mobile-nav-toggle div {
  width: 25px;
  height: 3px;
  background-color: #fff;
  margin: 5px;
  transition: all 0.6s ease;
}

#header.header-scrolled .mobile-nav-toggle div {
  background-color: #1b2950;
}

#header.header-scrolled .navbar-mobile .dropdown ul {
  box-shadow: none;
}

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

  .mobile-nav-toggle.toggle .line1 {
    transform: rotate(-45deg) translate(-5px, 6px);
    background-color: #1b2950;
  }

  .mobile-nav-toggle.toggle .line2 {
    opacity: 0;

  }

  .mobile-nav-toggle.toggle .line3 {
    transform: rotate(45deg) translate(-5px, -6px);
    background-color: #1b2950;
  }

  .navbar ul {
    display: none;
  }
}

.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100vh;
  transition: 0.3s;
  z-index: 999;
}

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

.navbar-mobile ul {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: center;
  border: 1px olid black !important;
  background-color: #fff;
  overflow-y: auto;
  transition: 0.3s;
}

.navbar-mobile a {
  padding: 20px 20px;
  font-size: 25px;
  color: #1b2950 !important;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar .active:focus,
.navbar-mobile li:hover>a {
  opacity: 0.5;
}

.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;
}

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

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

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

.navbar-mobile .dropdown ul a {
  color: #1b2950;
}

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

.navbar-mobile .dropdown .dropdown-span span,
.navbar-mobile .dropdown .dropdown-span i {
  color: #1b2950 !important;
}

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


/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
.footer-area {
  padding: 40px 0;
  background: #f9f9f9;
}

.footer-head p {
  color: #1b2950;
}

.footer-contacts p:last-child {
  margin-bottom: 0;
}

.footer-head a {
  color: #1b2950;
  text-decoration: none;
}

.footer-head h4 {
  color: #1b2950;
  font-size: 16px !important;
  letter-spacing: 2px !important;
  padding-bottom: 10px !important;
  text-transform: uppercase;
}

.footer-logo {
  padding-bottom: 20px;
}

.footer-logo img {
  width: 50%;
}

.footer-icons ul li {
  display: inline-block;
}

.footer-icons ul {
  margin-bottom: 0 !important;
  padding-bottom: 0 !important;
}

.footer-area .footer-icons ul li a {
  border: 1px solid #1b2950;
  color: #1b2950;
  display: block;
  font-size: 16px;
  height: 40px;
  line-height: 38px;
  margin-right: 5px;
  text-align: center;
  width: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 0;
}

.footer-icons ul li a i {
  line-height: 0;
}

.flicker-img>a {
  float: left;
  padding: 1px;
  width: 30%;
}

.flicker-img img {
  width: 100%;
  height: auto;
}

.footer-icons ul {
  padding: 0;
}

.footer-icons {
  margin-top: 30px;
}

.footer-contacts p span {
  color: #1b2950;
  font-weight: 700;
}

.popular-tag ul li {
  display: inline-block;
}

.footer-content {
  display: block;
  overflow: hidden;
}

.popular-tag ul li a:hover,
.footer-area .footer-icons ul li a:hover {
  background: #1b2950;
  border: 1px solid #1b2950;
  color: #fff;
}

.popular-tag ul li a {
  border: 1px solid #1b2950;
  border-radius: 30px;
  color: #1b2950;
  font-size: 13px;
  display: block;
  font-weight: 600;
  margin: 5px 3px;
  position: relative;
  text-decoration: none;
  text-transform: capitalize;
  transition: all 0.4s ease 0s;
  width: 70px;
}

.footer-area-bottom {
  background: #f1f1f1 none repeat scroll 0 0;
  padding: 15px 0;
}

.copyright-text a:hover {
  text-decoration: underline;
  color: #3EC1D5;
}

.copyright-text a {
  color: #1b2950;
}

.copyright>p {
  margin-bottom: 0;
  color: #1b2950;
}

.copyright a,
.credits a {
  color: #1b2950;
}

@media (max-width: 767px) {
  .flicker-img {
    width: 50%;
  }
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  overflow: hidden;
  background-color: #fff;
}

#preloader:before {
  content: url("../img/icon\ analytics\ 1.png") " " url("../img/icon\ analytics\ 2.png") " " url("../img/icon\ analytics\ 3.png");
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(50%);
  display: flex;
  gap: 10px;
  animation: appear 1s infinite;
}

@keyframes appear {

  0% {
    opacity: 1;
  }

  50% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
  background-color: #1b2950;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: #fff;
  line-height: 0;
}

.scroll-top:hover {
  background: #7586a5;
  color: #fff;
}

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

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

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
  background-color: #17283b;
  color: #fff;
  padding: 100px 0 25px 0;
  position: relative;
}

.page-title h1 {
  font-size: 28px;
  font-weight: 700;
  margin: 0;
  color: #fff;
}

.page-title .breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0 0 10px 0;
  margin: 0;
  font-size: 14px;
}

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

.page-title .breadcrumbs ol li a {
  color: #fff;
}

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

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 60px 0;
  scroll-margin-top: 100px;
  overflow: clip;
}

@media (max-width: 1199px) {

  section,
  .section {
    scroll-margin-top: 66px;
  }
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
  text-align: center;
  padding-bottom: 60px;
  position: relative;
}

.section-title h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
}

.section-title h2:after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 3px;
  background: #1b2950;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

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

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  width: 100%;
  min-height: 100vh;
  position: relative;
  padding: 80px 0 60px;
  display: flex;
  align-items: center;
}

@media (min-width: 1200px) {
  .hero:after {
    position: absolute;
    content: "";
    width: 37%;
    background: #1b2950;
    top: 0;
    bottom: 0;
    z-index: 2;

  }

  .hero-text {
    padding: 0 !important;
    margin-left: -25px;
  }

}

.hero-text {
  background: transparent;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 1rem;
  border-radius: 10px;
}



.hero img {
  position: absolute;
  object-position: top;
  width: 100%;
  display: block;
  height: 70% !important;
  object-fit: cover;
  z-index: 1;
}


.hero .container,
.hero .container-fluid {
  z-index: 3;
  position: relative;
}

.hero h1 {
  margin: 0;
  font-size: 3rem;
  color: #fff;
  font-weight: 700;
}

.hero blockquote {
  padding-left: 20px;
  border-left: 2px solid #fff;
  margin: 30px 0;
}

.hero blockquote p {
  color: #fff;
  font-size: 1.1rem;
}

.hero .btn-get-started {
  color: #fff;
  background: transparent;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 1px;
  display: inline-block;
  position: relative;
  padding: 10px 25px;
  border: 2px solid #fff;
  overflow: hidden;
  border-radius: 50px;
  transition: 0.4s;
}

#hero .btn-get-started::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  z-index: -1;
  transform: translateY(102%);
  transition: 0.4s ease-in-out;
}

#hero .btn-get-started:hover::before {
  transform: translateY(0);
}

.hero .btn-get-started:hover {
  color: #1b2950;
}

.hero .btn-watch-video {
  font-size: 16px;
  transition: 0.5s;
  margin-left: 25px;
  color: #fff;
  font-weight: 600;
}

.hero .btn-watch-video i {
  color: #fff;
  font-size: 32px;
  transition: 0.3s;
  line-height: 0;
  margin-right: 8px;
}

.hero .btn-watch-video:hover {
  opacity: 0.7;
}

.hero .btn-watch-video:hover i {
  opacity: 0.7;
}

@media (max-width: 576px) {
  .hero-text {
    width: 95%;
    margin: 0 auto;
  }
}

@media (max-width: 640px) {
  .hero h1 {
    font-size: 35px;
    line-height: 36px;
  }

  .hero .btn-get-started,
  .hero .btn-watch-video {
    font-size: 13px;
  }

  .hero .btn-get-started {
    padding: 8px 23px;
  }
}

/*--------------------------------------------------------------
# Why Us Section
--------------------------------------------------------------*/
.why-us .img-bg {
  min-height: 400px;
  position: relative;
}

.why-us .img-bg img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;

  z-index: 1;
}

.why-us .slides {
  background-color: color-mix(in srgb, var(--default-color), transparent 97%);

}

.why-us .slides h2 {
  padding: 40px 140px 0 140px;
}

.why-us h3 {
  font-size: 24px;
  font-weight: 700;
}

.why-us h4 {
  font-size: 18px;
}

.why-us .swiper {
  margin: 50px 140px 20px 140px;
  overflow: hidden;
}

.why-us .swiper-wrapper {
  height: auto;
}

.why-us .swiper-button-prev:after,
.why-us .swiper-button-next:after {
  font-size: 24px;
  color: #1b2950;
  transition: 0.3s;
}

.why-us .swiper-button-prev:hover:after,
.why-us .swiper-button-next:hover:after {
  opacity: 0.6;
}

.why-us .swiper-button-prev {
  left: 80px;
}

.why-us .swiper-button-next {
  right: 80px;
}

.why-us .swiper-pagination {
  margin-top: 30px;
  position: relative;
}

.why-us .swiper-pagination .swiper-pagination-bullet {
  background-color: #7586a5;
  opacity: 0.7;
}

.why-us .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #1b2950;
  opacity: 1;
}

@media (max-width: 1200px) {
  .why-us .swiper {
    margin: 60px 60px 40px 60px;
  }

  .why-us .swiper-button-prev,
  .why-us .swiper-button-next {
    display: none;
  }
}

@media (max-width: 768px) {
  .why-us .slides h2 {
    padding: 40px 100px 0 100px;
  }
}

@media (max-width: 575px) {
  .why-us .swiper {
    margin: 40px 40px 20px 40px;
  }

  .why-us .slides h2 {
    padding: 40px 10px 0 10px;
  }
}

/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
.services {
  padding-left: 0 !important;
  padding-right: 0 !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
  width: 100% !important;
}

.services-container {
  margin-left: 0 !important;
  margin-right: 0 !important;
  width: 100% !important;
  padding: 0 !important;
}

.services .service-item {
  position: relative;
  height: auto;
  padding: 1rem 1rem 0.5rem 1rem;
  border-radius: 10px;
  cursor: pointer;
  box-shadow: 5px 5px 7px rgba(48, 50, 53, 0.2);
}

.services .service-item .service-content {
  padding-bottom: 1.5rem;
}

.services .service-item .icon {
  margin-right: 20px;
}

.services .service-item .icon i {
  color: #1b2950;
  font-size: 40px;
  line-height: 0;
}

.services .service-item .title {
  font-weight: 700;
  margin-bottom: 10px;
  font-size: 20px;
}

.services .service-item .description {
  font-size: 15px;
  margin-bottom: 10px;
}

.services .service-item .readmore {
  display: flex;
  align-items: center;
  color: #7586a5;
  font-weight: 700;
  font-size: 14px;
  position: absolute;
  bottom: 0.5rem;
  right: 0.7rem;
}

.services .service-item .readmore i {
  margin-left: 5px;
}

.services .service-item:hover {
  background: #1b2950;
}

.service-content,
.service-content .icon,
.service-content .title,
.readmore {
  position: relative;
  z-index: 2;
}

.services .service-item:hover .title,
.services .service-item:hover .readmore,
.services .service-item:hover .description,
.services .service-item:hover .icon i {
  color: #fff;
}


.services .service-item:hover .readmore {
  transform: translateX(3px);
  transition: transform 0.5s;
}

@media (max-width: 576px) {
  .services-wrapper {
    padding: 0 25px;
  }
}

/* Modal Content Styling */
.custom-modal-content {
  background-color: #fff;
  border-radius: 10px;
  color: #fff !important;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

#serviceModalLabel {
  font-size: 1.5rem;
  font-weight: bold;
  color: #1b2950;
}

.modal-description {
  font-size: 1.1rem;
  color: #1b2950;
}

.modal-header {
  border-bottom: none;
}

.modal-body {
  padding: 0 1rem 1rem 1rem;
}

.modal-body img {
  border-radius: 5px;
}

/*--------------------------------------------------------------
# Blog
--------------------------------------------------------------*/
.blog-area {
  height: auto;
  width: 100%;
  position: relative;
}

.blog-area .container .single-blog {
  min-height: 400px;
  position: relative;
  background-color: color-mix(in srgb, var(--default-color), transparent 97%);
  border-radius: 10px;
}

.blog-area .container .single-blog .single-blog-img img {
  height: 250px;
  width: 100% !important;
  border-top-left-radius: 10px;
  object-fit: cover;
  border-top-right-radius: 10px;
}

@media (min-width: 1440px) {
  .blog-area .container .single-blog .single-blog-img img {
    height: 300px;
  }
}

.blog-text h4 p {
  font-size: 18px;
  margin: 0.5rem 0;
  color: #7586a5;
  font-style: italic;
  margin-top: 0;
  padding: 0;
  font-weight: lighter;
}

.blog-text h4 a {
  color: #1b2950;
  text-decoration: none;
  margin-bottom: 0;
  padding-top: 0.5rem;
  display: block;
}

.blog-text h4 {
  color: #1b2950;
}

.blog-btn {
  border-bottom: 1px dotted #1b2950;
  color: #1b2950;
  display: inline-block;
  padding: 0 1px 5px 0;
  position: relative;
  text-decoration: none;
}

.blog-btn {
  position: relative;
}

.blog-btn::after {
  content: "\f178";
  font-family: fontawesome;
  position: absolute;
  right: -20px;
  top: 1px;
  transition: all 0.3s ease 0s;
}

.blog-btn:hover::after {
  right: -30px;
}

.blog-btn:hover {
  color: #1b2950;
  text-decoration: none;
}

.single-blog .ready-btn {
  position: absolute;
  bottom: 0.5rem;
  right: 0.5rem;
  cursor: pointer;
  display: inline-block;
  font-size: 15px;
  font-weight: 600;
  padding: 0;
  text-align: center;
  text-transform: uppercase;
  transition: all 0.4s ease 0s;
}

.single-blog .ready-btn .readmore {
  display: flex;
  align-items: center;
}

.single-blog .ready-btn span,
.single-blog .ready-btn i {
  color: #7586a5;
  opacity: 0.8;
}

.single-blog .ready-btn i {
  margin-left: 5px;
}

.single-blog .ready-btn:hover {
  transform: translateX(3px);
  transition: 0.5s;
  opacity: 0.7;
}

.swiper-container {
  display: flex;
  justify-content: center;
  align-items: center;
  overflow-x: hidden;
}

.swiper-container .swiper-slide {
  border-radius: 10px;
  padding: 0;
}

.swiper-container .swiper-button-next,
.swiper-container .swiper-button-prev {
  color: #fff;
  border: none;
  background-color: #1b2950;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 35px;
  height: 35px;
  border-radius: 50%;
}

.swiper-container .swiper-button-next:hover,
.swiper-container .swiper-button-prev:hover {
  opacity: 0.7;
}

.swiper-container .swiper-button-next {
  position: absolute;
  top: 25.5%;
  right: 8%;
}

.swiper-container .swiper-button-prev {
  position: absolute;
  top: 25.5%;
  left: 88%;
  transform: translateX(-88%);
}

.swiper-container .swiper-button-next::after,
.swiper-container .swiper-button-prev::after {
  font-size: 18px;
  transform: translateX(2px);
}

.swiper-container .swiper-button-next::after {
  transform: translateX(1px);
}

.swiper-container .swiper-button-prev::after {
  transform: translateX(-1px);
}

@media (max-width: 580px) {
  .blog-area .container .single-blog {
    min-height: auto !important;
    padding-bottom: 2.5rem;
  }

  .swiper-container {
    padding: 0 0.5rem;
  }
}

@media (max-width: 992px) {

  .blog-area .container .single-blog {
    min-height: 300px;
  }

  .swiper-container .swiper-button-next {
    right: 18%;
    top: 30%;
  }

  .swiper-container .swiper-button-prev {
    left: 76%;
    transform: translateX(-76%);
    top: 30%;
  }

  .blog-text h4 p {
    font-size: 16px;
  }

  .blog-text h4 a {
    font-size: 20px;
  }
}

@media (max-width: 768px) {

  .swiper-container .swiper-button-next {
    right: 15%;
    top: 31%;
  }

  .swiper-container .swiper-button-prev {
    left: 15%;
    transform: translateX(-15%);
    top: 31%;
  }
}

@media (max-width: 580px) {
  .blog-text h4 p {
    font-size: 18px;
  }

  .blog-text h4 a {
    font-size: 25px;
  }

  .swiper-container .swiper-button-next {
    top: 24%;
  }

  .swiper-container .swiper-button-prev {
    top: 24%;
  }
}

@media (max-width: 380px) {

  .swiper-container .swiper-button-next {
    top: 26%;
  }

  .swiper-container .swiper-button-prev {
    top: 26%;
  }
}


/** partenrs**/
.partners-slider {
  overflow: hidden;
  position: relative;
  width: 100%;
  padding: 20px 0;
  background: #f9f9f9;
  white-space: nowrap;
}

.partners-wrapper {
  display: flex;
  gap: 30px;
  animation: partners-scroll 10s linear infinite;
  width: max-content;
}

.partners-logo {
  max-width: 150px;
  height: auto;
  flex-shrink: 0;
}

@keyframes partners-scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

@media (max-width: 768px) {
  .partners-logo {
    max-width: 100px;
  }

  .partners-wrapper {
    animation-duration: 15s;
  }
}

.logo-row {
  display: flex;
  white-space: nowrap;
  animation: scroll 10s linear infinite;
}

.logo-item {
  padding: 0 15px;
  display: inline-block;
}

@keyframes scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.logo-item img {
  max-width: 100%;
  height: auto;
  max-height: 100px;
  filter: grayscale(60%);
  transition: filter 0.3s ease;
}

.logo-item:hover img {
  filter: grayscale(0%);
}

.logo-item:hover {
  transform: scale(103%);
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact .info-item:not(:last-child) i {
  color: var(--contrast-color);
  background: #1b2950;
  font-size: 20px;
  width: 44px;
  height: 44px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
  margin-right: 15px;
}

.contact .info-item .socials-icon {
  color: var(--contrast-color);
  background: #1b2950;
  font-size: 20px;
  width: 44px;
  height: 44px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
  margin-right: 15px;
}



.contact .info-item .footer-icons ul li .hover-icon {
  border: 1px solid #1b2950;
  color: #1b2950;
  display: block;
  font-size: 14px;
  height: 30px;
  line-height: 28px;
  width: 30px;
  margin-right: 5px;
  text-align: center;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 0;
}

.contact .info-item .footer-icons ul li .hover-icon:hover {
  background: #1b2950;
  border: 1px solid #1b2950;
  color: #fff;
}

.contact .info-item .footer-icons ul li .icon:hover {
  color: #1b2950;
}

.contact .info-item .footer-icons ul li {
  position: relative;
  cursor: pointer;
}

.footer-icons ul li .dropdown-box {
  display: none;
  position: absolute;
  top: 31px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #fff;
  padding: 15px 20px 0 20px;
  border-radius: 10px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.4);
  width: fit-content;
  min-width: 120px;
  text-align: center;
  z-index: 99999;
}

.footer-icons ul li .dropdown-box .icon {
  display: flex;
  gap: 5px;
  align-items: center;
  margin-bottom: 15px;
}

.footer-icons ul li .dropdown-box .icon i {
  color: #1b2950;
}

.footer-icons ul li .dropdown-box .icon-title {
  font-size: 12px;
  color: #1b2950;
  margin-top: 0px;
}

.footer-icons ul li:hover .dropdown-box,
.footer-icons ul li .dropdown-box:hover {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.icon-facebook:hover .dropdown-box {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.icon-instagram:hover .dropdown-box {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.icon-tiktok:hover .dropdown-box {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.icon-linkedin:hover .dropdown-box {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.contact .info-item .footer-icons {
  margin: 0 !important;
}

.contact .info-item h3 {
  padding: 0;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 5px;
}

.contact .info-item a {
  text-decoration: none;
  color: inherit;
}

.contact .info-item p {
  padding: 0;
  margin-bottom: 0;
  font-size: 14px;
}

/* training details*/
.page-area {
  position: relative;
}

.header-bg {
  padding: 100px 0 40px;
}

.page-area .articles-header-title,
.page-area .services-header-title {
  padding: 0 !important;
}

.blog-page .banner-box {
  margin-bottom: 40px;
}

.left-blog {
  margin-top: 3.5rem;
}

.recent-post {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.recent-single-post {
  width: 250px;
  height: 290px;
  border: 1px solid #ddd;
  border-radius: 8px;
}

.recent-post .recent-single-post .post-img img {
  max-width: 100%;
  max-height: 100%;
  height: 200px;
  object-fit: cover;
  padding: 8px 8px 0 8px;
}

@media (max-width: 580px) {
  .recent-single-post {
    width: 100%;
    height: 100%;
  }

  .recent-post .recent-single-post .post-img img {
    width: 100%;
  }
}

.pst-content p {
  padding: 8px;

}

.pst-content p a {
  color: #1b2950;
  font-size: 16px;
}

.pst-content p a:hover {
  color: #7586a5;
}

.training-description {
  text-align: justify;
}

.training-img #training-img {
  max-width: 100%;
  width: 100%;
  height: 450px;
  object-fit: cover;
}

.slider-content .back-btn {
  display: flex;
  align-items: center;
  color: #ddd;
}

.slider-content .back-btn i {
  margin-right: 5px;
  line-height: 1;
}

.slider-content .back-btn:hover {
  transform: translateX(-3px);
  transition: transform 0.5s;
}

.header-bottom h1 {
  color: #fff;
  position: relative;
  text-transform: uppercase;
}

.header-bottom h1::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -20px;
  transform: translateX(-50%);
  width: 0;
  height: 4px;
  background: #fff;
  animation: lineExpand 2s ease-in-out forwards;
}

#contact-us {
  margin-top: 3rem;
  padding-left: 2rem;
  border-left: 7px solid #1b2950;
}

#contact-title span {
  color: green;
}

.contact-us {
  padding: 15px 25px;
  font-size: 1.5rem;
  background-color: #1b2950;
  border: none;
  color: #fff;
}

.contact-us:hover {
  opacity: 0.8;
}

@media (max-width: 992px) {
  .training-img #training-img {
    height: auto;
  }
}

@media (max-width: 768px) {
  .training-details {
    padding-top: 1.5rem;
    padding-bottom: 1rem;
  }

  .training-info {
    margin-bottom: 2rem !important;
  }

  .header-bottom h1 {
    font-size: 1.5rem;
  }

  .slider-content .back-btn {
    font-size: 14px;
  }

  #contact-us {
    margin-top: 1rem;
    border-left: 4px solid #1b2950;
  }

  .contact-us {
    padding: 10px 15px;
    font-size: 1rem;
  }
}

@media (max-width: 580px) {
  .header-bg {
    padding-top: 80px;
  }

  .header-bottom h1 {
    font-size: 1.3rem;
  }

  #contact-us {
    margin-left: 0.5rem;
    padding-left: 0.5rem;
  }
}

@keyframes lineExpand {
  0% {
    width: 0;
  }

  100% {
    width: 35%;
  }
}

/* trainings from*/
form {
  margin: auto;
  padding: 20px;
  background-color: #1b2950;
  color: white;
  border-radius: 10px;
}

#register-title {
  padding-bottom: 10px;
}

label,
input,
select {
  display: block;
  width: 100%;
  margin: 10px 0;
}

input,
select {
  border-radius: 5px;
  border: none;
  padding: 8px;
}

input[type="submit"] {
  background-color: white;
  color: #1b2950;
  padding: 10px;
  border: none;
  font-weight: bold;
  border-radius: 5px;
  cursor: pointer;
  font-size: 18px;
  transition: 0.4s ease;
}

input[type="submit"]:hover {
  opacity: 0.8;
}

.checkbox {
  display: flex;
  align-items: center;
}

.checkbox input {
  margin: 0;
  width: auto;
  margin-right: 5px;
}


.iti__selected-dial-code {
  color: #707070;
}