@charset "utf-8";

  


/*************** DEFAULT CSS ***************/
:root {
	--body-font:"Lato", sans-serif;
	--body-color: #000;
	--primary-color: #0b3c5a;
	--secondary-color: #125780;
	--tertiary-color: #cfedff;
	--quaternary-color: #00BFF3;	
	--black: #000;
	--white: #fff;
	--grey: #F3F3F3;	
	--grey-light: #F8F8F8;
	--grey-dark: #6D6D6D;		 	 
 	--font-weight-light:300;
	--font-weight-normal:400;
	--font-weight-medium:500;	
	--font-weight-bold:700;		 	 
	--heading-font:"Lato", sans-serif;
 

}

body {

	font-family: var(--body-font);
	font-size: 18px;
	font-style: normal;
	line-height: 26px;
	/*letter-spacing: -.1em;*/
	font-weight: normal;
	color: var(--body-color);
	text-decoration: none;
	margin: 0px;
	-webkit-font-smoothing: antialiased;
	padding: 0;
	background: var(--white);

}


/* Scrollbar Styling */
::-webkit-scrollbar {
    width: 8px;
}
 
::-webkit-scrollbar-track {
    background-color: var(--primary-color);
    -webkit-border-radius: 10px;
    border-radius: 10px;
 
}

::-webkit-scrollbar-thumb {
    -webkit-border-radius: 10px;
    border-radius: 10px;
    background: var(--secondary-color);
}

html {
	scroll-behavior: smooth;
	overflow-x:hidden;
}

* {
	-webkit-box-sizing: border-box;
	-mox-box-sizing: border-box;
	box-sizing: border-box;
}

::selection {
	background: var(--primary-color);
	/* Safari */
	color:var(--white);
}

::-moz-selection {
	background: var(--primary-color);
	/* Firefox */
	color:var(--white);
}

a {
	color: var(--body-color);
	text-decoration: none;
	-webkit-transition: all 300ms ease-in-out;
	-moz-transition: all 300ms ease-in-out;
	transition: all 300ms ease-in-out;
}

a:hover {
	color: var(--secondary-color);
}

p {
	margin: 0px 0 30px 0;
	clear: left;
	padding: 0;
	font-weight: normal;
	font-size: 100%;
 
}

h1,
h2,
h3,
h4,
h5,
h6 {
	margin: 0 0 20px 0;
	padding: 0;
	font-weight: normal;
}

.hr {
	margin: 30px 0;
	height: 1px;
	border: 0;
	border-top: 1px solid rgba(0, 0, 0 ,0.2);
	display: block;
	width: 100%;
	height:1px;
	position: relative;
}
 
img {
	max-width: 100%;
	border: 0;
	-webkit-transition: all 300ms ease-in-out;
	-moz-transition: all 300ms ease-in-out;
	transition: all 300ms ease-in-out;

}

a img {
	border: 0;
}

/*-----------text styles------------*/


.text-white {
	color: var(--white) !important;
}

.text-black {
	color: var(--black) !important;
}

.text-blue {
	color: var(--primary-color) !important;
}
  
.text-dark-blue {
	color: var(--secondary-color) !important;
}
 
.text-center {
	text-align: center;
}
.text-right{
	text-align:right;
}

.text-justify {
	text-align: justify;
}

 /***************************************/
 
 
 
 
 

/*-----------background styles------------*/
.corner-round{
	overflow:hidden;
	border-radius: 20px;
}
.bg-gradient{
	background-image: linear-gradient(to top, var(--primary-color), var(--secondary-color));
	color:var(--white)!important;	 
}
.bg-primary {
	background: var(--primary-color);
	color:#fff;
}
.bg-secondary {
	background: var(--secondary-color);
	color:#fff;
}

.bg-tertiary {
	background: var(--tertiary-color);
	color:#fff;
}
.bg-quaternary {
  background: var(--quaternary-color);
  color:#fff;
}
.bg-grey {
	background: var(--grey);
 
}
.bg-grey-light {
	background: var(--grey-light);
 
}
.bg-white {
	background: var(--white)
}


/*************** PRELOADER ***************/

#preloader {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color:var(--white);
	z-index: 999999;
}

#status {
	width: 200px;
	height: 200px;
	position: absolute;
	/*background-color:var(--white);*/
	left: 50%;
	top: 50%;
	background-image: url(../images/atmic-blue.svg);
	background-repeat: no-repeat;
	background-position: center center;
	background-size:100%;
	margin: -100px 0 0 -100px;
 
}


 
/*********************************/

.container {
	width: 1410px;
	margin: 0 auto;
}
.fullheight {
	width: 100%;
	min-height:100vh;
	overflow:auto;
 
} 
.fullwidth {
	width: 100%;
	display: block;
} 

.img-rounded{
	border-radius: 50%;
	overflow:hidden;
	}
.corner-radius{
	border-radius: 50%;
	}	
 
/*************HOVER EFFECT*******/

.hover-effect{
	width:100%;
	position:relative;
	overflow:hidden;
	border-radius: 20px; 
}

 .hover-effect i{
    width:50px;
    height:50px;
    background-color:var(--primary-color);
	border-radius: 50%;
    color:#fff;
    position:absolute;
    left:50%;
    top:-100px;
    z-index:1;
    line-height:50px;
    text-align:center;
    margin:0 0 0 -25px;
    -webkit-transition:all 300ms ease-in-out;
    -moz-transition:all 300ms ease-in-out;
    transition:all 300ms ease-in-out;
}
 .hover-effect:hover i{
    top:50%;
    margin:-25px 0 0 -25px;
}

 .hover-effect i:hover{
	background-color:var(--secondary-color);
	}
	
	

.hover-effect img {
 	display:block;
  	width:100%;
	-webkit-filter: none;
    filter: none;
 	-webkit-transition: all .5s;
    transition: all .5s;
}
.hover-effect:hover img {
     -webkit-transform: scale(1.09, 1.09);
    transform: scale(1.09, 1.09);
    -webkit-filter: brightness(70%);
    -webkit-transition: all 1s ease;
    -moz-transition: all 1s ease;
    -o-transition: all 1s ease;
    -ms-transition: all 1s ease;
    transition: all 1s ease;
	/*-webkit-filter: brightness(70%);*/
	filter: grayscale(60%);
	-webkit-filter: grayscale(60%);
}


/*.hover-effect:after {
  background:#FFF;
  width:0;
  height: 0;
  position: absolute;
  left: 50%;
  bottom: 50%;
  content: '';
  opacity: 0.7;
  -moz-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}

.hover-effect:hover:after {
	opacity: 0.1;
	width: 100%;
  	height: 100%;
	left: 0;
    bottom: 0;

}
*/
section {
	width: 100%;
	display:blocx;
	position: relative;
	 
}

.section-spacing{
	 padding:50px 0;
 }
.sticky{
 	position: -webkit-sticky !important;
	position: sticky !important;
	top: 100px;
	width:100%;
 
}

/*********************************************/ 
 

 header{
	 width:100%; 
	 position:absolute;
	 left:0;
	 top:0;
	 padding:20px 0;
	 z-index:5;	
	 -webkit-transition: all 300ms ease-in-out;
	 -moz-transition: all 300ms ease-in-out;
	 transition: all 300ms ease-in-out;
}
header.smaller {
	padding:10px 0;
	position: fixed;
	background-image:none;
	/* background: linear-gradient(90deg, #001651 0%, #00398C 60%); */
	background-color: var(--white);
	box-shadow: 0px 10px 20px 0px rgba(123, 123, 123, 0.1); 
} 
header.smaller .vg-nav>ul>li>a{ color: var(--body-color);}
.header{
    width:100%;
	display: flex;
    flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
}


 
.logo { 
	padding:0;	
}

.logo img {
	width:310px;
	display:block;
	filter: brightness(0) invert(1);
}
header.smaller .logo img{
	width:200px;
	filter: initial;
}

.nav-group{
	display: flex;
	align-items: center; 
 }
 
.top-button-group{
     display: flex;
	 align-items: center; 
	 gap: 0 20px;
 	 }
 
 

.contact-button a{
	color:var(--primary-color);
	background-color:var(--tertiary-color);
	font-size:17px;
	font-weight:var(--font-weight-medium);
	line-height:48px;
	height:48px;
	padding:0px 25px;
	display:block; 	 
	border-radius: 50px;
	-webkit-transition: all 300ms ease-in-out;
	-moz-transition: all 300ms ease-in-out;
	transition: all 300ms ease-in-out;
}
.contact-button a:hover{
	background-color:var(--white);
}

.search-bt a{
	color:var(--white);
	font-size:20px;
}
header.smaller .search-bt a{ color: var(--primary-color);}

.search-bt a:hover{
	color:var(--tertiary-color);
	 
}
/***********social ***********/
 .shadow-button{
 	box-shadow: 0px 10px 20px 0px rgba(123, 123, 123, 0.1);
	padding:10px 25px;
	border-radius: 10px;
 
 }


.link a, .link-white a, .certi-btn {
	color: var(--white);
	font-size: 14px; 
	padding: 6px 15px;
	font-style: normal;
	display: inline-block;
	position: relative;
	margin:0;
	background-color:var(--primary-color);
	border-radius: 50px;
	    font-weight: 500;
}

.link a:hover, .certi-btn:hover { 		 
	background-color:var(--secondary-color); 
} 
.link-white a {
	background-color:var(--white);
	color: var(--primary-color);
	border:1px solid var(--grey);
}
.link-white a:hover{
	border:1px solid var(--secondary-color); 
 
	color:var(--white);
}
.caps{
	text-transform:uppercase;
}
 
.heading, .subheading{
	line-height:normal;
	color:var(--black);
	 
}
.heading{
	font-size:56px;
	line-height:normal;
	font-weight:var(--font-weight-bold);
}

.subheading {
	font-size: 30px;
	font-weight:var(--font-weight-bold);
}
 
.subtitle{
	font-size: 22px;
	font-weight:normal;
	line-height:normal;
}
.bold, strong{
	font-family:var(--heading-font-bold);
}

.capsule-title{
	color: var(--black);
	font-size: 14px; 
	padding: 6px  25px;
	font-style: normal;
	display: inline-block;
	position: relative;
	margin:0;
	background-color:var(--tertiary-color);
	border-radius: 50px;
}

 

/****************************/
  
.pos-relative{
	position:relative;
}
   
.hero-banner{
	width:100%;
	height:100vh;
	display: flex;
	justify-content: center;
	align-items: center;
	color:var(--white);
	background-repeat: no-repeat;
	background-position: center bottom;
	-moz-background-size: cover;
	-webkit-background-size: cover;
	-o-background-size: cover;
	background-size: cover;
	background-image: url(../images/backgrounds/bg-pattern.png);
	position: relative;
	isolation: isolate;
}
.hero-banner:after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	background-repeat: no-repeat;
	background-position: center bottom;
	-moz-background-size: cover;
	-webkit-background-size: cover;
	-o-background-size: cover;
	background-size: contain;
	background-image: url(../images/backgrounds/banner-bg-btm.webp);
	height: 177px;
}

.hero-banner .row-flex {
	position: relative;
	z-index: 1;
}

.banner-content{
	flex:0 0 50%;
	color:var(--white);
}


.banner-content h2{
	font-size:22px;
	line-height:22px;
	margin:0 0 20px 0;
	 
}
 

.banner-content h1{
	font-size:45px;
	line-height:normal;
	font-weight:var(--font-weight-bold);
	 
}
 
.banner-content .link a {
	color: var(--white);
	border:1px solid var(--white);
	border-radius: 5px;
	background-color:transparent;
}

 
.banner-content .link a:hover { 		 
		border:1px solid var(--tertiary-color); 
		background-color:var(--tertiary-color);
		color:var(--primary-color) !important; 
}
 
 .banner-right{
	flex: 0 0 50%;
    border: 1px solid #72caff;
    padding: 30px;
    border-radius: 10px;
 }
 
 .banner-right img{
	width:100%;
	display:block;
	animation: sOrbit 8s linear infinite;
	 
 }
 
 @keyframes sOrbit {
  from {
    transform: rotate(360deg) translateX(-10px) rotate(-360deg);
  }
  to {
    transform: rotate(0deg) translateX(-10px) rotate(0deg);
  }
}

@keyframes uOrbit {
  from {
    transform: rotate(0deg) translateX(9px) rotate(0deg);
  }
  to {
    transform: rotate(360deg) translateX(9px) rotate(-360deg);
  }
}


 	
/****************************/

.elements-wrap{
	position:relative;
	margin-top:-130px;
	position:relative;
	background-image: linear-gradient(to left, #2eb2ff, #208bcd, #1c77ad);
	padding:20px;
	overflow:hidden;
	border-radius: 10px;
}
 
.element{
	border-radius: 10px;
	padding:40px;
	text-align:center;
	font-size:20px;
	overflow:hidden;
	color:var(--white);
	outline: 2px dashed rgba(255, 255, 255, 0.3);
    outline-offset: -10px;
	background-image: linear-gradient(to top, var(--primary-color), var(--secondary-color));
	box-shadow: 0px 4px 10px 4px rgba(123, 123, 123, 0.1); 
	-webkit-transition: all 300ms ease-in-out;
	-moz-transition: all 300ms ease-in-out;
	transition: all 300ms ease-in-out;
	
} 
.element p:first-child{
	margin:0;
}
.element h2{
	font-size:20px;
	line-height:normal;
	font-weight:var(--font-weight-bold);
	margin:0;
}
.element:hover{
	background-image: linear-gradient(to bottom, var(--primary-color), var(--secondary-color));
	color:var(--white)!important;
	margin-top:-10px;	
	 
}
.element  img{
	 filter: brightness(1500%);
}
.element:hover img{
	 filter: brightness(10000000%);
}

/**************************/
.price-box:before{
	width:20px;
	height:25px;
	position:absolute;
	left:40px;
	top:0;
	content:'';
	z-index:2;
	background-image: url(../images/icons/ribbon.svg);
	background-repeat: no-repeat;
	background-position: center top;
	background-size:100%;
}
.price-box{
	box-shadow: 0px 4px 10px 4px rgba(123, 123, 123, 0.1);
	border-radius: 10px;
	padding:0px;
	background-color:var(--white);
	position:relative;
	border-bottom: 5px solid var(--primary-color);
}
.price-box-cnt{padding: 30px 20px 20px;}
.price-box .head{
	justify-content: flex-end;
    display: flex;
    width: 100%;
 
}
.price-box h2{
	font-size:20px;
	line-height:normal;
	font-weight:var(--font-weight-bold);
	margin:0 0 25px 0;
	padding:0 0 20px 0;
	border-bottom:1px solid var(--grey);
	}
.price-des{}
.price-box-img{ position: relative;}

.price-des ul{
	line-height:normal;
	list-style:none;
	padding:0;
	margin:0;
}
.price-des ul li{
	padding:10px 0;
	line-height:normal;
	font-size:16px;
	line-height:16px;
	margin:0;
}


.price-des ul li i{
	margin-right:20px;
	font-size:16px;
}

.botton-row{
	display:flex;
	padding:20px 0;
	gap:5px;
}

/**********************collapse****************************/

.v-tab-wrap{
	border-radius: 10px;
	overflow:hidden;
	padding:40px;
	background-image: linear-gradient(to bottom right, #0b3c5a, #0d5d8f);
	}



 .quote-bx-blue,  .quote-bx-white{
	 
	display:flex;
	flex-wrap: wrap; 
	flex-direction:column;
	position:relative; 
	border-radius: 10px;
	position:relative;
	padding:100px 40px 40px 40px !important;
	color:var(--white);
	background-image: linear-gradient(to bottom right, #0d3d5b, #166393);
	box-shadow: 0px 4px 10px 4px rgba(123, 123, 123, 0.1); 
	}

 .quote-bx-white{
 	color:var(--black);
	background-image:none;
	background-color:var(--white);
	}

 .quote-bx-blue:before,  .quote-bx-white:before{
	width:30px;
	height:30px;
	position:absolute;
	content:'';
	left:40px;
	top:40px;
	background-image: url(../images/icons/quote-icon.svg); 
 }


.name{
	font-size:16px;
	font-weight:var(--font-weight-bold);
	margin:0;
}



/***************************************************/


 /*******categories grid***********/
 
 
.brands-listing{
 
	} 
.brands-listing ul{ 
	display: flex	;
		flex-wrap: wrap;
		gap: 25px 2%;
		list-style: none;
		margin: 0;
		padding: 0;
	}
	
.brands-listing ul li{ 
	flex: 0 0 15%;
    list-style: none;
    margin: 0;
    padding: 0;
    box-shadow: 0px 4px 10px 4px rgba(123, 123, 123, 0.1);
    border-radius: 10px;
    text-align: center;
	line-height: 0px;
	}
	
.brands-listing ul li img{   
	max-width:100%;
	border-radius: 10px;
	
 
	-webkit-transition: all 300ms ease-in-out;
	-moz-transition: all 300ms ease-in-out;
	transition: all 300ms ease-in-out;
  }
  .brands-listing ul li a{ display: block;}
 
.brands-listing ul li:hover img{
	filter: grayscale(100%);
  }
  

/****************SCROLLING TEXT***************/
.brand-logos{
	 
}
 
.brand-logos img{
	border-radius: 100px;
	height:70px;
	box-shadow: 0px 4px 10px 4px rgba(123, 123, 123, 0.1);
	-webkit-transition: all .5s;
    transition: all .5s;
	}
 
.brand-logos div{
	padding:20px;
}	
 
.brand-logos img:hover {
     -webkit-transform: scale(1.09, 1.09);
    transform: scale(1.09, 1.09);
    -webkit-filter: brightness(70%);
    -webkit-transition: all 1s ease;
    -moz-transition: all 1s ease;
    -o-transition: all 1s ease;
    -ms-transition: all 1s ease;
    transition: all 1s ease;
	/*-webkit-filter: brightness(70%);*/
	filter: grayscale(60%);
	-webkit-filter: grayscale(60%);
}

.over-layer{
	position:relative;
}
.over-layer:before{
	width:40%;
	height:100%;
	position:absolute;
	left:0;
	top:0;
	content:'';
	z-index:2;
	background-image: linear-gradient(to left, rgba(255,255,255,0), rgba(255,255,255,1));
}
.over-layer:after{
	width:40%;
	height:100%;
	position:absolute;
	right:0;
	top:0;
	content:'';
	z-index:2;
	background-image: linear-gradient(to right, rgba(255,255,255,0), rgba(255,255,255,1));
}
/****************SCROLLING TEXT***************/

 .scrolling-text-wrap {
  width:100%;
  overflow-x:hidden;
 }

.scroll {
  white-space: nowrap;
  margin: 0;
}

.scroll div {
  display: flex;
  /*gap: 2em;  */  
}

.scroll h2 {
  font-size: 70px;
  line-height: 70px;
  color: var(--primary-color);
  -webkit-text-stroke: 1px #698398;
  font-family: var(--heading-font-bold);
  margin:0;
}
.scroll h2 span{
	width:6px;
	height:6px;
	background-color:var(--tertiary-color);
	outline-offset: 4px;
	outline:1px solid var(--tertiary-color);
	border-radius: 50%;
	display:inline-block;
	position:relative;
	margin:0 25px;
	vertical-align:middle
 
	}
.RightToLeft {
  animation: RightToLeft 20s infinite linear;

  
}

@keyframes  RightToLeft {
  from {
    transform: translateX(0%);
  }
  to {
    transform: translateX(-50%);
  }
}

.LeftToRight {
  animation: LeftToRight 20s infinite linear;
}

@keyframes  LeftToRight {
  from {
    transform: translateX(-50%);
  }
  to {
    transform: translateX(0%);
  }
}

  
/*******funfacts***********/


.funfacts, .funfacts ul{
	width:100%;
	display: flex;
	flex-wrap: wrap;
	margin:0;
	padding:0;
	position:relative;
}
.funfacts{
	background-image: linear-gradient(to top, var(--primary-color), var(--secondary-color));
	padding:70px;
	border-radius: 20px;
	overflow:hidden;
	color:var(--white);
}
.funfacts-head{
	font-size:22px;
	font-family:var(--heading-font-bold);
	line-height:normal;
	margin:-30px 0 0 -20px;
	position:relative;
}
.funfacts-head span{
	display:inline-block;
	position:relative;
	padding:0 100px 0 0;
}
.funfacts-head span:after{
	width:80px;
	height:1px;
	position:absolute;
	top:50%;
	right:0;
	content:'';
	background:var(--white);
}
.funfacts ul{ 
	list-style:none;
	margin:0;
	font-size:16px;
  
}

.funfacts ul li{
	flex: 0 0 100%;
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap; 
	margin:0;
	padding:20px 0;
	text-align:center;
	border-bottom:1px solid var(--white);
}
 .funfacts ul li:last-child{
 	border-bottom:0;
	}	
    
 .facts{
 	text-align:left;
 }
 .facts h2{
	font-size:60px;
	line-height:60px;
	margin:0;
	font-family:var(--heading-font-bold);
 
}
 
 .facts p{
	margin:0;
	line-height:normal;
	font-size:17px;
	font-family:var(--heading-font-semibold);
	text-transform:uppercase;
}

.fun-icon img{
	vertical-align:middle;
	width:60px;
}
.exam-dump-wrap{
    padding: 0px;
    margin: 0px;
    display: flex;
    flex-wrap: wrap;
    gap: 23px 2%;
}
.exam-dump-wrap li{
    list-style: none;    
    border-radius: 8px;
    /*flex: 0 0 23.5%;
	border: 1px solid #e2e2e2;
	*/
	flex: 0 0 14.99%;
    text-align: center;
    background-color: var(--white);
	overflow: hidden;
	box-shadow: 0px 4px 10px 4px rgba(123, 123, 123, 0.1);
}
.exam-dump-wrap li a {
    display: block;
    line-height: 0;
}
.exam-dump-wrap li a img{
    max-width: 100%;
}
.exm-dmp-cnt{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    /*border-top: 1px solid #e2e2e2;
	background-color: #f3f3f3;*/
    line-height: normal;
	-webkit-transition: all 300ms ease-in-out;
	-moz-transition: all 300ms ease-in-out;
	transition: all 300ms ease-in-out;
	
}
.exm-dmp-cnt h6{
    margin-bottom: 0px;
    font-size: 15px;
    -webkit-transition: all 300ms ease-in-out;
    -moz-transition: all 300ms ease-in-out;
    transition: all 300ms ease-in-out;
    color: var(--primary-color);
}
.exm-dmp-cnt i{
    rotate: 328deg;
    -webkit-transition: all 300ms ease-in-out;
    -moz-transition: all 300ms ease-in-out;
    transition: all 300ms ease-in-out;
    color: var(--quaternary-color);
}
.exam-dump-wrap li a:hover .exm-dmp-cnt{    background-color: var(--primary-color);}
.exam-dump-wrap li a:hover .exm-dmp-cnt h6{ color: var(--white);}
.exam-dump-wrap li a:hover .exm-dmp-cnt i{ color: var(--white); rotate: 1deg;}
.exam-dump-dtl-head-wrap{
    display: flex;
    border: 1px solid #e2e2e2;
    margin-bottom: 30px;
    border-radius: 8px;
}
.exam-dump-head-left{
    flex: 0 0 225px;
    text-align: center;
	display: flex;
		align-items: center;
		justify-content: center;
}
.exam-dump-head-left img{
    max-width: 100%;
}
.exam-dump-head-right{
   
    border-left: 1px solid #e2e2e2;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.exam-dump-head-right h2{
    font-weight: 600;
    margin-bottom: 12px;
}
.exam-dump-head-right h5{
    margin-bottom: 0px;
    font-size: 18px;
    color: #686868;
}

 /*********milestone*************/

   
/*****************display-style**********/
 
.date{
	font-size:14px;
	color:var(--grey-dark);
	text-transform:uppercase;
	word-spacing:2px;
	margin:0 0 15px 0;
	line-height:normal;
	 
}
  
.display-style{ 
     width: 100%;
     overflow: hidden;	 
	 position:relative;
	 border-radius: 10px;
	 -webkit-transition: all 300ms ease-in-out;
     -moz-transition: all 300ms ease-in-out;
     transition: all 300ms ease-in-out;
	 box-shadow: 0px 4px 10px 4px rgba(123, 123, 123, 0.1); 
}
.display-style img{ 
     width: 100%;
	 display:block;
}

.display-style-cont{
     width: 100%;	  
	 display: flex;
	 flex-wrap: wrap;
	 justify-content: space-between;
	 padding: 40px 20px;     
     color: var(--black);
	 font-size:17px;
     -webkit-transition: all 300ms ease-in-out;
     -moz-transition: all 300ms ease-in-out;
     transition: all 300ms ease-in-out;
 
}
 
.display-style-cont h2{
	font-size:20px;
	line-height:normal;
	margin:0 0 20px 0;
	font-weight:var(--font-weight-bold);
	 
}
.display-style-cont p{
	margin:0;
}
.display-style-footer{
	width: 100%;
    display: flex;
    flex-wrap: wrap; 
	justify-content: space-between;
	 padding: 20px 20px;	 
	 border-top:  1px solid #ccc;   
}
.atrow-bottom{ 
	height:40px;
	width:40px;
	display: inline-block;	 
	z-index:2;
	background-image: url(../images/icons/arrow.svg);
	background-repeat: no-repeat;
	background-position: center center;
	background-size:50%;
	-webkit-transition: all 300ms ease-in-out;
	-moz-transition: all 300ms ease-in-out;
	transition: all 300ms ease-in-out;
	 border-radius: 50%;
	 border:1px solid #ccc;
 
	  
} 
 
.atrow-bottom:hover{
	transform: rotate(-0deg);	 
	}

/************************************/


 /*****************tab-conetne*********/
 .experties{
 	background-image: url(../images/backgrounds/bg1.jpg);
	border-radius: 20px;
	overflow:hidden;
	background-position: center  center;
	-moz-background-size: cover;
	-webkit-background-size: cover;
	-o-background-size: cover;
	background-size: cover;
 }
 .grid-row{
 	flex: 0 0 100%;
	display: flex;
	flex-wrap: wrap;
	position:relative;
	border-left:1px solid var(--white);	
 }
 .grid-row:before,  .grid-row:after{
 	width: 1px;
	height:100%;
	position:absolute;
	top:0;
	left:50%;
	background-color:var(--white);
	content:'';
	 
 } 
 .grid-row:after{
 	width: 100%;
	height:1px;
	top:50%;
	left:0;
 }
.grid-row-bx{
	flex: 0 0 50%;
	aspect-ratio: 1 / .8;
	padding:20px;
	color:var(--white);
	display:flex;
	flex-direction:column;
	position:relative;
	justify-content: space-between;
	-webkit-transition: all 300ms ease-in-out;
	-moz-transition: all 300ms ease-in-out;
	transition: all 300ms ease-in-out;
 
}
.grid-row-bx:hover{
	padding:25px;
}
.grid-row-bx:after{
	width:100%;
	height:0;
	position:absolute;
	left:0;
	bottom:0;
	content:'';
	background-image: linear-gradient(to top, var(--primary-color), var(--secondary-color));
	-webkit-transition: all 300ms ease-in-out;
	-moz-transition: all 300ms ease-in-out;
	transition: all 300ms ease-in-out;
 
}
.grid-row-bx:hover:after{
	height:100%;
	top:0;
}
.icon-row{
	position:relative;
	z-index:2;
}
  .icon-row img{
	width:60px;
}
.grid-row-bx-footer{
		align-items: center;
		justify-content: space-between;
	    display:flex;
		flex-wrap: wrap;
		position:relative;
	    z-index:2;
	 
}	
.grid-row-bx-footer h2{
	font-size:24px;
	margin:0;
	line-height:normal;
	font-family:var(--heading-font-semibold);
} 	
/***********news style*****/
  

.highlight{
	background-color:var(--tertiary-color);
	color:var(--black);
	overflow:hidden;
	padding:30px;
	border-radius: 10px;
	margin-bottom:20px;
 
} 
 
/*****************blogs styles**********/

.aside{
	width:25%;
	padding-left:20px;
}
 .summary{
	width:75%;
}
.aside-inner{
	box-shadow: 0px 4px 10px 4px rgba(123, 123, 123, 0.1); 
	padding:25px;
	border-radius: 10px;
	flex-direction:column;
	width: 100%;
    display: flex;
    flex-wrap: wrap;
	margin-bottom:30px;
 
	 
}

.aside-inner .subheading{
	color:var(--primary-color);
}
	
.listing-topics, .listing-topics ul{
	margin:0;
	padding:0;
	list-style:none;
	}
	
.listing-topics ul li{
	padding: 0 0 10px;
    margin: 0 0 8px;
    font-size: 16px;
    line-height: 22px;
    border-bottom: 1px solid #e5e5e5;
}
.listing-topics ul li a{
	color:var(--body-color); 
}
.listing-topics ul li a:hover{
	color:var(--primary-color); 
}
.widget-wrap{
	width: 100%;
    display: flex;
    flex-wrap: wrap;
	justify-content: space-between;
	padding-bottom:15px;
	border-bottom:1px solid var(--grey);
	margin-bottom:15px;
	
	}
	
.widget-img{
	width: 30%;
	}		
.widget-img img{
	width: 100%;
	display:block;
	border-radius: 10px;
	}	
	
.widget-content{
	width: 65%; 
	}		

.widget-content .date{
	font-size:12px;
	margin:0;
}	
.widget-content h3{
	color:var(--primary-color);
	font-size:17px;
	line-height:24px;
	margin: 0 0 10px 0;
	}	
	
	
/*--------------------------------scroll-------------*/

.sideScroll-wrap{
	 background-color:var(--primary-color);
	 width:100%;
	 display:flex;
	 overflow:hidden;
 }

.sideScroll {
  
  white-space: nowrap;
  position: relative;
  color: white;
  display: inline-block;
  animation: sideScroll 20s linear infinite;
  padding:15px 0;
 
}

.sideScroll p{
  font-size: 22px;
  line-height:22px;
  color: var(--white);
  font-weight: 500;
  display: flex;
  align-items: center;
  margin:0;
}
.sideScroll p .sep {
	font-size: 22px;
	line-height:22px;
	display:inline-block;
	width:40px;
	text-align:center;
}

@keyframes sideScroll {
  100% {
    transform: translateX(-2000px);
  }
}

.sep{font-size: 70px;line-height: 59px;font-weight: 300;color: var(--white);width: 30px;/* height: 5px; */overflow: hidden;margin-top: -5px;}

.sidescroll-row{
    overflow: hidden;
    background-color: var(--dark-grey);
    padding: 1px 0;
}

/**********/


 .rotating-circle{
	width:200px;
	height:200px;
	display:inline-block;
	position:absolute;
	left:-100px;
	top:100px;
	z-index:2;
	border-radius:50%;
 
}
.rotating-circle:after {
	width:100%;
	height:100%;
	position:absolute;
	left:0;
	top:0;
	content:'';
	background-image:url(../images/rotation-text.png);
	background-repeat: no-repeat;
	background-position: center  center;
	-moz-background-size: cover;
	-webkit-background-size: cover;
	-o-background-size: cover;
	background-size: cover;
	-webkit-animation: rotation 20s infinite linear;

}
.rotating-circle:before{
	width:100%;
	height:100%;
	position:absolute;
	left:0;
	top:0;
	content:'';
	z-index:6;
	background-image:url(../images/b2b.png);
	background-repeat: no-repeat;
	background-position: center  center;
	border-radius:50%;
	/*-webkit-animation: rotation2 20s infinite linear;*/
	background-size:50%;
}
@-webkit-keyframes rotation {
		from {
				-webkit-transform: rotate(0deg);
		}
		to {
				-webkit-transform: rotate(359deg);
		}
}

@-webkit-keyframes rotation2 {
		from {
				-webkit-transform: rotate(0deg);
		}
		to {
				-webkit-transform: rotate(-359deg);
		}
}

 
  
 /**********************news**********************/
  
 /**********************news**********************/
 .boxy-style{
	 border-radius:20px;
	 padding:50px;
	 /*box-shadow: 0px 10px 20px 20px rgba(123, 123, 123, 0.1);*/
	 box-shadow: 0px 4px 10px 4px rgba(123, 123, 123, 0.1);  
 }
  .shadow{
	  border-radius:20px;
	  overflow:hidden;
	  box-shadow: 0px 4px 10px 4px rgba(123, 123, 123, 0.1);  
 }
.iconic{
	width:100%;
	display:block;
	position:relative;
	padding:0 0 0 120px;
	 
}
.iconic:last-child{
	border-bottom:0;
}
.iconic h2{
	font-size: 22px;
	font-weight:var(--font-weight-bold);
	margin:0 0 15px 0;
	line-height:30px;
 
 
}
.webicon{	
	display: flex;
	justify-content: center;
	align-items: center;
	position:absolute;
	left:0;
	top:-5px;	
	width:80px;
	height:80px;
	text-align:center;
	color:var(--white);
	font-size:30px;
	vertical-align:middle;
	margin:0;
	padding:12px;
	border-radius:50%;
	background-image: linear-gradient(to bottom right, #3297d5, #0b3c5a); 
	-webkit-transition: all 300ms ease-in-out;
	-moz-transition: all 300ms ease-in-out;
	transition: all 300ms ease-in-out;
}
.webicon img{
	display:block;
	width:100%;
}
.webicon:hover{
	background-color:var(--tertiary-color);
}
.iconic p:last-child{
	margin:0;
	 
}  
/**********************news**********************/
  .bx-shadow{
	background-color:var(--white);	 
	overflow:hidden;
 	box-shadow: 0px 10px 20px 0px rgba(0, 0, 0, 0.1); 
}

 
/*********whatsa app*/ 
.float{
	position:fixed;
	width:60px;
	height:60px;
	bottom:40px;
	line-height:60px;
	right:40px;
	background-color:#25d366;
	color:#FFF;
	border-radius:50%;
	text-align:center;
    font-size:30px;
	/*box-shadow: 2px 2px 3px #999;*/
    z-index:100;
}

.float:hover{
	color:#FFF;transform: rotate(0.12turn);
} 
 
 
 
/*************** footer CSS ***************/
 
.footer {
	padding:150px 0 0 0;
	margin:0;
	background-image: url(../images/backgrounds/footer-bg.jpg);	
	background-repeat: no-repeat;
	background-position: center top;
	-moz-background-size: cover;
	-webkit-background-size: cover;
	-o-background-size: cover;
	background-size: cover; 
	color:var(--white);
	font-size:15px;
 
}

.footer a , .footer-col a {
	color:var(--white);
}
.footer a:hover, .footer-col a:hover {
	color:rgba(255, 255 ,255, 0.5);
}
.footer-left{
	width:30%;
}
.footer-col {
 	padding:20px;

}
 
.footer-col h2{
	font-size:20px;
	line-height:normal;
	padding:0 0 10px 0;
	margin:0 0 10px 0;
	position:relative;
	font-weight:var(--font-weight-medium);
}

 

.footer-col ul, .footer-col ul li{
	margin:0;
	padding:0;
	list-style:none;
}
.footer-col ul li{
	padding:5px 0;
	line-height:normal;
	}

.footer-bottom {	 
    width: 100%;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
	padding:30px 0 0 0 ;
	margin-top:20px;
	color:var(--white);
}
.footer-bottom-border{
	border-top:1px solid rgba(255, 255, 255, 0.3);
	width: 100%;
    display: flex;
    flex-wrap: wrap;  
	justify-content: space-between;
	padding:20px 0;
	}
.footer-bottom a {	 
	color:var(--white);
}
 .footer-bottom a:hover {	 
	color:rgba(255, 255 ,255, 0.8);
}
 
.copy {
	line-height:normal;
	padding:10px 0;
}
 
.footer-logo{
	width:250px;
}
 
 
 
.social {
 	padding:10px 0;
	display:flex;
	vertical-align:middle;
 
}

.social a  {
	width:40px;
	height:40px;
	line-height:40px;
	border-radius: 50%;
	text-align:center;
	color:var(--white);
	font-size:16px;
	margin:5px; 
	display:inline-block;
	text-align:center;
	border:1px solid rgba(255, 255, 255 ,0.5);
 
	 
}

.social a:hover  {
	color: var(--white);
	background-color:var(--primary-color);
    border:1px solid var(--primary-color);
 
}
 
.address-box{
	background-color:var(--tertiary-color);
	color:var(--black);
	overflow:hidden;
	padding:30px;
	border-radius: 10px;
	color:var(--white);
} 
 .address-box a{
	color:var(--black);
} 
 .address-box a:hover  {
	color:var(--secondary-color);
 }
  .address-box .add i{
	background-color:var(--secondary-color);
	color:var(--white);
	 
 
	
}
.add{
	width:100%;
	position:relative;
	padding:0 0 0 40px;
	min-height:30px;
	margin-bottom:10px;
	font-size:17px; 
	vertical-align:top;
	line-height:30px;
	color:var(--black);
	 
}
.add p{
	padding:0 25px;
	
}
.add i{
	width:40px;
	height:40px;
	line-height:40px;
	background-color:var(--grey-dark);
	border-radius: 50%;
	color:var(--white);
	font-size:14px;
	margin:0;
	position:absolute;
	left:0;
	top:0;
	text-align:center;
 
	
}
 .google-map{
     overflow: hidden;
     width: 100%;
	 height:450px;
	 margin:0;
	 padding:0;
	 outline:none;
	 border:0;
}

.ext{
	display:inline-block;
	padding-top:10px;
}
/******************************/
 


 
 
ul.list {
	margin: 0;
	padding: 0;
	margin-bottom: 30px;
}

ul.list li {
	list-style: none;
	padding: 2px 7px 5px 30px;
	line-height: normal;
	position: relative;
}

ul.list li:before {
	/*content: "\f111";*/
	content: "\f138";
	position: absolute;
	top: 6px;
	left: 0;
	font-family: "FontAwesome";
	color: var(--primary-color);
	font-size: 16px;
}
ul.list li a{ color: var(--secondary-color);}
ul.list li a:hover{ color: var(--quaternary-color);}
 

  
/*****************************/



.table-div { 
	overflow-x:auto;
	margin-bottom: 50px;
	}
.table-div td {
  text-transform: uppercase;
}
.table-div h4{
	font-size:20px;
	color:var(--secondary-color);
	font-family:var(--heading-font);
	text-transform:uppercase;
}
table { 
	min-width:100%;

	border-collapse: collapse; 
	
	}
	
/*********************************************/	
	
	.certificate{
		width: 100%;
		display: flex;
		flex-wrap: wrap; 
		text-align:center;
		justify-content: center;
		flex-direction:column;
		background-color:var(--white);
		padding:15px;
		border-radius: 10px;
		-webkit-transition: all 300ms ease-in-out;
		-moz-transition: all 300ms ease-in-out;
		transition: all 300ms ease-in-out;
	}
	.certificate:hover{
		margin-left:10px;
		 
	}	
	.certificate h5{
		margin:15px 0 10px 0;
		text-transform:uppercase;
		color:#A1A1A1;
		font-size:14px;
	}	
	
	.certificate h3{
		color:var(--black);
		font-size:20px;
		line-height:normal;
		margin:0 0 10px 0;
	}	
	.certificate h2{
		color:var(--black);
		font-size:24px;
		line-height:normal;
		margin:0 0 10px 0;
		font-weight:var(--font-weight-bold);
	}		
	.certificate h2 span{
		color:#F80000;
		 
	}	

.certificate img{
	display:block;
	width:100%;
	}
	
.certificate .link {}	
.certificate .link a {
	font-size:14px;
	background-color:transparent;
	padding:0 30px 0 0;
	color:var(--black);
	background-image: url(../images/icons/arrow.svg);
	background-repeat: no-repeat;
	background-position: right center;
	background-size:20px;
	font-weight:var(--font-weight-medium);
}		
.certificate .link a:hover {
	 
	padding:0 40px 0 0;
	color:var(--primary-color);
	 
}		
	
/* Zebra striping */
tr:nth-of-type(odd) { 
	background: #eee; 
	}

th { 
	background:var(--secondary-color);
	color: var(--white);
	
	}

td, th { 
	padding: 8px 15px !important; 
	border: 1px solid #ccc; 
	text-align: left; 
	font-size: 18px;
	}
 
/************************/
.table-wrap{
	width:100%;
	position:relative;
	display:flex;
	overflow-x:scroll;
} 
/******************************team-style*****************/

 
 

/*************** INNER BANNER ***************/
.banner {
	width: 100%;
	height:40vh;
	overflow:hidden;
	display: flex;
	align-items: flex-end;
	
	flex-wrap: wrap;
	padding-bottom:25px;
	background-repeat: no-repeat;
	background-position: center center;
	-moz-background-size: cover;
	-webkit-background-size: cover;
	-o-background-size: cover;
	background-size: cover;
	background-image: url(../images/backgrounds/bg-pattern.png);
}
.banner:after{
	/* width: 100%;
	height:100%;
	position:absolute;
	left:0;
	top:0;
	content:'';
	z-index:1;
	background-image: linear-gradient(to top, rgba(0,0,0,0), rgba(0,0,0,1));
	opacity:0.3; */
} 
.banner h2 {
	color: var(--tertiary-color);
	font-weight:var(--font-weight-bold);	 
	font-size:40px;
	line-height:40px;
	margin:0;
 }
.banner .dot-animation{ z-index: 0;}
.banner .container{ position: relative; z-index: 1;}

/*****************************/

 

.breadcrumb {   
    display: flex;
	color:var(--white);
	padding:20px 0; 
	flex-direction:column;
	position:relative;
	z-index:2;
	 
	
}
 

.breadcrumb ul {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    margin: 0;
    padding:0;
	 
 
}
.breadcrumb li {
    margin: 0;
	font-size:12px;
	text-transform:uppercase;
}    
.breadcrumb li:not(:last-child)::after {
    display: inline-block;
    margin: 0 15px;
    content: " → ";
 
}
 .breadcrumb a{
    color:var(--white);	
}
 .breadcrumb a:hover{
  color:rgba(255, 255, 255, 0.2);
 
}
 .breadcrumb  span{
 	color:var(--secondary-color);	
}

 
/*.banner:after{ position: absolute; content: ''; width: 100%; height: 100%; left: 0px; top: 0px; background-color:#000; opacity: .5; }*/
 

/*************** JARALLAX ***************/
.jarallax, .cover {
	position: relative;
	background-repeat: no-repeat;
	background-position: center center;
	-moz-background-size: cover;
	-webkit-background-size: cover;
	-o-background-size: cover;
	background-size: cover;
} 

 
.bg1 {
	background-image: url(../images/backgrounds/bg1.jpg);
	color:var(--white);
}

 
.bg2 {
	background-image: url(../images/backgrounds/bg2.svg);
	 
 
}

.bg3 {
	background-image: url(../images/backgrounds/bg3.svg);
	position:relative;
	 
}
 
/*********file chosen style**************/

input.file{
    display: none;
	 
	}


.fa-upload{
	margin:0 15px 0 0;
}
.custom-file-upload {
    border: 0;
    display: inline-block;
    padding: 14px 20px;
    color: #fff;
    cursor: pointer;
    background-color: var(--primary-color);
    /*border-radius: 6px;*/
    border: 0;border-radius: 6px;

}

.custom-file-upload:hover{
	background-color: var(--secondary-color);
	}
.select-box {
    appearance: none;
    -webkit-appearance: none;
    background-image: url(../images/icons/icon5.svg);
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 14px;
}

/*********call back rquest**************/

.call-back-holder{
	width:100%;
	display:flex;
	padding-bottom:10px;
	gap:0 10px;
	border-bottom:1px solid rgba(255, 255, 255, 0.2);
	 
}

/**********forms**************/

form {
	margin: 0;
	padding: 0;
}

*:focus {
	outline: none;
}

.fieldset {
	width: 100%;
	padding:20px 20px;
	border:1px solid #c5c5c5;
	background-color:var(--white);
	display: block;
	border-radius: 5px;
	margin: 0;
	color: var(--body-color);
	font-size: 14px;
 
}

.sendbutton {
	border-radius: 5px;
	color: var(--white);
	font-size: 30px;
	font-family:var(--heading-font-bold);
	border:0;
	background-image: linear-gradient(to top, var(--primary-color), var(--secondary-color));
	padding: 20px 30px;
	font-style: normal;
	display: inline-block;
	position: relative;
	margin:0;
	 
}

.sendbutton:hover {	
	 
background-image: linear-gradient(to bottom, var(--primary-color), var(--secondary-color));
}

.select-box {
	appearance: none;
	-webkit-appearance: none;
	background-image: url(../images/icons/icon5.svg);
	background-repeat: no-repeat;
	background-position: right 15px center;
	background-size: 14px;
}
 

::-webkit-input-placeholder {
	color:var(--body-color);
}

:-moz-placeholder {
	/* Firefox 18- */
	color: var(--body-color);
}

::-moz-placeholder {
	/* Firefox 19+ */
	color: var(--body-color);
}

:-ms-input-placeholder {
	color: var(--body-color);
}
/**********/
 .field-secondary{
 	width: 100%;
	padding:20px 0;
	background-color: none;
	background-color: transparent;
	display: block;
	border: 0;
	box-shadow: 0;
	margin: 0;
	color: var(--white) !important;
	font-size: 16px;
 
 }

.call-back-holder ::-webkit-input-placeholder {
	color:var(--white);
}

.call-back-holder :-moz-placeholder {
	/* Firefox 18- */
	color: var(--white);
}

.call-back-holder ::-moz-placeholder {
	/* Firefox 19+ */
	color: var(--white);
}

.call-back-holder :-ms-input-placeholder {
	color: var(--white);
}
/*************** backToTop *************/
 .progress-wrap {
     position: fixed;
     right: 10px;
     bottom: 10px;
     height: 45px;
     width: 45px;
     cursor: pointer;
     display: block;
     border-radius: 50px;
    /* box-shadow: inset 0 0 0 2px rgb(0 0 0 / 100%);
    */
     z-index: 99;
     opacity: 0;
     visibility: hidden;
     transform: translateY(15px);
     -webkit-transition: all 200ms linear;
     transition: all 200ms linear;
}
 .progress-wrap.active-progress {
     opacity: 1;
     visibility: visible;
     transform: translateY(0);
}
 .progress-wrap::after {
     position: absolute;
     content: "\f062";
     font-family: 'Font Awesome 5 Free';
     font-weight: 900;
     text-align: center;
     line-height: 45px;
     font-size: 20px;
     color:var(--secondary-color);
     left: 0;
     top: 0;
     height: 45px;
     width: 45px;
     cursor: pointer;
     display: block;
     z-index: 1;
     -webkit-transition: all 200ms linear;
     transition: all 200ms linear;
}
 .progress-wrap svg path {
     fill: none;
}
 .progress-wrap svg.progress-circle path {
     stroke: var(--secondary-color);
     stroke-width: 4;
     box-sizing:border-box;
     -webkit-transition: all 200ms linear;
     transition: all 200ms linear;
}
.blog-dtl-inn-wrap{
    display: flex;
    gap: 2%;
}
.blog-dtl-inn-left{
    flex: 0 0 28%;
}
.blog-dtl-inn-left .hover-effect{ position: sticky; top: 75px;}
.blog-dtl-inn-right{
    flex: 0 0 70%;
}


.blog-dtl-inn-right h2{
    margin-top: 15px;
    color: var(--primary-color);
    font-size: 26px;
	font-weight: 600;
	margin-bottom: 15px;
}
.bnr-btm-logo-form-wrap{
    display: flex;
    flex-wrap: wrap;
    gap: 4%;
    padding-top: 50px;
    align-items: flex-start;
}
.bnr-btm-left{
    flex:0 0 47%;
    display: flex;
    flex-wrap: wrap;
    gap: 15px 2%;
}
.bnr-btm-logos{
    flex: 0 0 23.5%;
    border-radius: 10px;
    line-height: 0px;
    text-align: center;
    box-shadow: 0px 1px 10px rgba(0, 0, 0, .10);
}
.bnr-btm-logos img{
    max-width: 100%;
}
.bnr-btm-right{
    flex: 0 0 49%;
}
.bnr-btm-right h2{
    color: var(--secondary-color);
   font-size: 32px;
    font-weight: 700;
    line-height: normal;
}
.bnr-btm-right h3{
   font-weight: 600;
    font-size: 22px;
    line-height: normal;
    margin-bottom: 5px;
}
.bnr-btm-right h4{
    font-size: 20px;
    line-height: normal;
    margin-bottom: 5px;
}
.bnr-btm-right-form-wrap{
    display: flex;
    align-items: flex-end;
    gap: 1%;
}
.bnr-btm-form-col{
    flex: 0 0 34%;
}
.bnr-btm-form-col label{
    font-size: 15px;
    margin-bottom: 4px;
    display: block;
}
.bnr-btm-form-col .fieldset{
    padding: 10px;
    height: 45px;
    font-size: 14px;
}
.bnr-btm-form-btn .sendbutton{
    height: 46px;
    padding: 0 20px;
    font-size: 18px;
}
.bnr-form-bg{
    background-color: #e2f1f9;
    padding: 25px;
    border-radius: 10px;
    margin-top: 20px;
}
.bnr-form-bg h5{
    margin-bottom: 8px;
    color: var(--secondary-color);
    font-size: 18px;
}
.vender-pg-top-cnt-wrap{
    display: flex;
    flex-wrap: wrap;
    gap: 2%;
    margin-bottom: 30px;
}
.vender-pg-top{
    flex: 0 0 32%;
    padding: 20px 20px 30px;
    /* background-color: var(--tertiary-color); */
    border-radius: 15px;
    box-shadow: 0px 2px 20px rgba(0, 0, 0, .1);
    background-color: var(--white);
}
.vender-pg-top h5{
    font-size: 23px;
    font-weight: 600;
    color: var(--primary-color);
    line-height: 28px;
    border-bottom: 1px solid #e2e2e2;
    padding-bottom: 15px;
    margin-bottom: 12px;
}
.vender-pg-top p{
    margin-bottom: 0px;
    line-height: 24px;
}
.mb-10{ margin-bottom: 10px;}


.verticaltab-banner ul.list li:before {
    
    color: #0f78b3;}

	.verticaltab-banner .link-btn{ text-decoration: underline; color: var(--quaternary-color);}
.verticaltab-banner .link-btn:hover{  color: var(--white);}
.blog-gap{ gap: 40px 3.5%;}
.blog-gap .four-flex-col {
    flex: 0 0 23.5%;
}
.vendors-banner{
	height: 720px;
	padding-bottom: 0;
	align-items: center;
}
.vndor-bnr-wrap{
    display: flex;
    position: relative;
    z-index: 2;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 50px;
    padding-top: 100px;
}
.vndor-bnr-left{
    flex: 0 0 55%;
}
.vndor-bnr-left .link a{
    background-color: var(--quaternary-color);
    font-size: 16px;
    padding: 14px 25px 14px;
    text-transform: uppercase;
    font-weight: 500;
}
.vndor-bnr-left .link a:hover{ background-color: var(--secondary-color);}
.vndor-bnr-left h3{
    color: var(--white);
    font-size: 46px;
    font-weight: 700;
    line-height: 52px;
}
.vndor-bnr-left h3 span{
    display: block;
    font-weight: 400;
    font-size: 28px;
}
.vndor-bnr-right{
    /* background-color: var(--white); */
    border-radius: 15px;
    line-height: 0;
    flex:0 0 42%;
    text-align: center;
    /* padding: 20px 10px; */
    overflow: hidden;
}
.vndor-bnr-left p{
    color: var(--white);
    font-size: 18px;
    line-height: 30px;
    margin-bottom: 15px;
}
.vendors-detail-page-wrap{
    display: flex;
    flex-wrap: wrap;
    gap: 3%;
    align-items: flex-start;
    margin-top: -56px;
	position: relative;
	z-index: 1;
}
.vendors-detail-page-left{
    flex: 0 0 67%;
}
.vendors-detail-page-right{
    flex: 0 0 30%;
    padding: 30px;
    box-shadow: 0px 2px 22px rgba(0, 0, 0, .1);
    border-radius: 15px;
    background-color: var(--white);
}
.vendors-detail-page-right h2, .blog-dtl-inn-left h2{
    font-weight: 700;
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--secondary-color);
}
.vendors-detail-page-right .link a, .blog-dtl-inn-left .link a{
    font-size: 15px;
    padding: 10px 25px 11px;
    width: 100%;
    text-align: center;
    font-weight: 500;
    text-transform: uppercase;
}
.vendors-detail-page-right p, .blog-dtl-inn-left p{
    margin-bottom: 20px;
}
.vendors-detail-page-right h3{
    font-size: 22px;
    margin-top: 30px;
    font-weight: 700;
}
.vendors-detail-page-right .formgroup{
    margin-bottom: 10px;
}
.vendors-detail-page-right .formgroup .fieldset{
    padding: 14px 15px;
}
.vendors-detail-page-right .formgroup .sendbutton, .side-form .sendbutton{
font-style: normal;
    display: inline-block;
    position: relative;
    margin: 0;
    background-color: var(--primary-color);
    border-radius: 50px;
    font-size: 15px;
    padding: 10px 25px 11px;
    width: 100%;
    text-align: center;
    font-weight: 500;
    text-transform: uppercase;
	background-image: none;
}
.vendors-detail-page-right .formgroup .sendbutton:hover, .side-form .sendbutton:hover {
	background-color: var(--secondary-color);
}
.vendors-detail-page-right ul.list li:before {
    color: #0f78b3;
}
.review-wrap{
    display: flex;
    flex-wrap: wrap;
    gap: 4%;
   
 
}
.review-left{
    flex: 0 0 66%;
}
.review-left h2{
    font-weight: 700;
    font-size: 30px;
    margin-bottom: 15px;
}
.review-box{
    border-bottom: 1px solid #dfdfdf;
    padding-bottom: 5px;
    margin-bottom: 25px;
}
.review-box p{
    margin-bottom: 25px;
    font-size: 18px;
}
.rev-nam-wrap{
    display: flex;
    /* flex-wrap: wrap; */
    gap: 2%;
    align-items: flex-start;
    /* border-top: 1px solid #e7e7e7; */
    /* padding: 25px 20px 25px; */
}
.rev-pro-pic{
    flex: 0 0 50px;
    border-radius: 50px;
    overflow: hidden;
    line-height: 0;
    border: 1px solid #bfbfbf;
}
.rev-pro-pic img{
    width: 100%;
}
.rev-nam-dtl h3{
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 5px;
}
.rev-nam-dtl h3 span{
    color: #ffbf00;
    font-size: 13px;
    margin-left: 10px;
    border-left: 1px solid #e3e3e3;
    padding-left: 10px;
}
.rev-nam-dtl h6{
    color: #6a6a6a;
    margin-bottom: 0px;
    line-height: 18px;
    margin-bottom: 12px;
}
.rev-nam-dtl h5{
    margin-bottom: 0px;
    color: #ffbf00;
    display: flex;
    gap: 2px;
}
.review-right{
    flex: 0 0 30%;
    /* background-color: #edf8ff; */
    /* padding: 30px; */
    /* border-radius: 15px; */
}
.review-right h2{
    font-weight: 600;
    font-size: 28px;
    margin-bottom: 10px;
}
.review-right-form form{
    display: flex;
    flex-wrap: wrap;
    gap: 5px 2%;
}
.review-right-form .formgroup{
    flex: 0 0 49%;
}
.review-right-form .formgroup-full{
    flex: 0 0 100%;
}
.review-right-form .formgroup .fieldset{
    /* height: 50px; */
    padding: 14px 15px;
    font-size: 14px;
}
.review-right-form .sendbutton{
    display: inline-block;
    position: relative;
    margin: 0;
    background-color: var(--primary-color);
    border-radius: 50px;
    font-size: 15px;
    padding: 10px 25px 11px;
    text-align: center;
    font-weight: 500;
    text-transform: uppercase;
    background-image: none;
}
.review-right-form .sendbutton:hover {
	background-color: var(--secondary-color);
}
.title{ font-size: 22px; font-weight: 600;}
.vender-pad{ padding: 0px 0 80px;}
.wd-customer-review {
    display: flex;
    align-items: flex-start;
    gap: 32px; }
    .review-heading {
        max-width: 289px;
        width: 100%;
        display: grid;
        justify-items: flex-start;
        gap: 32px; }
        .icon-star {
            font-size: 15px;
            color: #ff6f61;
        
    }
    .box-rate-review {
       
        width: 100%;
       
        position: sticky;
        top: 95px;
    }
.rating-average{
    font-size: 16px;
}
    .rating-summary {
        display: flex;
        justify-content: space-between;
        align-items: center; }
        .list-star {
            display: flex;
            align-items: center;
            gap: 5px;
       
    }
    .rating-breakdown-item {
        display: flex;
        align-items: center;
        gap: 10px;}
        &:not(:last-child) {
            margin-bottom: 6px;
        }
        .rating-score {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 5px;
            width: 34px;
            flex-shrink: 0;
            font-size: 16px;
        }
.rating-score i{
    color: #ffbf00;
    font-size: 16px;
}
        .rating-bar {
            width: 100%;
            height: 4px;
            background-color: #d7d7d7;
        }
        .value {
            background-color: var(--secondary-color);
            height: 100%;
    }
    .review-section {
        flex-grow: 1;
    }
.rating-count{font-size: 16px;}
    .review-item {
        display: flex;
        gap: 15px;}
       
        .review-avt {
            width: 48px;
            height: 48px;
            border-radius: 50%;
            overflow: hidden;
            flex-shrink: 0;
		}
        .review-content {
            display: grid;
            gap: 15px;
        }
        .review-meta {
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .review-info {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 10px;
        }
        .review-author {
            padding-right: 10px;
            position: relative;}
            &::after {
                content: "";
                position: absolute;
                right: 0;
                top: 50%;
                transform: translateY(-50%);
                height: 14px;
                width: 1px;
                background-color: var(--line);
            }
     .count-star{
    color: #000;
}
        .list-star {
            display: flex;
            gap: 5px;
            list-style: none;
            padding: 0;
            color: #ffbf00;
            font-size: 16px;
            margin: 0px;
            }
           
            .icon {
                font-size: 15px;
                color: var(--dark);
            }
.subtitle{ font-weight: 700;
    font-size: 30px;
    margin-bottom: 15px;}

.box-rate-review-inn{
    border: 1px solid #cdcdcd;
    border-radius: 10px;
    padding: 20px;
    }
.review-sec{padding: 80px 0px;
    background-color: #f9f9f9;}
.faq-sec{ padding: 80px 0px 90px;}
.vendors-detail-page-right ul.list{ margin-bottom: 0px;}
.certific-section{
    background-color: var(--secondary-color);
    padding: 80px 0px;
	background-image: url(../images/backgrounds/texture1.png);
    background-repeat: repeat;
    background-position: top left;
}
.certi-heading{
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.certi-left h6{
    font-size: 17px;
    color: var(--quaternary-color);
}
.certi-left h2{
    font-size: 44px;
    font-weight: 700;
    line-height: normal;
    color: var(--white);
    margin-bottom: 10px;
}
.certi-left h4{
    color: var(--tertiary-color);
}

.certi-cnt-wrap{
    display: flex;
    flex-wrap: wrap;
    gap: 12px 2%;
}
.certi-cnt-box{
    flex: 0 0 32%;
    border: 1px solid #5eb4e7;
    padding: 45px;
    border-radius: 15px;
}
.certi-cnt-box h2{
    color: var(--tertiary-color);
    font-weight: 700;
    font-size: 30px;
    line-height: normal;
    margin-bottom: 14px;
}
.certi-cnt-box p{
    color: var(--white);
    margin-bottom: 0px;
}
.certi-exm-wrap{
    display: flex;
    gap: 2%;
}
.certi-exm-left{
    flex: 0 0 22%;
    border-right: 1px solid #e2e2e2;
    padding-right: 25px;
}
.certi-exm-left h3{
    color: var(--primary-color);
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 18px;
    border-bottom: 1px solid #e2e2e2;
    padding-bottom: 10px;
}
.checkbox-totl-wrap{
    margin-bottom: 30px;
}
.certi-exm-right{
    flex: 0 0 76%;
}
.certi-exm-right h1{
    margin: 0px 0 20px;
    font-size: 36px;
    font-weight: 600;
	line-height: normal;
    color: var(--secondary-color);
}

.certi-exm-list-wrap{
    display: flex;
    flex-wrap: wrap;
    gap: 30px 2%;
}
.certi-exm-list{
    flex: 0 0 23.5%;
    box-shadow: 0px 4px 20px rgba(0, 0, 0, .1);
    border-radius: 20px 20px 15px 15px;
}
.certi-exm-list .hover-effect span{
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 1;
    background-color: var(--tertiary-color);
    font-size: 14px;
    padding: 2px 12px;
    border-radius: 50px;
}
.certi-exm-list-cnt{
    padding: 20px;
}
.certi-exm-list-cnt h4 span{
    background-color: var(--tertiary-color);
    font-size: 13px;
    padding: 5px 10px;
    border-radius: 50px;
    color: var(--secondary-color);
}
.certi-exm-list-cnt h3{
    font-size: 18px;
    font-weight: 600;
    color: var(--secondary-color);
    line-height: normal;
    margin-bottom: 15px;
}
.certi-exm-list-cnt p{
    margin-bottom: 15px;
    font-size: 15px;
    line-height: 22px;
}



.cert-contact-box{
    background-color: var(--primary-color);
    background-image: url(../images/backgrounds/inner-banner.jpg);
    background-position: center;
    background-repeat: no-repeat;
    padding: 60px;
    border-radius: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 60px 0px;
}
.cert-contact-box-left{
    flex: 0 0 68%;
}
.cert-contact-box-left h6{
    color: var(--quaternary-color);
    font-size: 16px;
    margin-bottom: 15px;
}
.cert-contact-box-left h3{
    color: var(--white);
    font-size: 38px;
    font-weight: 700;
    line-height: normal;
    margin-bottom: 10px;
}
.cert-contact-box-left p{
    color: var(--white);
    margin-bottom: 0px;
}
.tittle{
    font-size: 34px;
    font-weight: 700;
    line-height: normal;
    color: var(--secondary-color);
    margin-bottom: 15px;
    }

.blog-details-prof-date{
    padding: 0px;
    margin: 0 0 30px;
    display: flex;
    align-items: center;
    gap: 5px 10px;
}
.blog-details-prof-date li{
    display: flex;
    align-items: center;
    color: #505050;
    border-right: 1px solid #d7d7d7;
    padding-right: 10px;
}
.blog-details-prof-date li:last-child{border-right:none;padding-right: 0px;}
.blog-profile{
    font-size: 15px;
    display: flex;
    align-items: center;
    color: #505050;
    gap: 5px;
}
.blog-profile img{
    width: 28px;
    border-radius: 50px;
}
.blog-date{
    margin-bottom: 0px;
    color: #505050;
    font-size: 14px;
}
.blog-dtl-inn-left{
    border-left: 1px solid #e2e2e2;
    padding-left: 30px;
}
.blog-dtl-inn-left h3{
    font-size: 22px;
    margin-top: 30px;
    font-weight: 700;
}
.reltd-post-wrap{
    padding: 0px;
    margin: 0px;
}
.reltd-post-wrap li{  list-style: none;}
.reltd-post-wrap li a{
   
    display: flex;
    gap: 15px;
    border-top: 1px solid #e2e2e2;
    padding-top: 15px;
    margin-top: 15px;
}
.reltd-post-wrap li a:hover .reltd-cnt h4{ color: var(--quaternary-color);}
.reltd-img{
    flex: 0 0 34%;
    line-height: 0;
}
.reltd-img img{
    width: 100%;
    border-radius: 10px;
}
.reltd-cnt h6{
    font-size: 13px;
    margin-bottom: 0;
    color: #6c6c6c;
}
.reltd-cnt h4{
    margin-bottom: 0px;
    font-size: 16px;
    line-height: 22px;
    color: var(--secondary-color);
}



.vocher-step {
	display: flex;
	flex-wrap: wrap;
	gap: 1%;
	margin-bottom: 30px;
}
.step {
	flex: 0 0 24.222222%;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    border-radius: 15px;
    box-shadow: rgba(0, 0, 0, 0.05) 0px 6px 24px 0px, rgba(0, 0, 0, 0.08) 0px 0px 0px 1px;
}
.st-left {
    width: 70%;
    margin-bottom: 10px;
}
.st-left img {
	width: 100%;
	display: block;
}
.st-right {
    text-align: center;
}
.st-right h2 {
    font-weight: 600;
    font-size: 22px;
    color: var(--primary-color);
}
.st-right span {
    display: inline-block;
    padding: 2px 10px;
    background-color: #009ec9;
    color: var(--white);
    border-radius: 25px;
    font-weight: 500;
    text-transform: uppercase;
    font-size: 13px;
    margin-bottom: 25px;
}
.st-right p {
    font-size: 18px;
}
.voucher-inner-wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 3%;
    align-items: flex-start;
    position: relative;
    z-index: 1;
}
.scl-icons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    position: relative;
}
.scl-icons:after {
	content: "";
	position: absolute;
	top: 50%;
	width: 100%;
	height: 1px;
	left: 0;
	right: 0;
	background-color: #e9e9e9;

}
.scl-icons a {
    width: 40px;
    height: 40px;
    border-radius: 50%;

    background-color: var(--secondary-color);
	position: relative;
	z-index: 1;
	    color: var(--white);
    font-size: 19px;
	text-align: center;
	line-height: 40px;
}
.scl-icons a img {
	width: 100%;
	display: block;
}
.scl-icons a:hover {
	background-color: var(--quaternary-color)
}
i.teams-iocn {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 5px;
}
i.teams-iocn img {
    max-width: 25px;
    height: 30px;
    padding-top: 0px;
}
.vendor-item {
	flex: 0 0 32%;
	box-shadow: 0px 4px 10px 4px rgba(123, 123, 123, 0.1);
    border-radius: 10px;
    padding: 0px;
    background-color: var(--white);
    position: relative;
    border-bottom: 5px solid var(--primary-color);
	padding: 20px;
	margin-bottom: 15px;
}
.vendor-wrapper {
	display: flex;
	flex-wrap: wrap;
	gap: 2%;
}
.vendor-item h1 {
    font-size: 30px;
    line-height: normal;
    font-weight: var(--font-weight-bold);
    margin: 0 0 25px 0;
    padding: 0 0 20px 0;
    border-bottom: 1px solid var(--grey);
    text-align: center;
}
.vendor-item-ctn h2 i {
    font-size: 18px;
    padding-right: 5px;
    margin-right: 6px;
    border-right: 1px solid #ccc;
    color: var(--secondary-color);
}
.vendor-item-ctn h2 {
    font-size: 17px;
    font-weight: 400;
    margin-bottom: 10px;
    padding-bottom: 5px;
}
.vendor-item-ctn .new-accourdian ul li a {
    text-align: left;
    font-weight: 600;
    color: #222222;
    font-size: 16px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.11) !important;
	border: 0;
}
.working {
 width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 60px;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    border-radius: 0;
    margin-top: 30px;
    background: #0B3C5A;
    background: radial-gradient(circle,rgba(11, 60, 90, 1) 0%, rgba(18, 87, 128, 1) 100%);
    outline: 1px solid #ffffff42;
    outline-offset: -10px;
}
.working .lft {
	width: 100%;
	text-align: center;
}
.working .lft h1 {
	font-size: 50px;
	color: var(--white);
	font-weight: bold;
	text-transform: uppercase;

}
.working .lft p {
	font-size: 22px;
	color: var(--white);
	line-height: 35px;
	
}
.voucher-tab {
    padding-top: 25px;
}
.voucher-tab .verticaltab-banner.resp-vtabs ul.resp-tabs-list {
	text-align: center;
}
.voucher-tab .verticaltab-banner.vender-pg-tab .resp-tabs-list li {
    text-align: center;
    padding: 10px 23px 10px !important;
    color: #000;
    border-radius: 25px;
    margin-inline: 2px;
    background: #e5e5e5;
    margin-bottom: 6px;
    font-size: 16px;
	text-transform: uppercase;
}
.voucher-tab .verticaltab-banner.vender-pg-tab li.resp-tab-active {
    background-color: var(--primary-color);
    color: #ffff !important;
	font-weight: 700;
}
.voucher-tab .vender-pg-tab.resp-vtabs .resp-tab-content {
    background-color: var(--white);
    border-top: 1px solid #d7d7d7 !important;
    color: var(--body-color);
	border: 0;
	border-radius: 0;
}	
.voucher-tab .resp-tabs-container {
	margin-top: 10px;
}
h3.exam-name {
    font-size: 20px;
    font-weight: 600;
	color: var(--primary-color);
}

.vendor-item-ctn ul.list li span {
    font-size: 15px;
    display: block;
    margin-bottom: 5px;
	font-weight: 300;
}
.vendor-item-ctn ul.list li {
	font-weight: bold;
	color: #000;
} 
.vendor-item-ctn ul.list {
	margin: 0;
}
.questions-wrap{
    display: flex;
    gap: 2%;
}
.questions-left{
    flex: 0 0 74%;
}
.questions-right{
    flex: 0 0 24%;
    border-left: 1px solid #e2e2e2;
    padding-left: 35px;
}
.questions-right h3{
    font-size: 24px;
    color: var(--secondary-color);
    font-weight: 600;
    margin-bottom: 15px;
    border-bottom: 1px solid #e7e7e7;
    padding-bottom: 15px;
}
.questions-right ul li{
    border-bottom: 1px solid #ededed;
    margin-bottom: 6px;
    padding-right: 0;
}
.exam-box-wrap{
    gap: 30px 2%;
}
.exam-box{
    flex: 0 0 23.5%;
}
.question-banner-frm{overflow: visible;line-height: normal;background-color: var(--white);padding: 30px;flex: 0 0 34%;border-radius: 10px;}
.question-banner-frm h3{
    text-align: left;
    font-weight: 600;
    font-size: 24px;
    margin-bottom: 14px;
}
.question-banner-frm .formgroup{
    margin-bottom: 10px;
}
.question-banner-frm .formgroup .fieldset{
    padding: 12px 16px;
}
.question-banner-frm .sendbutton{
    width: 100%;
    font-size: 22px;
    padding: 13px 30px;
    font-weight: 600;
}
.question-banner-frm .scl-icons{ margin-top: 20px;}
.max-100{ max-width: 100%;}
.qst-list{
    padding: 0px;
    margin: 0 0 20px;
}
.qst-list li{
    list-style: none;
    font-size: 16px;
    font-weight: 500;
}
.qst-ansr{
    font-size: 18px;
    font-weight: 700;
}
.qstn-wrap{ border-bottom: 1px solid #707070;     padding-bottom: 15px;
    margin-bottom: 30px;}
.qst-img{ max-width: 100%; border: 1px solid #c2c2c2;}

.qstn-watermarck:after{ position: absolute; content: ''; left: 0px; top: 0px; height: 100%; width: 100%; opacity: .08; background-image: url(../images/watermark.png); background-position: left top; background-repeat: repeat; z-index: -1;  }
.question-banner{padding-bottom: 0;}
.link-big a{     width: 100%;
    text-align: center;
    text-transform: uppercase;
    font-weight: 600;
    padding: 10px 10px;
    font-size: 16px;}

.side-form .formgroup{
    margin-bottom: 10px;
}
.side-form .formgroup .fieldset{
    padding: 5px 15px;
    height: 46px;
}

.side-form-wrap{
margin: 0 0px 25px;
}
.review-right-form{ margin-bottom: 30px;}
.certi-logo-list{
    display: flex;
    padding: 0px;
    margin: 0 0 30px;
    gap: 8px 1%;
	flex-wrap: wrap;
}
.certi-logo-list li{
    padding: 10px;
    line-height: 0;
    list-style: none;
    border: 1px solid #e2e2e2;
    border-radius: 15px;
}
.certi-logo-list li img{
    max-width: 100%;
}
.subtittleone{    font-size: 22px;
    font-weight: 700;}
.cnt-link{ color: var(--secondary-color); font-weight: 500;}
.cnt-link:hover{ color: var(--quaternary-color);}
.exam-wrap-box{ padding: 30px;
    border-radius: 20px;
    margin-bottom: 20px;
    background-color: #eff6fb;}
.exam-wrap-box .subtittleone{ margin-bottom: 15px;}
.vndor-bnr-left h4{ color: var(--white);}
.time-count-wrap{
    display: flex;
	flex-wrap: wrap;
    position: relative;
    z-index: 2;
    justify-content: center;
    gap: 10px 3%;
    margin-top: 20px;
    border-top: 1px solid var(--secondary-color);
    padding-top: 30px;
}
.time-count-box{
    display: flex;
    align-items: flex-end;
    color: var(--white);
    gap: 8px;
    flex: 0 0 10%;
}
.time-count-box h2{
    font-size: 46px;
}
.registration-banner{    padding-bottom: 35px;}
.vndor-bnr-left-full{ flex: 0 0 100%;}
.certi-search-box{
    position: relative;
    margin-bottom: 20px;
}
.certi-search-box .fieldset{
    padding: 8px 15px;
    height: 46px;
}
.certi-search-box .search-button{
    position: absolute;
    right: 0px;
    top: 0px;
    font-size: 0px;
    background-color: var(--secondary-color);
    border: none;
    height: 46px;
    width: 46px;
    border-radius: 6px;
    background-image: url(../images/icons/search-icon.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 17px;
}

.video-container {
      position: relative;
      width: 100%;
      height: 333px;
      cursor: pointer;
    }

    .video-container img {
      width: 100%;
      height: 100%;
      display: block;
    }

    .play-icon {
      position: absolute;
      top: 50%;
      left: 50%;
      width: 76px;
      height: 54px;
      background: url(../images/icons/youtube-icon.png) no-repeat center center;
      background-size: contain;
      transform: translate(-50%, -50%);
      pointer-events: none;
    }

  .video-container iframe {
      width: 100%;
      height: 100%;
      border: none;
    }

#particles-js {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: 50% 50%;
  position: absolute;
  top: 0px;
  z-index: -1;
  opacity: 0.3;
}
.exam-name-list{
    margin: 0px;
    padding: 0px;
}
.exam-name-list li{
    list-style: none;
}
.exam-name-list li a{
    display: flex;
    gap: 2%;
    background-color: #eff8fd;
    margin-bottom: 10px;
    border-radius: 10px;
    padding: 10px;
    border: 1px solid #d8e6ed;
	position: relative;
	padding-right: 70px;
}
.exam-name-list li a:after{     position: absolute;
    content: '';
    height: 40px;
    width: 40px;
    display: inline-block;
    z-index: 2;
    background-image: url(../images/icons/arrow.svg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 50%;
    -webkit-transition: all 300ms ease-in-out;
    -moz-transition: all 300ms ease-in-out;
    transition: all 300ms ease-in-out;
    border-radius: 50%;
    border: 1px solid #ccc;
    right: 15px;
    top: 50%;
    margin-top: -21px;}
.exam-name-list li a:hover:after{     background-color: var(--tertiary-color);}
.exam-name-list li a .exam-id-name{
    flex: 0 0 10%;
}
.exam-name-list li a .exam-id-name h6{
    margin-bottom: 0px;
    margin-top: -30px;
	-webkit-transition: all 300ms ease-in-out;
    -moz-transition: all 300ms ease-in-out;
    transition: all 300ms ease-in-out;
	top: -25px;
	position: relative;
}
.exam-name-list li a .exam-id-name h5{
    margin-bottom: 0px;
    color: var(--secondary-color);
    font-weight: 600;
}
.exam-name-list li a .exam-name-land h6{
    margin-bottom: 0px;
    margin-top: -30px;
	-webkit-transition: all 300ms ease-in-out;
    -moz-transition: all 300ms ease-in-out;
    transition: all 300ms ease-in-out;
	top: -25px;
	position: relative;
}
.exam-name-list li a .exam-name-land h6 span{
    padding: 4px 17px 5px;
    display: inline-block;
    border-radius: 30px;
    color: var(--white);
    font-size: 14px;
    font-weight: 700;
    border: 1px solid var(--quaternary-color);
    background-color: var(--quaternary-color);
    line-height: 22px;
}
.exam-name-list li a .exam-name-land h5{
    margin-bottom: 0px;
    color: var(--secondary-color);
    font-weight: 600;
}
.exam-name-list li a .exam-id-name h6 span{
    padding:4px 17px 5px;
    display: inline-block;
    border-radius: 30px;
    color: var(--white);
    font-size: 14px;
    font-weight: 700;
   border: 1px solid var(--quaternary-color);
   
    line-height: 22px;
	    background-color: var(--quaternary-color);
}
.exam-name-list li a:hover{ background-color: var(--secondary-color);}
.exam-name-list li a:hover .exam-name-land h5, .exam-name-list li a:hover .exam-id-name h5{ color: var(--white);}
.social-icons-text{
    list-style: none;
    padding: 0px;
    margin: 0px 0 30px;
}
.social-icons-text li{
    margin-bottom: 10px;
}
.social-icons-text li a{
    display: flex;
    align-items: center;
    gap: 12px;
}
.social-icons-text a i{
    background-color: var(--secondary-color);
    color: var(--white);
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    border-radius: 50px;
}
.social-icons-text a h6{
    margin: 0px;
    font-size: 20px;
    font-weight: 600;
}
.social-icons-text li:hover a i{ background-color: var(--primary-color);}






/******************** checkbox **************************/
.checkbox-wrap {
	display: block;
	position: relative;
	padding-left: 35px;
	margin-bottom: 10px;
	cursor: pointer;
	font-size: 16px;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	}
  
  /* Hide the browser's default checkbox */
  .checkbox-wrap input {
	position: absolute;
	opacity: 0;
	cursor: pointer;
	height: 0;
	width: 0;
  }
  
  /* Create a custom checkbox */
  .checkmark {
	position: absolute;
	top: 0;
	left: 0;
	height: 24px;
	width: 24px;
	background-color: #fff;
	border: 2px solid #cdcdcd;
	border-radius: 5px;
	}
  
  /* On mouse-over, add a grey background color */
  .checkbox-wrap:hover input ~ .checkmark {
	background-color: #ccc;
  }
  
  /* When the checkbox is checked, add a blue background */
  .checkbox-wrap input:checked ~ .checkmark {
	background-color: var(--secondary-color);
	border: 2px solid #125780;
	}
  
  /* Create the checkmark/indicator (hidden when not checked) */
  .checkmark:after {
	content: "";
	position: absolute;
	display: none;
  }
  
  /* Show the checkmark when checked */
  .checkbox-wrap input:checked ~ .checkmark:after {
	display: block;
	/* border-color: var(--secondary-color); */
	}
  
  /* Style the checkmark/indicator */
  .checkbox-wrap .checkmark:after {
	left: 7px;
	top: 3px;
	width: 4px;
	height: 9px;
	border: solid white;
	border-width: 0 3px 3px 0;
	-webkit-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	transform: rotate(45deg);
	}

/************************************* 1400px *************************************/

@media only screen and (max-width: 1409.99px) {
.container {
	width: 100%;
	padding:0 25px;
	}
 
  
 }

 
/************************************* 1024px *************************************/
@media only screen and (max-width: 1199.99px) {
 
header,  header.smaller{	 
	 /* position:relative;
	 left:auto;
	 top:auto; */
	 padding:10px 20px;	
	 /* background: linear-gradient(90deg, #001651 0%, #00398C 60%); */
 
}
 
 
.logo img, header.smaller .logo img {
	width:150px;
	display:block;
}
 
 .nav-group{ 
 	flex-direction: row-reverse;
 }
 .top-button-group{ 
	 margin-right:10px;
 	 }
 
.call-bt a{
	width:30px;
	height:30px;
	line-height:30px;
	display:inline-block;
	font-size:12px;	 
}
 
 
.contact-button a{
	height:25px;
	line-height:25px;
	padding:0 15px;
	display:inline-block;
	font-size:10px;
 
}
 
  
 
.funfacts{
	padding:40px;
	border-radius: 12px;
	margin-bottom:20px;
 
}
.funfacts-head{
	font-size:20px;
	margin:0;
	 
}
.funfacts-head span{
	display:inline-block;
	position:relative;
	padding:0 50px 0 0;
}
.funfacts-head span:after{
	width:40px;
	 
}
 
 .facts h2{
	font-size:40px;
	line-height:40px;
 
 
}
 
 .facts p{
	margin:10px 0 0 0;
	font-size:18px;
 
}
 
.fun-icon img{
 
	width:40px;
}
.display-style{ 
      border-radius: 12px;
 
}
.display-style-cont{
	 padding: 20px;     
      
 
}
.display-style:hover .display-style-cont{ 
	padding: 20px;     
}

 .experties{
 
	border-radius: 12px;
	 
 }
 
.grid-row{
	border-left:0;
	gap:10px 3.5%;
	padding:20px;	
 }
 .grid-row:before,  .grid-row:after{
 	display:none;
	 
 } 
 
.grid-row-bx{
	flex: 0 0 48%;
	aspect-ratio: 1 / 1;
	padding:10px;
	border:1px solid var(--white);
	 
 
}
.grid-row-bx:hover{
	padding:10px;
}
 .icon-row img{
	width:40px;
}
 	
.grid-row-bx-footer h2{
	font-size:16px;
}

.atrow-bottom{ 
	height:30px;
	width:30px;	 
	bottom:20px;
	right:45px;
	background-size:20px;
} 

 

	

	
.brands-listing ul li img, .brands-listing ul li{   
	border-radius: 7px;	 
  }
 
 
}


/************************************* 1200px *************************************/
@media only screen and (max-width: 1200px) {
	.bnr-btm-logos {
		flex: 0 0 32%;}
		.certi-exm-list {
			flex: 0 0 32%;}
}


/************************************* 1180px *************************************/
@media only screen and (max-width: 1180px) {
.price-box-cnt .botton-row{ flex-direction: column;}
}



/************************************* 1024px *************************************/
@media only screen and (max-width: 1024px) {


.heading {
  font-size: 30px;
  line-height: 30px;
} 
 
.subheading {
  font-size: 24px;
  line-height: 28px;
} 

 .section-spacing{
	 padding:40px 0;
 }
 

.hover-effect{
	border-radius: 12px; 
}

	
/***********news style*****/
 
 
 
  
 
 .footer{
 	padding:50px 0 0 0;
 }
 
.footer-logo{
	width:200px;
}
.footer-left{
	width:100%;
	margin-bottom:20px;
}
.footer-col{
	margin-bottom:20px;
	padding:0;
}
.footer-bottom {	 
    
	padding:20px 0 0 0 ;
	margin-top:20px;
 
}
.footer-bottom-border{
	padding:10px 0;
	}

 
 
.banner h2 {
	font-size:30px;
	line-height:40px; 
}
.boxy-style{
	 border-radius:12px;
	 padding:20px;
	 margin-bottom:20px;
 
 }
.iconic{
	padding:0 0 0 70px;
	 
}
 
.iconic h2{
	font-size: 20px;
	line-height:24px;
 
 
}
.webicon{	
	width:50px;
	height:50px;
	font-size:17px;
 
}
.exam-dump-wrap li { flex: 0 0 32%;}
.certi-heading {
  
  
    align-items: flex-start;
   
    flex-direction: column;}

	.certi-cnt-box {padding: 25px;}
	.certi-exm-list {
		flex: 0 0 49%;}
.certi-exm-left {
    flex: 0 0 26%;}
.certi-exm-right {
    flex: 0 0 72%;
}
.voucher-inner-wrap .vendors-detail-page-left.voucher-tab.sticky {
	position: static !important;
}
.voucher-inner-wrap .vendors-detail-page-left {
    flex: 0 0 100%;
}
.voucher-inner-wrap .vendors-detail-page-right {
    flex: 0 0 100%;
}
}

/************************************* 980px *************************************/
@media only screen and (max-width: 980px) {
	.brands-listing ul li {
		flex: 0 0 18.4%;}
.bnr-btm-logo-form-wrap{ flex-direction: column;}
.bnr-btm-logos {
	flex:0 0 23.5%;
}
.bnr-btm-left{ margin-bottom: 25px;}
.blog-gap .four-flex-col {
    flex: 0 0 32%;
}
.reltd-post-wrap li a{ flex-direction: column;}
.exam-box {
    flex: 0 0 32%;
}
.blog-dtl-inn-right {
    flex: 0 0 65%;
}
.blog-dtl-inn-left {
    flex: 0 0 33%;
}
}

/************************************* 800px *************************************/
@media only screen and (max-width: 800px) {
.certi-cnt-wrap{ flex-direction: column;}
 .step {
    flex: 0 0 48%;
    margin-bottom: 10px;
}
.vendors-detail-page-left {
    flex: 0 0 100%;
}
.questions-wrap {

    flex-direction: column;}
.questions-right{ padding-left: 0px; border-left: none;}
    .exam-box {
        flex: 0 0 49%;
    }
}

/************************************* 767px *************************************/
@media only screen and (max-width: 768px) {

.hero-banner{
	height:auto;
}
.banner-content,  .banner-right{
 	flex:0 0 100%;
	text-align:center;
	flex-direction:column;
	justify-content: center;
	padding:20px;
 }
 

.banner-content h2{
	font-size:17px;
	line-height:18px;	 
}

.banner-content h1{
	font-size:30px;	 
}

 
 .elements-wrap{
	padding:10px;
	margin-top:-50px;
}
 
.element{
	padding:15px;	 
} 
.element h2{
	font-size:16px;	 
}
 
.element img{
	width:40px;
}

.price-box{
	padding:20px;
	}
 
.price-box h2{
	font-size:16px;
	margin:0 0 20px 0;
	padding:0 0 15px 0;
	}
 
.price-des ul li{
	padding:5px 0;
	font-size:14px;
	line-height:14px;
}


.price-des ul li i{
	margin-right:20px;
	font-size:16px;

 
}

.botton-row{
	padding:10px 0;
 
}
.botton-row .link a{
	padding:5px 15px !important;
	font-size:12px  !important;
	line-height:normal  !important;
 
}
.v-tab-wrap{
	padding:10px;
  
	}
	.brands-listing ul li {
		flex: 0 0 23.5%;}
.exam-dump-wrap li {
        flex: 0 0 49%;
    }
	.exam-dump-head-left {
		flex: 0 0 170px;}
.blog-dtl-inn-wrap{ flex-direction: column;}
.blog-dtl-inn-left{ margin-bottom: 25px;}
.blog-dtl-inn-left .hover-effect {
    position: initial;}
	
	.aside{
	width:40%;
	padding-left:20px;
}
 .summary{
	width:60%;
}
.aside-inner{
	padding:20px;
 
}
.bnr-btm-logos {
	flex: 0 0 32%;
}
.vender-pg-top-cnt-wrap{ flex-direction: column; margin-bottom: 0px;}
.vender-pg-top{ margin-bottom: 20px;}
.blog-gap .four-flex-col {
    flex: 0 0 49%;
}
.vndor-bnr-wrap {
	justify-content: space-between;
    align-items: stretch;
    flex-direction: column;
padding-top: 0px; padding-bottom: 0px;}
.vndor-bnr-left{ margin-bottom: 30px;}
.vendors-detail-page-wrap{ flex-direction: column; margin-top: 60px;
    align-items: stretch}
.vendors-detail-page-right{ margin-top: 30px;}
.review-wrap{ flex-direction: column;}
.vndor-bnr-left h3 {

    font-size: 30px;
    font-weight: 600;
    line-height: 38px;}
	.vendors-banner {
	
		padding-bottom: 40px;}
.faq-sec {
    padding: 40px 0px 50px;
}
.review-sec {
    padding: 40px 0px;}
.vender-pad{ padding-bottom: 40px;}
.certi-cnt-box h2 {
 
    font-size: 22px;
 
    margin-bottom: 10px;}
.certi-exm-wrap{ flex-direction: column;}
.certi-exm-left{ margin-bottom: 30px; border-right: none; padding-right: 0px;}
.cert-contact-box {

    justify-content: space-between;
    align-items: flex-start;

    flex-direction: column;}
.cert-contact-box-left p { margin-bottom: 22px;}
.cert-contact-box { padding: 35px;}
.cert-contact-box-left h3 {

    font-size: 32px;}
	.reltd-post-wrap li a {
    
        flex-direction: row;}

		.working .lft h1 {
	font-size: 25px;

}
.working .lft p {
	font-size: 18px;
	
}
.voucher-tab .vender-pg-tab.resp-vtabs .resp-tab-content {
	padding: 10px;
}
.voucher-tab .vender-pg-tab.resp-vtabs .resp-tab-content {
    border-top: 0 !important;
}
.exam-box .price-box-cnt{ padding: 0px;}
.question-banner {
    height: 815px;}
.blog-dtl-inn-left {
    border-left: none;
    padding-left: 0px;
}
.vendors-banner{ height: auto; padding-top: 80px; padding-bottom: 80px;}
.registration-banner{ padding-bottom: 40px;}
}

/************************************* 640px *************************************/
@media only screen and (max-width: 640px) {
 
body {
	font-size: 18px;
	line-height:24px;
	}
 
.scrolling-text-wrap {
	padding:20px 0;   
 }

.scroll h2 {
  font-size: 40px;
  line-height: 40px;
   
}
 
.RightToLeft {
  animation: RightToLeft 5s infinite linear;  
}
 
.elements-wrap{
	margin-top: 50px;
}

	
.certificate{		 
 	padding:10px;
}
.brands-listing ul li {
	flex: 0 0 32%;
}
.exam-dump-wrap li {
	flex: 0 0 100%;
}
.aside{
	width:100%;
	padding-left:20px 0;
}
 .summary{
	width:100%;
}
.blog-gap .four-flex-col {
    flex: 0 0 100%;
}
.working .lft {
    width: 100%;

}
 .working {
	min-height: auto;
	padding: 30px;
 }
 header .container {
    padding: 0;
}
.exam-box-wrap, .exam-name-list li a{ flex-direction: column;}
.exam-name-list li a .exam-name-land h6{ margin-top: 14px; display: none;}
.exam-name-list li a .exam-id-name h6{ margin-top: 0px; display: none;}
.exam-name-list li a{ margin-bottom: 10px; padding-right: 60px;}
.exam-name-list li a:after {
      background-size: 13px;
    height: 32px; margin-top: -23px;
    width: 32px;}
}




@media only screen and (max-width: 575px) {
.exam-dump-dtl-head-wrap{ flex-direction: column;}
.exam-dump-head-left {
	flex: 0 0 auto;
	border-bottom: 1px solid #e2e2e2;
}
.exam-dump-head-right{ border-left: none;}
.bnr-btm-right h2 {
  
    font-size: 26px;}
	.vndor-bnr-left h3 {

		font-size: 28px;
		
		line-height: 38px;}
.vndor-bnr-left h3 span {
  
    font-size: 22px;}
.sticky{ position: initial !important;}
.certi-exm-right h1 {

    font-size: 28px;}
.certi-exm-list-cnt h3 {
    font-size: 18px;}
.certi-exm-list-cnt p {

    font-size: 15px;}
	.cert-contact-box-left h3 {
        font-size: 26px;
    }
	.step {
    flex: 0 0 100%;
    margin-bottom: 10px;
}
.vendor-item {
    flex: 0 0 100%;
	margin-bottom: 15px;
}
	 

	.qstn-wrap {
 
    padding-bottom: 5px;
    margin-bottom: 20px;}
.time-count-box{ font-size: 13px;}
.breadcrumb {
 
    padding: 8px 0;}

}


/************************************* 480px *************************************/
@media only screen and (max-width: 480px) {
	.brands-listing ul li {
        flex: 0 0 48.5%;
    }
	.brands-listing ul {
	
		gap: 18px 3%;}
     .bnr-btm-logos {
        flex:0 0 49%;
    }
	.bnr-btm-right h3 {
	
		font-size: 20px;}
.bnr-btm-right-form-wrap {

    align-items: stretch;
 
    flex-direction: column;}
.bnr-btm-form-col{ margin-bottom: 15px;}

.review-right-form .formgroup{ flex: 0 0 100%;}
.certi-exm-list-wrap{ flex-direction: column;}
.certi-exm-list-cnt h3{ margin-bottom: 6px;}


}

/************************************* 360px *************************************/
@media only screen and (max-width: 360px) {
			    .vendors-banner {
        height: 850px;
    }
.question-banner {
        height: 920px;
    }
	.nav-group .top-button-group{ gap: 0 6px;}
	    .contact-button a {
       
        padding: 0 8px;}

}

/************************************* 320px *************************************/
@media only screen and (max-width: 320px) {}