@import url('https://fonts.googleapis.com/css?family=Lato:100,100i,300,300i,400,400i,700,700i,900,900i|Oswald:200,300,400,500,600,700|Roboto+Condensed:300,300i,400,400i,700,700i&display=swap');

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	outline: none;
}

html {
	-webkit-text-size-adjust: none;
	width: 100%;
	height: 100%;
}

body {
	height: 100%;
	overflow-x: hidden;
	font-family: 'Lato', sans-serif;
}

.anim {
	-webkit-transition: all 0.5s ease;
	-moz-transition: all 0.5s ease;
	-ms-transition: all 0.5s ease;
	-o-transition: all 0.5s ease;
	transition: all 0.5s ease;
}

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

.grey-bg {
	background: #f5f5f5;
}

.pattern-bg {
	background: url(../images/pattern-1.jpg) repeat;
}


a,
button,
label {
	text-decoration: none !important;
	outline: none !important;
	cursor: pointer;
}

h1,
h2,
h3,
h6,
p,
ul,
li,
figure {
	margin: 0;
	padding: 0;
	line-height: normal;
	font-weight: normal;
}

ul,
ol {
	margin: 0;
	list-style-type: none;
	padding: 0;
}

p {
	font-size: 16px;
	color: #555;
}

.full-width {
	float: none;
	display: block;
	width: 100%;
	position: relative;
}

.container {
	position: relative;
	width: 1170px !important;
}

.pad-tb-85 {
	padding: 85px 0;
}

::-webkit-scrollbar-track {
	background-color: #fff
}

::-webkit-scrollbar {
	width: 6px;
}

::-webkit-scrollbar-thumb {
	background-color: #CACCD1;
	border-radius: 25px;
	-webkit-border-radius: 25px
}

.orange-btn {
	display: block;
	width: 203px;
	height: 50px;
	line-height: 50px;
	background: #f58534;
	font-family: 'Roboto Condensed', sans-serif;
	font-size: 18px;
	text-align: center;
	font-weight: 300;
	color: #FFF;
	text-transform: uppercase;
	-webkit-box-shadow: 2px 2px 5px 0 rgba(0, 0, 0, 0.15);
	box-shadow: 2px 2px 5px 0 rgba(0, 0, 0, 0.15);
	-webkit-transition: all 0.2s ease;
	-moz-transition: all 0.2s ease;
	-ms-transition: all 0.2s ease;
	-o-transition: all 0.2s ease;
	transition: all 0.2s ease;
	margin: 25px auto;
	outline: 1px outset transparent !important;
	outline-offset: 0px;
}

.orange-btn:hover {
	color: #FFF;
	outline: 1px outset #f58534 !important;
	outline-offset: 3px;
}

.social-icons {
	position: absolute;
	top: 10px;
	right: 15px;
	z-index: 9999;
}

.social-icons a {
	display: inline-block;
	width: 27px;
	height: 26px;
	border: 1px solid #304c74;
	border-radius: 100%;
	-webkit-border-radius: 100%;
	text-align: center;
	line-height: 24px;
	margin-left: 5px;
	-webkit-transition: all 0.5s ease;
	-moz-transition: all 0.5s ease;
	-ms-transition: all 0.5s ease;
	-o-transition: all 0.5s ease;
	transition: all 0.5s ease;
}

.social-icons a i {
	color: #304c74;
	-webkit-transition: all 0.5s ease;
	-moz-transition: all 0.5s ease;
	-ms-transition: all 0.5s ease;
	-o-transition: all 0.5s ease;
	transition: all 0.5s ease;
}

.social-icons a:hover {
	border: 1px solid #f58534;
	background: #f58534;
}

.social-icons a:hover i {
	color: #FFF;
}

header {
	position: fixed;
	width: 100%;
	top: 0px;
	left: 0;
	z-index: 9990;
	background: #FFF;
}

.header-shade {
	-webkit-box-shadow: 10px 10px 10px 0 rgba(0,0,0,0.3);
	box-shadow: 10px 10px 10px 0 rgba(0,0,0,0.3);
}

.logo-container {
	float: left;
	padding: 10px 0;
}

.logo-container img {
	display: block;
	width: 250px;
	height: auto;
	/* background: #FFF;
	padding: 5px;
	border-radius: 10px; */
}

#mobile-menu-btn {
	float: right;
	width: 35px;
	height: 30px;
	border: 2px solid #37496a;
	background: none;
	border-radius: 5px;
	-webkit-border-radius: 5px;
	margin: 24px 20px 0;
	position: relative;
	display: none;
}

#mobile-menu-btn span {
	display: block;
	position: absolute;
	top: 12px;
	left: 5px;
	right: 0;
	height: 2px;
	background: #37496a;
	width: 21px;
	-webkit-transition: all 0.5s ease;
	-moz-transition: all 0.5s ease;
	-ms-transition: all 0.5s ease;
	-o-transition: all 0.5s ease;
	transition: all 0.5s ease;
}

#mobile-menu-btn span:before,
#mobile-menu-btn span:after {
	content: '';
	position: absolute;
	left: 0;
	height: 2px;
	background: #37496a;
	width: 21px;
	-webkit-transition: all 0.5s ease;
	-moz-transition: all 0.5s ease;
	-ms-transition: all 0.5s ease;
	-o-transition: all 0.5s ease;
	transition: all 0.5s ease;
}

#mobile-menu-btn span:before {
	top: -7px;
}

#mobile-menu-btn span:after {
	top: 7px;
}

#mobile-menu-btn.active span {
	background: 0;
}

#mobile-menu-btn.active span:before {
	top: 0;
	-webkit-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	transform: rotate(45deg);
}

#mobile-menu-btn.active span:after {
	top: 0;
	-webkit-transform: rotate(-45deg);
	-ms-transform: rotate(-45deg);
	transform: rotate(-45deg);
}

.nav-container {
	float: right;
	font-family: 'Oswald', sans-serif;
	padding-top: 45px;
	position: relative;
}

.nav-container ul li {
	display: inline-block;
	position: static;
	margin: 0 5px 0 15px;
}

.nav-container ul li:before {
	display: block;
	content: "";
	position: relative;
	top: 37px;
	left: 0;
	width: 0;
	height: 3px;
	background: #f58534;
	-webkit-transition: all 0.5s ease;
	-moz-transition: all 0.5s ease;
	-ms-transition: all 0.5s ease;
	-o-transition: all 0.5s ease;
	transition: all 0.5s ease;
}

.nav-container ul li:hover {
	cursor: pointer;
}

.nav-container ul li:hover:before {
	display: block;
	width: 100%;
	;
}

.nav-container ul li span {
	color: #1d345f;
	font-size: 21px;
	font-weight: 400;
	letter-spacing: 1px;
	margin-right: 15px;
	position: relative;
}

.nav-container ul li span:before {
	content: ' \203A';
	position: absolute;
	right: -15px;
	top: -3px;
	width: 0;
	font-size: 25px;
	-moz-transform: rotate(90deg);
	-webkit-transform: rotate(90deg);
	-o-transform: rotate(90deg);
	-ms-transform: rotate(90deg);
	transform: rotate(90deg);
}

.nav-container ul li ul {
	opacity: 0;
	visibility: hidden;
	position: absolute;
	width: 100%;
	top: 100px;
	background: rgba(71, 84, 108, 0.95);
	border-top: 2px solid #f58534;
	padding: 10px 0 15px 30px;
	-webkit-transition: all 0.2s ease-in;
	-moz-transition: all 0.2s ease-in;
	-ms-transition: all 0.2s ease-in;
	-o-transition: all 0.2s ease-in;
	transition: all 0.2s ease-in;
}

.nav-container ul li:hover ul {
	opacity: 1;
	visibility: visible;
	top: 93px;
}

.nav-container ul li a {
	color: #1d345f;
	font-size: 21px;
	font-weight: 400;
	letter-spacing: 1px;
}

.nav-container ul li.services {
	padding-bottom: 17px;
}

.nav-container ul li.services ul {
	right: 95px;
	width:750px;
	display: grid;
	grid-template-columns: 1fr 1fr;
	grid-gap: 0 15px;
	padding: 0 15px 15px;
}

.nav-container ul li.services ul li {
	float: left;
	margin: 0;
	width: 100%;
	height: 60px;
	line-height: 58px;
	padding: 0px 13px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.2);
	margin-right: 3.3%;
	font-family: 'Lato', sans-serif;
	color: #FFF;
	font-size: 16px;
	-webkit-transition: all 0.5s ease;
	-moz-transition: all 0.5s ease;
	-ms-transition: all 0.5s ease;
	-o-transition: all 0.5s ease;
	transition: all 0.5s ease;
}

.nav-container ul li.services ul li:hover {
	background: #35445d;
}

.nav-container ul li.services ul li:before {
	display: none !important;
	width: 0 !important;
}

.nav-container ul li.services ul li img {
	display: inline-block;
	width: 30px;
	height: 30px;
	margin-right: 10px;
}

.nav-container ul li.services ul li a {
	font-size: 18px;
	letter-spacing: 0;
	color: #FFF;
}

.banner-container {
	display: block;
	width: 100%;
	max-height:600px;
	margin-top: 96px;
}

.banner-container .bx-wrapper {
	margin-bottom: 0 !important;
	border: 0 !important;
} 


.inner-banner-container {
	text-align: center;
	height: 250px;
	overflow: hidden;
	margin-top: 96px;
}

.inner-banner-container img {
	display: block;
	width: 100%;
}

.inner-banner-container h3 {
	font-family: 'Oswald', sans-serif;
	font-size: 50px;
	text-align: left;
	color: #1d345f;
	text-transform: uppercase;
	padding: 150px 0 35px;
}

.inner-banner-container .inner-banner {
	height: 100%;
	background-size: cover !important;
}

.inner-banner-container .about-us {
	background: url(../images/about-banner.jpg) no-repeat center right;
}

.inner-banner-container .faq {
	background: url(../images/faq-banner.jpg) no-repeat center right;
}

.inner-banner-container .employment {
	background: url(../images/employment-banner.jpg) no-repeat center right;
}

.inner-banner-container .resources {
	background: url(../images/resources-banner.jpg) no-repeat center right;
}

.inner-banner-container .contact-us-banner {
	background: url(../images/contact-us-banner.jpg) no-repeat center right;
}

.inner-banner-container .services-banner {
	background: url(../images/services-banner.jpg) no-repeat center right;
}

.inner-banner-container .rcm-banner {
	background: url(../images/rcm-banner.jpg) no-repeat center right;
}


.title1 {
	font-family: 'Oswald', sans-serif;
	font-size: 40px;
	color: #1d345f;
	text-align: center;
	padding-bottom: 25px;
	margin-bottom: 35px;
	text-transform: uppercase;
}

.title1:after {
	content: "";
	position: absolute;
	bottom: 0;
	left: calc((100% - 120px)/2);
	width: 120px;
	height: 5px;
	background: #f58534;
}

.title2 {
	font-family: 'Oswald', sans-serif;
	font-size: 40px;
	color: #FFF;
	text-align: left;
	padding-bottom: 8px;
	margin-bottom: 30px;
	text-transform: uppercase;
}

.title2 span {
	font-weight: 200;
}

.title2:after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	width: 50px;
	height: 5px;
	background: #f58534;
}

.hcs-agency {
	background: url(../images/pattern-1.jpg) repeat;
}

.hcs-agency p {
	text-align: center;
	padding-bottom: 50px;
}

.hcs-agency img {
	display: block;
	width: 100%;
	border: 1px solid #FFF;
	-webkit-box-shadow: 2px 2px 5px 0 rgba(0, 0, 0, 0.15);
	box-shadow: 2px 2px 5px 0 rgba(0, 0, 0, 0.15);
}

.hcs-agency span {
	display: block;
	text-align: center;
	font-size: 18px;
	font-style: italic;
	color: #008ed0;
	padding: 25px 0 10px;
}

.our-mission {
	display: flex;
	background: #35486a;
	width: 100%;
	position: relative;
}

.our-mission > div.our-mission-pic {
	width: 100%;
	background: url(../images/our-mission.jpg) no-repeat top right;
	background-size: cover;
}

.our-mission > div {
	width: 100%;
}

.our-mission > div img {
	width: 100%;
}

.our-mission .right-content {
	padding: 0 65px 70px;
	min-height: 600px;
}

.our-mission .right-content .title2 {
	padding-top: 60px;
}

.our-mission .right-content p {
	text-align: justify;
	color: #FFF;
	line-height: 140%;
}

.services-offer > p {
	text-align: center;
	padding-bottom: 50px;
}

.service-box {
	border: 1px solid #FFF;
	-webkit-box-shadow: 0 0 25px 0 rgba(0, 0, 0, 0.15);
	box-shadow: 0 0 25px 0 rgba(0, 0, 0, 0.15);
	-webkit-transition: all 0.5s ease;
	-moz-transition: all 0.5s ease;
	-ms-transition: all 0.5s ease;
	-o-transition: all 0.5s ease;
	transition: all 0.5s ease;
	margin-bottom: 40px;
}

.service-box img {
	display: block;
	width: 100%;
}

.service-box > div {
	padding: 25px;
}

.service-box > div p {
	display: block;
	padding-bottom: 20px;
}

.service-box > div p span {
	display: block;
	padding-bottom: 10px;
	font-weight: bold;
	color: #02a0d2;
}

.service-box:hover {
	background: #e0f8f7;
	transform: scale(1.05);
	-webkit-box-shadow: 0 0 25px 0 rgba(0, 0, 0, 0.4);
	box-shadow: 0 0 25px 0 rgba(0, 0, 0, 0.4);
}

.service-box a {
	display: block;
	width: 100px;
	font-weight: bold;
	text-align: center;
	color: #f58534;
	margin: 0 auto;
	text-transform: uppercase;
}

.for-you-always {
	overflow: hidden;
	background: url(../images/for-you-always-bg.jpg) no-repeat center right;
	background-size: 75%;
	background-color: #16120f;
	max-height: 583px;

}

.for-you-always .content {
	float: left;
	width: 40%;
	min-width: 656px;
	padding: 70px 150px 70px 50px;
	position: relative;
	background: url(../images/for-you-always-green-arrow.svg) no-repeat top right;
	background-size: cover;
}

.for-you-always .content p {
	color: #FFF;
}

.for-you-always .content ul {
	padding: 45px 0 30px;
}

.for-you-always .content ul li {
	color: #FFF;
	padding-bottom: 20px;
	display: flex;
	align-items: flex-start;
}

.for-you-always .content ul li img {
	display: inline-block;
	width: 18px;
	height: 18px;
	vertical-align: bottom;
	margin-right: 10px;
}

.for-you-always .content h4 {
	font-family: 'Oswald', sans-serif;
	font-size: 30px;
	font-weight: 200;
	color: #FFF;
	letter-spacing: 1px;
	margin: 0;
	padding: 0;
}

.news-letter {
	background: #f8f8f8;
	padding: 35px calc((100% - 925px)/2);
	box-shadow: 10px 10px 30px 20px rgba(0, 0, 0, 0.30);
	-webkit-box-shadow: 10px 10px 30px 20px rgba(0, 0, 0, 0.30);
}

.news-letter img {
	float: left;
	width: 343px;
	margin-right: 40px;
}

.news-letter .subscription-form {
	float: right;
	width: calc(100% - 385px);
	padding-top: 50px;
}

.news-letter .subscription-form h2 {
	color: #35486a;
	font-size: 24px;
	margin-bottom: 15px;
}

.news-letter .subscription-form .title2:after {
	bottom: 2px;
	height: 2px;
}

.news-letter .subscription-form input {
	float: left;
	width: calc(100% - 170px);
	border: 1px solid #dddddd;
	height: 50px;
	padding: 20px;
}

.news-letter .subscription-form .orange-btn {
	float: right;
	width: 158px;
	margin: 0;
}

footer {
	padding: 70px 0 60px;
	background: #35486a;
}

footer .footer-logo {
	display: block;
	width: 200px;
	height: auto;
	/* background: #FFF;
	padding: 5px;
	border-radius: 10px; */
}

footer p {
	font-size: 14px;
	color: #FFF;
	padding: 20px 0;
	line-height: 20px;
}

footer .title2 {
	color: #FFF;
	font-size: 24px;
	margin-bottom: 15px;
}

footer .title2:after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	width: 50px;
	height: 2px;
	background: #f58534;
}

footer ul li a {
	display: inline-block;
	color: #FFF;
	margin-bottom: 10px;
	-webkit-transition: all 0.5s ease;
	-moz-transition: all 0.5s ease;
	-ms-transition: all 0.5s ease;
	-o-transition: all 0.5s ease;
	transition: all 0.5s ease;
	position: relative;
}

footer ul li a:before {
	content: '';
	position: absolute;
	top: 5px;
	left: -10px;
	width: 8px;
	height: 8px;
	border-top: 1px solid #f58534;
	border-right: 1px solid #f58534;
	-moz-transform: rotate(45deg);
	-webkit-transform: rotate(45deg);
	-o-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	transform: rotate(45deg);
	-webkit-transition: all 0.5s ease;
	-moz-transition: all 0.5s ease;
	-ms-transition: all 0.5s ease;
	-o-transition: all 0.5s ease;
	transition: all 0.5s ease;
	opacity: 0;
}

footer ul li a:hover {
	color: #ff9c54;
	padding-left: 12px;
}

footer ul li a:hover:before {
	left: -5px;
	opacity: 1;
}

footer .address a {
	color: #FFF;
}

footer .address a:hover {
	text-decoration: underline !important;
}


footer .address .tel {
	font-size: 20px;
	font-weight: 500;
}

footer .address p {
	padding: 10px 0;
}

footer .copyright {
	margin-top: 60px;
	background: rgba(255, 255, 255, 0.1);
	border-top: 1px solid #FFF;
	border-bottom: 1px solid #FFF;
	padding: 5px;
	color: #FFF;
	font-size: 16px;
}

footer .copyright .left {
	float: left;
}

footer .copyright .right {
	float: right;
}

footer .social-icons {
	position: relative;
	float: left;
}

footer .social-icons a {
	border: 1px solid #FFF;
}

footer .social-icons a i {
	color: #FFF;
}

/* Inner Page CSS */
.about-para {
	text-align: center;
	padding: 50px 0;
	font-size: 16px;
	line-height: 30px;
}

.pic-content {
	float: left;
	width: 1200px;
	padding: 100px 0;
	position: relative;
	margin: 0 calc((100% - 1200px)/2);
}

.pic-content .pic-left {
	float: left;
	width: 700px;
}

.pic-content .content-right {
	position: absolute;
	top: 125px;
	left: 50%;
	width: 600px;
	background: rgba(255, 255, 255, 0.9);
	padding: 30px;
	border-radius: 5px;
	-webkit-border-radius: 5px;
}

.pic-content .pic-right {
	float: right;
	width: 700px;
}

.pic-content .content-left {
	position: absolute;
	top: 125px;
	right: 50%;
	width: 600px;
	background: rgba(255, 255, 255, 0.9);
	padding: 30px;
	border-radius: 5px;
	-webkit-border-radius: 5px;
}

.pic-content .title2 {
	color: #1d345f;
	margin-bottom: 20px;
}

.pic-content p {
	line-height: 135%;
	text-align: justify;
	padding-bottom: 10px;
}

.call-to-action {
	padding: 60px 0 70px;
	color: #fff;
	background: rgb(0, 0, 0, 0.6);
	overflow: hidden;
}

.call-to-action:after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: url(../images/navigo-care-2.jpg) no-repeat top right;
	background-size: cover;
	background-attachment: fixed;
	z-index: -1;
}

.call-to-action .title2 {
	font-size: 40px;
	color: #FFF;
	text-align: center;
	padding-bottom: 15px;
	margin-bottom: 40px;
}

.call-to-action .title2:after {
	content: "";
	position: absolute;
	bottom: 0;
	left: calc((100% - 120px)/2);
	width: 120px;
	height: 5px;
	background: #f58534;
}

.call-to-action .schedule-icon {
	display: block;
	width: 150px;
	margin: 50px auto 0;
}

.responsibilities {
	padding: 50px 0 70px;
}

.responsibilities .title2 {
	color: #1d345f;
	font-size: 30px;
	text-transform: capitalize;
	padding-bottom: 5px;
}

.responsibilities .title2:after {
	height: 3px;
}

.responsibilities .list li {
	display: flex;
	text-align: left;
	font-size: 16px;
	line-height: 22px;
	padding: 0 40px 15px 0;
}

.responsibilities .list li i {
	margin: 2px 10px 0 0;
	color: #f58534;
}

.all-services {
	padding: 50px 0 70px;
}

.all-services .title1 {
	text-transform: capitalize;
	font-size: 40px;
	margin: 30px 0 60px;
}

.experience {
	padding: 60px 0 30px;
	color: #FFF;
	background: rgb(33, 67, 69, 0.8);
}

.experience:after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: url(../images/hospital.jpg) no-repeat top right;
	background-size: cover;
	background-attachment: fixed;
	z-index: -1;
}

.experience .list {
	padding-bottom: 25px;
}

.experience .list li {
	display: flex;
	text-align: left;
	font-size: 16px;
	line-height: 22px;
	padding: 0 40px 15px 0;
}

.experience .list li i {
	margin: 2px 15px 0 0;
	color: #f58534;
}

.form-container {
	padding: 50px 0;
}

.form-container .title1 {
	text-transform: capitalize;
	font-size: 34px;
	padding-bottom: 15px;
}

.form-container .title1:after {
	height: 3px;
}

.form-container .form {
	display: grid;
	grid-gap: 20px 30px;
	grid-template-columns: repeat(2, 1fr);
	;
	width: 600px;
	margin: 20px auto;
	padding: 20px;
	border: 1px solid #e1e1e1;
	border-radius: 5px;
	-webkit-border-radius: 5px;
	background: #FFF;
	-webkit-box-shadow: 0 0 10px 10px rgba(0, 0, 0, 0.05);
	box-shadow: 0 0 10px 10px rgba(0, 0, 0, 0.05);
	color: #426084;
}

.form-container .form .full-item {
	grid-column: 1 / 3;
}

.form-container .form .red {
	display: inline-block;
	color: #FF0000;
	margin-left: 3px;
	font-size: 16px;
}

.form-container .form input {
	display: block;
	width: 100%;
	margin-top: 5px;
	height: 35px;
	padding: 10px;
	border: 1px solid #bdc6d1;
	border-radius: 3px;
	-webkit-border-radius: 3px;
}

.form-container .form select {
	display: block;
	width: 100%;
	height: 35px;
	margin-top: 5px;
	border: 1px solid #bdc6d1;
	border-radius: 3px;
	-webkit-border-radius: 3px;
}

.form-container .form textarea {
	display: block;
	width: 100%;
	margin-top: 5px;
	min-height: 100px;
	padding: 10px;
	border: 1px solid #bdc6d1;
	border-radius: 3px;
	-webkit-border-radius: 3px;
	overflow: auto;
	resize: vertical;
}

.form-container .form .captch-container {
	float: left;
	width: 305px;
}

.form-container .form .orange-btn {
	float: right;
	margin: 13px 0;
	border: 0;
	font-size: 24px;
}

.form-container .form .error {
	border-color: #FF0000 !important;
}

.form-container p {
	text-align: center;
	padding-bottom: 30px;
	font-size: 18px;
}

.faqs-container {
	padding: 50px 0;
}

.faqs-container h4 {
	display: block;
	font-size: 24px;
	font-weight: bold;
	position: relative;
	margin-bottom: 20px;
}
.faqs-container h4::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: -5px;
	width: 50px;
	height: 3px;
	background: #f58534;
}

.faqs-container hr {
	padding: 5px 0;
	border-top: 1px solid #ff933d;
}

.accordion {
	display: block;
	width: 100%;
	margin: 10px 0 20px;
	border-left: 0;
	border-right: 0;
}

.accordion a.link {
	display: block;
	width: 100%;
	background: #f1f1f1;
	color: #37496a;
	font-size: 16px;
	line-height: 40px;
	position: relative;
	padding: 0 20px;
	transition: all .5s ease 0s;
	-webkit-transition: all .5s ease 0s;
	-moz-transition: all .5s ease 0s;
	-ms-transition: all .5s ease 0s;
	-o-transition: all .5s ease 0s;
	margin-bottom: 3px;
}

.accordion .content {
	display: none;
	width: 100%;
	padding: 20px;
	font-size: 14px;
}

.accordion .content:last-child {
	border-bottom: 2px solid #ccc;
}

.accordion .content p,
.accordion .content ul {
	display: block;
	padding-bottom: 10px;
}

.accordion .content ul li {
	display: block;
	list-style: circle;
	list-style-type: circle !important;
	padding-bottom: 5px;
}

.accordion .content ul li::before {
	display: inline;
	content: ' \2192';
	padding-right: 10px;
}

.accordion a.link:before,
.accordion a.link:after {
	content: "";
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	right: 15px;
	width: 15px;
	height: 2px;
	background: #37496a;
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	-o-transform: translateY(-50%);
}

.accordion a.link:after {
	transform: rotate(-90deg);
	transition: all 0.5s ease;	
}

.accordion a.link.open {
	font-size: 16px;
	font-weight: bold;
	background: #d3f3ff;
}

.accordion a.link.open:after {
	transform: rotate(0deg);
}

.contact-us {
	padding: 50px 0;
}

.contact-us .title1 {
	text-transform: capitalize;
	font-size: 34px;
	padding-bottom: 15px;
}

.contact-us .title1:after {
	height: 3px;
}

.contact-us .form-container {
	padding: 0;
}

.contact-us .form-container .form {
	width: calc(100% - 30px);
	margin: 20px 15px;
}

.contact-us .map-container {
	float: left;
	width: calc(100% - 20px);
	margin: 0 10px;
	border: 1px solid #ddd;
	padding: 5px 5px 0;
}

.specialities {
	display: block;
	padding: 70px 0;
}

.specialities .grid {
	display: grid;
	width: 100%;
   gap: 50px 100px;
   grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
   padding: 20px 0 25px;
}

.specialities .grid > div {
   display: block;
   width: 100%;
   text-align: center;
}

.specialities .grid > div figure {
   display: block;
   width: 100%;
   height: auto;
   text-align: center;
   border-radius: 15px;
   -webkit-border-radius: 15px;
   -moz-border-radius: 15px;
   -ms-border-radius: 15px;
   -o-border-radius: 15px;
   overflow: hidden;
}

.specialities .grid > div figure img {
   display: block;
   width: 100%;
   height: auto;
   vertical-align: top;
}

.specialities .grid > div span {
   display: block;
   text-align: center;
   padding: 5px 10px;
   font-size: 18px;
   font-weight: 500;
   color: #304d74;
   border: 1px solid #304d74;
   margin-top: 15px;
   border-radius: 50px;
   -webkit-border-radius: 50px;
   -moz-border-radius: 50px;
   -ms-border-radius: 50px;
   -o-border-radius: 50px;
}


.polygon-bg {
   display: block;
   width: 100%;
   position: relative;
}

.polygon-bg::after {
   content: "";
   position: absolute;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
   background: #ebf6ff;
   z-index: -1;
   clip-path: polygon(100% 0, 100% 60%, 0 100%, 0 40%);
}

.ourExpertise {
	padding: 50px 0 100px;
}

.ourExpertise p {
   display: block;
   width: 90%;
   max-width:800px;
   margin: 0 auto;
   text-align: center;
   font-size: 16px;
	line-height: 25px;
   color: #000;
   padding: 30px 20px 0;
}

.ourExpertise ul {
   display: block;
   width: 90%;
   max-width:330px;
   margin: 0 auto;
   padding: 25px 0;
}

.ourExpertise ul li {
   display: block;
   background: url(../images/check.svg) no-repeat left center;
   background-size: 20px;
   padding: 10px 0 10px 30px;
	font-size: 16px;
}

.flex-row {
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap; 
	align-items: center;
	justify-content: space-between;
	padding: 40px 0 20px;
}

.terms-box {
	display: block;
    width: 100%;
    border-radius: 10px;
    overflow: hidden;
    border-top: 1px solid #b0cce4;
    border-right: 2px solid #b0cce4;
    border-bottom: 2px solid #b0cce4;
    border-left: 1px solid #b0cce4;
    margin-bottom: 15px;
}
.terms-box h1 {
	display: block;
    padding: 6px 20px;
    background: #304c74;
    color: #FFF;
    font-size: 16px;
    border-radius: 10px 10px 0 0;
}
.terms-box p {
	display: block;
	padding: 15px 20px;
	font-size: 14px;
	line-height: 22px;
	text-align: justify;
}
.terms-box ul {
	display: block;
    padding: 15px 20px 15px 40px;
    list-style: lower-roman;

	li {
		padding:  0 0 5px 10px;
	}
}


/* @media CSS*/

@media screen and (max-width: 1200px) {

	.container {
		width: 100% !important;
	}

	.our-mission > div.our-mission-pic {
		width: 55%;
		background-position: top center;
	}

	.our-mission .right-content {
		padding: 0 50px 50px;
		width: 45%;
	}

	.news-letter {
		padding: 35px 10%;
	}

	.our-mission .right-content .title2 {
		padding-top: 40px;
	}

	.for-you-always .content {
		width: 35%;
		min-width: 500px;
		padding: 70px 100px 70px 50px;
	}

	.for-you-always .content h4 br {
		display: none;
	}

	.pic-content {
		width: 100%;
		padding: 0;
		margin: 70px 0;
	}

	.pic-content .content-right {
		top: 30px;
		left: auto;
		right: 0;
	}

	.pic-content .content-left {
		top: 30px;
		left: 0;
		right: auto;
	}

	.responsibilities img {
		display: block;
		width: 100%;
	}

}

@media screen and (max-width: 1000px) {

	.pad-tb-85 {
		padding: 50px 0;
	}

	.logo-container {
		float: left;
		width: 120px;
		margin-top: 10px;
	}

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

	.nav-container {
		padding-top: 18px;
	}

	.nav-container ul li a,
	.nav-container ul li span {
		font-size: 22px;
	}

	.nav-container ul li.services ul {
		width: 94vw;
		top: 70px;
	}

	.nav-container ul li.services ul li {
		width: 45%;
	}

	.nav-container ul li.services ul li a {
		font-size: 19px;
	}

	.banner-container {
		height: auto;
	}

	.our-mission > div.our-mission-pic {
		width: 50%;
	}

	.our-mission .right-content {
		width: 50%;
		padding: 0 25px 30px;
	}

	.our-mission .right-content .title2 {
		padding-top: 20px;
	}

	.for-you-always {
		padding-top: 500px;
		background-size: auto;
	}

	.for-you-always .content {
		width: 100%;
		background-position: top left;
	}

	.news-letter .subscription-form {
		float: left;
		width: 100%;
		padding: 20px 0 30px;
	}

	footer {
		padding: 50px 0;
	}

	footer .row > div {
		padding: 0 25px 30px;
	}

	footer .copyright {
		margin: 0;
	}

	footer .copyright .left,
	footer .copyright .right {
		float: left;
		width: 100%;
		text-align: center;
	}

	.grey-bg {
		background: #FFF;
	}

	.pic-content {
		margin: 0 0 50px;
	}

	.pic-content .pic-left,
	.pic-content .pic-right {
		width: 100%;
	}

	.pic-content .content-left,
	.pic-content .content-right {
		position: relative;
		float: left;
		width: 100%;
		left: 0;
		top: 0;
	}

	.responsibilities {
		padding: 50px 0;
	}

	.responsibilities .list {
		margin-bottom: 25px;
	}
}

@media screen and (max-width: 768px) {

	.full-width {
		float: none;
		display: block;
	}
	.logo-container {
		width: 180px;
	}

	.social-icons {
		top: 20px;
		right: 25px;
	} 

	.nav-container {
		padding-top: 0;
	}

	.pad-tb-85 {
		padding: 30px 0;
	}

	.title1 {
		font-size: 36px;
		margin-bottom: 25px;
	}

	.banner-container,
	.inner-banner-container {
		margin-top: 134px;
	}

	.hcs-agency {
		max-height: none;
	}

	.hcs-agency p {
		padding-bottom: 30px;
	}

	.for-you-always {
		padding-top: 0px;
	}

	.faqs-container {
		padding: 50px 25px;
	}

	.contact-us .form-container {
		padding: 0 0 50px;
	}

	footer .social-icons {
		right: 0;
	}
	.flex-row {
		padding: 20px 0;

		p {
			padding: 0;

			strong {
				display: block;
			}
		}
	}

}

@media screen and (max-width: 767px) {

	p {
		padding: 0 25px;
	}

	p br {
		display: none;
	}

	header {
		display: block;
		position: relative;
		width: 100%;
		top: 0;
	}

	.social-icons {
		display: none;
	}

	.logo-container {
		width: 45vw;
		margin: 0;
	}

	#mobile-menu-btn {
		display: block;
	}

	.nav-container {
		position: absolute;
		z-index: 999999999;
		width: 100%;
		top: 75px;
		left: 0;
		background: #37496a;
		padding: 10px 0;
		display: none;
	}

	.nav-container ul li {
		display: block;
		margin: 0 15px 10px;
		text-align: center;
	}

	.nav-container ul li.services {
		padding: 0;
	}

	.nav-container ul li a,
	.nav-container ul li span {
		display: block;
		width: 100%;
		font-size: 20px;
		color: #FFF;
	}

	.nav-container ul li.services ul {
		display: block;
		width: calc(100% - 30px);
		top: 145px;
		right: 0;
		left: 0;
		padding: 0;
		margin: 0 auto;
		background: rgba(71, 84, 108, 1);
	}

	.nav-container ul li.services ul li {
		width: 100%;
		text-align: left;
		padding: 0 10px 0 25px;
	}

	.nav-container ul li.services ul li a {
		font-size: 18px;
	}

	.nav-container ul li span:before {
		right: 20px;
		top: -10px;
		font-size: 30px;
	}

	.banner-container {
		margin: 0;
	}

	.inner-banner-container h3 {
		font-size: 7vw;
		line-height: normal;
		padding: 100px 0 35px 15px;
		font-weight: 500;
	}

	.inner-banner-container .inner-banner {
		height: auto;
		background-size: auto 100% !important;
	}

	.our-mission {
		flex-direction: column;
	}

	.our-mission > div {
		width: 100%;
		min-height: 300px;
	}

	.our-mission > div.our-mission-pic,
	.our-mission .right-content {
		width: 100%;
	}

	.our-mission .right-content p {
		padding: 0;
	}

	.service-box > div p {
		padding: 0 0 20px;
	}


	.for-you-always .content {
		width: 100%;
		min-width: 100%;
		padding: 30px;
	}

	.for-you-always .content p {
		padding: 0;
	}

	.for-you-always .content ul {
		padding: 25px 0 10px;
	}

	.news-letter img {
		width: 100%;
	}

	.news-letter .subscription-form input {
		float: none;
		display: block;
		width: 100%;
		padding: 0 15px;
		margin-bottom: 15px;
	}

	.news-letter .subscription-form .orange-btn {
		float: none;
		display: block;
		margin: 0 auto;
	}

	footer .row > div {
		padding: 0 25px 25px;
		float: left;
		width: 100%;
	}

	.all-services .title1 {
		font-size: 28px;
		margin: 0 0 50px;
		padding: 0 10px 20px;
	}

	.pic-content {
		margin: 0 0 20px;
	}

	.pic-content .content-right {
		padding: 20px;
	}

	.pic-content .title2 {
		font-size: 28px;
		padding-bottom: 5px;
	}

	.pic-content .title2:after {
		height: 3px;
	}

	.pic-content p {
		padding: 0;
	}

	.responsibilities {
		padding: 30px 0;
	}

	.responsibilities .title1 {
		font-size: 30px;
		padding-bottom: 15px;
	}

	.experience {
		padding: 30px 0 0;
	}

	.form-container {
		padding: 30px 0;
	}

	.form-container .title1 {
		font-size: 28px;
	}

	.form-container .form {
		width: 90%;
		margin: 20px 5%;
		grid-gap: 20px;
		grid-template-columns: 100%;
	}

	.form-container .form .full-item {
		grid-column: auto;
	}

	.form-container .form .orange-btn {
		width: 150px;
		margin: 25px calc((100% - 150px)/2) 10px;
	}

	.call-to-action {
		padding: 40px 0 50px;
	}

	.call-to-action .title2 {
		font-size: 34px;
	}

	.call-to-action .schedule-icon {
		width: 100px;
	}

	.contact-us {
		padding: 50px 0 70px;
	}

	.contact-us .container {
		padding: 0;
	}

	.contact-us .col-sm-12 {
		padding: 0 5px;
	}

}

@media screen and (max-width: 600px) {
	.banner-container, 
	.inner-banner-container {
		margin-top: 0;
		height: auto;
	}
	.title1 {
		font-size: 7vw;
		padding-bottom: 2vh;
		margin-bottom: 2vh;
	}

	.title2 {
		font-size: 8vw;
	}

	.specialities {
		padding: 35px 0;
	}

	.specialities .grid {
		grid-template-columns: 1fr 1fr;
		gap: 30px;
		padding: 15px;
	}

	.ourExpertise {
		padding: 0 0 30px;
	}
}