 @font-face {
  font-family: 'Kurious Looped';
  src: url('fonts/Kurious_Looped-Light.otf') format('opentype');
  font-weight: 300; /* Light */
  font-style: normal;
}

@font-face {
  font-family: 'Kurious Looped';
  src: url('fonts/Kurious_Looped-Medium.otf') format('opentype');
  font-weight: 500; /* Medium */
  font-style: normal;
}

@font-face {
  font-family: 'Kurious Looped';
  src: url('fonts/Kurious_Looped-SemiBold.otf') format('opentype');
  font-weight: 600; /* SemiBold */
  font-style: normal;
}

body{
	margin: 0;
	font-family: 'Kurious Looped', sans-serif;
	font-weight: 300;
}
ul, li {
  margin: 0;
  padding: 0;
  list-style: none;
}
h1,
h2,
h3,
h4,
h5,
h6,
p{
margin: 0;
    font-weight: normal;
}
a{
	color: rgba(64, 248, 169, 1);
}
section{
	position: relative;
/*	overflow: hidden;*/
	box-sizing: border-box;
	padding: 0 20px;    
}
section .container{
	width: 100%;
	max-width: 1140px;
	display: flex;
	flex-direction: row;
	margin: auto;
	box-sizing: border-box;
}
#header{
	background-color: #117B76;
}
.header-content{
	justify-content: space-between;
    align-items: center;
}

/* ## NavBar ## */
nav {
  padding: 0;
}
ul.menu, ul.submenu {
  list-style: none;
}
ul.menu {
	list-style: none;
	display: flex;
	background-color: transparent;
}

ul.menu > li {
  position: relative;
  list-style: none;
}

ul.menu > li > a {
	font-size: 14px;
	color: rgba(220, 220, 220, 1);
	padding: 15px 20px;
	display: block;
	text-decoration: none;
}

ul.menu > li:hover {
  	background-color: #444;
}

ul.submenu {
	display: none;
	position: absolute;
	top: 100%;
	left: 0;
	background-color: #444;
	min-width: 220px;
	z-index: 999; /* Make sure it's on top */
}

ul.menu > li:hover > ul.submenu {
  display: block;
}

ul.submenu li a {
	font-size: 14px;
	color: rgba(220, 220, 220, 1);
	padding: 10px 20px;
	display: block;
	text-decoration: none;
}

ul.submenu li a:hover {
  background-color: #555;
}


/*## Banner Slider ##*/
.owl-carousel {
  display: block;
}

.banner-slider .item img {
  width: 100%;
  /* height: 400px; */
  object-fit: cover;
  height: auto;
  aspect-ratio: 3 / 1;
}
#top-content{
	padding: 0;
}
#top-content .owl-theme .owl-dots {
	text-align: center;
	margin-top: -40px;
	margin-bottom: 18px;
	z-index: 9;
	position: relative;
}

#top-content .owl-theme .owl-dot {
  display: inline-block;
  margin: 0 5px;
  cursor: pointer;
}

#top-content .owl-theme .owl-dot span {
	width: 10px;
	height: 10px;
	background-color: transparent;
	border: solid 1px #FFF;
	display: block;
	border-radius: 50%; /* makes it a circle (bullet style) */
	transition: background-color 0.3s;
}
#top-content .owl-theme .owl-dots .owl-dot span{
	margin: 0;
}
#top-content .owl-theme .owl-dot.active span,
#top-content .owl-theme .owl-dot:hover span {
  background-color: #FFF;
}
/*# Service #*/
#service{
	background-color: #1C7E6A;
}
#service .container{
	justify-content: space-between;
	align-items: center;
	padding: 8px 0;
}
#service h2{
	font-size: 16px;
	color: #FFF;
	font-weight: 500;
}
#service span{
	font-size: 12px;
	color: #C0C0C0;
}
#service .container .list ul{
	display: flex;
	gap: 10px;
}
#service .container .list ul li{
	display: flex;
	align-items: center;
}
#service .container .list ul li span{
	color: #FFF;
	font-size: 16px;
	font-weight: 500;
	margin-left: 5px;
}

/*# About #*/
#about .container{
	flex-direction: row;
	padding: 80px 0;
    column-gap: 38px;
}
/* Basic Styles for Accordion */
.accordion {
  width: 100%;
  /* border-bottom: 1px solid #ccc; */
  /* border-radius: 8px; */
  overflow: hidden;
}

.accordion-item {
  border-bottom: 1px solid #ccc;
}

.accordion-header {
  /* background: #f1f1f1; */
  background: #fff;
  cursor: pointer;
  /* padding: 15px; */
  font-weight: bold;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
}

.accordion-body {
  max-height: 0;
  overflow: hidden;
  padding: 0 56px 0 0;
  background: #fff;
  transition: max-height 0.3s ease;
  display: flex;
  row-gap: 24px;
  flex-direction: column;
}

.accordion .accordion-item:first-child .accordion-header {
    padding: 0 0 20px 0;
}

.accordion-item.active .accordion-body {
  max-height: 200px; /* Adjust as needed */
  /* padding: 15px; */
  padding: 0 56px 40px 0;
}

.accordion-header .icon {
  transition: transform 0.3s ease;
}

.accordion-item.active .accordion-header .icon {
  transform: rotate(180deg); /* Rotate the icon when the item is open */
}

/* Video container */
.left .videos {
  display: flex;
  gap: 20px;
}

iframe#video1 {
    border-radius: 8px;
}

/*# Insight Library #*/
#insight-library .container{
	flex-direction: column;
	padding: 80px 0;
    column-gap: 38px;
}

#insight-library .heading {
	display: flex;
	flex-direction: row;
}
#banner{
	height: 480px;
	display: flex;
	align-items: center;
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
}
#banner .container{
		justify-content: center;
}
#banner .title{
	font-size: 48px;
	font-weight: 600;
	color: rgba(51, 51, 51, 1);
}
#blog-list .container{
	flex-direction: column;
}
.news-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	column-gap: 24px;
	row-gap: 48px;
}
.news-card {
	border: 0;
	border-radius: 8px;
	padding: 0;
	background-color: #FFF;
	transition: transform 0.2s;
}
.news-card:hover {
	transform: translateY(-0px);
}
.card-content{
	position: relative;
	height: 75px;
  	padding: 5px 5px 0px;
}
#blog-list .news-title h3{
  font-size: 14px;
  font-weight: 500;
  /* margin: 16px 0 13px; */
  color: rgba(51, 51, 51, 1);
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
}
.news-date {
  font-size: 14px;
  font-weight: 500;
  color: rgba(150, 150, 150, 1);
}
.news-link {
	font-size: 14px;
	font-weight: 500;
  display: inline-block;
  margin-top: 10px;
  color: rgba(138, 138, 138, 1);
  text-decoration: none;
  position: absolute;
  bottom: 0;
}
.news-link:after{
  content: "";
  transform: rotate(90deg);
  position: absolute;
  top: -3px;
  background-image: url(/images/chevron_open.svg);
  background-repeat: no-repeat;
  background-size: contain;
  display: block;
  width: 25px;
  height: 25px;
  right: -25px;
}
.news-link:hover {
/*  text-decoration: underline;*/
}
#pagination {
  margin-top: 20px;
  text-align: center;
}

#pagination button {
  margin: 3px;
  padding: 0;
  border: 0px solid #ccc;
  background: transparent;
  cursor: pointer;
/*  border-radius: 4px;*/
}

#pagination button.active {
  background: transparent;
   color: rgba(119, 119, 119, 1);
/*  font-weight: bold;*/
}

#pagination button:disabled {
/*  background: #eee;*/
/*  color: #999;*/
  cursor: default;
}
/* Arrow buttons */
.pagination-arrow {
/*  background-color: #f8f9fa;*/
/*  color: #333;*/
}
.pagination-arrow:hover:not(:disabled) {
  background-color: #ddd;
}

/* Specific arrow buttons */
.pagination-arrow.prev::before { 
	content: url(/images/chevron_left.svg);
	  display: block;
  transform: rotate(180deg);
 }
.pagination-arrow.next::after { 
	content: url(/images/chevron_left.svg);
 }

/* Specific arrow buttons */
.pagination-arrow.first::before { 
	content: url(/images/keyboard_double_arrow_right.svg);
	  display: block;
  transform: rotate(180deg);
 }
.pagination-arrow.last::after { 
	content: url(/images/keyboard_double_arrow_right.svg);
 }
#single-news{
	background-color: rgba(250, 250, 250, 1);
}
/* Number buttons */
#pagination .pagination-number {
  background-color: transparent;
  color: rgba(189, 189, 189, 1);
}
.pagination-number.active {
  background-color: transparent;
  color: rgba(119, 119, 119, 1);
/*  font-weight: bold;*/
}
#banner.banner-single-news .container{
	flex-direction: column;
}
#footer .container{
  flex-direction: column;	
  padding: 40px 0 60px;
  	font-size: 12px;
	line-height: 18px;
	color: rgba(119, 119, 119, 1);
}
#footer .footer-list ul{
	padding-left: 25px;
}
#footer .footer-list ul,
#footer .footer-list ul li{
/*	font-size: 12px;*/
/*	line-height: 18px;*/
	list-style: disc;
/*	color: rgba(119, 119, 119, 1);*/
}
#footer .footer-content{
/*	font-size: 12px;
	line-height: 18px;*/
}
#footer .footer-content-bottom{
	margin-top: 40px;
	padding-top: 55px;
	text-align: center;
	border-top: solid 1px rgba(119, 119, 119, 0.47);
}
#footer .footer-content-bottom h3{
	font-size: 20px;
	line-height: 24px;
	color: rgba(172, 158, 149, 1);
}
#footer .footer-content-bottom span{
	font-size: 14px;
	line-height: 17px;
	color: rgba(102, 102, 102, 1);
	display: block;
	margin-top: 24px;
}
#footer .footer-content-bottom p{
	margin-top: 8px;
	font-size: 14px;
	line-height: 17px;
	color: rgba(153, 153, 153, 1);
}

@media (max-width: 480px){ 
#blog-list .news-grid {
  grid-template-columns: 1fr 1fr;
}
    

}
