*{
	font-family: 'Montserrat', sans-serif!important;
}

.top-social-section{
	background-color: #00bcd5;
	padding-top: .5rem;
	padding-bottom: .5rem;
}

.top-social-section a:hover{
	text-decoration: none;
}


.top-social-section .nav-link{
	color: rgba(255,255,255, 0.7);
	padding-left: 8px;
	padding-right: 8px;
	font-size: 17px;
}

.top-social-section .nav-link:hover{
	color: rgba(255,255,255, 1);
}

.top-nav-bar a:hover{
	text-decoration: none;
}


.top-nav-bar .nav-item{
	padding-right: 1rem;
	padding-left: 1rem;
}

.top-nav-bar .nav-link{
	font-size: 14px;
	font-weight: 700;
}

.btn-custom-1 {
  color: white;
  border-color: #00bcd5;
  background-color: #00bcd5;
  padding: 15px 30px;
  font-weight: 600;
  font-size: 14px;
}

.btn-custom-1:hover{
  color: white;
  border-color: #032737;
  background-color: #032737;
  text-decoration: none;
}

.btn-custom-2 {
  color: white;
  border-color: #00bcd5;
  background-color: #00bcd5;
  padding: 15px 30px;
  font-weight: 600;
  font-size: 14px;
}

.btn-custom-2:hover{
  color: #00bcd5;
  border-color: #fff;
  background-color: #fff;
  text-decoration: none;
}

.btn-custom-3 {
  color: white;
  border-color: none;
  background-color: rgba(255,255,255,0.4);
  padding: 15px 30px;
  font-weight: 600;
  font-size: 14px;
}

.btn-custom-3:hover{
  color: #00bcd5;
  border-color: #fff;
  background-color: #fff;
  text-decoration: none;
}

.btn-custom-4 {
  color: white;
  border-color: #032737;
  background-color: #032737;
  padding: 15px 30px;
  font-weight: 600;
  font-size: 14px;
}

.btn-custom-4:hover{
  color: #00bcd5;
  border-color: #fff;
  background-color: #fff;
  text-decoration: none;
}

.btn-custom-5 {
  color: white;
  border-color: #032737;
  background-color: #032737;
}

.btn-custom-5:hover{
  color: #00bcd5;
  border-color: #fff;
  background-color: #fff;
  text-decoration: none;
}

.homepage-banner{
	background-image: url('../images/homepage-banner.jpg');
	background-size: cover;
	background-position: center;
	background-attachment: fixed;
	padding: 0;
}

.homepage-banner-overlay{
	background-color: rgba(3,39,55,0.8);
	width: 100%;
	padding-top: 10vw;
	padding-bottom: 10vw;
}

.homepage-banner-text{
	text-align: center;
	max-width: 900px;
	margin-left: auto;
	margin-right: auto;
}

.homepage-banner-text h1{
	color: white;
	font-weight: 700;
	font-size: 42px;
}

.homepage-banner-text h4{
	color: rgba(255, 255, 255, 0.6);
	font-weight: 400;
	font-size: 20px;
}

.about-us-section{
	padding-top: 5vw;
	padding-bottom: 5vw;
}

.about-us-section h3{
	color: #032737;
	font-weight: 700;
	font-size: 32px;
	margin-top: 100px;
	
}

.about-us-section h3:after{
	content: '';
    width: 50px;
    height: 6px;
    display: block;
    background: rgba(0, 188, 213, 1);
    margin-top: 12px;
    border-radius: 8px;
    margin-bottom: 1vw;
}

.about-us-section p{
	font-size: 16px;
	color: #666666;
	font-weight: 400;
}

.services-section{
	padding-top: 5vw;
	padding-bottom: 5vw;
}

.services-section h3{
	color: #032737;
	font-weight: 700;
	font-size: 32px;
	
}

.services-section h3:after{
	content: '';
    width: 50px;
    height: 6px;
    display: block;
    background: rgba(0, 188, 213, 1);
    margin-top: 12px;
    border-radius: 8px;
    margin-bottom: 1vw;
    margin-left: auto;
    margin-right: auto;
}

.services-section p{
	font-size: 16px;
	color: #666666;
	font-weight: 400;
	max-width: 800px;
}
.services-section h6{
	font-weight: 500;
}



.mission-vission-section{
	background-image: url('../images/mission-vission.jpg');
	background-size: cover;
	background-position: center;
		background-attachment: fixed;
	padding: 0;
}

.mission-vission-overlay{
	background-color: rgba(3,39,55,0.8);
	width: 100%;
	padding-top: 5vw;
	padding-bottom: 5vw;
}

.mission-vission-section h3{
	color: white;
	font-weight: 700;
	font-size: 32px;
	margin-top: 5vw;
	
}

.mission-vission-section h3:after{
	content: '';
    width: 50px;
    height: 6px;
    display: block;
    background: rgba(255, 255, 255, 0.35);
    margin-top: 12px;
    border-radius: 8px;
    margin-bottom: 1vw;
}



.mission-vission-section p{
	font-size: 16px;
	color: #f1f1f4;
	font-weight: 400;
}


.card-img-wrap {
  overflow: hidden;
  position: relative;
}

.card-img-wrap:after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(255,255,255,0.3);
  opacity: 0;
}
.card-img-wrap img {
  transition: transform 1s;
  width: 100%;
  border-radius: 0;
}
.card-img-wrap:hover img {
  transform: scale(1.3);
}

.card-img-wrap:hover:after {
  /*opacity: 1;*/
}

.uk-overlay-default{
  background-color: rgba(255,255,255,0.7);
  pointer-events: none;
}

.custom-radius{
	border-radius: 10px;
}


.benefits-section{
	background-image: url('../images/benefits.jpg');
	background-size: cover;
	background-position: center;
	background-attachment: fixed;
	padding: 0;
}

.benefits-overlay{
	background-color: rgba(3,39,55,0.8);
	width: 100%;
	padding-top: 2vw;
	padding-bottom: 1.5vw;
}

.benefits-section h1, .benefits-section h5{
	color: white;
}

.benefits-section p{
	color: rgba(255,255,255,.6);
	font-size: 15px;
}

.benefits-section .card{
	background-color: transparent;
	border: none;
}

.call-to-action-section{
	background-color: #00bcd5;
	padding-top: 40px;
	padding-bottom: 20px;
}

.call-to-action-section h3{
	color: white;
	font-size: 24px;
	font-weight: 600;
}

.call-to-action-section p{
	color: rgba(255,255,255,0.8);
	font-size: 15px;
}

.footer-section-1{
	padding-top: 4vw;
	padding-bottom: 2vw;
	background-color: #0c4a66;
}

.footer-section-1 h4{
	font-size: 20px;
	color: white;
	font-weight: 600;
	text-align: left;
	margin-bottom: 12px;
}

.footer-section-2{
	padding-top: 10px;
	padding-bottom: 10px;
	background-color: #032737;
	font-size: 14px;
}

.footer-links{
	list-style-type: none;
  	margin: 0;
 	padding: 0;
  	color: #a8a8a8;
  	font-size: 14px;
}

.footer-links li{
	padding-bottom: 0.6rem;
}

.footer-links a{
  color: rgba(255,255,255, 0.5);
  text-decoration: none;
}

.footer-links a:hover{
  	color: #00bcd5;
  	text-decoration: none;
}


#lsr .btn-close, #isdd .btn-close, #pm .btn-close, #cr .btn-close, #sr .btn-close {
	position: absolute; 
	right: 5px; 
	top: 5px; 
	z-index: 3;
}


::placeholder{
  font-size: 14px;
  color: #495057;
  font-weight: 400;
  font-style: normal;
}

input[type=text], input[type=email], input[type=tel], select{
  color: black;
  font-size: 14px;
  /*border-radius: 0rem;*/
  height: 45px;
}

textarea{
  color: black!important;
  font-size: 14px;
  /*border-radius: 0rem!important;*/
}

input[type=text]:focus, input[type=email]:focus, input[type=tel]:focus, textarea:focus{
  border: 1px solid #1452b5!important;
  box-shadow: none!important;
}
.invalid-input{
  border: 1px solid red!important;
}

.valid-input{
  border: 1px solid green!important;
}


.btn-custom-10 {
  color: white;
  border-color: #00bcd5;
  background-color: #00bcd5;
  padding: 15px 30px;
  font-weight: 600;
  font-size: 14px;
}

.btn-custom-10:not([disabled]):hover {
  color: white;
  border-color: #032737;
  background-color: #032737;
  text-decoration: none;
  -webkit-transition: all 0.50s linear 0s;
  -o-transition: all 0.50s linear 0s;
  -moz-transition: all 0.50s linear 0s;
  -ms-transition: all 0.50s linear 0s;
  transition: all 0.50s linear 0s;
}






@media(min-width: 991.99px){

	.menu-social-icons{
	  	display: none;
	  }



}

@media (max-width: 991.98px) { 

  .top-social-section{
    display: none;
  }

  
  #navbarNav{
  	text-align: center;
  }

  .homepage-banner-overlay{
  	padding-top: 150px;
  	padding-bottom: 150px;
  }

	.homepage-banner h1{
		font-size: 24px;
	}

	.homepage-banner h4{
		font-size: 16px;
	}

	.about-us-section h3{
		font-size: 24px;
		text-align: center;
		margin-top: 20px;
	}

  	.about-us-section h3:after{
		margin-right: auto;
		margin-left: auto;
		margin-bottom: 20px;
	}

	.about-us-section{
		padding-bottom: 50px;
	}

	.mission-vission-section h3{
		font-size: 24px;
		margin-top: 20px;
	}

	.mission-vission-section h3:after{
		margin-bottom: 20px;
	}

	.mission-vission-overlay{
		padding-bottom: 50px;
	}

	.services-section h3{
		font-size: 24px;
		margin-top: 20px;
	}

	.services-section h3:after{
		margin-bottom: 20px;
	}

	.benefits-overlay{
		padding-top: 50px;
		padding-bottom: 50px;
	}

	.call-to-action-section{
		padding-bottom: 50px;
		padding-top: 50px;
		text-align: center;
	}

	.footer-section-1{
		padding-bottom: 50px;
		padding-top: 50px;
	}

	.footer-section-1 .col-md-4:not(:last-child){
		margin-bottom: 30px;
	}

}



#scrollToTop {
  display: none;
  position: fixed;
  bottom: 20px;
  right: 30px;
  z-index: 99;
  color: white;
  border-color: #00bcd5;
  background-color: #00bcd5;
  font-weight: 600;
  height: 50px;
  width: 50px;
}

#scrollToTop:hover {
  color: #00bcd5;
  border-color: #fff;
  background-color: #fff;
  text-decoration: none;
}




