:root {
	--primary-color: #faad9e;
	--black: #0f162a;
	--white: #fff;
	--dark-text: #0f162a;
}

body {
	font-family: 'Inter Tight';
	margin: 0;
	/* background-color: #ff9780; */
	color: var(--dark-text);
}

html
{
   scroll-padding-top: 200px;  
}

p
{
	color:#737373 !important;
}

.custom-navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20.5px 20px;
	border-radius: 10px;
    background-color: #0f162a;
	border-radius:unset;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;	
}

.nav-bottom-link 
{
    background-color: #ff9780;
    text-align: center;
    padding: 14px 0;
	border-radius:unset;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}

.custom-navbar-logo {
	font-size: 22px;
	color: var(--white);
	font-weight: 600;
}

.custom-navbar-menu {
	display: flex;
	gap: 30px;
	align-items: center;
}

.custom-navbar-menu a {
	color: var(--white);
	text-decoration: none;
	font-size: 15px;
}

.custom-btn {
	padding: 8px 16px;
	border-radius: 6px;
	font-weight: 500;
	text-decoration: none;
}

.regis-btn {
    display: flex;
    grid-column-gap: 32px;
	    align-items: center;
}

.custom-btn-outline {
    background: transparent;
    border: unset;
    color: #fff;
}

.custom-btn-filled {
    background: #ff9780;
    color: #000;
    border: none;
    padding: 15px 20px;
}
.custom-btn-filled {
    background: #158b9c; 
}
a.custom-btn.custom-btn-filled {
    color: #fff;
}

a.custom-btn.custom-btn-filled.Custom-WhiteButton {
    color: #000;
}
.custom-hero {
	text-align: center;
	padding: 80px 0px 0;
	position: relative;
    z-index: 2;
}

.custom-hero h1 {
    font-size: 60px;
    font-weight: 600;
    line-height: 1;
    max-width: 900px;
    margin: 0 auto 0px;
    margin-bottom: 50px;
    font-family: "Cormorant Garamond", serif;
    transform: scaleY(1.3);
	color:#0f162a;
}

.custom-hero p {
    color: #0f162a;
    max-width: 100%;
    margin: 0 auto 30px;
    line-height: 1.4;
    font-size: 18px;
    font-weight: 500;
}

.custom-cta-buttons {
	display: flex;
	justify-content: center;
	gap: 15px;
	margin-bottom: 80px;
	flex-wrap: wrap;
}

.custom-cta-buttons button:hover {
    color: #fff;
    background-color: #000;
}

.custom-btn-large {
	padding: 14px 24px;
	border-radius: 6px;
	font-size: 16px;
	font-weight: 600;
	cursor: pointer;
}

.custom-btn-primary {
	background: #ff9780;
	color: white;
	border: 1px solid #fa5f49;
}

.custom-btn-secondary {
	background: white;
	color: #111;
	border: 1px solid #111;
}

.custom-trusted-by {
	margin-top: 110px;
    text-align: center;
    font-weight: 400;
    margin-bottom: 50px;
    position: relative;
    z-index: 2;
    line-height: 1.3;
    font-size: 24px;
	color:#0f162a;
}

.custom-logos {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	gap: 30px;
	padding: 0 5%;
    position: relative;
    z-index: 2;
}

.custom-logos img {
	height: 40px;
	object-fit: contain;
}

.custom-section-heading {
    font-size: 28px;
    text-align: center;
    margin-top: 100px;
    margin-bottom: 80px;
    font-weight: 700;
    position: relative;
    z-index: 2;	
}

.howWebSect .custom-section-heading {
    font-size: 52px;
    text-align: center;
    margin-top: 100px;
    margin-bottom: 80px;
    position: relative;
    z-index: 2;
    font-weight: 500;
    line-height: 1.2;
	color:#0f162a;
}

.nav-wrap {
    z-index: 2;
    position: relative;
    padding-top: 15px;
}

.container
{
	max-width:1440px;
}

.nav-bottom-link a {
    display: flex;
    justify-content: center;
    column-gap: 30px;
}

.nav-bottom-link a span:first-child {
    font-weight: 500;
}

.nav-bottom-link a span:last-child {
    text-decoration: auto;
    border-bottom: 1px solid #000;
}

.custom-cta-buttons button {
    font-weight: 400;
    padding: 19.5px 27.5px;
    font-size: 16px;
    border: 1px solid #000;
    border-radius: 5px;
    color: #000000;
}

section.bkg-vid-sect {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
	z-index: 1;
}

section.bkg-vid-sect video {
	width: 100%;
    height: 100%;
    object-fit: cover;
}

body {
    position: relative;
}

body:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    background-color: #ffffffbf;
	    background-color: #e8fcff;
    z-index: 2;
    width: 100%;
    height: 100%;
}

.logo-marquee {
    overflow: hidden;
    position: relative;
    z-index: 99;
	margin-bottom: 70px;
}

.logo-track {
  display: flex;
  width: calc(200%);
  animation: scroll 30s linear infinite;
}

.logo-track img {
	width: auto;
    height: 54px;
    margin: 0 30px;
    flex-shrink: 0;
    /* filter: brightness(0); */
    filter: grayscale(100%) brightness(0.3);	
}

@keyframes scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.tab-buttons {
    display: flex;
    justify-content: center;
    background: #0f162a;
    border-radius: 5px;
    padding: 7px;
    position: sticky;
    top: 15px;
    z-index: 1000;
    max-width: fit-content;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 40px;
    column-gap: 10px;
    backdrop-filter: blur(5px);
    background-color: #f2f5fac2;;
    border: 2px solid #eee;	
}

.tab-btn {
  border: none;
  background: transparent;
  padding: 10px 20px;
  cursor: pointer;
  font-size: 16px;
  transition: all 0.3s ease;
}

.tab-btn.active {
	color: #fff;
    background: #0f162a;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.08);
    border-radius: 5px;
}

.tab-btn:hover 
{
    color: #fff;
    background: #0f162a;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.08);
    border-radius: 5px;
}

.tab-section {
    z-index: 2;
	text-align: center;
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}

.tab-section img {
  max-width: 100%;
  border-radius: 12px;
}

.tab-grid {
    display: grid;
    grid-template-columns: 24.2% auto;
    grid-column-gap: 48px;
}

.tab-right {
    width: 100%;
    height: 100%;
}

.tab-right img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.tab-left {
    text-align: left;
}

.tab-left h4 {
    font-size: 36px;
    font-weight: 500;
    line-height: 1.3;
	margin-bottom: 35px;
}

.tab-left p {
    margin-bottom: 32px;
	line-height: 1.4;
    font-size: 20px;	
}

section.zigzagsect {
    position: relative;
    z-index: 999;
}

section.zigzagsect h2 {
    text-align: center;
    font-size: 52px;
    font-weight: 500;
    line-height: 1.2;
    width: 70%;
    margin: 0 auto 80px;
	color:#0f162a;
}

.zz-wrap {
    display: grid;
    grid-template-columns: 38% auto;
    grid-column-gap: 6%;
    justify-content: center;
}

.zz-wrap img {
    width: 100%;
}

.zz-text label {
    font-size: 16px;
    font-weight: 500;
    line-height: 1;
    border: 1px solid #000;
    border-radius: 40px;
    padding: 8px 16px;
}

.zz-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: baseline;
    row-gap: 20px;
}

.zz-text h3 {
    font-size: 36px;
    font-weight: 500;
    line-height: 1.3;
	margin-bottom: 0;
}
p
{
	color:#0f162a;
}
.zz-img img
{
	width:600px;
	border-radius: 15px;
}

.zz-text p {
    font-size: 18px;
    font-weight: 400;
    line-height: 1.4;
	margin-bottom:0;
	color:#0f162a;
}

.taglabelwrap {
    display: flex;
    column-gap: 10px;
}

.taglabelwrap a {
    color: #000;
    text-decoration: none;
    padding: 8px 12px;
    border-radius: 5px;
    background-color: #ff9780;
    font-size: 16px;
	transition: .5s all ease;
}

.taglabelwrap a:hover
{
	color: #fff;
	background-color: #000;
}

.zigzagcover {
    display: flex;
    flex-direction: column;
    row-gap: 80px;
}

.zigzagcover .zz-wrap:last-child
{
	grid-template-columns: auto 38%;
}

section.custom-hero label {
    padding: 5px 10px;
    font-size: 16px;
    font-weight: 500;
    line-height: 1;
	letter-spacing: 1px;
    border-radius: 40px;
	margin-bottom: 40px;
    border: 1px solid #0f162a;
    text-transform: capitalize;
}

.tab-content-cover {
    display: flex;
    flex-direction: column;
    row-gap: 48px;
	margin-bottom: 170px;
}

.tab-left a {
    color: #000;
    display: inline;
    font-size: 18px;
    text-decoration: none;
    background-repeat: no-repeat;
    background-size: 0% 100%;
    transition: background-size 0.5s;
    background-image: linear-gradient(transparent calc(100% - 2px), black 2px);
}

.tab-left a:hover {
    background-size: 100% 100%;
}

footer {
    z-index: 9999;
    position: relative;
    background-color: #000;
    /* margin-top: 90px; */
    padding: 80px 0;
}

section.trustedpilotsect {
    position: relative;
    z-index: 2;
}

section.trustedpilotsect {
    margin-top: 170px;
    margin-bottom: 80px;
}

.tp-wrap h2 {
    font-size: 52px;
    font-weight: 500;
    line-height: 1.2;
    text-align: center;
    margin-bottom: 80px;
	color:#0f162a;
}

.tp-value-wrap {
    display: flex;
    column-gap: 32px;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
    padding: 32px 68px;
	border-radius: 20px;
    background-color: #fff;
    box-shadow: -74px 82px 31px #0000, -48px 53px 28px #00000003, -27px 30px 24px #00000008, -12px 13px 18px #0000000a, -3px 3px 10px #0000000d;
}



.tp-box {
    display: flex;
    align-items: center;
    column-gap: 32px;
	padding-left: 32px;
	border-left: 1px solid #000;
}

.tp-box img {
    width: 32px;
}

.tp-value-wrap .tp-box:first-child {
    padding-left: 0 !important;
	border-left: unset;    
}

.twofontw {
    font-size: 20px;
    font-weight: 600;
}

.twofontw span {
    font-weight: 400;
	color:#0f162a;
}

.pricing-tab {
  overflow: hidden;
}

.pricing-tab button {
    float: left;
    outline: none;
    cursor: pointer;
    transition: 0.3s;
    font-size: 17px;
    width: 100%;
    text-align: left;
    padding: 1rem 1.25rem;
    transition-duration: .4s;
    box-shadow: 0 1px 10px #0000000f;
    border: 1px solid #eee;
    background-color: #fff;
    border-radius: 8px;
}

.pricing-tab button:hover {
  border: 1px solid #000;
}

.pricing-tab button.active {
    color: #fff;
    /* border: 1px solid #000; */
    background-color: #000;
    background: linear-gradient(92deg, #5c73f5, #3b95e6, #158b9c);
}

.pricing-tab-content {
	display: none;
    padding: 30px;
    border: 1px solid #eee;
    border-top: none;
    background: #fff;
    box-shadow: 0 1px 10px #0000000f;
    border-radius: 10px;
}

/* body.inner-pages:before
{
	content: unset;
} */

.price-tab-grid {
    display: grid;
    grid-template-columns: 25% auto;
    grid-column-gap: 28px;
}

.pricing-tab {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    row-gap: 10px;
}

section.pricing-sect {
	margin-top: 48px;
    z-index: 999;
    position: relative;
	margin-bottom: 68px;
}

.pricing-header {
    text-align: center;
    margin-bottom: 48px;
}

.pricing-header h2 {
    margin-bottom: 24px;
    font-weight: 500;
    line-height: 1.3;
    font-size: 42.5px;
}

.pricing-header span {
    line-height: 1.4;
    font-size: 18px;
}

.pricing-tab button {
    display: flex;
    flex-direction: column;
    row-gap: 8px;
}

.btn-top-wrap {
    display: flex;
    justify-content: space-between;
}

span.pr-name {
    line-height: 1.3;
    font-size: 24px;
    font-weight: 400;
}

span.pr-amt 
{
    font-weight: 400;
    font-size: 14px;
}

span.pr-qyt 
{
    font-weight: 400;
    font-size: 14px;    
}

.inside-tab-wrap 
{
    display: flex;
    justify-content: space-between;
}

.tot-pmy
{
    display: flex;
    align-items: baseline;
    column-gap: 7px;
}

.tot-price-title {
    font-size: 14px;
    line-height: 1.3;
}

.tot-price-my span:first-child {
    font-size: 28px;
}

.tot-price-my span:last-child {
    font-size: 24px;
}

.monthyear-wrap button {
    all: unset;
    line-height: 1.3;
    font-size: 14px;
	padding: 8px 12px;	
}

.monthyear-wrap button span 
{
	padding: 4px;
    background-color: #fff9f4;
    font-size: 14px;
    border-radius: 2px;
}

.monthyear-wrap {
    border: 1px solid #000;
    padding: 5.5px;
    border-radius: 5px;
    display: flex;
    column-gap: 10px;
}

.monthyear-wrap .price-tab-btn.active
{
	color: #fff;
    line-height: 1.3;
    font-size: 14px;	
	padding: 8px 12px;
    cursor: pointer;
    border-radius: 5px;
    background-color: #3a95e6;
}

.monthyear-wrap .price-tab-btn.active span
{
	color:#000;
}

.tab-content-grid 
{
    margin-top: 24px;
    display: grid;
   /*  grid-template-columns: repeat(2, minmax(0, 1fr)); */
	column-gap: 32px;
}

.tab-content-left ul {
    list-style-type: none;
    padding-left: 0;
    margin-bottom: 0;
    display: flex;
    flex-direction: column;
    row-gap: 12px;
}

.tab-content-left ul li {
    display: flex;
    align-items: baseline;
    column-gap: 6px;
}

.tc-headsub-wrap {
    display: flex;
    flex-direction: column;
    row-gap: 5px;
}

.tab-content-left ul li img {
    position: relative;
    top: 5px;
    width: 21px;
    height: 21px;
    flex-shrink: 0;
}

span.tc-head-wrap {
    font-size: 16px;
    line-height: 1.3;
}

span.tc-subhead-wrap {
    color: #6a6a6a;
    line-height: 1.3;
    font-size: 14px;
}

.tab-content-left h4, 
.tab-content-right h4 
{
    font-size: 20px;
    line-height: 1.2;
    font-weight: 500;
}

.tab-content-left p, 
.tab-content-right p 
{
    font-size: 16px;
    line-height: 1.3;
}

.tab-content-left {
    position: relative;
}

.tab-content-left:before {
    content: '';
    border-right: 1px solid #eee;
    position: absolute;
    right: -13px;
    top: 0;
    display: block;
    height: 100%;
    width: 1px;
}


.custom-select 
{
	position: relative;
}

.custom-select select 
{
	display: none;
}

.custom-select i 
{
    right: 6px;
    top: 8px;
    font-weight: 500;
    font-size: 18px;
    position: absolute;
    pointer-events: none;
}

.select-selected 
{
    border-radius: 5px;
    border: 1px solid #000;
}

.select-selected:after 
{
	position: absolute;
	content: "";
	top: 14px;
	right: 10px;
	width: 0;
	height: 0;
	border: 6px solid transparent;
	border-color: #fff transparent transparent transparent;
}

.select-selected.select-arrow-active:after 
{
	top: 7px;
	border-color: transparent transparent #fff transparent;
}

.select-items div,.select-selected 
{
	color: #000;
	font-size: 14px;
	cursor: pointer;
	user-select: none;
	padding: 8px 16px;
}

.select-items 
{
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 99;
    background-color: #fff;
    border: 1px solid #000;
    margin-top: 5px;
    border-radius: 5px;
    overflow: hidden;
    max-height: 200px;	
}

.select-hide 
{
	display: none;
}

.select-items div:hover, .same-as-selected 
{
	background-color: #cedeff;
}

span.vsmall 
{
    font-size: 10px;
}

.customselectwrapper 
{
    width: 73%;
}

.tab-content-right p 
{
    width: 73%;
}

.customselectwrapper 
{
    margin-bottom: 24px;
}

.check-li-wrap ul 
{
    padding-left: 0;
	margin-bottom: 0;
    list-style-type: none;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.check-li-wrap ul li {
    display: flex;
    column-gap: 8px;
    line-height: 1.3;
	font-size: 16px;
}

.check-li-wrap ul li img {
    width: 9px;
    height: 9px;
	position: relative;
    top: 6px;	
}

.tc-button-wrapper {
    margin-top: 24px;
    justify-content: flex-end;
    grid-column-gap: 14px;
    grid-row-gap: 14px;
    display: flex;
}

.tc-button-wrapper a {
    text-decoration: none;
    font-weight: 400;
    line-height: 1.2;
    padding: 12px 20px;
    border: 1px solid #3a95e6;
    color: #000;
    border-radius: 5px;
}

.tc-button-wrapper a:hover {
    color: #fff;
    background-color: #3a95e6;
}

.tc-button-wrapper a:last-child {
    background-color: #3a95e6;
	    color: #fff;
}

.tc-button-wrapper a:last-child:hover 
{
	color:#fff;
    background-color: #000;
}

.iconhoverwrap {
    display: flex;
    column-gap: 5px;
}

.iconhover {
    position: relative;
}

.tophoverwrap {
    position: absolute;
    background-color: #fff;
    right: 0;
    top: -156px;
    width: 320px;
    padding: 15px;
    border: 1px solid #000;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    row-gap: 16px;
    z-index: 9999;
	opacity:0;
}

.th-box h4 
{
    line-height: 1.3;
    font-size: 14px;
    font-weight: 600;
	margin-bottom: 0;
}

.th-box ul 
{
    list-style-type: none;
    padding-left: 0px;
    margin-bottom: 0;
}

.th-box ul li 
{
    display: flex;
    justify-content: space-between;
}

.th-box ul li span 
{
    line-height: 1.3;
    font-size: 14px;
}

.iconhover:hover .tophoverwrap
{
	opacity:1;
}
.footer-grid {
    grid-column-gap: 165px;
    grid-row-gap: 165px;
    justify-content: space-between;
    align-items: stretch;
    display: flex;
}

.footright {
    grid-column-gap: 1.25rem;
    grid-row-gap: 1.25rem;
    flex: 1;
    grid-template-rows: auto;
    grid-template-columns: 20% 20% 20% 30%;
    grid-auto-columns: 1fr;
    justify-content: flex-end;
    align-items: stretch;
    display: grid;
}

.ft-options a {
    grid-column-gap: 7px;
    grid-row-gap: 7px;
    color: #fff;
    flex-flow: wrap;
    align-items: center;
    font-size: 14px;
    font-weight: 400;
    display: flex;
    text-decoration: none;
}

.ft-options ul {
    grid-column-gap: 5px;
    grid-row-gap: 10px;
    flex-flow: column;
    flex: 1;
    justify-content: flex-start;
    align-items: flex-start;
    display: flex;
}

.privacy-wrap ul {
    grid-column-gap: .625rem;
    grid-row-gap: .625rem;
    flex-flow: wrap;
    justify-content: flex-start;
    align-items: center;
    font-size: 14px;
    display: flex;
    padding-left: 0;
}

.subs-wrap input {
    color: #000000;
    letter-spacing: .8px;
    border-radius: 5px;
    height: 48px;
    margin-bottom: 0;
    padding: 8px 12px !important;
    line-height: 87.5%;
    border: none;
	    font-size: 14px;
}

.subs-wrap button {
    background-color: #3a95e6;
    border-radius: 5px;
    width: 54px;
    min-height: 100%;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center; 
}

.ftNewDiv {
    grid-column-gap: 1.25rem;
    grid-row-gap: 1.25rem;
    flex-flow: column;
    justify-content: flex-start;
    align-items: flex-start;
    max-width: 310px;
    display: flex;
}
.subs-wrap svg path {
    fill: #fff;
}
.ft-logo-moto span {
    color: #3a95e6;
}

.ft-logo-moto {
    grid-column-gap: 1.75rem;
    grid-row-gap: 1.75rem;
    flex-flow: column;
    display: flex;
}

.updates label {
    text-transform: capitalize;
    color: #fff;
    margin-bottom: 10px;
    font-size: .875rem;
    line-height: 1.4;
}

.updates {margin-bottom: 30px;}

.privacy-wrap ul li::marker {
    display: none;
}

.Custom-WhiteButton {
    background: #fff;
}
.subs-wrap {
    display: flex;
    gap: 10px;
}

section.video-sect {
    position: relative;
    z-index: 9999;
	margin-bottom: 80px;
}

.video-sect-wrap 
{
    margin: 0 auto;
    display: flex;
    justify-content: center;
}

.video-sect-wrap video 
{
    width: 100%;
}

section.testimonial-sect 
{
    position: relative;
    z-index: 999;
    padding: 60px 0;
    background-color: #000;
}

.testimonial-wrap 
{
    display: flex;
    column-gap: 70px;
    color: #fff;
    width: 80%;
    margin: 0 auto;
}

.testi-content h3 
{
    font-size: 41px;
}

section.testimonial-sect {
    background-color: #000;
    position: relative;
    z-index: 999;
    padding: 60px 0;
}

.testimonial-wrap {
    display: flex;
    column-gap: 70px;
    color: #fff;
    width: 80%;
    margin: 0 auto;
}

.testi-content h3 {
    font-size: 35px;
}

.testimonail-wrapper {
    display: flex;
    column-gap: 50px;
    margin-top: 30px;
    align-items: center;
}

.testimonail-wrapper .testi-author {
    position: relative;
}

.testimonail-wrapper .testi-author:before {
    content: '';
    height: 100%;
    width: 1px;
    background-color: #fff;
    position: absolute;
    left: -12%;
}

.testi-img 
{
    flex-shrink: 0;
}

.testimonail-wrapper img 
{
    height: 21px;
	width: 160px !important;
}

.user-name {
    font-weight: 600;
    line-height: 1.4;
    font-size: 20px;
}

.user-desig {
    line-height: 1.4;
    font-size: 20px;
}

.blur-bg-wrap 
{
    color: #fff;
    padding: 10px;
    position: fixed;
    border-radius: 1rem;
    display: flex;
    left: 50%;
    bottom: 40px;
    padding: 8px;	
    z-index: 99999999;
    width: fit-content;
    transform: translateX(-50%);
    transition: bottom 0.4s ease;
	backdrop-filter: blur(5px);
    /* background-color: #fff9f461; */
    background-color: #00000080;
}

.BottomFooter 
{
    padding: 10px;
    display: flex;
    align-items: center;
    column-gap: 20px;
    background: #111;
    border-radius: 10px;
}

/* .blur-bg-wrap
{
	background-color: #fff9f461;	
}
 */
 
.action-btm-fixwrap 
{
    display: flex;
    column-gap: 15px;
} 
 
.BottomFooter.show 
{
	bottom: 0;
}

section.discover-sect {
    position: relative;
    z-index: 999;
    padding: 100px 0;
    text-align: center;
}

.dis-blur-btn {
    color: #fff;
    border-radius: 1rem;
    display: flex;
    padding: 8px;
    position: relative;
    z-index: 99999999;
    width: fit-content;
    transition: bottom 0.4s ease;
    backdrop-filter: blur(5px);
    background-color: #fff9f461;
}

.dis-Bottommiddle 
{
    padding: 10px;
    display: flex;
    align-items: center;
    column-gap: 20px;
    background: #111;
    border-radius: 10px;
}

.cdiv 
{
    display: flex;
    flex-direction: column;
    align-items: center;
    row-gap: 10px;
}

.cdiv h2 
{
    width: 46%;
    margin-bottom: 64px;
    font-size: 3rem;
    font-weight: 500;
    line-height: 1.2;
color:#0f162a;	
}

.blur-bg-wrap {
  display: block;
  transition: opacity 0.3s ease;
}
.blur-bg-wrap.hidden {
  display: none;
}
.nav-bottom-link a {
    color: #fff !important;
}

.nav-bottom-link a {
    color: #fff !important;
}

.custom-btn-primary {
    background: #158b9c;
    color: #fff !important;
}

.custom-cta-buttons button {
}

button.custom-btn-large.custom-btn-primary {
    border: 1px solid #158b9c;
}

.custom-cta-buttons button {
    border: 1px solid #158b9c;
}

.tab-btn.active {
    background: #158b9c;
}

.taglabelwrap a {
    background-color: #158b9c;
    color: #fff;
}
.nav-bottom-link {
    background-color: #158b9c; 
}
 nav.custom-navbar {
    background: #0f162a;
}

.custom-btn-filled {
    background: #3a95e6; 
}

button.custom-btn-large.custom-btn-primary {
    border: 1px solid #3a95e6;
    background: #3a95e6;
    background: linear-gradient(92deg, #5c73f5, #3b95e6, #158b9c);
}

.custom-cta-buttons button {
    border: 1px solid #000000;
}

.tab-btn.active {
    background: #3a95e6; 
}

.taglabelwrap a {
    background-color: #3a95e6;
}

section.testimonial-sect {
    background: linear-gradient(92deg, #5c73f5, #3b95e6, #158b9c);
}

.Custom-WhiteButton {
    background: #fff;
}
.nav-bottom-link {
    background-color: #f2f5fa;
}
.nav-bottom-link a {
    color: #0f162a !important;
}
body:before { 
    background-color: #fafafc; 
}

.ft-options h3 {
    color: #fff;
    font-size: 20px;
}

.ft-options ul {
    padding-left: 0px;
    color: #fff;
	list-style-type:none;
}
a.footer-logo span {
    font-size: 30px;
}

.ft-logo-moto span {
    font-size: 20px;
    color: #96cdff;
}
.custom-navbar-logo a {
    text-decoration: none;
    color: #fff;
    font-size: 30px;
    display: flex;
    align-items: center;
    column-gap: 14px;
}

.custom-navbar-logo a img {
    width: 50px;
}

.footer-logo
{
    color: #fff !important;
    text-decoration: none !important;
    font-size: 30px !important;
    display: flex !important;
    align-items: center !important;
    column-gap: 14px !important;
}

.footer-logo span
{
    color: #fff !important;
}

.footer-logo img {
    width: 50px;
}

.BottomFooter img,
.dis-Bottommiddle img 
{
    width: 30px;
}

.gif-zag-wrap
{
	height:600px;
}

.gif-zag {
  position: relative;
  width:600px;
  height: auto;
}

.gif-zag img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  animation: fadeSwap 2s infinite;
}

.gif-zag img:nth-child(1) {
  animation-delay: 0s;
}

.gif-zag img:nth-child(2) {
  animation-delay: 1s;
}

@keyframes fadeSwap {
  0% { opacity: 0; }
  10% { opacity: 1; }
  40% { opacity: 1; }
  50% { opacity: 0; }
  100% { opacity: 0; }
}

.contact-wrap ul li a
{
    display: flex;
    flex-direction: column;
    align-items: baseline;	
}

.mb25
{
	margin-bottom: 25px;	
}

section.about-sect 
{
	z-index: 9999;
    position: relative;
    padding: 100px 0;
}

.about-wrap {
    text-align: center;
}

.about-wrap h1 
{
    font-size: 52px;
    margin-bottom: 25px;
    font-weight: 500;
    line-height: 1.2;
    color: #0f162a;
}

.about-wrap p 
{
    max-width: 650px;
    margin: 15px auto;
    margin-bottom: 32px;
    line-height: 1.4;
    font-size: 20px;
}

.highlight 
{
	font-size: 32px !important;
	font-weight: 500 !important;
	color: #0f162a !important;
	margin-bottom: 0 !important;
}
.ourstory-sect 
{
	z-index: 9999;
    position: relative;	
	color: #000;
	padding: 40px 0;
}

.ourstory-sect .container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
}

.ourstory-sect .story-content {
  flex: 1;
}

.ourstory-sect h2 {
    font-size: 52px;
    margin-bottom: 25px;
    font-weight: 500;
    line-height: 1.2;
    color: #0f162a;
}

.ourstory-sect .section {
  margin-bottom: 40px;
}

.ourstory-sect .section h3 {
    display: inline-block;
    border: 1px solid #000;
    border-radius: 30px;
    padding: 8px 20px 8px 35px;
    font-size: 18px;
    position: relative;
    margin-bottom: 15px;
    font-weight: 400;
}

.ourstory-sect .section h3::before {
    content: "";
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    background: #3a95e6;
    border-radius: 50%;
}

.ourstory-sect .section p {
    margin: 15px auto;
    margin-bottom: 32px;
    line-height: 1.3;
    font-size: 17px;
}

.ourstory-sect .divider {
  height: 1px;
  background: #000;
  margin: 20px 0;
}

.ourstory-sect .story-image {
  flex: 0.9;
  text-align: center;
}

.ourstory-sect .story-image img {
  width: 100%;
  max-width: 400px;
  border-radius: 10px;
}

.ourstory-sect .story-image p {
    margin-top: 10px;
    font-size: 18px;
    font-weight: 500;
    color: #0f162a !important;
}

@media (max-width: 900px) {
  .ourstory-sect .container {
    flex-direction: column;
    align-items: center;
  }

  .ourstory-sect .story-content {
    text-align: left;
  }

  .ourstory-sect .story-image img {
    max-width: 100%;
  }
}


.section-item.team
{
	z-index: 9999;
    position: relative;		
}

.team h2 {
    font-size: 52px;
    margin-bottom: 25px;
    font-weight: 500;
    line-height: 1.2;
    color: #0f162a;
}

.teamGrid.tgfour {
    display: flex;
    gap: 72px;
    margin-bottom: 72px;
    justify-content: space-between;
}

.advs-box {
    overflow: hidden;
}

.teamGrid .img-box img {
    width: 240px;
    margin: 0 auto;
}

.img-box img {
    transition: all .3s, margin-top 1ms, width 1ms, max-width 1ms, margin-left 1ms !important;
    outline: 1px solid transparent;
    animation: all .3s !important;
    position: relative;
}

section.contact-sect {
    position: relative;
    z-index: 9999;
}

.content h3 {
    font-size: 28px;
    line-height: 5px;
    margin-bottom: 20px;
    margin-top: 40px;
    font-weight: 400;
}

.content-box h4 {
    font-size: 18px;
    font-weight: 300;
    color: #3a95e6;
}

.social-group img {
    width: 30px;
}

a.img-box {
    border-radius: 6px !important;
    overflow: hidden;
    transition: all .5s;
    width: 100%;
    height: 100%;
    display: block;
}

a.img-box:hover img {
    animation: scale-up .5s;
    transform: scale(1.2) !important;
    opacity: 1;
}


.contact-grid {
    display: flex;
    /* align-items: center; */
    padding: 60px 20px;
    justify-content: space-between;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-form {
  width: 100%;
  max-width: 420px;
  text-align: left;
  font-family: Arial, sans-serif;
}

.form-subtitle {
    font-size: 16px;
    color: #333;
    margin-bottom: 10px;
    text-align: center;
}

.form-title {
    text-align: center;   
    color: #0f162a;
	    font-size: 36px;
    font-weight: 500;
    line-height: 1.3;
    margin-bottom: 10px;
}

.contact-form label {
    display: block;
    font-size: 16px;
    margin: 15px 0 5px;
    font-weight: 500;
}

.contact-form input[type="email"],
.contact-form input[type="url"] {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #ccc;
  outline: none;
  font-size: 14px;
}

.contact-form input[type="email"]:focus,
.contact-form input[type="url"]:focus {
  border-color: #000;
}

.radio-group {
  margin-top: 10px;
}

.radio-group label {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 10px 0;
  font-size: 14px;
}

.radio-group input {
  accent-color: black;
}

.submit-btn {
    width: 100%;
    font-size: 16px;
    text-decoration: none;
    line-height: 1.2;
    background: #3a95e6;
    padding: 12px 20px;
    border: 1px solid #3a95e6;
    border-radius: 5px;
    font-weight: 400;
    color: #fff;
    margin-top: 30px;
}

.submit-btn:hover {
  background: #333;
}

.contact-info {
    flex: 1;
    font-size: 14px;
    color: #333;
}

.contact-info .section {
    margin-bottom: 30px;
}

.contact-info h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.contact-info p {
    margin-bottom: 15px;
    color: #555;
}

.contact-info a {
    display: block;
    color: #111;
    font-weight: 500;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 15px;
}

.contact-info a i {
    font-size: 18px;
    margin-right: 7px;
}

.contact-info a span {
    font-size: 22px;
}

.contact-form input {
    padding: 12px 14px;
    border: 1px solid #ccc;
    width: 100%;
    border-radius: 5px;
}

.radio-group input 
 {
    width: 20px;
    height: 20px;
}

label.option-label {
    font-size: 20px;
    font-weight: 500;
}

.form-cover {
    display: flex;
    flex-direction: column;
    row-gap: 15px;
    margin-bottom: 25px;
}

section.tcpc-sect {
    position: relative;
    z-index: 9;
    padding: 100px 0;
}

.common-title-wrap h2 {
    text-align: left;
    margin-bottom: 5px;
}

.common-title-wrap {
    margin-bottom: 20px;
}

.tcpc-sect b {
    color: #0f162a;
}

.tcpc-sect a
{
	text-decoration:none;
}

.tcpc-sect ul {
    list-style-type: none;
    padding-left: 0;
    margin-top: 50px;
    display: flex;
    flex-direction: column;
    row-gap: 20px;
}

.tcpc-sect ul h4 {
    font-size: 19px;
    font-weight: 700;
    margin-bottom: 12px;
}

.tcpc-sect ul h6 {
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 12px;
}
.QRCode {
    display: flex;
    align-items: center;
    gap: 15px;
}

.QRCode img {
    width: 90px;
    height: 90px;
}

.QRCode a {
    font-size: 16px;
}
form.contact-form:after {
    width: 1px;
    height: 100%;
    background: #d5d5d5;
    content: "";
    display: block;
    position: absolute;
    right: -160px;
    top: 0;
}

form.contact-form {
    position: relative;
}
h2.form-title.PtcHeading {
    text-align: left;
    margin-top: 15px;
    font-size: 20px;
    margin-bottom: 35px;
}

.tcpc-sect .common-title-wrap h2 {
    margin-bottom: 15px;
}

 
p.MsoNormal i {
    font-style: normal;
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #000;
    
}
    
     
h2.form-title.PtcHeading {
    text-align: left;
    margin-top: 15px;
    font-size: 20px;
    margin-bottom: 35px;
}

.tcpc-sect .common-title-wrap
    h2 {
    margin-bottom: 15px;
}

 
 

.tcpc-sect .common-title-wrap
    h2 {
    margin-bottom: 15px;
}

 


p.MsoNormal b {
    
    text-align: left;
    margin-top: 15px;
    font-size: 20px;
    margin-bottom: 35px;
}

.tcpc-sect .common-title-wrap
    h2 {
    margin-bottom: 15px;
}

.PCTermsContent h4 {
    font-size: 19px;
    font-weight: 600;
    margin-bottom: 12px;
 
}

p.MsoNormal u {
    text-decoration: none;
    color: #000;
    font-weight: 500;
    margin-top: 35px;
    display: block;
    border-bottom: 1px solid #a1a1a1;
    width: fit-content;
    padding-bottom: 4px;
}
span.circleBlack {
    color: #000;
    display: inline-flex;
    text-indent: -15px;
    margin-left: -5px;
}
 .ContentCover {
    margin-left: 20px;
}
.videoIcon svg {
    width: 40px;
    height: 35px;
}

.form-group svg {
    width: 37px;
    height: 37px;
}

.form-cover.rightCont {
    margin-top: 50px;
    gap: 50px;
    margin-bottom: 50px;
}

.QRCode a svg {
    width: 35px;
    height: 35px;
}

.QRCode a svg path {
    fill: #3a95e6;
}

.form-group svg path {
    fill: #3a95e6;
}












@media only screen and (min-width: 1200px) and (max-width: 1299px) 
{
	body.inner-pages .container 
	{
		width: 1120px;
	}
}

@media only screen and (min-width: 1300px) and (max-width: 1399px) 
{
	body.inner-pages .container 
	{
		width: 1206px;
	}
}

@media only screen and (min-width: 1400px) and (max-width: 1499px) 
{
	body.inner-pages .container 
	{
		width: 1280px;
	}
}






