@font-face {
    font-family: 'SF UI Display';
    src: url('./fonts/sfuidisplay-semibold.woff2') format('woff2'),
        url('./fonts/sfuidisplay-semibold.woff') format('woff');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'SF UI Display';
    src: url('./fonts/sfuidisplay-regular.woff2') format('woff2'),
        url('./fonts/sfuidisplay-regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'SF UI Display';
    src: url('./fonts/sfuidisplay-medium.woff2') format('woff2'),
        url('./fonts/sfuidisplay-medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'SF UI Display';
    src: url('./fonts/sfuidisplay-bold.woff2') format('woff2'),
        url('./fonts/sfuidisplay-bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

body {
    font-family: 'SF UI Display';
    font-weight: normal;
    max-width: 1920px;
    margin: auto;
}
.info {
    padding: 60px 0;
}
.info-fw-bold{
    font-weight: bold !important;
}
.bg-brand {
    background: #0064ff !important;
}
.bg-brand-dark{
    background: #001b74 !important;
}
.bg-brand-light{
    background: #f3f4f6 !important;
}
.bg-gradient{
    background: linear-gradient(140deg, #2065fa, #fa3267) !important;
}
.text-brand{
    color: #0064ff !important;
}
.text-brand-dark{
    color: #001b74 !important;
}
.text-brand-pink{
    color: #ff2a62 !important;
}
.btn{
    transition: .3s all ease-in-out;
}
.btn-brand{
    background: #ff2a62;
    color: #fff;
    border: 2px solid #ff2a62;
}
.btn-brand:hover{
    background: #fff;
    color: #ff2a62;
    border: 2px solid #ff2a62;
}
.btn-brand-blue{
    background: #0064ff;
    color: #fff;
    border: 2px solid #0064ff;
}
.btn-brand-blue:hover{
    background: #fff;
    color: #0064ff;
    border: 2px solid #0064ff;
}
.btn-gradient{
    background: linear-gradient(to right, #1564fc, #fc3066) !important;
    color: #fff;
    font-weight: bold;
}
.btn-gradient:hover{
    background: linear-gradient(to right, #fc3066, #1564fc) !important;
    color: #fff;
}
.btn-brand-glass{
    background: #ffffff00;
    color: #fff;
    border: 2px solid #686769;
    backdrop-filter: blur(8px);
}
.btn-brand-glass:hover{
    background: #ffffff36;
    color: #fff;
    border: 2px solid #686769;
    backdrop-filter: blur(8px);
}
.bg-brand .btn-brand-glass{
    background: #ffffff29;
    color: #fff;
    border: 2px solid #ffffff78;
    backdrop-filter: blur(8px);
}
.btn-learn-more{
    color: #0064ff;
    text-decoration: none;
    position: relative;
}
.font-icon{
    position: relative;
}
.font-icon::after{
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
}
.btn-learn-more::after{
    position: absolute;
    content: '\f061';
    color: #0064ff;
    right: -25px;
    top: 0;
    bottom: 0;
    margin: auto;
    transition: .3s all ease;
}
.btn-learn-more:hover::after{
    right: -30px;
}
.badge {
    background: #e5efff !important;
}
.bg-brand .badge{
    background: #e5efff2e !important;
}
.bg-brand-pink .badge{
    background: #ffe9ef !important;
}
#mainHeader {
	width: 100%;
	background-color: transparent;
	transition: background-color .3s;
	font-size: small
}
#mainHeader.bg {
	background-color: #ffffffd4 !important;
	box-shadow: 0 2px 15px rgba(0, 0, 0, .1) !important;
    backdrop-filter: blur(12px);
}
.navbar-brand img {
    width: 90px;
    transition: all 0.3s ease;
}
.mainHeader.scrolled .navbar-brand img {
    width: 50px;
}
.nav-link{
    position: relative;
    padding: 0 !important;
}
.navbar-nav .nav-link{
    font-size: .975rem;
}
.navbar-nav .nav-link.active{
    color: #1a74ff;
}
.navbar-nav .nav-link:hover{
    color: #011b74;
}
.nav-link.active::before{
    position: absolute;
    content: '';
    height: 2px;
    width: 100%;
    background: linear-gradient(to right, #1564fc, #fc3066) !important;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
}
.navbar-nav .nav-link{
    padding-bottom: 10px !important;
}
.navbar-nav li:not(:last-child){
    margin-right: 15px;
}
.dropdown-menu li{
    margin-right: 0 !important;
}
.dropdown-item{
    color: #000 !important;
    transition: .3s all ease;
}
.dropdown-item:hover{
    color: #000000 !important;
    background: linear-gradient(125deg, #5568e733, #e04d8325);;
}
.dropdown-item.active, .dropdown-item:active{
    background: linear-gradient(125deg, #5568e733, #e04d8325);
}

.hero-bg{
    background-position: top center;
    background-size: cover;
    background-repeat: no-repeat;
    padding: 180px 0;
}
.hero-home-bg{
    background: url('../img/hero-banner-img.webp');
}
.hero-overlay, .img-overlay{
    position: relative;
}
.hero-overlay::before{
    position: absolute;
    content: '';
    height: 100%;
    width: 100%;
    background: #00000090;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
}
.img-overlay::before{
    position: absolute;
    content: '';
    height: 100%;
    width: 100%;
    background: linear-gradient(to top, #141414c9, #e04d8200);
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    z-index: 9;
}

.info-gradient-icon{
    background: linear-gradient(125deg, #5569e7, #e04d82);
    height: 60px;
    width: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: .3s all ease-in-out;
}
.info-gradient-icon img{
    filter: brightness(0) saturate(100%) invert(99%) sepia(3%) saturate(827%) hue-rotate(312deg) brightness(111%) contrast(100%);
    width: 30px;
}
.info-icon-card:hover .info-gradient-icon{
    transform: scale(1.1);
}

.info-card .info-card-img img{
    transition: .3s all ease-in-out;
}
.info-card:hover .info-card-img img{
    transform: scale(1.1);
}
.info-brand-icon{
    background: #ff2a62;
    height: 45px;
    width: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: .3s all ease-in-out;
}
.info-brand-icon img{
    filter: brightness(0) saturate(100%) invert(99%) sepia(3%) saturate(827%) hue-rotate(312deg) brightness(111%) contrast(100%);
}

.info-img-content h5, .info-icon-left h5{
    padding-left: 60px;
}
.info-img-content .info-brand-icon, .info-icon-left .info-brand-icon{
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    margin: auto;
}
.info-img-content{
    position: absolute;
    left: 20px;
    bottom: 20px;
    z-index: 999;
}

.info-content-center{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.info-gradient-content{
  height: 60px;
  width: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(125deg, #5569e7, #e04d82) !important;
  border-radius: 50%;
}
.info-gradient-line{
  position: relative;
}
.info-gradient-line::after{
  position: absolute;
  content: '';
  background: linear-gradient(to right, #1564fc, #fc3066, #1564fc) !important;
  height: 3px;
  width: 100%;
  top: 22%;
  left: 0;
  right: 0;
  margin: auto;
  z-index: -1;
}

.icon-brand-blue{
    filter: brightness(0) saturate(100%) invert(61%) sepia(97%) saturate(7498%) hue-rotate(212deg) brightness(102%) contrast(107%);
}
.icon-white{
    filter: brightness(0) saturate(100%) invert(99%) sepia(3%) saturate(827%) hue-rotate(312deg) brightness(111%) contrast(100%);
}

.info-card-box{
    padding: 20px;
    border-radius: 15px;
    border: 1px solid #c9c9c949;
    transition: .3s all ease;
}
.info-card-box:hover{
    transform: scale(1.1);
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);;
}
.info-card.bg-gradient{
    padding: 20px;
    border-radius: 10px;
}

.info-brand-card{
    padding: 30px 40px;
    border-radius: 15px;
    border: 1px solid #0064ff;
    transition: .3s all ease;
}

.info-brand-card:hover{
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);;
}



.accordion-item{
  background: #fff;
  border-radius: 18px !important;
  border: 1px solid #D9D9D9 !important;
  transition: .3s all ease;
}
.accordion-item:hover{
    transform: scale(1.03);
}
.accordion-button{
  color: #000 !important;
  font-weight: 500 !important;
  border-radius: 18px !important;
}
.accordion-button.collapsed{
  background: #fff !important;
  color: #001b74 !important;
  font-size: 1.4rem;
}
.accordion-item:not(:last-child){
  margin-bottom: 20px;
}
.accordion-button:not(.collapsed){
  background: #fff !important;
  box-shadow: none;
  color: #001b74 !important;
  font-size: 1.4rem;
}


.social-icons {
    display: flex;
}
.social-icons li a {
    margin-right: 20px;
    height: 40px;
    width: 40px;
    border-radius: 50rem;
    background: #ffffff2e !important;
    color: #fff !important;
    text-align: center;
    align-items: center;
    display: flex;
    text-decoration: none;
    justify-content: center;
    transition: .3s ease-in-out;
    font-size: 1.2rem;
}
.social-icons li a:hover{
    background: #fff !important;
    color: #001b74 !important;
}
.info-quick-links li a{
    padding-left: 30px;

}
.info-quick-links li a{
    color: #d1d5dc;
    text-decoration: none;
    font-size: 1rem;
    position: relative;
}
.info-quick-links li:not(:last-child){
    margin-bottom: 10px;
}
.info-contact-content ul li{
    position: relative;
    padding-left: 25px;
    color: #d1d5dc;
}
.info-icon-left{
    position: absolute;
    left: 0;
    top: 5px;
    color: #ff2a62;
}
.info-contact-content ul li:not(:last-child){
    margin-bottom: 10px;
}
.info-contact-content ul li a{
    text-decoration: none;
    color: #d1d5dc;
}
.info-quick-links li a::after{
    position: absolute;
    content: '\f061';
    color: #d1d5dc;
    left:  0;
    top: 0;
    bottom: 0;
    margin: auto;
    transition: .3s all ease;
}
.info-quick-links li a:hover::after{
    left: 8px;
}

.info-hr{
    border-color: #fff;
}
.info-policy-links {
    display: flex;
    align-items: center;
    justify-content: end;
    margin-bottom: 0;
}

.ex-small {
    font-size: 0.675em !important;
}





/* Services Page 1 start here */

.services-fulfill-bg{
    background: url('../img/fulfill-banner-img.webp');
    background-position: center;
}
.services-content .info-brand-card {
    padding: 20px 16px;
}
.services-content .info-brand-icon {
    background: #0064ff;
}

/* Services Page 1 end here */

/* Services Page 2 start here */

.info-note-card{
    background: #fff;
    padding: 20px;
    border-left: 4px solid #0064ff;
    border-radius: 15px;
}
.info-note-list li{
    position: relative;
    padding-left: 30px;
}
.info-note-list li::before{
    position: absolute;
    content: '';
    height: 18px;
    width: 18px;
    background: url('../img/circle-check.svg');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    left: 0;
    top: 5px;
    filter: brightness(0) saturate(100%) invert(30%) sepia(92%) saturate(5154%) hue-rotate(212deg) brightness(102%) contrast(105%);
}
.info-note-list li:not(:last-child){
    margin-bottom: 8px;
}

/* Services Page 2 end here */


/* Team Page Css start here */

.team-social-icon a {
    margin-right: 20px;
    height: 50px;
    width: 50px;
    border-radius: 50rem;
    background: #e0ebfb !important;
    color: #0064ff !important;
    text-align: center;
    align-items: center;
    display: flex;
    text-decoration: none;
    justify-content: center;
    transition: .3s all ease-in-out;
    font-size: 1.2rem;
}
.team-social-icon a:hover{
    background: #0064ff !important;
    color: #fff !important;
}

.team-left-side-bg, .team-right-side-bg{
    position: relative;
    overflow: hidden;
}
.team-left-side-bg::before{
    position: absolute;
    content: '';
    height: 150%;
    width: 40%;
    background: linear-gradient(to bottom, #eaeef7, #f4f2f7) !important;
    left: 10%;
    top: 0;
    bottom: 0;
    margin: auto;
    transform: rotate(15deg);
}
.team-right-side-bg::before{
    position: absolute;
    content: '';
    height: 150%;
    width: 40%;
    background: linear-gradient(to bottom, #eaeef7, #f4f2f7) !important;
    right: 10%;
    top: 0;
    bottom: 0;
    margin: auto;
    transform: rotate(-20deg);
}
/* Team Page Css end here */


/* Work with us page Start here */

.info-icon-blue{
    background: #0064ff;
    height: 60px;
    width: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
    transition: .3s all ease-in-out;
}
.info-apply-card{
    padding: 20px;
    border-radius: 20px;
}
.info-icon-blue img{
    filter: brightness(0) saturate(100%) invert(99%) sepia(3%) saturate(827%) hue-rotate(312deg) brightness(111%) contrast(100%);
    width: 30px;
}
.info-icon-card:hover .info-icon-blue{
    transform: scale(1.1);
}
.brand-icon-blue{
    background: #e5efff;
    border-radius: 10px;
}
.brand-icon-blue img{
    filter: brightness(0) saturate(100%) invert(30%) sepia(92%) saturate(5154%) hue-rotate(212deg) brightness(102%) contrast(105%);
}
/* Work with us page End here */


/* Contact us page */
.info-contact-card .info-brand-icon {
    background: #0064ff;
}
.info-contact-right {
    padding-left: 40px;
}

.info-form-bg{
    padding: 20px;
    border-radius: 20px;
}
.form-label {
    margin-bottom: .5rem;
    font-weight: 500;
}
.formSubmit{
    width: 100%;
}
/* Contact us page */





/* Hero Video Bg */

.video-section {
  position: relative;
  overflow: hidden;
}

.video-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  overflow: hidden;
  pointer-events: none;
}
.video-wrapper video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #ffffffb8;
}
.content-overlay {
  position: relative;
  z-index: 2;
  color: white;
  padding: 180px 0;
}
.hero-video-overlay{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #00000060;
}







@media (max-width: 1399px) {

}
@media (max-width: 1199px) {

}
@media (max-width: 991px) {
    .info-gradient-line::after{
        width: 0px;
    }
    .navbar-nav li:not(:last-child) {
        margin-right: 0 !important;
    }
    .dropdown-menu li{
        text-align: center !important;
    }
}
/* Show dropdown on hover (desktop only) */
@media (min-width: 992px) {
    .navbar .dropdown:hover .dropdown-menu {
        display: block;
        margin-top: 0;
    }
}

@media (max-width: 767px) {
    .info {
        padding: 30px 15px;
    }
    .navbar-brand img{
        width: 80px;
    }
    .mainHeader.scrolled .navbar-brand img {
        width: 40px !important;
    }
    .hero-bg{
        padding: 140px 0;
    }
    .info-footer-bg .text-start {
        text-align: center !important;
    }
    .info-policy-links {
        flex-direction: column;
    }
    .info-content-center.text-start{
        text-align: center !important;
    }
    .accordion-button.collapsed, .accordion-button:not(.collapsed) {
        font-size: 1rem;
    }
    .info-brand-card {
        padding: 25px;
    }
    .team-left-side-bg::before {
        height: 150%;
        width: 100%;
        transform: rotate(60deg);
    }
    .team-right-side-bg::before{
        height: 150%;
        width: 100%;
        transform: rotate(-60deg);
    }
}
@media (max-width: 576px) {
    .btn-wide {
        font-size: 0.8rem;
        width: 100%;
    }
}


/* Form Color */
.hbspt-form input::placeholder,.hbspt-form textarea::placeholder {
  color: #000000;
}
.hbspt-form input[type="text"], .hbspt-form input[type="email"], .hbspt-form input[type="tel"], .hbspt-form select{
  display: block;
  width: 100%;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #000000 !important;
  background-color: #ffffff;
  background-clip: padding-box;
  border: 1px solid #dee2e6;
  width: 100% !important;
  height: 40px !important;
  border-radius: 8px;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  -o-border-radius: 8px;
}
textarea {
  width: 100%;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #000000;
  background-color: #ffffff;
  background-clip: padding-box;
  border: 1px solid #dee2e6;
  border-radius: 8px;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  -o-border-radius: 8px;
}
.hbspt-form fieldset, .hbspt-form .hs-input {
  margin: 0 !important;
  width: 100% !important;
}
.hbspt-form .hs-button {
  padding: 0.5rem 1.5rem;
  border-radius: 2.5rem;
  border: 0 !important;
  width: 100%;
  color: #fff;
  font-size: 1rem;
  box-shadow: 0 .5rem 1rem rgba(0,0,0,.15)!important;
  background: #ff2a62;
  color: #fff;
  border: 2px solid #ff2a62;
}
.hs_submit {
  margin-top: 25px !important;
  display: flex;
  justify-content: center;
}
.hs_submit .actions{
  width: 100%;
}
.hbspt-form .inputs-list label p, .hbspt-form .inputs-list label a {
  color: #000000;
  font-size: 0.8rem;
}
.hbspt-form .inputs-list label {
  color: #ff4444;
  font-size: 0.8rem;
}
.inputs-list{
  padding: 0;
  list-style: none;
}
.hs-form-booleancheckbox-display{
  position: relative;
  padding: 0.375rem 0.75rem;
  margin-top: 10px;
}
.hs-form-booleancheckbox-display .hs-input{
  position: absolute;
  content: '';
  left: 0 !important;
  width: auto !important;
}
.hbspt-form fieldset {
  max-width: 100% !important;
}




/* SLICK CSS */
.slick-dots {
    display: block;
    left: 0;
    right: 0;
    margin: auto;
    padding-top: 20px;
    list-style: none;
    text-align: center !important;
}
.slick-dots li {
    display: inline-block;
    margin-right: 10px;
}
.slick-dots li button {
    width: 12px;
    height: 12px;
    border: 0;
    border-radius: 50rem;
    background-color: #c9c9c9;
    text-indent: -999999px;
}
.slick-dots li.slick-active button {
    background-color: #66bc46;
}