@import url('https://fonts.googleapis.com/css2?family=Nunito+Sans:opsz,wght@6..12,200;6..12,300;6..12,400;6..12,500;6..12,600;6..12,700;6..12,800;6..12,900&family=Poppins:ital,wght@0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,700&display=swap');
/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
:root {
    --primary: #0E59F2;
    --secondary: #102534;
    --logocolor: #0B2C6A;
    --logocolordark: #061d48;
    --white: #fff;
    --lite-grey: #D9D9D9;
    --dark-blue: #102534;
    --dark: #252525;
    --primaryfont: 'Poppins', sans-serif;
    --secondaryfont: 'Nunito Sans', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--primaryfont);
    color: var(--dark);
    overflow-x: hidden !important;
    /* cursor:url(https://demo.techstas.com/assets/img/android-chrome-512x512.png), auto; */
}
body::-webkit-scrollbar {
    width: 0.7em;
}
 
body::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
}
 
body::-webkit-scrollbar-thumb {
  background-color: var(--logocolor);
  outline: 1px solid var(--logocolordark);
  border-radius: 10px;
}

section{
    overflow-x: hidden !important;
}
section.blog-section {
    overflow-x: visible !important;
}


a {
    color: var(--white);
    text-decoration: none;
}

a:hover {
    color: var(--white);
    text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--titlefont);
}


/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/

.back-to-top {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    right: 15px;
    bottom: 15px;
    z-index: 996;
    background: var(--primary);
    width: 40px;
    height: 40px;
    border-radius: 60px;
    transition: all 0.4s;
}

.back-to-top i {
    font-size: 28px;
    color: var(--white);
    line-height: 0;
}

.back-to-top:hover {
    background: var(--primary);
    color: var(--white);
}

.back-to-top.active {
    visibility: visible;
    opacity: 1;
}
.whatsapp {
    background-color: #42db87;
    color: #fff;
    width: 60px;
    position: fixed;
    bottom: 35px;
    left: 30px;
    height: 60px;
    font-size: 30px;
    border-radius: 50px;
    text-align: center;
    box-shadow: 2px 2px 3px #999;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translatey(0px);
    animation: pulse 1.5s infinite;
    box-shadow: 0 0 0 0 #42db87;
    -webkit-animation: pulsing 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
    -moz-animation: pulsing 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
    -ms-animation: pulsing 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
    animation: pulsing 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
    font-weight: normal;
    font-family: sans-serif;
    text-decoration: none !important;
    transition: all 300ms ease-in-out;
    z-index: 996;
}
@keyframes pulsing{
    100% {
    box-shadow: 0 0 0 30px rgba(232, 76, 61, 0);
}
}



/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/

@media screen and (max-width: 768px) {
    [data-aos-delay] {
        transition-delay: 0 !important;
    }
}


/*--------------------------------------------------------------
# Top Bar
--------------------------------------------------------------*/

#topbar {
    background: var(--logocolordark);
    font-size: 12px;
    height: 40px;
    padding: 0;
    color: var(--white);
}

#topbar .contact-info a {
    line-height: 0;
    color: var(--white);
    transition: 0.3s;
}

#topbar .contact-info a:hover {
    color: var(--white);
}

#topbar .contact-info i {
    color: var(--primary);
    line-height: 0;
    margin-right: 5px;
}

#topbar .contact-info .phone-icon {
    margin-left: 15px;
}

#topbar .social-links a {
    color: var(--white);
    padding: 4px 12px;
    display: inline-block;
    line-height: 1px;
    transition: 0.3s;
}

#topbar .social-links a:hover {
    color: var(--lite-grey);
}


.owl-theme .owl-dots .owl-dot.active span, .owl-theme .owl-dots .owl-dot:hover span {
    background: var(--logocolor);
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/

#header {
    background: var(--white);
    transition: all 0.5s;
    z-index: 997;
    height: 100px;
}

#header.fixed-top {
    background: var(--white);
}

#header .logo {
    font-size: 24px;
    margin: 0;
    padding: 0;
    line-height: 1;
    font-weight: 500;
    letter-spacing: 2px;
    color: var(--dark);
}

#header .logo a {
    color: var(--white);
}

#header .logo img {
    /* max-height: 70px; */
    width: 70%;
    transition: all 0.4s;
}

.scrolled-offset {
    margin-top: 100px;
}
.contact-info img{
    margin-right: 14px;
}
.contact-info a{
    margin-right: 34px;
    display: flex;
    align-items: center;
}
.office-time{
    display: flex;
    align-items: center;
}
.office-time img{
    margin-right: 14px;
}
.form-check-input:checked {
    background-color: #0b2c6a;
    border-color: #0b2c6a;
    box-shadow: none;
}


/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/


/**
* Desktop Navigation 
*/

.navbar {
    padding: 0;
}

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

.navbar li {
    position: relative;
}

.navbar>ul>li {
    margin-left: 5px;
}

.navbar ul .mainbtn, a.mainbtn, input.mainbtn {
    background-color: var(--logocolor);
    color: var(--white);
    font-family: var(--secondaryfont);
    box-shadow: none !important;
    padding: 10px 30px;
    border-radius: 40px;
    font-size: 14px;
    border: 0px;
    white-space: nowrap;
}
.navbar ul .mainbtn{
    margin-left: 30px;
    padding: 10px 10px;
}

.navbar a,
.navbar a:focus {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 25px 15px 24px 15px;
    font-size: 14px;
    font-weight: 400;
    color: var(--dark);
    white-space: nowrap;
    transition: 0.3s;
    text-decoration: none;
}

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

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

.navbar .dropdown ul {
    display: block;
    position: absolute;
    left: 0;
    z-index: 999;
    top: calc(100% + 30px);
    margin: 0;
    padding: 10px 0;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    background: var(--logocolordark);
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
    transition: 0.3s;
}

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

.navbar .dropdown ul a {
    padding: 10px 20px;
    color: white;
}

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

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover>a {
    color: var(--white);
}

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

.navbar .dropdown .dropdown ul {
    top: 0;
    left: calc(100% - 30px);
    visibility: hidden;
}

.navbar .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    left: 100%;
    visibility: visible;
}
.navbar .dropdown ul {
    background: var(--logocolordark);
}
.dropdown-item:focus, .dropdown-item:hover {
    color: var(--white);
    background-color: var(--logocolor);
}

.navbar .navbar-section>li>a:before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 7px;
    width: 100%;
    border-bottom: 2px solid var(--primary);
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}
.navbar .navbar-section>li:hover>a:before, .navbar .navbar-section>li >a.active:before {
    -webkit-transform: scale(1);
    transform: scale(1);
}

@media (max-width: 1366px) {
    .navbar .dropdown .dropdown ul {
        left: -90%;
    }
    .navbar .dropdown .dropdown:hover>ul {
        left: -100%;
    }
}
/* .navbar li.submenu {
    position: relative;
    padding-right: 30px;
}

.navbar li.submenu:after {
    font-family: FontAwesome;
    content: "\f107";
    font-size: 12px;
    color: #2a2a2a;
    position: absolute;
    right: 18px;
    top: 12px;
}

.navbar li.submenu:after {
    color: #2a2a2a;
} */
/* .navbar li.submenu ul {
    position: absolute;
    width: auto;
    box-shadow: 0 2px 28px 0 rgba(0, 0, 0, 0.06);
    overflow: hidden;
    top: 50px;
    background: var(--white);
    opacity: 0;
    transform: translateY(+2em);
    visibility: hidden;
    z-index: -1;
    transition: all 0.3s ease-in-out 0s, visibility 0s linear 0.3s, z-index 0s linear 0.01s;
}

.navbar li.submenu ul li {
    margin-left: 0px;
    padding-left: 0px;
    padding-right: 0px;
}

.navbar li.submenu ul li a {
    opacity: 1;
    display: block;
    background: var(--white);
    color: #2a2a2a!important;
    padding-left: 20px;
    height: auto;
    line-height: 40px;
    -webkit-transition: all 0.3s ease 0s;
    -moz-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    position: relative;
    font-size: 13px;
    font-weight: 400;
    border-bottom: 1px solid #eee;
}

.navbar li.submenu ul li a:hover {
    color: var(--primary)!important;
    padding-left: 25px;
}

.navbar li.submenu ul li a:hover:before {
    width: 3px;
}

.navbar li.submenu:hover ul {
    visibility: visible;
    opacity: 1;
    z-index: 1;
    transform: translateY(0%);
    transition-delay: 0s, 0s, 0.3s;
} */

/**
* Mobile Navigation 
*/

.mobile-nav-toggle {
    color: var(--dark-blue);
    font-size: 28px;
    cursor: pointer;
    display: none;
    line-height: 0;
    transition: 0.5s;
}

.mobile-nav-toggle.bi-x {
    color: var(--primary);
}

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

.navbar-mobile {
    position: fixed;
    overflow: hidden;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    background: #10253475;
    transition: 0.3s;
    z-index: 999;
}

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

.navbar-mobile ul {
    display: block;
    position: absolute;
    top: 0px;
    right: 0px;
    bottom: 0px;
    width: 80%;
    padding: 70px 0;
    background: url("../img/mob-nav-bg.webp");
    overflow-y: auto;
    transition: 0.3s;
    text-align: center;
}

.navbar-mobile a,
.navbar-mobile a:focus {
    padding: 10px 20px;
    font-size: 15px;
    color: var(--lite-grey);
    width: 100%;
    display: flex;
    justify-content: center;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover>a {
    color: var(--primary);
    background: none;
}

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
    margin: 15px;
}

.navbar-mobile .dropdown ul {
    position: static;
    display: none;
    margin: 10px 20px;
    padding: 10px 0;
    z-index: 99;
    opacity: 1;
    visibility: visible;
    background-color: var(--white);
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

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

.navbar-mobile .dropdown ul a {
    padding: 10px 20px;
    color: #191919;
}

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

.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover>a {
    color: var(--primary);
}

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

/*--------------------------------------------------------------
# Carousel Main
--------------------------------------------------------------*/

h1.bigTitle,
h2.bigTitle {
    line-height: 0.9;
    font-size: 10vw;
    line-height: 50px;
  }
  @media (min-width: 425px) {
    h1.bigTitle,
    h2.bigTitle {
      font-size: 6vw;
    }
  }
  @media (min-width: 1024px) {
    h1.bigTitle,
    h2.bigTitle {
      font-size: 6vw;
      line-height: 95px;
    }
  }
  
  .arrow-button {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #000;
    transition: padding 1s cubic-bezier(0.16, 1, 0.3, 1);
    width: fit-content;
    font-size: 12px;
  }
  .arrow-button svg {
    width: 33px;
    margin-left: 10px;
  }
  .arrow-button svg circle {
    transition: fill 0.75s ease;
    fill: transparent;
  }
  @media (min-width: 425px) {
    .arrow-button {
      font-size: 16px;
    }
    .arrow-button svg {
      width: 45px;
    }
  }
  @media (min-width: 1024px) {
    .arrow-button {
      font-size: 20px;
    }
    .arrow-button svg {
      width: 62px;
    }
    .arrow-button:hover {
      padding-left: 20px;
    }
    .arrow-button:hover svg circle {
      fill: var(--logocolor);
    }
  }
  @media (min-width: 1440px) {
    .arrow-button {
      font-size: 15px;
    }
    .arrow-button svg {
      width: 60px;
    }
  }
  @media (min-width: 1920px) {
    .arrow-button {
      font-size: 18px;
    }
    .arrow-button svg {
      width: 70px;
    }
  }
  
  .home-showcase {
    padding: 0 var(--columnExt) 0;
    position: relative;
    color: #fff;
  }
  .home-showcase .home-showcaseSlider {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .home-showcase .home-showcaseSlider .swiper-wrapper .swiper-slide {
    position: relative;
    overflow: hidden;
  }
  .home-showcase .home-showcaseSlider .swiper-wrapper .swiper-slide .swiper-image {
    padding: 10vw;
    height: 85vh;
    /* width: calc(100% - (5vw*2));
    height: calc(100% - (5vw*2)); */
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    align-items: flex-end;
  }
  .home-showcase .home-showcaseSlider .swiper-wrapper .swiper-slide .swiper-image .text-container {
    max-width: 100%;
    margin: 0 0 15rem;
  }
  .home-showcase .home-showcaseSlider .swiper-wrapper .swiper-slide .swiper-image .text-container span,
  .home-showcase .home-showcaseSlider .swiper-wrapper .swiper-slide .swiper-image .text-container p{
    transform: translate(-160%, 0);
    transition: transform 0.6s cubic-bezier(0.58, 0, 0.28, 0.99) 1s;
    width: fit-content;
  }
  .home-showcase .home-showcaseSlider .swiper-wrapper .swiper-slide .swiper-image .text-container .bigTitle {
    transform: translate(-140%, 0);
    transition: transform 1.15s cubic-bezier(0.58, 0, 0.28, 0.99) 0.4s;
    color: #fff;
    margin: 2rem 0 2.5rem;
    text-shadow: #21212121 0px 0px 5px;

  }
  .home-showcase .home-showcaseSlider .swiper-wrapper .swiper-slide .swiper-image .text-container .container-arrow-button {
    transform: translate(-160%, 0);
    transition: transform 0.6s cubic-bezier(0.58, 0, 0.28, 0.99) 1s;
    width: fit-content;
  }
  .home-showcase .home-showcaseSlider .swiper-wrapper .swiper-slide .swiper-image .text-container .container-arrow-button .arrow-button {
    color: #fff;
  }
  .home-showcase .home-showcaseSlider .swiper-wrapper .swiper-slide .swiper-image .text-container .container-arrow-button svg path {
    fill: #fff;
  }
  .home-showcase .home-showcaseSlider .swiper-wrapper .swiper-slide .swiper-image .text-container .container-arrow-button svg circle {
    stroke: #fff;
  }
  .home-showcase .home-showcaseSlider .swiper-wrapper .swiper-slide .swiper-image .text-container .container-arrow-button:hover svg circle {
    stroke: var(--logocolor);
  }
  .home-showcase .home-showcaseSlider .swiper-wrapper .swiper-slide .swiper-image .filter {
    width: 100%;
    height: 100%;
    background-color: #10112b;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    opacity: 0.5;
    transition: opacity 0.8s ease-in 0.5s;
  }
  .home-showcase .home-showcaseSlider .swiper-wrapper .swiper-slide-active .swiper-image .text-container .bigTitle, .home-showcase .home-showcaseSlider .swiper-wrapper .swiper-slide-active .swiper-image .text-container .container-arrow-button {
    transform: translate(0, 0);
  }
  .home-showcase .home-showcaseSlider .swiper-wrapper .swiper-slide .swiper-image .text-container span,
  .home-showcase .home-showcaseSlider .swiper-wrapper .swiper-slide .swiper-image .text-container p{
    transform: translate(0, 0);
  }
  .home-showcase .home-showcaseSlider .swiper-wrapper .swiper-slide-active .swiper-image .filter {
    opacity: 0;
  }
  .home-showcase .home-showcaseSlider .swiper-pagination {
    position: relative;
    bottom: 0;
    left: 0;
    width: fit-content;
    padding: 3.5% 0;
  }
  .home-showcase .home-showcaseSlider .swiper-pagination-bullet {
    width: 4vw;
    border-radius: 50px;
    height: 2px;
    background-color: #8f9397;
    opacity: 1;
    transition: width 0.8s ease-in-out, 0.4s ease-in-out;
    margin: 0 4px !important;
  }
  .home-showcase .home-showcaseSlider .swiper-pagination-bullet-active {
    background-color: var(--logocolor);
    width: 8vw;
  }
  .home-showcase .home-showcaseSlider .showcaseSlider-nav {
    display: flex;
    flex-direction: row;
    padding: 0 0 3.5% 5%;
    padding-right: 0;
  }
  .home-showcase .home-showcaseSlider .showcaseSlider-nav .showcaseSlider-prev, .home-showcase .home-showcaseSlider .showcaseSlider-nav .showcaseSlider-next {
    position: static;
    display: flex;
    align-items: flex-end;
    font-weight: 900;
    margin: 0 2vw;
    width: 20px;
    height: auto;
  }
  .home-showcase .home-showcaseSlider .showcaseSlider-nav .showcaseSlider-prev.swiper-button-disabled, .home-showcase .home-showcaseSlider .showcaseSlider-nav .showcaseSlider-next.swiper-button-disabled {
    opacity: 1;
  }
  .home-showcase .home-showcaseSlider .showcaseSlider-nav .showcaseSlider-prev.swiper-button-disabled:after, .home-showcase .home-showcaseSlider .showcaseSlider-nav .showcaseSlider-next.swiper-button-disabled:after {
    color: #8f9397;
  }
  .home-showcase .home-showcaseSlider .showcaseSlider-nav .showcaseSlider-prev::after, .home-showcase .home-showcaseSlider .showcaseSlider-nav .showcaseSlider-next::after {
    font-size: 4vw;
    color: var(--logocolor);
  }
  .home-showcase .home-showcaseSlider #macaron {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 1;
    margin: 5%;
    width: 30%;
  }
  .home-showcase .home-showcaseSlider #macaron #text-circle {
    animation: rotate-360 12s linear 0s infinite reverse forwards;
    transform-origin: center;
  }
  .home-showcase .scrollSliderButton {
    position: absolute;
    left: 50%;
    bottom: 0;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    transform: translate(-50%, 0%);
    color: #fff !important;
    text-decoration: none;
    font-size: 3.5vw;
    height: 21vw;
  }
  .home-showcase .scrollSliderButton .line {
    height: 15vw;
    width: 1px;
    background: var(--logocolor);
    margin-top: 5px;
    animation: scroll-anim-mobile 1.6s cubic-bezier(0.62, 0.01, 0.71, 0.47) 0s infinite normal forwards;
  }
  @media (min-width: 1024px) {
    .home-showcase .home-showcaseSlider {
      display: block;
    }
    .home-showcase .home-showcaseSlider .swiper-wrapper .swiper-slide {
      height: clamp(38rem, 75vh, 5000px);
    }
    .home-showcase .home-showcaseSlider .swiper-wrapper .swiper-slide .swiper-image {
      align-items: center;
    }
    .home-showcase .home-showcaseSlider .swiper-wrapper .swiper-slide .swiper-image .text-container {
      max-width: 75%;
      margin: 0;
    }
    .home-showcase .home-showcaseSlider .swiper-wrapper .swiper-slide .swiper-image .text-container .bigTitle {
      margin: 0 0 1.25rem;
    }
    .home-showcase .home-showcaseSlider .swiper-pagination {
      position: absolute;
      bottom: 0;
      left: 0;
      padding: 0 0 2.5% 5%;
    }
    .home-showcase .home-showcaseSlider .swiper-pagination-bullet {
      width: 1.5vw;
      height: 3px;
      margin: 0 8px !important;
    }
    .home-showcase .home-showcaseSlider .swiper-pagination-bullet-active {
      width: 3vw;
    }
    .home-showcase .home-showcaseSlider .showcaseSlider-nav {
      position: absolute;
      bottom: 0;
      right: 0;
      z-index: 1;
      padding: 0 5% 2.5% 5%;
    }
    .home-showcase .home-showcaseSlider .showcaseSlider-nav .showcaseSlider-prev, .home-showcase .home-showcaseSlider .showcaseSlider-nav .showcaseSlider-next {
      margin: 0 0.6vw;
    }
    .home-showcase .home-showcaseSlider .showcaseSlider-nav .showcaseSlider-prev::after, .home-showcase .home-showcaseSlider .showcaseSlider-nav .showcaseSlider-next::after {
      font-size: 1vw;
    }
    .home-showcase .home-showcaseSlider #macaron {
      width: fit-content;
      width: 8.4vw;
    }
    .home-showcase .scrollSliderButton {
      position: absolute;
      left: 50%;
      bottom: 0;
      z-index: 2;
      display: flex;
      flex-direction: column;
      align-items: center;
      transform: translate(-50%, 40%);
      color: #fff !important;
      text-decoration: none;
      font-size: 0.9vw;
      height: 4.8vw;
    }
    .home-showcase .scrollSliderButton .line {
      height: 4.8vw;
      width: 2px;
      background: var(--logocolor);
      margin-top: 5px;
      animation: scroll-anim 1.6s cubic-bezier(0.62, 0.01, 0.71, 0.47) 0s infinite normal forwards;
    }
  }

/*--------------------------------------------------------------
# Process
--------------------------------------------------------------*/

.process{
    margin: 60px 0;
}
.title-section{
    text-align: center;
}
.title-section h5{
    color: var(--dark);
    text-align: center;
    font-family: var(--secondaryfont);
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: center;
}
.title-section h5::after,
.title-section h5::before{
    content: url("../img/gblobe-dark-blue.svg");
    margin: 0 16px;
    
}
.title-section h2{
    font-family: var(--primaryfont);
    color: var(--logocolordark);
    font-size: 36px;
    font-weight: 700;
    letter-spacing: 1.8px;
    text-transform: capitalize;
}
.process-card{
    display: flex;
    justify-content: center;
}
.process-icon {
    position: relative;
    width: 150px;
    height: 150px;
    background: var(--white);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 15px;
    box-shadow: rgba(144, 200, 255, 0.2) 0px 8px 24px;
    border-radius: 100px;
    margin-bottom: 30px;
    -webkit-transition: all .25s linear;
    transition: all .25s linear;
}
.process-icon span {
    background: var(--logocolor);
    color: var(--white);
    width: 28px;
    height: 28px;
    border-radius: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: var(--primaryfont);
    font-size: 12px;
    font-weight: 700;
    border: 3px solid var(--white);
    position: absolute;
    right: -5px;
    top: 25px;
}
.process-main-section{
    padding: 20px;
}
/* .process-main-section:hover .process-icon{
    background: var(--logocolor);
}
.process-main-section:hover .process-icon span{
    border-color: var(--white);
}
.process-main-section:hover svg g{
    -webkit-transition: all .25s linear;
    transition: all .25s linear;
    fill: var(--white);
} */
.process-main-section h6{
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 1px;
    color: var(--dark-blue);
    text-transform: capitalize;
}
.process-main-section p{
    font-size: 12px;
    font-weight: 400;
    color: var(--dark);
}
.process-card{
    position: relative;
}
.process-card.arrow-up::after{
    content: url("../img/icon/c-up.png");
    position: absolute;
    right: -90px;
    z-index: -1;
}
.process-card.arrow-down::after{
    content: url("../img/icon/c-down.png");
    position: absolute;
    right: -90px;
    z-index: -1;
}
.process-main-section.even {
    margin-top: 70px;
}


.process-icon-one{
    animation: iconOneColor 5s infinite;
}
@keyframes iconOneColor {
    0% {background: var(--white);}  /* Default */
    4% {background: var(--white);}  /* Default */
    5% {background: var(--logocolor);}
    24% {background: var(--logocolor);} 
    25% {background: var(--white);}  /* Default */
    29% {background: var(--white);}  /* Default */
    30% {background: var(--white);}
    49% {background: var(--white);}
    50% {background: var(--white);}  /* Default */
    54% {background: var(--white);}  /* Default */
    55% {background: var(--white);}
    74% {background: var(--white);}
    75% {background: var(--white);}  /* Default */
    79% {background: var(--white);}  /* Default */
    80% {background: var(--white);}
    100% {background: var(--white);}
}
.process-main-section .process-icon-one svg g, .process-main-section .process-icon-one svg path{
    fill: var(--white);
    animation: iconOneFontColor 5s infinite;
}
@keyframes iconOneFontColor {
    0% {fill: var(--logocolor)}  /* Default */
    4% {fill: var(--logocolor)}  /* Default */
    5% {fill: var(--white)}
    24% {fill: var(--white)} 
    25% {fill: var(--logocolor)}  /* Default */
    29% {fill: var(--logocolor)}  /* Default */
    30% {fill: var(--logocolor)}
    49% {fill: var(--logocolor)}
    50% {fill: var(--logocolor)}  /* Default */
    54% {fill: var(--logocolor)}  /* Default */
    55% {fill: var(--logocolor)}
    74% {fill: var(--logocolor)}
    75% {fill: var(--logocolor)}  /* Default */
    79% {fill: var(--logocolor)}  /* Default */
    80% {fill: var(--logocolor)}
    100% {fill: var(--logocolor)}
}

.process-icon-two{
    animation: iconTwoColor 5s infinite;
}
@keyframes iconTwoColor {
    0% {background: var(--white);}  /* Default */
    4% {background: var(--white);}  /* Default */
    5% {background: var(--white);}
    24% {background: var(--white);} 
    25% {background: var(--white);}  /* Default */
    29% {background: var(--white);}  /* Default */
    30% {background: var(--logocolor);}
    49% {background: var(--logocolor);}
    50% {background: var(--white);}  /* Default */
    54% {background: var(--white);}  /* Default */
    55% {background: var(--white);}
    74% {background: var(--white);}
    75% {background: var(--white);}  /* Default */
    79% {background: var(--white);}  /* Default */
    80% {background: var(--white);}
    100% {background: var(--white);}
}
.process-main-section .process-icon-two svg g, .process-main-section .process-icon-two svg path{
    fill: var(--white);
    animation: iconTwoFontColor 5s infinite;
}
@keyframes iconTwoFontColor {
    0% {fill: var(--logocolor)}  /* Default */
    4% {fill: var(--logocolor)}  /* Default */
    5% {fill: var(--logocolor)}
    24% {fill: var(--logocolor)} 
    25% {fill: var(--logocolor)}  /* Default */
    29% {fill: var(--logocolor)}  /* Default */
    30% {fill: var(--white)}
    49% {fill: var(--white)}
    50% {fill: var(--logocolor)}  /* Default */
    54% {fill: var(--logocolor)}  /* Default */
    55% {fill: var(--logocolor)}
    74% {fill: var(--logocolor)}
    75% {fill: var(--logocolor)}  /* Default */
    79% {fill: var(--logocolor)}  /* Default */
    80% {fill: var(--logocolor)}
    100% {fill: var(--logocolor)}
}

.process-icon-three{
    animation: iconThreeColor 5s infinite;
}
@keyframes iconThreeColor {
    0% {background: var(--white);}  /* Default */
    4% {background: var(--white);}  /* Default */
    5% {background: var(--white);}
    24% {background: var(--white);} 
    25% {background: var(--white);}  /* Default */
    29% {background: var(--white);}  /* Default */
    30% {background: var(--white);}
    49% {background: var(--white);}
    50% {background: var(--white);}  /* Default */
    54% {background: var(--white);}  /* Default */
    55% {background: var(--logocolor);}
    74% {background: var(--logocolor);}
    75% {background: var(--white);}  /* Default */
    79% {background: var(--white);}  /* Default */
    80% {background: var(--white);}
    100% {background: var(--white);}
}
.process-main-section .process-icon-three svg g, .process-main-section .process-icon-three svg path{
    fill: var(--white);
    animation: iconThreeFontColor 5s infinite;
}
@keyframes iconThreeFontColor {
    0% {fill: var(--logocolor)}  /* Default */
    4% {fill: var(--logocolor)}  /* Default */
    5% {fill: var(--logocolor)}
    24% {fill: var(--logocolor)} 
    25% {fill: var(--logocolor)}  /* Default */
    29% {fill: var(--logocolor)}  /* Default */
    30% {fill: var(--logocolor)}
    49% {fill: var(--logocolor)}
    50% {fill: var(--logocolor)}  /* Default */
    54% {fill: var(--logocolor)}  /* Default */
    55% {fill: var(--white)}
    74% {fill: var(--white)}
    75% {fill: var(--logocolor)}  /* Default */
    79% {fill: var(--logocolor)}  /* Default */
    80% {fill: var(--logocolor)}
    100% {fill: var(--logocolor)}
}

.process-icon-four{
    animation: iconFourColor 5s infinite;
}
@keyframes iconFourColor {
    0% {background: var(--white);}  /* Default */
    4% {background: var(--white);}  /* Default */
    5% {background: var(--white);}
    24% {background: var(--white);} 
    25% {background: var(--white);}  /* Default */
    29% {background: var(--white);}  /* Default */
    30% {background: var(--white);}
    49% {background: var(--white);}
    50% {background: var(--white);}  /* Default */
    54% {background: var(--white);}  /* Default */
    55% {background: var(--white);}
    74% {background: var(--white);}
    75% {background: var(--white);}  /* Default */
    79% {background: var(--white);}  /* Default */
    80% {background: var(--logocolor);}
    100% {background: var(--logocolor);}
}
.process-main-section .process-icon-four svg g, .process-main-section .process-icon-four svg path{
    fill: var(--white);
    animation: iconFourFontColor 5s infinite;
}
@keyframes iconFourFontColor {
    0% {fill: var(--logocolor)}  /* Default */
    4% {fill: var(--logocolor)}  /* Default */
    5% {fill: var(--logocolor)}
    24% {fill: var(--logocolor)} 
    25% {fill: var(--logocolor)}  /* Default */
    29% {fill: var(--logocolor)}  /* Default */
    30% {fill: var(--logocolor)}
    49% {fill: var(--logocolor)}
    50% {fill: var(--logocolor)}  /* Default */
    54% {fill: var(--logocolor)}  /* Default */
    55% {fill: var(--logocolor)}
    74% {fill: var(--logocolor)}
    75% {fill: var(--logocolor)}  /* Default */
    79% {fill: var(--logocolor)}  /* Default */
    80% {fill: var(--white)}
    100% {fill: var(--white)}
}



.about-home{
    background: var(--logocolordark);
    padding: 60px 0;
    color: var(--lite-grey);
    overflow: hidden;
}
.about-home .title-section-secondary h2{
    color: var(--lite-grey);
}
.about-home-image{
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 30px;
}
.about-home-image img{
    z-index: 1;
    width: 100%;
}
.about-home-image::after{
    content: url("../img/about-ellipse.png"); width: 42px;
    position: absolute;
    top: -5px;
    width: 100%;
    left: -64px;
    transform: translatey(0px);
	animation: float 6s ease-in-out infinite;
}
@keyframes float {
	0% {
		transform: translatey(0px);
	}
	50% {
		transform: translatey(-30px);
	}
	100% {
		transform: translatey(0px);
	}
}
.title-section-secondary h5{
    color: var(--white);
    font-family: var(--secondaryfont);
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}
.title-section-secondary h5::before{
    content: url("../img/small-globe-blue.svg");
    padding-right: 10px;
}
.title-section-secondary h2{
    color: var(--logocolor);
    font-family: var(--primaryfont);
    font-size: 36px;
    font-weight: 700;
    line-height: 44px; /* 122.222% */
    letter-spacing: 1.8px;
    text-transform: capitalize;
}
.more-about-us .title-section-secondary h2{
    color: var(--logocolor);
}
.title-section-secondary h1{
    color: var(--logocolor);
    font-family: var(--primaryfont);
    font-size: 36px;
    font-weight: 700;
    line-height: 44px; /* 122.222% */
    letter-spacing: 1.8px;
    text-transform: capitalize;
}
.more-about-us .title-section-secondary h1{
    color: var(--logocolor);
}
.title-section-secondary p{
    font-family: var(--primaryfont);
    font-size: 16px;
    font-weight: 400;
    line-height: 30px; 
}

.about-more{
    position: relative;
}
.bg-dark-half{
    position: absolute;
    height: 50%;
    background: var(--logocolordark);
    top: 0;
    width: 100%;
}
.about-more-box {
    z-index: 1;
    background: url("../img/bg-blue.webp");
    /* background: url("../img/login-bg.webp"); */
    background-repeat: no-repeat;
    background-size: cover;
    padding: 45px;
    color: var(--white);
    border-radius: 30px;
}
.about-more-box img{
    margin-bottom: 15px;
}
.about-more-box h4{
    font-family: var(--primaryfont);
    font-size: 30px;
    font-weight: 700;
    line-height: 30px;
    margin-bottom: 0;
}
.about-more-box h6{
    font-size: 18px;
    font-weight: 400;
    line-height: 30px; 
}

/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/
.services{
    margin: 90px 0 0;
    position: relative;
    padding-bottom: 60px;
}
.service .title-section-secondary h2{
    color: var(--lite-grey);
}
.services .row{
    position: relative;
}
.services-owl-carousel-box{
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 73%;
    background: var(--white); 
    border-radius: 10px;
    box-shadow: 0px 4px 40px 0px rgba(108, 108, 108, 0.24); 
}
.services .item{
    position: relative;
    text-align: center;
    padding: 60px;
    display: grid;
    justify-items: center;
}
.services .item h4{
    color: #102534;
    font-family: var(--secondaryfont);
    font-size: 24px;
    font-weight: 700;
}
.services .item p{
    color: #6C6C6C;
    font-family: var(--primaryfont);
    font-size: 14px;
    font-weight: 400;
}
.services .item a{
    background: var(--logocolordark);
    color: var(--white);
    font-family: var(--primaryfont);
    font-size: 14px;
    padding: 7px 30px;
    font-weight: 500;
    border-radius: 50px;
}
.service-icon-box {
    background: var(--logocolor);
    width: 150px;
    height: 150px;
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 100px;
    margin-bottom: 20px;
}

.owl-carousel .owl-item .service-icon-box img{
    width: 75%;
    -moz-transition: all 2s ease-out;
    -o-transition: all 2s ease-out;
    -webkit-transition: all 2s ease-out;
    -ms-transition: all 2s ease-out;
    transition: all 2s ease-out;
}
.services .item:hover .service-icon-box img{
    transform: rotatey(360deg);
}
.services-owl-carousel .owl-nav {
    position: absolute;
    width: 100%;
}
.services button.owl-next {
    position: absolute;
    right: -20px;
    background: var(--logocolor) !important;
    width: 50px;
    height: 50px;
    bottom: 100px;
    border-radius: 100px !important;
    color: var(--white);
}
.services button.owl-prev {
    position: absolute;
    left: -45px;
    background: var(--logocolor) !important;
    width: 50px;
    height: 50px;
    bottom: 100px;
    border-radius: 100px !important;
    color: var(--white);
}
.services button span {
    color: #fff;
    font-size: 35px;
    line-height: 30px;
}
.services .owl-theme .owl-dots .owl-dot span {
    background: #0e59f26e;
}
.services .owl-theme .owl-dots .owl-dot.active span, .owl-theme .owl-dots .owl-dot:hover span {
    background: var(--logocolor);
}
.services .owl-dots {
    margin-bottom: 20px;
}
.services-dark-bg {
    background: var(--logocolordark);
    width: 100%;
    height: 34%;
    bottom: 0;
    position: absolute;
}

/*--------------------------------------------------------------
# Strength
--------------------------------------------------------------*/
.strength{
    /* background: var(--dark-blue); */
    background: url("../img/bg-2-n.png");
    padding: 60px 0;
    position: relative;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}
.strength .title-section h5, .strength .title-section h2{
    color: var(--white);
}
.strength-bg-img{
    position: absolute;
    /* background: url("../img/bg-honey.png"); */
    width: 100%;
    height: 100%;
    bottom: 0;
    background-repeat: no-repeat;
    background-size: cover;
    z-index: 3.2;
}
.strength .row{
    display: flex;
    justify-content: center;
    
}
.strength ul {
    column-count: 8;
    -moz-column-count: 8;
    -webkit-column-count: 8;
    display: contents;
    color: var(--white);
    text-align: center;
    z-index: 3!important;
}
.strength li {
    width: 12%;
    list-style: none;
    display: grid;
    justify-items: center;
    margin-bottom: 50px;
    transform: translatey(0px);
	animation: float-even 6s ease-in-out infinite;
}
@keyframes float-even {
	0% {
		transform: translatey(0px);
	}
	50% {
		transform: translatey(-20px);
	}
	100% {
		transform: translatey(0px);
	}
}
.strength li:nth-child( odd ) {
    animation: float-odd 6s ease-in-out infinite;

}
@keyframes float-odd {
	0% {
		transform: translatey(-20px);
	}
	50% {
		transform: translatey(0px);
	}
	100% {
		transform: translatey(-20px);
	}
}
.strength-icon-box {
    width: 70px;
    height: 70px;
    border-radius: 100px;
    background: var(--primary);
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 10px;
    box-shadow: 0px 4px 30px 0px rgba(14, 89, 242, 0.40);
}
.strength-icon-box img{
    width: 30px;
}
.strength li h6{
    font-family: var(--lite-grey);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.8px;
}


/*--------------------------------------------------------------
# Product
--------------------------------------------------------------*/
.product{
    background: url("../img/project-bg.png"), #64739014  50% / cover no-repeat;
    padding: 120px 0;
}
.product-card {
    position: relative;
    border-radius: 20px;
    height: 400px;
    -moz-transition: all 2s ease-out;
    -o-transition: all 2s ease-out;
    -webkit-transition: all 2s ease-out;
    -ms-transition: all 2s ease-out;
    transition: all 2s ease-out;
    transition: all 2s;
}
.product-card img{
    border-radius: 20px;
    width: 100%;
    -moz-transition: all 2s ease-out;
    -o-transition: all 2s ease-out;
    -webkit-transition: all 2s ease-out;
    -ms-transition: all 2s ease-out;
    transition: all 2s ease-out;
}
.product-details {
    position: absolute;
    bottom: 0;
    background: #fff;
    height: 130px;
    width: 100%;
    border-radius: 0 0 20px 20px;
    border-top: 5px solid var(--logocolor);
    padding: 20px;
    text-align: center;
}
.product-details h6{
    font-family: var(--secondaryfont);
    font-size: 20px;
    font-weight: 700;
    line-height: 20px;
    color: var(--dark-blue);
}
.product-details p{
    color: #6C6C6C;
    text-align: center;
    font-family: var(--secondaryfont);
    font-size: 13px;
    font-weight: 400;
    line-height: 16px; 
}
.product-link {
    height: 60px;
    width: 60px;
    background: var(--logocolor);
    border-radius: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    bottom: -30px;
    left: 0;
    right: 0;
    -moz-transition: all 2s ease-out;
    -o-transition: all 2s ease-out;
    -webkit-transition: all 2s ease-out;
    -ms-transition: all 2s ease-out;
    transition: all 2s ease-out;
    margin: auto;
}
.product-card:hover .product-link{
    margin-bottom: 10px;
    -moz-transition: all 0.4s ease-out;
    -o-transition: all 0.4s ease-out;
    -webkit-transition: all 0.4s ease-out;
    -ms-transition: all 0.4s ease-out;
    transition: all 0.4s ease-out;
}


/*--------------------------------------------------------------
# Work With Us Banner
--------------------------------------------------------------*/
.work-with-us{
    padding: 60px 0 60px;
}
.work-with-us-card{
    background: url("../img/bg-blue.webp");
    background-repeat: no-repeat;
    background-size: cover;
    /* box-shadow: 0px 4px 30px 0px rgba(14, 89, 242, 0.28); */
    padding: 60px;
    border-radius: 30px;
}
.work-with-us-card .title-section-secondary h5{
    color: var(--lite-grey);
    font-weight: 700;
}
.work-with-us-card .title-section-secondary h2{
    color: var(--white);
    font-weight: 700;
}
.work-with-us-card .title-section-secondary p{
    color: var(--lite-grey);
}
.work-with-us-card a{
    box-shadow: 0px 4px 30px 0px rgba(14, 89, 242, 0.40);
    background: var(--logocolor);
    padding: 15px 30px;
    border-radius: 50px;
    color: var(--white);
}
.work-with-us-card svg{
    margin-right: 20px;
}

/*--------------------------------------------------------------
# More ABout Us
--------------------------------------------------------------*/
.more-about-us{
    padding: 120px 0;
    background: url("../img/1bgabout.jpg"), rgba(14, 89, 242, 0.28) 50% / cover no-repeat;
}
img.team {
    width: 80%;
    border-radius: 30px;
}
.more-about-us .title-section-secondary h5{
    color: var(--dark-blue);
    font-weight: 700;
}
.more-about-us .owl-carousel .owl-item .about-more-content img {
    display: block;
    width: 80px;
    margin-bottom: 20px;
}
.item.about-more-content{
    border-radius: 30px;
    background: var(--white);
    padding: 30px;
}
.about-more-content p{
    color: var(--secondary);
    font-family: var(--primaryfont);
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0.95px;
    min-height: 150px;
    text-transform: capitalize;
}
.quote-by {
    display: flex;
    align-items: center;
}
.more-about-us .owl-carousel .owl-item .about-more-content .quote-by img{
    border-radius: 100px;
    margin-bottom: 0px;
    margin-right: 20px;
}
.quote-details{
    border-left: 3px solid var(--logocolor);
    padding-left: 10px;
}
.quote-details h3 {
    color: var(--logocolor);
    font-family: var(--primaryfont);
    font-size: 22px;
    font-weight: 700;
    letter-spacing: 1.4px;
    margin-bottom: 0px;
    text-transform: capitalize;
}
.quote-details h6{
    margin-bottom: 0px;
}


/*--------------------------------------------------------------
# Clients
--------------------------------------------------------------*/
.clients{
    padding: 80px 0;
}
.client-box{
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 30px;
    background: var(--white);
    box-shadow: 0px 4px 30px 0px rgba(201, 201, 201, 0.081);
    border-radius: 20px;
    position: relative;
    height: 200px;
    border: 2px solid #ebebeb; 
}


.client-box:hover{
    border: 2px solid var(--logocolor);
    box-shadow: 0px 4px 30px 0px rgb(11 44 106 / 10%);
}
.client-box img{
    width: 60%;
}

.client-logo{
    margin-bottom: 50px;
}
.client-logo h6 {
    background: var(--logocolor);
    padding: 10px 20px;
    color: var(--white);
    text-align: center;
    margin-bottom: 0;
    width: 200px;
    position: absolute;
    left: 0;
    right: 0;
    bottom: -20px;
    border-radius: 10px;
    margin: auto;
}
.clients .item{
    display: flex;
    justify-content: center;
    align-items: center;
}
.clients .item img{
    width: 60%;
}

/*--------------------------------------------------------------
# Location
--------------------------------------------------------------*/

.location-section{
    padding-top: 80px;
}
.warpper{
    display:flex;
    flex-direction: column;
    align-items: center;
  }
  .location .tabs{
    display: flex;
  }
  .location .tab{
    cursor: pointer;
    padding:20px;
    margin:0px 10px;
    margin-bottom: 20px;
    display:inline-block;
    color:var(--dark);
    border-radius:20px;
    border: 2px solid #D9D9D9;
  }
  .location .panels{
    background:#fffffff6;
    min-height:200px;
    width:100%;
    border-radius:3px;
    overflow:hidden;
    padding:20px;  
  }
  .location .panel{
    display:none;
    animation: fadein .8s;
  }
  .location .tab h6{
    display: flex;
    align-items: center;
    color: var(--dark-blue);
    font-family: var(--secondaryfont);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 15px;
  }
  .location .tab h3{
    font-family: var(--primaryfont);
    font-size: 24px;
    font-weight: 600;
    line-height: 24px;
  }
  .location .tab h5{
    color: var(--dark);
    font-family: var(--secondaryfont);
    font-size: 14px;
    font-weight: 700;
    line-height: 24px;
  }
  .location .tab p{
    color: #555;
    font-family: var(--secondaryfont);
    font-size: 14px;
    font-weight: 400;
    line-height: 19px;
    margin-bottom: 0;
  }
  .location .tab h6 svg{
    margin-right: 15px;
  }
  @keyframes fadein {
      from {
          opacity:0;
      }
      to {
          opacity:1;
      }
  }
  .panel-title{
    font-size:1.5em;
    font-weight:bold
  }
  .radio{
    display:none;
  }
  #one:checked ~ .panels #one-panel,
  #two:checked ~ .panels #two-panel{
    display:block
  }
  #one:checked ~ .tabs #one-tab,
  #two:checked ~ .tabs #two-tab{
    border: 2px solid var(--logocolor);
    box-shadow: 0px 4px 30px 0px rgb(11 44 106 / 22%);
  }
  #one:checked ~ .tabs #one-tab svg circle,
  #two:checked ~ .tabs #two-tab svg circle{
    fill: var(--logocolor);
  }
  #one:checked ~ .tabs #one-tab h3,
  #two:checked ~ .tabs #two-tab h3{
    color: var(--logocolordark);
  }


/*--------------------------------------------------------------
# Contact Home
--------------------------------------------------------------*/
.contact-home{
    padding: 80px 0;
}
.contact-home-box{
    box-shadow: 0px 4px 34px 0px rgba(108, 108, 108, 0.15);
    padding: 30px;
    border-radius: 20px;
}
.contact-home .title-section-secondary h5{
    color: var(--dark-blue);
    font-weight: 700;
}
.contact-box {
    margin-right: 25px;
}
.contact-box .inputBox {
    position: relative;
}

.contact-box .inputBox input,
.contact-box .inputBox textarea {
    width: 100%;
    padding: 0.625rem 0px;
    font-size: 1rem;
    letter-spacing: 0.062rem;
    margin-bottom: 0rem;
    border: 0px;
    border-bottom: 2px solid #ccc;
    background: transparent;
    border-radius: 0px;
}
.contact-box .inputBox input:focus{
    box-shadow: 0 0 0 0.25rem rgb(13 110 253 / 0%);
    border: 0px;
    border-bottom: 2px solid #061d48;
}

.contact-box .inputBox label {
    /* position: absolute;
    top: 0;
    left: 12px;
    padding: 0.625rem 0; */
    font-size: 1rem;
    color: gray;
    /* pointer-events: none;
    transition: 0.5s; */
    margin-top: 10px;
}

/* .contact-box .inputBox input:focus ~ label,
.contact-box .inputBox input:valid ~ label,
.contact-box .inputBox input:not([value=""]) ~ label{
    top: -1.125rem;
    left: 8px;
    color: #1a73e8;
    font-size: 0.75rem;
    background-color: #fff;
    height: 10px;
    padding-left: 5px;
    padding-right: 5px;
}
.contact-box .inputBox textarea:focus ~ label,
.contact-box .inputBox textarea:valid ~ label,
.contact-box .inputBox textarea:not([value=""]) ~ label{
    top: -1.125rem;
    left: 12px;
    color: #1a73e8;
    font-size: 0.75rem;
    background-color: #fff;
    height: 10px;
    padding-left: 5px;
    padding-right: 5px;
}

.contact-box .inputBox input:focus,
.contact-box .inputBox textarea:focus {
    outline: none;
    border-bottom: 2px solid #1a73e8;
} */
.contact-more-home-box {
    background: url(../img/contact-bg.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 80px 50px;
}
.contact-label{
    background: var(--white);
    padding: 5px 10px;
    border-radius: 100px;
    font-weight: 500;
    font-size: 14px;
    display: inline-block;
}
.contact-label svg{
    margin-right: 5px;
}
.contact-card p{
    color: var(--white);
    font-family: var(--secondaryfont);
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 0.54px;
    padding: 10px;
}



/*--------------------------------------------------------------
# Portfolio
--------------------------------------------------------------*/
.section-bg{
    padding: 80px 0;
}
.picbg{
    border-radius: 10px;
}
.portfolio-wrap{
    text-align: center;
    position: relative;
    overflow: hidden;
}
.portfolio-wrap img{
    width: 100%;
    height: 100%;
    border-radius: 0px;
    transition: 0.3s;
}
.portfolio-wrap:hover{
    transition: 0.3s;
    transform: scale(1.06);
}
.portfolio .portfolio-item {
    margin-bottom: 50px;
}

@media screen and (min-width:300px) and (max-width:400px){
    .portfolio-wrap img{
        width: 100%;
        height: 100%;
    }
    .portfolio .portfolio-wrap::before {
        width: 100% !important;
        height: 100% !important;
    }
}
@media screen and (min-width:401px) and (max-width:767px){
    .portfolio-wrap img{
        width: 100%;
        height: 100%;
    }
    .portfolio .portfolio-wrap::before {
        width: 100% !important;
        height: 100% !important;
    }

}
@media screen and (min-width:768px) and (max-width:991px){
    .portfolio-wrap img{
        width: 100%;
        height: 100%;
    }
    .portfolio .portfolio-wrap::before {
        width: 100% !important;
        height: 100% !important;
    }
}
@media screen and (min-width:992px) and (max-width:1285px){
    .portfolio-wrap img{
        width: 100%;
        height: 100%;
    }
    .portfolio .portfolio-wrap::before {
        width: 100% !important;
        height: 100% !important;
    }
}
.portfolio #portfolio-flters {
    padding: 0;
    list-style: none;
    text-align: center;
    padding: 7px;
}

.portfolio #portfolio-flters li {
    cursor: pointer;
    display: inline-block;
    padding: 10px 20px;
    font-size: 15px;
    font-weight: 500;
    line-height: 1;
    background: rgba(242, 242, 242, 0.50);;
    color: var(--logocolor);
    border-radius: 50px;
    margin: 5px 0;
    border: 1px solid var(--logocolor);
    transition: all 0.3s ease-in-out;
}

.portfolio #portfolio-flters li:hover,
.portfolio #portfolio-flters li.filter-active {
    color: var(--white);
    border-color: var(--logocolor);
    background: var(--logocolor);
    box-shadow: 0px 4px 30px 0px rgb(11 44 106 / 16%);
}

.portfolio #portfolio-flters li:last-child {
    margin-right: 0;
}

.portfolio .portfolio-wrap::before {
    content: "";
    background: rgb(11 44 106 / 60%);
    position: absolute;
    left: 120px;
    right: 30px;
    width: 100%;
    height: 100%;
    transition: all ease-in-out 0.3s;
    z-index: 2;
    opacity: 0;
}

.portfolio .portfolio-wrap .portfolio-info {
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    text-align: center;
    z-index: 3;
    transition: all ease-in-out 0.3s;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

@media screen and (min-width:300px) and (max-width:1285px){
    .portfolio .portfolio-wrap::before {
        margin-left: 40px;
    }
    .portfolio .portfolio-wrap .portfolio-info::before {
        margin-left: 40px;
    }
    .portfolio .portfolio-wrap .portfolio-info::after {
        margin-right: 45px;
    }
}
.portfolio .portfolio-wrap .portfolio-info h4 {
    font-size: 20px;
    color: var(--white);
    font-weight: 600;
}

.portfolio .portfolio-wrap .portfolio-info p {
    color: var(--white);
    font-size: 14px;
    text-transform: uppercase;
    padding: 0;
    margin: 0;
}

.portfolio .portfolio-wrap .portfolio-links {
    text-align: center;
    z-index: 4;
}

.portfolio .portfolio-wrap .portfolio-links a {
    background: var(--white);
    margin: 10px 10px;
    width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
    padding: 10px;
}

.portfolio .portfolio-wrap:hover::before {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 1;
}

.portfolio .portfolio-wrap:hover .portfolio-info {
    opacity: 1;
}

.portfolio .portfolio-wrap:hover .portfolio-info::before {
    top: 15px;
    left: 15px;
}

.portfolio .portfolio-wrap:hover .portfolio-info::after {
    bottom: 15px;
    right: 15px;
}


.service-more-box {
    z-index: 1;
    background: var(--logocolor);
    padding: 45px;
    color: var(--white);
    border-radius: 30px;
}
.service-more-box h4{
    font-family: var(--primaryfont);
    font-size: 30px;
    font-weight: 700;
    line-height: 30px;
    margin-bottom: 0;
}
.service-grid{
    display: grid;
    justify-items: center;
}
.service-more-box h6{
    font-size: 18px;
    font-weight: 400;
    line-height: 30px; 
}
.service-more-box span{
    font-size: 12px;
}
.service-more-card {
    background: var(--white);
    height: 120px;
    width: 120px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 100px;
    margin-bottom: 15px;
}
.service-more-card img{
    width: 80px;
    height: 80px;
    margin-bottom: 0;
}

.client-bg-blue{
    background: #EEF2FA;
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/






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

#footer {
    background: var(--logocolordark);
    padding: 0 0 30px 0;
    color: var(--white);
    font-size: 14px;
}

#footer .footer-top {
    padding: 60px 0 30px 0;
    background: url("../img/footer-bg.png"), 10%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

#footer .footer-top .footer-info {
    color:  var(--white);
}

#footer .footer-top .footer-info h3 {
    font-size: 36px;
    margin: 0 0 20px 0;
    padding: 2px 0 2px 0;
    line-height: 1;
    font-weight: 700;
}

#footer .footer-top .footer-info p {
    font-size: 14px;
    line-height: 24px;
    margin-bottom: 0;
    font-family: "Raleway", sans-serif;
}

#footer .footer-top .social-links a {
    font-size: 18px;
    display: inline-block;
    background: var(--logocolor);
    color:  var(--white);
    line-height: 1;
    padding: 8px 0;
    margin-right: 4px;
    border-radius: 50%;
    text-align: center;
    width: 36px;
    height: 36px;
    transition: 0.3s;
}

#footer .footer-top .social-links a:hover {
    background: var(--primary);
    color:  var(--white);
    text-decoration: none;
}

#footer .footer-top h4 {
    font-size: 16px;
    font-weight: 600;
    color:  var(--white);
    position: relative;
    padding-bottom: 12px;
}

#footer .footer-top .footer-links {
    margin-bottom: 30px;
    margin-left: 50px;
}

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

#footer .footer-top .footer-links ul i {
    padding-right: 2px;
    color: #093078;
    font-size: 12px;
    margin-right: 10px;
    line-height: 1;
}

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

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

#footer .footer-top .footer-links ul a {
    color:  var(--white);
    transition: 0.3s;
    display: inline-block;
    line-height: 1;
}

#footer .footer-top .footer-links ul a:hover {
    color: var(--lite-grey);
    text-decoration: underline;
}

#footer .footer-top .footer-newsletter form {
    margin-top: 30px;
    background:  var(--white);
    padding: 6px 10px;
    position: relative;
    border-radius: 4;
}

#footer .footer-top .footer-newsletter form input[type=email] {
    border: 0;
    padding: 4px;
    width: calc(100% - 110px);
}

#footer .footer-top .footer-newsletter form input[type=submit] {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    border: 0;
    background: none;
    font-size: 16px;
    padding: 0 20px;
    background: var(--primary);
    color:  var(--white);
    transition: 0.3s;
    border-radius: 4;
}

#footer .footer-top .footer-newsletter form input[type=submit]:hover {
    background: var(--primary);
}

#footer .copyright {
    border-top: 1px solid #0b2c6a;
    text-align: center;
    padding-top: 30px;
    font-size: 12px;
    color: var(--lite-grey);
}
#footer .copyright a{
    color: var(--white);
    font-weight: 500;
}

#footer .credits {
    padding-top: 5px;
    text-align: center;
    font-size: 13px;
    color:  var(--white);
}

#footer .credits a {
    color: var(--primary);
}
#footer .social-links {
    justify-content: center;
    display: flex;
    padding: 10px;
    border-bottom: 2px solid #093078;
    border-top: 2px solid #093078;
}
@media (max-width: 575px) {
    #footer .footer-top .footer-info {
        margin: -20px 0 30px 0;
    }
}


section.mobile-footer-nav{
    position: sticky !important;
    bottom: 0;
    z-index: 999;
}
nav.mobile-footer {
    display: none;
  }
  
  .mobile-footer {
    position: sticky;
    width: 100%;
    border-top: 1px solid var(--logocolor);
    height: 4rem;
    color: var(--white);
    font-size: 1rem;
    padding: 0;
    background: var(--logocolordark);
    overflow: hidden;
    bottom: 0;
  }
  .mobile-footer a {
    position: relative;
    overflow: hidden;
    width: 20%;
    height: 100%;
    display: inline-block;
    float: left;
    padding: 0;
    color: currentColor;
    line-height: 12;
    font-size: 0.725em;
    text-align: center;
    text-decoration: none;
    text-indent: -9999rem;
    text-overflow: ellipsis;
    white-space: nowrap;
    will-change: background, line-height;
    transition: background 0.15s ease-in-out, line-height 0.2s ease 0.2s;
  }
  .mobile-footer a:hover, .mobile-footer a:focus {
    background-color: rgba(128, 128, 128, 0.3);
  }
  .mobile-footer a:hover svg, .mobile-footer a:focus svg {
    transform: scale(1.25);
    opacity: 0.6;
  }
  .mobile-footer a:focus, .mobile-footer a:active {
    outline: none;
  }
  .mobile-footer a:focus svg, .mobile-footer a:active svg {
    opacity: 0.8;
  }
  .mobile-footer a:active svg {
    opacity: 1;
  }
  .mobile-footer a svg {
    position: absolute;
    fill: currentColor;
    top: calc(30% + 2.5px);
    left: 30%;
    width: 40%;
    height: 30%;
    transform: scale(1);
    transform-origin: center;
    will-change: opacity, transform, top;
    transition: opacity 0.2s ease, transform 0.2s ease, top 0.2s ease;
    opacity: 0.4;
    pointer-events: none;
  }
  .mobile-footer a.active {
    background-color: rgb(0 0 0 / 15%);
    text-indent: 0;
    line-height: 8.5;
    transition-delay: 0s, 0s, 0s;
  }
  .mobile-footer a.active svg {
    top: calc(24.5% + 2.5px);
    transform-origin: center bottom;
    opacity: 1;
  }
  .mobile-footer a.active:hover svg, .mobile-footer a.active:focus svg, .mobile-footer a.active:active svg {
    transform: scale(1);
  }
  .mobile-footer a.traversing svg {
    transition-delay: 0s, 0s, 0s;
    animation: 0.15s traversing ease-out both;
  }
  .mobile-footer .line {
    position: absolute;
    left: 0;
    top: 0;
    width: auto;
    height: 5px;
    text-indent: -9999rem;
    transform: translateX(-50%);
    border-radius: 2.5px;
    background: var(--logocolor);
    transition: left 0.5s ease-out;
    z-index: 10;
  }
  @keyframes traversing {
    0% {
      opacity: 1;
    }
    100% {
      opacity: 0.4;
    }
  }
  .mobile-footer.light {
    background-color: #d2d2d2;
    color: gray;
  }
  .mobile-footer.light svg {
    fill: gray;
  }
  .mobile-footer.primary svg {
    fill: #FFF;
  }
.mobile-footer-nav .offcanvas-header {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}
.mobile-footer-nav .offcanvas{
    background: var(--logocolordark);
}
.mobile-footer-nav button.text-reset {
    background: none;
    position: absolute;
    border: none;
    right: 10px;
    color: var(--lite-grey);
}
.mobile-footer-nav .offcanvas-body ul li a{
    display: grid;
    justify-content: center;
    justify-items: center;
    gap: 3;
    height: 40px;
    width: 80px;
    color: var(--lite-grey);
    align-items: center;
    margin: 10px;
    font-size: 12px;
    line-height: 25px;
    align-content: center;
}
.mobile-footer-nav .offcanvas-bottom {
    height: auto;
}

section.breadcrumb{
    background: url("../img/breadcrumb.png");
    padding: 60px 0;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    color: var(--white);
}
section.breadcrumb h2{
    font-family: var(--primaryfont);
    font-size: 30px;
    font-weight: 500;
    letter-spacing: 2.35px;
    display: flex;
    align-items: center;
}
section.breadcrumb h2 img {
    margin-right: 15px;
    width: 25px;
    height: 25px;
}
li.breadcrumb-item a {
    color: var(--white);
    text-decoration: underline;
}
li.breadcrumb-item.active {
    color: var(--white);
    font-weight: 500;
}
.breadcrumb-item+.breadcrumb-item::before {
    float: left;
    padding-right: 0.5rem;
    color: var(--white);
    content: var(--bs-breadcrumb-divider, "/");
}

.main-section{
    padding: 80px 0;
    color: var(--dark);
    overflow: hidden;
}
.main-section button {
    box-shadow: 0px 4px 30px 0px rgb(11 44 106 / 16%);
    background: var(--logocolor);
    padding: 15px 30px;
    border-radius: 50px;
    color: var(--white);
    border: none;
}
.main-section h5{
    color: var(--dark);
}
.main-section-img{
    position: relative;
    height: 400px;
}
.main-section-img img{
    position: absolute;
    z-index: -1;
}
.globe-rotate{
    animation: globerotate 10s linear infinite;
}
@keyframes globerotate {
    0%{
       transform: rotate(0deg);
      }
   100%{
       transform: rotate(360deg);
      }
}
section.service{
    background: url("../img/services/services-bg.png");
    padding: 100px 0;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    color: var(--white);
}
.service-box-icon {
    width: 100px;
    height: 100px;
    background: var(--white);
    border-radius: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    box-shadow: 0px 4px 30px 0px rgba(255, 255, 255, 0.249);
    margin-bottom: 30px;
}
.service-box-icon img{
    width: 50px;
    height: 50px;
}
.service-card{
    margin-bottom: 50px;
}
.service-card h5{
    color: var(--white);
    font-family: var(--secondaryfont);
    font-size: 18px;
    font-weight: 700;
}
.service-card p{
    color: var(--white);
    font-family: var(--secondaryfont);
    font-size: 12px;
    font-weight: 400;
    line-height: 22px;
}
.service-card a{
    color: var(--lite-grey);
    font-size: 13px;
    font-weight: 500;
    line-height: 30px;
    letter-spacing: 0.65px;
    text-decoration: underline;
    -webkit-transition: all 1s ease;
    -moz-transition: all 1s ease;
    -o-transition: all 1s ease;
    transition: all 1s ease;
}
.service-card a:hover{
    color: var(--primary);
}
.service-card a:hover img{
    margin-left: 20px;
}

.progress-main {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    align-items: center;
    margin: 80px 0 0;
}
.progress {
    width: 200px;
    height: 200px;
    font-size: 30px;
    color: var(--white);
    background: var(--white);
    border-radius: 50%;
    overflow: hidden;
    position: relative;
    text-align: center;
    line-height: 200px;
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
}
.progress img{
    width: 80px;
}
.progress-box h6 {
    color: #102534;
    font-size: 20px;
    font-weight: 600;
}
.progress-box p{
    color: #6C6C6C;
    font-size: 13px;
}

.progress .title {position: relative;z-index: 100;}

.progress .overlay {
    width: 50%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}
.progress-box{
    text-align: center;
    display: grid;
    justify-items: center;
}

.progress .left, .progress .right {
    width: 50%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    border: 5px solid var(--logocolor);
    border-radius: 100px 0px 0px 100px;
    border-right: 0;
    transform-origin: right;
}

.progress .left {animation: load1 1s linear forwards;}

.progress:nth-of-type(2) .right, .progress:nth-of-type(3) .right {animation: load2 .5s linear forwards 1s;}

.progress:last-of-type .right, .progress:first-of-type .right {animation: load3 .8s linear forwards 1s;}

@keyframes load1 {
    0% {transform: rotate(0deg);}

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

@keyframes load2 {
    0% {z-index: 100;transform: rotate(180deg);}

    100% {z-index: 100;transform: rotate(270deg);}
}

@keyframes load3 {
    0% {z-index: 100;transform: rotate(180deg);}

    100% {
        z-index: 100;transform: rotate(315deg);}
}


.services-process{
    background: url("../img/1bgabout.jpg");
    padding: 100px 0;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}   
.services-process.services-process-bg-none{
    background: none;
}
.services-process .title-section h2{
    color: var(--logocolordark);
}
.services-process .item {
    text-align: center;
    display: grid;
    justify-items: center;
    border-radius: 30px;
    padding: 30px;
    position: relative;
}
.services-process-white {
    position: absolute;
    background: var(--white);
    width: 100%;
    bottom: 0;
    height: 75%;
    z-index: -1;
    border-radius: 30px;
    box-shadow: 0px 4px 40px 0px rgba(108, 108, 108, 0.15);
}
.services-process .services-owl-carousel .owl-nav{
    display: none;
}
.services-process .owl-dots {
    margin-top: 30px;
}
.services-process .owl-carousel.owl-drag .owl-item{
    padding: 30px;
}
.services-process p{
    color: #6C6C6C;
    text-align: center;
    font-family: var(--primaryfont);
    font-size: 14px;
}
.services-process h4 {
    height: 65px;
}


.faq{
    padding: 80px 0;
}
.faq .accordion-button{
    font-family: var(--secondaryfont);
    font-size: 18px;
    font-weight: 600;
    line-height: 23px;
    letter-spacing: 1.2px;
    color: var(--dark);
    box-shadow: none;
    padding: 10px 0;
}
.faq .accordion-button:not(.collapsed){
    color: var(--logocolor);
    background-color: var(--white);
    border-bottom: 3px solid var(--logocolor);
}
.faq .accordion-item{
    border: 0px;
}
.faq .accordion-body{
    padding: 20px 0;
    border-bottom: 1px solid var(--lite-grey);
}
.service-section-banner .row{
    background: url('../img/bg-blue.webp'); 
    color: #fff; 
    padding: 60px; 
    background-position: center; 
    background-repeat: no-repeat; 
    background-size: cover;
}
.service-section-banner p {
    text-align: justify;
    font-family: var(--secondaryfont);
    font-size: 18px;
    font-weight: 400;
    line-height: 35px;
    margin-bottom: 0;
}
.service-section-banner h2{
    display: flex;
    align-items: center;
}
.service-section-banner h2 img{
    width: 25px;
    margin-right: 20px;
}
.traffic-process{
    background: url("../img/round-dotted-bg.png");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 120px 0px;
}
.traffic-process h5, .traffic-process h2{
    color: var(--white);
}
.traffic-process .box {
    background: var(--logocolor);
    width: 150px;
    height: 150px;
    border-radius: 150px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
    box-shadow: 0px 4px 30px 0px rgba(14, 89, 242, 0.23);
    margin-bottom: 30px;
}
.traffic-process .box img{
    width: 80px;
    height: 80px;
}
.traffic-process .traffic-process-card{
    display: grid;
    justify-items: center;
    color: var(--white);
    text-align: center;
    padding: 30px;
}
.traffic-process .traffic-process-card h6{
    font-family: var(--primaryfont);
    font-size: 20px;
    font-weight: 600;
}
.traffic-process .traffic-process-card p{
    font-size: 11px;
    font-weight: 400;
    line-height: 18px;
}

.services-we-provides{
    padding: 120px 0;
    background: url("../img/1bgabout.jpg"), rgba(14, 89, 242, 0.28) 50% / cover no-repeat;
}
.services-we-provides .tab {
    overflow: hidden;
    display: flex;
    justify-content: center;
    padding: 20px;
  }
  
  .services-we-provides .tab button {
    background-color: inherit;
    float: left;
    border: none;
    outline: none;
    cursor: pointer;
    padding: 14px 16px;
    transition: 0.3s;
    font-size: 17px;
    background: var(--white);
    margin: 10px;
    border: 2px solid rgba(14, 89, 242, 0.50);
    padding: 10px 40px;
    border-radius: 40px;
  }
  
  .services-we-provides .tab button:hover {
    background-color: var(--white);
    border-color: var(--logocolor);
    box-shadow: 0px 4px 24px 0px rgba(14, 89, 242, 0.28);
  }
  
  .services-we-provides .tab button.active {
    background-color: var(--white);
    border-color: var(--logocolor);
    box-shadow: 0px 4px 24px 0px rgba(14, 89, 242, 0.28);
  }
  
  .services-we-provides .tabcontent {
    display: none;
    padding: 6px 12px;
    border-top: none;
  }
  .services-we-provides .tabcontent h3{
    font-size: 26px;
    font-weight: 700;
    letter-spacing: 1.3px;
    text-transform: capitalize;
    color: var(--logocolor);
  }
  .services-we-provides .tabcontent p{
    font-size: 18px;
    font-weight: 400;
    line-height: 31px;
    letter-spacing: 0.9px;
  }

  .child-serice-services, .service-portfolio{
    padding: 60px 0;
  }
  
.child-serice-services-box {
    display: grid;
    position: relative;
    justify-content: center;
    align-items: center;
    justify-items: center;
    text-align: center;
    border: 2px solid rgb(11 44 106 / 28%);
    border-radius: 30px;
    padding: 100px 35px 50px;
    margin-top: 135px;
    min-height: 350px;
}
.child-serice-services-icon {
    background: var(--logocolor);
    width: 150px;
    height: 150px;
    display: flex;
    border-radius: 200px;
    align-items: center;
    justify-content: center;
    padding: 30px;
    position: absolute;
    top: -80px;
}
.child-serice-services-icon img{
    width: 70px;
}
.child-serice-services-box h5{
    font-size: 22px;
    color: var(--dark-blue);
    font-weight: 700;
    line-height: 32px;
}
.child-serice-services-box p{
    color: #6C6C6C;
    font-size: 16px;
    font-weight: 400;
}
.tailk-our-expert{
    padding: 60px 0;
}
.service-portfolio .item{
    padding: 20px;
}

/*--------------------------------------------------------------
# PRICING
--------------------------------------------------------------*/
.pricing{
    padding: 120px 0;
    background: #EEF2FA;
}
.pricing-box {
    background: var(--white);
    border-radius: 15px;
    border: 1px solid rgba(14, 89, 242, 0.50);
    text-align: center;
}
.pricing-box:hover{
    box-shadow: 0px 4px 30px 0px rgba(14, 89, 242, 0.21);
}
.pricing-head {
    border-bottom: 1px solid rgba(14, 89, 242, 0.50);
    padding: 50px 30px;
}
.pricing-head h6 {
    font-family: var(--secondaryfont);
    font-size: 16px;
    font-weight: 700;
    color: var(--logocolor);
    margin-bottom: 0;
    text-transform: uppercase;
}
.pricing-head h2{
    color: var(--logocolor);
    font-size: 62px;
    font-weight: 800;
}
.pricing-four .pricing-head h2{
    font-size: 40px;
    margin-bottom: 0px;
}
.pricing-head h2 span{
    font-size: 35px;
    font-family: var(--secondaryfont);
}
.pricing-four .pricing-head h2 span{
    font-size: 25px;
}
.pricing-box .pricing-details{
    padding: 30px;
}
.pricing-box .pricing-details ul{
    list-style: none;
    padding: 0;
}
.pricing-four .pricing-box .pricing-details {
    padding: 10px;
}
.pricing-box .pricing-details ul li{
    color: #555;
    font-size: 16px;
    font-weight: 400;
    line-height: 30px;
}
.pricing-four .pricing-box .pricing-details ul li{
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: left;
}
.green-round {
    background: #50D050;
    width: 13px;
    height: 13px;
    border-radius: 40px;
}
.red-round {
    background: #d05050;
    width: 13px;
    height: 13px;
    border-radius: 40px;
}
.pricing-box .accordion-item {
    background-color: #fff;
    border: 0px;
}
.nav-pricing a {
    background: #061d48;
    font-size: 12px;
    text-align: center;
    padding: 9px;
    border-radius: 10px;
    display: none;
}
.nav-pricing a span{
    font-size: 9px;
}
button.accordion-button, .accordion-button:focus{
    box-shadow: none;
    border-color: none;
    background: var(--white);
    border-bottom: 2px solid var(--lite-grey);
}
.accordion-button:focus{
    border-bottom: 2px solid var(--primary);
}
.accordion-button:not(.collapsed){
    color: var(--dark-blue);
    background: var(--white);
}
a.modalBtn{
    background: var(--logocolor);
    color: var(--white);
    padding: 10px 25px;
    border-radius: 100px;
    margin-top: 40px;
}
.pricing-content {
    height: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.pricing-box-blue{
    border: 1px solid var(--logocolor);
}
.pricing-box-blue .pricing-head {
    background: var(--logocolor);
    border-bottom: 1px solid var(--logocolor);
    border-radius: 10px 10px 0px 0px;
}
.pricing-box-blue .pricing-head h6 {
    color: var(--white);
}
.pricing-box-blue .pricing-head h2{
    color: var(--white);
}

.support{
    padding: 80px 0;
}
.support-details{
    display: flex;
    gap: 25px;
    justify-content: center;
    align-items: center;
}
.support-details img{
    width: 150px;
}

.contact-section{
    height: 300px;
    padding: 80px 0px;
    background: var(--logocolordark);
    border: 0px solid var(--logocolor);
    border-bottom: 1px solid var(--logocolor);
    border-top: 1px solid var(--logocolor);
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}
img.round.globe-rotate, .chat {
    position: absolute;
}
img.round.globe-rotate {
    opacity: 0.3;
}
.chat:hover{
    animation-name: heartFadeInOut; 
}
@keyframes heartbeat
{
  0%
  {
    transform: scale( .75 );
  }
  20%
  {
    transform: scale( 1 );
  }
  40%
  {
    transform: scale( .75 );
  }
  60%
  {
    transform: scale( 1 );
  }
  80%
  {
    transform: scale( .75 );
  }
  100%
  {
    transform: scale( .75 );
  }
}
.career-details{
    margin-bottom: 80px;
}
.career-details-card{
    padding: 30px;
    border-radius: 20px;        
    background: #FAFAFA;
    margin-bottom: 30px;
}
.career-details-card .title-section-secondary h5{
    color: var(--dark);
    font-weight: 700;
}
.career-details-card .title-section-secondary h2{
    color: var(--dark-blue);
    font-weight: 700;
}
.career-details-card a{
    background: var(--logocolor);
    padding: 15px 30px;
    border-radius: 50px;
    color: var(--white);
}
.career-details-card svg{
    margin-right: 20px;
}
.pulse-button {
    display: block;
    width: 200px;
    height: 200px;
    font-size: 1.3em;
    font-weight: light;
    text-transform: uppercase;
    text-align: center;
    line-height: 100px;
    letter-spacing: -1px;
    color: white;
    border: none;
    border-radius: 50%;
    background: #0b2c6aeb;
    cursor: pointer;
    box-shadow: 0 0 0 0 rgba(90, 153, 212, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .pulse-button:hover {
    animation: pulse 1.5s;
  }
  
  @keyframes pulse {
    0% {
      transform: scale(0.85);
    }
    70% {
      transform: scale(1);
      box-shadow: 0 0 0 50px rgba(90, 153, 212, 0);
    }
    100% {
      transform: scale(1);
      box-shadow: 0 0 0 0 rgba(90, 153, 212, 0);
    }
  }
.contact-section h4 {
    font-size: 60px;
    font-weight: 900;
    color: var(--white);
    color: #fff0;
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: var(--logocolor);
}

.m-scroll {
    width: 100%;
    margin: auto;
    overflow: hidden;
  }
  .m-scroll__title {
    display: flex;
    position: absolute;
    top: 0;
    left: 0;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
    height: 100%;
    white-space: nowrap;
    transform: scale(2);
    transition: all 0.3s ease;
  }
  .m-scroll__title > div {
    display: flex;
    -webkit-animation: scrollText 18s infinite linear;
            animation: scrollText 18s infinite linear;
  }
  @-webkit-keyframes scrollText {
    from {
      transform: translateX(0%);
    }
    to {
      transform: translateX(-50%);
    }
  }
  @keyframes scrollText {
    from {
      transform: translateX(0%);
    }
    to {
      transform: translateX(-50%);
    }
  }


  .partner-slider {
    display: flex;
    width: 100%;
    margin: 0 auto;
    overflow: hidden;
  }
  .partner-slider .item {
    animation: animate 25s linear infinite;
  }
  .partner-slider .item a {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 175px;
    width: 250px;
}
  .partner-slider .item img
    {
      min-width: 130px;
      padding: 0 30px;
    }
    .partner-slider .slider:hover .item {
    animation-play-state: paused;
  }
  @keyframes animate {
    0% {
      transform: translate3d(0, 0, 0);
    }
    100% {
      transform: translate3d(-1800px, 0, 0);
    }
  }

  .modal-header{
    align-items: flex-start;
  }

  .modal-header p{
    font-size: 12px;
    margin-bottom: 0px;
  }
  .modal-header h5{
    color: var(--logocolor);
    font-family: var(--primaryfont);
    font-size: 26px;
    font-weight: 700;
    line-height: 44px;
  }
  .submit{
    background: var(--logocolor);
    padding: 10px 30px;
    border-radius: 50px;
    color: var(--white);
    border: none;
  }
  .close{
    background: var(--dark);
    padding: 10px 30px;
    border-radius: 50px;
    color: var(--white);
    border: none;
  }
  .modal-header .form-control:focus {
    color: #212529;
    background-color: #fff;
    border-color: none !important;
    outline: 0;
    box-shadow: none !important;
}
.service-modal-form .form-label {
    font-size: 12px;
}

.industries-box {
    display: grid;
    justify-items: center;
    align-items: center;
    background: var(--white);
    padding: 30px 10px;
    margin-bottom: 25px;
    border-radius: 30px;
    font-weight: 500;
    color: var(--logocolordark);
    text-align: center;
    height: 190px;
}

.industries-box img{
    width: 70px;
}

.tech-logo {
    display: grid;
    align-items: center;
    justify-items: center;
    padding: 40px;
    border: 0.5px solid var(--logocolor);
    /* box-shadow: 0px 4px 30px 0px rgb(11 44 106 / 10%); */
    border-radius: 30px;
}
.tech-logo img{
    width: 100px;
    height: 100px;
    margin-bottom: 20px;
}


.or-card {
    padding: 35px 25px;
    background: #fff;
    border-radius: 20px;
    /* text-align: center; */
    height: 100%;
}
.or-card ul {
    padding-left: 1rem;
}

.desktop{
    display: block;
}
.mobile{
    display: none;
}
/* .modal{
    background: url("../img/login-bg.webp");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    object-fit: cover;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
} */
.modal-dialog {
    max-width: 70% !important;
    margin: 1.75rem auto;
    border-radius: 20px !important;
}
.popup-content-img{
    background: url("../img/404-bg.png");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    object-fit: cover;
}
.modal button.btn-close{
    position: absolute;
    top: 5px;
    right: 5px;
}

.title-section-secondary img{
    width: 50px;
}

/* Team Gallery Section */
.team-gallery {
  padding: 60px 0;
}

.team-gallery .container {
  max-width: 1140px;
  margin: 0 auto;
}

.team-gallery .section-title {
  text-align: center;
  margin-bottom: 50px;
}

.team-gallery .section-title h2 {
  font-size: 36px;
  font-weight: bold;
}

.team-gallery .section-title .description-title {
  color: var(--logocolor);
}

.team-gallery .team-item {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.team-gallery .team-item img {
    width: 100%;
    height: 340px;
    object-fit: cover;
    transition: transform 0.3s ease;
    border-radius: 8px;
}

.team-gallery .team-item:hover img {
  transform: scale(1.1);
}

/* Team Info */
.team-gallery .team-info {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background-color: rgba(0, 0, 0, 0.6);
  color: white;
  padding: 15px;
  border-radius: 8px;
  transition: opacity 0.3s ease;
  opacity: 0;
}

.team-gallery .team-item:hover .team-info {
  opacity: 1;
}

.team-gallery .team-info h4 {
  margin: 0;
  font-size: 18px;
  font-weight: 500;
}

.team-gallery .team-info p {
  margin: 5px 0;
  font-size: 14px;
  font-weight: 300;
}

.team-gallery .team-info .preview-link {
  color: #fff;
  font-size: 24px;
  text-decoration: none;
  margin-top: 10px;
  display: inline-block;
}

.team-gallery .team-info .preview-link:hover {
  color: var(--primary);
}


/*--------------------------------------------------------------
# Responsive
--------------------------------------------------------------*/

@media (max-width: 1200px){
    .contact-home-box{
        margin: 0px;
    }
    .carousel-content h1 {
        font-size: 34px;
        margin-bottom: 10px;
        margin-top: 10px;
        line-height: 35px;
    }
    .navbar a{
        padding: 25px 5px 24px 5px;
    }
    .navbar ul .mainbtn {
        margin-left: 10px;
    }
}

@media (max-width: 1100px){
    .contact-home-box{
        margin: 0px;
    }
    .carousel-content h1 {
        font-size: 34px;
        margin-bottom: 10px;
        margin-top: 10px;
    }
    .nav-btn{
        display: none;
    }
}

@media (max-width: 1000px){
    .process-card.arrow-down::after,
    .process-card.arrow-up::after,
    .about-home-image::after,
    .services-owl-carousel .owl-nav {
      display: none;
    }
    .strength li {
        width: 20%;
    }
    .contact-home-box{
        margin: 0px;
    }
    .work-with-us-card a{
        margin-top: 30px;
    }
    
}
@media (max-width: 767px) {
    /* .carousel-content p{
        display: none;
    } */
    .navbar li.submenu ul {
        position: relative;
        visibility: inherit;
        opacity: 1;
        z-index: 1;
        transform: translateY(0%);
        transition-delay: 0s, 0s, 0.3s;
        top: 0px;
        width: 100%;
        box-shadow: none;
        height: 0px;
    }
    .navbar li.submenu ul li a {
        font-size: 12px;
        font-weight: 400;
    }
    .navbar li.submenu ul li a:hover:before {
        width: 0px;
    }
    .navbar li.submenu ul.active {
        height: auto !important;
    }
    .navbar li.submenu:after {
        color: #3B566E;
        right: 25px;
        font-size: 14px;
        top: 15px;
    }
    .navbar li.submenu:hover ul,
    .navbar li.submenu:focus ul {
        height: 0px;
    }
    .product-card {
        margin-bottom: 70px;
    }
    img.team {
        width: 100%;
        margin-bottom: 30px;
    }
    .contact-home-box {
        margin: 0px;
        box-shadow: 0px 4px 34px 0px rgba(108, 108, 108, 0.15);
        padding: 30px 20px;
        border-radius: 20px;
    }
    .contact-more-home-box{
        margin-top: 40px;
    }
    section.breadcrumb h2{
        font-size: 18px;
        margin-bottom: 0px;
        justify-content: center;
        text-align: center;
    }
    .pricing-box, .pricing-box-blue .pricing-head{
        border-radius: 0px;
    }
    section.breadcrumb h2 img {
        display: none;
    }
    .breadcrumb {
        justify-content: center;
    }
    section.breadcrumb {
        padding: 15px 0;
    }
    li.breadcrumb-item {
        font-size: 10px;
    }
    .main-section {
        padding: 40px 0;
    }
    .title-section-secondary h5 {
        font-family: var(--secondaryfont);
        font-size: 12px;
    }
    .support-details img {
        width: 90px;
    }
    .contact-section h4 {
        font-size: 24px;
    }
}
@media only screen and (max-width: 600px) {
    .process-card.arrow-down::after,
    .process-card.arrow-up::after,
    .about-home-image::after,
    .services-owl-carousel .owl-nav {
      display: none;
    }
    .strength li {
        width: 25%;
    }
    .strength .row {
        padding: 15px;
    }
    .strength li h6{
        font-size: 10px;
    }
    .strength-icon-box{
        width: 60px;
        height: 60px;
    }
    .strength-icon-box img {
        width: 22px;
    }
    .product-card{
        margin-bottom: 70px;
    }
    .tabs {
        display: block;
    }
    .contact-home-box {
        margin: 0 10px;
        box-shadow: 0px 4px 34px 0px rgba(108, 108, 108, 0.15);
        padding: 30px 20px;
        border-radius: 20px;
    }
    .contact-more-home-box{
        margin-top: 30px;
    }
    .carousel-content p{
        font-size: 12px;
        line-height: 25px;
    }
    .carousel-content h1 {
        font-size: 30px;
        line-height: 35px;
        margin-bottom: 15px;
        margin-top:5px;
    }
    .carousel-content span{
        font-size: 12px;
    }
    .carousel-content {
        width: 100%;
        padding: 35px;
        background: rgb(255 255 255 / 29%);
        border-radius: 16px;
        box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
        backdrop-filter: blur(5px);
        -webkit-backdrop-filter: blur(5px);
        border: 1px solid rgba(255, 255, 255, 0.3);
    }
    .navbar .navbar-section>li>a:before{
        display: none;
    }
    #header {
        height: 65px !important;
    }
    #header .logo img{
        width: 50%;
    }
    .title-section h5 {
        font-size: 12px;
        margin-bottom: 0px !important;
    }
    .services .item {
        padding: 40px;
    }
    .process-icon {
        padding: 30px;
        width: 120px;
        height: 120px;
    }
    .process-main-section h6 {
        font-size: 14px;
        font-weight: 600;
        letter-spacing: 0px;
    }
    .process-main-section p {
        font-size: 10px;
    }
    .process-icon span{
        right: -8px;
    }
    .about-more-box {
        width: 90%;
        padding: 40px 20px;
    }
    .title-section h2 {
        font-size: 22px;
        line-height: 30px;
    }
    .services-owl-carousel-box {
        width: 85%;
    }
    .navbar ul .mainbtn{
        margin-left: 0px;
    }
    #footer .footer-top .footer-links {
        margin-left: 0px;
    }
    .title-section-secondary h2 {
        font-size: 24px;
        line-height: 32px;
    }
    .title-section-secondary p{
        font-size: 16px;
        line-height: 24px;
    }
    img.team {
        width: 100%;
        margin-bottom: 30px;
    }
    .work-with-us-card{
        padding: 60px 30px;
    }
    .work-with-us-card a{
        margin-top: 30px;
    }
    nav.mobile-footer{
        display: block;
    }
    .product-card{
        height: 245px;
    }
    .product-details h6{
        font-size: 14px;
        line-height: 5px;
    }
    .product-details p {
        font-size: 10px;
        line-height: 11px;
    }
    .product-details{
        height: 90px;
    }
    .product-link{
        height: 40px;
        width: 40px;
        bottom: -20px;
    }
    .pulse-button{
        width: 150px;
        height: 150px;
    }
    img.round.globe-rotate {
        width: 150px !important;
    }
    .client-logo h6{
        display: none;
    }
    .client-box img {
        width: 100%;
    }
    .client-box{
        padding: 20px;
        height: 160px;
    }
    .progress {
        width: 150px;
        height: 150px;
    }
    .faq img{
        width: 100%;
        margin-bottom: 30px;
    }
    .faq {
        padding: 40px 0;
    }
    .contact-home {
        padding: 80px 0;
    }
    .work-with-us {
        padding: 60px 0;
    }
    .progress-main{
        padding: 0px 0;
        margin: 40px 0;
        margin-bottom: 0;
    }
    .service-more-box{
        width: 80%;
    }
    .service-more-box h6{
        margin-bottom: 30px;
    }
    .process-main-section.even {
        margin-top: 0px;
    }
    .service-section-banner .row{
        padding: 60px 10px;
    }
    .client-logo {
        margin-bottom: 25px;
    }
    .location .tabs{
        display: grid;
    }
    .desktop{
        display: none;
    }
    .mobile{
        display: block;
    }
    .service-more-card img{
        width: 50px;
        height: 50px;
    }
    .about-more-box h6{
        font-size: 14px;
    }
    .about-more-box h4{
        font-size: 25px;
        line-height: 20px;
    }
    .owl-carousel .owl-item .service-icon-box img{
        width: 60%;
    }
    .service-icon-box {
        width: 125px;
        height: 125px;
    }
    .services .item h4{
        font-size: 18px;
    }
    .services .item p{
        font-size: 12px;
    }
    .product{
        padding: 60px 0;
    }
    .clients .item img {
        width: 90%;
    }
    .main-section-img img {
        width: 90%;
    }
    .service-section-banner p{
        font-size: 13px;
        line-height: 20px;
    }
    .service-section-banner h2{
        font-size: 18px;
    }
    .service-section-banner h2 img {
        width: 15px;
        margin-right: 8px;
    }
    .faq .accordion-body {
        font-size: 14px;
    }
    .faq .accordion-button{
        font-size: 16px;
        line-height: 19px;
    }
    .location .tab h6{
        font-size: 12px;
        margin-bottom: 10px;
    }
    .location .tab h3 {
        font-size: 20px;
        line-height: 16px;
    }
    .location .tab h5{
        font-size: 10px;
        line-height: 10px;
    }
    .location .tab p{
        font-size: 12px;
        line-height: 18px;
    }
    .location .tab{
        padding: 15px;
    }
    .location-section{
        padding: 40px 0;
    }
    .contact-home-box input.mainbtn {
        margin-top: 30px;
    }
    .contact-more-home-box{
        padding: 40px 20px;
    }
    .services-we-provides{
        padding: 60px 0;
    }
    .service-card p{
        font-size: 10px;
        line-height: 16px;
    }
    .career-details-card a{
        margin-top: 30px;
    }
    .whatsapp {
        width: 40px;
        bottom: 63px;
        height: 40px;
        font-size: 20px;
        left: 0px;
        border-radius: 0px;
    }
    .back-to-top{
        bottom: 63px;
        right: 0px;
        border-radius: 0px;
    }
    .about-more-content p{
        min-height: 200px;
    }
    .service-more-card {
        height: 95px;
        width: 95px;
    }
    .scrolled-offset {
        margin-top: 60px;
    }
    .carousel-caption.carousel-caption-one.carousel-caption-medallion{
        width: 100%;
        left: 0%;
    }
    .carousel-caption.carousel-caption-one{
        width: 80%;
    }
    .carousel-caption {
        left: 10%;
    }
    .home-showcase .home-showcaseSlider .showcaseSlider-nav{
        position: absolute;
        right: 10px;
        bottom: 15px;
    }
    .home-showcase .home-showcaseSlider .swiper-pagination{
        position: absolute;
        left: 10px;
        bottom: 15px;
    }
    .nav-pricing a{
        display: block;
    }
    .traffic-process .box {
        width: 130px;
        height: 130px;
    }
    .traffic-process .box img {
        width: 60px;
        height: 60px;
    }
    .traffic-process .traffic-process-card h6 {
        font-size: 16px;
    }
    .home-showcase .home-showcaseSlider .swiper-wrapper .swiper-slide .swiper-image .text-container {
        max-width: 100%;
        margin: 0 0 3rem;
    }
    .industries-box{
        height: 100px;
        padding: 10px 10px;
        font-size: 8px;
        border-radius: 20px;
    }
    .industries-box img {
        width: 50px;
    }
    .navbar-mobile .dropdown ul {
        background-color: #0b2c6a;
        box-shadow: 0px 0px 30px rgb(127 137 161 / 0%);
    }
    .navbar-mobile .dropdown ul a{
        color: #fff;
    }
    .navbar-mobile .dropdown ul a {
        padding: 5px 5px;
        font-size: 13px;
    }
    .modal-dialog {
        max-width: 90% !important;
    }
    #topbar{
        font-size: 10px;
    }
    .contact-info img {
        margin-right: 5px;
        width: 16px;
    }
}

.zoom-in-out-box {
    animation: zoom-in-zoom-out 1s ease infinite;
}
@keyframes zoom-in-zoom-out {
    0% {
      transform: scale(0.8, 0.8);
    }
    50% {
      transform: scale(0.9, 0.9);
    }
    100% {
      transform: scale(0.8, 0.8);
    }
  }

.preloader-bubblingG {
    text-align: center;
    width: 78px;
    height: 49px;
    margin: auto;
  }
  .preloader-bubblingG span {
    display: inline-block;
    vertical-align: middle;
    width: 10px;
    height: 10px;
    margin: 24px auto;
    background: var(--logocolor);
    border-radius: 49px;
    -o-border-radius: 49px;
    -ms-border-radius: 49px;
    -webkit-border-radius: 49px;
    -moz-border-radius: 49px;
    animation: bubblingG 1.5s infinite alternate;
    -o-animation: bubblingG 1.5s infinite alternate;
    -ms-animation: bubblingG 1.5s infinite alternate;
    -webkit-animation: bubblingG 1.5s infinite alternate;
    -moz-animation: bubblingG 1.5s infinite alternate;
  }
  .preloader-bubblingG #bubblingG_1 {
    animation-delay: 0s;
    -o-animation-delay: 0s;
    -ms-animation-delay: 0s;
    -webkit-animation-delay: 0s;
    -moz-animation-delay: 0s;
  }
  .preloader-bubblingG #bubblingG_2 {
    animation-delay: 0.45s;
    -o-animation-delay: 0.45s;
    -ms-animation-delay: 0.45s;
    -webkit-animation-delay: 0.45s;
    -moz-animation-delay: 0.45s;
  }
  .preloader-bubblingG #bubblingG_3 {
    animation-delay: 0.9s;
    -o-animation-delay: 0.9s;
    -ms-animation-delay: 0.9s;
    -webkit-animation-delay: 0.9s;
    -moz-animation-delay: 0.9s;
  }
  
  @keyframes bubblingG {
    0% {
      width: 10px;
      height: 10px;
      background-color: var(--logocolor);
      transform: translateY(0);
    }
    100% {
      width: 23px;
      height: 23px;
      background-color: white;
      transform: translateY(-20px);
    }
  }
  @-webkit-keyframes bubblingG {
    0% {
      width: 10px;
      height: 10px;
      background-color: var(--logocolor);
      -webkit-transform: translateY(0);
    }
    100% {
      width: 23px;
      height: 23px;
      background-color: white;
      -webkit-transform: translateY(-20px);
    }
  }



  .offcanvas.menu {
    position: fixed;
    bottom: 0;
    z-index: 1045;
    display: flex;
    flex-direction: column;
    max-width: 100%;
    visibility: hidden;
    background-color: transparent;
    background-clip: padding-box;
    outline: 0;
    transition: transform .3s ease-in-out;
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
    /* box-shadow: inset 0 0 0 200px rgb(0 0 0 / 26%); */
    width: 100%;
    justify-content: center;
    color: var(--white);
    margin: 0;
}
button.close-btn {
    background: none;
    border: 0px;
}
.offcanvas.menu .offcanvas-header {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}
.menu .social-links {
    text-align: end;
}
.menu .social-links {
    text-align: end;
    display: flex;
    justify-content: flex-end;
    list-style: none;
    margin-bottom: 0px;
    align-items: center;
    align-content: center;
}
.offcanvas.menu .social-links a {
    height: 50px;
    width: 50px;
    margin-left: 20px;
    background: #ffffff54;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 100px;
    font-size: 18px;
    border: 2px solid #ffffff00;
}
.offcanvas.menu .social-links a:hover{
    border: 2px solid #fff;
}
ul.menu-details {
    padding: 0;
    gap: 28px;
    list-style: none;
}
ul.menu-details a, ul.menu-details a:hover {
    color: var(--white);
}
ul.menu-details:hover a{
    color: rgb(205, 205, 205);
}
ul.menu-details a:hover {
    color: var(--white);
}
.offcanvas.menu .nav-menu ul{
    padding: 0;
    list-style: none;
}
.offcanvas.menu .nav-menu a{
    font-size: 16px;
    font-weight: 400;
}
.offcanvas.menu .nav-menu h6{
    font-weight: 700;
}
.offcanvas.menu .nav-menu  .nav-menu-details ul:hover a{
    color: rgb(179, 179, 179);
}
.offcanvas.menu .nav-menu  .nav-menu-details ul a:hover{
    color: var(--white);
}

.loader-mask {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    background-color: #fff;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.loader {
    /*position: absolute;*/
    /*left: 50%;*/
    /*top: 50%;*/
    /*width: 50px;*/
    /*height: 50px;*/
    font-size: 0;
    color: #00c9d0;
    display: inline-block;
    margin: -25px 0 0 -25px;
    text-indent: -9999em;
    -webkit-transform: translateZ(0);
    -ms-transform: translateZ(0);
    transform: translateZ(0);
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tab__list {
    display: flex;
    margin-bottom: 24px;
    flex-wrap: wrap;
    gap: 15px;
}
  .tab__item {
    overflow: hidden;
    cursor: pointer;
    padding: 7px 20px;
    text-shadow: 0 0 0.5px currentColor;
    letter-spacing: 1px;
    transition: 0.2s;
    font-size: 16px;
    position: relative;
    color: #0b2c6a;
    border-radius: 40px;
    border: 2px solid #0b2c6a;
}
 
.tab__item.is--active {
    color: #fff;
    position: relative;
    background: #0b2c6a;
    border: 2px solid #0b2c6a;
}
  .tab__item.is--active:before {
    visibility: visible;
    opacity: 1;
  }
  .tab__content {
    background: #ffffff;
    border-radius: 0 10px 10px;
  }
  .tab__content-item {
    display: none;
  }
  .tab__content-item.is--active {
    display: block;
  }
  .tab__content-title {
    padding: 24px 24px 24px 0;
  }
  
  .tab .tab .tab__item {
    font-size: 14px;
    padding: 3px 20px;
    border: 1px solid #0b2c6a;
  }
  .tab .tab .tab__content {
    padding: 0;
  }
  
  /* Go from zero to full opacity */
  @keyframes fadeEffect {
    from {opacity: 0;}
    to {opacity: 1;}
  }





  .confetti {
    display: inline-block;
    position: absolute;
    top: -1rem;
    left: 0;
    z-index: 150;
  }
  .confetti .rotate {
    -webkit-animation: driftyRotate 1s infinite both ease-in-out;
            animation: driftyRotate 1s infinite both ease-in-out;
    perspective: 1000;
  }
  .confetti .askew {
    background: currentColor;
    transform: skewY(10deg);
    width: 1rem;
    height: 1rem;
    -webkit-animation: drifty 1s infinite alternate both ease-in-out;
            animation: drifty 1s infinite alternate both ease-in-out;
    perspective:1000;
  }
    
  .confetti:nth-of-type(5n) {
    color: #F56620;
  }
  .confetti:nth-of-type(5n+1) {
    color: #00EAFF;
  }
  .confetti:nth-of-type(5n+2) {
    color: #EA8EE0;
  }
  .confetti:nth-of-type(5n+3) {
    color: #EBFF38;
  }
  .confetti:nth-of-type(5n+4) {
    color: #0582FF;
  }
  
  .confetti:nth-of-type(7n) .askew {
    -webkit-animation-delay: -.6s;
            animation-delay: -.6s;
    -webkit-animation-duration: 2.25s;
            animation-duration: 2.25s;
  }
  .confetti:nth-of-type(7n + 1) .askew {
    -webkit-animation-delay: -.879s;
            animation-delay: -.879s;
    -webkit-animation-duration: 3.5s;
            animation-duration: 3.5s;
  }
  .confetti:nth-of-type(7n + 2) .askew {
    -webkit-animation-delay: -.11s;
            animation-delay: -.11s;
    -webkit-animation-duration: 1.95s;
            animation-duration: 1.95s;
  }
  .confetti:nth-of-type(7n + 3) .askew {
    -webkit-animation-delay: -.246s;
            animation-delay: -.246s;
    -webkit-animation-duration: .85s;
            animation-duration: .85s;
  }
  .confetti:nth-of-type(7n + 4) .askew {
    -webkit-animation-delay: -.43s;
            animation-delay: -.43s;
    -webkit-animation-duration: 2.5s;
            animation-duration: 2.5s;
  }
  .confetti:nth-of-type(7n + 5) .askew {
    -webkit-animation-delay: -.56s;
            animation-delay: -.56s;
    -webkit-animation-duration: 1.75s;
            animation-duration: 1.75s;
  }
  .confetti:nth-of-type(7n + 6) .askew {
    -webkit-animation-delay: -.76s;
            animation-delay: -.76s;
    -webkit-animation-duration: 1.5s;
            animation-duration: 1.5s;
  }
    
  .confetti:nth-of-type(9n) .rotate {
    -webkit-animation-duration: 2s;
            animation-duration: 2s;
  }
  .confetti:nth-of-type(9n + 1) .rotate {
    -webkit-animation-duration: 2.3s;
            animation-duration: 2.3s;
  }
  .confetti:nth-of-type(9n + 2) .rotate {
    -webkit-animation-duration: 1.1s;
            animation-duration: 1.1s;
  }
  .confetti:nth-of-type(9n + 3) .rotate {
    -webkit-animation-duration: .75s;
            animation-duration: .75s;
  }
  .confetti:nth-of-type(9n + 4) .rotate {
    -webkit-animation-duration: 4.3s;
            animation-duration: 4.3s;
  }
  .confetti:nth-of-type(9n + 5) .rotate {
    -webkit-animation-duration: 3.05s;
            animation-duration: 3.05s;
  }
  .confetti:nth-of-type(9n + 6) .rotate {
    -webkit-animation-duration: 2.76s;
            animation-duration: 2.76s;
  }
  .confetti:nth-of-type(9n + 7) .rotate {
    -webkit-animation-duration: 7.6s;
            animation-duration: 7.6s;
  }
  .confetti:nth-of-type(9n + 8) .rotate {
    -webkit-animation-duration: 1.78s;
            animation-duration: 1.78s;
  }
  
  @-webkit-keyframes drifty {
    0% {
      transform: skewY(10deg) translate3d(-250%, 0, 0);
    }
    100% {
      transform: skewY(-12deg) translate3d(250%, 0, 0);
    }
  }
  
  @keyframes drifty {
    0% {
      transform: skewY(10deg) translate3d(-250%, 0, 0);
    }
    100% {
      transform: skewY(-12deg) translate3d(250%, 0, 0);
    }
  }
  @-webkit-keyframes driftyRotate {
    0% {
      transform: rotateX(0);
    }
    100% {
      transform: rotateX(359deg);
    }
  }
  @keyframes driftyRotate {
    0% {
      transform: rotateX(0);
    }
    100% {
      transform: rotateX(359deg);
    }
  }
  
  .blog-card {
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    padding: 10px;
    border-radius: 20px;
}
.blog-img {
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 10px;
}
.blog-content h2 {
    font-size: 18px;
    font-weight: 600;
    color: var(--logocolor);
}
.blog-content p {
    font-size: 14px;
}
a.blog-more {
    padding: 5px 20px;
    background: var(--primary);
    margin-bottom: 10px;
    border-radius: 10px;
}
.blog-img span {
    display: none;
}