@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;1,100;1,200;1,300;1,400;1,500&display=swap');

:root {
    --font-main: 'Poppins';

	--font-size-h1: 26px;
	--font-size-h2: 24px;
	--font-size-h3: 20px;
    --font-size-h4: 18px;
	--font-size-p: 16px;
	--line-height-h1: 36px;
	--line-height-h2: 33px;
    --line-height-h3: 26px;
    --line-height-h4: 24px;
    --line-height-p: 24px;

    /*colors*/
    --theme-color: #111111;
    --theme-red: #CD4551;
	--theme-blue: #2D354C;
    
}

@media (min-width: 992px) {
	:root {
		--font-size-h1: 48px;
		--font-size-h2: 36px;
		--font-size-h3: 24px;
        --font-size-h4: 24px;
		--font-size-p: 20px;
		--line-height-h1: 72px;
		--line-height-h2: 58px;
        --line-height-h3: 36px;
        --line-height-h4: 36px;
        --line-height-p: 30px;
	}	
}

@media (min-width: 1336px) {
		
}

/**** heading ***/
h1{ 
	font-family: var(--font-main); 
	font-size: var(--font-size-h1);
	line-height: var(--line-height-h1);
	font-weight: 600;
}

h2{ 
	font-family: var(--font-main);
	font-size: var(--font-size-h2);
	line-height: var(--line-height-h2);
	font-weight: 500;
}
h3{ 
	font-family: var(--font-main);
	font-size: var(--font-size-h3); 
	font-weight: 500;
}
h4{ 
	font-family: var(--font-main); 
	font-size: var(--font-size-h4);
    line-height: var(--line-height-h4);
	font-weight: 500;
}



/**** paragraph****/
p, li{ 
	font-family: var(--font-main); 
	font-size: var(--font-size-p);
	line-height: var(--line-height-p);
	font-weight: 400;
}

a{
	font-family: var(--font-main); 
	text-decoration: none;
	font-weight: 400;
}

/*bg colors*/
.bg-theme{background-color: var(--theme-color);}



/*Common*/
    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: 0; font-size: 20px; font-weight: 500; font-family: var(--font-main); transition: all 300ms linear;}
    
    .desktop-view{ display: none;}
    .mobile-view{ display: block;}
    .swipe--slider{ position: relative;}
    .swipe--slider .swiper {padding-bottom: 50px;}
    .swipe--slider .swiper-pagination-bullet-active{ background: var(--theme-color);}
@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-940{max-width: 940px; margin: auto;}
    .max-980{ max-width: 980px; margin: auto;}
    .max-1000{ max-width: 1000px; margin: auto;}
}

@media (min-width: 1200px) {
    .d-100-vh{ height: 100vh; display: flex; flex-direction: column; justify-content: center;}
    .desktop-view{ display: block;}
    .mobile-view{ display: none;}
}
@media (min-width: 1600px) {
    .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);
}

/*footer*/
.footer-top { background: #fff; position: relative;}
.footer-top.sp-50{ padding-bottom: 30px; background: #2D354C;}
.footer-top, .footer-top a, .footer-top p{ font-size: 16px; color: #ffffff;}
.ftr-logo{ color: #000; font-size: 26px; font-weight: 700;}
.footer-btm .copy, .ftr-btm-links li a{font-size: 14px;}
.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;}
.ftr-links li a, .footer-top a{ color: #ffffff;}
.ftr-links li a:hover, .footer-top a:hover{ color: rgba(0,0,0,00.8)}
.ftr-email, .ftr-phone{ position: relative; padding-left: 30px; margin-bottom: 20px;}
.ftr-email:before, .ftr-phone:before{ position: absolute; left: 0; top: 2px;}
.ftr-email:before{ content: url(../images/fmail-icon.svg);}
.ftr-phone:before{ content: url(../images/fphone-icon.svg);}
.linkedin a, .insta a{position: relative; padding-left: 30px; margin-bottom: 20px; display: inline-block;}
.linkedin a:before, .insta a:before{position: absolute; left: 0; top: 2px;}
/* .linkedin a:before{ content: url('../images/linked-in.png');}
.insta a:before{ content: url('../images/facebook.png');} */
.ftr-sub-title{ margin-bottom: 20px; margin-top: 20px;}
.ftr-desc p span {white-space: nowrap;}

.footer-btm{ background: #fff; position: relative; padding: 20px 0px 10px; border-top: 1px solid #D3D7DB;}
.footer-btm .copy{ text-align: center; color: #717680;}
.ftr-btm-links{ display: flex; padding: 0; margin: 0px 0px 10px 0px; justify-content: center;}
.ftr-btm-links li{ list-style-type: none; padding: 0px 10px 0px;}
.ftr-btm-links li a{ color: #000;}
.ftr-btm-links li a:hover{ color: rgba(0,0,0,00.8)}

@media (min-width: 768px) {
	.footer-top, .footer-top a, .footer-top p{ font-size: 18px;}
	.ftr-btm-links{justify-content: flex-start; margin-bottom: 0;}
	.ftr-btm-links li{ list-style-type: none; padding: 0px 40px 0px 0px;}
	.ftr-btm-links li:nth-last-of-type(1){ padding-right: 0;}
    .ftr-btm-links li a:hover{ color: var(--theme-color);}
	.ftr-sub-title{ 
		margin-top: unset;
		font-size: 18px;
	} 
}

@media (min-width: 1440px) {
	.footer-top, .footer-top a, .footer-top p{ font-size: 16px;}
	.footer-btm .copy, .ftr-btm-links li a{font-size: 16px;}
}