/*
Theme Name: Benh Vien Son tay
Theme URI: willgroup.net
Author: willgroup.net	
Author URI: https://willgroup.net
Version: 1.0
*/

/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# Global
# Typography
# Elements
# Forms
# Navigation
	## Links
	## Menus
# Accessibility
# Alignments
# Clearings
# Widgets
# Content
	## Posts and pages
	## Comments
# Infinite scroll
# Media
	## Captions
	## Galleries
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Layout
--------------------------------------------------------------*/
@media (max-width: 767px) {
	#wpadminbar {
		position: fixed !important;
	}
	[class*='col-'] {
		padding-left: 8px;
		padding-right: 8px;
	}
	.row {
		margin-left: -8px;
		margin-right: -8px;
	}
}

/*--------------------------------------------------------------
# Global
--------------------------------------------------------------*/
body {
	font-family: 'Roboto', sans-serif !important;
	font-size: 1rem;
}
* {
	outline: none !important;
}
img {
	max-width: 100%;
	height: auto;
}
iframe {
	display: block;
	max-width: 100%;
	margin: 0 auto;
}
a {
	text-decoration: none;
	color: #252B42;
	-webkit-transition: all 0.3s ease 0s;
	-moz-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
}
a:hover,
a:focus {
	text-decoration: none;
	color: #00E1C2;
}
small,
.small {
	font-size: 87.5%;
}
.font-size-body {
	font-size: 0.875rem !important;
}
.font-weight-medium {
	font-weight: 500 !important;
}
.font-weight-semibold {
	font-weight: 600 !important;
}
.text-primary {
	color: #005C94 !important;
}
a.text-primary:hover {
	color: #00E1C2 !important;
}
.text-primary-50 {
	color: #9CDEFF !important;
}
a.text-primary-50:hover {
	color: #00E1C2 !important;
}
.text-secondary {
	color: #00E1C2 !important;
}
a.text-body:hover {
	color: #005C94 !important;
}
.bg-cover {
	background-color: #BBB6B0;
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;	
}
.bg-primary {
	background-color: #005C94 !important;
}
.bg-secondary {
	background-color: #00E1C2 !important;
}
.bg-third {
	background-color: #ffb510 !important;
}
.bg-light {
	background-color: #ECEBE9 !important;
}
.bg-gray {
    background-color: #BBB6B0 !important;
}
.border-primary {
	border-color: #005C94 !important;
}
.border-secondary {
	border-color: #00E1C2 !important;
}
.border-gray {
	border-color: #BBB6B0 !important;
}
.rounded-lg {
	border-radius: 0.75rem !important;
}
.lh-body {
	line-height: 1.5;
}
.separator-2 {
	background: transparent url(images/separator-2.png) no-repeat center center / cover;
	display: block;
	width: 87px;
	height: 2px;
}
.separator-1 {
	background: transparent url(images/separator-1.png) no-repeat center center / cover;
	display: block;
	width: 265px;
	height: 29px;
}
.zoom {
	transition: transform 0.6s ease 0s;
}
.zoom:hover {
	transform: scale(1.1);
}
.black-white {
	-webkit-filter: grayscale(100%);
	filter: grayscale(100%);
}
a.black-white:hover {
	-webkit-filter: none;
	filter: none;
}
.btn-play {
	text-align: center;
	border: 2px solid #fff;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 3rem;
	height: 3rem;
	padding-left: 2px;
	position: absolute;
	z-index: 10;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	transition: all 0.3s ease 0s;
}
.btn-play svg {
	fill: #fff;
	height: 1.5rem;
	transition: fill 0.3s ease 0s;
}
a:hover .btn-play {
	background-color: #005C94;
	border-color: #005C94;
}
.btn-play-lg {
	width: 5rem;
	height: 5rem;
}
.btn-play-lg svg {
	height: 2.5rem;
}
.btn-play-circle {
	fill: #fff;
	height: 3.5rem;
	position: absolute;
	z-index: 10;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	transition: all 0.3s ease 0s;
}
a:hover .btn-play-circle {
	fill: #005C94;
}
.btn-play-circle-secondary {
	fill: #00E1C2;
	opacity: 0.5;
}
a:hover .btn-play-circle-secondary {
	opacity: 1;
}
.mh-full {
	min-height: calc(100vh - 109px);
}
.admin-bar .mh-full {
	min-height: calc(100vh - 141px);
}
.svg-4 {
	width: 1.5rem;
	height: 1.5rem;
}
.svg-5 {
	width: 1.25rem;
	height: 1.25rem;
}
.svg-6 {
	width: 1rem;
	height: 1rem;
}
.svg-small {
    width: 0.875rem;
    height: 0.875rem;
}
.container-fluid {
    max-width: 1608px;
}
@media (max-width: 767px) {
	h1, .h1 {
		font-size: 1.625rem;
	}
	h2, .h2 {
		font-size: 1.5rem;
	}
	h3, .h3 {
		font-size: 1.375rem;
	}
	h4, .h4 {
		font-size: 1.25rem;
	}
	h5, .h5 {
		font-size: 1.125rem;
	}
	.display-3 {
		font-size: 3rem;
	}
	.mh-full {
		min-height: calc(100vh - 76px);
	}
	.admin-bar .mh-full {
		min-height: calc(100vh - 122px);
	}
}

/*--------------------------------------------------------------
# Form
--------------------------------------------------------------*/
button {
	cursor: pointer;
	-webkit-transition: all 0.3s ease 0s;
	-moz-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
}
.required {
	color: #F00;
}
.form-control,
.custom-select,
.btn {
	font-size: 0.875rem;
	box-shadow: none !important;
	padding: 0.5rem 0.75rem;
	-webkit-transition: all 0.3s ease 0s;
	-moz-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
}
.form-control,
.custom-select {
	height: calc(1.5em + 1rem + 2px);
}
.form-control + .input-group-append .btn {
	border-color: #ced4da;
}
.form-control:focus,
.form-control:focus + .input-group-append .btn {
	border-color: #00E1C2;
}
.custom-select {
	padding-left: 0.5rem;
	padding-right: 1.5rem;
}
.btn {
	text-transform: uppercase;
	font-weight: 700;
	padding: 0.5rem 1rem;
}
.btn-sm {
	font-size: 0.75rem;
	padding: 0.25rem 1rem;
}
.btn-lg {
	font-size: 1rem;
	padding: 0.5rem 1.5rem;
}
.btn svg {
	-webkit-transition: fill 0.3s ease 0s;
	-moz-transition: fill 0.3s ease 0s;
	transition: fill 0.3s ease 0s;
}
.btn-primary,
.btn-primary:not(:disabled):not(.disabled):active:focus {
	color: #FFF;
	background: #005C94;
	border-color: #005C94;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary:not(:disabled):not(.disabled):active {
	color: #FFF;
	background: #034F8C;
	border-color: #034F8C;
}
.btn-primary svg,
.btn-primary:not(:disabled):not(.disabled):active:focus svg {
	fill: #fff;
}
.btn-secondary,
.btn-secondary:not(:disabled):not(.disabled):active:focus {
	color: #003636;
	background: #00E1C2;
	border-color: #00E1C2;
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary:not(:disabled):not(.disabled):active {
	color: #003636;
	background: #00E1C2;
	border-color: #00E1C2;
}
.btn-secondary svg,
.btn-secondary:not(:disabled):not(.disabled):active:focus svg {
	fill: #003636;
}
.btn-third,
.btn-third:not(:disabled):not(.disabled):active:focus {
	color: #fff;
	background: #ffb510;
	border-color: #ffb510;
}
.btn-third:hover,
.btn-third:focus,
.btn-third:not(:disabled):not(.disabled):active {
	color: #fff;
	background: #EFA90F;
	border-color: #EFA90F;
}
.btn-third svg,
.btn-third:not(:disabled):not(.disabled):active:focus svg {
	fill: #fff;
}
.btn-outline-secondary,
.btn-outline-secondary:not(:disabled):not(.disabled):active:focus {
	color: #00E1C2;
	background: transparent;
	border-color: #00E1C2;
}
.btn-outline-secondary:hover,
.btn-outline-secondary:focus,
.btn-outline-secondary:not(:disabled):not(.disabled):active {
	color: #003636;
	background: #00E1C2;
	border-color: #00E1C2;
}
.btn-outline-secondary svg,
.btn-outline-secondary:not(:disabled):not(.disabled):active:focus svg {
	fill: #00E1C2;
}
.btn-outline-secondary:hover svg,
.btn-outline-secondary:focus svg,
.btn-outline-secondary:not(:disabled):not(.disabled):active svg {
	fill: #003636;
}

/*--------------------------------------------------------------
# Breadcrumb
--------------------------------------------------------------*/
.breadcrumb {
	background: transparent;
	border: 0;
	border-radius: 0;
	padding: 0;
	margin-top: 1rem;
	margin-bottom: 1rem;
}
.breadcrumb-item + .breadcrumb-item::before {
	content: ' ';
	border-top: 1px solid #6c757d;
	border-right: 1px solid #6c757d;
	display: inline-block;
	vertical-align: middle;
	width: 0.375rem;
	height: 0.375rem;
	padding-right: 0;
	margin-top: 0.5rem;
	margin-right: 0.625rem;
	transform: rotate(45deg);
}
@media (max-width: 767px) {
	.single .breadcrumb-item.active {
		display: none;
	}
}

/*--------------------------------------------------------------
# Pagination
--------------------------------------------------------------*/
.pagination {
	justify-content: center;
	margin-bottom: 1.5rem;
}
.pagination .page-item {
	margin-left: 0.25rem;
	margin-right: 0.25rem;
}
.pagination .page-link {
	font-size: 1rem;
	text-align: center;
	color: inherit;
	-webkit-border-radius: 0.25rem;
	-moz-border-radius: 0.25rem;
	border-radius: 0.25rem;
	min-width: 2.5rem;
	padding: 0.5rem 0.5rem;
}
.pagination .page-link:hover,
.pagination .page-item.active .page-link {
	color: #FFF;
	background-color: #005C94;
	border-color: #005C94;
}
.pagination .page-item:first-child .page-link,
.pagination .page-item:last-child .page-link {
	-webkit-border-radius: 0.25rem;
	-moz-border-radius: 0.25rem;
	border-radius: 0.25rem;
}
.pagination .page-link svg {
	fill: #212529;
}
.pagination .page-link:hover svg,
.pagination .page-item.active .page-link svg {
	fill: #fff;
}

/*--------------------------------------------------------------
# Modal
--------------------------------------------------------------*/
.modal-dialog {
    min-height: calc(100vh - 5rem);
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: auto;
    margin-top: 2.5rem;
    margin-bottom: 2.5rem;
}
.modal.fade .modal-dialog {
	-webkit-transform: translate(0, 0);
	-moz-transform: translate(0, 0);
	transform: translate(0, 0);
}
.modal-content,
.modal-header {
	border-radius: 0;
}
.modal-header {
	background-color: #005C94;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}
.modal-title {
	font-size: 1.25rem;
	font-weight: 700;
	color: #FFF;
	text-transform: uppercase;
}
.modal-close {
	background: transparent;
	border: 0;
	width: 2.5rem;
	height: 2.5rem;
	position: absolute;
	z-index: 10;
	top: 0;
	right: 0;
}
.modal-close:before,
.modal-close:after {
	content: ' ';
	background-color: #FFF;
	display: block;
	width: 2px;
	height: 1.25rem;
	margin-top: -0.625rem;
	margin-left: -1px;
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transition: all 0.3s ease 0s;
	-moz-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
}
.modal-close:before {
	transform: rotateZ(-45deg);
}
.modal-close:after {
	transform: rotateZ(45deg);
}
.modal-close:hover:before,
.modal-close:hover:after {
	background: #00E1C2;
}
.modal-backdrop.show {
	opacity: 0.7;
}

/*--------------------------------------------------------------
# collapse
--------------------------------------------------------------*/
.btn-collapse {
	display: inline-block;
}
.btn-collapse:before {
    content: ' ';
    border-top: 2px solid #00E1C2;
    border-left: 2px solid #00E1C2;
    cursor: pointer;
    display: inline-block;
    vertical-align: middle;
    width: 0.5rem;
    height: 0.5rem;
   	margin-right: 0.25rem;
   	margin-top: 0;
    transform: rotateZ(45deg);
    transition: all 0.3s ease 0s;
}
.btn-collapse.collapsed:before {
	margin-top: -0.25rem;
	transform: rotateZ(-135deg);
}

/*--------------------------------------------------------------
# animation
--------------------------------------------------------------*/
.spin {
	-webkit-animation: spin 1.2s infinite linear;
	-moz-animation: spin 1.2s infinite linear;
	-ms-animation: spin 1.2s infinite linear;
	-o-animation: spin 1.2s infinite linear;
	animation: spin 1.2s infinite linear;
}
@keyframes "spin" {
	from {
		-webkit-transform: rotate(0deg);
		-moz-transform: rotate(0deg);
		-o-transform: rotate(0deg);
		-ms-transform: rotate(0deg);
		transform: rotate(0deg);
	}
	to {
		-webkit-transform: rotate(359deg);
		-moz-transform: rotate(359deg);
		-o-transform: rotate(359deg);
		-ms-transform: rotate(359deg);
		transform: rotate(359deg);
	}
}
@-moz-keyframes spin {
	from {
		-moz-transform: rotate(0deg);
		transform: rotate(0deg);
	}
	to {
		-moz-transform: rotate(359deg);
		transform: rotate(359deg);
	}
}
@-webkit-keyframes "spin" {
	from {
		-webkit-transform: rotate(0deg);
		transform: rotate(0deg);
	}
	to {
		-webkit-transform: rotate(359deg);
		transform: rotate(359deg);
	}
}
@-ms-keyframes "spin" {
	from {
		-ms-transform: rotate(0deg);
		transform: rotate(0deg);
	}
	to {
		-ms-transform: rotate(359deg);
		transform: rotate(359deg);
	}
}
@-o-keyframes "spin" {
	from {
		-o-transform: rotate(0deg);
		transform: rotate(0deg);
	}
	to {
		-o-transform: rotate(359deg);
		transform: rotate(359deg);
	}
}

/*--------------------------------------------------------------
# site header
--------------------------------------------------------------*/
.admin-bar .site-header {
	top: 32px;
}
.header__top {
    background: -webkit-gradient(linear, left top, right top, color-stop(51.38%, #3c4097), color-stop(102.76%, #005C94));
    background: linear-gradient(90deg, #3c4097 51.38%, #005C94 102.76%);
    color: #fff;
}
.site-logo {
	font-size: 0;
}
.site-logo img {
	max-height: 122px;
}
.site-header.scroll .site-logo img {
	max-height: 2.5rem;
}

.site-contact .btn-block + .btn-block {
	margin-top: 0.25rem;
}
.site-header.scroll .site-contact {
	display: flex;
	align-items: center;
}
.site-header.scroll .site-contact .btn-block + .btn-block {
	padding: 0.5rem 0.75rem;
	margin-top: 0;
	margin-left: 0.25rem;
}
.site-header.scroll .site-contact a span {
	display: none !important;
}
.header__sitename {
  color: #3c4097;
  text-align: center;
  font-family: 'Inter', serif;
  font-size: clamp(20px, 4vw, 80px);
  font-weight: 900;
  line-height: normal;
}
.header__slogan {
  color: #ed3338;
  text-align: center;
  font-family: 'Lobster', serif;
  font-size: clamp(14px, 2vw, 24px);
  font-weight: 400;
  line-height: normal;
}
@media (max-width: 767px) {
	.site {
		padding-top: 76px;
	}
	.admin-bar .site-header {
		top: 46px;
	}	

	.site-logo img {
		max-height: 2.5rem;
	}

	.site-contact {
		display: flex;
	}
	.site-contact .btn-block + .btn-block {
		margin-top: 0;
		padding: 0.5rem 0.75rem;
		margin-left: 0.25rem;
	}
}

/*--------------------------------------------------------------
## site nav
--------------------------------------------------------------*/
.site-nav {
	position: relative;
}
.site-nav > .menu > li.menu-item-has-children > ul {
	padding: 0;
	margin: 0;
    position: absolute;
    width: auto;
    min-width: 250px;
    background: #fff;
    visibility: hidden;
    opacity: 0;
    -webkit-transition: .15s ease-in-out;
    transition: .15s ease-in-out;
    top: 110%;
    z-index: 10;
    box-shadow: 0 4px 8px rgba(0,0,0,0.25);
}
.site-nav > .menu {
	display: flex;
	height: 100%;
    margin-bottom: 0;
}
.site-nav .menu > li {
    list-style: none;
    position: relative;
}
.site-nav .menu > li > a {
	color: #FFF;
	text-align: center;
	display: block;
	height: 100%;
	padding: 12px 10px;
    font-size: 16px;
    font-weight: 600;
}
.site-nav .menu > li:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 0;
    border-top: 3px solid #91193D;
    -webkit-transition: .15s ease-in-out;
    transition: .15s ease-in-out;
    opacity: 0;
}
.site-nav .menu > li:hover:after {
    opacity: 1;
}
.site-nav .menu > li.menu-item-has-children > a {
    position: relative;
}
.site-nav .menu > li.menu-item-has-children > a:after {
    content: '';
    border-top: 1px solid #fff;
    border-left: 1px solid #fff;
    cursor: pointer;
    display: inline-block;
    width: 8px;
    height: 8px;
    margin-bottom: 0.1875rem;
    margin-left: 0.75rem;
    transform: rotateZ(-135deg);
    transition: all 0.3s ease 0s;
}
.site-nav .menu > li.menu-item-has-children:hover > ul {
    opacity: 1;
    visibility: visible;
    top: 100%;
}
.site-nav .menu > li:hover > a,
.site-nav .menu > li.current-menu-item > a,
.site-nav .menu > li.current-menu-parent > a {

}
.site-nav .menu > li > a > img {
	display: block;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 0.5rem;
}
.site-nav .mega-menu {
	background-color: #FFF;
	box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
	display: none;
	padding: 3rem;
	position: absolute;
	z-index: 10;
	top: 100%;
	left: 0; right: 0;
}
.site-nav li:hover > .mega-menu {
	display: block;
}
.site-nav .mega-menu:before {
	content: ' ';
	border: 1px dashed #005C94;
	position: absolute;
	top: 0.75rem; bottom: 0.75rem;
	left: 0.75rem; right: 0.75rem;
}
.site-nav .sub-menu > li {
    list-style: none;
    position: relative;
    font-size: 15px;
    font-weight: 600;
    width: 100%;
    color: #252B42;
    white-space: nowrap;
    border-left: 4px solid transparent;
}
.site-nav .sub-menu > li:hover {
    border-left: 4px solid #91193D;
    background: #EBEBEB;
}
.site-nav .sub-menu > li + li {
	border-top: 1px dotted #dee2e6;
}
.site-nav .sub-menu > li a {
    display: block;
    padding: 10px;
    color: #252B42;
}
.site-header.scroll .site-nav .menu > li > a > img {
	display: none;
}

@media (min-width: 1200px) {
	.site-nav .mega-menu {
		display: none !important;
	}
	.site-nav li:hover > .mega-menu {
		display: block !important;
	}
}
@media (max-width: 1199px) {
	.site-nav {
		background-color: #005C94;
		box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
		overflow-y: auto;
		width: 100%;
		margin-bottom: 0;
		position: fixed;
		z-index: 1001;
		top: 0;
		bottom: 0;
		left: -100%;
		transition: all 0.3s ease 0s;
	}
	body.open-site-nav .site-nav {
		left: 0;
	}
	.admin-bar .site-nav {
		top: 32px;
	}
	.site-overlay {
		background: rgba(0, 0, 0, 0.5);
		width: 100%;
		height: 100%;
		position: fixed;
		z-index: 1000;
		top: 0;
		left: 0;
	}
	.site-nav .menu {
		display: block;
		height: auto;
	}
	.site-nav .menu > li {
		border-top: 1px solid rgba(255, 255, 255, 0.1);
		border-bottom: 1px solid rgba(255, 255, 255, 0.1);
		padding: 0.75rem 1rem;
		position: relative;
	}
	.site-nav .menu > li + li {
		margin-top: -1px;
	}
	.site-nav .menu > li > a {
		font-weight: 600;
		display: inline;
		width: auto;
		padding: 0;
	}
	.site-nav .menu > li > a > img {
		display: none;
	}
	.site-nav .menu > li:hover > a,
	.site-nav .menu > li.current-menu-item > a,
	.site-nav .menu > li.current-menu-parent > a {
		color: #00E1C2;
	}
	.site-nav .menu > li.menu-item-has-children:after {
	    content: ' ';
	    border-top: 1px solid #fff;
	    border-left: 1px solid #fff;
	    cursor: pointer;
	    width: 0.5rem;
	    height: 0.5rem;
	    position: absolute;
	    top: 1rem;
	    right: 1rem;
	    transform: rotateZ(-135deg);
	    transition: all 0.3s ease 0s;
	}
	.site-nav .menu > li.menu-item-has-children.active:after {
		transform: rotateZ(45deg);
	}
	.site-nav .mega-menu {
		box-shadow: none;
		clear: both;
		display: none;
		padding: 1rem;
		margin-top: 0.5rem;
		position: relative;
		top: 0;
	}
	.site-nav .mega-menu:before {
		display: none;
	}
	.site-nav li:hover .mega-menu {
		display: none;
	}
}
@media (max-width: 767px) {
	.admin-bar .site-nav {
		top: 46px;
	}
}

/*--------------------------------------------------------------
# slick slider
--------------------------------------------------------------*/
.slick-arrow {
	font-size: 0;
	color: transparent;
	background: transparent;
	border: 0;
	content: ' ';
	border-left: 0.1875rem solid #D0CCC7;
	border-top: 0.1875rem solid #D0CCC7;
	display: block;
	width: 3rem;
	height: 3rem;
	padding: 0;
	position: absolute;
	z-index: 10;
	top: 50%;
	-webkit-transition: all 0.3s ease 0s;
	-moz-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
}
.slick-arrow:hover {
	border-color: #00E1C2;
}
.slick-prev {
	left: -3rem;
	transform: translateY(-50%) rotate(-45deg);
}
.slick-next {
	right: -3rem;
	transform: translateY(-50%) rotate(135deg);
}
.slick-dots {
	display: flex;
	align-items: center;
	justify-content: center;
	list-style: none;
	padding-left: 0;
	margin-top: 1.5rem;
	margin-bottom: 0;
}
.slick-dots li {
	margin-left: 0.5rem;
	margin-right: 0.5rem;
}
.slick-dots button {
	font-size: 0;
	color: transparent;
	background-color: #AEAAA5;
	border: 0;
	border-radius: 50%;
	display: block;
	width: 0.5rem;
	height: 0.5rem;
	padding: 0;
}
.slick-dots button:hover,
.slick-dots li.slick-active button {
	background-color: #00E1C2;
	width: 0.75rem;
	height: 0.75rem;
}

.site-slider .slick-dots {
	position: absolute;
	z-index: 11;
	bottom: 2rem;
	left: 0;
	right: 0;
}
.site-slider .slick-prev {
	left: 2rem;
}
.site-slider .slick-next {
	right: 2rem;
}

/*--------------------------------------------------------------
# home intro
--------------------------------------------------------------*/
.home-intro {
	padding-top: 0.75rem;
	padding-left: 0.75rem;
}
.home-intro .border {
	border-width: 2px !important;
	border-radius: 1.5rem 0 1.5rem 0;
	z-index: -1;
	top: 0;
	bottom: 0.75rem;
	left: 0;
	right: 0.75rem;
}
.home-intro .image {
	border-radius: 1.5rem 0 1.5rem 0;
}
.home-intro .wrapper-icon {
	width: 50px; 
	height: 50px; 
	z-index: 10; 
	top: 100%; 
	left: 50%; 
	transform: translate(-50%, -50%) rotate(45deg);
}
.home-intro .icon {
	transform: rotate(-45deg);
}
/*------------------------
#home news
------------------------*/
.homeNews:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 1px;
    background: -webkit-gradient(linear, left top, right top, from(rgba(11, 139, 158, 0)), color-stop(50.5%, #0B8B9E), to(rgba(11, 139, 158, 0)));
    background: linear-gradient(90deg, rgba(11, 139, 158, 0) 0%, #0B8B9E 50.5%, rgba(11, 139, 158, 0) 100%);
}
.homeNews__logo a img {
    max-width: 66px;
}
.homeNews__grid {
    display: grid;
    width: 100%;
    max-width: 1248px;
    -webkit-column-gap: 50px;
    column-gap: 50px;
    row-gap: 12px;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
    grid-auto-flow: column;
}
.homeNews__grid .gridItem:first-child {
    grid-row: span 4;
}
.homeNews__grid .gridItem {
    grid-column: span 1;
    grid-row: span 1;
}
.homeNews .postNormal {
    -webkit-column-gap: 20px;
    column-gap: 20px;
}
.gap-1 {
    gap: .25rem !important;
}
/*------------------------------------------
# home tab panel
--------------------------------------------*/
.homeTab__panes {
    max-width: 1248px;
    width: 100%;
}
.homeTab__item {
    border: 1px solid #00899C;
    border-radius: 8px;
    padding: 20px 30px;
    background: radial-gradient(161.39% 113.45% at 40.95% -10.45%, #FFF 32.81%, #F8FDFF 97.64%);
    -webkit-box-shadow: 3.122px 9.366px 21.854px 0 rgba(37, 43, 66, 0.15);
    box-shadow: 3.122px 9.366px 21.854px 0 rgba(37, 43, 66, 0.15);
}
.homeTab__item.d-flex.flex-column.w-100 {
    margin-bottom: 20px;
}
.homeTab__item .image {
    width: 40%;
    aspect-ratio: 459/277; 
    border-radius: 8px;
    -webkit-box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
    box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
    -o-object-fit: cover;
    object-fit: cover;
}
/*--------------------------------------------------------------
# home service
--------------------------------------------------------------*/
.homeNav__btns {
    border-radius:24px;
    width: 100%;
    max-width: 665px;
    gap: 1px;
    background: #fff;
    overflow: hidden;
}
.homeNav__btns .item {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 calc(100% / 3);
    flex: 1 1 calc(100% / 3);
    background: #005C94;
    color: #fff;
    -webkit-transition: .15s ease-in-out;
    transition: .15s ease-in-out;
    row-gap: .5rem !important;
}
.homeNav__btns .item:hover {
    background: #00899C;
}
.homeNews__title {
    display: block;
    width: 100%;
    padding-left: 15px;
    border-left: 7px solid #91193D;
    font-weight: 600;
    line-height: normal;
}
.homeNews__title span {
    background: -webkit-gradient(linear, left top, right top, color-stop(0.01%, #00899C), color-stop(62.29%, #1D559F));
    background: linear-gradient(90deg, #00899C 0.01%, #1D559F 62.29%);
    background-clip: border-box;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.row-gap-3 {
    row-gap: 1rem !important;
}
/*--------------------------------------------------------------
# home doctors
--------------------------------------------------------------*/
.home-doctors .slick-slide a {
	opacity: 0.6;
}
.home-doctors .slick-current a {
	opacity: 1;
}
.home-doctors .slick-slide .wrapper-image {
	border: 2px solid #00E1C2;
	border-radius: 50%;
	width: 200px;
	height: 200px;
	padding: 0.5rem;
	margin-top: 60px;
}
.home-doctors .slick-current .wrapper-image {
	background: transparent url(images/tech-glow.png) no-repeat left top / 100% 100%;
	border: 0;
	border-radius: 0;
	width: 301px;
	height: 336px;
	padding: 48px 48px 84px 48px;
	margin-top: 0;
}
.home-doctors .slick-slide .separator,
.home-doctors .slick-slide .exp {
	display: none;
}
.home-doctors .slick-current .separator,
.home-doctors .slick-current .exp {
	display: block;
}

/*--------------------------------------------------------------
# home tess
--------------------------------------------------------------*/
.home-tess .slick-list {
	margin-left: -15px;
	margin-right: -15px;
}
.home-tess .slick-slide {
	padding-left: 15px;
	padding-right: 15px;
	opacity: 0.6;
	transform: scale(0.8);
}
.home-tess .slick-current {
	opacity: 1;
	transform: scale(1);
}
.home-celebs .slick-dots {
	position: absolute;
	z-index: 11;
	bottom: 0.25rem;
	left: 51%;
}
/*-----------------------------
# home taxonomy
-------------------------------*/
.homeTab__left .nav-tabs {
    border-bottom: 0;
}
.homeTab__left .nav-tabs li.nav-item {
    margin-bottom: 0;
}
.homeTab__left .nav-tabs li.nav-item a {
    border: 0;
    background: 0;
    color: #333;
    font-weight: 600;
}
.homeTab__left .nav-tabs li.nav-item a.active {
    color: #91193D;
    background: none;
}
.homeTab__left .nav-tabs li.nav-item a:hover {
    color: #91193D;
}
/*-----------------------------
# home corevalue
-------------------------------*/
.corevalue {
    background: -webkit-gradient(linear, left top, right top, from(#00899C), color-stop(102.76%, #1D559F));
    background: linear-gradient(90deg, #00899C 0%, #1D559F 102.76%);
}
.corevalue_title {
    font-size: 26px;
    font-weight: 700;
}
.coreValue__item .title {
    width: 100%;
    color: #FDFEFF;
    text-align: center;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
}
.corevalue .value-list {
    row-gap: 40px;
}
.corevalue .value-list .coreValue__item {
    row-gap: 20px;
    border-right: 1px solid #fff;
}
.corevalue .value-list .coreValue__item:nth-child(3n){
    border-right: 0;
}
.footer__info {
    font-size: 14px;
}
/*-----------------------------
# home papper
-------------------------------*/
.papper_list .papper_post {
    gap: 24px;
}
.papper_list .papper_post a.image {
    width: 220px;
    height: auto;
    aspect-ratio: 220/139;
    overflow: hidden;
    border-radius: 8px;
    background: #f0f0f0;
}
.papper_list .papper_post a.image img {
    aspect-ratio: 220/138;
    -o-object-fit: cover;
    object-fit: cover;
    -webkit-transition: .15s ease-in-out;
    transition: .15s ease-in-out;
}
.papper_list .papper_post a.image:hover img {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
}
.row-gap-2 {
    row-gap: .5rem !important;
}
.authorDate .author {
    font-size: 12px;
    color: #00899C;
    font-weight: 500;
}
.authorDate .date {
    font-size: 14px;
    color: #6C727F;
}
.papper-content .title a {
    font-size: 18px;
    font-family: 'Inter', serif;
    font-weight: 600;
}
.papper-content .meta {
    gap: 1rem;
    font-size: 14px;
    font-weight: 600;
}
.papper-content .meta > div {
    gap: 0.25rem;
}
/*-----------------------------
# home book
-------------------------------*/
.secBooking__title {
    font-size: 30px;
    font-weight: 700;
    text-transform: uppercase;
}
.secBooking__main {
    max-width: 1080px;
    margin-left: auto;
    margin-right: auto;
}
.wpcf7-form {
    grid-column: span 2;
    grid-row: span 2;
    border-radius: 20px;
    border: 1px solid #252B42;
    background: #FFF;
    -webkit-box-shadow: 2px 2px 6px 0 rgba(0, 0, 0, 0.2);
    box-shadow: 2px 2px 6px 0 rgba(0, 0, 0, 0.2);
    padding: 30px 35px;
}
.secBooking__formWrap .formTitle {
    font-size: 22px;
    font-weight: 700;
}
.wpcf7-form input.form-control {
    height: 58px;
    background: #E4E4E6;
    border-radius: 10px;
    padding: 15px;
}
.wpcf7-form textarea {
    height: 110px;
    background: #E4E4E6;
    border-radius: 10px;
    padding: 15px;
}
.wpcf7-form p {
    margin-bottom: 0;
}
.wpcf7-form input.form-control.wpcf7-submit {
    background: #00899C;
    border: 0;
    color: #fff;
    font-size: 16px;
    height: 48px;
    font-weight: 700;
    text-transform: uppercase;
    padding: 12px 35px;
    border-radius: 8px;
    -webkit-transition: .15s ease-in-out;
    transition: .15s ease-in-out;
}
.wpcf7-form input.form-control.wpcf7-submit:hover {
    background: #91193D;
    color: #fff;
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
}
.wpcf7-form .wpcf7-spinner {
    position: absolute !important;
    right: 0;
    top: 12px;
}
.box-secbook {
    border-radius: 20px;
    background: rgba(0, 137, 156, 0.8);
    -webkit-box-shadow: 2px 2px 6px 0 rgba(8, 74, 88, 0.2);
    box-shadow: 2px 2px 6px 0 rgba(8, 74, 88, 0.2);
    min-height: 204px;
}
.box-secbook img {
    height: 70px;
}
/*--------------------------------------------------------------
# entry
--------------------------------------------------------------*/
.entry-header {
	min-height: 300px;
}
.entry-title {
	font-size: 2rem;
	text-shadow: 3px 0 0 #fff, -3px 0 0 #fff, 0 3px 0 #fff, 0 -3px 0 #fff, 2px 2px #fff, -2px -2px 0 #fff, 2px -2px 0 #fff, -2px 2px 0 #fff;
}
.entry-extra p {
	margin-bottom: 0.5rem;
}
.entry-content {
	font-weight: 500;
	text-align: justify;
}
.entry-content a:not(.btn) {
	text-decoration: underline;
	color: #0071FE;
}
.entry-content a:not(.btn):hover {
	color: #00E1C2;
}
.entry-content img {
	border-radius: 0.75rem;
}
/*.entry-content h2,
.entry-content h3,
.entry-content h4 {
	font-size: 1.25rem;
	font-weight: 700;
	text-transform: uppercase;
	color: #005C94;
	min-height: 2.5rem;
	padding: 0.625rem 1.5rem 0.5rem 3.5rem;
	margin-bottom: 1.5rem;
	position: relative;
}
.entry-content h2:before,
.entry-content h3:before,
.entry-content h4:before {
	content: ' ';
	background: transparent url(images/favicon.png) no-repeat center center / cover;
	display: block;
	width: 2.5rem;
	height: 2.5rem;
	position: absolute;
	z-index: -1;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
}
.entry-content h2:after,
.entry-content h3:after,
.entry-content h4:after {
	content: ' ';
	background-color: #B6E6FF;
	border-radius: 50rem;
	display: block;
	position: absolute;
	z-index: -2;
	top: 2px; 
	bottom: 2px;
	left: 2rem;
	right: 0;
}*/
.entry-content h2,
.entry-content h3,
.entry-content h4,
.entry-content h5 {
	font-weight: 700;
	margin-bottom: 1rem;
}
.entry-content h2 {
	font-size: 1.75rem;
	text-transform: uppercase;
	color: #005C94;
}
.entry-content h3 {
	font-size: 1.25rem;
	text-transform: uppercase;
	color: #005C94;
}
.entry-content h3:after {
	content: ' ';
	background-color: #00E1C2;
	display: block;
	width: 70px;
	height: 0.25rem;
	margin-top: 0.5rem;
}
#ftwp-header-title:after {
	display: none;
}
.entry-content h4 {
	font-size: 1rem;
	text-transform: uppercase;
}
.entry-content h5 {
	font-size: 1rem;
	color: #005C94;
}
.entry-content p {
	margin-bottom: 1.5rem;
}
.entry-content ol {
	padding-left: 1.875rem;
	margin-bottom: 1.25rem;
}
.entry-content ol li {
	font-size: 1.125rem;
	font-weight: 700;
	color: #005C94;
	padding-left: 1.5rem;
	margin-bottom: 1rem;
	position: relative;
}
.entry-content ol li:before {
	content: ' ';
	background-color: #B6E6FF;
	border-radius: 50%;
	display: block;
	width: 2rem;
	height: 2rem;
	position: absolute;
	z-index: -1;
	top: -3px;
	left: -1.875rem;
}
.entry-content ol li:after {
	content: ' ';
	width: 0.5rem;
	height: 0.5rem;
   	position: absolute;
   	bottom: 0.25rem;
   	left: -0.5625rem;
   	z-index: 10;
    background-color: #B6E6FF;
}
.entry-content ul {
	list-style: none;
	padding-left: 0;
	margin-bottom: 1.5rem;
}
.entry-content ul li {
	padding-left: 1.75rem;
	margin-bottom: 1rem;
	position: relative;
}
.entry-content ul li:before {
	content: ' ';
	background-color: #6F6D68;
	border-radius: 50%;
	display: block;
	width: 0.5rem;
	height: 0.5rem;
	position: absolute;
	top: 0.375rem;
	left: 0;
}
.wp-block-uagb-icon-list {
	margin-bottom: 1.5rem !important;
}
.wp-block-uagb-icon-list-child {
	margin-bottom: 1rem !important;
}
.entry-content figure {
	width: 100% !important;
	margin-bottom: 1.5rem;
}
.entry-content figure.aligncenter {
	text-align: center;
}
.entry-content figure figcaption {
	font-weight: 400;
	font-style: italic;
	background-color: #ECEBE9;
	border-radius: 50rem;
	padding: 0.25rem 1rem;
	margin-top: 1rem;
	position: relative;
}
.entry-content figure figcaption:before {
	content: ' ';
	border-bottom: 1rem solid #ECEBE9;
	border-left: 0.5rem solid transparent;
	border-right: 0.5rem solid transparent;
	margin-left: -0.5rem;
	position: absolute;
	bottom: 100%;
	left: 50%;
}
.entry-content .wp-block-separator {
	border-top-width: 0.625rem;
	margin-top: 1.5rem;
	margin-bottom: 1.5rem;
}
.entry-content .wp-block-table {
	overflow-x: auto;
	margin-bottom: 1.5rem;
}
.entry-content table {
	width: 100%;
	margin-bottom: 1.5rem;
}
.entry-content .wp-block-table table {
	min-width: 600px;
	margin-bottom: 0;
}
.entry-content table th,
.entry-content table td {
	border: 0 !important;
	border-top: 0.25rem solid #fff !important;
	border-bottom: 0.25rem solid #fff !important;
	padding: 0.5rem 0.75rem;
}
.entry-content table thead th:first-child,
.entry-content table tbody td:first-child {
	border-radius: 0.375rem 0 0 0.375rem;
}
.entry-content table thead th:last-child,
.entry-content table tbody td:last-child {
	border-radius: 0 0.375rem 0.375rem 0;
}
.entry-content table thead th {
	text-transform: uppercase;
	color: #fff;
	background-color: #005C94;
}
.entry-content table tbody td {
	background-color: #ECEBE9;
}
.entry-content .wp-block-embed {
	padding-top: 56.25%;
	margin-bottom: 1.5rem;
	position: relative;
}
.entry-content .wp-block-embed iframe {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
}
.entry-promotion .title {
	background-color: #00FFFF;
	border-radius: 0.5rem 0.5rem 0 0;
	line-height: 1;
}
.entry-promotion .title small {
	font-weight: 700;
}
.entry-promotion .desc {
	border-radius: 0 0 0.5rem 0.5rem
}
.entry-share li a {
	font-size: 0.8125rem;
	font-weight: 500;
	color: #FFF;
	background: #3B5998;
	border-radius: 0.25rem;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0.25rem 0.5rem;
}
.entry-share li a:hover {
	opacity: 0.8;
}
.entry-share li.twitter a {
	background: #55ACEE;
}
.entry-share li.google a {
	background: #E02F2F;
}
.entry-share li.linkedin a {
	background: #007BB5;
}
@media (min-width: 768px) {
	.entry-title {
		font-size: 3rem;
	}
	.page-template-page-intro .entry-content > .wp-block-columns {
		margin-left: -10.333333%;
		margin-right: -10.333333%;
	}
}

/*--------------------------------------------------------------
# Countdown
--------------------------------------------------------------*/
.eapps-countdown-timer {
	padding: 0 !important;
}
.eapps-countdown-timer-item-container {
	margin-top: 0 !important;
}

/*--------------------------------------------------------------
# site footer
--------------------------------------------------------------*/
.site-footer a {
	color: inherit;
}
.site-footer a:hover {
	color: #00E1C2;
}
.site-footer .menu li {
	margin-bottom: 0.5rem;
    list-style: none;
}
.site-footer .menu li a {
	background: transparent url(images/angle-right-white.svg) no-repeat left top 6px / 10px 10px;
	display: inline-block;
	padding-left: 0.75rem;
    font-size: 14px;
}
.footer-social-networks a {
	background-color: #fff;
	border-radius: 0.5rem;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 2.5rem;
	height: 2.5rem;
	margin-right: 1rem;
}	
.footer-social-networks a:hover {
	background-color: #00E1C2;
}
.footer-social-networks svg {
	fill: #005C94;
	height: 1.5rem;
	transition: fill 0.3s ease 0s;
}
.footer-social-networks a:hover svg {
	fill: #fff;
}
.footer-right {
    padding-top: 115px;
}