* {
	scroll-behavior: smooth;
}

body{
	padding: 0;
	margin: 0;
	text-rendering: optimizeLegibility !important;
	-webkit-font-smoothing: antialiased !important;
	font-family: calibri;
	color: #d7e6f5;
}

@font-face {
	font-family: SystemFont Regular;
	src: url('/assets/fonts/sf-pro/SF-Pro-Text-Regular.otf');
}
@font-face {
	font-family: SystemFont Bold;
	src: url('/assets/fonts/sf-pro/SF-Pro-Text-Bold.otf');
}
button:hover{
	cursor: pointer !important;
}
button:focus {
	outline:0 !important;
	box-shadow: none !important;
	border: none !important;
}
button {
	outline:0;
}
input:focus, 
textarea:focus {
	border: 1px solid #8E6DF3;
	border-radius:  8px;
	border-color: #00D1DE !important;
	box-shadow: none !important;
}
input[type=email], 
input[type=text],
textarea{
	outline: none;
	box-shadow: none;
}

h1,h2,h3,h4,h5,h6{
	font-family: SystemFont Bold;
}



h1{
	font-family: SystemFont Bold;
	font-size: 46px;
	color: #FFFFFF;
	letter-spacing: 0.2px;
}
h2{
	font-family: SystemFont Bold;
	font-style: normal;
	font-weight: bold;
	font-size: 40px !important;
	line-height: 50px !important;
	color: #0a2540;
}
h3{
	font-family: SystemFont Bold;
	font-style: normal;
	font-weight: bold;
	font-size: 24px !important;
	line-height: 40px !important;
	color: #0a2540;
}
h4{
	font-family: SystemFont Bold;
	font-style: normal;
	font-weight: bold;
	font-size: 20px !important;
	line-height: 32px !important;
	color: #0a2540;
}
h5{
	font-family: SystemFont Bold;
	font-style: normal;
	font-weight: bold;
	font-size: 18px !important;
	line-height: 28px !important;
	color: #0a2540;
}
h6{
	font-family: SystemFont Bold;
	font-style: normal;
	font-weight: bold;
	font-size: 16px !important;
	line-height: 24px !important;
	color: #0a2540;
}

p{
	font-size: 16px;
	font-family: SystemFont Regular;
	color: #425466;
}


a:hover{
	text-decoration: none !important;
	color: #00D1DE;
	transition: all .3s ease-in-out;
}

::-webkit-input-placeholder { /* Chrome/Opera/Safari */
	font-family: SystemFont Regular;
	font-size: 16px;
	color: rgba(99, 113, 120, 0.4) !important;
	letter-spacing: 0;
}
::-moz-placeholder { /* Firefox 19+ */
	font-family: SystemFont Regular;
	font-size: 16px;
	color: rgba(99, 113, 120, 0.4) !important;
	letter-spacing: 0;

}
:-ms-input-placeholder { /* IE 10+ */
	font-family: SystemFont Regular;
	font-size: 16px;
	color: rgba(99, 113, 120, 0.4) !important;
	letter-spacing: 0;

}
:-moz-placeholder { /* Firefox 18- */
	font-family: SystemFont Regular;
	font-size: 16px;
	color: rgba(99, 113, 120, 0.4) !important;
	letter-spacing: 0;

}
/* width */
::-webkit-scrollbar {
	width: 4px;
	border-radius: 3px;
}

/* Track */
::-webkit-scrollbar-track {
	background: transparent;
	border-radius: 3px;
}

/* Handle */
::-webkit-scrollbar-thumb {
	background: #888; 
	border-radius: 3px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
	background: #697176;
	border-radius: 3px;
}

.left{
	float: left;
}
.right{
	float: right;
}
.mt-24{
	margin-top: 24px;
}
.mt-32{
	margin-top: 32px;
}
.h-80{
	width: 100%;
	height: 80px;
}
.h-80{
	width: 100%;
	height: 80px;
}
.img-responsive{
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.flex{
	display: flex;
}
.form-control{
	background: #FFFFFF;
	border: 1px solid #EAEAEB;
	box-sizing: border-box;
	border-radius: 8px;
	height: 56px;
	color: #0a2540;
	padding: 16px;
	box-shadow: none !important;
}
label{
	font-family: SystemFont Bold;
	font-size: 12px;
	line-height: 14px;
	text-transform: capitalize;
	color: #0a2540;
	margin-bottom: 4px;
}
.required{
	color: #EB5757;
}

/* Button */
.btn-custom{
	border-radius: 8px !important;
	padding: 16px 24px;
	font-family: SystemFont Bold;
	font-style: normal;
	font-weight: bold;
	font-size: 18px;
	line-height: 24px;
	text-transform: uppercase;
	display: inline-flex;
	justify-content: space-between;
}
.btn-primary{
	background: #1D305F !important;
	font-family: SystemFont Regular;
	font-style: normal;
	font-weight: bold;
	font-size: 18px;
	line-height: 22px;
	/* identical to box height, or 122% */

	text-transform: uppercase;

	/* Neutral - fff */

	color: #FFFFFF;
}
.btn-primary img{
	margin-left: 24px;
	float: right;
}
a:not([href]).btn-primary{
	color: #fff;
}
.btn-primary:hover{
	color: #fff !important;
	background: #0D1C40 !important;
	transition: all .3s ease-in-out;
	cursor: pointer;
}

/* Primary Outline */
.btn-primary-outline{
	border: 1px solid #1D305F;
	color: #0a2540;
}
.btn-primary-outline img{
	margin-left: 24px;
	float: right;
}
.btn-primary-outline:hover{
	color: #fff;
	opacity: 0.9;
	transition: all .3s ease-in-out;
}

/* Secondary */
.btn-secondary{
	background: #00D1DE !important;
	color: #FFFFFF !important;
}
.btn-secondary img{
	margin-left: 24px;
	float: right;
}
.btn-secondary:hover{
	background: #00BECA !important;
	transition: all .3s ease-in-out;
}

/* Secondary Outline */
a:not([href]).btn-secondary-outline{
	border: 1px solid #00D1DE;
	color: #00D1DE !important;
}
.btn-secondary-outline{
	border: 1px solid #00D1DE;
	color: #00D1DE;
}
.btn-secondary-outline img{
	margin-left: 24px;
	float: right;
}
.btn-secondary-outline:hover{
	color: #fff;
	background: #00D1DE;
	opacity: 0.9;
	transition: all .3s ease-in-out;
}
a:not([href]).btn-secondary-outline:hover{
	color: #fff !important;
	background: #00D1DE;
	opacity: 0.9;
	transition: all .3s ease-in-out;
	cursor: pointer;
}
.btn-secondary-outline:hover img{
	filter: brightness(0) invert(1);
	transition: all .3s ease-in-out;
}

/* White */
.btn-white{
	background: #fff;
	color: #0a2540;
}
.btn-white img{
	margin-left: 24px;
	float: right;
}
.btn-white:hover{
	background: #fff;
	color: #0a2540;
	transition: all .3s ease-in-out;
}
/* White Outline */
.btn-white-outline{
	border: 1px solid #FFFFFF;
	color: #fff;
}
.btn-white-outline img{
	margin-left: 24px;
	float: right;
}
.btn-white-outline:hover{
	background: #fff;
	color: #0a2540;
	transition: all .3s ease-in-out;
}





.logo{
	max-width: 100%;
	height: 40px;
}
.navbar-brand img{
	width: auto;
	height: 40px;
}
.navbar-light .navbar-toggler{
	border: none !important;
}
.navbar{
	background: transparent;
	z-index: 2;
	height: 80px;
}
.navbar-nav .nav-link{
	font-family: SystemFont Regular;
	font-style: normal;
	font-weight: 600;
	font-size: 14px !important;
	line-height: 22px !important;
	/* identical to box height, or 157% */
	text-transform: uppercase;
	color: #0a2540 !important;
	padding: 0px 20px !important;
}
.navbar-nav .nav-link.active{
	color: #00D1DE !important;
}

#bg-header .navbar-nav .nav-link,
#header-news .navbar-nav .nav-link,
#header-contact .navbar-nav .nav-link{
	color: #fff !important;
}
#bg-header .navbar-nav .nav-link.active,
#header-news .navbar-nav .nav-link.active,
#header-contact .navbar-nav .nav-link.active{
	color: #00D1DE !important;
}

#navbar-white .navbar-nav .nav-link{
	color: #0a2540 !important;
}
#navbar-white .navbar-nav .nav-link.active{
	color: #00D1DE !important;
}
#navbar-white.navbar{
	background: transparent;
	position: fixed;
	margin-top: -80px;
	visibility: hidden;
	width: 100%;
	z-index: 9;
}
#navbar-white .btn-white-outline{
	background: #0c1011 !important;
	color: #fff !important;
	width: 100%;
	text-align: center !important;
}

.sticky {
	background: #fff !important;
	visibility:  !important;
	margin-top: -80px !important;
	transition: 1s;
	box-shadow: 0 4px 15px 0 rgba(32,43,54,0.05);
}

.sticky-responsive {
	background: #fff !important;
	visibility: visible !important;
	transition: 1s;
	box-shadow: 0 4px 15px 0 rgba(32,43,54,0.05);
}
.sticky-burger{
	display: block !important;
}
.burger-menu-black{
	position: absolute;
	top: 21px;
	right: 28px;
	display: none;
}
/* ----- MODAL STYLE ----- */
.modal-content {
	border-radius: 0 !important;
	border: none;
	background: rgb(0, 4, 18) !important;
}

.modal-header {
	border-bottom-color: #EEEEEE;
	background-color: transparent;
	padding: 24px !important;
}
.modal-header img{
	width: 48px;
	height: 48px;
}
.modal-body{
	height: 100vh;
	padding: 24px !important;
}
.modal-body ul{
	padding-inline-start: 0px !important;
}

.modal-body ul li{
	display: block;
	margin-bottom: 24px;
}
.nav-modal{
	margin-left: 0 !important;
}
.modal-dialog{
	margin: 0 !important;
	width: 80% !important;
	max-width: 80% !important;
	right: 0;
}
.modal-body ul li a{
	color: #fff;
	display: block;
	font-size: 16px;
	font-family: SystemFont Bold;
	text-align: left;
}
.modal-body .navbar-nav .nav-link{
	padding-left: 0 !important;
}

.modal-body ul li a.btn-white-outline{
	background: #8E6DF3 !important;
	color: #fff !important;
	padding: 16px 24px;
	margin-top: 16px;
	width: 100%;
	text-align: center !important;
}


.modal-dialog-slideout {
	min-height: 100%; 
	margin: 0 0 0 auto;
}
.modal.fade .modal-dialog.modal-dialog-slideout {
	-webkit-transform: translate(100%,0)scale(1);
	transform: translate(100%,0)scale(1);
}
.modal.fade.show .modal-dialog.modal-dialog-slideout {
	width:80%;
	-webkit-transform: translate(25%,0);
	transform: translate(25%,0);
	display: flex;
	align-items: stretch;
	-webkit-box-align: stretch;
	height: 100%;
}
.modal.fade.show .modal-dialog.modal-dialog-slideout .modal-body{
	overflow-y: auto;
	overflow-x: hidden;
}
.modal-dialog-slideout .modal-content{
	border: 0;
}
.modal-dialog-slideout .modal-header, 
.modal-dialog-slideout .modal-footer {
	height: auto; 
	display: block;
} 

.close{
	opacity: 1 !important;
}
.modal-header{
	border-bottom: 1px solid rgba(0,0,0,0.08) !important;
}
.modal-header span{
	font-size: 20px;
	font-family: SystemFont Bold;
	color: #0a2540;
}
.modal-header .close img{
	width: 24px;
	height: 24px;
}


.modal-open {
	overflow: visible !important;
}


/* HEADER BACKGROUND */
/* HEADER BACKGROUND */
/* HEADER BACKGROUND */
/* HEADER BACKGROUND */
/* HEADER BACKGROUND */
/* HEADER BACKGROUND */

#bg-header{
	width: 100%;
	height: 768px;
	background-image: url('/assets/images/new_images/blog-lawn-care-1140x713.jpg.webp');
	background-size: 100%;
	background-position: top center;
	background-repeat: no-repeat;
	background-size: cover;
}

.hero-header{
	width: 100%;
	height: 100%;
	padding-top: 180px;
}
.hero-header h1{
	font-family: SystemFont Bold;
	font-style: normal;
	font-weight: bold;
	font-size: 64px;
	line-height: 74px;
	align-items: center;
	color: #FFFFFF;
	margin-bottom: 16px;
}
.hero-header p{
	font-family: SystemFont Regular;
	font-style: normal;
	font-weight: normal;
	font-size: 24px;
	line-height: 34px;
	/* or 150% */
	align-items: center;

	color: rgba(255, 255, 255, 0.8);
	margin-bottom: 40px;
}
.dot{
	color: #00D1DE;
}

.hero-header-news{
	width: 100%;
	height: 100%;
	padding-top: 80px;
}
.hero-header-news h1{
	font-family: SystemFont Bold;
	font-style: normal;
	font-weight: bold;
	font-size: 56px;
	line-height: 66px;
	text-align: center;
	color: #0a2540;
	margin-bottom: 16px;
}

.hero-image img{
	width: 100%;
	height: 100%;
	margin-top:64px;
	object-fit: cover;
}


/* OUR MARKET */
section{
	padding: 100px 0px;
}

#our-market{

}

.title-section{
	margin-bottom: 80px;
}
.label-title-grey{
	padding: 1px 13px;
	background: #F6F7FB;
	border-radius: 4px;
	font-family: SystemFont Bold;
	font-style: normal;
	font-weight: bold;
	font-size: 14px;
	line-height: 30px;
	color: #0a2540;
	margin-bottom: 8px;
	display: inline-block;
	text-transform: uppercase;
}
.label-title-white{
	padding: 1px 13px;
	background: #fff;
	border-radius: 4px;
	font-family: SystemFont Bold;
	font-style: normal;
	font-weight: bold;
	font-size: 14px;
	line-height: 30px;
	color: #0a2540;
	margin-bottom: 8px;
	display: inline-block;
	text-transform: uppercase;
}
.title-section h2{
	font-style: normal;
	font-weight: bold;
	font-size: 40px;
	line-height: 50px;
	color: #0a2540;
	margin-bottom: 24px;
}
.title-section p{
	font-style: normal;
	font-weight: normal;
	font-size: 16px;
	line-height: 28px;
	/* or 175% */

	color: #425466;
}
.divider-line{
	width: 100%;
	height: 1px;
	background: rgba(42, 49, 53, 0.1);
}

.feature-w-icon{
	width: 100%;
	height: auto;
	margin-bottom: 40px;
}
.feature-w-icon img{
	width: 64px;
	height: 64px;
	margin-bottom: 24px;
}
.feature-w-icon h4{
	font-family: SystemFont Bold;
	font-style: normal;
	font-weight: bold;
	font-size: 20px;
	line-height: 30px;
	color: #0a2540;
	margin-bottom: 8px;
}
.feature-w-icon p{
	font-family: SystemFont Regular;
	font-style: normal;
	font-weight: normal;
	font-size: 16px;
	line-height: 26px;
	color: #425466;
}



/* Our Business */
#our-business{

}
.dot-ornament-left{
	background: url('http://beerensgas.com/assets/images/dot-ornament.svg');
	position: absolute;
	width: 156px;
	height: 156px;
	top: -48px;
	left: -48px;
	z-index: -1;
}
.dot-ornament-right{
	background: url('http://beerensgas.com/assets/images/dot-ornament.svg');
	position: absolute;
	width: 156px;
	height: 156px;
	bottom: -48px;
	right: -48px;
	z-index: -1;
}
.section-inner-left{
	padding-left: 50%;
	position: relative;
}
.section-inner-right{
	padding-right: 50%;
	position: relative;
	margin-top: 80px;
}
.section-inner-left .img-section{
	position: relative;
	float: left;
	width: 90%;
	margin-left: -100%;
}
.section-inner-right .img-section{
	position: relative;
	float: right;
	width: 90%;
	margin-right: -100%;
}
.img-section img{
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 16px;
	overflow: hidden;
	box-shadow: 8px 16px 32px rgba(41, 56, 86, 0.16);
}

.desc{
	float: right;
	width: 100%;
}

.desc li{
	color: rgb(199, 219, 234);
}

.desc h2{
	margin-top: 32px;
	margin-bottom: 32px;
}



/* Partners */
#partners .title-section{
	width: 80%;
	margin: auto;
	margin-bottom: 80px;	
}
.partners-logo{
	width: 20%;
	height: auto;
	position: relative;
	padding-right: 15px;
	padding-left: 15px;
	margin-bottom: 48px;
}
.partners-logo img{
	width: 100%;
	height: 100%;
	/* background: #fff; */
	padding: 8px 16px;
	object-fit: cover;
	/*filter: grayscale(100%);*/
}
.partners-logo img:hover{
	box-shadow: 8px 16px 32px rgba(0, 0, 0, 0.05);
	transition: all .3s ease-in-out;
	border-radius: 8px;
	filter: none;
	transform: scale(1.1);
}





/* News */
#news{
	background: #F3F6F9;	
}
.news-card{
	background: #FFFFFF;
	border-radius: 16px;
	overflow: hidden;
	margin-bottom: 32px;
	transition: all .3s ease-in-out;
}
.news-card:hover{
	transition: all .3s ease-in-out;
	box-shadow: 8px 16px 32px rgba(41, 56, 86, 0.04);
}
.news-card:hover img{
	transform: scale(1.2);
	transition: all .3s ease-in-out;
}
.news-image{
	width: 100%;
	height: 234px;
	overflow: hidden;
}
.news-image img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.news-title{
	padding: 24px;
}
.news-title p{
	font-style: normal;
	font-weight: normal;
	font-size: 14px;
	line-height: 18px;
	margin-bottom: 8px;
	color: #425466;
}
.news-title h4{
	font-style: normal;
	font-weight: bold;
	font-size: 20px;
	line-height: 30px;
	/* or 150% */


	/* Text 1 -#0a2540 */

	color: #0a2540;
	display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.cta-desktop{
	margin-top: 24px;
}
.cta-mobile{
	display: none;
}
.



/* Footer */
#footer{
	padding-bottom: 80px;
}
#footer a:hover{
	color: #00D1DE;
}
.sub-footer p{
	font-style: normal;
	font-weight: normal;
	font-size: 14px;
	line-height: 24px;
	/* identical to box height, or 171% */
}
.sub-footer img{
	margin-bottom: 24px;
}
.sub-footer a.link-footer{
	font-weight: normal;
	font-size: 14px;
	line-height: 22px;
	color: #425466;
	display: inline-block;
	margin-bottom: 24px;
}
.sub-footer h6{
	margin-bottom: 24px;
}
#address .list-info .front-title{
	width: 15%;
}
.info-footer{

}
.list-info{
	display: flex;
	margin-bottom: 16px;
}
.list-info .front-title{
	width: 30%;
	font-weight: bold;
	font-size: 14px;
}
.list-info .detail-title{
	width: 80%;
	font-style: normal;
	font-weight: normal;
	font-size: 14px;
	line-height: 24px;
	/* identical to box height, or 171% */


	/* Text 2 -#425466 */

	color: #425466;
}
.list-info .detail-title a{
	font-family: SystemFont Regular;
	font-style: normal;
	font-weight: normal;
	font-size: 14px;
	line-height: 24px;
	/* identical to box height, or 171% */


	/* Text 2 -#425466 */

	color: #425466;
}

.get-in-touch{
	width: 100%;
	padding: 80px 0px;
	margin-bottom: 80px;
	background: url('http://beerensgas.com/assets/images/bg-getintouch.jpg');
	background-size: cover;
}
.get-in-touch h2{
	color: #fff;
}
.get-in-touch p{
	font-size: 20px;
	line-height: 30px;
	/* or 150% */


	color: rgba(255, 255, 255, 0.8);
}
.get-in-touch a{
	margin-top: 40px;
}
.cta-get-in-touch{
	text-align: right;
}

.copyright{
	width: 100%;
	margin-top: 80px;
	margin-bottom: 40px;
}
.social-media{
	text-align: right;
}
.social-media a{
	margin-left: 16px;
}




#header-nobackground{
	background: transparent;
	height: 552px;
}
#header-nobackground .dot-ornament-left{
	top: 24px;
	z-index: 0;
}
#header-nobackground .navbar-nav .nav-link{
	color: #0a2540 !important;
}
#header-nobackground .navbar-nav .nav-link.active{
	color: #00D1DE !important;
}

#header-nobackground .hero-header{
	padding-top: 80px;
}
#header-nobackground .hero-header h1{
	color: #0a2540;
	margin-bottom: 16px;
}
#header-nobackground .hero-header p{
	color: #425466;
	font-style: normal;
	font-weight: normal;
	font-size: 24px;
	line-height: 40px;
}

#hero-image{
	width: 100%;
	height: 680px;
	overflow: hidden;
}
#hero-image img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}


#service .title-section{
	padding-right: 56px;
}
#service .title-section p{
	text-align: left;
}


#guarante{
	padding: 0;
	background: #F3F6F9;
	overflow: hidden;
}
#guarante .img-inner{
	width: 90%;
}
#guarante .desc{
	padding: 100px 0px 100px 70px;
	padding-right: 10%;
	width: 100%;
}




#header-news{
	background: url('http://beerensgas.com/assets/images/imagehero-news.jpg');
	background-size: cover;
	background-repeat: no-repeat;
}
#header-news .hero-header{
	padding-top: 130px;
	padding-bottom: 130px;
}
#header-news .hero-header h1{
	color: #fff;
}
#header-news .hero-header p{
	color: rgba(255,255,255,0.8);
	font-style: normal;
	font-weight: normal;
	font-size: 24px;
	line-height: 40px;
}

#header-contact{
	background: url('http://beerensgas.com/assets/images/imagehero-contact.jpg');
	background-size: cover;
	background-repeat: no-repeat;
}
#header-contact .hero-header{
	padding-top: 130px;
	padding-bottom: 130px;
}
#header-contact .hero-header h1{
	color: #fff;
}
#header-contact .hero-header p{
	color: rgba(255,255,255,0.8);
	font-style: normal;
	font-weight: normal;
	font-size: 24px;
	line-height: 40px;
}



#apply{
	width: 100%;
	height: auto;
	background: url('http://beerensgas.com/assets/images/apply.jpg');
	background-size: cover;
	background-repeat: no-repeat;
	padding: 100px 0px;
	margin-bottom: 80px;
}

.content-apply{
	width: 90%;
	margin: auto;
	text-align: center;
}
.content-apply h2{
	text-align: center;
	color: #fff;
	margin-bottom: 16px;
}
.content-apply p{
	font-size: 20px;
	line-height: 28px;
	/* or 140% */

	text-align: center;

	color: rgba(255, 255, 255, 0.8);
	text-align: center;
	margin-bottom: 40px;
}

#contact-content{
	background: #F3F6F9;
}
.card-default{
	background: #FFFFFF;
	box-shadow: 8px 16px 32px rgba(41, 56, 86, 0.04);
	border-radius: 16px;
	padding: 40px;
	overflow: hidden;
}
#map{
	width: 100%;
	height: 100%;
	display: block;
	position: relative;
}
.card-map{
	background: #FFFFFF;
	box-shadow: 8px 16px 32px rgba(41, 56, 86, 0.04);
	border-radius: 16px;
	overflow: hidden;
	margin-top: 64px;
}
.card-default h2{
	color: #0a2540;
	margin-bottom: 16px;
}
.card-default p{
	color: #425466;
	margin-bottom: 40px;
}
.card-default .btn-custom{
	width: 100%;
}

.map-area{
	width: 100%;
	height: 500px;
}
.address-map-info{
	padding: 40px;
}
.address-map-info p{
	color: #637178;
}
.phone-code{
	width: 20%;
	font-style: normal;
	font-weight: bold;
	font-size: 16px;
	line-height: 26px;
	color: #425466;
}
.phone-number a{
	width: 80%;
	font-size: 16px;
	line-height: 26px;
	color: #637178;
}
.phone-number a:hover{
	color: #00D1DE;
}

.contact-form-card{
	background: #FFFFFF;
	box-shadow: 8px 16px 32px rgba(41, 56, 86, 0.04);
	border-radius: 16px;
	padding: 100px;
	margin-top: 64px;
}
.contact-form-card .flex{
	margin-bottom: 16px;
}
.contact-form-card .social-media{
	text-align: left;
}
.contact-form-card .social-media{
	margin-top: 40px;
}
.contact-form-card .social-media h6{
	margin-bottom: 16px;
}
.contact-form-card .social-media a{
	margin-left: 0;
	margin-right: 16px;
}

.form-info {
	width: 90%;
}
.form-info h2{
	margin-bottom: 16px;
}
.form-info p{
	color: #425466;
	margin-bottom: 24px;
}

#contact footer{
	padding-top: 80px;
}




/* NEWS Detail */

/* Time Detail */
.time-detail{
	display: inline-flex;
	vertical-align: middle;
	text-align: center;
	width: 100%;
	justify-content: center;
	line-height: 40px;
}
.time-detail p{
	font-size: 20px;
}
.time-detail p span{
	margin:0px 16px;
}
/* Share Button */
.social-media-share{
	display: inline-flex;
	vertical-align: middle;
}
.social-media-share p{
	margin-right: 16px;
}
.social-media-share a{
	width: 40px;
	height: 40px;
	margin-right: 16px;
}

.img-news-detail{
	width: 100%;
	height: 543px;
	box-shadow: 8px 16px 32px rgba(41, 56, 86, 0.16);
	border-radius: 16px;
	overflow: hidden;
	margin-bottom: 64px;
}
.img-news-detail img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.news-desc p{
	font-size: 20px;
	margin-bottom: 32px;
	color: #425466;
}

.news-desc ul{
	padding-inline-start: 16px;
}
.news-desc ul li{
	padding-bottom: 24px;
	font-size: 20px;
}
.news-desc ul li a{
	color: #425466;
	font-size: 20px;
}


#maps-tooltip p {
  font-size: 16px;
  line-height: 26px;
  margin-bottom: 0;
}
.gm-ui-hover-effect {
    opacity: .6;
    top: 0 !important;
    right: 0 !important;
}
.gm-ui-hover-effect img{
	width: 24px !important;
	height: 24px !important;
	margin: 0 !important;
	display: inline-block !important;
}

.moretext {
  display: none;
}
.moreless-button{
	margin-top: 40px;
}
