@charset "utf-8";

@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&family=DM+Serif+Display:ital@0;1&display=swap');


/*font-family: "DM Serif Display", serif;
font-family: "DM Sans", sans-serif;
*/
/*************** DEFAULT CSS ***************/
:root {
	--body-font: "DM Sans", sans-serif;
	--body-color: #000;
	--primary-color: #1C3F75;
	--secondary-color: #0A79BF;
	--tertiary-color: #E6F1F8;
	--quaternary-color: #85979B;	
	--black: #000;
	--white: #fff;
	--grey: #C5C5C5;
	--heading-font:"DM Serif Display", serif;
	--font-weight-light:300;
    --font-weight-normal:400;
    --font-weight-semibold:600;
	--font-weight-bold: 700;

}

body {

	font-family: var(--body-font);
	font-size: 16px;
	font-style: normal;
	line-height: 24px;
	font-weight: normal;
	color: var(--body-color);
	text-decoration: none;
	margin: 0px;
	-webkit-font-smoothing: antialiased;
	padding: 0;
	background: var(--white);

}

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;
 
}

h1,
h2,
h3,
h4,
h5,
h6 {
	margin: 0 0 25px 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;
}
.hr:before{
	content: '';
	position: absolute;
	top:0;
	left:0;
	width: 50px;
	height: 1px;
	z-index:2;
	background-color: var(--primary-color)
}
img {
	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-green {
	color: var(--primary-color) !important;
}

 
.text-center {
	text-align: center;
}
.text-right{
	text-align:right;
}

.text-justify {
	text-align: justify;
}

.uppercase {
	text-transform: uppercase;
}

/*-----------background styles------------*/

.bg-primary {
	background: var(--primary-color);
	color:#fff;
}
.bg-secondary {
	background: var(--secondary-color);
	 color:#fff;
}

.bg-tertiary {
	background: var(--tertiary-color);
 	 
}
.bg-quaternary {
  background: var(--quaternary-color);
 
}
.bg-grey {
	background: var(--grey);
 
}

.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/creo-solutions-logo.svg);
	background-repeat: no-repeat;
	background-position: center center;
	background-size:100px;
	margin: -100px 0 0 -100px;
}

 

/*************** BACK TO TOP ***************/
 
.column-reverse {
	flex-direction: none;
}

/************LOCOMOTIVE**************/
  
  
 
/*********************************/

.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: 20px;
	}	
	
.img-style{
	width:100%;
	padding:0 0 0 50px;
	position:relative;
}
.img-style:before{
	width:50%;
	height:50%;
	position:absolute;
	left:0;
	bottom:-50px;
	content:'';
	background: url(../images/donts.png);
	background-color:var(--primary-color);
	z-index:-1;
}
/*************HOVER EFFECT*******/

.hover-effect{
	width:100%;
	position:relative;
	overflow:hidden;
	/*border-radius: 15px;*/	
}

 .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;
	 
}
  
 .sticky{
 	position: -webkit-sticky !important;
	position: sticky !important;
	top: 150px;
	width:100%;
	z-index:1;
}

/*************** HOME PAGE CSS ***************/
 
/*************** FIXED HEADER ***************/
.top-section{
	background-image: url(../images/top-bg.png);
	background-repeat: no-repeat;
	background-position: right top;
	background-attachment:fixed;
}
header {
	width: 100%;
	z-index: 999;
	top: 0;
	left: 0px;
	position:relative;
	border-bottom:1px solid #D2D4D5;
	padding:0;
	display:flex;
	justify-content: space-between;
	align-items: center;
	-webkit-transition: all 300ms ease-in-out;
	-moz-transition: all 300ms ease-in-out;
	transition: all 300ms ease-in-out;
}
 header.smaller {
	background-color:var(--white);
	top: 0;
	left: 0px;
	position: fixed;
	/*-webkit-box-shadow: 0px 1px 5px 0px rgba(50, 50, 50, 0.41);
	-moz-box-shadow: 0px 1px 5px 0px rgba(50, 50, 50, 0.41);
	box-shadow: 0px 1px 5px 0px rgba(50, 50, 50, 0.41);
	/*-moz-box-shadow: 0px 4px 20px #00000059;*/
	
}
 
.logo { 
	padding:0;
}

.logo img {
	width:170px;
	display:block;
}
header.smaller .logo img{
	width:150px;
}

.header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding:0;
	
}



.head-right{
	font-size:12px;
	text-transform:uppercase;
	align-items: center;
	display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
	gap:0 20px;
 
}
.inline{
	display:inline;
	margin:0 5px;
} 

.top-btn {	 
	padding: 20px 20px; 
	border-left:1px solid #D2D4D5;
	border-right:1px solid #D2D4D5;

}
.res-title{}
.res-title span{
	display:inline-block;
	margin:0  5px;
}
.top-btn .fa-whatsapp{
	background-color:#02E677;
	color:#fff;
	font-size:20px;
	padding:7px 9px;
	border-radius: 50%;
 
}
.top-btn:hover {
	color: var(--secondary-color);
}

.index-intro{
	padding:100px 0;
	width:100%;
	}
.index-intro p:last-child{
	margin:0
	}
/***********social ***********/

.social {
 	display:inline-block;
}

.social a  {
	color:#0069F9;
	font-size:30px;
	padding:0;
	border-radius: 50%;
	margin:0 10px; 
}

.social a:hover  {
	color: var(--primary-color);
}

.link {}

.link a {
	color: var(--body-color);
	font-size: 16px;
	line-height: normal;
	padding: 20px 70px 20px 35px;
	line-height: 14px;
	font-style: normal;
	display: inline-block;
	border-radius:50px;
	border:1px solid var(--grey);
	position: relative;
	margin:0;
	background-image: url(../images/icons/arrow-blue.svg);
	background-repeat: no-repeat;
	background-position: 85% center;
	background-size:20px;
 
}
 
 
 
.link a:hover {
	color: var(--white);
	border:1px solid var(--primary-color);
	background-position: 90% center;
	background-color:var(--primary-color);
	background-image: url(../images/icons/arrow-white.svg);
} 
 
.link-fill{
	background-color:transparent !important;
	border:1px solid #fff;
}
.page-title{
	font-size: 40px;
	 
}
.subtitle{
	font-size: 18px;
	 
}

.section-title { 
	font-size: 20px;
	font-weight:600; 
	color: var(--quaternary-color);
	padding: 0 0 0 70px;
	position: relative;
	margin:0 0 25px 0;
	display:flex;
 	
}
 

.section-title:before {
	content: '';
	position: absolute;
	top:50%;
	left:0;
	width: 50px;
	height:1px;
	background-color: var(--secondary-color)
}
.caps{
	text-transform:uppercase;
}
.heading {
	font-size: 58px;
	line-height: 60px;
	color: var(--black);
	font-weight:500;
}
.heading span, .subheading span{
	font-family:var(--heading-font);
	font-style:italic;
}

.subheading {
	font-size: 30px;
	line-height:normal;
}
 .title-small{
 	font-size:20px;
	line-height:normal;
	}
 

/****************************/
.level-3{
	 
 } 
.pos-relative{
	position:relative;
}
 
.invisible{}
    

/*******funfacts***********/

.funfacts{
	position:relative;
	z-index:2;
     
}
 .funfacts ul{
	justify-content: center;
    display: flex; 
	gap:30px 2%;
	list-style:none;
	margin:0;
	padding:30px 0;	
	color:var(--white);
	font-family:var(--heading-font);
	font-size:14px;
	text-transform:uppercase; 
}
.funfacts ul li{
	flex: 0 0 22%;
	margin:0;
	padding:0;
	border-right:1px solid rgba(255 ,255, 255, 0.2);
	text-align:center;
}
.funfacts ul li:last-child{
	border-right:0;
	}

.funfacts ul li h1{
	font-size:60px;
	line-height:normal;
	margin:0;
	font-weight:normal;		 
	text-align:center;
}	
.funfacts p{
	margin:0;
}
/*******funfacts end***********/

.brand-logo{}
/*************** brand-logos***************/

.brand-logos{ 
    width: 100%;
    display: flex;
	justify-content: center;
 
}
.brand-logos ul{
	width:100%;
	display: flex;
	flex-wrap: wrap; 
	margin:0;
	padding:0;
	list-style:none;
	justify-content: center;
	gap:0 4%;
 
}
.brand-logos ul li{
	flex: 0 0 16.8%;
	padding:0;
	-webkit-transition: all 300ms ease-in-out;
	-moz-transition: all 300ms ease-in-out;
	transition: all 300ms ease-in-out;
	text-align:center;
	justify-content: center; 
	border-bottom:2px solid var(--black);
}
 .brand-logos ul li:hover{
	 
}
  .brand-logos ul li img{   
    width:100%;
		-webkit-transition: all 300ms ease-in-out;
	-moz-transition: all 300ms ease-in-out;
	transition: all 300ms ease-in-out;
  }
 
  .brand-logos ul li:hover img{
    filter: grayscale(100%);  
  }
  
/****************SCROLLING TEXT***************/

.scroll-head{
	background-color:var(--secondary-color);
	color:#fff;
	padding:35px 20px;
	font-size:24px;
	text-align:center;
}
 .scrolling-text-wrap {
    width:85%;
    overflow-x:hidden;
  	background-color:var(--white);
	color:var(--body-color);
    display: flex;
	position:absolute;
	bottom:0;
	right:0;
	z-index:2;
	justify-content: center;
	align-items: center;
}


.scroll {
  white-space: nowrap;
  margin: 0;
  overflow:hidden;
   
}

.scroll div {
  display: flex;
  gap: 2em;
  
  
}

.scroll h2 {
  font-size: 18px;
  color: var(--body-color);
  font-weight: normal;
  margin:0;
  line-height:normal;
 
}

.RightToLeft {
  animation: RightToLeft 30s infinite linear;

  
}

@keyframes  RightToLeft {
  from {
    transform: translateX(0%);
  }
  to {
    transform: translateX(-50%);
  }
}


 .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**********************/
 
 
 .data{
 	width:100%;
	border-bottom:1px solid var(--grey);
	padding:20px 0;
	color:var(--quaternary-color);
 }
 
 .data h2{
 	font-size: 24px;
	margin:5px 0;
	line-height:normal;
	color:var(--primary-color);
	font-weight:600;
 }
  
  .data p:last-child{
  	margin:0;
  }
  .bx-shadow{
 
	min-height:200px;
	background-color:var(--white);
	box-shadow: 0 15px 50px 0 rgba(243,243,243,0.9);
 
}

.iconic{
	font-size:14px;
	line-height:16px;
	width:100%;
	display:block;
	position:relative;
	color:#414141;
	padding:25px 25px 25px 110px;
	border-bottom:1px solid rgba(0, 0, 0,0.1);
}
.iconic:last-child{
	border-bottom:0;
}
.iconic h2{
	font-size:14px;
	line-height:20px;
	margin:0 0 10px 0;
	text-transform:uppercase;
	color:var(--body-color);
 
}
.webicon{	
	position:absolute;
	left:20px;
	top:10px;	
	width:80px;
	height:80px;
	-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%;
}
.iconic:hover .webicon{
	left:10px;
 
}
/***************/
.certificate-slider{
	padding:0 100px;
}
 .boxy-shadow{
 	 
	padding:20px;
	border-radius: 20px;
	border:1px solid var(--grey);
 }
  .boxy-shadow img{
 	width:100%;
	display:block;
 }
/**********************news**********************/
 .display-style{
	background-color:var(--white);	 
	overflow:hidden;
	box-shadow: 0 15px 80px 0 rgba(0,0,0,0.17);
} 
.display-desc{
    padding: 40px 40px;
    color: var(--body-color);
	background-color:var(--white);
	z-index:1;
}
.date{
    font-size: 14px;
	color:#666;
	margin:0 0 10px 0;
 
}
.date i{
	margin:0 10px 0 0;
}
.display-desc h2{
  font-size: 20px;
  line-height: 28px;
  margin-bottom: 20px;
  color: var(--body-color);
  font-weight:600;
 
}
.display p:last-child{
    margin-bottom:0;
}
.display a{
	 color: var(--body-color);
}

/*****************/

/*************** footer CSS ***************/

 
  
 
footer {
	background-color:var(--tertiary-color);
	padding:100px 0 0 0;
	text-align:center;
	background-image: url(../images/footer-logo-shape.png);
	background-repeat: no-repeat;
	background-position: right bottom;
	background-attachment:fixed;
}

footer a, .footer-bottom  a, .footer-col a {
	color:var(--body-color);
}
.footer a:hover, .footer-bottom  a:hover, .footer-col a:hover {
	color: rgb(0, 0, 0, 0.7);
}

footer h3{
	font-size:26px;
	line-height:34px;
}
 
.footer-bottom {
	border-top: 1px solid rgba(0, 0, 0, 0.2);
    width: 100%;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
	padding:30px 0 ;
	margin-top:50px;
	text-align:center;
	justify-content: center;
 
}
 
 
.footer-logo{
	width:80px;
	 
} 

.powered{
	text-align:right;
}

.icon_box {
	/*padding: 40px 30px;
	background-color:var(--grey);
	color:var(--black);
	margin-bottom:20px;*/
	/*border-bottom: 1px solid rgba(255, 255, 255, 0.2);*/
	color:var(--body-color);
}

 

.icon_box i {	 
	float: left;
	margin: 0px 30px 0px 0px;
	padding: 8px;
	/*border-radius: 100%;*/
	width: 45px;
	height: 45px;
	text-align: center;
	background-color: var(--primary-color);
	line-height: 30px;
	color:var(--white);
	-webkit-transition: all 300ms ease-in-out;
	-moz-transition: all 300ms ease-in-out;
	transition: all 300ms ease-in-out;
 }

.icon_box .descripion {
	display: block;
	overflow: hidden;
	margin-bottom:20px;
}

.icon_box .descripion h5 {
	font-size: 18px;
	margin: 0 0 8px 0;
	font-family:var(--heading-font);
 
 
}

.icon_box p {
	margin: 0;
}
.icon_box a {
	color:var(--body-color);
}
.icon_box a:hover {
	color: var(--primary-color)
}

/******************************/
 


 
 
ul.list {
	margin: 0;
	padding: 0;
	margin-bottom: 30px;
}

ul.list li {
	list-style: none;
	padding: 2px 7px 10px 30px;
	line-height: normal;
	position: relative;
	color:var(--primary-color);
 
 
}

ul.list li:before {
	/*content: "\f111";*/
	content: "\f138";
	position: absolute;
	top: 4px;
	left: 0;
	font-family: "FontAwesome";
	color: var(--primary-color);
	font-size: 16px;
}
 

/********************/

  
.gallery{}
.gallery .hover-effect img {
	display:block;
	-moz-transition: all 7s ease;
	-o-transition: all 7s ease;
	-webkit-transition: all 7s ease;
	transition: all 7s ease;
	width:100%;
  height: 250px;
  object-fit: cover;
}
 
 
.google-map {
	width: 100%;
	height: 450px;
	border: 0;
	overflow-x: hidden;
	display: block;
}

/*****************************/



.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%;
	width:900px;
	border-collapse: collapse; 
	
	}

/* 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: 14px;
	}
 
/************************/
.table-wrap{
	width:100%;
	position:relative;
	display:flex;
	overflow-x:scroll;
} 
/******************************team-style*****************/

.radius-circle{
	border-radius:50%;
	overflow:hidden;
}

 
.client-logos{
    width: 100%;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
	justify-content: center;
	}

.client-logos  div{
	width:16.66666666666667%;
	padding:20px;
}
.client-logos  div img{
	width:100%;
	display:block;
	border:1px solid var(--grey);
}
/*************** INNER BANNER ***************/
.banner { 
	width: 100%;
	height:700px;
	overflow:hidden;
	display: flex;
	flex-direction:column;
	position: relative;
	align-items: center;
	justify-content: center;
	text-align:center;
	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/banners/banner.jpg);
	
}

.banner h2 {
	color: var(--white);
	font-weight: normal;
	line-height: normal;
	margin:0;
	padding:0;
	font-size:40px;
	font-family: 'GilroyBold_0';
	position:relative;
	z-index:4;
}

/************/
  .breadcrumb {
    width: 100%;
    display: flex;
	color:var(--white);	
	margin:0 ;
 
}
 

.breadcrumb ul {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    margin: 0;
    padding: 10px 25px;
	background-color:var(--primary-color);
 
}
    
.breadcrumb li:not(:last-child)::after {
    display: inline-block;
    margin: 0 15px;
    content: " → ";
 
}
 .breadcrumb a{
    color:var(--white);	
}
 .breadcrumb a:hover{
   color:var(--secondary-color);
 
}
 .breadcrumb  span{
 	color:var(--white);	
}

 
/*.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;
} 

.home-screen {
	background: url(../images/parallax/home-screen.jpg);
	height:700px;
	background-repeat: no-repeat;
	background-position: center center;
	-moz-background-size: cover;
	-webkit-background-size: cover;
	-o-background-size: cover;
	background-size: cover;
	display: flex;
	align-items: center;
 
	
} 
.vector-brand {
	background-image: url(../images/vector-brand-portion.png);
	background-repeat: no-repeat;
	background-position: right center;
	background-attachment:fixed;
 
} 



.bg1 {
	background: url(../images/parallax/bg1.jpg);
}

.bg2 {
	background: url(../images/bg2.jpg) no-repeat top center;
}

.bg3 {
	background: url(../images/bg3.jpg) no-repeat top center;
}


/*********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: 1px solid var(--primary-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;
}

/**********forms**************/
form {
	margin: 0;
	padding: 0;
}

*:focus {
	outline: none;
}

.fieldset {
	width: 100%;
	padding:20px 0;
	background-color: none;
	background-color: transparent;
	display: block;
	border: 0;
	box-shadow: 0 1px 0 0 #000;
	margin: 0;
	color: var(--body-color);
	font-size: 16px;
 
}

.sendbutton {
	width: auto;
	height: auto;
	border: 0;
	outline: 0;
	margin: 0;
	display: inline-block;
	color:var(--white);
	font-size: 20px;
	cursor: pointer;
	vertical-align: top;
	padding: 15px 30px;
	text-align: center;
	background-color: var(--primary-color);
	text-transform: uppercase;
	font-weight: normal;
	font-family:var(--heading-font);
	-webkit-transition: all 300ms ease-in-out;
	-moz-transition: all 300ms ease-in-out;
}

.sendbutton:hover {	
	background-color: var(--primary-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);
}

 

 

 
/************************************* 1180px *************************************/
@media only screen and (max-width: 1280px) {
	.container {
		width: 100%;
		padding:0 20px;
	}
	
	.certificate-slider{
	padding:0  50px;
}
}

/************************************* 1024px *************************************/
@media only screen and (max-width: 1024px) {
 
 .client-logos  div{
	width:20%;
	padding:10px;
}
 

}

/************************************* 980px *************************************/
@media only screen and (max-width: 980px) {

 
}

/************************************* 900px *************************************/
@media only screen and (max-width: 900px) {



 .funfacts{
	 
	 }

 .funfacts ul{
	gap:0;
	padding:20px 0;	
	font-size:12px; 
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}
.funfacts ul li{
	flex: 0 0 50%;
	padding:20px;
	margin:-1px 0 0 -1px;
	border:1px solid #963164 !important;
 
}
.funfacts ul li img{
	width:80px;
}
.funfacts ul li h1{
	font-size:20px;
 
}
.brown-layer{
 
	height:80%;
}
	
.brand-logos ul li{
	flex: 0 0 31%;
	 
 
}
	.certificate-slider{
	padding:0;
}
}

/************************************* 767px *************************************/
@media only screen and (max-width: 768px) {

body{
	font-size:14px;
}

header,
header.smaller {
		position: relative !important;
		left: auto !important;
		top: auto !important;
		background-color:var(--white);
}
 
.head-right{
	gap:0;
 
}

.logo img, header.smaller img {
	width:100px;
	}
 
 
.column-reverse {
	flex-direction: column-reverse;
	}

hr {
	margin: 20px 0;

	}
	

.banner { 
	 height: 150px;
	}

.link a {
	padding: 10px 40px 10px 15px;
	line-height: 12px;
	font-size:12px;
	background-repeat: no-repeat;
	background-position:90% center;
 
}
.res-title{
	display:none;
}
.top-btn {	 
	padding: 10px 0 10px 20px; 
	border-right:0;

}
.top-section, .vector-brand{
	background-image: none;
 
}

 
.index-intro{
	padding:30px 0;
	}
	
.heading{
	font-size:24px;
	line-height:30px;
	}
.subheading, .page-title {
  font-size:20px;
  
}	
.page-title {
	margin:0 0 15px 0;
}
.home-screen {
	height:200px;
} 
 
footer {
	padding:50px 0 0 0;
	background-image:none;

} 
.footer-bottom {
	padding:20px 0 ;
	margin-top:20px;
 
}	
 
 footer h3{
 
	font-size:20px;

}
 
 
.powered{
	text-align:center;
}
 	
.footer-logo{
	width:80px;
	margin:15px 0 
}
 
 


 .scroll-head{
	padding:10px 20px;
	font-size:18px;
	
 
}
 .scrolling-text-wrap {
    width:100%;
	position:relative;
	left:auto;
	bottom:auto;
	display:block;
}
.scroll h2 {
  font-size: 14px;
  padding:15px 20px;
  background: url(../images/donts/png);
  background-color:var(--primary-color);
  color:var(--white);
}

.RightToLeft {
  animation: RightToLeft 8s infinite linear;
}
 

.breadcrumb ul {
    padding: 5px 15px;
}

 
.head-style{
	padding:15px 20px;
	font-size:14px;
}
.heading-big{
	font-size:30px;
}


 .flex-grid-four {
	gap:30px 1%;
}


.flex-grid-four .col {
  flex: 0 0 49%;
 
}


 
.gallery .hover-effect img {
   height: 150px;
   
}

 
}

/************************************* 640px *************************************/
@media only screen and (max-width: 640px) {
 
 .brand-logo{
 	width:150px;
 }
 	
 .client-logos  div{
	width:33.33333333333333%;
	padding:5px;
 
}
  

}

/************************************* 480px *************************************/
@media only screen and (max-width: 480px) {
	 
.gallery .hover-effect img {
  height: 100px;
 
}
 
 .rotating-circle{
	width:100px;
	height:100px;
	left:50%;
	top:20px;
	margin:-50px 0 0 -50px;
}
 
 

}

/************************************* 360px *************************************/
@media only screen and (max-width: 360px) {}

/************************************* 320px *************************************/
@media only screen and (max-width: 320px) {}