 /* Fonts */
 :root {
   --default-font: "Inter", sans-serif;
 }

 /* Global Colors */
 :root {
   --background-color: #ffffff;
   --default-color: #000B26;
   --heading-color: #3e5055;
   --accent-color: #0B83FF;
   --surface-color: #ffffff;
   --contrast-color: #3e5055;
 }

 /* Nav Menu Colors */
 :root {
   --nav-color: #000B26;
   --nav-hover-color: #0B83FF;
   --nav-mobile-background-color: #ffffff;
   --nav-dropdown-background-color: #ffffff;
   --nav-dropdown-color: #000B26;
   --nav-dropdown-hover-color: #0B83FF;
 }

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

 .dark-background {
   --background-color: #060606;
   --default-color: #ffffff;
   --heading-color: #ffffff;
   --surface-color: #252525;
   --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);
 }

 /* PHP Email Form Messages
------------------------------*/
 .php-email-form .error-message {
   display: none;
   background: #df1529;
   color: #ffffff;
   text-align: left;
   padding: 15px;
   margin-bottom: 24px;
   font-weight: 600;
 }

 .php-email-form .sent-message {
   display: none;
   color: #ffffff;
   background: #059652;
   text-align: center;
   padding: 15px;
   margin-bottom: 24px;
   font-weight: 600;
 }

 .php-email-form .loading {
   display: none;
   background: var(--surface-color);
   text-align: center;
   padding: 15px;
   margin-bottom: 24px;
 }

 .php-email-form .loading:before {
   content: "";
   display: inline-block;
   border-radius: 50%;
   width: 24px;
   height: 24px;
   margin: 0 10px -6px 0;
   border: 3px solid var(--accent-color);
   border-top-color: var(--surface-color);
   animation: php-email-form-loading 1s linear infinite;
 }

 @keyframes php-email-form-loading {
   0% {
     transform: rotate(0deg);
   }

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

 /*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
 .header {
   color: var(--default-color);
   background-color: var(--background-color);
   padding: 15px 0;
   transition: all 0.5s;
   z-index: 997;
 }

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

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

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



 .header .btn-getDemo,
 .header .btn-getDemo:focus {
   color: var(--default-color);
   background: var(--background-color);
   font-size: 14px;
   padding: 9px 16px;
   margin: 0 0 0 auto;
   border-radius: 12px;
   transition: 0.3s;
 }

 .header .btn-getDemo:hover,
 .header .btn-getDemo:focus:hover {
   color: var(--accent-color);
   background: color-mix(in srgb, var(--background-color), transparent 15%);
 }

 .header .btn-signIn,
 .header .btn-signIn:focus {
   color: var(--surface-color);
   background: var(--accent-color);
   border: var(--accent-color) solid 1px;
   font-size: 14px;
   padding: 9px 16px;
   margin: 0 0 0 15px;
   border-radius: 12px;
   transition: 0.3s;
 }

 .header .btn-signIn.main-navlist{
  background-color: transparent;
  color: #000B26;
 }

 .header .btn-signIn:hover,
 .header .btn-signIn:focus:hover {
   color: var(--accent-color);
   background: color-mix(in srgb, var(--surface-color), transparent 15%);
 }

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

   .header .btn-signIn,
   .header .btn-getDemo {
     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
------------------------------*/
 .index-page, .page-id-16 {
   background: url(./../img/main-bg.png) no-repeat top center;
 }


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

 /* Index Page Header on Scroll
------------------------------*/
 .index-page.scrolled .header {
   --background-color: #ffffff;
 }

 /*--------------------------------------------------------------
# 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 a,
   .navmenu a:focus {
     color: var(--nav-color);
     padding: 10px 15px;
     font-size: 14px;
     font-family: var(--default-font);
     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;
     transition: 0.3s;
   }


   .navmenu li a{
    border: #ccc solid 1px;
    border-radius: 12px;
   }
   .navmenu li:last-child a {
     /* padding-right: 0; */
   }

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

   .navmenu>ul>li:hover>a,
   .navmenu>ul>li.active>a {
     border-radius: 10px;
     background: #fff;
     box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);

   }

   .navmenu .dropdown ul {
     margin: 0;
     padding: 10px 0;
     background: var(--nav-dropdown-background-color);
     display: block;
     position: absolute;
     visibility: hidden;
     left: 0px;
     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: 15px;
     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 .megamenu {
     position: static;
   }

   .navmenu .megamenu ul {
     margin: 0;
     padding: 10px;
     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 .megamenu ul li {
     flex: 1;
   }

   .navmenu .megamenu ul li a,
   .navmenu .megamenu ul li:hover>a {
     padding: 10px 20px;
     font-size: 15px;
     color: var(--nav-dropdown-color);
   }

   .navmenu .megamenu ul li a:hover,
   .navmenu .megamenu ul li .active,
   .navmenu .megamenu ul li .active:hover {
     color: var(--nav-dropdown-hover-color);
   }

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

 /* Mobile Navigation */
 @media (max-width: 1199px) {
   .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);
     overflow-y: auto;
     transition: 0.3s;
     z-index: 9998;
     box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
   }

   .navmenu a,
   .navmenu a:focus {
     color: var(--nav-dropdown-color);
     padding: 10px 20px;
     font-family: var(--default-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: var(--nav-dropdown-hover-color);

   }

   .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%);
     transition: all 0.5s ease-in-out;
     box-shadow: none;
   }

   .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 Footer
--------------------------------------------------------------*/
 .footer {
   color: #A1A1A1;
   background-color: #000000;
   font-size: 13px;
   padding: 100px 0 30px;
   position: relative;
 }


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

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

 .footer a {
   color: #A1A1A1;
 }

 .footer a:hover {
   color: #fff;
 }

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

 .footer .footer-links ul li {
   padding: 5px 0;
 }

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

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

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

 @media (max-width: 640px) {
   .footer {
     padding: 50px 0 20px;
   }
 }

 /*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
 #preloader {
   position: fixed;
   inset: 0;
   z-index: 9999;
   overflow: hidden;
   background-color: var(--background-color);
   transition: all 0.6s ease-out;
   width: 100%;
   height: 100vh;
 }

 #preloader:before,
 #preloader:after {
   content: "";
   position: absolute;
   border: 4px solid var(--accent-color);
   border-radius: 50%;
   animation: animate-preloader 2s cubic-bezier(0, 0.2, 0.8, 1) infinite;
 }

 #preloader:after {
   animation-delay: -0.5s;
 }

 @keyframes animate-preloader {
   0% {
     width: 10px;
     height: 10px;
     top: calc(50% - 5px);
     left: calc(50% - 5px);
     opacity: 1;
   }

   100% {
     width: 72px;
     height: 72px;
     top: calc(50% - 36px);
     left: calc(50% - 36px);
     opacity: 0;
   }
 }

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

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

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

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

 /*--------------------------------------------------------------
# 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: color-mix(in srgb, var(--default-color), transparent 96%);
   color: var(--default-color);
   background-color: var(--background-color);
   padding: 25px 0;
   position: relative;
 }

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

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

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

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

 /*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
 section,
 .section {
   color: var(--default-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 p {
   margin-bottom: 0;
 }

 @media (min-width: 768px) {

   .section-title h2 {
     font-size: 24px;
   }

 }

 /*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
 .hero {
   width: 100%;
   position: relative;
   padding: 80px 0 40px 0;
   display: flex;
   align-items: center;
   overflow: hidden;
 }

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

 .hero h1 {
   margin: 0 0 20px;
   font-size: 28px;
   font-weight: 700;
   line-height: 26px;
 }

 .hero h1 span {
   color: var(--accent-color);
 }

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

 @media (min-width: 768px) {
   .hero .content {
     max-width: 860px;
     text-align: center;
   }

 }

 .hero .btn-get-started {
   color: var(--surface-color);
   background: var(--default-color);

   font-weight: 500;
   font-size: 16px;
   letter-spacing: 1px;
   display: inline-block;
   padding: 12px 20px;
   border-radius: 100px;
   transition: 0.5s;
   box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);

   align-items: center;
   display: flex
 }

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

 .hero .btn-watch-video {
   font-size: 16px;
   transition: 0.5s;
   margin-left: 15px;
   color: var(--default-color);
   font-weight: 600;
   padding: 8px 10px;
   border-radius: 100px;
   border: var(--accent-color) solid 1px;
 }

 .hero .btn-watch-video i {
   color: #F14437;
   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: #F14437;
 }

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

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

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

 /*--------------------------------------------------------------
# Featured blog Section
--------------------------------------------------------------*/
 .how-easy {
   padding: 0px 0 30px;
 }

 .how-easy .content {
   position: relative;
   padding-top: 20px;
   max-width: 700px;
   margin: 0 auto;
 }


 .how-easy h3 {
   margin: 0 0 20px;
   font-size: 32px;
   font-weight: 700;
   line-height: 42px;
 }

 @media screen and (min-width:991px) {
   .how-easy object{
      max-width: 75% !important;
      max-height: 100vh;
    }
 }
 @media (max-width: 640px) {
   .how-easy h3 {
     font-size: 20px;
     line-height: 30px;
   }
 }

 /*--------------------------------------------------------------
# features Section
--------------------------------------------------------------*/
 .features {
   padding-bottom: 20px;
 }

 .features h3 {
   margin: 0 0 20px;
   font-size: 32px;
   font-weight: 700;
   line-height: 42px;
 }

 .features .col-xl-4 {
   margin: 10px 0;
 }

 .features .feature {
   background: #FFFCF0;
   border: #DFD8BE solid 1px;
   border-radius: 100px;
   padding: 20px 40px;
   width: 100%;
   height: 100%;
   align-items: center;
   vertical-align: middle;
   font-weight: 600;
 }

 .features .feature-1 {
   background: #FFFCF0;
   border: #DFD8BE solid 1px;
 }

 .features .feature-2 {
   background: #F1FFFA;
   border: #BEDFDD solid 1px;
 }

 .features .feature-3 {
   background: #EFF8FF;
   border: #BECADF solid 1px;
 }

 .features .feature-4 {
   background: #F8F1FF;
   border: #D2BEDF solid 1px;
 }

 .features .feature-5 {
   background: #FFF4F4;
   border: #DFBEBE solid 1px;
 }


 .features .feature-6 {
   background: #FFFCF0;
   border: #DFD8BE solid 1px;
 }

 .features .content .read-more {
   font-weight: 600;
   background: #fff;
   border: #0B83FF solid 1px;
   color: #000B26;
   border-radius: 100px;
   padding: 20px 40px;
   box-shadow: 0px 10px 24px rgba(0, 122, 255, 0.16);

 }

 .features .content .read-more:hover {
   color: var(--accent-color);
 }

 @media (max-width: 640px) {
   .features h3 {
     font-size: 20px;
     line-height: 30px;
   }
 }


 @media (min-width: 1200px) {
   .features .feature {
     min-height: 90px;
     display: grid;
     text-align: center;
   }
 }

 /*--------------------------------------------------------------
# solutions Section
--------------------------------------------------------------*/
 .solutions {
   padding: 100px 0;
   background-color: #EFF7FF;
 }

 .solutions h3 {
   margin: 0 0 20px;
   font-size: 32px;
   font-weight: 700;
   line-height: 42px;
 }

 .solutions .solution-logo {
   display: flex;
   justify-content: center;
   align-items: center;
   overflow: hidden;
   background: #fff;
   border-radius: 20px;
   border: rgba(209, 209, 214, 1) solid 1px;

 }

 .solutions .solution-logo img {
   padding: 15px 20px;
   max-width: 100%;
   transition: 0.3s;
 }

 .solutions .solution-logo img:hover {
   filter: none;
   opacity: 1;
   opacity: 0.8;
 }

 @media (max-width: 640px) {
   .solutions {
     padding: 50px 0;
   }

   .solutions .solution-logo img {
     padding: 20px;
   }

   .solutions h3 {
     font-size: 20px;
     line-height: 30px;
   }
 }


 /*--------------------------------------------------------------
# securitys Section
--------------------------------------------------------------*/
 .securitys {
   padding: 100px 0;
 }

 .securitys h3 {
   margin: 0 0 20px;
   font-size: 32px;
   font-weight: 700;
   line-height: 42px;
 }

 .securitys .security-logo {
   display: flex;
   justify-content: center;
   align-items: center;
   overflow: hidden;
   background: #fff;
   border-radius: 20px;
   border: rgba(209, 209, 214, 1) solid 1px;

 }

 .securitys .security-logo img {
   padding: 20px 40px;
   max-width: 90%;
   transition: 0.3s;
 }

 .securitys .security-logo img:hover {
   filter: none;
   opacity: 1;
   opacity: 0.8;
 }

 @media (max-width: 640px) {
   .securitys {
     padding: 50px 0;
   }

   .securitys .security-logo img {
     padding: 20px;
   }

   .securitys h3 {
     font-size: 20px;
     line-height: 30px;
   }
 }

 /*--------------------------------------------------------------
# lets connect Section
--------------------------------------------------------------*/
 .lets-connect {
   padding-top: 0;
   padding-bottom: 100px;
 }

 .lets-connect .container {
   background-image: linear-gradient(180deg, #01D1FF 0, #074F99 100%);
   background-repeat: no-repeat;
   border-radius: 20px;
 }

 .lets-connect .section {
   background: url(./../img/lets-connect-bg.png) no-repeat top center;
   padding: 80px;
   color: #fff;
 }

 .lets-connect h2 {
   margin: 0 0 20px;
   font-size: 32px;
   font-weight: 700;
   line-height: 42px;
   color: #fff;
 }

 .lets-connect form .email {
   border: 0;
   padding: 10px 15px;
   width: 100%;
   background-color: var(--background-color);
   color: var(--default-color);
   border-radius: 12px;
 }

 .lets-connect form .email:focus-visible {
   outline: none;
 }

 .lets-connect form .btn {
   border: 0;
   font-size: 16px;
   padding: 10px 15px;
   border-radius: 12px;
   background: var(--contrast-color);
   color: var(--surface-color);
   transition: 0.3s;
   border-radius: 12px;
 }

 .lets-connect form .btn:hover {
   background: var(--surface-color);
   color: var(--accent-color);
 }

 @media screen and (max-width:767px) {
  .lets-connect{
    padding-bottom: 0px !important;
  }
  .lets-connect .container{
    border-radius: 0px;
  }
  .lets-connect .section{
    padding: 80px 15px;
  }
  .features .feature{
    padding: 10px 30px;
  }
  .features{
    padding-top: 20px;
  }
 }

 @media (max-width: 640px) {
   .lets-connect h2 {
     font-size: 20px;
     line-height: 30px;
   }

   .lets-connect {
     padding-bottom: 50px;
   }
   .header .btn-signIn {
    margin: 0 8px 0 0;
    padding: 4px 8px;
    font-size: 12px;
   }
   .header .btn-signIn:last-child{
    margin-right: 0px;
   }
 }
 .navmenu{
  display: none;
 }

 /*--------------------------------------------------------------
# perfrom Details Section
--------------------------------------------------------------*/
 .perfrom-details {
   background: #EFF7FF;
   padding-top: 100px;
   padding-bottom: 0;
 }


 .perfrom-details .perfrom-item h3 {
   font-weight: 700;
   font-size: 26px;
   margin-bottom: 15px;
 }


 .perfrom-details .perfrom-item img {
   border-radius: 15px;
 }

 @media (max-width: 640px) {
   .perfrom-details {
     padding-top: 50px;
     padding-bottom: 0;
   }

   .perfrom-details .perfrom-item h3 {
     font-size: 20px;
   }
 }

 /*--------------------------------------------------------------
# blog Section
--------------------------------------------------------------*/
 .blog {
   padding: 100px 0;
 }

 .blog .service-item {
   background-color: var(--surface-color);
   border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
   height: 100%;
   padding: 30px;
   transition: 0.3s;
   border-radius: 10px;
   display: flex;
 }

 .blog .single-featured {
   width: 90%;
 }

 .blog .blog-img {
   border-radius: 15px;
   min-width: 100%;
   margin: 0 auto 20px;
 }

 .blog .featured-content h3 {
   font-size: 14px;
   font-weight: 700;

 }

 .blog .blog-details .bloger-img {
   width: 44px;
   height: 44px;
   border-radius: 50px;
 }

 .blog .blog-details .blog-time {
   font-size: 14px;
 }

 @media (max-width: 640px) {
   .blog {
     padding: 50px 0;
   }
 }


 /**-------------------------------------
 #feature details page 
 -------------------------------------*/

 /*--------------------------------------------------------------
# Service Details Section
--------------------------------------------------------------*/
 .feture-details {
   background: linear-gradient(0deg, #FFFFFF, #FFFFFF);
   padding: 0px 0px 0px;
 }

 .feture-details .feture-box {
   background-color: var(--surface-color);
   padding: 20px;
   /* box-shadow: 0px 2px 20px rgba(0, 0, 0, 0.1); */
   height: 100%;
 }


 .feture-details .feture-box h4 {
   font-size: 20px;
   font-weight: 700;
   padding-bottom: 15px;
   margin-bottom: 15px;
   padding: 10px 15px 12px 15px;
   color: #8E8E93;
 }

 .feture-details .fetures-list {
   background-color: var(--surface-color);
   height: calc(100vh - 80px);
    overflow-x: auto;
    padding-right: 15px;
 }

 .feture-details .fetures-list a {
   display: inline-block;
   width: 300px;
   align-items: center;
   padding: 12px 20px;  
   color: var(--nav-color);
   border-radius: 12px;
   font-size: 16px;
   font-weight: 600;
   font-family: "Inter", sans-serif;
   text-overflow: ellipsis;
   overflow: hidden;
    white-space: nowrap;
 }

 
 .feture-details .fetures-list a.active {
   color: var(--surface-color);
   background-color: var(--nav-color);
 }


 .feture-details .fetures-list a:hover {
   color: var(--surface-color);
   background-color: var(--nav-color);
 }

 .feture-details .feature-contnet-main {
   padding: 0px;
   background-color: #F9F6F4;
   width: calc(100% - 360px);
 }

 .feture-details .feature-contnet h3 {
   font-size: 20px;
   font-weight: 700;
   padding: 15px 0;
   color: #8E8E93;
 }

 .feature-contnet img{
    max-width:100%; width:100%; display:block; margin:0 0 25px 0 ; 
 }
 
 @media screen and (max-width:767px) {
  .feature-contnet-main{
    width: 100% !important;
    padding: 10px !important;
  }
  .feture-details .fetures-list{
    display: flex;
    height: auto;
    margin-top: 10px;
  }
  .feture-details .fetures-list a{
    white-space: nowrap;
    overflow: visible;
    margin: 10px 0px;
  }
  .feture-details .feture-box{
    width: 100% !important;
  }
 }
 @media (max-width: 640px) {
   .feture-details .feature-contnet {
     padding: 20px 30px;
   }
 }





 .feture-box .fetures-list::-webkit-scrollbar { 
  width: 5px; }

.feture-box .fetures-list::-webkit-scrollbar-thumb {
  background: rgba(0, 11, 38, 0.5);
  border-radius: 10px; }

.feture-box .fetures-list::-webkit-scrollbar-track {
  background-image: linear-gradient(to top, transparent, rgba(0, 13, 124, 0.1), transparent);
  border-radius: 10px; }


 /**------------------------------
 Blog section 
 --------------------------------*/
 .blog-section {
   background: #fff;
 }

 .blog-section .blog-left-sec {}

 .blog-section .blog-left-sec .section {
   padding: 20px 40px;
   background: #F9F6F4;
   display: block;
 }

 .blog-section .blog-left-sec .search-section {
   padding: 10px 20px;

 }

 .blog-section .blog-left-sec .search-section .search {
   background: url(../img/search.svg) no-repeat transparent left center;
   padding: 10px 0 10px 25px;
   border: none;
 }

 .blog-section .categories-section h4,
 .blog-section .top-posts h4 {
   font-size: 20px;
   color: #000;
   font-weight: 700;
 }

 .blog-section .categories-section a {
   color: #000;
   border-top: #D1D1D6 solid 1px;
   padding: 15px 0;
   display: block;
 }

 .blog-section .categories-section a:first-child {
   border: none
 }

 .blog-section .categories-section a:hover,
 .blog-section .categories-section a:focus,
 .blog-section .categories-section a.active {
   font-weight: 700;
 }

 .blog-section .top-posts ul {
   list-style: none;
   padding: 0;
   margin: 0;
 }

 .blog-section .top-posts li {
   border-top: #D1D1D6 solid 1px;
   list-style: none;
   margin: 0;
   padding: 15px 0;

 }

 .blog-section .top-posts li:first-child {
   border-top: none;
 }

 .blog-section .top-posts li a {
   font-size: 16px;
   font-weight: 600;
   color: #000B26;
   display: block;
   margin-bottom: 5px;

 }

 .blog-section .top-posts li a:hover {
   color: #0B83FF;
 }

 .blog-section .top-posts li .author {
   color: rgba(60, 60, 67, 0.6);
   font-size: 14px;
 }
 .blog-cards  .card{
  border: none;
  border-radius: none;
  background: #F6F6F6;
 }
 .blog-cards .blog-img img{
  min-width: 100%; 
 }
 
 .blog-cards .card-body {
  padding:30px;
 }
 .blog-cards .blog-cat,  .blog-cards  .text-muted {
  color: #000B26;
  font-size: 11px;
 }
 .blog-cards  .blog-text { 
  font-size: 16px;
  font-weight: 600;
  color: #000B26;
  display: block;
  margin-bottom: 5px; 
}
.blog-cards  .blog-text:hover {
  color: #0B83FF;
}



 /*--------------------------------------------------------------
# Blog-details 
--------------------------------------------------------------*/
.blog-details  {
  width: 100%;
  position: relative;
  padding: 120px 0 40px 0;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #fff;
}
.blog-details  h3 { 
  font-size: 40px;
  font-weight:700;
  color: #000B26;
  display: block;
  margin-bottom: 5px;
}
.blog-details .blog-cat,  .blog-details  .text-muted {
  color: #000B26;
  font-size: 14px;
 }
 .blog-details .blog-img { 

 }
 
 .blog-details .blog-img img{
  min-width: 100%;
 }
 .blog-details  h4 { 
  font-size:24px;
  font-weight:700;
  color: #000B26;
}
.author-details {
  background: #F9F6F4;
  color: #000B26;
  text-align: center;
  padding: 30px; 
}
.related-articles   h4 { 
  font-size:24px;
  font-weight:700;
  color: #000B26;
  text-align: center;
} 

.related-articles .blog-cards .card-body {
  padding: 20px;
}

.related-articles .blog-cards .card-body .text-muted{
  margin-bottom: 15px;
  font-size: 10px;
}
.related-articles .blog-cards .card-body .blog-text{
  font-size: 14px;
}
.blog-details .social-links {
  position: absolute;
  right: 50px;
  width: auto;
  top: 50px;
}
 @media (max-width: 640px) {
  .blog-details  h3 { 
    font-size:24px;
  }
  .blog-details  h4, .related-articles   h4  { 
   font-size:20px;  
 }
 .blog-details .social-links {
  position: absolute;
  right:  0px;
}
}
.modal-body br{
  display: none;
}
 
.contact-form .form-label {
    font-size: 14px;
    line-height: 18px;
    color: rgba(0, 11, 38, .7);
    margin-bottom: 5px;
    display: block;
    font-family: "DM Sans", sans-serif;
    font-weight: 500;
  }
 .contact-form .form-control{
    height: 40px;
    border-radius: 5px;
    background: #f5f5f3;
    border: 1px solid rgba(0, 0, 0, 0.2);
  }
 .contact-form h5{
    color: #000b26;
    font-size: 24px;
    line-height: 26px;
    font-family: "Playfair Display", serif;
    font-weight: 700; 
  }
 .contact-form .btn.btn-primary{
    font-size: 18px;
    height: 40px;
    border-radius: 33px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "DM Sans", sans-serif;
    font-weight: 700;
    color: #fff;
    cursor: pointer;
    width: 100%; 
    border: none;
    background: transparent linear-gradient(100deg, #000b26, #273f76) !important;
  }

   .contact-form .btn.btn-primary:hover{
    background: transparent linear-gradient(100deg  #273f76, #000b26) !important;
   }
   .terms {
    padding: 100px 0 50px 0;
}
.terms h1 {
    font-family: "DM Sans", sans-serif;
    font-weight: 700;
    font-size: 24px;
    line-height: 20px;
    color: #2B2B2B;
}
.terms h2 {
    font-family: "DM Sans", sans-serif;
    font-size: 18px;
    color: #2B2B2B;
    font-weight: 600;
}
.terms ul {
    padding: 0 0 0 20px;
}
.terms ul li {
    list-style-type: auto;
    padding: 0 0 5px 0;
    font-family: "DM Sans", sans-serif;
    font-weight: 500;
    font-size: 14px;
    line-height: 20px;
    color: #2B2B2B;
}
.terms p {
    font-family: "DM Sans", sans-serif;
    font-size: 16px;
    color: #2B2B2B;
    padding: 0px;
}

 @media (max-width: 480px) {
   .header .logo img {
     max-height: 36px;
   }

   .header .logo h1 {
     font-size: 24px;
   }
    .feture-details .fetures-list a{
      padding: 5px 10px;
    margin-top: 0px; 
    border-radius: 6px;
    font-size: 13px;
    }
    .feture-details .feture-box{
      top:65px !important
    }
 }