@font-face {
    font-family: 'gilroy-bolduploaded_file';
    src: url('../fonts/gilroy-bold-webfont.woff2') format('woff2'),
         url('../fonts/gilroy-bold-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'gilroylight';
    src: url('../fonts/gilroy-light-webfont.woff2') format('woff2'),
         url('../fonts/gilroy-light-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'gilroy-mediumuploaded_file';
    src: url('../fonts/gilroy-medium-webfont.woff2') format('woff2'),
         url('../fonts/gilroy-medium-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;

}

@font-face {
    font-family: 'gilroy-regularuploaded_file';
    src: url('../fonts/gilroy-regular-webfont.woff2') format('woff2'),
         url('../fonts/gilroy-regular-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}


:root {
    --font-main: 'gilroy-regularuploaded_file';
	--font-bold: 'gilroy-bolduploaded_file';
	--font-medium: 'gilroy-mediumuploaded_file';
	--font-light: 'gilroylight';


	--font-size-h1: 26px;
	--font-size-h2: 24px;
	--font-size-h3: 22px;
	--font-size-h4: 20px;
	--font-size-h5: 18px;
	--line-height-h1: 36px;
	--line-height-h2: 32px;
	--line-height-h3: 30px;
	--line-height-h4: 28px;
	--line-height-h5: 26px;
	--font-size-para: 18px;
	--line-height-para: 28px;
	--font-size-p: 16px;
	--line-height-p: 24px;

    /*colors*/
    --color-blue: #2E63D8;
    
}

@media (min-width: 992px) {
	:root {
		--font-size-h1: 36px;
		--font-size-h2: 30px;
		--font-size-h3: 26px;
		--font-size-h4: 22px;
		--font-size-h5: 20px;
		--line-height-h1: 48px;
		--line-height-h2: 42px;
		--line-height-h3: 38px;
		--line-height-h4: 30px;
		--line-height-h5: 28px;
		--font-size-para: 20px;
		--line-height-para: 30px;
		--font-size-p: 18px;
		--line-height-p: 26px;
	}	
}

@media (min-width: 1200px) {
	:root {
		--font-size-h1: 42px;
		--font-size-h2: 36px;
		--font-size-h3: 30px;
		--font-size-h4: 22px;
		--font-size-h5: 20px;
		--line-height-h1: 54px;
		--line-height-h2: 48px;
		--line-height-h3: 40px;
		--line-height-h4: 30px;
		--line-height-h5: 28px;
		--font-size-para: 20px;
		--line-height-para: 30px;
		--font-size-p: 18px;
		--line-height-p: 26px;
	}	
}

@media (min-width: 1336px) {
	:root {
		--font-size-h1: 48px;
		--font-size-h2: 38px;
		--font-size-h3: 32px;
		--font-size-h4: 24px;
		--font-size-h5: 22px;
		--line-height-h1: 60px;
		--line-height-h2: 50px;
		--line-height-h3: 42px;
		--line-height-h4: 32px;
		--line-height-h5: 30px;
		--font-size-para: 24px;
		--line-height-para: 32px;
		--font-size-p: 20px;
		--line-height-p: 32px; 
		
	}	
}

@media (min-width: 1440px) {
	:root {
		--font-size-h2: 40px;
		--line-height-h2: 52px;
	}
}

/**** heading ***/
h1{ 
	font-family: var(--font-bold); 
	font-size: var(--font-size-h1);
	line-height: var(--line-height-h1);
}

h2{ 
	font-family: var(--font-bold);
	font-size: var(--font-size-h2);
	line-height: var(--line-height-h2);
}

h3{ 
	font-family: var(--font-bold);
	font-size: var(--font-size-h3);
	line-height: var(--line-height-h3);
}

h4{ 
	font-family: var(--font-bold);
	font-size: var(--font-size-h4);
	line-height: var(--line-height-h4);
}

h5{ 
	font-family: var(--font-bold);
	font-size: var(--font-size-h5);
	line-height: var(--line-height-h5);
}

/**** paragraph****/

p{
	font-size: var(--font-size-p);
	font-family: var(--font-main); 
	line-height: var(--line-height-p);
}

li{ 
	font-size: var(--font-size-p);
	font-family: var(--font-main); 
	line-height: var(--line-height-p);
}

p.para, div.para{

	font-size: var(--font-size-para);
	font-family: var(--font-main); 
	line-height: var(--line-height-para);
}

a{
	font-family: var(--font-main); 
	text-decoration: none;
}

/*Common*/
.header{background: #fff; box-shadow: 0px 0px 25px rgba(0, 0, 0, 0.05); backdrop-filter: blur(20px); z-index: 99; padding: 5px 0px 10px;}
.header .container{ position: relative;}
.header.my-fixed{ background: rgba(255, 255, 255, 0.9); transition: all 500ms linear;}
.header .header-logo{padding: 10px 0px 10px; position: relative; z-index: 9;}
@-moz-document url-prefix() { 
    .header.my-fixed{ background: rgba(255, 255, 255, 0.9);}
  }

  @media (min-width: 992px) {
    .header{padding: 5px 0px 0px;}
    .header .header-logo{padding: 0px 0px 10px;}
  } 


body{ overflow-x:hidden !important; font-family: var(--font-main) !important;}
    .container{ width: 95%; max-width: 1440px;}
    .sp-50{ padding-top:30px; padding-bottom:30px;}
    .spt-50{ padding-top:30px;}
    .spb-50{ padding-bottom:30px;}
    .btn:focus, .btn.focus, a:focus, .swiper-pagination-bullet:focus, button:focus {outline: 0; box-shadow: none !important;}
    .btn{ border-radius: 7px; font-size: 16px; font-weight: 400; font-family: var(--font-medium); transition: all 100ms linear; padding: 5px 20px;}
	.btn-rounded{ border-radius: 32px;}
	.btn-white-o{ background: #fff; color: #000; border: 1px solid #000;}
	.btn-white-o:hover{ background: #FF800B; color: #fff; border: 1px solid #FF800B;}
	.btn-white{ background: #fff; color: #000;}
	.btn-white:hover{ background: #FF800B; color: #fff;}
	.btn-orange{ background: #FF800B; color: #fff;}
	.btn-orange:hover{ background: #FF800B; color: #fff;}
    .txt-blue{ color: #2E63D8;}
	.bg-dark-blue{ background: #111D30;}
	.bg-light-pink{background: #FFFAF5;}
	.ws-nw{ white-space: nowrap;}
	strong, b{ font-family: var(--font-bold); font-weight: normal;}
   
@media (max-width: 767px) {
    .row.col-reverse{ flex-direction: column-reverse;}
	.xs-mb-20{ margin-bottom: 20px;}
	.xs-mb-30{ margin-bottom: 30px;}
}  

@media (min-width: 992px) {
	.container{ width: 90%; max-width: 1440px;}
	span.db{ display: block;}
	.sp-50{ padding-top:50px; padding-bottom:50px;}
	.spt-50{ padding-top:50px;}
	.spb-50{ padding-bottom:50px;}
	.max-800{max-width: 800px; margin-left: auto; margin-right: auto;}
    .max-940{max-width: 940px; margin-left: auto; margin-right: auto;}
    .max-980{ max-width: 980px; margin-left: auto; margin-right: auto;}
    .max-1000{ max-width: 1000px; margin-left: auto; margin-right: auto;}
	.max-1100{ max-width: 1100px; margin-left: auto; margin-right: auto;}
    .btn{ font-size: 18px; padding: 10px 50px;}
}

@media (min-width: 1200px) {
	.txt-36{ font-size: 36px;}
	.txt-18{ font-size: 18px; line-height: 29px;}
}

@media (min-width: 1440px) {
    .sp-50{ padding-top:70px; padding-bottom:70px;}
	.spt-50{ padding-top:70px;}
	.spb-50{ padding-bottom:70px;}
}

/*Scroll to Top*/
#return-to-top .upIcon{ content: url("../images/top.svg");}
#return-to-top {
    position: fixed;
    bottom: 60px;
    right: 0px;
    background: rgba(131, 157, 181, 0.5);
	/*box-shadow: 0px 0px 1px 1px rgba(255,255,255,0.3);*/
  	padding:5px 8px 9px 10px;
	border-radius:5px 0px 0px 5px;
    display: block;
    text-decoration: none;
    -webkit-transition: all 0.3s linear;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
	 z-index:99;
}
#return-to-top:hover {
   background: rgba(131, 157, 181,1);
}


/*Swiper Slider*/
.site--slider{ position: relative;}
.site--slider .swiper {width: 100%; height: 100%;}
.site--slider .swiper-slide {
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: stretch;
    align-items: stretch;
    height: auto;
    margin-bottom: 50px;
}
.site--slider .swiper-pagination-bullet {background: #cccccc; opacity: 1; width: 8px; height: 8px;} 
.site--slider .swiper-pagination-bullet-active{background: #000000;}
.site--slider .swiper-pagination-bullets.swiper-pagination-horizontal{ bottom:0}

.site--slider .fw-pagi .swiper-pagination-bullet-active, 
.site--slider .ods-pagi .swiper-pagination-bullet-active{
    background: #2E63D8;
}

.site--slider .swiper-button-next, .site--slider .swiper-button-prev{font-family: unset; top: unset; bottom: -5px; z-index: 999;}
.site--slider .swiper-button-next::after{ content: url(../images/swiper-arrow-rht.svg);}
.site--slider .swiper-button-prev::after{ content: url(../images/swiper-arrow-lft.svg);}
.site--slider-nav{ max-width: 500px; margin: auto;}

@media (min-width: 768px) {
    .site--slider .swiper-button-next{ right: 30%;}
    .site--slider .swiper-button-prev{ left: 30%;}
}
@media (min-width: 1366px) {
    .site--slider .swiper-button-next{ right: 40%;}
    .site--slider .swiper-button-prev{ left: 40%;}
}
/*Swiper Slider End*/

/*Accordion*/
.site-accord .accordion{ border: 0;}
.site-accord .accordion-item {border-bottom: 1px solid rgba(0, 0, 0, 0.2); border-top: 0; border-left: 0; border-right: 0; margin-bottom: 10px; padding-bottom: 20px;}
.site-accord .accordion-item, .site-accord .accordion-button{background: transparent; color: #000;}
.site-accord .accordion-button{ padding:10px 40px 10px 0px; font-size: 16px; line-height: 22px; font-family: var(--font-medium); 
position: relative;}
.site-accord .accordion-body{ padding: 20px 0px 10px; color: #000; font-size: 16px; line-height: 24px;}
.site-accord .accordion-body p{line-height: 24px; font-size: 16px;}
.site-accord .accordion-body ul, .site-accord .accordion-body ol{ padding: 0px 0px 0px 20px;}
.site-accord .accordion-body ul li, .site-accord .accordion-body ol li{ padding-left: 5px;}
.site-accord .accordion-body li{line-height: 24px; font-size: 16px; padding-bottom: 10px;}
.site-accord .accordion-button::after{ content: url(../images/down.svg); background-image: none; font-size: 30px; font-weight: 300; position: absolute; top: 10px; right: 0;} 
.site-accord .accordion-button:not(.collapsed)::after {content: url(../images/up.svg); background-image: none; transform: none; font-size: 30px; font-weight: 300;}
.site-accord .accordion-item:nth-last-of-type(1){ border-bottom: 0;}
.site-accord .accordion-header, .site-accord .accordion-button, .site-accord .accordion-collapse, .site-accord .accordion-body{box-shadow:none;}

@media (min-width: 768px) {
	.site-accord .accordion-button::after{top: 20px;}
    .site-accord .accordion-button{ padding:20px 20px 10px 0px; font-size: 24px; line-height: 40px; font-family: var(--font-bold);}
    .site-accord .accordion-body{padding-right: 20px; max-width: 900px;}
}

@media (min-width: 1200px) {
    .site-accord .accordion-button::after{top: 20px; right: 15px; content: url(../images/down.svg);}
    .site-accord .accordion-button:not(.collapsed)::after {content: url(../images/up.svg);}
}
@media (min-width: 1366px) {
    .site-accord .accordion-button {padding-right: 50px;}
}
/*Accordion End*/


/*footer*/
.footer-top { background: #1B1B1B; color: #C5CAD9;}
.footer-top p.ftr-desc{ font-size: 14px; line-height: 20px;}
.footer-top, .footer-top a, .footer-top p{ font-size: 13px; font-weight: 300;}
.footer-btm .copy, .ftr-btm-links li a{font-size: 13px;}
.ftr-links-col{ display: flex;}
.ftr-links-col .ftr-links:nth-of-type(1){ margin-right: 30px;}
.ftr-links{ padding: 0; margin: 0;}
.ftr-links li{ list-style-type: none; padding-bottom: 10px; margin-bottom: 5px; line-height: 20px; border-bottom: 1px solid rgba(255, 255, 255, 0.1);}
.ftr-links li:nth-last-of-type(1){ border-bottom: 0;}
.ftr-links li a, .footer-top a{ color: #C5CAD9;}
.ftr-links li a:hover, .footer-top a:hover{ color: rgba(255,255,255,1)}
.ftr-email, .ftr-india, .ftr-aus{ position: relative; margin-bottom: 20px;}
.linkedin a, .youtube a, .fb a, .insta a, .twit a{position: relative; padding-left: 30px; margin-bottom: 20px; display: inline-block;}
.linkedin a:before, .youtube a:before, .fb a:before, .insta a:before, .twit a:before{position: absolute; left: 0; top: 1px;}
.linkedin a:before{ content: url(../images/linkedin.svg);}
.youtube a:before{ content: url(../images/youtube.svg);}
.fb a:before{ content: url(../images/facebook.svg);}
.insta a:before{ content: url(../images/instagram.svg);}
.twit a:before{ content: url(../images/twitter.svg);}
.ftr-sub-title{ font-size:14px; margin-bottom: 10px; margin-top: 20px;}
.ftr-adrr{border-bottom: 1px solid rgba(255, 255, 255, 0.1); margin-bottom: 10px;}
.ftr-adrr p{ line-height: 24px;}
.ftr-adrr strong{ font-family: var(--font-bold);}

.footer-btm{ background: #1B1B1B; padding: 20px 0px; border-top: 1px solid #5F6880;}
.footer-btm .copy{ text-align: center; color: #C5CAD9; font-size: 13px; font-weight: 300; display: flex; flex-direction: column-reverse; justify-content: center;}
.footer-btm .copy2{ margin-bottom: 10px;}
.footer-btm a{ color: #C5CAD9;}
.footer-btm a:hover{ color: #fff;}
.footer-btm .copy .divd1{display: none;}
.footer-btm .copy .divd2{ margin: 0px 10px;}
@media (min-width: 768px) {
	.footer-btm .copy{ display: flex; flex-direction: row;}
	.footer-btm .copy .divd1{ margin: 0px 10px; display: inline-block;}
	.footer-btm .copy2{ margin-bottom: unset;}
}

.ftr-logo{ font-family: var(--font-main); font-size: 28px; color: #fff; font-weight: 600; line-height: 20px; margin: 0; 
    padding: 0px 0px 32px 0px;}

.footer--cta{ background: #1B1B1B;} 
.footer--cta-box { max-width: 1078px; margin: auto; background: url(../images/ftr-cta-bg.jpg) no-repeat; background-size: cover; border-radius: 15px; text-align: left;}
.ftr-cta-box-inner{background: url(../images/ftr-cta-img.png) no-repeat right -100px bottom; background-size: 230px; padding: 20px 20px 30px 20px;}
.footer--cta-box h2{ color: #fff;}
.ftr-btn{ margin-top: 30px; margin-bottom: 20px;}
.ftr-btn .btn{ background: #FF800B; font-size: 16px; border-radius: 50px; padding: 5px 20px 7px; color: #fff;}
.ftr-btn .btn:hover{ background: #FF800B;}
.footer-partners{ background: #313131; padding: 20px 0px;}
@media (min-width: 768px) {
	.ftr-sub-title{ margin-top: unset;}
	.ftr-cta-box-inner{ background-position: right bottom -30px; background-size: unset; padding: 50px 20px 30px 50px;}
}
@media (min-width: 992px) {
	.ftr-cta-box-inner{padding: 50px 30px 30px 50px; background-position: right bottom;}
}

@media (min-width: 1200px) {
    .ftr-desc{ padding-right: 20px;}
    .ftr-service-col.col-lg-3 {width: 23.5%;}
	.ftr-btn .btn{ padding: 5px 30px 7px;}
}
@media (min-width: 1440px) {
	.footer-top, .footer-top a, .footer-top p{ font-size: 13px;}
}

.fade-in {
	opacity: 1;
	animation-name: fadeInOpacity;
	animation-iteration-count: 1;
	animation-timing-function: ease-in;
	animation-duration: 1s;
}

@keyframes fadeInOpacity {
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}