/**
* Template Name: iPortfolio
* Template URL: https://bootstrapmade.com/iportfolio-bootstrap-portfolio-websites-template/
* Updated: Jun 29 2024 with Bootstrap v5.3.3
* Author: BootstrapMade.com
* License: https://bootstrapmade.com/license/
*/

/*--------------------------------------------------------------
# Font & Color Variables
# Help: https://bootstrapmade.com/color-system/
--------------------------------------------------------------*/
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

   @font-face {
    font-family: 'Georgia';
    font-style: normal;
    font-weight: normal;
     src: url('./../fonts/georgia.ttf')  format('truetype');
    }
    

    @font-face {
    font-family: 'Georgia';
    font-style: normal;
    font-weight: normal;
    src: url('./../fonts/georgia.ttf')  format('truetype');
    }
    

    @font-face {
    font-family: 'Georgia';
    font-style: normal;
    font-weight: normal;
    src: url('./../fonts/georgia.ttf')  format('truetype');
    }
    

    @font-face {
    font-family: '';
    font-style: normal;
    font-weight: normal;
    src: url('./../fonts/georgia.ttf')  format('truetype');
    }

/* Fonts */
:root {
  --default-font: "Montserrat",  system-ui, -apple-system, "Segoe UI", Montserrat, "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: #fff; /* Background color for the entire website, including individual sections */
  --default-color: #272829; /* Default color used for the majority of the text content across the entire website */
  --heading-color: #102d59; /* Color for headings, subheadings and title throughout the website */
  --accent-color: #6395E5; /* 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. */
}

/* 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: #a8a9b4;  /* The default color of the main navmenu links */
  --nav-hover-color: #ffffff; /* Applied to main navmenu links when they are hovered over or active */
  --nav-mobile-background-color: #040b14; /* Used as the background color for mobile navigation menu */
  --nav-dropdown-background-color: #040b14; /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
  --nav-dropdown-color: #a8a9b4; /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #ffffff; /* 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: #f4fafd;
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: #102d59;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #151f2b;
  --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: 'Georgia';
    letter-spacing: 0.5px;
}

/* 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
--------------------------------------------------------------*/

.btn-wrap .hd-info a {
    display: inline-block;
}

.btn-wrap .hd-info .num {
    color: #102d59;
}

.btn-wrap .hd-info .num span {
    font-weight: bold;
    font-size: 20px;
}

.hd-info {
    margin-bottom: 5px;
}

.header {
  color: var(--default-color);
  background-color: var(--background-color);
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  padding: 5px;
  width: 100px;
  transition: all ease-in-out 0.3s;
  overflow-y: auto;
  z-index: 997;
  border-right: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.logo img {
  max-width: 100%;
}

.header .social-links {
  margin: 0 0 20px 0;
  margin-top: auto;
}

.header .social-links a {
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: color-mix(in srgb, var(--default-color), transparent 90%);
  color: var(--default-color);
  margin: 0 2px;
  border-radius: 50%;
  text-align: center;
  width: 40px;
  height: 40px;
  transition: 0.3s;
  margin: 10px auto;
  
}

.header .social-links a:hover {
  color: var(--contrast-color);
  background: var(--accent-color);
}

.header~main{
  position: relative;
}

.desktop-header {
  position: fixed;
  top: 0;
  z-index: 3;
  background: #102d59;
  width: 100%;
  padding: 8px 0;
}

.btn-wrap {
  text-align: right;
}

.btn-wrap {
  text-align: right;
}

.desk-menu ul {
  display: flex;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
  justify-content:center;
}

.desk-menu ul li a {
  color: #fff;
  padding: 8px 20px;
  display: block;
  transition:.2s ease all;
  font-size: 18px;
}

.desk-menu ul li a:hover{
font-weight: 500;
}

.hero h2 {
    color: #fff;
    font-size:30px
}
#captcha-refrsh{
    border: none;
    background-color: #f0f0f0;
}

#captcha-refrsh:hover{
    background-color: #102D59;
   color: white;
   border:1px solid white;
   
}
@media (max-width: 491px) {
    #captcha-refresh {
        margin-top: 30px;
    }
}


@media (min-width: 991px) {

  .header~main,
  .header~#footer {
    margin-left: 100px;
  }

}

@media(max-width:991px){
  .desk-menu{
    display: none;
  }

  .header{
    left:-100px;
  }

  .mobile-logo {
    width: 30%;
}

.mobile-logo img {
    max-width: 150px;
}

.hd-info {
    display: none;
}

.desktop-header > .container {
    max-width: 100%;
}


.desktop-header:before {
    content: "";
    position: absolute;
    width: 30%;
    background: #102d59;
    height: 64px;
    top: 0;
    min-width: 150px;
    z-index: -1;
}
}

@media (max-width: 767px) {
    
  
  .header {
    left: -100%;
    width:200px;
  }

  .desk-menu {
    display: none;
}


.mobile-logo img {
    max-width: 100%;
}

.mobile-logo {
    width: 100%;
    max-width: 150px;
}

.desktop-header .btn-wrap .touch-btn {
    font-size: 14px;
    padding: 8px 10px;
}

.cus-btn-1 {
    font-size: 16px;
}
}

.header.header-show {
  left: 0;
}

.header .header-toggle {
  color: var(--contrast-color);
  background-color: var(--accent-color);
  font-size: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  position: fixed;
  top: 15px;
  right: 15px;
  z-index: 9999;
  transition: background-color 0.3s;
}

.header .header-toggle:hover {
  color: var(--contrast-color);
  background-color: color-mix(in srgb, var(--accent-color) 90%, white 15%);
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
.mobile-nav-toggle {
  display: none;
}

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

.navmenu ul {
  list-style: none;
  padding: 0 0 20px 0;
  margin: 0;
}

.navmenu a,
.navmenu a:focus {
  color: var(--nav-color);
  padding: 15px 10px;
  font-family: var(--nav-font);
  font-size: 16px;
  font-weight: 400;
  display: flex;
  align-items: center;
  white-space: nowrap;
  transition: 0.3s;
  width: 100%;
}

.navmenu a .navicon,
.navmenu a:focus .navicon {
  font-size: 20px;
  margin-right: 10px;
}

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

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

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

.navmenu a:hover .navicon,
.navmenu .active .navicon,
.navmenu .active:focus .navicon {
  color: var(--accent-color);
}

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

.navmenu .dropdown {
  display: block;
}

.navmenu .dropdown a,
.navmenu .dropdown a:focus {
  color: --nav-dropdown-color;
}

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

.navmenu .dropdown ul {
  position: static;
  display: none;
  z-index: 99;
  padding: 5px 10px;
  margin: 5px 10px;
  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);
}

/* banner bottom content */
.banner-btn-content {
  text-align: center;
  background: #102d59;
  color: #fff;
  padding: 30px 0;
}

.banner-btn-content .banner-bottom-content {
  max-width: 800px;
  margin: 0 auto;
}

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/

.footer_copy_content {
    color: #fff;
}

.socia-media ul{
    padding:0;
}

.socia-media ul li {
  position: relative;
  display: inline-block;
  margin-right: 10px;
  margin-bottom: 0!important;
}

.socia-media ul li a {
  transition: .5s ease-in-out!important;
  -moz-transition: .5s ease-in-out!important;
  -o-transition: .5s ease-in-out!important;
  -ms-transition: .5s ease-in-out!important;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  display: block;
  border-radius: 50px;
  background: var(--primary-color-two);
  color: #fff;
}

.social-media small:before {
  position: absolute;
  content: "";
  width: 12px;
  border: 10px solid transparent;
  border-top-color: #fff;
  height: 12px;
  bottom: -20px;
  left: 20px;
}

.socia-media ul li a:hover small {
  opacity: 1;
}

.socia-media ul li span {
  opacity: .8;
}

.socia-media ul li a small {
  position: absolute;
  padding: 5px 15px;
  border-radius: 5px;
  background: #fff;
  color: #078586;
  font-size: 13px;
  line-height: 13px;
  font-weight: 600;
  min-width: 100px;
  text-align: center;
  margin: auto;
  left: -10px;
  right: 0;
  top: -35px;
  transition: all .5s ease;
  -moz-transition: all .5s ease;
  -o-transition: all .5s ease;
  -ms-transition: all .5s ease;
  opacity: 0;
}

.socia-media ul {
  margin-bottom: 0;
}


.footer-widget-wrap {
  padding: 50px;
  padding-top: 20px;
  padding-bottom: 20px;
  border-top: 1px solid #ddd;
  background:#102d59;
}

.footer_widgets {
  position: relative;
  margin-bottom: 15px;
}

.footer_widgets .fo_wid_title {
  position: relative;
  margin-bottom: 32px;
}

.footer_widgets .fo_wid_title h2 {
  font-size: 20px;
  line-height: 30px;
  color:#6699e8;
  font-weight: 700;
  margin-bottom: 5px;
}

.footer_widgets .fo_wid_title:before {
  position: absolute;
  content: "";
  width: 70px;
  height: 3px;
  background: #6699e8;
  left: 0;
  bottom: -15px;
}

.footer_widgets.navigation_foo .navigation_foo_inner ul {
  padding: 0;
  margin: 0;
  position: relative;
}

.footer_widgets.navigation_foo .navigation_foo_inner ul li {
  position: relative;
  display: block;
  list-style: none;
  margin-bottom: 5px;
}

.footer_widgets.navigation_foo .navigation_foo_inner ul li a {
  display: block;
  font-size: 16px;
  line-height: 26px;
  margin-bottom: 9px;
  color: #aaafb8;
  font-weight: 400;
  transition: all .5s ease;
  -moz-transition: all .5s ease;
  -o-transition: all .5s ease;
  -ms-transition: all .5s ease;
}

.footer_widgets.get_in_touch_foo .foo_cont_inner .top {
  position: relative;
  margin-bottom: 20px;
}

.footer_widgets.get_in_touch_foo .foo_cont_inner .bottom h6, .footer_widgets.get_in_touch_foo .foo_cont_inner .top h6 {
  font-size: 18px;
  line-height: 26px;
  color: #039;
  font-weight: 600;
  margin-bottom: 8px;
}

.footer_widgets.get_in_touch_foo .foo_cont_inner .bottom p, .footer_widgets.get_in_touch_foo .foo_cont_inner .top p {
  color: #aaafb8;
  margin-bottom: 0;
}

.footer_widgets.get_in_touch_foo .foo_cont_inner .bottom .con_content {
  position: relative;
  margin-bottom: 5px;
}

.footer_widgets.get_in_touch_foo .foo_cont_inner .bottom .con_content h5 {
  display: inline-block;
  font-size: 16px;
  font-weight: bold;
  color: #fff;
  line-height: 26px;
}

.footer_widgets.get_in_touch_foo .foo_cont_inner .bottom .con_content a {
  color: #aaafb8;
  font-size: 16px;
  line-height: 26px;
  display: inline-block;
}


.footer_widgets.about_company .content_box p {
  color: #6699e8;
  margin-bottom: 30px;
}

.footer_logo {
  margin-bottom: 15px;
}

.footer_logo img {
    max-height: 53px;
}

.footer_widgets.about_company .content_box .consulting {
  position: relative;
}

.footer_widgets.about_company .content_box .consulting .image {
  float: left;
  width: 60px;
}

.footer_widgets.about_company .content_box .consulting .image img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
}

.footer_widgets.about_company .content_box .consulting .help_con {
  position: relative;
  margin-left: 70px;
  padding: 7px 0;
}

.footer_widgets.about_company .content_box .consulting .help_con h6 {
  font-size: 12px;
  font-weight: 600;
  color: #078586;
  line-height: 22px;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.footer_widgets.about_company .content_box .consulting .help_con h2 {
  font-size: 16px;
  font-weight: bold;
  color: #003399;
}

.footer_widgets.about_company .content_box .consulting .help_con h2 a {
  color: inherit;
}

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

#preloader:before {
    content: "";
    position: fixed;
    background-image: url(../img/loader-v.gif);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 150px;
    height: 150px;
    margin: auto;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

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

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: -15px;
  z-index: 99999;
  background-color: var(--accent-color);
  width: 44px;
  height: 44px;
  border-radius: 50px;
  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;
  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 {
    color: var(--default-color);
    background-color: #000000b0;
    padding: 25px 0;
    position: relative;
    padding-top: 170px;
    padding-bottom: 130px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top center;
    background-blend-mode: overlay;
}

.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;
  font-weight: 400;
}

.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);
  background-color: var(--background-color);
  padding: 60px 0;
  overflow: clip;
}

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

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

.section-title h2:after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 3px;
  background: var(--accent-color);
  left: 0;
  bottom: 0;
  margin: 0 auto;
}

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

.text-center.section-title h2:after {
    right: 0;
    
}

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

.hero img {
  position: absolute;
  display: block;
  width: 50%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  right: 0;
  border-left:5px solid #102d59;
}

.hero:before {
  content: "";
  background-image: url('../img/mrtransparent.webp');
  position: absolute;
  inset: 0;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: left center;
  width:100%;
  max-width:500px;
} 

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

.hero h2 {
  margin: 0;
  margin-top:20px;
  font-size: 30px;
  font-weight: 700;
}

.hero p {
  margin: 5px 0 0 0;
  font-size: 26px;
}

.hero p span {
  letter-spacing: 1px;
  border-bottom: 2px solid var(--accent-color);
}

.hero .social-links {
  margin-top: 25px;
}

.hero .social-links a {
  font-size: 24px;
  display: inline-block;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  line-height: 1;
  margin-right: 20px;
  transition: 0.3s;
}

.hero .social-links a:hover {
  color: var(--accent-color);
}

.cus-btn-1 {
    background: transparent;
    border-color: #102d59;
    border-radius: 0;
    font-size: 18px;
    font-weight: 600;
    color: #102d59;
    transition: .2s ease all;
    border-width: 2px;
}

.cus-btn-1:hover {
    background: #102d59;
    color: #fff;
}

.main-slider-two__button {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 30px;
  margin-top: 30px;
}

.main-slider-two__button__inner {
  overflow: hidden;
}

.insuba-btn {
  cursor: pointer;
  display: inline-block;
  position: relative;
  overflow: hidden;
  vertical-align: middle;
  -webkit-appearance: none;
  border: none;
  outline: none !important;
  padding: 10.5px 77px 10.5px 35px;
  color: var(--insuba-black4, #0f3564);
  background-color: var(--insuba-white, #ffffff);
  border-radius: 100px;
  font-size: 17px;
  font-weight: 600;
}

.insuba-btn__icon-box {
  width: 44px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 0;
  right: 0;
  border-radius: 0 100px 100px 0;
  overflow: hidden;
  transition: all 500ms ease;
  background: #6699e8;
}

span.insuba-btn__icon i {
  color: #fff;
}

.main-slider-two__call {
    display: flex;
    align-items: center;
    gap: 19px;
}

.main-slider-two__call__icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background-color: var(--insuba-white, #ffffff);
    border-radius: 50%;
    font-size: 20px;
    color: var(--insuba-base, #0365d3);
    transition: all 500ms ease;
}

.main-slider-two__call__title {
    margin: 0;
    font-size: 17px;
    color: var(--insuba-white, #ffffff);
}

.main-slider-two__call__number {
    font-size: 17px;
    color: var(--insuba-white, #ffffff);
    background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
    transition: all 500ms ease;
}


.service-sec .isotope-item {
    width: 100%;
    visibility:hidden;
}

.service-sec .isotope-item.active {
   visibility:visible;
}

.isotope-filters li {
    padding: 5px 10px;
    margin: 0 10px;
    border: 1px solid #dddddd;
    cursor:pointer;
}

.isotope-filters li.filter-active {
    color: white;
    background: #6699e8;
}

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

  .hero p {
    font-size: 20px;
  }

   .hero > img {
    display: none;
}

.hero {
    min-height: 300px;
    padding: 80px 0 20px;
} 
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.box01 img {
    max-width: 80px;
}

.box01 .h5{
    padding-top: 20px;
    padding-bottom: 4px;
    color: var(--blue);
    font-weight: 700;
    font-size: 16px;
}

.after-hero .box01 p {
    font-size: 14px;
    letter-spacing: 1px;
    line-height: 25px;
}


.page-about {
    padding: 60px 0;
}

.section-title h3 {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    color: #6395e5;
    margin-bottom: 15px;
    letter-spacing: 0.2em;
}

.page-about-image {
    position: relative;
    /* padding-bottom: 130px; */
}

/* .page-about-image::before {
    content: '';
    position: absolute;
    top: 55px;
    background-image: url(data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22175%22%20height%3D%22172%22%20viewBox%3D%220%200%20175%20172%22%20fill%3D%22%23000000%22%3E%3Crect%20width%3D%22175%22%20height%3D%22172%22%20fill%3D%22%23F0F0F0%22%2F%3E%3Cpath%20d%3D%22M42.911%20171.463H0.5L42.911%2067.7574H85.6315L42.911%20171.463Z%22%20fill%3D%22%236395e5%22%2F%3E%3Cpath%20d%3D%22M103.273%20171.463H60.5527L131.444%200.580933H174.165L103.273%20171.463Z%22%20fill%3D%22%236395e5%22%2F%3E%3C%2Fsvg%3E);
    background-repeat: no-repeat;
    background-position: top right;
    width: 100%;
    height: 100%;
} */

.about-img-2 {
    position: absolute;
    bottom: 0;
    right: 0;
}

.reveal {
    position: relative;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    overflow: hidden;
}

.about-img-1 img {
    border-radius: 40px;
}

.reveal img {
    height: 100%;
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -webkit-transform-origin: left;
    transform-origin: left;
}


.image-anime:after {
    content: "";
    position: absolute;
    width: 200%;
    height: 0%;
    left: 50%;
    top: 50%;
    background-color: rgba(255,255,255,.3);
    transform: translate(-50%,-50%) rotate(-45deg);
    z-index: 1;
}

.about-img-2 img {
    border-radius: 40px;
    border: 10px solid #ffffff;
    border-right: 0;
}

.satisfied-client{
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translate(-50%, -100px);
	background-color: #fff;
	box-shadow: 0px 4px 30px 0px #0C152412;
	border-radius: 30px;
	display: inline-flex;
	align-items: center;
	padding: 15px 20px;
	animation: moveobject 2s infinite linear alternate;
}

@keyframes moveobject{
	50%{
		left: 45%;
	}
}

.satisfied-client-icon{
	margin-right: 15px;
}

.satisfied-client-content{
	width: calc(100% - 55px);
}

.satisfied-client-content h3{
	font-size: 24px;
	color: var(--primary-color);
	text-align: left;
	margin-bottom: 5px;
}

.satisfied-client-content p{
	text-transform: capitalize;
	margin: 0;
}

.about-content{
	margin-left: 50px;
}

.about-content-body{
	margin-bottom: 30px;
}

.about-content-body p{
	margin: 0;
}

.about-company-service{
	display: flex;
	border-bottom: 1px solid var(--divider-color);
	padding-bottom: 30px;
	margin-bottom: 30px;
}

.about-company-service:last-child{
	border: none;
	padding-bottom: 0;
	margin-bottom: 0;
}

.about-company-service .icon-box {
    position: relative;
    background-color: #fcc70b;
    width: 60px;
    height: 60px;
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    overflow: hidden;
    transition: all 0.3s ease-in-out;
}

.about-company-service .icon-box::before{
	content: '';
	display: block;
	position: absolute;
	width: 100%;
	height: 100%;
	background-color: var(--primary-color);
	top: 0;
	left: 0;
	transform: scale(0);
	transition: all 0.3s ease-in-out;
	border-radius: 50px;
}

.about-company-service:hover .icon-box:before{
	transform: scale(1);
}

.about-company-service .icon-box img{
	position: relative;
    z-index: 1;
    object-fit: contain;
    max-width: 100%;
}

.company-service-content{
	width: calc(100% - 90px);
}

.company-service-content h3{
	font-size: 22px;
	text-transform: capitalize;
	margin-bottom: 10px;
}

.company-service-content p{
	margin: 0;
}

.about-content .section-title {
    padding-bottom: 20px;
}

.driving-sec .image-wrap {
    padding-right: 100px;
}

.driving-sec .image-wrap img {
    max-width: 100%;
}

.about-info-box .content-inner-wrap {
    max-width: 800px;
    margin: 0 auto;
    background: #e5efff;
    border-radius: 15px;
    padding: 30px;
    text-align:justify;
}

.about-info-box .content-inner-wrap .block-icon {
    text-align: right;
}

.about-info-box .content-inner-wrap .block-icon svg {
    fill: red;
}

.about-info-box .content-inner-wrap .block-icon svg path {
    fill: #102d59;
}

.about-info-box .content-inner-wrap h3 {
    margin-bottom: 20px;
}

ul.filter-tag {
    width: auto;
    list-style: none;
    padding: 0;
    text-align: center;
}

ul.filter-tag li {
    font-size: 13px;
    line-height: 1.8;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 6px 15px;
    cursor: pointer;
    margin: 0 5px;
    font-weight: normal;
    display: inline-block;
    text-align: center;
    border: 1px solid #ddd;
    margin-bottom:10px;
}

.gallery-image-wrap {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}

.gallery-image-wrap .gl-image-item {
    width: 16.666666666667%;
    margin: 0 10px 20px 10px;
    border-style: solid;
    border-width: 1px 1px 1px 1px;
    border-color: #D8D8D8;
    border-radius: 0px;
    min-width: 150px;
}

.gallery-image-wrap .gl-image-item img {
    height: 100%;
    width: 100%;
    -o-object-fit: contain;
    object-fit: contain;
    aspect-ratio: 3/1;
}


/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/
.service-sec  {
  counter-reset: serviceNumber;
  background-color: var(--insuba-white, #ffffff);
}

.sec-title__top {
  margin-bottom: 22px;
  padding: 7px 25px 5px;
  display: inline-flex;
  gap: 15px;
  background-color: #6699e8;
  border-radius: 30px;
}

.sec-title__box {
  position: relative;
  top: 3px;
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  background-color: var(--insuba-white, #ffffff);
}

.sec-title__box::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -6px;
  transform: translateY(-50%);
  width: 0px;
  height: 0px;
  border-style: solid;
  border-width: 4.5px 0 4.5px 7.8px;
  border-color: transparent transparent transparent var(--insuba-white, #ffffff);
}

.sec-title__box__inner {
  width: 8px;
  height: 8px;
  position: relative;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: var(--insuba-black5, #0f3667);
}
.sec-title__tagline {
  margin: 0;
  font-family: var(--insuba-font2, "Rubik", sans-serif);
  font-size: 18px;
  color: var(--insuba-white, #ffffff);
  font-weight: 500;
  text-transform: capitalize;
  line-height: 1.3;
}
.sec-title__title {
  margin: 0;
  font-size: 35px;
  font-weight: 700;
  line-height: 1.314;
}

.service-card {
  position: relative;
  overflow: hidden;
  background-color: var(--insuba-white, #ffffff);
  border: 1px solid var(--insuba-border-color, #dddddd);
}
.service-card__bg {
  width: calc(100% + 2px);
  height: 100%;
  position: absolute;
  left: -1px;
  bottom: 0;
  background-color: var(--insuba-black4, #0f3564);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  transition: all 500ms ease;
}

.service-list-content .list-title {
    font-size: 20px;
    list-style: none;
    color:#fff;
}

.service-list-content .list-title h2{
    color:inherit;
    text-transform: uppercase;
}

.service-list-content{
  width: calc(100% + 2px);
  position: absolute;
  left: -1px;
  bottom: -100%;
    background-color: #102d59;
    transition: all 500ms ease;
    z-index: 2;
    height: 100%;
    overflow: auto;
}

.service-card:hover .service-list-content{
  bottom:0;
}

.service-card__content {
  position: relative;
  padding: 39px 57px 150px;
  z-index: 2;
}

.service-card__icon img {
  max-width: 44px;
}

.service-card:before {
    content: "";
    position: absolute;
    background: #102d59;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0.6;
}

.service-list-content ul li {
    color: #fff;
}

.service-list-content ul {
    list-style: disc;
    padding: 20px 15px;
    padding-left: 30px;
    margin: 0;
}

@media(min-width:991px){
  .container {
    padding: 0 50px;
}
}

@media (min-width: 992px) and (max-width: 1199px) {
  .service-card__content {
    padding-left: 30px;
    padding-right: 30px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .service-card__content {
    padding-left: 35px;
    padding-right: 35px;
  }
}
@media (max-width: 412px) {
  .service-card__content {
    padding-left: 35px;
    padding-right: 35px;
  }
}
@media (max-width: 375px) {
  .service-card__content {
    padding-left: 30px;
    padding-right: 30px;
  }
}
.service-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.service-card__icon-box {
  position: relative;
  margin-bottom: 19px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background-color: var(--insuba-black4, #0f3564);
  transition: all 500ms ease;
}
.service-card__icon-box::after {
  content: "";
  width: calc(100% - 10px);
  height: calc(100% - 10px);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  border-radius: inherit;
  border: 1px dashed var(--insuba-base, #0365d3);
  transition: all 500ms ease;
}
.service-card:hover .service-card__icon-box {
  background-color: var(--insuba-white, #0365d3);
}
.service-card:hover .service-card__icon-box::after {
  opacity: 1;
}
.service-card__icon {
  display: inline-flex;
  font-size: 40px;
  color: var(--insuba-white, #ffffff);
  transition: all 500ms ease;
}
.service-card:hover .service-card__icon {
  color: var(--insuba-base, #0365d3);
  -webkit-animation-name: wobble-horizontal-hover;
  animation-name: wobble-horizontal-hover;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1;
}
.service-card__number::after {
  content: "0" counter(serviceNumber);
  counter-increment: serviceNumber;
  font-size: 46px;
  color: var(--insuba-white, #ffffff);
  text-shadow: 1px 1px 0 RGBA(var(--insuba-text-rgb, 99, 99, 99), 0.34), -1px -1px 0 RGBA(var(--insuba-text-rgb, 99, 99, 99), 0.34), 1px -1px 0 RGBA(var(--insuba-text-rgb, 99, 99, 99), 0.34), -1px 1px 0 RGBA(var(--insuba-text-rgb, 99, 99, 99), 0.34), 1px 1px 0 RGBA(var(--insuba-text-rgb, 99, 99, 99), 0.34);
  transition: all 500ms ease;
}
.service-card:hover .service-card__number::after {
  color: var(--insuba-black4, #0f3564);
  text-shadow: 1px 1px 0 RGBA(var(--insuba-white-rgb, 255, 255, 255), 0.58), -1px -1px 0 RGBA(var(--insuba-white-rgb, 255, 255, 255), 0.58), 1px -1px 0 RGBA(var(--insuba-white-rgb, 255, 255, 255), 0.58), -1px 1px 0 RGBA(var(--insuba-white-rgb, 255, 255, 255), 0.58), 1px 1px 0 RGBA(var(--insuba-white-rgb, 255, 255, 255), 0.58);
}
.service-card__title {
  margin-bottom: 7px;
  font-size: 22px;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.318;
}
.service-card__title:hover {
  color: #fff;
}
.service-card__title a {
  color: #fff;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  transition: all 500ms ease;
}
.service-card__title a:hover {
  background-size: 100% 1px;
}
.service-card__text {
  margin: 0;
  transition: all 500ms ease;
}
.service-card:hover .service-card__title, .service-card:hover .service-card__text {
  color: var(--insuba-white, #ffffff);
}
.service-card__image {
  position: relative;
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 100%;
  height: 232px;
  z-index: 2;
}
.service-card__image__inner {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-repeat: no-repeat;
  background-position: top;
  background-size: cover;
  -webkit-mask: url('data:image/svg+xml;utf8,<svg version="1.0" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 900.000000 567.000000"><g transform="translate(0.000000,567.000000) scale(0.100000,-0.100000)" stroke="none"> <path d="M6843 5658 c1 -8 -17 -16 -48 -21 -144 -24 -321 -72 -410 -111 -244 -107 -487 -257 -664 -409 -24 -22 -67 -49 -95 -62 -105 -48 -148 -55 -334 -55 -181 0 -212 4 -537 61 -197 35 -239 43 -522 103 -211 45 -512 95 -728 121 -175 21 -534 21 -664 -1 -218 -35 -398 -97 -529 -181 -149 -95 -332 -169 -497 -203 -109 -22 -301 -24 -421 -6 -145 23 -260 49 -369 85 -85 27 -108 36 -182 67 -17 8 -34 14 -37 14 -9 0 -228 109 -301 150 -106 59 -357 223 -405 265 -14 12 -42 34 -62 50 l-38 27 0 -2776 0 -2776 4500 0 4500 0 0 2315 c0 1963 -2 2315 -14 2315 -7 0 -25 15 -40 34 -55 73 -313 324 -411 400 -27 22 -52 42 -55 46 -10 13 -173 129 -231 165 -174 107 -275 161 -410 220 -56 25 -109 45 -118 45 -10 0 -21 4 -26 9 -18 17 -253 75 -348 87 -28 3 -50 11 -54 20 -7 19 -454 21 -450 2z"/> </g> </svg>');
  mask: url('data:image/svg+xml;utf8,<svg version="1.0" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 900.000000 567.000000"><g transform="translate(0.000000,567.000000) scale(0.100000,-0.100000)" stroke="none"> <path d="M6843 5658 c1 -8 -17 -16 -48 -21 -144 -24 -321 -72 -410 -111 -244 -107 -487 -257 -664 -409 -24 -22 -67 -49 -95 -62 -105 -48 -148 -55 -334 -55 -181 0 -212 4 -537 61 -197 35 -239 43 -522 103 -211 45 -512 95 -728 121 -175 21 -534 21 -664 -1 -218 -35 -398 -97 -529 -181 -149 -95 -332 -169 -497 -203 -109 -22 -301 -24 -421 -6 -145 23 -260 49 -369 85 -85 27 -108 36 -182 67 -17 8 -34 14 -37 14 -9 0 -228 109 -301 150 -106 59 -357 223 -405 265 -14 12 -42 34 -62 50 l-38 27 0 -2776 0 -2776 4500 0 4500 0 0 2315 c0 1963 -2 2315 -14 2315 -7 0 -25 15 -40 34 -55 73 -313 324 -411 400 -27 22 -52 42 -55 46 -10 13 -173 129 -231 165 -174 107 -275 161 -410 220 -56 25 -109 45 -118 45 -10 0 -21 4 -26 9 -18 17 -253 75 -348 87 -28 3 -50 11 -54 20 -7 19 -454 21 -450 2z"/> </g> </svg>');
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center center;
  mask-position: center center;
  -webkit-mask-size: auto;
  mask-size: auto;
}
.service-card__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 51px;
  height: 51px;
  position: absolute;
  top: -8px;
  right: 14px;
  transform: translateY(80px);
  opacity: 0;
  background-color: var(--insuba-base, #0365d3);
  border: 3px solid var(--insuba-white, #ffffff);
  border-radius: 10px;
  overflow: hidden;
}
.service-card__btn__icon {
  display: inline-flex;
  font-size: 16px;
  color: var(--insuba-white, #ffffff);
}
.service-card__btn__icon svg {
  width: 1em;
  height: 1em;
  fill: currentColor;
}
.service-card__btn:hover .service-card__btn__icon {
  animation: slideLeft 400ms;
}
.service-card:hover .service-card__btn {
  transform: translateY(0px);
  opacity: 1;
}
.service-card__shape {
  position: absolute;
  top: -1px;
  right: -1px;
  width: 37px;
  height: 37px;
  background-color: var(--insuba-black4, #0f3564);
  border-radius: 0px 0px 0px 50px;
  z-index: 1;
  transition: all 500ms ease;
}
.service-card:hover .service-card__shape {
  background-color: var(--insuba-base, #0365d3);
}

.services-page__top {
  margin-bottom: 50px;
}

/* our team */

.team-card-three {
  position: relative;
  overflow: hidden;
}
.team-card-three__content {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 24px 41px 137px;
  border: 1px solid var(--insuba-border-color, #dddddd);
  border-radius: 25px 25px 101px 25px;
  background-color: var(--insuba-white, #ffffff);
  transition: all 500ms ease;
}
@media (max-width: 425px) {
  .team-card-three__content {
    padding-left: 35px;
    padding-right: 35px;
  }
}
@media (max-width: 412px) {
  .team-card-three__content {
    padding-left: 30px;
    padding-right: 30px;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .team-card-three__content {
    padding-left: 35px;
    padding-right: 35px;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .team-card-three__content {
    padding-left: 30px;
    padding-right: 30px;
  }
}
.team-card-three__content::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  transform: scale(0.85);
  opacity: 0;
  background-color: #6699e8;
  border-radius: inherit;
  transition: all 500ms ease;
}
.team-card-three:hover .team-card-three__content {
  border-color: var(--insuba-base, #0365d3);
}
.team-card-three:hover .team-card-three__content::after {
  transform: scale(1);
  opacity: 1;
}
.team-card-three__identity {
  position: relative;
  z-index: 2;
}
.team-card-three__name {
  margin-bottom: 8px;
  font-size: 22px;
  font-weight: 700;
  text-transform: capitalize;
  line-height: 1.318;
}
.team-card-three__name a {
  color: inherit;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  transition: all 500ms ease;
}
.team-card-three__name a:hover {
  background-size: 100% 1px;
}
.team-card-three__designation {
  margin: 0;
  font-weight: 500;
  text-transform: capitalize;
  line-height: 1.625;
  transition: all 500ms ease;
}
.team-card-three:hover .team-card-three__name, .team-card-three:hover .team-card-three__designation {
  color: var(--insuba-white, #ffffff);
}
.team-card-three__btn {
  position: relative;
  top: -6px;
  z-index: 2;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border-radius: 50%;
  background-color: var(--insuba-black4, #0f3564);
  transition: all 500ms ease;
}
.team-card-three__btn::after, .team-card-three__btn::before {
  content: "";
  width: 2px;
  height: 17px;
  background-color: var(--insuba-white, #ffffff);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: all 500ms ease;
}
.team-card-three__btn::after {
  transform: translate(-50%, -50%) rotate(90deg);
}
.team-card-three__btn:hover::before {
  opacity: 0;
}
.team-card-three:hover .team-card-three__btn {
  background-color: var(--insuba-white, #ffffff);
}
.team-card-three:hover .team-card-three__btn::before, .team-card-three:hover .team-card-three__btn::after {
  background-color: var(--insuba-base, #0365d3);
}
.team-card-three__image {
    position: relative;
    margin-top: -122px;
    text-align: center;
    z-index: 2;
    width: 150px;
    height: 150px;
    margin: 0 auto;
    margin-top: -100px;
    overflow: hidden;
    border-radius: 100%;
    border: 4px solid #102d59;
    background: #f0f3f9;
}
.team-card-three__image img {
    margin: 0 auto;
    width: 75%;
    height: 100%;
    max-width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
}
.team-card-three:hover .team-card-three__image img {
  -webkit-animation-name: wobble-horizontal-hover;
  animation-name: wobble-horizontal-hover;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1;
}

.sr-only {
  border: 0;
  clip: rect(0,0,0,0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}

.social-links a {
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background-color: RGBA(var(--insuba-white-rgb, 255, 255, 255), 0.17);
  border-radius: 50%;
  overflow: hidden;
  transition: all 500ms ease;
}
.team-card-three .social-links {
  margin: 0;
  position: absolute;
  right: 17px;
  bottom: 51px;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  z-index: 2;
}
.team-card-three .social-links li {
  position: relative;
  right: -60px;
  opacity: 0;
  transition: all 500ms ease;
}
.team-card-three .social-links li:nth-child(1) {
  transition-delay: 0ms;
}
.team-card-three .social-links li:nth-child(2) {
  transition-delay: 100ms;
}
.team-card-three .social-links li:nth-child(3) {
  transition-delay: 200ms;
}
.team-card-three .social-links li:nth-child(4) {
  transition-delay: 300ms;
}
.team-card-three .social-links a {
  width: 37px;
  height: 37px;
  background-color: var(--insuba-white, #ffffff);
  border: 1px solid var(--insuba-black9, #0f3260);
}
.team-card-three .social-links__icon {
  color: var(--insuba-black9, #0f3260);
}
.team-card-three .social-links a:hover {
    background-color: #6699e8;
    border-color: #6699e8;
}
.team-card-three .social-links a:hover .social-links__icon {
  color: var(--insuba-white, #ffffff);
}
.team-card-three:hover .social-links li {
  opacity: 1;
  right: 0;
}

.pb-10{
  padding-bottom: 10rem;
}


/* news letter */

/*--------------------------------------------------------------
# Newsletter
--------------------------------------------------------------*/
.newsletter {
  position: relative;
  z-index: 3;
}
.newsletter__inner {
  padding: 91px 140px 103px;
  position: relative;
  background-color: var(--insuba-white, #ffffff);
  border-radius: 148px;
}
@media (max-width: 1199px) {
  .newsletter__inner {
    padding-left: 50px;
    padding-right: 50px;
  }
}
@media (max-width: 575px) {
  .newsletter__inner {
    padding: 71px 30px 83px;
    border-radius: 40px;
  }
}
.newsletter__inner__bg {
  width: 100%;
  height: calc(100% - 7px);
  position: relative;
  position: absolute;
  top: 0;
  left: 0;
  background-color: var(--insuba-base, #0365d3);
  border-radius: inherit;
  overflow: hidden;
}
.newsletter__form {
  margin-left: auto;
  position: relative;
  width: 100%;
  max-width: 540px;
  z-index: 2;
}
@media (max-width: 1199px) {
  .newsletter__form {
    max-width: 420px;
  }
}
@media (max-width: 991px) {
  .newsletter__form {
    margin: 0 auto;
    max-width: 100%;
    text-align: center;
  }
}
.newsletter__form__title {
  margin-bottom: 22px;
  font-size: 22px;
  color: var(--insuba-white, #ffffff);
  font-weight: 700;
  text-transform: capitalize;
  line-height: 1.59;
}
.newsletter__form__form {
  position: relative;
}
.newsletter input[type=text] {
  outline: 0;
  border: 0;
  width: 100%;
  height: 53px;
  padding-left: 41px;
  font-family: var(--insuba-font, "Montserrat", sans-serif);
  font-size: 16px;
  font-weight: 400;
  color: var(--insuba-text, #636363);
  background-color: var(--insuba-white, #ffffff);
  border-radius: 27px;
  transition: all 500ms ease;
}
.newsletter input[type=text]:focus {
  color: var(--insuba-black, #122f2a);
}
@media (max-width: 1199px) {
  .newsletter input[type=text] {
    padding-left: 25px;
  }
}
.newsletter button[type=submit] {
  margin-top: 20px;
  padding: 7px 38px;
  font-size: 18px;
}
@media (max-width: 1199px) {
  .newsletter button[type=submit] {
    padding-left: 30px;
    padding-right: 30px;
  }
}
@media (max-width: 575px) {
  .newsletter button[type=submit] {
    padding-left: 35px;
    padding-right: 35px;
  }
}
@media (min-width: 576px) {
  .newsletter button[type=submit] {
    margin-top: 0;
    position: absolute;
    top: 50%;
    right: 4px;
    transform: translateY(-50%);
  }
}
.newsletter__image {
  position: relative;
  position: absolute;
  left: 152px;
  bottom: 7px;
}
@media (max-width: 991px) {
  .newsletter__image {
    display: none;
  }
}
.newsletter__image::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 265px;
  height: 38px;
  background-color: var(--insuba-black5, #0f3667);
  clip-path: polygon(9% 0, 91% 0, 100% 100%, 0% 100%);
  z-index: 1;
}
.newsletter__image::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -1px;
  transform: translateX(-50%);
  width: 334px;
  height: 322px;
  background-color: var(--insuba-white, #ffffff);
  clip-path: polygon(9% 0, 91% 0, 100% 100%, 0% 100%);
}
.newsletter__image__one {
  position: relative;
  z-index: 2;
  max-width: 100%;
  height: auto;
}
.newsletter__image__shape {
  max-width: 100%;
  height: auto;
  position: absolute;
  top: 41px;
  right: -160px;
  z-index: 1;
  animation: moveHorizontal2 4s ease infinite;
}
.newsletter__shape-one {
  max-width: 100%;
  height: auto;
  position: absolute;
  top: -26px;
  left: -374px;
}
@media (max-width: 1199px) {
  .newsletter__shape-one {
    left: -420px;
  }
}
@media (max-width: 991px) {
  .newsletter__shape-one {
    display: none;
  }
}
.newsletter__shape-two {
  max-width: 100%;
  height: auto;
  position: absolute;
  right: 0;
  bottom: 0;
}
@media (min-width: 1200px) {
  .newsletter--two .newsletter__inner {
    padding-left: 113px;
    padding-right: 113px;
  }
}
.newsletter--two .newsletter__form {
  margin: 0;
}
.newsletter--two .newsletter__image {
  left: auto;
  right: 152px;
}
.newsletter--two .newsletter__image__shape {
  right: auto;
  left: -128px;
  animation: moveHorizontal 4s ease infinite;
}
.newsletter--two .newsletter__shape-one {
  left: auto;
  right: -374px;
}
@media (max-width: 1199px) {
  .newsletter--two .newsletter__shape-one {
    right: -420px;
  }
}
.newsletter--two .newsletter__shape-two {
  right: auto;
  left: 0;
}

@keyframes moveHorizontal2 {
  0% {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
  50% {
    -webkit-transform: translate3d(-15px, 0, 0);
    transform: translate3d(-15px, 0, 0);
  }
  100% {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}


/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact .info-wrap {
    background-color: #102d59;
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
    padding: 30px;
}

@media (max-width: 575px) {
  .contact .info-wrap {
    padding: 20px;
  }
}

.contact .info-item {
  margin-bottom: 40px;
}

.contact .info-item i {
    font-size: 20px;
    color: #fff;
    background: #6699e8;
    width: 44px;
    height: 44px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50px;
    transition: all 0.3s ease-in-out;
    margin-right: 15px;
}


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

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

.contact .info-item:hover i {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.contact .php-email-form {
      background-color: #102d59;
  height: 100%;
  padding: 30px;
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
}

@media (max-width: 575px) {
  .contact .php-email-form {
    padding: 20px;
  }
}

.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: var(--surface-color);
  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 label {
    color: #fff;
}

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

.contact .php-email-form button[type=submit]:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 25%);
}

/*--------------------------------------------------------------
# Portfolio Details Section
--------------------------------------------------------------*/
.portfolio-details .portfolio-details-slider img {
  width: 100%;
}

.portfolio-details .portfolio-details-slider .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: color-mix(in srgb, var(--default-color), transparent 85%);
  opacity: 1;
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--accent-color);
}

.portfolio-details .portfolio-info {
  padding: 30px;
  box-shadow: 0px 0 30px rgba(0, 0, 0, 0.1);
}

.portfolio-details .portfolio-info h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
}

.portfolio-details .portfolio-info ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.portfolio-details .portfolio-info ul li+li {
  margin-top: 10px;
}

.portfolio-details .portfolio-description {
  padding-top: 30px;
}

.portfolio-details .portfolio-description h2 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 20px;
}

.portfolio-details .portfolio-description p {
  padding: 0;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

/*--------------------------------------------------------------
# Service Details Section
--------------------------------------------------------------*/
.service-details .services-list {
  padding: 10px 30px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  margin-bottom: 20px;
}

.service-details .services-list a {
  display: block;
  line-height: 1;
  padding: 8px 0 8px 15px;
  border-left: 3px solid color-mix(in srgb, var(--default-color), transparent 70%);
  margin: 20px 0;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  transition: 0.3s;
}

.service-details .services-list a.active {
  color: var(--heading-color);
  font-weight: 700;
  border-color: var(--accent-color);
}

.service-details .services-list a:hover {
  border-color: var(--accent-color);
}

.service-details .services-img {
  margin-bottom: 20px;
}

.service-details h3 {
  font-size: 26px;
  font-weight: 700;
}

.service-details h4 {
  font-size: 20px;
  font-weight: 700;
}

.service-details p {
  font-size: 15px;
}

.service-details ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

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

.service-details ul i {
  font-size: 20px;
  margin-right: 8px;
  color: var(--accent-color);
}

/*--------------------------------------------------------------
# Starter Section Section
--------------------------------------------------------------*/
.starter-section {
  /* Add your styles here */
}


.heading-section {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    margin-bottom: 50px;
}

.heading-section h2 {
    font-size: 28px;
    line-height: 1.5;
}

.heading-section h2 span {
    color: #6699e8;
}

.solution-item {
    text-align: center;
    background: #c7d2f3;
    padding: 40px;
    border-radius: 15px 0;
    height:100%;
}

.solution-item .icon {
    margin-bottom: 20px;
}

.solution-item .icon svg {
    width: 100px;
    height: 100px;
}

.solution-item .title h3 {
    font-size: 22px;
    font-weight: bold;
}

.solution-item .title {
    margin-bottom: 30px;
}

.solution-item .discrption p {
    font-size: inherit;
    line-height: 1.7;
}

.solution-item .icon svg path {
    fill: #102d59;
}

.cus-acc .accordion-button .icon svg {
    max-width: 38px;
    width:48px;
    height:48px;
}

.cus-acc .accordion-button .icon img{
    filter: brightness(200);
}

.cus-acc .accordion-button {
    background-color: #6699e8;
    padding-top: 30px;
    padding-bottom: 30px;
    padding-left: 35px;
    padding-right: 35px;
    border_radius_border-radius: 20px;
    color: #fff;
    /* border-radius: 20px; */
}

.cus-acc .accordion-button .icon {
    margin-right: 10px;
}

.cus-acc .accordion-button .icon svg path {
    fill: #fff;
}

.accordion-button::after {
    color: #fff;
    background: #fff;
    padding: 5px;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-size: 23px;
    background-repeat: no-repeat;
    background-position: center;
    background-image: var(--bs-accordion-btn-active-icon);
}


.outsourcing-sec .heading-section {
    text-align: left;
}

.driving-sec .section-title {
    padding-bottom: 30px;
}

.driving-sec .content-wrap {
    padding-right: 100px;
}

.outsourcing-sec .image-wrap {
    border-radius: 15px;
    overflow: hidden;
}

.outsourcing-sec .image-wrap img {
    max-width: 100%;
    max-height: 300px;
    width: 100%;
    object-fit: cover;
}

/* engagment card */

ul.list-style li:before {
    content: "\f26e";
    font-family: 'bootstrap-icons';
    margin-right:10px;
    font-size: 22px;
    line-height: 1;
}

.engagement-card {
    background-color: #fbf9f8;
    padding-top: 30px;
    padding-right: 15px;
    padding-bottom: 30px;
    padding-left: 15px;
    transition-duration: 0.3s;
    position: relative;
    border-radius:20px;
}

.engagement-card img {
    max-height: 200px;
    width: 100%;
    object-fit: cover;
}

.engagement-card .icon {
    position: absolute;
    top: -8px;
    right: 8px;
    background-color: #e9e4f3;
    border-radius: 8px;
    padding-top: 8px;
    padding-right: 8px;
    padding-bottom: 8px;
    padding-left: 8px;
    margin-left: 20px;
    position: absolute;
    right: -20px;
    top: -25px;
    width: 65px;
    height: 65px;
}

.engagement-card .icon img {
    max-width: 65px;
}

.engagement-card .card-content .title {
    padding: 15px 0;
    font-size: 20px;
    font-weight: bold;
    text-align: center;
}

.engagement-card .icon svg {
    fill: #251f7d;
}

.list-style {
    padding: 0;
    list-style: none;
}

.list-style li {
    padding-top: 8px;
    padding-left: 8px;
    padding-right: 12px;
    padding-bottom: 8px;
    width: 100%;
    margin-top: 0px;
    background-color: rgba(192,227,113,0.2);
    border-radius: 8px;
    margin-bottom: 12px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
}

.engagement-card .btn-wrap {
    text-align: center;
}


.engagement-card .card-content .rich-text {
    color: #6699e8;
}

.engagement-card .card-content {
    font-size: 15px;
}

.engagement-card:hover {
    transform: scale(1.05,1.05);
}

.partner-card {
    background-color: #fbf9f8;
    padding-top: 58px;
    padding-right: 33px;
    padding-bottom: 28px;
    padding-left: 39px;
    border-radius: 20px;
}

.partner-card .icon svg {
    width: 50px;
    height: 50px;
    fill: #102d59;
}

.partner-card .icon {
    margin-bottom: 10px;
}

.partner-card .card-content .title {
    font-size: 20px;
    font-weight: bold;
}

.partner-card .image-wrap img {
    max-width: 100%;
}

.partner-card .image-wrap {
    margin-top: 30px;
}

.account-partner-sec .image-wrap img {
    object-fit: contain;
    max-width: 100%;
}

.account-partner-sec .image-wrap .image-2 {
    height: 125px;
}

.account-partner-sec .image-wrap .image-1 {
    height: 65px;
}

.account-partner-sec .image-wrap .image-3 {
    height: 80px;
}

.account-partner-sec .image-wrap {
    max-width: 1000px;
    margin: 0 auto;
    flex-direction: row;
    display: flex;
    justify-content: center;
    background-color: #fbf9f8;
    align-items: center;
    justify-content: space-between;
    padding: 30px 20px;
    border-radius: 30px;
}

@media(max-width:991px){
    .section-title h2{
        font-size:28px;
    }

    .about-content {
    margin-left: 0;
    }
}

@media(max-width:767px){
    .navmenu a {
        justify-content: center;
    }

    .mb-btn {
        text-align: center;
    }

    .mobile-menu {
        margin-top: 30px;
    }

    .driving-sec .image-wrap {
    padding-right: 0;
    text-align: center;
    margin-bottom: 30px;
    }

    .driving-sec {
        text-align: center;
    }

    .driving-sec .content-wrap {
        padding: 0;
    }
}

@media(max-width:500px){
    .solution-item {
        padding: 40px 15px;
    }
    .header {
        width: 200px;
    }

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



