@charset "utf-8";
/* CSS Document */

/*===== PAGE SETUP =====*/

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body::before {
	display: block;
	/*contents:'';*/
	height: 60px;
	margin: 0px;
	padding: 0px;
	background-color: white;
	overflow-x: hidden;
  	font-family: 'Arial', sans-serif;
  	color: #505962;
}

.top_bg{
	width: 1920px;
	text-align: center;
	overflow: hidden;
	display: flex;
	justify-content: center;
	align-items: center;
}

.top_img{
	width: 100%;
	height: auto;
	max-width: 1920px;
	margin: 0 auto;
	display: block;
}

.col {
    display: flex;
    flex-direction: column;
}

.row{
	display: flex;
	flex-wrap: wrap;
}

.card {
	display: flex;
	flex-direction: column;
	height: 100%;
}

.card-body{
	flex: 1;
}

.card-title {
	height: 70px;
	overflow: hidden;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
}

h1, h2, h3, h4, h5, h6{
	font-family: 'Roboto', sans-serif;
}

h1{
	font-size: clamp(1.777rem, 2.49vw, 3.052rem)!important;
	font-weight: 900!important;
	letter-spacing: .3rem;
	color: #2E2E2E;
	padding: 32px 32px 32px 32px!important;
}

h2{
	font-size: clamp(0.8rem, 1.65vw, 2rem)!important;
	font-weight: 700!important;
	letter-spacing: .3rem;
	text-transform: uppercase;
}

h3{
	font-size: clamp(1.3rem, 2vw, 1.6rem)!important;
	font-weight: 700!important;
	letter-spacing: .3rem;
	text-transform: uppercase;
}

h4{
	font-size: 1.6rem;
	font-weight: 700!important;
	letter-spacing: .2rem;
	text-transform: uppercase;
}

h5 {
	font-size: 1.2rem;
	font-weight: 700!important;
	letter-spacing: .2rem;
	text-transform: uppercase;
}

h6{
	font-size: .95rem;
	font-weight: 700;
	letter-spacing: .2rem;
	text-transform: uppercase;
}
p{
	letter-spacing: .06rem;
	font-size: clamp(.9rem, 1.4vw, 1.2rem)!important;
	font-family: Gotham, "Helvetica Neue", Helvetica, Arial, "sans-serif";
}

a{
	font-size: 1.2rem;
	color: orange;
	text-decoration: none;
	font-family: 'Roboto';
	font-weight: 500;
	transition: all 0.3s ease-in-out;
}

a:hover {
	color: darkseagreen;
}

.img-fluid {
	display: block;
	max-width: 100%;
	height: auto;
	margin-bottom: .3rem;
  }

  section {
	display: block;
	max-width: 100%;
	height: auto;
  }

  li{
	font-size: 1.04rem;
	letter-spacing: .1rem;
	font-family: "Helvetica Neue", Helvetica, Arial, "sans-serif";
	padding-bottom: 1rem;
  }

.cover-page{
	width: 100%;
    height: auto;
    display: block;
	margin: 0 auto;
}

.btn-link {
    text-transform: uppercase !important;
    border: .3rem solid #333;
    background-color: transparent !important;
    color: #333;
    transition: border-color 0.3s ease-in-out, color 0.3s ease-in-out;
    font-weight: 700;
    margin-top: 32px;
    margin-right: 32px;
    letter-spacing: .15rem;
    height: auto;
    width: auto;
    font-size: clamp(.45rem, 1.5vw, 1.1rem) !important;
	border-radius: 5px;
	padding: 8px;
	text-decoration: none;
}

.btn-link:hover, .btn-link:active {
    border-color: orange !important;
    color: orange;
    background-color: transparent !important;
}

.btn-wrapper {
    margin-top: auto;
}

/*===== LOGO SLIDER =====*/

.slider-wrapper {
    width: 100%;
    overflow: hidden;
    position: relative;
    height: auto;
}

.slider {
    display: flex;
    position: relative;
}

.slider img {
    width: 384px;  
    height: 216px;
    flex-shrink: 0;
}

.slider-wrapper::before, .slider-wrapper::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100px;  
    z-index: 2;
    pointer-events: none;
}

.slider-wrapper::before {
    left: 0;
    background: linear-gradient(to right, rgba(255, 255, 255, 1), transparent);
}

.slider-wrapper::after {
    right: 0;
    background: linear-gradient(to left, rgba(255, 255, 255, 1), transparent);
}

@keyframes slide {
    0%, 100% { transform: translateX(0); }
    12.5% { transform: translateX(-384px); }
    25% { transform: translateX(-768px); }
    37.5% { transform: translateX(-1152px); }
    50% { transform: translateX(-1536px); }
    62.5% { transform: translateX(-1920px); }
    75% { transform: translateX(-2304px); }
    87.5% { transform: translateX(-2688px); }
}

/*===== SECTION COLOR =====

.bg-red{
	background-color: red;
}

.bg-light-gray{
	background-color: gainsboro;
}*/

/*===== NAVBAR MENU =====*/

.navbar {
  	padding: .7rem 1rem;
 	text-transform: uppercase;
	border-bottom: thin #2E2E2E;
	background: rgba(0,0,0,0.8)!important;
}

.navbar-brand img {
  	height: 3rem;
	margin-right: .9rem;
	cursor: pointer;
}

.navbar-nav li {
  	padding-right: 1.3rem;
}

.navbar-nav .nav-link {
  	color: white!important;
	transition-property: color;
	transition-duration: 0.3s;
	transition-timing-function: ease-in-out;
  	padding-top: .75rem;
  	letter-spacing: .1rem;
	font-size: .85rem!important;
	font-family: inherit;
	font-weight: 100;
}

.navbar-nav .nav-link.active,
.navbar-nav .nav-link:hover {
  	color: orange!important;
}

.navbar.solid {
  	background: rgba(0, 0, 0, 0.8)!important;
  	transition: background-color 1s ease-in-out 1s;
}

/*===== DROPDOWN MENU =====*/
 
.dropdown-item{
	color: white;
	background-color: transparent!important;
	font-size: .75rem!important;
}

.dropdown-menu {
   	border: 0;
	background: rgba(0,0,0,0.8)!important;
 }

.dropdown-menu.show {
   	margin-top: .75rem!important;
   	border-radius: 0rem;
   	transition: background-color .5s ease-in-out 1s;
 }

 .dropdown-submenu {
   	transition: background-color .5s ease-in-out 1s;
 }

 .dropdown-menu.no-space-top {
   	margin-top: 0!important;
 }

 .dropdown-menu:hover, .dropdown-item:hover,
 .dropdown-menu:focus, .dropdown-item:focus,
 .dropdown-toggle:active, .dropdown-toggle:focus {
   	color: orange;
 }

 .dropdown-submenu.solid,
 .dropdown-menu.show.solid {
   	background: rgba(0, 0, 0, 0.7)!important;
   	transition: background-color 2s ease 0s;
 }

 .dropdown-submenu > .dropdown-menu {
   	width: 100%;
  	margin-top: 0!important;
 }

 /*===== SLIDER =====*/

 .carousel-item {
    height: 100vh;
    min-height: 300px;
    background: no-repeat center center scroll;
    background-size: cover;
    position: relative;
}

 .carousel-item::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.6);
}

 #carousel-slider {
 	height: auto;
 }
 
 #carousel-slider .carousel-inner img {
 	object-fit: cover;
 	height: 100%;
 }
 
 .carousel-caption {
	bottom: 10%;
    z-index: 2;
    text-align: left;
	min-height: fit-content;
    background-color: rgba(0, 0, 0, 0.6);  
    border-radius: 10px; 
    padding: 35px; 
	width: clamp(10%, 70vw, 50%);
    word-wrap: break-word;  /* Allow text to wrap to new lines */
	border: solid .3rem rgba(0, 0, 0, 0.4);
 }
 
 .carousel-caption h2,
 .carousel-caption p {
 	display: block;
 }
 
 #carousel-slider .carousel-caption {
 	position: absolute;
 	top: 50%;
 	left: 35%;
 	transform: translate(-50%, -50%);
 	color: #fff;
 	stop-color: #2E2E2E;
 }
 
 #carousel-slider .carousel-caption h2 {
	font-weight: 900!important;
	text-transform: uppercase;
	letter-spacing: 2.3px;
	font-family: 'Roboto', sans-serif;
	margin-bottom: 20px;
	font-size: clamp(1.7rem, 8vw, 4.3rem)!important;
}
 
 #carousel-slider .carousel-caption p {
 	font-size: clamp(.9rem, 1.5vw, 1.4rem)!important;
 	line-height: 1.9;
 	font-family: 'Arial';
	letter-spacing: .15rem;
 }
 
 /*===== Carousel indicators =====*/

 #carousel-slider .carousel-indicators {
 	bottom: 75px;
 }

 .carousel-inner::before {
	 content: '';
 	position: absolute;
 	width: 100%;
 	height: 100%;
 	top: 0;
 	left: 0;
 	background: rgba(0,0,0,0.6);
 	z-index: 1;
 }
 
 /*===== Carousel controls =====*/

 #carousel-slider .carousel-control-prev,
 #carousel-slider .carousel-control-next {
 	width: 8%;
 	height: calc(24px + 2vh);
 	font-size: calc(24px + 2vh);
 	z-index: 3;
 }
 
 .carousel-control-prev, .carousel-control-next {
 	font-size: calc(24px + 2vh);
 	color: #fff;
 }

 .carousel-control-prev,
.carousel-control-next {
  	position: absolute;
  	top: 50%;
  	transform: translateY(-50%);
  	z-index: 5; /* increase the z-index to bring the controls to the front */
}

.carousel-control-prev {
  left: 0;
}

.carousel-control-next {
  right: 0;
}

/*===== CUSTOM BUTTONS =====*/

.btn-Custom {
	text-transform: uppercase !important;
    border: .3rem solid white;
    background-color: transparent!important;
    color: white;
    transition: border-color 0.3s ease-in-out, color 0.3s ease-in-out;
	font-weight: 500;
	margin-top: 32px;
	margin-right: 32px;
	letter-spacing: .15rem;
	height: auto;
	width: auto;
	font-size: clamp(.45rem, 1.5vw, 1.1rem)!important;
}

.btn-Custom:hover, .btn-Custom:active {
	border-color: orange !important;
    color: orange;
	background-color: transparent!important;
}

/*===== CONSTENT POPUP FORM =====*/

.cookie-consent-overlay {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: rgba(0, 0, 0, 0.5);
	display: flex;
	justify-content: center;
	align-items: center;
	z-index: 9999;
	opacity: 0;
	transition: opacity 0.5s ease-in-out;
  }
  
  .cookie-consent-popup {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 400px;
	height: 300px;
	background-color: white;
	border-radius: 5px;
	padding: 20px;
	box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5);
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	align-items: center;
  }
  
  .cookie-consent-text {
	text-align: center;
	margin-bottom: 20px;
  }
  
  .cookie-consent-button {
	background-color: #4CAF50;
	border: none;
	color: white;
	padding: 10px 20px;
	text-align: center;
	text-decoration: none;
	display: inline-block;
	font-size: 16px;
	border-radius: 5px;
	width: 150px;
	cursor: pointer;
  }
  
  .cookie-consent-cancel {
	background-color: #f44336;
	margin-left: 20px;
  }

/*===== TABLE CHART =====*/

 .table-responsive {
      overflow-x: auto; /* Enables horizontal scrolling on small screens */
    }

    table {
      font-size: 1rem; /* Adjust font size */
    }

/*===== MAIN BODY =====*/

.icon-size{
	font-size: 4.5rem;
}

.accordion{
	cursor: pointer;
	width: 70%;
	text-align: center;
	margin-right: 15%;
	margin-left: 15%;
	display: inline-block;
}

.accordion .accordion-item{
	text-align: left;
}

.custom-card {
	height: 100%;
	min-height: fit-content;
	padding: 32px;
	margin-right: 32px;
	width: clamp(10%, 70vw, 100%); 
    word-wrap: break-word;
}
/*===== FOOTER =====*/

footer a{
	text-decoration: none;
	color: white;
	font-size: 1rem;
	font-weight: 300;
	transition: color 0.3s ease;
}

footer a:hover{
	color: orange!important;
}

footer li{
	display: block;
	text-align: center;
	padding-bottom: 1rem;
}

footer h5{
	font-weight: 500!important;
}

.horizontal-list {
	display: flex;
	list-style-type: none;
	padding: 0;
  }

  .horizontal-list li {
	position: relative;
  }

  .horizontal-list li:not(:last-child)::after {
	content: "|";
	position: absolute;
	right: .6rem;
	color: inherit;
  }

  .horizontal-list li a {
	text-decoration: none;
	color: inherit;
	margin-right: 1rem;
	transition: color 0.3s;
	font-size: .8rem;
	margin-right: 1.75rem;
  }

  .horizontal-list li a:hover {
	color: orange!important;
  }

  .custom-link i {
    color: white;
    font-size: 2rem; 
    transition: color 0.3s ease;
	}

	.custom-link:hover i {
    color: orange;
	}

/*===== MEDIA =====*/
  
  /* Media 390px up to 575px */
  @media (min-width: 390px) and (max-width: 575px) {
	
  }
  
  /* Media 575px up to 991px */
  @media (min-width: 575px) and (max-width: 991px) {
	
	.navbar-brand img {
	  height: 2.5rem;
	  margin-right: 0.5rem;
	}
	.navbar-nav .nav-link {
	  font-size: 0.8rem;
	  letter-spacing: 0.07rem;
	}
	.icon-size {
	  font-size: 5rem;
	}
	.accordion {
	  width: 70%;
	  margin-right: 15%;
	  margin-left: 15%;
	}
	.card {
        height: auto; /* Auto height for smaller screens */
    }
	 table {
        font-size: 0.85rem; /* Smaller text on mobile */
      }
      th, td {
        white-space: nowrap; /* Prevents text wrapping in small columns */
      }
  }

  /* Media 992px up to 1200px */
@media (min-width: 992px) and (max-width: 1200px) {
	.row {
		display: flex;
		flex-wrap: nowrap;
	}
  }

  /* Media 1200px and above */
  @media (min-width: 1200px) {
	
	.navbar-brand img {
	  height: 3rem;
	  margin-right: 1rem;
	}
	.navbar-nav .nav-link {
	  font-size: 0.9rem;
	  letter-spacing: 0.1rem;
	}
	.icon-size {
	  font-size: 6rem;
	}
  }