/* Fonts */
:root {
  --default-font: "Inter", sans-serif;
  --heading-font: "Inter", sans-serif;
  --nav-font: "Inter", sans-serif;
}
:root {
  --background-color: #ffffff;
  --default-color: #121212;
  --heading-color: #012169;
  --accent-color: #012169;
  --surface-color: #ffffff;
  --contrast-color: #ffffff;
  --nav-color: #012970;
  --nav-hover-color: #ff928a;
  --nav-mobile-background-color: #ffffff;
  --nav-dropdown-background-color: #ffffff;
  --nav-dropdown-color: #212529;
  --nav-dropdown-hover-color: #fc4b3e;
}

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

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

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);
}
h1 {
  font-size: 32px;
  font-weight: 600;
}
h2 {
  font-size: 30px;
  font-weight: 600;
}
h3 {
  font-size: 25px;
  font-weight: 600;
}

h4 {
  font-size: 18px;
  font-weight: 600;
}
p {
  font-family: Inter, sans-serif;
  line-height: 1.6;
  font-size: 15px;
  font-weight: 400;
}
.text-red{
  color: #ff0000;
}
.icon-20 {
  width: 20px;
  height: 20px;
}
.icon-30 {
  width: 30px;
  height: 30px;
}
.icon-60 {
  width: 60px;
  height: 60px;
}
.icon-50 {
  width: 50px;
  height: 50px;
}
.icon-40 {
  width: 40px;
  height: 40px;
}
.icon-70 {
  width: 70px;
  height: 70px;
}
.icon-80 {
  width: 80px;
  height: 80px;
}
.icon-100 {
  width: 100px;
  height: 100px;
}
.icon-120 {
  width: 120px;
  height: 120px;
}
.text-333{
  color: #000;
}
.btn-primary {
  background-color: var(--heading-color);
  border: var(--heading-color);
}
.btn-danger{
background-color: #d92727 !important;
} 
.btn-danger:hover{
  background-color: #cf4b4b !important;
  border-color:#cf4b4b;
}
.btn-primary,
.btn-danger,
.btn-light {
  border-radius: 20px;
}
.fs-13 {
  font-size: 13px;
}
.fs-12 {
  font-size: 12px;
}
.fs-11 {
  font-size: 11px;
}
.fs-14 {
  font-size: 14px;
}
.fs-16 {
  font-size: 16px;
}
.fs-18 {
  font-size: 18px;
}
.fs-20 {
  font-size: 20px;
}
.bg-light {
  background-color: #f2f6fa !important;
}
.bg-primary {
  background-color: var(--heading-color) !important;
}
sup {
  font-size: 8px;
  top: -1em;
}
h2 sup {
  top: -2em;
}
h3 sup {
  top: -2em;
}
.text-primary {
  color: var(--heading-color) !important;
}
ul {
  font-size: 15px;
  color: #121212;
  font-weight: 400;
}
.form-control, .form-select,textarea {
  font-size: 14px;
  color: #676a6a;
}
.required{
  position: relative;
}
.required::after{
  content: "*"; 
  position: absolute;  
  color: #d92727;
    right: 6px;
    top: 6px;
    font-size: 12px;
}
@media (max-width: 768px) {
  h1 {
    font-size: 28px;
  }
  h2 {
    font-size: 25px;
  }
  h3 {
    font-size: 20px;
  }
  h4 {
    font-size: 18px;
  }
}
body.modal-open {
  overflow: hidden;
}


/************for common card with border hover************/
.card-hover .card:hover {
  border-color: #0a589e;
  box-shadow: rgba(205, 32, 39, 0.2) 0px 2px 8px 0px;
}
/***************end*************************/
.card_hover:hover {
  background: #dceeff;
}
/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 10px 0;
  transition: all 0.5s;
  z-index: 997;
}

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

.header .logo {
  max-width: 100px;
  margin-right: 8px;
}

.header .logo h1 {
  font-size: 30px;
  margin: 0;
  font-weight: 700;
  color: var(--heading-color);
}

.header .btn-getstarted,
.header .btn-getstarted:focus {
  color: #000;
  background: #fff;
  font-size: 13px;
  padding: 8px 25px;
  margin: 0 0 0 30px;
  border-radius: 4px;
  transition: 0.3s;
  font-weight: 500;
}

.header .btn-getstarted:hover,
.header .btn-getstarted:focus:hover {
  color: var(--contrast-color);
  background: var(--nav-dropdown-hover-color);
}
.navmenu .title {
  color: #000;
}
@media (max-width: 768px) {
  .header .logo {
    max-width: 100px;
  }
}

@media (max-width: 1200px) {
  .header .logo {
    order: 1;
  }

  .header .btn-getstarted {
    order: 2;
    margin: 0 15px 0 0;
    padding: 6px 15px;
  }

  .header .navmenu {
    order: 3;
  }
}

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

/* Index Page Header
------------------------------*/
.header {
  --background-color: rgba(255, 255, 255, 0);
}

/* Index Page Header on Scroll
------------------------------*/
.scrolled .header {
  --background-color: rgba(1, 33, 105, 0.9);
}
.main-menu .header {
  position: static;
  background-color: rgba(1, 33, 105, 0.9);
}
.scrolled .header {
  position: fixed;
}
/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Navmenu - Desktop */
@media (min-width: 1200px) {
  .navmenu {
    padding: 0;
  }

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

  .navmenu li {
    position: relative;
  }

  .navmenu a,
  .navmenu a:focus {
    color: #fff;
    padding: 18px 12px;
    font-size: 15px;
    font-family: var(--nav-font);
    font-weight: 400;
    display: flex;
    align-items: center;
    justify-content: start;
    white-space: nowrap;
    transition: 0.3s;
  }

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

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

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

  .navmenu .dropdown ul {
    margin: 0;
    padding: 10px 0;
    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: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

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

  .navmenu .dropdown ul a {
    padding: 10px 20px;
    font-size: 13px;
    text-transform: none;
    color: var(--nav-dropdown-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-dropdown-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;
  }
}

/* Navmenu - Mobile */
@media (max-width: 1199px) {
  .mobile-nav-toggle {
    color: #fff;
    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;
    position: absolute;
    inset: 60px 20px 20px 20px;
    padding: 10px 0;
    margin: 0;
    border-radius: 6px;
    background-color: #fff;
    transition: 0.3s;
    z-index: 9998;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
    list-style-type: none;
  }
  .navmenu .title {
    padding: 10px 20px;
    margin-top: 15px;
    margin-bottom: 0;
    font-size: 15px;
    font-weight: 600;
    color: #000;
  }

  .navmenu a,
  .navmenu a:focus {
    color: #000;
    padding: 10px 20px;
    font-family: var(--nav-font);
    font-size: 14px;
    font-weight: 400;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }
  .navmenu ul.dropdown-active li a {
    justify-content: start;
  }
  .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: #0a589e;
  }

  .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);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    box-shadow: none;
    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;
    height: fit-content;
  }
}

/* Listing Dropdown - Desktop */
@media (min-width: 1200px) {
  .navmenu .listing-dropdown {
    position: static;
  }

  .navmenu .listing-dropdown ul {
    margin: 0;
    padding: 20px;
    background: var(--nav-dropdown-background-color);
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
    position: absolute;
    top: 130%;
    left: 0;
    right: 0;
    visibility: hidden;
    opacity: 0;
    display: flex;
    transition: 0.3s;
    border-radius: 4px;
    z-index: 99;
  }

  .navmenu .listing-dropdown ul li {
    flex: 1;
  }

  .navmenu .listing-dropdown ul li a,
  .navmenu .listing-dropdown ul li:hover > a {
    padding: 8px 20px;
    font-size: 13px;
    color: var(--nav-dropdown-color);
    background-color: var(--nav-dropdown-background-color);
  }
  .navmenu .listing-dropdown .title {
    padding: 5px 20px;
    font-size: 14px;
    margin-top: 0;
    position: relative;
    font-weight: 600;
  }
  /****************
  .navmenu .listing-dropdown .title:after{
    content: "";
    position: absolute;
    display: block;
    width: 60px;
    height: 3px;
    background: var(--accent-color);
    left: 20px;    
    bottom: 0;
    margin: auto;
  }
    ***************/
  .navmenu .listing-dropdown ul li a:hover,
  .navmenu .listing-dropdown ul li .active,
  .navmenu .listing-dropdown ul li .active:hover {
    color: var(--nav-dropdown-hover-color);
    background-color: var(--nav-dropdown-background-color);
  }

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

/* Listing Dropdown - Mobile */
@media (max-width: 1199px) {
  .navmenu .listing-dropdown ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 10px 0;
    margin: 10px 20px;
    background-color: var(--nav-dropdown-background-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    box-shadow: none;
    transition: all 0.5s ease-in-out;
    overflow-y: auto;
    max-height: 300px;
  }

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

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

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
  color: var(--default-color);
  background-color: #f9f9f9;
  font-size: 14px;
  padding-bottom: 50px;
  position: relative;
}



.footer .footer-newsletter h4 {
  font-size: 16px;
}
.footer .footer-newsletter p {
  font-size: 13px;
}



.footer .footer-newsletter .newsletter-form:focus-within {
  border-color: var(--accent-color);
}

.footer .footer-newsletter .newsletter-form input[type="email"] {
  border: 0;
  padding: 4px;
  width: 100%;
  background-color: color-mix(in srgb, var(--background-color), transparent 50%);
  color: var(--default-color);
}

.footer .footer-newsletter .newsletter-form input[type="email"]:focus-visible {
  outline: none;
}

.footer .footer-newsletter .newsletter-form input[type="submit"] {
  border: 0;
  font-size: 16px;
  padding: 0 20px;
  margin: -7px -8px -7px 0;
  background: var(--accent-color);
  color: var(--contrast-color);
  transition: 0.3s;
  border-radius: 0 4px 4px 0;
}

.footer .footer-newsletter .newsletter-form input[type="submit"]:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

.footer .footer-top {
  padding-top: 50px;
}

.footer .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 4px;

  font-size: 16px;
  color: var(--accent-color);
  margin-right: 10px;
  transition: 0.3s;
}

.footer h4 {
  font-size: 16px;
  font-weight: 500;
  position: relative;
  padding-bottom: 30px;
}
.footer h4:after{
  content: '';
width: 100%;
height:1px;
background: #dbdbdb;
left: 0;
position: absolute;
bottom: 15px;
}

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

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

.footer .footer-links ul i {
  margin-right: 3px;
  font-size: 12px;
  line-height: 0;
  color: var(--accent-color);
}

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

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

.footer .footer-links ul a {
  display: inline-block;
  color: #121212;
  line-height: 16px;
  font-size: 13px;
  font-weight: 400;
}

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

.footer .footer-about a {
  color: var(--heading-color);
  font-size: 24px;
  font-weight: 600;
  font-family: var(--heading-font);
}
.logo-width {
  width: 150px;
}
.footer .footer-about .social-links a {
  width: auto;
}

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

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

.footer .copyright p {
  margin-bottom: 0;
  font-size: 13px;
}

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

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

.scroll-top i {
  font-size: 24px;
  color: var(--contrast-color);
  line-height: 0;
}

.scroll-top:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  color: var(--contrast-color);
}

.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 Sections
--------------------------------------------------------------*/
section,
.section {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 60px 0;
  scroll-margin-top: 98px;
  overflow: clip;
}

@media (max-width: 1199px) {
  section,
  .section {
    scroll-margin-top: 56px;
  }
}

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

.section-title h2 {
  font-size: 13px;
  letter-spacing: 1px;
  font-weight: 700;
  padding: 8px 20px;
  margin: 0;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  display: inline-block;
  text-transform: uppercase;
  border-radius: 50px;
  font-family: var(--default-font);
}

.section-title p {
  color: var(--heading-color);
  margin: 10px 0 0 0;
  font-size: 32px;
  font-weight: 600;
  font-family: var(--heading-font);
}

.section-title p .description-title {
  color: var(--accent-color);
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  width: 100%;
  min-height: 100vh;
  position: relative;
  padding: 80px 0 60px 0;
  display: flex;
  align-items: center;
  background: url(../img/hero-bg.png) top center no-repeat;
  background-size: cover;
}

.hero h1 {
  margin: 0;
  font-size: 48px;
  font-weight: 700;
  line-height: 56px;
}

.hero p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin: 5px 0 30px 0;
  font-size: 20px;
  font-weight: 400;
}

.hero .btn-get-started {
  color: var(--contrast-color);
  background: var(--accent-color);
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 40px;
  border-radius: 4px;
  transition: 0.5s;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
}

.hero .btn-get-started i {
  margin-left: 5px;
  font-size: 18px;
  transition: 0.3s;
}

.hero .btn-get-started:hover {
  color: var(--contrast-color);
  background: color-mix(in srgb, var(--accent-color), transparent 15%);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
}

.hero .btn-get-started:hover i {
  transform: translateX(5px);
}

.hero .btn-watch-video {
  font-size: 16px;
  transition: 0.5s;
  color: var(--default-color);
  font-weight: 600;
}

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

.hero .btn-watch-video:hover {
  color: var(--accent-color);
}

.hero .btn-watch-video:hover i {
  color: color-mix(in srgb, var(--accent-color), transparent 15%);
}

.hero .animated {
  animation: up-down 2s ease-in-out infinite alternate-reverse both;
}

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

  .hero p {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 30px;
  }
}

@keyframes up-down {
  0% {
    transform: translateY(10px);
  }

  100% {
    transform: translateY(-10px);
  }
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about .content {
  background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
  padding: 40px;
}

.about .content h3 {
  font-size: 14px;
  font-weight: 700;
  color: var(--accent-color);
  text-transform: uppercase;
}

.about .content p {
  margin: 15px 0 30px 0;
  line-height: 24px;
}

.about .content .btn-read-more {
  color: var(--contrast-color);
  background: var(--accent-color);
  line-height: 0;
  padding: 15px 40px;
  border-radius: 4px;
  transition: 0.5s;
  box-shadow: 0px 5px 25px rgba(0, 0, 0, 0.1);
}

.about .content .btn-read-more span {
  font-family: var(--default-font);
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 1px;
}

.about .content .btn-read-more i {
  margin-left: 5px;
  font-size: 18px;
  transition: 0.3s;
}

.about .content .btn-read-more:hover i {
  transform: translateX(5px);
}

/*--------------------------------------------------------------
# Stats Section
--------------------------------------------------------------*/
.stats .stats-item {
  background-color: var(--surface-color);
  box-shadow: 0px 0 30px rgba(0, 0, 0, 0.1);
  padding: 30px;
}

.stats .stats-item i {
  color: var(--accent-color);
  font-size: 42px;
  line-height: 0;
  margin-right: 20px;
}

.stats .stats-item span {
  color: var(--heading-color);
  font-size: 36px;
  display: block;
  font-weight: 600;
}

.stats .stats-item p {
  padding: 0;
  margin: 0;
  font-family: var(--heading-font);
  font-size: 16px;
}

/*--------------------------------------------------------------
# Features Section
--------------------------------------------------------------*/
.features .feature-box {
  padding: 24px 20px;
  box-shadow: 0px 0 30px rgba(0, 0, 0, 0.1);
  transition: 0.3s;
  height: 100%;
}

.features .feature-box h3 {
  font-size: 18px;
  font-weight: 700;
  margin: 0;
}

.features .feature-box i {
  background: color-mix(in srgb, var(--accent-color), transparent 92%);
  color: var(--accent-color);
  line-height: 0;
  padding: 4px;
  margin-right: 10px;
  font-size: 24px;
  border-radius: 3px;
  transition: 0.3s;
}

.features .feature-box:hover i {
  background: var(--accent-color);
  color: var(--contrast-color);
}

/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
.services .service-item {
  background-color: var(--surface-color);
  box-shadow: 0px 0 30px rgba(0, 0, 0, 0.1);
  height: 100%;
  padding: 60px 30px;
  text-align: center;
  transition: 0.3s;
  border-radius: 5px;
}

.services .service-item .icon {
  font-size: 36px;
  padding: 20px 20px;
  border-radius: 4px;
  position: relative;
  margin-bottom: 25px;
  display: inline-block;
  line-height: 0;
  transition: 0.3s;
}

.services .service-item h3 {
  font-size: 20px;
  font-weight: 600;
}

.services .service-item .read-more {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 16px;
  padding: 8px 20px;
}

.services .service-item .read-more i {
  line-height: 0;
  margin-left: 5px;
  font-size: 18px;
}

.services .service-item.item-cyan {
  border-bottom: 3px solid #2268a7;
}

.services .service-item.item-cyan .icon {
  color: #0dcaf0;
  background: rgba(13, 202, 240, 0.1);
}

.services .service-item.item-cyan .read-more {
  color: #0dcaf0;
}

.services .service-item.item-cyan:hover {
  background: #2268a7;
}

.services .service-item.item-orange {
  border-bottom: 3px solid #fd7e14;
}

.services .service-item.item-orange .icon {
  color: #fd7e14;
  background: rgba(253, 126, 20, 0.1);
}

.services .service-item.item-orange .read-more {
  color: #fd7e14;
}

.services .service-item.item-orange:hover {
  background: #fd7e14;
}

.services .service-item.item-teal {
  border-bottom: 3px solid #20c997;
}

.services .service-item.item-teal .icon {
  color: #20c997;
  background: rgba(32, 201, 151, 0.1);
}

.services .service-item.item-teal .read-more {
  color: #20c997;
}

.services .service-item.item-teal:hover {
  background: #20c997;
}

.services .service-item.item-red {
  border-bottom: 3px solid #df1529;
}

.services .service-item.item-red .icon {
  color: #df1529;
  background: rgba(223, 21, 4, 0.1);
}

.services .service-item.item-red .read-more {
  color: #df1529;
}

.services .service-item.item-red:hover {
  background: #df1529;
}

.services .service-item.item-indigo {
  border-bottom: 3px solid #6610f2;
}

.services .service-item.item-indigo .icon {
  color: #6610f2;
  background: rgba(102, 16, 242, 0.1);
}

.services .service-item.item-indigo .read-more {
  color: #6610f2;
}

.services .service-item.item-indigo:hover {
  background: #6610f2;
}

.services .service-item.item-pink {
  border-bottom: 3px solid #f3268c;
}

.services .service-item.item-pink .icon {
  color: #f3268c;
  background: rgba(243, 38, 140, 0.1);
}

.services .service-item.item-pink .read-more {
  color: #f3268c;
}

.services .service-item.item-pink:hover {
  background: #f3268c;
}

.services .service-item:hover h3,
.services .service-item:hover p,
.services .service-item:hover .read-more {
  color: #fff;
}

.services .service-item:hover .icon {
  background: #fff;
}

/*--------------------------------------------------------------
# Faq Section
--------------------------------------------------------------*/
.faq .faq-container .faq-item {
  position: relative;
  padding: 20px 0;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
  overflow: hidden;
}

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

.faq .faq-container .faq-item h3 {
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  margin: 0 30px 0 0;
  transition: 0.3s;
  cursor: pointer;
  display: flex;
  align-items: center;
}

.faq .faq-container .faq-item h3 .num {
  color: var(--accent-color);
  padding-right: 5px;
}

.faq .faq-container .faq-item h3:hover {
  color: var(--accent-color);
}

.faq .faq-container .faq-item .faq-content {
  display: grid;
  grid-template-rows: 0fr;
  transition: 0.3s ease-in-out;
  visibility: hidden;
  opacity: 0;
}

.faq .faq-container .faq-item .faq-content p {
  margin-bottom: 0;
  overflow: hidden;
}

.faq .faq-container .faq-item .faq-toggle {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 16px;
  line-height: 0;
  transition: 0.3s;
  cursor: pointer;
}

.faq .faq-container .faq-item .faq-toggle:hover {
  color: var(--accent-color);
}

.faq .faq-container .faq-active h3 {
  color: var(--accent-color);
}

.faq .faq-container .faq-active .faq-content {
  grid-template-rows: 1fr;
  visibility: visible;
  opacity: 1;
  padding-top: 10px;
}

.faq .faq-container .faq-active .faq-toggle {
  transform: rotate(90deg);
  color: var(--accent-color);
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact .info-item {
  background: color-mix(in srgb, var(--default-color), transparent 96%);
  padding: 30px;
}

.contact .info-item i {
  font-size: 38px;
  line-height: 0;
  color: var(--accent-color);
}

.contact .info-item h3 {
  font-size: 20px;
  font-weight: 700;
  margin: 20px 0 10px 0;
}

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

.contact .php-email-form {
  background: color-mix(in srgb, var(--default-color), transparent 96%);
  padding: 30px;
  height: 100%;
}

.contact .php-email-form input[type="text"],
.contact .php-email-form input[type="email"],
.contact .php-email-form textarea {
  font-size: 14px;
  padding: 10px 15px;
  box-shadow: none;
  border-radius: 0;
  color: var(--default-color);
  background-color: color-mix(in srgb, var(--background-color), transparent 50%);
  border-color: color-mix(in srgb, var(--default-color), transparent 80%);
}

.contact .php-email-form input[type="text"]:focus,
.contact .php-email-form input[type="email"]:focus,
.contact .php-email-form textarea:focus {
  border-color: var(--accent-color);
}

.contact .php-email-form input[type="text"]::placeholder,
.contact .php-email-form input[type="email"]::placeholder,
.contact .php-email-form textarea::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.contact .php-email-form button[type="submit"] {
  background: var(--accent-color);
  color: var(--contrast-color);
  border: 0;
  padding: 10px 30px;
  transition: 0.4s;
  border-radius: 4px;
}

.contact .php-email-form button[type="submit"]:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}
.contact .info-box {
  color: #444444;
  text-align: center;  
  padding: 20px 0 30px 0;
  background: #f4fafa;
}
.contact .info-box h3 {
  font-size: 20px;
  color: #333;
  font-weight: 700;
  margin: 10px 0;
}

/*********************for home banner******************/
.banner-area {
  background-position: center center !important;
  background-repeat: no-repeat !important;
  background-size: cover !important;
  position: relative;
  z-index: 1;
  padding-top: 120px;
  padding-bottom: 120px;
  height: 100%;
  display: flex;
  align-items: center;
}

.banner-area.banner-area-text .banner-content {
  max-width: 100%;
}

.banner-area.banner-area-text .banner-content .top-title {
  color: #ffffff;
}

.banner-area.banner-area-text .banner-content h1 {
  color: #333;
  font-weight: 700;
}
.banner-content .top-title {
  display: block;
  margin-bottom: 15px;
  font-weight: 500;
}

.text-size {
  font-size: 30px;
  font-weight: 600;
  margin-bottom: 25px;
  line-height: normal;
}

.banner-content p {
  margin-bottom: 30px;
  font-weight: 400;
  line-height: 26px;
  color: #000;
}

.banner-image {
  text-align: center;
}
.banner-content .text-color {
  color: #fff;
}
.banner-content h2,
.banner-content h3,
.banner-content h4 {
  font-family: "Open Sans", sans-serif;
}
.banner-content h4 {
  font-size: 24px;
  font-weight: 300;
}
.banner-content h3 {
  font-size: 25px;
}
.banner-content h2 {
  font-weight: 600;
}
.d-table {
  width: 100%;
  height: auto;
}
.common-page-top {
  background-position: center center !important;
  background-repeat: no-repeat !important;
  background-size: cover !important;
  background-position: bottom;
  --webkit-padding-after: 150px;
  padding-block-end: 150px;
}
@media (min-width: 991px) {
  .banner-area.banner-area-text {
    display: flex;
    align-items: center;
    justify-content: start;
    height: 100%;
  }
  .text-size {
    font-size: 45px;
    line-height: normal;
  }
  .border-right {
    border-right: 1px solid #555;
  }
}
@media (max-width: 768px) {
  .banner-content h3 {
    font-size: 20px;
  }
  .banner-content h4 {
    font-size: 18px;
    font-weight: 300;
  }
  .banner-area {
    padding-top: 200px;
  }
}
/***********home video banner***********/
.dispaly-with-foreground {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 2;
  /****background: rgba(2, 4, 68, 0.5);*****/
  bottom: 0px;
}
.video-foreground video {
  height: 100%;
  width: 100%;
}
@media (max-width: 1349px) {
  .video-foreground video,
  .video-foreground img {
    height: 619px;
    object-fit: cover;
  }
}
@media (max-width: 768px) {
  .video-foreground video,
  .video-foreground img {
    height: 500px;
    object-fit: cover;
  }
}

/*********************end******************/
/************owl dot*************/
.owl-theme .owl-nav .disabled {
  opacity: 0.5;
  cursor: default;
}

.owl-theme .owl-nav.disabled + .owl-dots {
  margin-top: 20px;
  text-align: center;
}

.owl-theme .owl-dots .owl-dot {
  display: inline-block;
  zoom: 1;
}

.owl-theme .owl-dots .owl-dot span {
  width: 8px;
  height: 8px;
  margin: 5px 7px;
  background: #d6d6d6;
  display: block;
  transition: opacity 0.2s ease;
  border-radius: 30px;
}

.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
  background: #012169;
  box-shadow: rgba(245, 0, 0, 0.25) 0px 14px 28px, rgba(255, 0, 0, 0.22) 0px 10px 10px;
}
/************owl************/

.owl-nav button:focus {
  outline: none;
}

.owl-prev,
.owl-next {
  position: absolute;
  display: flex;
  align-items: center;
  width: auto;
  top: 50%;
  transform: translateY(-50%);
}

.owl-prev {
  left: 0%;
}

.owl-next {
  right: 0%;
}

.owl-nav .owl-prev,
.owl-nav .owl-next {
  background: #d92727 !important;
}

.owl-nav .owl-prev i,
.owl-nav .owl-next i {
  font-size: 18px;
  font-weight: 500;
  padding: 0 13px;
  color: #fff;
}
.our-product-new .owl-nav .owl-prev{
  border-radius: 0 20px 20px 0;
}
.our-product-new .owl-nav .owl-next{
  border-radius: 20px 0px 0px 20px;
}
/****************end************************/
/****************nav tab*****************/
.navTab a {
  font-size: 15px;
  color: #000;
}
.navTab .nav-link {
  background-color: transparent;
  border-bottom: 2px solid #f2f6fa;
  border-radius: 0;
  max-width: 200px;
  color: #000;
  padding-left: 0;
  margin-right: 10px;
  position: relative;
  padding-bottom: 15px;
}
.navTab .nav-link.active {
  background-color: transparent;
  color: #0a589e;
}
.navTab .nav-link.active::after {
  content: "";
  position: absolute;
  width: 100px;
  border-bottom: 2px solid var(--heading-color);
  left: 0;
  bottom: 0;
}
.scroll-tab-height {
  height: auto;
}
.steps {
  width: 60px;
  height: 60px;
  top: -30px;
  border-width: 4px !important;
  background-color: #d92027;
  font-size: 16px;
}
.tick {
  position: relative;
}
.tick::before {
  content: "\f058";
  height: 16px;
  width: 16px;
  color: #00875a;
  position: absolute;
  font-family: fontawesome;
  background-size: contain;
  left: -22px;
  font-size: 16px;
  background-repeat: no-repeat;
}
.product-list .list-group-item::before {
  content: "\f058";
  height: 16px;
  width: 16px;
  color: #00875a;
  position: absolute;
  font-family: fontawesome;
  background-size: contain;
  left: 20px;
  font-size: 16px;
  background-repeat: no-repeat;
}

.product-list .list-group-item.cross::before {
  content: "\f057";
  font-family: fontawesome;
  color: #e3170e;
}
.TMB-Plan {
  background-repeat: no-repeat;
  background-size: cover;
}
.TMB-Plan .list-group-item:nth-child(odd) {
  background-color: transparent;
}
.TMB-Plan .list-group-item {
  color: #333;
  background-color: transparent;
}
.rounded-20 {
  border-radius: 20px;
}

.product-list .list-group-item {
  display: flex;
  justify-content: space-between;
  padding-left: 45px;
  border: 0px;
  text-align: left;
  color: #666;
}
.list-group-item .services {
  min-width: 110px;
  text-align: left;
  color: #0a589e;
  font-weight: 400;
}

.processSystem .textDigit {
  font-size: 80px;
  opacity: 0.2;
  font-weight: 600;
  color: #2387c8;
}
@media (max-width: 768px) {
  .product-list .list-group-item {
    flex-direction: column;
  }
  .list-group-item .services {
    margin-left: 0px;
    color: #0a589e;
    margin-top: 10px;
  }
}

.our-journey {
  padding: 30px 0px;
  width: 100%;
  background-image: url(../images/cfar-cover.jpg);
  background-repeat: no-repeat, no-repeat;
  background-size: cover;
  height: auto;
  background-attachment: fixed;
}
.our-journey .hvrShadow {
  border: 1px solid #666666;
}
.our-journey .hvrShadow:hover {
  border: 1px solid #96c3eb;
}
.benefitPlan .textDigit {
  font-size: 50px;
  opacity: 0.3;
  font-weight: 600;
  color: #2387c8;
}

.cardBox p {
  font-size: 0.9rem;
  line-height: 24px;
}
.cfar .box {
  border: 1px solid #e3e5e9;
}
.cfar .box:hover {
  border: 1px solid #6cb7e8;
}
.tech .box-blue {
  background: rgb(24, 40, 72);
  background: linear-gradient(-40deg, rgba(24, 40, 72, 1) 1%, rgba(40, 67, 130, 1) 100%);
}

@media (min-width: 992px) {
  .connect {
    clip-path: polygon(0 21%, 100% 0, 100% 100%, 0 100%);
    padding-top: 50px;
  }
}
@media (max-width: 768px) {
  .cfar .box {
    background: #dce7ff;
    border: 1px solid #dce7ff;
  }
}
/**************steps**************************/
.Steps .boxWidth {
  width: 200px;
  padding: 5px;
}
.Steps .boxWidth:hover {
  background-color: #d3e5ff;
  border-radius: 5px;
}
.Steps .after-direction {
  position: relative;
}
.Steps .after-direction::after {
  content: "";
  right: -25px;
  background: url(../images/icons/round-icon1.png);
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  bottom: 0;
  display: flex;
  align-items: center;
  height: 40px;
  width: 40px;
}
.ftr-main hr {
  background-color: #fff;
}

.panTab .nav-link.active {
  background-color: #0a589e;
}
.panTab .nav-link {
  color: #333;
  border: 1px solid #0a589e;
  margin-right: 5px;
  font-size: 14px;
  font-weight: 400;
}
.healthPkg .tab-content p {
  font-size: 0.9rem;
}

.healthPkg .card:hover {
  border-color: var(--secondry);
  box-shadow: rgba(205, 32, 39, 0.2) 0px 2px 8px 0px;
}

.hvrShadow {
  border: 1px solid transparent;
}
.tech .hvrShadow {
  border: 1px solid #65a8e2;
}
.hvrShadow:hover {
  border: 1px solid #e7e7e7;
}

/********************cta banner****************/
.cta-section {
  inline-size: 100%;
  overflow: hidden;
  position: relative;
  text-align: center;
  z-index: 1;
  background: linear-gradient(91deg, #04263f, #011422 58%);
}
.cta-bg-image {
  inset-block-end: -20px;
  /* block-size: 376px; */
  inline-size: 538px;
  /* inset-block-end: -70px; */
  inset-inline-end: -20px;
  max-inline-size: unset;
  position: absolute;
  z-index: -1;
}
.horizantal-grid .card {
  background-color: #f3f4f5;
  display: flex;
  flex-direction: row;
  align-items: center;
  /******padding: 30px 15px;*****/
  z-index: 1;
  overflow: hidden;
}
.horizantal-grid .icons-120 {
  width: 120px;
}
.horizantal-grid .content {
  display: flex;
  align-items: center;
  padding: 5px 20px;
}
.cta-patern {
  opacity: 0.3;
}
.cta-patern {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: -1;
}
/*********************end**********************/
.our-products {
  background-color: rgba(9, 77, 79, 0.35);
  background-image: linear-gradient(126deg, #04263f 24%, #094d4f);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
  color: var(--khaki-light);
  border-radius: 20px;
  grid-template-rows: auto;
  grid-template-columns: 0.75fr 0.5fr 0.5fr;
  padding: 60px;
}
.our-products h5 {
  color: #8fe3e6;
}
.our-products h2,
.features-offers h3 {
  margin-top: 20px;
  margin-bottom: 20px;
}
.features-offers h3 {
  color: #8fe3e6;
}
.paragraph-bigger {
  font-size: 18px;
  font-weight: 300;
  line-height: 30px;
}
.product-box {
  color: white;
  cursor: pointer;
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  border: 2px solid transparent;
  border-radius: 20px;
  min-height: 400px;
  transition: opacity 0.2s, box-shadow 0.2s, border-color 0.4s;
  padding: 30px;
}
.product-box:hover {
  border-color: #8fced0;
  background-position: 50%;
  background-size: cover;
}
.our-products h3 {
  background-image: url(../images/icons/arrow-right-white.svg);
  background-position: 99% 62%;
  background-repeat: no-repeat;
  background-size: 22px;
  margin-top: 0;
  padding-right: 35px;
  font-size: 18px;
  font-weight: 600;
  line-height: 29px;
  display: inline;
}
.features-offers {
  z-index: 1;
  background-image: linear-gradient(126deg, #0d3ca4 24%, #012169);
  color: #fff;
  border: 1px solid rgba(143, 206, 208, 0.42);
  border-radius: 20px;
  align-content: stretch;
  justify-content: stretch;
  width: 100%;
  max-width: 1440px;
  min-height: 450px;
  margin-bottom: 40px;
  margin-left: auto;
  margin-right: auto;
  padding: 30px 60px 45px;
  display: grid;
  position: -webkit-sticky;
  position: sticky;
  top: 8rem;
}
.features-offers.one {
  margin-bottom: 2rem;
}
.features-offers.two {
  margin-bottom: 2rem;
  top: 10rem;
}
.features-offers.three {
  margin-bottom: 2rem;
  top: 12rem;
}
.features-offers.four {
  margin-bottom: 2rem;
  top: 14rem;
}
.features-offers.five {
  margin-bottom: 2rem;
  top: 16rem;
}
.features-offers.six {
  margin-bottom: 2rem;
  top: 18rem;
}
.features-offers .paragraph-bigger {
  color: #fff !important;
}
.features-offers .btn-primary {
  background-color: #8fe3e6;
  color: #012169;
}
.features-offers .btn-primary:hover {
  background-color: #fff;
}
@media (max-width: 768px) {
  .features-offers {
    position: static;
    padding: 30px 15px 45px;
  }
  .features-offers.one,
  .features-offers.two,
  .features-offers.three,
  .features-offers.four {
    margin-bottom: 2rem;
  }
  .our-products {
    padding: 25px 15px;
  }
  .our-products h2,
  .features-offers h3 {
    font-size: 22px;
    line-height: normal;
    font-weight: 600;
  }
  .our-products h3 {
    font-size: 18px;
  }
  .paragraph-bigger {
    font-size: 14px;
    line-height: 24px;
  }
}
/*************************terms & Conditions page************/
.ama-policies h2 {
  font-size: 22px;
  margin-top: 50px;
}
.roman {
  list-style-type: lower-roman;
}
.ama-policies ul li {
  margin-bottom: 8px;
}
/**********************end***************************/

.hasFunction:has("test") {
  background: red;
}

  /***************for services***************/
  .ama-service{
    position: relative;
      overflow: hidden;
  }
  .ama-service img{
    width: 100%;
  }
  .overlay-area{
    position: absolute;
      left: 0;
      bottom:0;
      width: 100%;
      height: 100%;
      z-index: 1;
      opacity: 0.7;
      background: #000;
      transition: all 0.5s linear;
      border-radius: 0.25rem;
  }
  .ama-service .service-content{
  position: absolute;
      left: 0%;
      padding: 30px;
      bottom: 0;
      opacity: 1;
      width: 100%;
      z-index: 2;
      opacity: 1;
      transition: all 0.5s linear;
      height: 100px;
    }
    .service-content h4{
      font-size:18px;
    }
    @media (max-width:768px){
      .ama-service img {
      height: 200px;
      object-fit: cover;
      }
    }
/***************end*******************/
.card-bg{
  background-color: #f1f1f1; 
}
.card-height{
  min-height: 500px;
  background-position: center 115px;
  background-repeat: no-repeat;
  background-size: contain;
}
.rounded-20{
  border-radius: 20px;  
}
.box-content{
  height: 230px;
}
.height-of-img{
  height: 200px;
}
.height-of-img img{
  width: 100%;
}
.our-product-new .box-content h3 {
font-size: 24px;
}
.pRd-list .list-group-item{
  border-color: #196383;
}
.pRd-list .list-group-item a{
  color: #8fe3e6;
}
.pRd-list .list-group-item a:hover{
  color: #ff928a;
}

/**********************service******************/

.affinity-service .card{
border:1px solid #012169;
}
.affinity-service .card-img-top{
width: 100%;
height: 250px;
object-fit: cover;
border-radius: 20px 20px 0 0;
}
.affinity-service .product-title{
  text-decoration: none;
  font-weight: 500;
  font-size: 18px;

}
.affinity-service .sub-titl{
  font-weight: 500;
}
.cnt-height{
  height: 150px;
}
.cnt-height p:last-child{
  color: #121212;
  font-size: 15px;
}
.nex-link{
  position: relative;
  height: 50px;
overflow: hidden;
}
.nex-link:after{
    content: "";
    position: absolute;
    bottom: -2px;
    right: 0;
    left: 6px;
    width: 100%;
    height: 49px;
    background-image: url(../images/icons/affinity-link.png);
    background-position: right;
    background-repeat: no-repeat;
    background-size: contain;   
}

.nex-link .nav-link{
  position: absolute;
  bottom: 15px;
  left: 25px;
  font-size: 14px;
  font-weight: 500;
}
.ct-bg{
  background-position: center;
  background-size: cover !important;
  height: 100%;
  background-repeat: no-repeat !important;
}


.ct-bg .card_hover:hover{
  background: rgb(143, 227, 229, 0.13);
}
.ct-hg-300{
  height: 400px;
}
.cnt-card{
  padding:40px 30px 0 30px;
}
.cnt-card h4,.cnt-card p{
  color: #fff;
}
.cnt-card h4{
  font-size: 20px;
  margin-bottom: 15px;
  position: relative;
}
.cnt-card h4::after{
content: "";
left: 0;
bottom: -5px;
position: absolute;
height: 1px;
width: 40%;
background: #8fe3e5;
}
.cnt-card p{
  font-size: 15px;
}
.our-service h3{
  margin: 20px 0;
}
.our-service p{
  font-size: 15px;
}
.btn-fix-bottom{
  position: fixed;
  display: inline-block;
  top: 50%;
   transform: translateY(-50%);
  bottom: 0px; 
  right: 0;
  z-index: 1;
  margin: 0 auto;
  height: 165px;
  text-align: center;  
  writing-mode:sideways-lr;
}
@media (max-width:768px){
  .btn-fix-bottom{
  position: fixed;
  display: inline-block; 
  top: auto;
  transform: none;
  bottom: 10px; 
  right: 0;
  left: 0;
  z-index: 1;
  margin: 0 auto;
  text-align: center;  
  writing-mode:initial;
  height: auto;
}
}
.mask-65 {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 30%;
    background: linear-gradient(75deg, #166ead, #219eca) !important;
    z-index: -1;
}
.stroke-heading {
  color: white;
  font-size: 40px;
  text-shadow: 1px 0 black, 0 -1px black, -1px 0 black, 0 1px black;
}
