body {
	font-family: 'Open Sans', sans-serif;
	font-size: 14px;
	line-height: 24px;
	color: #37bdc1;
}
a {
    color: #19b8bc;
}
a:hover {
    color: #003658;
	text-decoration: none;
}
a {
    -webkit-transition: all 0.3s ease 0s;
    -moz-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}
h1 {
	font-size: 40px;
	line-height: 40px;
	font-weight: 800;
	text-transform: uppercase;
}
h2 {
	font-size: 34px;
	line-height: 34px;
	font-weight: 700;
	text-transform: uppercase;
}
h5 {
	font-size: 18px;
	line-height: 18px;
	font-weight: 700;
	text-transform: uppercase;
}
p {
	font-size: 16px;
	line-height: 28px;
}
.btn {
	border-radius: 0;
	text-transform: uppercase;
	font-size: 14px;
	font-weight: 400;
	padding: 10px 22px;
	margin-top: 18px;
	-webkit-transition: all 0.3s ease 0s;
    -moz-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;

}
.btn-primary {
    color: #fff;
    background-color: #19b8bc;
    border-color: #19b8bc;
	position: relative;
}
.btn-primary:hover {
    color: #fff;
    background-color: #29ccce;
    border-color: #29ccce;
	padding-right: 52px;
}
.btn-primary:after {
	content: url('../img/btn-arrow.png');
	right: 15px;
    position: absolute;
    top: 13px;
	opacity: 0;
	-webkit-transition: all 0.5s ease 0s;
    -moz-transition: all 0.5s ease 0s;
    -o-transition: all 0.5s ease 0s;
    transition: all 0.5s ease 0s;
}
.btn-primary:hover:after  {
	opacity: 1;
}
.btn-primary:not(:disabled):not(.disabled):active, .btn-primary:not(:disabled):not(.disabled).active, .show > .btn-primary.dropdown-toggle {
    color: #fff;
    background-color: #19b8bc;
    border-color: #19b8bc;
}
.btn-primary:not(:disabled):not(.disabled):active:focus, .btn-primary:not(:disabled):not(.disabled).active:focus, .show > .btn-primary.dropdown-toggle:focus {
    box-shadow: none;
}

@media (min-width: 2000px) {
	body {
		zoom: 140%;
	}
}

/*---Header----------------------------------------------------------*/

header {
	width: 100%;
	padding: 8px 0;
}
header .container {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: justify;
    justify-content: space-between;
}
header .navbar {
    display: block;
    text-align: center;
}
header .navbar-brand {
    margin-right: 0;
	margin-bottom: 8px;
}
header .navbar-nav .nav-link {
	padding: 0;
    text-transform: uppercase;
    font-size: 14px;
}
.navbar-light .navbar-nav .nav-link {
    color: #19b8bc;
	font-weight: 500;
}
.navbar-light .navbar-nav .active > .nav-link {
	color: #003658;
}
.navbar-light .navbar-nav .nav-link:hover, .navbar-light .navbar-nav .nav-link:focus {
    color: #003658;
}
.socialMedia .nav-link {
	background: #28ccd0;
    color: #fff;
    width: 32px;
    height: 32px;
    padding: 0;
    text-align: center;
    font-size: 18px;
    margin-right: 5px;
    padding-top: 3px;
}
.socialMedia .nav-link:hover {
    border-radius: 50%;
}
.hdContact {
	text-align: left;
	line-height: 22px;
}
.hdContact .nav-link {
	padding: 0;
	display: inline-block;
}
header .socialMedia, .hdContact {
	width: 160px;
}
.hdPhone {
	font-size: 20px;
	color: #003658;
	font-weight: 600;
}
.whatsappWeb {
	display: block;
}
.whatsappMob {
	display: none;
}
@media (max-width: 767px) {
	header .navbar {
		display: flex;
		width: 100%;
		padding: 0;
	}
	header .socialMedia, .hdContact {
		display: none;
	}
	header .navbar-brand {
		margin-right: 0;
		margin-bottom: 0;
	}
	header .navbar-brand img {
		width: 190px;
	}
	.navbar-nav {
		margin-top: 30px;
	}
	header .navbar-nav .nav-link {
		padding: 0.5rem 1rem;
	}
	.whatsappWeb {
		display: none;
	}
	.whatsappMob {
		display: block;
	}
}

/*---Banner----------------------------------------------------------*/

#carouselExampleIndicators {
	clip-path: polygon(0 0, 100% 0%, 100% 86%, 50% 100%, 0 86%);
	overflow: hidden;
	margin-bottom: -110px;
    z-index: 99;
}
.carouselCaptionBg {
	width: 100%;
    height: 264px;
    position: absolute;
    background: rgba(41, 204, 209, 0.8);
    bottom: 130px;
    transform: skewY(7.5deg);

	animation-name: fadeIn;
	-webkit-animation-duration: 1s;
	animation-duration: 1s;
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both;
	-webkit-animation-delay: .7s;
	animation-delay: .7s;
}
#carouselExampleIndicators .container {
	position: relative;
}
.sliderImg {
    width: 100%;
    height: 750px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}
.carousel-caption {
    position: absolute;
    right: inherit;
    bottom: 240px;
    left: 15px;
    z-index: 10;
    padding-top: 0;
    padding-bottom: 0;
    color: #fff;
    text-align: left;
	padding-right: 15px;
	
	animation-name: fadeInDown;
	-webkit-animation-duration: 1s;
	animation-duration: 1s;
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both;
	-webkit-animation-delay: 1.2s;
	animation-delay: 1.2s;
}
.carousel-caption span {
	color: #003658;
}
.carousel-caption img {
    margin-top: 6px;
    margin-right: 25px;
}
.carousel-caption h1 {
	position: relative;
}
.carousel-caption h1:after {
	content: '';
	width: 65px;
    height: 2px;
    background: #fff;
    position: absolute;
    bottom: -10px;
    left: 0;
}
@media (max-width: 1400px) {
.sliderImg {
    height: 540px;
}
.carousel-caption {
    bottom: 172px;
}
.carouselCaptionBg {
    height: 230px;
    bottom: 80px;
}
}
@media (max-width: 767px) {
	.sliderImg {
		height: 550px;
		background-position: 59% center;
	}
	.carousel-caption {
		bottom: 60px;
	}
	.carousel-caption h1 {
		font-size: 28px;
		line-height: 28px;
	}
}
@media (max-width: 575px) {
	.carouselCaptionBg {
		transform: skewY(16.5deg);
		bottom: 20px;
	}	
}

/*---Home----------------------------------------------------------*/

.hAbout {
	width: 100%;
	background-image: url('../img/bg-pattern01.png');
	padding-top: 180px;
	padding-bottom: 88px;
	position: relative;
}
.hAbout .container {
	position: relative;
	z-index: 2;
}
.hAbout:before, .hAbout:after {
	position: absolute;
	top: 30%;
	opacity: 0.1;
	z-index: 1;
}
.hAbout:before {
	content: url('../img/bg-icon01.png');
	left: 10%;
}
.hAbout:after {
	content: url('../img/bg-icon02.png');
	right: 10%;
}
.hAbout img {
	max-width: 100%;
	position: absolute;
    bottom: -172px;
    padding-right: 60px;
}
.paragraphTitle {
position: relative;
    margin-bottom: 30px;
    padding-bottom: 20px;
    margin-top: 10px;
}
.paragraphTitle:after {
	content: '';
	width: 65px;
    height: 2px;
    background: #fff;
    position: absolute;
    bottom: 0;
    left: 0;
}
.paragraphTitle .white  {
	color: #fff;
}
.paragraphTitle .blue  {
	color: #003658;
}
.ourSpecial {
	text-align: center;
	padding: 88px 0;
}
.ourSpecial .paragraphTitle:after {
    background: #26cdd0;
	left: 0;
	right: 0px;
	margin: auto;
}
.ourSpecialItem {
	padding-top: 60px;
}
.ourSpecialItem .icon img {
	-webkit-transition: all 0.3s ease 0s;
    -moz-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}
.ourSpecialItem  p {
	font-size: 16px;
	line-height: 22px;
	color: #003658;
	padding-top: 20px;
	-webkit-transition: all 0.6s ease 0s;
    -moz-transition: all 0.6s ease 0s;
    -o-transition: all 0.6s ease 0s;
    transition: all 0.6s ease 0s;
	
}
.ourSpecialItem:hover img {
	transform: translateY(-10px);
}
.ourSpecialItem:hover p {
	color: #19b8bc;
	transform: translateY(-10px);
}
.ourPeople {
	clip-path: polygon(0 0, 100% 0%, 100% 86%, 50% 100%, 0 86%);
	overflow: hidden;
	margin-bottom: -80px;
    z-index: 99;
	background: #19b8bc;
	color: #fff;
	background-image: linear-gradient(to bottom, rgba(41, 204, 209, 0.7), rgba(41, 204, 209, 0.7)),url('../img/bg-img01.jpg');
	background-position: top center;
	background-size: cover;
	padding: 88px 0 140px;
	position: relative;
}
.ourPeople .paragraphTitle:after {
	left: 0;
	right: 0px;
	margin: auto;
}
.ourPeopleItem {
	width: 344px;
	margin-top: 34px;
}
.ourPeopleItem  .nav {
    line-height: 18px;
    padding-left: 20px;
}
.ourPeopleItem  li {
    list-style: disc;
}
.ourPeopleItem img {
	float: left;
	margin-right: 28px;
	-webkit-transition: all 0.3s ease 0s;
    -moz-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}
.ourPeopleItem:hover img {
	transform: translateY(-10px);
}
.ourPeopleItem > div {
	margin-top: 22px;
}
.ourPeopleArrow {
	width: 20%;
}
	header {
    box-shadow: 0px 1px 15px 1px rgb(0 0 0 / 5%);
}
@media (max-width: 1199px) {
	.hAbout img {
		bottom: -157px;
	}	
	.ourPeopleItem img {
		margin-right: 15px;
		width: 72px;
	}
	.ourPeopleItem {
		width: 268px;
		margin-top: 20px;
	}
}
@media (max-width: 991px) {
	.hAbout img {
		bottom: -137px;
	}
}
@media (max-width: 767px) {
	.hAbout-page img {
    max-width: 100%;
    position: relative !important;
    bottom: 25px !important;
    padding-right: 0px !important;
    z-index: 9 !important;
}
	.hAbout img {
		margin-bottom: 30px;
		max-width: 50%;
		position: initial;
		padding-right: 0;
		display: none;
	}
	p {
		font-size: 15px;
	}
	.hAbout {
		padding-top: 150px;
	}

	.ourSpecial {
		padding: 70px 0;
	}
	.ourSpecialItem {
		padding-top: 36px;
	}
	.ourSpecialItem p {
		font-size: 14px;
		padding-top: 14px;
	}
	.paragraphTitle {
		font-size: 24px;
		line-height: 24px;
	}
	.ourPeople {
		padding: 70px 0;
		margin-bottom: -100px;
	}
	.ourPeopleItem {
		width: 300px;
		margin-top: 20px;
		margin: auto;
	}
	.ourPeopleItem > div {
		margin-top: 32px;
	}
	.ourPeopleArrow {
		display: none !important;
	}
}

/*---Footer----------------------------------------------------------*/

footer {
	width: 100%;
	background-image: url('../img/bg-pattern01.png');
	padding-top: 160px;
	padding-bottom: 80px;
	position: relative;
}
footer .container {
	position: relative;
	z-index: 2;
}
footer:before, footer:after {
	position: absolute;
	top: 0;
	opacity: 0.1;
	z-index: 1;
}
footer:before {
	content: url('../img/bg-icon03.png');
	left: 10%;
}
footer:after {
	content: url('../img/bg-icon04.png');
	right: 10%;
}
footer p {
	font-size: 13px;
    line-height: 22px;
    margin-top: 14px;
    margin-bottom: 30px;
}
.footerHeading {
    font-size: 15px;
    color: #fff;
    padding-bottom: 10px;
    font-weight: 700;
	text-transform: uppercase;
}
footer .nav-link {
    padding: 3px 0;
}
footer .nav-link:hover {
    color: #fff;
}
.copyRight {
	text-align: center;
    text-transform: uppercase;
    color: #19b8bc;
    padding: 30px 15px;
    font-weight: 600;
}
@media (max-width: 767px) {
	.footerHeading {
		padding-top: 39px;
	}
}
@media (max-width: 575px) {
	footer {
		text-align: center;
		padding-bottom: 54px;
	}
	footer .row {
		display: block;
	}
	.socialMedia {
		-ms-flex-pack: center;
		justify-content: center;
	}
}


/*---About----------------------------------------------------------*/

	.hAbout-page{
    width: 100%;
    padding-top: 120px;
    padding-bottom: 88px;
    position: relative;
    z-index: 999;
}
		.hAbout-page img {
    max-width: 100%;
    position: absolute;
    bottom: -172px;
    padding-right: 60px;
    z-index: 9;
}

	.hAbout-page h2.paragraphTitle .white {
    color: #01385b;
}
	.hAbout-page p {
    color: #01385b;
}
	.hAbout-page h2.paragraphTitle:after {
    content: '';
    width: 65px;
    height: 2px;
    background: #000;
    position: absolute;
    bottom: 0;
    left: 0;
}
/*---CONTACT ----------------------------------------------------------*/
.padding_60{
	padding: 60px 0px;
}
.contact_pagebox {
    text-align: left;
}
.class_sec.contact_page {
    /*display: inline-block;*/
    /*margin: 10px 40px;*/
    /*width: 20%;*/
    /*background-color: white;*/
    padding: 10px 10px;
    /*box-shadow: 1px 1px 20px 2px rgb(0 0 0 / 5%);*/
}
.icon_foot img {
    width: 40px;
    margin-bottom: 20px;
}
.text_foot p, .text_foot p a {
    color: #013658;
}
.icon_foot img {
	-webkit-transition: all 0.3s ease 0s;
    -moz-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}
.text_foot p {
	/*font-size: 16px;*/
	line-height: 22px;
	color: #003658;
	/*padding-top: 20px;*/
	-webkit-transition: all 0.6s ease 0s;
    -moz-transition: all 0.6s ease 0s;
    -o-transition: all 0.6s ease 0s;
    transition: all 0.6s ease 0s;
	
}
.contact_page:hover img {
	transform: translateY(-10px);
}
.contact_page:hover  {
    /*box-shadow: 1px 1px 20px 2px rgb(0 0 0 / 10%);*/
    padding: 10px 10px;
}
.contact_page:hover p {
	color: #19b8bc;
	transform: translateY(-10px);
}
.contact_page:hover p a{
	color: #19b8bc;
	transform: translateY(-10px);
}
.icon_foot {
    display: inline-block;
        vertical-align: middle;
}
.text_foot {
    vertical-align: middle;
    display: inline-block;
    padding-left: 10px;
}
.form-control {
    font-size: 0.9rem;
    }
    .btn-primary.disabled, .btn-primary:disabled {
    color: #013658;
    background-color: #ffffff;
    border-color: #75dde0;
        pointer-events: none;
            opacity: 0.65;
}
div.title-section h2.paragraphTitle:after {
    content: '';
    width: 65px;
    height: 2px;
    background: #0a3d5e;
    position: absolute;
    bottom: 0;
    left: 0;
}