 

/* ----------------------------------------------------
				 Fonts Style
---------------------------------------------------- 
@import url("https://fonts.googleapis.com/css2?family=Arial:wght@300;400;500;700&display=swap"); */
@import url("https://fonts.googleapis.com/css2?family=IBM+Plex+Sans+Thai:wght@400;500;600;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Sarabun:wght@400;500;600&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Roboto&display=swap");


/*---------------------------------------------------- */
/*----------------------------------------------------*/
/* Medium Layout: 1280px */
/* Tablet Layout: 768px */
/* Mobile Layout: 320px */
/* Wide Mobile Layout: 480px */
/*---------------------------------------------------- */
/*----------------------------------------------------*/

* {
  	margin: 0;
  	padding: 0; 
}

body {
	color: #4d4d4d;
	overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	line-height: normal;
}

p {
	font-family: "Sarabun";
	font-size: 18px;
	font-weight: normal;
	color: #4d4d4d;
	line-height: 1.7;
	word-wrap: break-word;
}

img {
  	max-width: 100%;
  	height: auto;
}

ul,
ul li {
  	margin: 0;
  	padding: 0; 
}

a,
a:active,
a:hover,
a:focus {
    text-decoration: none !important;
    outline: none;
  	-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;
}

button:focus {
  	outline: none;
  	box-shadow: none;
}



/* ----------------------------------------------------
		            Core CSS
---------------------------------------------------- */
.en { font-family: "Arial"; }
.th, .th-srb { font-family: "Sarabun"; }
.list {
  	list-style: none;
  	margin: 0px;
  	padding: 0px;
}

.has-border { border:  1px solid #ccc; }
.no-border { border: none !important; }

.no-bg { background: none; }

.has-box-shadow { box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px; }


/* ----------------------------------------------------
                     Spacing CSS
---------------------------------------------------- */
.base-gap { padding: 60px 0; }
.gap-top { padding-top: 60px; }
.gap-bottom { padding-bottom: 60px; }
.no-padding { padding: 0 !important; }
.no-padding-left { padding-left: 0 !important; }
.no-padding-right { padding-right: 0 !important; }

.mt-25 { margin-top: 25px; }
.no-margin { margin: 0 !important; }

@media (max-width: 991px) {
	.base-gap { padding: 50px 0; }
}
/*
@media (min-width: 992px) {
	.base-gap { padding: 30px 0; }
  	.header_area.home_menu { display: none; }
    .header_area.home_menu + section,
	.header_area.home_menu + row,
	.header_area.home_menu + div {
    	margin-top: 0px;
	}
}
*/



/* ---------------------------------------------------
	         Font Size & Text Color CSS
--------------------------------------------------- */
.fs-xxl { font-size: 24px !important; }
.fs-base { font-size: 18px !important; }
.fs-small { font-size: 16px !important; }
.fs-xsmall { font-size: 14px !important; }

.currentText { color: #1bbcad !important; }
.lime-text { color: #8cc63f !important; }
.white-text { color: white !important; }
.red-text { color: #c1272d !important; }



/* ----------------------------------------------------
                 Logo in sidemenu CSS
---------------------------------------------------- */
.side_logo {
	position: absolute;
	top: 4%;
	left: 9%;
	z-index: 999;
	width: 135px;
}



/* ----------------------------------------------------
                 Swipe Language CSS
---------------------------------------------------- */
.swipe-lang {
	position: absolute;
	top: 13.5%;
	left: 9%;
}
@media (max-width: 767px) {
	.swipe-lang {
  		top: 12%;
	}
}
@media (min-width:768px) and (max-width: 991px) {
	.swipe-lang {
  		top: 10%;
	}
}
.swipe-lang a {
	font-size: 16px;
	font-family: "Arial";
	text-transform: uppercase;
	vertical-align: middle;
	line-height: 1.15;
	filter: grayscale(100%);
}
.swipe-lang a:hover,
.swipe-lang a.active {
	filter: grayscale(0%);
	color: #1bbcad;
	font-weight: 500;
}
.swipe-lang img {
	display: block;
	float: left;
	width: 16px;
	margin-right: 7px;
}
.swipe-lang a:last-child {
	margin-left: 15px;
}
.btn-lang {
	display: inline-block; 
}


/* ----------------------------------------------------
		         Preloader CSS
---------------------------------------------------- */
#preloader {
  	position: fixed;
  	width: 100%;
  	height: 100%;
  	z-index: 9999999;
  	top: 0;
  	left: 0;
  	background-color: #1bbcad;
  	display: -webkit-box;
  	display: -ms-flexbox;
  	display: flex;
  	-webkit-box-align: center;
  	-ms-flex-align: center;
  	align-items: center;
  	-webkit-box-pack: center;
  	-ms-flex-pack: center;
  	justify-content: center;
  	overflow: hidden; 
}

.loader,
.loader::before,
.loader::after {
  	border-radius: 50%;
  	width: 2.5em;
  	height: 2.5em;
  	-webkit-animation-fill-mode: both;
  	animation-fill-mode: both;
  	-webkit-animation: load7 1.8s infinite ease-in-out;
  	animation: load7 1.8s infinite ease-in-out; 
}

.loader {
  	color: white;
  	font-size: 6px;
  	position: relative;
  	-webkit-transform: translateZ(0);
  	-ms-transform: translateZ(0);
  	transform: translateZ(0);
  	-webkit-animation-delay: -0.16s;
  	animation-delay: -0.16s; 
}

.loader::before,
.loader::after {
  	content: " ";
  	position: absolute;
  	top: 0; 
}

.loader::before {
  	left: -3.5em;
  	-webkit-animation-delay: -0.32s;
  	animation-delay: -0.32s; 
}

.loader::after { left: 3.5em; }

@-webkit-keyframes load7 {
  	0%, 80%, 100% { box-shadow: 0 2.5em 0 -1.3em; }
  	40% { box-shadow: 0 2.5em 0 0; } 
}
@keyframes load7 {
  	0%, 80%, 100% { box-shadow: 0 2.5em 0 -1.3em; }
  	40% { box-shadow: 0 2.5em 0 0; }
}



/* ----------------------------------------------------
		   Back to top CSS
---------------------------------------------------- */
#btn-back-to-top {
  	position: fixed;
  	bottom: 30px;
  	right: 30px;
	border: 3px solid #1bbcad;
  	color: #1bbcad;
  	display: block;
    width: 60px;
    height: 60px;
	border-radius: 50%;
	z-index: 999;
}
.btn-outline-light:focus,
.btn-outline-light:hover {
	color: white !important;
	background-color: #1bbcad !important;
	outline: 0;
	clear: both;
}



/* ----------------------------------------------------
                 Main Button Area CSS
---------------------------------------------------- */
.main_btn {
	padding: 0px 30px;
  	background: #1bbcad;
  	z-index: 2;
  	display: inline-block;
  	text-align: center;
  	color: white;
	text-decoration: none;
  	-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-transform: capitalize;
}
.main_btn:hover { color: white; }

.submit_btn {
  	width: auto;
  	display: inline-block;
  	background: #1bbcad;
  	padding: 0px 30px;
  	color: white;
  	font-size: 13px;
  	font-weight: 500;
  	height: 50px;
  	line-height: 50px;
  	border-radius: 5px;
  	outline: none !important;
  	border: 1px solid #1bbcad;
  	text-align: center;
  	cursor: pointer;
  	-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;
  	box-shadow: -14px 14px 60px rgba(244, 47, 44, 0.32);
}
.submit_btn:hover {
  	color: #1bbcad;
  	background: transparent;
    box-shadow: none;
}

.blog_btn {
  	border: 1px solid #eeeeee;
  	background: whitesmoke;
  	padding: 0px 32px;
  	font-size: 13px;
  	font-weight: 500;
  	border-radius: 5px;
  	color: #222222;
  	line-height: 34px;
  	display: inline-block; }
.blog_btn:hover {
  	background: #1bbcad;
    border-color: #1bbcad;
    color: white;
}
.btn-link {
  	color: #222222;
  	font-weight: 500;
  	margin-top: 30px;
  	display: inline-block;
}
.btn-link:hover {
    color: #1bbcad !important; 
}
.btn-link img {
    margin-left: 10px;
    -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;
    -webkit-filter: brightness();
    -moz-filter: brightness();
    -ms-filter: brightness();
    -o-filter: brightness();
    filter: brightness();
}
.btn-link:hover img {
    margin-left: 20px;
    -webkit-filter: brightness(1);
    -moz-filter: brightness(1);
    -ms-filter: brightness(1);
    -o-filter: brightness(1);
    filter: brightness(1);
}



/* ----------------------------------------------------
                 Main Title Area CSS
---------------------------------------------------- */
.main_title {
	text-align: left;
  	margin-bottom: 60px;
}
@media (max-width: 991px) {
    .main_title { margin-bottom: 50px; }
}

.main_title h1 {
    font-size: 42px;
    color: #222222;
	font-family: "Arial";
	font-weight: bold;
    margin-bottom: 30px;
    text-transform: capitalize;
}
.main_title h1 span {
      color: #1bbcad;
}
@media (max-width: 991px) {
	.main_title h1 { font-size: 30px; }
	.main_title p { font-size: 16px; }
}

.main_title p { margin-bottom: 0; }
.main_title img {
    margin-top: 30px;
    max-width: 470px;
}
.main_title.white h1 { color: white; }



/* ----------------------------------------------------
                 Header Area CSS
---------------------------------------------------- */
.header_area {
  	position: absolute;
  	width: 100%;
  	top: 0;
  	left: 0;
  	z-index: 99;
  	transition: background 0.4s, all 0.3s linear;
}
.header_area .navbar {
    background: transparent;
    padding: 0px;
    border: 0px;
    border-radius: 0px;
}
.header_area .navbar .nav .nav-item {
    margin-right: 45px;
}
.header_area .navbar .nav .nav-item .nav-link {
	font: 500 13px/100px;
    text-transform: uppercase;
    color: #222222;
    padding: 0px;
    display: inline-block;
}
.header_area .navbar .nav .nav-item .nav-link::after {
    display: none;
}
.header_area .navbar .nav .nav-item:hover .nav-link,
.header_area .navbar .nav .nav-item.active .nav-link {
    color: #1bbcad !important;
}
.header_area .navbar .nav .nav-item.submenu {
    position: relative;
}
.header_area .navbar .nav .nav-item.submenu ul {
    border: none;
    padding: 0px;
    border-radius: 0px;
    margin: 0px;
    background: white;
    box-shadow: 0px 3px 16px 0px rgba(0, 0, 0, 0.1);
}
@media (min-width: 992px) {
    .header_area .navbar .nav .nav-item.submenu ul {
     	position: absolute;
        top: 120%;
        left: 0px;
        min-width: 200px;
        text-align: left;
       	opacity: 0;
        transition: all 300ms ease-in;
        visibility: hidden;
        display: block;
        border: none;
        padding: 0px;
        border-radius: 0px;
	}
}

.header_area .navbar .nav .nav-item.submenu ul::before {
	content: "";
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 10px 10px 0 10px;
    border-color: #eeeeee transparent transparent transparent;
    position: absolute;
    right: 24px;
    top: 45px;
    z-index: 3;
    opacity: 0;
    transition: all 400ms linear;
}
.header_area .navbar .nav .nav-item.submenu ul .nav-item {
    display: block;
    float: none;
    margin-right: 0px;
    border-bottom: 1px solid #ededed;
    margin-left: 0px;
    transition: all 0.4s linear;
}
.header_area .navbar .nav .nav-item.submenu ul .nav-item .nav-link {
    line-height: 45px;
    color: #222222 !important;
    padding: 0px 30px;
    transition: all 150ms linear;
    display: block;
    margin-right: 0px; }
.header_area .navbar .nav .nav-item.submenu ul .nav-item:last-child {
    border-bottom: none;
}
.header_area .navbar .nav .nav-item.submenu ul .nav-item:hover .nav-link {
    background: #1bbcad;
    color: white !important;
}
@media (min-width: 992px) {
    .header_area .navbar .nav .nav-item.submenu:hover ul {
    	visibility: visible;
        opacity: 1;
        top: 100%;
	} 
}
.header_area .navbar .nav .nav-item.submenu:hover ul .nav-item {
    margin-top: 0px;
}
.header_area .navbar .nav .nav-item:last-child {
    margin-right: 0px;
}
.header_area .navbar .search {
	font-size: 12px;
    line-height: 60px;
    display: inline-block;
    color: #222222;
    margin-left: 220px;
}
.header_area .navbar .search i {
    font-weight: 600;
}
.header_area + section,
.header_area + row,
.header_area + div {
    margin-top: 0px;
}

.header_area.navbar_fixed .main_menu {
    position: fixed;
    width: 100%;
    top: -70px;
    left: 0;
    right: 0;
    background: #04091e;
    transform: translateY(70px);
    transition: transform 500ms ease, background 500ms ease;
    -webkit-transition: transform 500ms ease, background 500ms ease;
    box-shadow: 0px 3px 16px 0px rgba(0, 0, 0, 0.1);
}
.header_area.navbar_fixed .main_menu .navbar .nav .nav-item .nav-link {
    line-height: 80px;
    color: white;
}



/* ----------------------------------------------------
              Home Brand Carousel Area CSS
---------------------------------------------------- */
.product-area .row {
	position: relative;
}
.partner-carousel {
	margin: 30px 0 !important;
	position: absolute;
	bottom: 3%;
	width: 50% !important;
}
@media (max-width: 991px){
	.partner-carousel {
		position: unset;
		width: 100% !important;
	}
}
::-webkit-scrollbar {
	width: 8px;
}
.carousel-item .card {
	border: none;
	filter: grayscale(70%);
	-webkit-filter: grayscale(70%);
	-moz-filter: grayscale(70%);
}
.carousel-item .card:hover {
	filter: grayscale(0%);
	-webkit-filter: grayscale(0%);
	-moz-filter: grayscale(0%);
	cursor: pointer;
	background: url("../../images/bg-img/bg-polygon.jpg") center no-repeat;
	background-size: cover;
	border: 1px solid rgba(0, 0, 0, .125);
	border-radius: .25rem;
}
@media (max-width: 767px) {
	.carousel-inner .carousel-item > div {
		display: none; 
	}
	.carousel-inner .carousel-item > div:first-child {
		display: block;
	}
}
									
.carousel-inner .carousel-item.active, 
.carousel-inner .carousel-item-next, 
.carousel-inner .carousel-item-prev {
	display: flex;
}
@media (min-width: 768px) {
	.carousel-inner .carousel-item-end.active,
	.carousel-inner .carousel-item-next {
		transform: translateX(35%);
	}
	.carousel-inner .carousel-item-start.active,
	.carousel-inner .carousel-item-prev {
		transform: translateX(-35%);
	}
	.carousel-inner .carousel-item img {
		margin: 15px 0;
	}
}
									
.carousel-inner .carousel-item-end, 
.carousel-inner .carousel-item-start {
	transform: translateX(0);
}

.carousel-control-next,
.carousel-control-prev {
	width: 10% !important;
}



/* ----------------------------------------------------
                Common Banner Area CSS
---------------------------------------------------- */
.common_banner_area {
	position: relative;
}
.common_banner_area .col-lg-8 {
    padding-left: 0;
    padding-right: 0;
}
@media (max-width: 991px) {
    .common_banner_area .header-right {
		display: none;
    	/*padding-right: 50%;
        padding-top: 40px;*/
	}
}
/*@media (max-width: 767px) {
    .common_banner_area .header-right {
        margin-bottom: 130px;
        padding-right: 10%;
	}
}

.common_banner_area .header-right h1 {
      font-size: 45px;
}
*/
.common_banner_area .page_link {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 36%;
    background-color: #1bbcad;
    line-height: 1;
    padding: 30px 75px;
	font-family: "Arial";
}
@media (max-width: 767px) {
    .common_banner_area .page_link {
		position: unset;
    	width: 100%;
		padding: 20px 15px;
		font-size: 14px;
	}
}
@media (min-width: 768px) and (max-width: 991px) {
    .common_banner_area .page_link {
		position: unset;
    	width: 100%;
		padding: 30px 55px;
	}
}

.common_banner_area .page_link a,
.common_banner_area .page_link p,
.common_banner_area .page_link i {
    font-size: 16px;
    color: white;
    margin: 0;
    display: block;
    text-transform: capitalize;
    float: left;
    line-height: initial;
}
.common_banner_area .page_link a:hover {
	color: #0c683d;
	letter-spacing: .5px;
}
.common_banner_area .page_link i {
    margin: 2px 10px;
	font-size: 14px;
}
.common_banner_area .page_link p {
	font-weight: 500;
	font-family: "Arial";
}



/* ----------------------------------------------------
                   Footer Area CSS
---------------------------------------------------- */
.footer {
	background-color: #0c683d;
}
.copyright,
.designby {
	display: inline-block;
	color: white;
	font-size: 14px;
	font-family: "Arial";
	font-weight: 400;;
	margin: 0;
}
.designby a { color: #8cc63f !important; }
.designby a:hover { 
	text-decoration: underline !important;
}
.copyright { text-align: start; }
.designby { text-align: end; }
@media (max-width: 767px){
	.copyright,
	.designby { 
		text-align: center; 
	}
}



/* ----------------------------------------------------
	    Cookie Consent CSS
---------------------------------------------------- */
.footer-cookies {
	position: fixed;
	bottom: 0px;
	z-index: 99;
}
.footer-cookies .banner__section {
	display: flex;
	justify-content: center;
	background: rgba(0, 0, 0, 0.85);
	padding: 15px 20px;
	text-align: center;
}
.banner__section .banner__word {
	font-size: 14px;
	word-wrap: break-word;
	letter-spacing: 0.65px;
}
.banner__section span,
.banner__section a {
	color: white;
	text-decoration: none;
}
.banner__section a:hover {
	color: #1bbcad;
}
.banner__section .banner__word button {
	margin: 5px 3px 0 3px;
	border-radius: 5px;
}
.banner__section .banner__word .btn-success:hover {
	background-color: #1bbcad;
	border-color: #1bbcad;
}




/* ----------------------------------------------------
                 Menu Area CSS
---------------------------------------------------- */
.open .side_menu { right: 0px; }
.open .canvus_menu .toggle_icon span {
  	background: transparent !important;
}
.open .canvus_menu .toggle_icon span::before {
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
    top: 0px;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out; }
.open .canvus_menu .toggle_icon span::after {
    width: 30px;
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
    bottom: 0px;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}

.canvus_menu {
  	overflow: hidden;
  	position: absolute;
  	left: 0px;
  	top: 0px;
  	z-index: 99;
  	width: 100%;
  	padding-top: 30px;
  	padding-bottom: 30px;
}
.canvus_menu .toggle_icon {
    cursor: pointer;
    position: fixed;
    height: 20px;
    width: 30px;
    top: 25px;
    right: 2.75%;
    -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;
    background: transparent;
    padding: 20px;
    z-index: 9999;
}
@media (max-width: 575px) {
    .canvus_menu .toggle_icon { right: 30px; }
}

.canvus_menu .toggle_icon span {
    height: 2px;
    width: 20px;
    display: block;
    background: #222222;
    cursor: pointer;
    position: absolute;
    right: 0px;
    top: 50%;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}
.canvus_menu .toggle_icon span::before {
    content: "";
    height: 2px;
    width: 30px;
    display: block;
    background: #222222;
    right: 0px;
    top: -10px;
    position: absolute;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}
.canvus_menu .toggle_icon span::after {
    content: "";
    height: 2px;
    width: 25px;
    display: block;
    background: #222222;
    right: 0px;
    bottom: -10px;
    position: absolute;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out; 
}
.canvus_menu .toggle_icon.blog span,
.canvus_menu .toggle_icon.blog span:after,
.canvus_menu .toggle_icon.blog span:before {
      background: white;
}

.side_menu {
  	position: fixed;
  	right: -33%;
  	top: 0px;
  	height: 100%;
  	background-color: white;
  	width: 100%;
  	max-width: 33.3%;
	font-family: "Arial";
	font-weight: 400;
  	text-align: center;
  	padding-left: 20px;
  	z-index: 9;
  	padding-right: 20px;
  	-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;
}
@media (max-width: 767px) {
    .side_menu {
      max-width: 100%;
      right: -100%;
	}
}
@media (min-width: 768px) and (max-width: 991px) {
    .side_menu {
      max-width: 50%;
      right: -50%;
	}
}


.side_menu .input-group {
    display: block;
    position: relative;
}
.side_menu .input-group input {
    width: 100%;
    border: none;
    border-radius: 0px;
    height: 40px;
    padding: 0px 28px 0px 15px;
    background: #1bbcad;
    line-height: 40px;
    font-size: 12px;
    color: white;
    outline: none;
    box-shadow: none;
}
.side_menu .input-group input.placeholder,
.side_menu .input-group input::-moz-placeholder,
.side_menu .input-group input::-webkit-input-placeholder {
    font-size: 18px;
    color: white;
}
.side_menu .menu_right {
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    max-height: 420px;
}
.side_menu .menu_right li { margin-bottom: 25px; }
.side_menu .menu_right li:last-child { margin-bottom: 0px; }
.side_menu .menu_right li a {
	font-size: 18px;
    color: #222222;
    text-transform: uppercase;
	text-decoration: none;
}

.side_menu .menu_right li ul { display: none; }
.side_menu .menu_right li ul li {
    text-align: right;
    margin-bottom: 10px;
    margin-left: 40px;
}
.side_menu .menu_right li ul li a {
    color: #222222;
    text-transform: capitalize;
}
.side_menu .menu_right li ul li:first-child {
    margin-top: 10px;
}
.side_menu .menu_right li a:hover,
.side_menu .menu_right li ul li:hover a {
    font-weight: bold;
    color: #1bbcad;
}



/* ----------------------------------------------------
          Home+Contact Banner & Logo Area CSS
---------------------------------------------------- */
.home-banner-area { position: relative; }
.home-banner-container {
	display: flex;
}
.home-banner-area .logo,
.common_banner_area .logo {
    position: absolute;
    right: 20%;
    top: 30px;
}
@media (min-width: 1366px) {
    .home-banner-area .logo,
    .common_banner_area .logo {
        right: 20.85%;
    }
}
.home-banner-area .logo img,
.common_banner_area .logo img { 
	width: 135px;
}
@media (max-width: 991px) {
	.home-banner-container,
	.common_banner_area .container-fluid {
		display: block;
	}
	.home-banner-container .header-right h1 > br,
	.home-banner-area .logo,
	.common_banner_area .container-fluid .header-right h1 > br,
	.common_banner_area .logo {
        display: none;
	}
}

.home-banner-area .main_btn {
    position: absolute;
    right: 0%;
    bottom: 0;
    overflow: hidden;
    min-width: 700px;
    border-radius: 0px;
    line-height: 100px;
    font-size: 18px;
}
@media (max-width: 1199px) {
    .home-banner-area .main_btn {
    	min-width: 420px;
        line-height: 60px;
	}
}
@media (max-width: 1024px) {
    .home-banner-area .main_btn {
        font-size: 14px;
	}
}
@media (max-width: 991px) {
    .home-banner-area .main_btn {
        display: none;
	}
}

.home-banner-area .main_btn img {
	width: auto !important;
    display: inline-block !important;
    -webkit-filter: brightness(0) invert(1);
    -moz-filter: brightness(0) invert(1);
    -ms-filter: brightness(0) invert(1);
    -o-filter: brightness(0) invert(1);
    filter: brightness(0) invert(1);
    margin-left: 32px;
    -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;
}
.home-banner-area .main_btn:hover img { margin-left: 50px; }
.header-left {
  	position: relative;
  	padding-right: 0px !important;
}
@media (max-width: 576px) {
    .header-left {  
    	padding-right: 15px;
	}
}

.header-right {
	padding-left: 2.75% !important;
	padding-right: 2.75% !important;
}
@media (max-width: 991px) {
    .header-right {
      	max-width: 780px;
      	margin: 30px 15px 0 15px;
		padding-right: 2.5% !important;
	}
}

.header-right h1 {
    font-size: 38px;
	font-family: "Arial";
    line-height: 1.25;
    padding: 0 12px;
}
@media (max-width: 991px) {
    .header-right h1 {
        font-size: 35px;
	}
}



/* ----------------------------------------------------
              News & CSR Area CSS
---------------------------------------------------- */
.news-csr {
	position: relative;
	padding: 30px 0 60px 0;
}
.greendot {
	position: absolute;
	left: 0;
	top: 7.5%;
	width: 6.5%;
}
.news-csr .main_title {
	text-align: end;
}
.single_news-csr {
  	position: relative;
  	margin: 0 15px 40px 0;
	background: black;
    overflow: hidden;
}
.single_news-csr img.img-fluid {
	object-fit: cover;
   	opacity: 0.35;
	max-height: 550px;
    height: 550px;
    width: 100%;
    overflow: hidden;
}
.single_news-csr .news-csr_details {
    position: absolute;
    right: 0;
    top: 0;
    padding: 20px;
	font-family: "Arial";
    display: inline-block;
    background: white;
}
.single_news-csr .news-csr_details .d-flex p.col-md-6 {
	padding: 0;
}
@media (max-width: 767px){
	.single_news-csr .news-csr_details .d-flex p.col-md-6 {
		padding: 0 7px;
	}
}
@media (max-width: 991px) {
	.news-csr .row {
		flex-direction: column-reverse;
	}
	.greendot {
		display: none;
	}
	.news-csr .main_title {
		text-align: start;
	}
	.single_news-csr {
		margin: 0 0 30px 0;
		float: inherit;
	}
}

.single_news-csr .news-csr_details img {
	opacity: 1;
}
.single_news-csr .news-csr_details .date,
.single_news-csr .news-csr_details .time,
.single_news-csr .news-csr_details .views,
.single_news-csr .news-csr_details .likes {
	font-family: "Arial";
	font-size: 16px;
	color: #666;
	line-height: normal;
	text-align: center;
	margin-bottom: 7px;
}
.single_news-csr .news-csr_details .views,
.single_news-csr .news-csr_details .likes {
	padding: 0 8px;
	font-size: 13px;
	color: #999;
}
.single_news-csr .news-csr_details p.views::before,
.single_news-csr .news-csr_details p.likes::before {
	content: "\f06e";
	font-family: "Font Awesome 6 Free";
	font-weight: 900; 
	color: #999;
	margin-right: 5px;
}
.single_news-csr .news-csr_details p.likes::before {
	content: "\f004";
	font-weight: 400;
}
.single_news-csr .news-csr_details a {
    font-size: 17px;
    margin: 30px 0 0 0;
	color: #999;
}
.single_news-csr .news-csr_details a:hover {
	text-decoration: underline;
	color: #1bbcad;
}
.single_news-csr .news-csr_content {
	position: absolute;
	padding: 30px;
	bottom: 0;
	z-index: 1;
}
@media (max-width: 767px){
	.single_news-csr .news-csr_content {
		position: unset;
	}
}
.single_news-csr .news-csr_content h5,
.single_news-csr .news-csr_content p,
.single_news-csr .news-csr_content a.btn-link {
	color: white;
	line-height: normal;
}
.single_news-csr .news-csr_content a.btn-link {
	font-size: 14px;
	text-transform: uppercase;
}
.single_news-csr .news-csr_content a:hover.btn-link {
	color: #1bbcad;
}
.single_news-csr .news-csr_content a.btn-link > img {
	opacity: 1;
}
.single_news-csr .news-csr_content h5 {
	font-family: "Arial";
	margin-bottom: 15px;
}
.single_news-csr .news-csr_content p {
	font-size: 16px;
	margin-bottom: 0;
}
.join-us {
	width: 57% !important;
	bottom: 7.5%;
	padding: 30px 30px 15px 30px !important;
  	margin-top: 15px;
	background-color: #1bbcad;
	position: absolute;
	font-family: "Arial";
	left: 51%;
}
@media (max-width: 767px){
	.join-us {
		padding: 30px 30px 15px 30px !important;
		margin-top: 0;
	}
}
@media (max-width: 991px){
	.join-us {
		width: 100% !important;
		position: unset;
	}
}

.joinus-content {
  	display: flex;
  	flex-wrap: wrap;
}
@media (max-width: 767px){
	.joinus-content {
		display: block;
	}
}
.join-us p {
	color: white;
	font-family: "Arial";
	font-weight: normal;
	line-height: 30px;
	text-align: start;
	margin: 0;
}
.join-us a.btn-link {
	margin: 0;
	font-family: "Arial";
	padding: 15px 10px;
	text-align: center;
	background-color: white;
	color: #1bbcad;
	text-decoration: none;
	border: 1px solid white;
	border-radius: 30px;
	display: inline-block;
}
@media (max-width: 767px){
	.join-us a.btn-link {
		width: 100%;
	}
}

