@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Carter+One&display=swap');

/*CSS Variables*/

:root {
	--blueLight: #d8ecf6;
	--blueDark: #005db4;
	--yellow: #fadc3c;
	--gray: #6b7179;
	--white: #ffffff;
	--black: #0b2240;
	--neutral-dark-blue: #26354e;
	--primaryFont: 'Carter One', cursive;
	--secondaryFont: 'Montserrat', sans-serif;
}


/*CSS Variables*/

body {
	background-color: #fff;
	font-size: 15px;
	font-family: 'Montserrat', sans-serif;
	color: #26354e;
	font-weight: normal;
}

body::-webkit-scrollbar {
	width: 7px;
	height: 5px;
}

body::-webkit-scrollbar-track {
	background: #f3f1ec;
}

body::-webkit-scrollbar-thumb {
	background: #26354e;
	border-radius: 10px;
}

body.noScroll {
	overflow: hidden;
}

* {
	scrollbar-width: thin;
}

::selection {
	background: #666;
	color: #fff;
}

body:not(.page-id-3448) main { 
    overflow-x: hidden;
}

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

a {
	text-decoration: none;
	transition: all 0.5s;
}

a:hover {
	transition: all 0.5s;
	text-decoration: none;
}

p {
	line-height: 28px;
}

@media (max-width: 991px) {
	p {
		line-height: 26px;
	}
}

img {
	max-width: 100%;
}

.defaultPadding {
	padding: 70px 0;
}

.center {
	margin: auto;
	display: table;
	width: auto;
}

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

.largePadding {
	padding: 100px 0;
}

@media (max-width: 1199px) {
	.largePadding {
		padding: 70px 0;
	}
}

@media (max-width: 575px) {
	.largePadding {
		padding: 40px 0;
	}
}

@media (max-width: 767px) {
	.headImg {
		width: 75px;
	}
}

.heading {
	font-size: 55px;
	text-transform: uppercase;
	font-weight: bold;
}

.heading.underline {
	display: flex;
	flex-direction: column;
	align-items: center;
}

.heading.underline::after {
	content: "";
	background: #26354e;
	height: 1px;
	width: 100px;
	margin-top: 15px;
}

@media (max-width: 1399px) {
	.heading {
		font-size: calc(36px + 1vw);
	}
}

@media (max-width: 767px) {
	.heading {
		font-size: calc(30px + 1vw);
	}
}

.italic {
	font-size: 18px;
	font-weight: 500;
	font-style: italic;
}

.preloader {
	position: fixed;
	background: #fff;
	z-index: 99999;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

.preloader .loader {
	display: inline-block;
	width: 60px;
	height: 60px;
	border: 3px solid #eee;
	border-radius: 50%;
	border-top-color: #26354e;
	animation: spin 1s ease-in-out infinite;
}

.mainBtn {
	background: var(--yellow);
	color: var(--black);
	font-size: 16px;
	padding: 13px 70px;
	text-transform: uppercase;
	font-weight: 600;
	white-space: nowrap;
	border-radius: 25px;
	transition: all .3s ease;
	border: 0;
}

.mainBtn:hover {
	background: var(--blueDark);
	color: #fff;
}

.mainBtn.outline {
	background: transparent;
	border: solid 1px #fff;
}

.mainBtn.outline:hover {
	border-color: #ed7d31;
	color: #ed7d31;
}

@media (max-width: 767px) {
	.mainBtn {
		font-size: 14px;
		padding: 11px 25px;
	}
}

header {
	padding: 0px 0 0;
	background: #005db4;
}

header.fixed-top {
	position: fixed;
	top: 0;
	right: 0;
	left: 0;
	z-index: 1030;
	transition: all 05s;
}

header.fixed-top .logoWrap {
	transform: scale(0.6);
	transition: all 0.5s;
	top: -35px;
}

header .container {
	position: relative;
}

.logoWrap {
	position: absolute;
	top: 20px;
	left: 0;
}

.cta-div {
    background: transparent;
	position: absolute;
	right: 0;
	z-index: 1;
}

.cta-div a {
	color: #0a2240;
	padding: 18px 40px;
	font-weight: 500;
	display: inline-block;
	font-size: 18px;
	transition: all 0.5s;
	border-right: 0px solid #005DB4;
}

.cta-div a:hover span.text {
	color: #fadc3c;
	border-bottom: 0px solid #fadc3c;
	transition: all 0.5s;
}

.cta-div a span.text {
	border-bottom: 0px solid #0a2240;
	transition: all 0.5s;
	vertical-align: middle;
}

.cta-div a span {
	margin-right: 15px;
	display: inline-block;
	vertical-align: middle;
}

.cta-div a:last-child {
	padding: 8px 20px;
}

.floatingBtn {
	width: 70px;
	height: 70px;
	position: fixed;
	right: 50px;
	transform: translateY(-50%);
	top: 50%;
	background: var(--blueLight);
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	border: 1px solid var(--white);
	z-index: 10;
}

.floatingBtn:hover {
	background: var(--blueDark);
}

.backTotop {
	width: 70px;
	height: 70px;
	position: fixed;
	right: 30px;
	bottom: 120px;
	background: var(--blueLight);
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	border: 1px solid var(--white);
	opacity: 0;
	z-index: 10;
}

.backTotop:hover {
	background: var(--blueDark);
}

.backTotop.active {
	opacity: 1;
}

.bannerBlock {
	background: var(--blueLight);
	padding-bottom: 100px;
}

.bannerSlider .item {
	display: flex;
	justify-content: right;
	align-items: center;
	flex-direction: row-reverse;
}

.bannerImage {
	float: right;
	height: 100%;
	width: 50%;
}

.bannerContent {
	max-width: 600px;
	width: 100%;
	padding-top: 180px;
	padding-left: 50px;
}

.bannerContent h1 {
	font-size: 52px;
	color: var(--blueDark);
	font-family: var(--primaryFont);
}

.bannerContent .cta-div {
	position: inherit;
	background: transparent;
	margin-top: 50px;
}

.bannerContent .cta-div a {
	border: 0;
	padding: 0 50px 0 0;
	font-weight: 500;
}

.foldTwo {
	padding: 70px 0 100px;
	display: inline-block;
	width: 100%;
}

.threeBlocks {
	display: flex !important;
}

.foldTwo h2 {
	color: var(--black);
	text-align: center;
	font-size: 40px;
	font-weight: 400;
	margin-bottom: 120px;
}

.foldTwo .circleBlock {
	border-radius: 50%;
	padding: 85px 45px 45px 45px;
	text-align: center;
	position: relative;
}

.foldTwo .owl-item:nth-child(1) .circleBlock,
.foldTwo .item:nth-child(1) .circleBlock {
	background: var(--blueDark);
	width: 330px;
	height: 330px;
}

.foldTwo .owl-item:nth-child(1) .circleBlock h3,
.foldTwo .item:nth-child(1) .circleBlock h3 {
	color: var(--white);
	font-size: 30px;
	margin-bottom: 40px;
	font-weight: 400;
}

.foldTwo .owl-item:nth-child(1) .circleBlock a,
.foldTwo .item:nth-child(1) .circleBlock a {
	color: var(--white);
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 3px;
}

.foldTwo .owl-item:nth-child(1) .circleBlock a:hover,
.foldTwo .item:nth-child(1) .circleBlock a:hover {
	color: var(--yellow);
	letter-spacing: 2px;
}

.foldTwo .owl-item:nth-child(1) .circleBlock .icon,
.foldTwo .item:nth-child(1) .circleBlock .icon {
	background: var(--blueDark);
	width: 90px;
	height: 90px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	position: absolute;
	right: -67px;
	top: 0;
}

.foldTwo .owl-item:nth-child(1) .circleBlock .icon img,
.foldTwo .item:nth-child(1) .circleBlock .icon img {
	width: auto;
	margin: auto;
}

.foldTwo .owl-item:nth-child(2) .circleBlock,
.foldTwo .item:nth-child(2) .circleBlock {
	background: var(--yellow);
	display: table;
	margin: auto;
	width: 330px;
	height: 330px;
}

.foldTwo .owl-item:nth-child(2) .circleBlock::before,
.foldTwo .item:nth-child(2) .circleBlock::before {
	width: 23px;
	height: 23px;
	content: "";
	left: 0;
	bottom: 0;
	background: var(--yellow);
	position: absolute;
	border-radius: 50%;
}

.foldTwo .owl-item:nth-child(2) .circleBlock h3,
.foldTwo .item:nth-child(2) .circleBlock h3 {
	color: var(--black);
	font-size: 30px;
	margin-bottom: 40px;
	font-weight: 400;
}

.foldTwo .owl-item:nth-child(2) .circleBlock .icon,
.foldTwo .item:nth-child(2) .circleBlock .icon {
	background: var(--yellow);
	width: 90px;
	height: 90px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	position: absolute;
	right: 0px;
	top: -70px;
}

.foldTwo .owl-item:nth-child(2) .circleBlock .icon img,
.foldTwo .item:nth-child(2) .circleBlock .icon img {
	width: auto;
	margin: auto;
}

.foldTwo .owl-item:nth-child(2) .circleBlock a,
.foldTwo .item:nth-child(2) .circleBlock a {
	color: var(--black);
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 3px;
}

.foldTwo .owl-item:nth-child(2) .circleBlock a:hover,
.foldTwo .item:nth-child(2) .circleBlock a:hover {
	color: var(--blueDark);
	letter-spacing: 2px;
}

.foldTwo .owl-item:nth-child(3) .circleBlock,
.foldTwo .item:nth-child(3) .circleBlock {
	background: var(--blueLight);
	width: 330px;
	height: 330px;
	float: right;
}

.foldTwo .owl-item:nth-child(3) .circleBlock::before,
.foldTwo .item:nth-child(3) .circleBlock::before {
	width: 23px;
	height: 23px;
	content: "";
	position: absolute;
	right: 0;
	top: 0;
	background: var(--blueLight);
	border-radius: 50%;
}

.foldTwo .owl-item:nth-child(3) .circleBlock h3,
.foldTwo .item:nth-child(3) .circleBlock h3 {
	color: var(--black);
	font-size: 30px;
	margin-bottom: 40px;
	font-weight: 400;
}

.foldTwo .owl-item:nth-child(3) .circleBlock .icon,
.foldTwo .item:nth-child(3) .circleBlock .icon {
	background: var(--blueLight);
	width: 90px;
	height: 90px;
	border-radius: 50%;
	display: flex;
	align-items: baseline;
	position: absolute;
	left: -70px;
	bottom: 0;
}

.foldTwo .owl-item:nth-child(3) .circleBlock .icon img,
.foldTwo .item:nth-child(3) .circleBlock .icon img {
	width: auto;
	margin: auto;
}

.foldTwo .owl-item:nth-child(3) .circleBlock a,
.foldTwo .item:nth-child(3) .circleBlock a {
	color: var(--black);
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 3px;
}

.foldTwo .owl-item:nth-child(3) .circleBlock a:hover,
.foldTwo .item:nth-child(3) .circleBlock a:hover {
	color: var(--blueDark);
	letter-spacing: 2px;
}

.foldThree {
	padding: 70px 0 130px;
}

.foldThree h2::before {
	content: "";
	position: absolute;
	top: -60%;
	left: -10%;
	background: url(../images/logo-quotes.png) no-repeat;
	width: 165px;
	height: 219px;
	z-index: -1;
}

.foldThree h2 {
	text-align: center;
	font-size: 70px;
	color: var(--blueDark);
	font-family: var(--primaryFont);
	position: relative;
	margin: 0 auto 70px auto;
	display: table;
	z-index: 2;
	line-height: 45px;
}

.foldThree h2 span {
	text-align: center;
	font-style: italic;
	font-size: 22px;
	color: var(--black);
	font-family: var(--secondaryFont);
}

.accordion-button {
	font-size: 33px;
	font-family: var(--secondaryFont);
	font-weight: 600;
	padding: 25px 0;
	box-shadow: 0;
	border-bottom: 2px solid #d8ecf6;
}

.accordion-body {
	padding: 0px 0;
}

.accordion-body .icon {
	margin-bottom: 25px;
	margin-top: 25px;
}

.accordion-body p {
	font-size: 18px;
	font-weight: 500;
	margin-bottom: 30px;
}

.accordion-body h4 {
	font-weight: 700;
	margin-bottom: 20px;
}

.accordion-button:not(.collapsed) {
	color: #005db4;
	background-color: transparent;
	box-shadow: none;
	border-bottom: 0px solid #d8ecf6;
}

.accordion-button:focus {
	box-shadow: none;
	border-color: #d8ecf6;
}

.accordion-item {
	border: 0px solid #d8ecf6;
}

.accordion-button::after {
	width: 2.25rem;
	height: 2.25rem;
	background-size: 2.25rem;
	background: url(../images/arrow.svg) no-repeat;
}

.foldFour {
	background: var(--blueLight);
	padding: 70px 0;
}

.foldFour h2::before {
	content: "";
	position: absolute;
	top: -115px;
	right: -30px;
	background: url(../images/dots.png) no-repeat;
	width: 210px;
	height: 182px;
	z-index: -1;
}

.foldFour h2 {
	text-align: center;
	font-size: 70px;
	color: var(--blueDark);
	font-family: var(--primaryFont);
	position: relative;
	margin: 0 auto 70px auto;
	display: table;
	z-index: 2;
	line-height: 45px;
}

.tabHead {
	margin-top: 40px;
	column-count: 2;
}

.tabHead a {
	display: inline-block;
	margin-bottom: 50px;
}

.tabHead .icon {
	width: 200px;
	height: 200px;
	text-align: center;
	background: var(--gray);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
}

.tabHead a.active .icon {
	background: var(--blueDark);
}

.tabHead a:hover .icon {
	background: var(--blueDark);
}

.tabHead a:hover h4 {
	color: var(--blueDark);
}

.tabHead a.active h4 {
	color: var(--blueDark);
}

.tabHead h4 {
	font-size: 34px;
	color: var(--gray);
	font-family: var(--primaryFont);
	margin-top: 20px;
	text-align: center;
}

.tabContent {
	display: flex;
	align-items: center;
}

.tabContent p {
	font-size: 24px;
	font-weight: 400;
	line-height: 32px;
}

.tabContent .tabItem:not(:first-child) {
	display: none;
}

.foldFive {
	padding: 70px 0;
}

.foldFive h2 {
	text-align: center;
	font-size: 70px;
	color: var(--blueDark);
	font-family: var(--primaryFont);
	position: relative;
	margin: 0 auto 70px auto;
	display: table;
	z-index: 2;
	line-height: 55px;
}

.foldFive h2 span {
	text-align: center;
	font-style: italic;
	font-size: 22px;
	color: var(--black);
	font-family: var(--secondaryFont);
}

.foldFive .aboutContent {
	padding: 100px
}

.foldFive .aboutContent h4 {
	font-size: 30px;
	line-height: 42px;
	color: var(--black);
	font-weight: 400;
}

.foldFive .aboutImage {
	width: 100%;
}

.foldFive .testiMonial {
	padding: 70px 150px;
}

.foldFive .testiMonial h5 {
	text-transform: uppercase;
	font-size: 22px;
	letter-spacing: 2px;
	padding: 50px 0;
	position: relative;
	display: inline-block;
}

.foldFive .testiMonial h5::before {
	content: "";
	width: 80px;
	height: 80px;
	background-color: var(--yellow);
	position: absolute;
	transform: translate(-50%, -50%);
	left: 50%;
	top: 50%;
	border-radius: 50%;
	z-index: -1;
}

.foldFive .testBlocks .item {
	padding-bottom: 50px;
}

.foldFive .testiMonial p {
	font-size: 20px;
	font-weight: 500;
	line-height: 28px;
}

.foldFive .testiMonial .authorName {
	font-size: 36px;
	position: relative;
}

.foldFive .testiMonial .authorName::before {
	content: "";
	width: 100px;
	height: 1px;
	background-color: var(--black);
	position: absolute;
	left: 0%;
	bottom: -50%;
	z-index: -1;
}

.foldFive .logoSec {
	background: var(--yellow);
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
}

.foldFive .logo-list {
	display: inline-block;
}

.foldFive .partnerLogo {
	display: block;
	padding: 5px;
}	

.foldSix {
	padding: 0px 0 70px;
}

.foldSix h2 {
	text-align: left;
	font-size: 70px;
	color: var(--blueDark);
	font-family: var(--primaryFont);
	position: relative;
	margin: 0 auto 70px auto;
	display: table;
	z-index: 2;
	line-height: 55px;
}

.foldSix h2 span {
	text-align: center;
	font-style: italic;
	font-size: 22px;
	color: var(--black);
	font-family: var(--secondaryFont);
}

.foldSix h2::before {
	content: "";
	position: absolute;
	bottom: -30px;
	right: -30px;
	background: url(../images/dots.png) no-repeat;
	width: 210px;
	height: 182px;
	z-index: -1;
}

.foldSix input {
	width: 100%;
	border: 1px solid rgb(223, 223, 223);
	border-radius: 25px;
	padding: 15px 25px;
	margin-bottom: 15px;
}

.foldSix input:focus-visible,
.foldSix textarea:focus-visible {
	background-color: var(--blueLight);
	outline: 0;
}

.foldSix textarea {
	height: 89%;
	width: 100%;
	border: 1px solid rgb(223, 223, 223);
	border-radius: 25px;
	padding: 25px 35px;
	margin-bottom: 15px;
}

.foldSeven {
	padding: 0px 0 70px;
}

.foldSeven h2 {
	text-align: center;
	font-size: 70px;
	color: var(--blueDark);
	font-family: var(--primaryFont);
	position: relative;
	margin: 0 auto 50px auto;
	display: table;
	z-index: 2;
	line-height: 55px;
}

.foldSeven h2 span {
	text-align: left;
	font-style: italic;
	font-size: 22px;
	color: var(--black);
	font-family: var(--secondaryFont);
	display: block;
	padding-left: 10px;
}

.foldSeven h2::before {
	content: "";
	position: absolute;
	bottom: -30px;
	left: -120px;
	background: url(../images/logo-quotes.png) no-repeat;
	width: 210px;
	height: 222px;
	transform: scale(0.8) rotate(180deg);
	z-index: -1;
}

.foldSeven .awardList {
	display: flex;
	justify-content: center;
}

footer {
	background: url(../../assets/images/footer-pattern.jpg) no-repeat center top;
	background-size: cover;
	padding: 160px 0 35px;
	font-size: 14px;
	font-weight: 300;
}

footer .footer-sm-title {
	font-size: 16px;
	text-transform: uppercase;
	font-weight: 400;
	margin-bottom: 5px;
	color: #f3dc50;
	letter-spacing: 2px;
	display: inline-block;
}

footer .block1 {
	margin-bottom: 20px;
}

footer .block1 .phone-num {
	font-size: 30px;
	font-weight: 400;
}

footer .block1 h3 {
	font-size: 20px;
	color: #fff;
	font-weight: 400;
	margin: 0;
	text-transform: uppercase;
}

footer .footerLinks li a {
	text-transform: uppercase;
	display: inline-flex;
	align-items: center;
	font-weight: 400;
	margin-bottom: 15px;
	color: #fff;
}

footer .footerLinks li a:hover {
	color: #f3dc50;
}

footer strong {
	font-weight: bold;
	font-size: 16px;
}

footer hr {
	margin: 60px 0 23px;
}

footer .copyright {
	font-size: 15px;
}

.globalReachWarp{
	padding: 70px 0 0;
}

.globalReachWarp h2 {
    text-align: center;
    font-size: 70px;
    color: var(--blueDark);
    font-family: var(--primaryFont);
    position: relative;
    margin: 0 auto 40px auto;
    display: table;
    z-index: 2;
    line-height: 55px;
}

.globalReachWarp h2:before{
	content: "";
	position: absolute;
	left: -30px;
	top: -15px;
	width: 70px;
	height: 70px;
	background: var(--yellow);
	border-radius: 50%;
	z-index: -1;
}

.globalReachWarp p {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 30px;
	text-align: center;
}

.globalMapOutter{
	overflow: scroll;
}

.globalMapOutter::-webkit-scrollbar {
	display: none;
}

.globalMap{
	background: url(../images/map.webp) no-repeat;
	background-size: contain;
	width: 1296px;
	height: 768px;
	margin-top: 50px;
	position: relative;
}

.mapLegends{ margin: 0; padding: 0;}
.mapLegends ul{
	display: flex;
	justify-content: center;
}

.mapLegends ul li{
	font-size: 16px;
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: 2px;
	padding: 0 15px;
	position: relative;
	margin: 0 25px;
}

.mapLegends ul li:first-child::before{
	content: "";
	position: absolute;
	left: -10px;
	top: 5px;
	width: 15px;
	height: 15px;
	background: var(--blueDark);
	border-radius: 50%;
}

.mapLegends ul li:last-child::before{
	content: "";
	position: absolute;
	left: -10px;
	top: 5px;
	width: 15px;
	height: 15px;
	background: var(--black);
	border-radius: 50%;
}


.office{
	background: var(--blueDark);
}

.campaign{
	background: var(--black);
}

.globalMap a span{ 
	display: none; 
	background: var(--white);
	box-shadow: 0 5px 5px rgb(0 0 0 / 12%);
    position: absolute;
    top: -50px;
    padding: 8px 25px;
    transform: translate(-50%);
    left: 50%;
	font-size: 14px;
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: 1px;
	color: var(--black);
}

.globalMap a span::before{
	content: "";
	position: absolute;
	transform: translate(-50%);
    left: 50%;
	bottom: -8px;
	width: 0;
	height: 0;
	border-width: 10px 10px 0 10px;
	border-color: #FFFFFF transparent transparent transparent;
	border-style: solid;
}

.globalMap a:hover span{ 
	display: block;
}

.globalMap a:hover{
	z-index: 10;
}


.globalMap a:hover::before{
	position: absolute;
	width: 18px;
	height: 18px;
	border-radius: 50%;
	content: "";
	transform: translate(-50%, -50%);
	left: 50%;
	top: 50%;
	background:var(--yellow);
	animation: blink 1s linear infinite;
}

@keyframes blink{
	0%{opacity: 0;}
	50%{opacity: .5;}
	100%{opacity: 1;}
	}

  .pos{
	position: absolute;
	width: 10px;
	height: 10px;
	border-radius: 50%;
	z-index: 1;
	transition: 10s all;
  	transform: scale(0);
}

.ani_mation.highlight--2 .pos{
	transform: scale(1);
	transition: 2s all;
}

.pos1 {
    left: 251px;
    top: 374px;
}
.pos2{
	left: 286px;
    top: 410px;
}
.pos3{
	left: 605px;
    top: 276px;
}
.pos4{
	left: 680px;
    top: 256px;
}
.pos5{
	left: 1062px;
    top: 439px
}

.pos6{
	left: 233px;
	top: 250px;
}

.pos7{
	left: 242px;
	top: 315px;
}

.pos8{
	left: 235px;
	top: 404px;
}

.pos9{
	left: 294px;
	top: 453px;
}

.pos10{
	left: 406px;
	top: 529px;
}

.pos11{
	left: 377px;
	top: 624px;
}

.pos12{
	left: 686px;
	top: 609px;
}

.pos13 {
		left: 1219px;
		top: 692px;
}

  .pos14{
	left: 1061px;
    top: 596px;
  }

  .pos15 {
    left: 1029px;
    top: 488px;
}

.pos16 {
    left: 990px;
    top: 480px;
}

.pos17 {
    left: 974px;
    top: 462px;
}

.pos18 {
    left: 1004px;
    top: 444px;
}

.pos19 {
    left: 978px;
    top: 428px;
}

.pos20 {
    left: 1020px;
    top: 399px;
}

.pos21 {
    left: 1048px;
    top: 389px;
}
.pos22 {
    left: 1097px;
    top: 336px;
}
.pos23 {
    left: 1062px;
    top: 336px;
}
.pos24 {
    left: 889px;
    top: 409px;
}
.pos25 {
    left: 812px;
    top: 416px;
}
.pos26 {
    left: 799px;
    top: 398px;
}
.pos27 {
    left: 791px;
    top: 387px;
}
.pos28 {
    left: 756px;
    top: 406px;
}
.pos29 {
    left: 736px;
    top: 372px;
}
.pos30 {
    left: 726px;
    top: 364px;
}

.pos31 {
    left: 705px;
    top: 389px;
}
.pos32 {
    left: 651px;
    top: 326px;
}
.pos33 {
    left: 652px;
    top: 300px;
}
.pos34 {
    left: 632px;
    top: 303px;
}
.pos35 {
    left: 610px;
    top: 312px;
}
.pos36 {
    left: 624px;
    top: 289px;
}
.pos37 {
    left: 615px;
    top: 283px;
}
.pos38 {
    left: 595px;
    top: 281px;
}
.pos39 {
    left: 576px;
    top: 272px;
}
.pos40 {
    left: 544px;
    top: 207px;
}

.pos41 {
    left: 659px;
    top: 198px;
}

.pos42 {
    left: 684px;
    top: 210px;
}

.pos43 {
    left: 630px;
    top: 220px;
}

.pos44 {
    left: 631px;
    top: 256px;
}

.pos45 {
    left: 619px;
    top: 272px;
}

.pos46 {
    left: 636px;
    top: 281px;
}


.scrollIcon{ display: none;}

  .swiper-wrapper.marquee-swiper {
	transition-timing-function: linear;
	align-items: center;
  }
  
  .swiper-slide.marquee-swiper {
	width: 12rem;
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 0 25px;
	box-sizing: border-box;
  }

@media (max-width: 1024px) {
	.container,
	.container-lg,
	.container-md,
	.container-sm {
		max-width: 95%;
	}

	.tabHead {
		margin-top: 40px;
		column-count: inherit;
		text-align: center;
		margin-bottom: 30px;
	}

	.tabHead a{
		margin: 0 5px;
		vertical-align: top;
	}

	.tabHead h4 {
		font-size: 24px;
	}

	.foldTwo .owl-item:nth-child(1) .circleBlock,
	.foldTwo .item:nth-child(1) .circleBlock {
		width: 270px;
		height: 270px;
		margin: auto;
	}

	.foldTwo .owl-item .circleBlock h3,
	.foldTwo .item .circleBlock h3{
		font-size: 24px !important
	}


	.foldTwo .owl-item:nth-child(2) .circleBlock::before,
	.foldTwo .item:nth-child(2) .circleBlock::before {
		display: none;
	}
	.foldTwo .owl-item:nth-child(2) .circleBlock .icon,
	.foldTwo .item:nth-child(2) .circleBlock .icon {
		right: -67px;
		top: 0;
	}

	.foldTwo .owl-item:nth-child(3) .circleBlock .icon,
	.foldTwo .item:nth-child(3) .circleBlock .icon {
		right: -67px;
		top: 0;
		left: auto;
	}
	.foldTwo .owl-item:nth-child(3) .circleBlock::before,
	.foldTwo .item:nth-child(3) .circleBlock::before {
		display: none;
	}

	.foldTwo .owl-item:nth-child(1) .circleBlock a, .foldTwo .item:nth-child(1) .circleBlock a{
		font-size: 12px;
	}
	header.fixed-top .logoWrap {
		transform: scale(1);
		transition: all 0.5s;
		top: 20px;
	}
	header .cta-div {
		display: none;
	}
	header .cta-div a {
		padding: 18px 80px 18px 0;
	}
	header .cta-div a span.text {
		display: none;
	}
	.bannerContent .cta-div a {
		padding: 0;
	}
	header {
		padding: 0px 0 0;
		background: #005db4;
		height: 81px;
		position: fixed;
		width: 100%;
		z-index: 10;
	}
	.bannerContent h1 {
		font-size: 50px;
	}
	.bannerContent {
		max-width: 500px;
		width: 100%;
		padding-top: 250px;

	}
	.scrollIcon {
		position: relative;
		bottom: 200px;
		display: block;
		margin: auto;
		display: table;
	}

}

@media (max-width: 950px) {
	
	.bannerBlock {
		padding-bottom: 0px;
		margin-top: 0px;
		padding-top: 120px;
	}
	.bannerSlider .item {
		display: block;
	}
	.bannerImage {
		width: 100%;
		margin-top: 0px;
	}
	.bannerContent {
		text-align: center;
		padding: 0 0px;
		display: inline-block;
		margin-top: 70px;
		max-width: 100%;
	}
	.bannerContent .cta-div {
		background: #9dd4f0;
		padding: 20px 0;
	}
	.bannerContent h4 br {
		display: none;
	}
	.cta-div a:last-child {
		display: none;
	}
	header .cta-div {
		display: block;
		background: transparent !important;
	}
	.bannerContent h1 {
		font-size: 36px;
	}
	.logoWrap {
		position: absolute;
		top: 20px;
		left: 20px;
		width: 120px;
	}
	
	.foldTwo h2 {
		font-size: 30px;
		line-height: 46px;
		margin-bottom: 50px;
	}
	.floatingBtn {
		right: 20px;
		bottom: 100px;
		top: auto;
	}
	.foldTwo .owl-item:nth-child(1) .circleBlock,
	.foldTwo .item:nth-child(1) .circleBlock {
		width: 270px;
		height: 270px;
		float: left;
	}
	.tabHead {
		margin-top: 40px;
		column-count: 1;
		display: flex;
		overflow: auto;
		width: 100%;
		padding: 0 15px;
		margin-bottom: 0px;
	}
	.tabHead a {
		margin: 0 10px;
	}


	.foldFive .aboutContent h4 {
		font-size: 24px;
		line-height: 34px;
		color: var(--black);
		font-weight: 400;
	}


	.tabHead .icon {
		width: 130px;
		height: 130px;
		margin: auto;
	}
	.tabHead::-webkit-scrollbar {
		display: none;
	}
	.tabHead .icon img {
		width: 70px;
	}
	.foldThree h2,
	.foldFour h2 {
		font-size: 50px;
	}
	.tabHead h4 {
		font-size: 18px;
		margin-top: 10px;
	}
	.tabContent {
		text-align: center;
	}
	.tabContent p {
		font-size: 18px;
		font-weight: 400;
		line-height: 24px;
		margin-top: 25px;
	}
	.foldFive h2 {
		font-size: 50px;
		line-height: 40px;
		margin: 0 auto 40px auto;
	}
	.foldFive {
		padding: 40px 0;
	}
	.foldTwo .circleBlock {
		padding: 47px;
	}
	.accordion {
		padding: 0px 20px;
	}
	.accordion-button {
		font-size: 20px;
	}
	.foldFive .aboutContent {
		padding: 50px;
	}
	.foldFive .testiMonial {
		padding: 0px 50px;
		text-align: center;
	}
	.foldFive .logo-list {
		display: inline-block;
		padding: 25px;
	}
	.foldFive .testiMonial .authorName {
		font-size: 26px;
	}
	.foldFive .testiMonial .authorName::before {
		display: none;
	}
	.foldSix h2,
	.foldSeven h2 {
		font-size: 50px;
		line-height: 40px;
	}
	.footerLinks {
		display: none;
	}
	.block1 {
		text-align: center;
	}
	footer {
		padding: 90px 0 35px;
	}

	.globalReachWarp h2{
		font-size: 50px;
	}
}

@media (max-width: 414px) {
	.foldTwo .owl-item .circleBlock .icon, .foldTwo .item .circleBlock .icon {
		right: -57px !important;
		top: 0;
		transform: scale(0.7);
	}
}