@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;
	--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;
	position: relative;
	z-index: 10;
}

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;
	margin-bottom: 0px;
}

.bannerInner {
	display: flex;
	justify-content: right;
	align-items: center;
	flex-direction: row-reverse;
	height: 450px;
}

.bannerImage {
	float: right;
	width: 100%;
	background: #000;
	position: relative;
	right: -90px;
	transform: rotate(353deg) !important;
	-webkit-border-top-left-radius: 400px;
	-webkit-border-bottom-left-radius: 400px;
	-moz-border-radius-topleft: 400px;
	-moz-border-radius-bottomleft: 400px;
	border-top-left-radius: 400px;
	border-bottom-left-radius: 400px;
	overflow: hidden;
	top: 70px;
}

.bannerImageoutter {
	position: relative;
	width: 50%;
}

.bannerImageoutter::before {
	content: "";
	position: absolute;
	left: -20px;
	top: 200px;
	width: 150px;
	height: 200px;
	background: url(../images/logo-quotes.png);
}

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

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

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

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

.foldSix {
	padding: 70px 0;
}

.formSec {
	background: #fff;
	padding: 50px;
	box-shadow: -10px 10px 15px rgb(0 0 0 / 2%);
	position: relative;
	margin-top: 50px;
}

.formSec::before {
	content: "";
	position: absolute;
	left: -150px;
	top: -100px;
	background: url(../images/dots.png) no-repeat;
	width: 210px;
	height: 182px;
	z-index: -1;
}

.formSec p {
	text-align: center;
	font-size: 18px;
	margin: 25px 0;
}

.contactForm {
	max-width: 800px;
	margin: 50px auto;
}

.contactForm .cta-div {
	background: transparent !important;
	position: inherit;
	display: table;
	margin: 20px auto 40px;
}

.contactForm .cta-div a {
	border-right: 0;
}

.contactForm h3 {
	font-size: 30px;
	font-weight: 300;
	text-align: center;
}

.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: 250px;
	width: 100%;
	border: 1px solid rgb(223, 223, 223);
	border-radius: 25px;
	padding: 25px 35px;
	margin-bottom: 15px;
}

.formSec .globalReachLink {
	color: var(--blueDark);
	font-size: 18px;
	font-weight: 600;
	text-decoration: underline;
	text-align: center;
	display: table;
	margin: 50px auto 0;
	position: relative;
}

.formSec .globalReachLink:hover {
	letter-spacing: 1px;
}

.formSec .globalReachLink::before {
	content: "";
	position: absolute;
	right: -15px;
	top: 9px;
	width: 0;
	height: 0;
	border-width: 5.5px 0 5.5px 8px;
	border-color: transparent transparent transparent #005DB4;
	border-style: solid;
}

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;
}
footer .copyright a{
	font-size: 15px;
    text-decoration:none;
    color:#ffffff;
}

.serviceContent {
	padding: 50px 0;
}

.serviceContent h3 {
	font-size: 45px;
	font-weight: 300;
	margin: 30px 0;
}

.serviceContent hr {
	margin: 50px 0;
}

.scFoldTwo {
	margin: 0 0 100px;
	padding: 0;
}

.scFoldTwo .titleSec {
	height: 400px;
	width: 90%;
	display: inline-block;
	background: #00aaf5 url(../images/focus-image.png) no-repeat;
	background-size: contain;
	display: flex;
	justify-content: space-around;
	align-items: center;
}

.scFoldTwo .titleSec h3 {
	font-size: 50px;
	font-weight: 800;
	color: var(--black);
	margin-left: 130px;
}

.scFoldTwo .titleSec h3 span {
	font-weight: 300;
	display: block;
}

.servieListBlock {
	padding: 50px;
	background: #fff;
	box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.185);
	height: 100%;
	display: inline-block;
	width: 100%;
}

.m-80 {
	margin-top: -80px;
}

.servieListBlock h4 {
	font-size: 30px;
	font-weight: 700;
	margin-bottom: 20px;
}

.servieListBlock h4 span {
	margin-right: 15px;
}

.servieListBlock h4 span img {
	width: 70px;
	object-fit: contain;
}

.servieListBlock ul {
	list-style: none;
	margin-left: 100px;
}

.servieListBlock ul li {
	margin: 0 0 10px;
	padding: 0 0 0 30px;
	font-size: 18px;
	color: var(--black);
	position: relative;
}

.servieListBlock ul li::before {
	position: absolute;
	left: 0;
	content: "";
	top: 8px;
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: var(--black);
}

.scFoldThree {
	display: flex;
	justify-content: start;
	align-items: center;
}

.scFoldThree .iconWrap {
	width: 40%;
	position: relative;
}

.scFoldThree .iconWrap::before {
	border-bottom: 1px solid var(--yellow);
	content: "";
	position: absolute;
	width: 100%;
	bottom: 0;
	left: -150px;
}

.scFoldThree .icon {
	width: 300px;
	height: 300px;
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 50%;
	background: var(--yellow);
	float: right;
}

.scFoldThree .content {
	width: 600px;
	padding-left: 70px;
}

.scFoldThree .content p {
	font-size: 20px;
}

.aboutContent {
	padding: 50px 0 70px;
}

.aboutContent h3 {
	font-size: 45px;
	font-weight: 500;
	margin: 30px 0;
}

.aboutContent p {
	font-size: 20px;
	font-weight: 300;
	margin: 30px 0;
}

.aboutContent hr {
	margin: 50px 0;
}

.aboutContent .gridBlock {
	margin-top: 100px;
}

.aboutContent .gridBlock img {
	width: 100%;
}

.aboutContent .gridBlock .row:nth-child(even) {
	flex-direction: row-reverse;
}

.teamMembers {
	padding-bottom: 70px;
}

.teamMembers h2 {
	font-size: 65px;
	color: var(--blueDark);
	font-family: var(--primaryFont);
	text-align: center;
	margin: 70px 0 40px;
}

.memName p {
	font-size: 20px;
	margin-top: 15px;
	transition: 0.5s all;
}

.memberImage {
	transform: scale(0.9);
	transition: 0.5s all;
	overflow: hidden;
}

.memberImage:hover {
	transform: scale(1);
	transition: 0.5s all;
}

.fourBlocks .item:hover .memName p {
	transform: scale(1.1);
	transition: 0.5s all;
	letter-spacing: 1px;
}

.aboutPage .servieListBlock {
	margin: 0px 0 100px;
}

.aboutPage .servieListBlock ul {
	margin-top: 30px;
	margin-left: 50px;
}

.aboutPage .servieListBlock p {
	text-align: center;
	font-size: 18px;
	margin-top: 50px;
	font-weight: 500;
}

.aboutPage .servieListBlock p a {
	text-decoration: underline;
	color: var(--blueDark);
}

.contactPage{
    margin-top: -250px;
}

.contactPage .formSec::before{
    top: -50px;
}

.contactPage .formSec p{
    font-weight: 500;
}

.contactPage .formSec p span{
    color: var(--blueDark);
}

.contactPage .formSec .globalReachLink::before {
    content: "";
    position: absolute;
    right: -15px;
    top: 9px;
    width: 0;
    height: 0;
    border-width: 5.5px 0 5.5px 8px;
    border-color: transparent transparent transparent #005DB4;
    border-style: solid;
    transform: rotate(90deg);
}

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

.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.jpg) 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;}



@media (min-width: 1600px) {
	.bannerInner {
		height: 500px;
	}
	.bannerBlock {
		margin-bottom: 50px;
	}
	.scFoldTwo .titleSec {
		height: 400px;
	}
	.scFoldThree .iconWrap {
		width: 45%;
		position: relative;
	}
}

@media (max-width: 1024px) {
	.container,
	.container-lg,
	.container-md,
	.container-sm {
		max-width: 95%;
	}
	header.fixed-top .logoWrap {
		transform: scale(1);
		transition: all 0.5s;
		top: 20px;
	}
	header .cta-div a {
		padding: 18px 80px 18px 0;
	}
	header .cta-div a span.text {
		display: none;
	}
	
	header {
		padding: 0px 0 0;
		background: #005db4;
		height: 81px;
		position: fixed;
		width: 100%;
		z-index: 10;
	}
	
	.bannerImageoutter::before {
		content: "";
		position: absolute;
		left: -20px;
		top: 100px;
		width: 150px;
		height: 200px;
		background: url(../images/logo-quotes.png);
	}

	.bannerImageoutter {
		position: relative;
		width: 100%;
	}
	.bannerContent .cta-div a {
		border: 0;
		padding: 0 20px 0 0;
		font-weight: 500;
	}
}

@media (max-width: 950px) {
	.page-template-ContactUs .bannerContent h1 {
		font-size: 36px;
		padding-bottom: 50px;
	}
	.bannerBlock {
		padding-bottom: 0px;
		margin-top: 0px;
		padding-top: 120px;
	}
	.bannerInner {
		display: block;
		height: 100%;
	}
	.bannerImage {
		width: 100%;
		margin-top: 0px;
		top: 0;
	}
	.bannerImageoutter {
		position: relative;
		width: 100%;
	}
	.bannerImageoutter::before {
		top: 0;
		left: 0;
	}
	.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;
	}
	header .cta-div a:last-child,
	.bannerBlock .cta-div a:last-child {
		display: none;
	}
	.bannerContent h1 {
		font-size: 36px;
	}
	.logoWrap {
		position: absolute;
		top: 20px;
		left: 20px;
		width: 120px;
	}
	header.fixed-top .logoWrap {
		transform: scale(1);
		transition: all 0.5s;
		top: 20px;
	}
	.cta-div {
		background: transparent;
	}
	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;
	}
	.serviceContent h3 {
		font-size: 26px;
	}
	.scFoldTwo .titleSec {
		width: 100%;
		height: 430px;
		align-items: end;
	}
	.scFoldTwo .titleSec h3 {
		font-size: 30px;
		font-weight: 800;
		color: var(--black);
		margin-left: 0;
		text-align: center;
		padding-bottom: 90px;
	}
	.servieListBlock ul {
		list-style: none;
		margin-left: 25px;
	}
	.servieListBlock h4 {
		font-size: 24px;
	}
	.servieListBlock h4 span img {
		width: 50px;
		object-fit: contain;
	}
	.contactForm h3 {
		font-size: 20px;
		font-weight: 300;
		text-align: center;
		line-height: 28px;
	}
	.servieListBlock {
		padding: 25px;
	}
	.scFoldThree {
		display: block;
		justify-content: center;
		align-items: center;
	}
	.scFoldThree .content {
		width: 100%;
		padding-left: 0px;
		text-align: center;
		padding: 30px 25px 0;
	}
	.scFoldThree .iconWrap {
		width: 100%;
		position: relative;
	}
	.scFoldThree .icon {
		width: 200px;
		height: 200px;
		float: none;
		margin: auto;
	}
	.scFoldThree .icon img {
		width: 100px;
		object-fit: contain;
	}
	.scFoldThree .iconWrap::before {
		display: none;
	}
	.foldSix {
		padding: 0px 0;
	}
	.scFoldTwo {
		margin: 0 0 30px;
		padding: 0;
	}
	.foldSix h2,
	.foldSeven h2 {
		font-size: 50px;
		line-height: 40px;
	}
	.footerLinks {
		display: none;
	}
	.block1 {
		text-align: center;
	}
	footer {
		padding: 90px 0 35px;
	}
	.aboutContent h3 {
		font-size: 26px;
		text-align: center;
		padding: 0 15px;
	}
	.aboutContent p {
		font-size: 18px;
		font-weight: 300;
		margin: 30px 0;
		text-align: center;
		padding: 0 25px;
	}
	.aboutContent .gridBlock {
		margin-top: 50px;
	}
	.teamMembers h2 {
		font-size: 36px;
		color: var(--blueDark);
		font-family: var(--primaryFont);
		text-align: center;
		margin: 0px 0 0px;
	}
	.aboutContent {
		padding: 10px 0 10px;
	}
	.servieListBlock h3 {
		font-size: 18px;
	}
	.aboutPage .servieListBlock ul {
		margin-left: 10px;
	}
    .contactPage{
        margin-top: 50px;
    }
	.globalReachWarp h2{
		font-size: 50px;
	}
}


.affiliatePage{
	padding: 100px 0;
}

.affImage img {
    height: 310px;
    object-fit: cover;
    width: 100%;
    background: #eee;
    border-radius: 50px;
}

.affImage a{
	width:100%
}

.affDetials{
	margin-top: 20px;
}

.affDetials h3{
	font-size: 18px;
	font-weight: 600;
	text-transform: uppercase;
	margin-bottom: 0;
}

.knowMore{
    color: #0a2240;
    font-weight: 500;
    display: inline-block;
    font-size: 16px;
    transition: all .5s;
    border-bottom: 1px solid;
}

.popup-link{
	display:flex;
	flex-wrap:wrap;
  }
  
  .popup-link a{
	  background: #333;
	  color: #fff;
	  padding: 10px 30px;
	  border-radius: 5px;
	  font-size:17px;
	  cursor:pointer;
	  margin:20px;
	  text-decoration:none;
  }
  
  .popup-container {
	  visibility: hidden;
	  opacity: 0;
	  transition: all 0.3s ease-in-out;
	  transform: scale(1.3);
	  position: fixed;
	  z-index: 1;
	  left: 0;
	  top: 0;
	  width: 100%;
	  height: 100%;
	  background-color: rgba(21, 17, 17, 0.61);
	  display: flex;
	  align-items: center;
  }
  .popup-content {
	  background-color: #fefefe;
	  margin: auto;
	  padding: 20px;
	  border: 1px solid #888;
	  width: 50%;
  }
  .popup-content p{
	  font-size: 17px;
	  padding: 10px;
	  line-height: 20px;
  }
  .popup-content a.close{
	  color: #aaaaaa;
	  float: right;
	  font-size: 28px;
	  font-weight: bold;
	  background: none;
	  padding: 0;
	  margin: 0;
	  text-decoration:none;
  }
  
  .popup-content a.close:hover{
	color:#333;
  }
  
  .popup-content span:hover,
  .popup-content span:focus {
	  color: #000;
	  text-decoration: none;
	  cursor: pointer;
  }
  
  .popup-container:target{
	visibility: visible;
	opacity: 1;
	transform: scale(1);
  }
  
  .popup-container h3{
	margin:10px;
  }
  /*End popup styles*/
  
  /* Additional styles */
  .popup-style-2{
	transform: scale(0.3);
	
  }
  
  .popup-style-2:target{
	transform: scale(1);
  }
  
  .popup-style-3{
	left:100%;
	
  }
  
  .popup-style-3:target{
	left:0;
  }
  
  .popup-style-4{
	transform: rotate(180deg);
  }
  
  .popup-style-4:target{
	transform: rotate(0deg);
  }
  
  .popup-style-5{
	top:100%;
	
  }
  
  .popup-style-5:target{
	top:0;
  }
  
  .popup-style-6{
	transform: scale(15.3);
	
  }
  
  .popup-style-6:target{
   transform: scale(1);
   }
  
  .popup-style-7{
	transform: skewY(180deg);
	 transition: all 0.7s ease-in-out;
  }
  
  .popup-style-7:target{
   transform: skewY(0deg);
  
   }

   .modal-title span{
	display: block;
	font-size: 14px;
   }

   .modal-header, .modal-body{
	padding: 30px;
   }

   .modal-body ul {
	margin-bottom: 25px;
	padding-left: 25px;
   }
   .modal-body ul li{
	list-style: disc;.
	margin-bottom: 6px;

   }

   .partner {
	padding: 100px 0;
   }
   .partner .accordion-button img{
	width: 100px;
    border-radius: 50%;
    margin-right: 15px;
   }

   .partner .accordion-button h3{
	font-size: 26px;
	width: 65%;
    padding-left: 30px;
   }



   .partner .accordion-button h3 span{
	display: block;
    font-size: 16px;
   }

   .partner a.ctaButton {
    font-size: 14px;
    padding: 7px 15px;
    border: 1px solid;
	margin-right: 10px;
	font-weight: 600;
	}

	.partner .accordion-button a:hover {
		font-size: 14px;
		padding: 7px 15px;
		border: 1px solid;
		background: #005db4;
		color: #fff;
		}

		.partner .accordion-button{
			border-bottom: 0;
			background: transparent;
		}

		.partner .accordion-item	{
			padding: 0 25px;
			border-radius: 20px;
			background: #fff;
			box-shadow: 0px 2px 10px #e5e5e5;
			margin-bottom: 15px;
		}

		.partner .accordion-body {
			padding-bottom: 30px;
			padding-left: 50px;
			padding-top: 30px;
		}

		.partner .accordion-body p{
			margin-bottom: 15px;
		}

		.partner .accordion-body ul {
			margin-bottom: 25px;
			padding-left: 25px;
		   }

		   .partner .accordion-body ul li{
			margin-bottom: 10px;
		   }
		   .partner .accordion-body  ul li{
			list-style: disc;.
			margin-bottom: 6px;
		
		   }
 
		   .ctaSec{
			margin-top: 20px;
			display: inline-block;
			margin-bottom: 25px;
		   }

		   .modal-body a.ctaButton {
			font-size: 14px;
			padding: 7px 15px;
			border: 1px solid;
			margin-right: 10px;
			font-weight: 600;
			}	
			
			

			.newsListing {
				text-align: center;
				padding: 100px 0 90px;
			  }
			  
			  @media (max-width: 991px) {
				.newsListing {
				  padding: 90px 0 90px;
				}
			  }
			  
			  @media (max-width: 767px) {
				.newsListing {
				  padding: 70px 0 70px;
				}
			  }
			  
			  @media (max-width: 575px) {
				.newsListing {
				  padding: 50px 0 50px;
				}
			  }
			  
			  .newsListing h3 {
				margin-bottom: 40px;
			  }
			  
			  @media (max-width: 575px) {
				.newsListing h3 {
				  margin-bottom: 20px;
				}
			  }
			  
			  .newsListing .news-slider {
				text-align: left;
			  }
			  
			  .newsListing .news-slider h4 {
				margin-top: 20px;
				margin-bottom: 10px;
				color: #000;
			  }
			  
			  .newsListing .news-slider figure {
				overflow: hidden;
				position: relative;
			  }
			  
			  .newsListing .news-slider figure img {
				width: 100%;
				transition: all 500ms;
			  }
			  
			  .newsListing .news-slider figure:hover img {
				transform: scale(1.1);
			  }
			  
			  .newsListing .news-slider .dmy {
				font-family: "Roboto Condensed";
				position: absolute;
				z-index: 1;
				color: #fff;
				background-color: #679966;
				padding: 10px;
				display: flex;
				flex-direction: column;
				align-items: center;
				left: 10px;
				top: 10px;
			  }
			  
			  .newsListing .news-slider .dmy .date {
				line-height: 28px;
				font-size: 34px;
			  }
			  
			  .newsListing .news-slider .dmy .month {
				line-height: 18px;
				font-size: 20px;
			  }
			  
			  .newsListing .news-slider .dmy .year {
				font-size: 16px;
				line-height: 16px;
			  }
			  
			  .newsListing .news-slider a {
				font-weight: 700;
				color: #fff;
				float: left;
				padding: 5px 26px;
				font-size: 15px;
				background-color: #79726c;
			  }
			  
			  .newsListing .news-slider a:hover {
				background-color: #679966;
			  }

			  .newsThumb{
				padding:0 !important;
			  }

.list-type-disc {
	list-style-type: disc;
	padding-left: 25px;
}