/* HEADER INFO */

.header-info-left ul li{
	color:white;
	font-size:1.2rem;
}

.header-social ul li{
color:white;
margin-left:10px;
}
.header-social a{
	color:#fff;
	font-size: 1.5rem;
	margin-left:10px;
}
/* HEADER INFO */


/* NAVBAR */
nav .navbar-nav li a{
	font-family: 'Poppins', sans-serif;
	color: white !important;
	font-size:0.9rem;
	}

	nav .navbar-nav li a:hover {
		color: #f07d00 !important;
		transition: 0.3s;
	}
/* NAVBAR */

/* FIRST PAGE */

.belt-cont{
	padding-top:40px;
	padding-bottom:40px;
  }
  
  .belt2 {
	background: linear-gradient(to right bottom, #2f3441 50%, #212531 50%);
  }
  .belt3 {
	padding-top:40px;
	padding-bottom:50px;
	background: linear-gradient(to left bottom, #2f3441 50%, #212531 50%);
  }
  .belt2 h3,p{
	color:#fff;
  }
  .belt2 h3{
	text-align:center;
	font-size:2rem;
	padding-bottom:1rem;
  }
  .belt2 p{
	text-align:justify;
	font-size:1.4rem;
  }
  .text-box{
	padding-top:30%;
	padding-bottom:80px;
  }
  
	.arrow-down{
   
	--triangle-height: 200px; /* you can change this */
	--mask: linear-gradient(#000, #000) 0 0/100% calc(100% - var(--triangle-height)) no-repeat, 
			linear-gradient(to top right, transparent 49.5%, #000 50% 100%) 0 100%/50% var(--triangle-height) no-repeat, 
			linear-gradient(to top left, transparent 49.5%, #000 50% 100%) 100% 100%/50% var(--triangle-height) no-repeat;
	-webkit-mask: var(--mask);
	mask: var(--mask);
	width: 100%;
	height: 250px;
	background-color: #212531;
	background-repeat: no-repeat;
  
  } 
  .container-vert { 
	height: 300px;
	position: relative;
  }
  
  .center {
	margin: 0;
	position: absolute;
	top: 50%;
	left: 50%;
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
  }
  .screen{
	z-index:-1;
	position: absolute;
	height:44vh;
	background-color: #2f3441;
  }
  .years{
	background-color: #2f3441;
  }
  .years .text-box{
	padding-top:30%;
	padding-bottom:80px;
  }
  .years .text-box p{
	text-align: justify;
	font-size:1.4rem;
  }
  .years .text-box h3{
	padding-bottom:1rem;
	text-align:center;
	font-size:2rem;
	color:#fff;
  }
  .card-text p{
	font-size:1.1rem;
	text-align:center;
  }
  .card-text{
	text-align: center;
	margin:10px;
	padding:5px;
	background-color: #000d20;
  }
  .card-text img{
	margin-bottom:10px;
  }
  .contact{
	height: 12vh;
	background-color: #212531 ;
  }
  .contact h4{
	color:white;
	padding-top:40px;
	font-size:2rem;
  }
  .contact p{
	color:white;
	padding-top:15px;
	font-size:1.2rem;
  }
  


/* FIRST PAGE */



.top-banner{
	background-color:#d6e3e9;
	margin-bottom:0px;
  }
  .top-banner h1{
	padding-top:20px;
	padding-bottom:20px;
	margin-bottom:-1px;
	color:#000;
  }
  .txt-bx{
	font-size:1.5rem;
  }
  .main4{
 background-color:#000d20;
 margin:0px;
 padding:0px;
 margin-bottom:-20px;
  }
   .main4 p{
   color:white;
   padding-bottom:50px;
   text-align: justify;
 }
 .main4 h2{
   padding-top:20px;
   padding-bottom:20px;
   color:white;
 }
 .main2 {
   padding: 40px;
   padding-bottom:40px;
   background: linear-gradient(to left bottom, #2f3441 50%, #212531 50%);
 }
 
 .main2 h3{
   text-align:center;
   color:white;
 }
 .main2 p{
   text-align:justify;
   font-size:1.4rem;
   color:white;
 }
 
 .main3{
   padding-top:30px;
   padding-bottom:30px;
   background-color:#000d20;
 }
 .main3 h4{
   text-align:center;
   color:white;
 }
 .main3 p{
   font-size:1.5rem;
   color:white;
   padding-bottom:50px;
   text-align: justify;
 }
 .bottom-banner{
   padding-top:30px;
   padding-bottom:30px;
 }
 
 .privacy{
   height:100px;
   background-color: #000d20;
 }
 .privacy h5{
   text-align:center;
   padding-top:35px;
   font-size:1.4rem;
   color:#f5be15;
 }



/*ACCORDIAN*/
.accordian {
	width: 100%; 
	overflow: hidden;
	background-color: #000d20;
	/*Time for some styling*/
	box-shadow: 0 0 10px 1px rgba(0, 0, 0, 0.35);
	-webkit-box-shadow: 0 0 10px 1px rgba(0, 0, 0, 0.35);
	-moz-box-shadow: 0 0 10px 1px rgba(0, 0, 0, 0.35);
}

/*A small hack to prevent flickering on some browsers*/
.accordian ul {
	width: 100%;
	/*This will give ample space to the last item to move
	instead of falling down/flickering during hovers.*/
}

.accordian li {
	position: relative;
	display: block;
	width: 140px;
	float: left;
	
	border-left: 1px solid #888;
	
	box-shadow: 0 0 25px 10px rgba(0, 0, 0, 0.5);
	-webkit-box-shadow: 0 0 25px 10px rgba(0, 0, 0, 0.5);
	-moz-box-shadow: 0 0 25px 10px rgba(0, 0, 0, 0.5);
	
	/*Transitions to give animation effect*/
	transition: all 0.5s;
	-webkit-transition: all 0.5s;
	-moz-transition: all 0.5s;
	/*If you hover on the images now you should be able to 
	see the basic accordian*/
}

/*Reduce with of un-hovered elements*/
.accordian ul:hover li {width: 40px;}
/*Lets apply hover effects now*/
/*The LI hover style should override the UL hover style*/
.accordian ul li:hover {width: 640px;}


.accordian li img {
	display: block;
}

/*Image title styles*/
.image_title {
	background: rgba(0, 0, 0, 0.5);
	position: absolute;
	left: 0; bottom: 0;	
width: 640px;	

}
.image_title a {
	display: block;
	color: #fff;
	text-decoration: none;
	padding: 20px;
	font-size: 16px;
}
/*ACCORDIAN*/

/*Image title styles*/
.image_title {
	background: rgba(0, 0, 0, 0.5);
	position: absolute;
	left: 0; bottom: 0;	
	width: 1850px;	

}
.image_title a {
	display: block;
	color: #fff;
	text-decoration: none;
	padding: 20px;
	font-size: 16px;
}

.header-area{
	background:#000c20;
}
.header-area ul li{
	padding-top:10px;
	display: inline-block;
}
.header-area li {

	color:#A39F9F;
}

.belt{
	background-color:#353a40;
}


/* SOCIAL ICONS */

svg-inline--fa {
	vertical-align: -0.200em;
  }
  
  .rounded-social-buttons {
	text-align: center;
  }
  
  .rounded-social-buttons .social-button {
	display: inline-block;
	position: relative;
	cursor: pointer;
	width: 3.125rem;
	height: 3.125rem;
	border: 0.125rem solid transparent;
	padding: 0;
	text-decoration: none;
	text-align: center;
	color: #fefefe;
	font-size: 1.5625rem;
	font-weight: normal;
	line-height: 2em;
	border-radius: 1.6875rem;
	transition: all 0.5s ease;
	margin-right: 0.25rem;
	margin-bottom: 0.25rem;
  }
  
  .rounded-social-buttons .social-button:hover, .rounded-social-buttons .social-button:focus {
	-webkit-transform: rotate(360deg);
		-ms-transform: rotate(360deg);
			transform: rotate(360deg);
  }
  
  .rounded-social-buttons .fa-twitter, .fa-facebook-f, .fa-linkedin, .fa-youtube, .fa-instagram {
	font-size: 25px;
  }
  
  .rounded-social-buttons .social-button.facebook {
	background: #ff5f13;
  }
  
  .rounded-social-buttons .social-button.facebook:hover, .rounded-social-buttons .social-button.facebook:focus {
	color: #ff5f13;
	background: #fefefe;
	border-color: #ff5f13;
  }
  
  .rounded-social-buttons .social-button.twitter {
	background: #ff5f13;
  }
  
  .rounded-social-buttons .social-button.twitter:hover, .rounded-social-buttons .social-button.twitter:focus {
	color: #ff5f13;
	background: #fefefe;
	border-color:#ff5f13;
  }
  
  .rounded-social-buttons .social-button.linkedin {
	background: #ff5f13;
  }
  
  .rounded-social-buttons .social-button.linkedin:hover, .rounded-social-buttons .social-button.linkedin:focus {
	color: #ff5f13;
	background: #fefefe;
	border-color: #ff5f13;
  }
  
  .rounded-social-buttons .social-button.youtube {
	background: #ff5f13;
  }
  
  .rounded-social-buttons .social-button.youtube:hover, .rounded-social-buttons .social-button.youtube:focus {
	color: #ff5f13;
	background: #fefefe;
	border-color: #ff5f13;
  }
  
  .rounded-social-buttons .social-button.instagram {
	background: #ff5f13;
  }
  
  .rounded-social-buttons .social-button.instagram:hover, .rounded-social-buttons .social-button.instagram:focus {
	color: #ff5f13;
	background: #fefefe;
	border-color: #ff5f13;
  }

  .social-title h1{
	color:white;
	font-size:2rem;
  }
  .social-title h2{
	color: #f5be15;
	margin-left:25px;
  }
/* SOCIAL ICONS */