* {
  font-family: "Inter", sans-serif !important;
}

:root {
  --default-font: "Roboto", system-ui, -apple-system, "Segoe UI", Roboto,
    "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif,
    "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --heading-font: "Montserrat", sans-serif;
  --nav-font: "Poppins", sans-serif;
}

/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root {
  --background-color: #ffffff; /* Background color for the entire website, including individual sections */
  --default-color: #222222; /* Default color used for the majority of the text content across the entire website */
  --heading-color: #172a28; /* Color for headings, subheadings and title throughout the website */
  --accent-color: #010253; /* 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. */
  --title-box-color: #010253;
  --title-box-back: #f0f5ff;
  --title-box-back-color: #dae0ff;
  --nav-top-color: #010030;
  --nav-top-hover-color: #010030de;
}

:root {
  --font-size-title-back: 58px;
  --font-size-title: 40px;
  --font-size-title-back-mobile: 30px;
  --font-size-title-mobile: 24px;
}

/* Nav Menu Colors - The following color variables are used specifically for the navigation menu. They are separate from the global colors to allow for more customization options */
:root {
  --nav-color: #ffffff; /* The default color of the main navmenu links */
  --nav-hover-color: #008374; /* 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: #01433c; /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #008374; /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
}

/* Color Presets - These classes override global colors when applied to any section or element, providing reuse of the sam color scheme. */

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

.dark-background {
  --background-color: #060606;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #252525;
  --contrast-color: #ffffff;
}

.accent-background {
  --background-color: #ffffff;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --accent-color: #ffffff;
  --surface-color: #00b6a1;
  --contrast-color: #ffffff;
}

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

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: var(--default-font);
}

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: var(--heading-color);
  font-family: var(--heading-font);
}

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  --background-color: #010030;
  --heading-color: #ffffff;
  color: var(--default-color);
  transition: all 0.5s;
  z-index: 997;
  background-color: var(--background-color);
}

.header .branding {
  min-height: 60px;
}

.header .logo {
  line-height: 1;
}

.header .logo img {
  max-height: 54px;
  margin-right: 8px;
}

.scrolled .header {
  box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1);
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Desktop Navigation */
@media (min-width: 1200px) {
  .navmenu {
    padding: 0;
  }

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

  .navmenu li {
    position: relative;
  }

  .navmenu > ul > li {
    white-space: nowrap;
    padding: 0 14px;
  }

  .navmenu > ul > li:last-child {
    padding-right: 0;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-color) !important;
    font-size: 15px;
    padding: 0 2px;
    font-family: var(--nav-font);
    font-weight: 500;
    white-space: nowrap;
    transition: 0.3s;
    position: relative;
  }

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

  .navmenu > ul > li > a:before {
    content: "";
    position: absolute;
    height: 2px;
    bottom: -6px;
    left: 0;
    /* background-color: var(--nav-hover-color); */
    background-color: #0282f2;
    visibility: hidden;
    width: 0px;
    transition: all 0.3s ease-in-out 0s;
  }

  .navmenu a:hover:before,
  .navmenu li:hover > a:before,
  .navmenu .active:before {
    visibility: visible;
    width: 100%;
  }

  .navmenu li:hover > a,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-color);
  }

  .navmenu .dropdown ul {
    margin: 0;
    padding-bottom: 10px;
    background: var(--nav-dropdown-background-color);
    display: block;
    position: absolute;
    visibility: hidden;
    left: 14px;
    top: 130%;
    opacity: 0;
    transition: 0.3s;
    border-radius: 4px;
    z-index: 99;
    box-shadow: 1px 2px 4px rgba(54, 54, 54, 0.4);
  }

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

  .navmenu .dropdown ul a {
    padding: 0px 17px;
    height: 50px;
    font-size: 16px;
    text-transform: none;
    color: var(--nav-top-color);
  }

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

  /* .navmenu .dropdown ul a:hover,
  .navmenu .dropdown ul .active:hover,
  .navmenu .dropdown ul li:hover>a {
    color: var(--nav-top-hover-color);
  } */

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

  .navmenu .dropdown .dropdown ul {
    top: 0;
    left: -90%;
    visibility: hidden;
  }

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

/* Laptop Responsive */
@media (max-height: 610px) {
  .content-hero-banner-col {
    margin: 0 !important;
  }

  .banner-content {
    margin: 0 !important;
  }

  .video-background {
    top: 60% !important;
  }

  .hero .banner-content {
    padding: 100px 100px 40px 100px !important;
  }
}

/* Laptop special Responsive */
@media (min-width: 1024px) and (min-height: 610px) and (max-height: 705px) {
  .content-hero-banner-col {
    margin: 0 !important;
  }

  .banner-content {
    margin: 0 !important;
  }

  .video-background {
    top: 58% !important;
  }

  .hero .banner-content {
    padding: 170px 50px 110px 50px !important;
  }

  .awards-box-title > .title {
    padding: 0 300px !important;
  }
}

/* Mobile Responsive */
@media (max-width: 1199px) {
  section,
  .section {
    padding: 30px 0 !important;
    scroll-margin-top: 100px;
  }

  .mobile-nav-toggle {
    color: var(--nav-color);
    font-size: 28px;
    line-height: 0;
    margin-right: 10px;
    cursor: pointer;
    transition: color 0.3s;
  }

  .navmenu {
    padding: 0;
    z-index: 9997;
  }

  .navmenu ul {
    display: none;
    list-style: none;
    position: absolute;
    inset: 60px 20px 20px 20px;
    padding: 10px 0;
    margin: 0;
    border-radius: 6px;
    background-color: var(--nav-mobile-background-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    box-shadow: none;
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
  }

  .navmenu a,
  .navmenu a:focus {
    color: #010030;
    padding: 10px 20px;
    font-family: var(--nav-font);
    font-size: 17px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
    background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  }

  .navmenu a i:hover,
  .navmenu a:focus i:hover {
    background-color: var(--accent-color);
    color: var(--contrast-color);
  }

  .navmenu a:hover,
  .navmenu .active,
  .navmenu .active:focus {
    color: #028bf3;
  }

  .navmenu .active i,
  .navmenu .active:focus i {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    transform: rotate(180deg);
  }

  .navmenu .dropdown ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 10px 0;
    margin: 10px 20px;
    background-color: var(--nav-dropdown-background-color);
    transition: all 0.5s ease-in-out;
  }

  .navmenu .dropdown ul ul {
    background-color: rgba(33, 37, 41, 0.1);
  }

  .navmenu .dropdown > .dropdown-active {
    display: block;
    background-color: rgba(33, 37, 41, 0.03);
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .mobile-nav-toggle {
    color: #fff;
    position: absolute;
    font-size: 32px;
    top: 15px;
    right: 15px;
    margin-right: 0;
    z-index: 9999;
  }

  .mobile-nav-active .navmenu {
    position: fixed;
    overflow: hidden;
    inset: 0;
    background: rgba(33, 37, 41, 0.8);
    transition: 0.3s;
  }

  .mobile-nav-active .navmenu > ul {
    display: block;
  }

  /* global */
  .padding-section {
    padding: 30px !important;
  }

  .about .section-title .box-title .title-box-back {
    font-size: var(--font-size-title-back-mobile) !important;
  }

  .about .section-title .title {
    font-size: var(--font-size-title-mobile) !important;
  }

  .about .section-title .title-back {
    font-size: var(--font-size-title-back-mobile) !important;
  }

  .sub-title .sub-title-p {
    font-size: 14px !important;
  }

  .section-title .box-title .title {
    top: 10px !important;
  }

  .hero .box-pad-award {
    padding: 35px 0 !important;
  }

  .hero .box-pad-service {
    padding: 40px 0 !important;
  }

  .about .section-title .box-pad {
    padding: 25px 0 !important;
  }

  /* hero-section Responsive */
  .hero {
    padding: 0 !important;
  }

  .hero .icon-boxes {
    padding: 0 !important;
  }

  .hero .video-background {
    object-fit: cover !important;
  }

  .hero .banner-content {
    padding: 86px 20px 60px 20px !important;
  }

  .hero h1 {
    font-size: 40px !important;
  }

  .hero .awards-services-box {
    padding: 30px !important;
  }

  .hero .awards-services-box .title-box-back {
    font-size: var(--font-size-title-back-mobile) !important;
  }

  .hero .awards-services-box .title {
    font-size: var(--font-size-title-mobile) !important;
  }

  .hero p {
    font-size: 12px !important;
  }

  .btn-service-view-more {
    font-size: 12px !important;
    padding: 6px 15px !important;
  }

  .hero .awards-services-box .title {
    top: 10px !important;
  }

  .service-tab-content {
    height: 100% !important;
    padding: 40px 0;
  }

  .managed-sec {
    background-size: initial !important;
  }

  .cyber-assess {
    background-size: initial !important;
  }

  .cyber-training {
    background-size: initial !important;
  }

  .service-tab-content-hide {
    display: none !important;
  }

  /* product-section Responsive */
  .about .btn-view-more {
    font-size: 12px !important;
    padding: 6px 15px !important;
  }

  .wiper-item .wiper-box-title .wiper-p {
    font-size: 14px;
  }

  .wiper-box-img {
    max-height: 56px;
  }

  .wiper-box-title h4 {
    font-size: 12px;
  }

  .wiper-box-title p {
    font-size: 12px;
  }

  .wiper-box-content p {
    font-size: 12px;
  }

  .wiper-box-content a {
    font-size: 12px;
  }

  /* feedback-section Responsive */
  .feedback-section .section-feedback .box-title .title {
    font-size: var(--font-size-title-mobile) !important;
  }

  .feedback-slide-content-left .feedback-slide-content-h4 {
    font-size: 14px !important;
  }

  .feedback-slide-content-left .feedback-slide-content-text {
    font-size: 12px !important;
  }

  /* blog-section Responsive */
  .blog-section .post-datetime {
    font-size: 12px !important;
  }

  .blog-section .title {
    font-size: 14px !important;
  }

  .blog-section .post-author {
    font-size: 12px;
  }

  .footer .footer-links {
    margin-bottom: 0 !important;
  }
}

@media (max-width: 640px) {
  .hero h2 {
    font-size: 36px;
  }

  .hero .btn-get-started {
    font-size: 14px;
  }

  .title-service {
    padding: 0 55px;
  }
}

@media screen and (max-width: 390px) {
  .title-service {
    padding: 0 40px;
  }
}

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
  color: var(--default-color);
  background: linear-gradient(
    180deg,
    rgba(1, 0, 78, 1) 23%,
    rgba(3, 66, 220, 1) 100%
  );
  font-size: 14px;
  position: relative;
}

.footer .footer-top {
  padding: 60px 0 32px 0;
}

.footer .footer-about .logo {
  line-height: 1;
  margin-bottom: 25px;
}

.footer .footer-about .logo img {
  max-height: 86px;
  margin-right: 6px;
}

.footer .footer-about p {
  font-size: 16px;
  font-weight: 500;
  font-family: var(--heading-font);
  margin-bottom: 0;
}

.footer .footer-about address {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 0;
  font-family: var(--heading-font);
}

.footer .footer-about h3 {
  color: var(--contrast-color);
  margin: 20px 0;
  font-size: 22px;
  font-weight: 700;
}

.footer .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 16px;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  margin-right: 10px;
  transition: 0.3s;
}

.footer .social-links a:hover {
  color: var(--default-color);
  border-color: var(--default-color);
}

.footer h4 {
  color: var(--contrast-color);
  font-size: 18px;
  font-weight: bold;
  position: relative;
  padding-bottom: 12px;
}

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

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

.footer .footer-links ul li {
  font-size: 16px;
  padding: 10px 0;
  display: flex;
  align-items: center;
}

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

.footer .footer-links ul a {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  display: inline-block;
  line-height: 1;
}

.footer .footer-links ul a:hover {
  color: var(--default-color);
}

.footer .footer-contact p {
  margin-bottom: 5px;
}

.footer .copyright {
  padding-top: 30px;
  padding-bottom: 30px;
  border-top: 1px solid
    color-mix(in srgb, var(--default-color), transparent 90%);
}

.footer .copyright p {
  margin-bottom: 0;
}

.footer .credits {
  margin-top: 4px;
  font-size: 13px;
}

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
  --background-color: var(--accent-color);
  --default-color: #fff;
  --heading-color: #fff;
  color: var(--default-color);
  background-color: var(--background-color);
  position: relative;
}

.page-title .heading {
  padding: 160px 0 80px 0;
  border-top: 1px solid
    color-mix(in srgb, var(--default-color), transparent 90%);
}

.page-title .heading h1 {
  font-size: 38px;
  font-weight: 700;
}

.page-title nav {
  background-color: color-mix(in srgb, var(--default-color), transparent 92%);
  padding: 20px 0;
}

.page-title nav ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  font-size: 16px;
  font-weight: 600;
}

.page-title nav ol a {
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

.page-title nav ol a:hover {
  color: var(--default-color);
}

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

.page-title nav ol li + li::before {
  content: "/";
  display: inline-block;
  padding-right: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
.banner-section {
  background-color: #f0f6fd;
  color: var(--default-color);
  width: 100%;
  height: 100%; /* Full height of the viewport */
  overflow: hidden;
}

.video-background {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  object-fit: none;
  pointer-events: none;
  transform: translate(-50%, -50%);
  z-index: 0; /* Keeps the video behind other content */
}

.content-hero-banner {
  position: relative;
  z-index: 1;
  color: white;
}

section,
.section {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 60px 0;
  scroll-margin-top: 112px;
  overflow: clip;
}

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

.about p {
  color: var(--title-box-color);
  font-size: 16px;
  font-weight: 600;
}

.sub-title .sub-title-p {
  font-size: 18px;
  font-weight: 600;
}

.about .section-title .box-title {
  position: relative;
}

.hero .box-title .title-box-back {
  font-weight: 700;
  color: var(--title-box-back);
  position: absolute;
  font-size: var(--font-size-title-back);
  left: 0px;
  right: 0px;
  margin: 0px auto;
}

.about .section-title .box-title .title-box-back {
  font-weight: 700;
  color: var(--title-box-back);
  position: absolute;
  font-size: var(--font-size-title-back);
  left: 0px;
  right: 0px;
  margin: 0px auto;
}

.about .section-title .title-back {
  font-weight: 700;
  color: var(--title-box-back-color);
  position: absolute;
  font-size: var(--font-size-title-back);
  left: 0px;
  right: 0px;
  margin: 0px auto;
}

.about .section-title .title {
  font-weight: 700;
  color: var(--title-box-color);
  font-size: var(--font-size-title);
  position: absolute;
  top: 32px;
  left: 0px;
  right: 0px;
  margin: 0px auto;
}

.about .section-title .box-pad {
  padding: 46px 0;
}

.about .container-divider {
  padding: 10px 0;
}

.hero .btn-get-started {
  color: var(--title-box-color);
  background: #ffffff;
  font-family: var(--heading-font);
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 40px;
  border-radius: 50px;
  transition: 0.3s;
  border: 2px solid #ffffff;
  background-color: #ffffff;
}

.hero .btn-get-started:hover {
  border-color: color-mix(in srgb, #f3f3f3, transparent 60%);
  background-color: #f3f3f3;
}

.about .container-divider .divider {
  border: 1px solid #d9d9d9;
}

.about .btn-view-more {
  color: var(--contrast-color);
  background: #041274;
  font-family: var(--heading-font);
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 40px;
  border-radius: 50px;
  transition: 0.3s;
  border: 2px solid #041274;
  background-color: #041274;
}

.about .btn-view-more:hover {
  border-color: color-mix(in srgb, #010252, transparent 60%);
  background-color: #010252;
}

.customer-section {
  background-image: url("/assets/images/gradiant-bg-1-1.png");
  background-repeat: no-repeat;
}

.img-vector {
  height: 39px;
  width: 20px;
}

/*---hero-panner section---*/
.managed-sec {
  background-image: url("/assets/images/managed-sec.png");
  background-repeat: no-repeat;
  background-size: cover;
}
.cyber-assess {
  background-image: url("/assets/images/cyber-assess-bk.png");
  background-repeat: no-repeat;
  background-size: cover;
}
.cyber-training {
  background-image: url("/assets/images/cyb-training.png");
  background-repeat: no-repeat;
  background-size: cover;
}
.service-tab-content {
  max-height: 500px;
  height: 480px;
  color: var(--title-box-color) !important;
}
.row-content {
  height: 100%;
}
.row-main {
  height: 100%;
  display: flex;
  align-items: center;
  padding: 0 40px;
}
.content {
  text-align: left;
}
.btn-service-view-more {
  background: #ffffff;
  border: 1px solid #010253;
  border-radius: 50px;
  color: var(--title-box-color);
  font-family: var(--heading-font);
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 8px 20px;
  transition: 0.3s;
}
.btn-service-view-more:hover {
  color: #041274;
  border: 1px solid #041274;
}
/*---end hero-panner section---*/

/*---product section---*/
.product-section {
  padding-top: 0;
}
.product-section .section-title .box-title {
  padding-bottom: 20px;
}
.wiper-track {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  column-gap: 1.5rem;
  /* margin: 0 auto; */
  transition: transform 0.4s ease-in;
  padding: 0 1rem;
}
.wiper-item {
  width: 210px;
  height: auto;
  position: relative;
  transition: scale 0.2s linear;
  padding: 0 10px;
}
.wiper {
  height: 100%;
  max-width: 960px;
  position: relative;
  margin: 0 auto;
  margin-bottom: 90px;
}
.wiper-item .wiper-box-title .wiper-p {
  color: #dddddd;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 40px;
}
.active-swipe {
  transform: scale(1.2) !important;
}
.active-swipe .wiper-box-title .wiper-p {
  color: var(--title-box-color);
}
.active-swipe .wiper-box {
  position: relative;
  bottom: 12px;
}
.wiper-button {
  margin: 0 1rem;
  position: absolute;
  top: 50%;
  background: transparent;
  border: none;
  transform: translateY(-50%);
  z-index: 1;
}
.wiper-button__left {
  right: 0;
}
.wiper__image-button {
  right: 50%;
  top: 50%;
  position: absolute;
  padding: 0.8rem 1rem;
  border-radius: 3px;
  background-color: white;
  border: none;
  font-size: 1.4rem;
  transform: translateY(-50%) translateX(50%);
  cursor: pointer;
}
.wiper-wrapper {
  height: 100%;
  max-width: 700px;
  overflow: hidden;
  padding: 4rem 0 2rem;
  margin: 60px auto;
  margin-top: 0;
}
.wiper-wrapper .wiper-track .wiper-item {
  list-style: none;
}
.wiper-p {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 50px;
}
.wiper-box {
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  object-fit: cover;
  border-radius: 30px;
  background: linear-gradient(
    180deg,
    rgba(2, 0, 80, 1) 0%,
    rgba(2, 33, 149, 1) 100%
  );
  padding: 20px;
}
.wiper-box-img {
  display: flex;
  justify-content: center;
  max-height: 80px;
}
.active-swipe .wiper-box .wiper-box-img {
  max-height: 120px;
}
.wiper-box-img img {
  margin-bottom: 0.5em;
}
.wiper-box-title h4 {
  text-align: center;
  color: var(--contrast-color);
  font-size: 16px;
  font-weight: 600;
}
.wiper-box-title p {
  text-align: center;
  color: var(--contrast-color);
  font-weight: bold;
  font-size: 16px;
  line-height: 20px;
  margin-bottom: 6px;
}
.wiper-box-content p {
  text-align: center;
  color: var(--contrast-color);
  font-size: 14px;
  line-height: 20px;
  margin-bottom: 0.5em;
}
.wiper-box-content a {
  font-size: 16px;
  font-weight: 700;
}
.is-hidden {
  display: none;
}
/*---end product section---*/

/*---feedback section---*/
.feedback-section {
  background: linear-gradient(
    180deg,
    rgba(1, 0, 78, 1) 23%,
    rgba(3, 66, 220, 1) 100%
  );
  color: #fff;
}
.feedback-section .section-feedback .box-title {
  padding: 30px 0;
}
.feedback-section .section-feedback .box-title .title {
  font-weight: 700;
  color: var(--contrast-color);
  font-size: var(--font-size-title);
  margin: 0px auto;
}
.feedback-slide-content img {
  position: absolute;
}
.main-row {
  height: 100%;
  position: relative;
}
.main-col {
  display: flex;
  align-items: center;
}
.main-col .main-content {
  padding: 0 60px;
  text-align: left;
}
.main-col .main-content h4 {
  color: #fff;
}
.main-col .main-content span {
  font-size: 16px;
}
.main-col .main-content b {
  font-weight: 400;
}
/*---end feedback section---*/

/*---partner section---*/
.swiper-button-next,
.swiper-button-prev {
  color: #010253 !important;
}

.swiper-button-prev {
  background-image: url("/assets/images/Vector-left.svg");
}

.swiper-button-next {
  background-image: url("/assets/images/Vector-right.svg");
}

.partner-section {
  background-image: url("/assets/images/gradiant-bg-1-1.png");
  background-repeat: no-repeat;
}
/*---end partner section---*/

/*---blog section---*/
.blog-section article {
  background: var(--surface-color);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  padding: 20px;
  height: 453.52px;
  border-radius: 10px;
  overflow: hidden;
}

.blog-section .post-img {
  max-height: 240px;
  overflow: hidden;
  border-radius: 10px;
}

.blog-section .post-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.blog-section .post-datetime {
  font-size: 16px;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  margin: 10px 0;
}

.blog-section .title {
  font-size: 20px;
  font-weight: 700;
  padding: 0;
  margin: 0 0 20px 0;
}

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

.blog-section .title a:hover {
  color: var(--accent-color);
}

.blog-section .post-author-img {
  width: 50px;
  border-radius: 50%;
  margin-right: 15px;
}

.blog-section .post-author {
  font-weight: 600;
  margin-bottom: 5px;
}

.blog-section .post-date {
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  margin-bottom: 0;
}
/*---end blog section---*/

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  width: 100%;
  /* position: relative; */
}

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

.hero .banner-content {
  padding: 160px 100px;
}

.hero h1 {
  font-size: 54px;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--heading-color);
}

.hero .banner-sub-title {
  color: var(--contrast-color);
  font-size: 30px;
  font-weight: 600;
  margin-bottom: 20px;
}

.hero h2 .accent {
  color: var(--conrast-color);
}

.hero p {
  color: var(--title-box-color);
  font-size: 16px;
}

.hero .btn-get-started {
  color: var(--title-box-color);
  background: #ffffff;
  font-family: var(--heading-font);
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 40px;
  border-radius: 50px;
  transition: 0.3s;
  border: 2px solid #ffffff;
  background-color: #ffffff;
}

.hero .btn-get-started:hover {
  border-color: color-mix(in srgb, #f3f3f3, transparent 60%);
  background-color: #f3f3f3;
}

.hero .icon-boxes {
  padding-bottom: 20px;
  z-index: 4;
}

.hero .awards-services-box .services:hover {
  box-shadow: 0px 0px 20px 0px rgba(84, 72, 163, 0.4);
}

.hero .awards-services-box .services {
  padding: 60px 30px;
  position: relative;
  overflow: hidden;
  background-color: #ffffff;
  box-shadow: 0px 0px 8px 0px rgba(122, 122, 122, 0.2);
  transition: all 0.3s ease-in-out;
  border-radius: 46px;
}

.hero .awards-services-box {
  padding: 60px 30px 20px 30px;
  position: relative;
  overflow: hidden;
  background: #f0f6fd;
  box-shadow: rgba(0, 0, 0, 0.06) 0px 2px 4px 0px inset;
  transition: all 0.3s ease-in-out;
  border-radius: 100px 100px 0 0;
  z-index: 1;
  height: 100%;
  width: 100%;
  text-align: center;
}

.hero .awards-services-box .box-title {
  position: relative;
}

.hero .awards-services-box .title-box-back {
  color: var(--title-box-back-color);
}

.hero .awards-services-box .title {
  font-weight: 700;
  color: var(--title-box-color);
  font-size: var(--font-size-title);
  position: absolute;
  top: 32px;
  left: 0px;
  right: 0px;
  margin: 0px auto;
}

.hero .box-pad {
  padding: 46px 0;
}

.hero .awards-services-box .title a {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  transition: 0.3s;
}
