/* Fonts */
@font-face { font-family: Inter; src: url('../../font/Inter-Regular.otf');
    src: local('☺'), url('../../font/Inter-Regular.woff2') format('woff2'), 
                        url('../../font/Inter-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}

@font-face { font-family: Inter; src: url('../../font/Inter-Light.otf');
    src: local('☺'), url('../../font/Inter-Light.woff2') format('woff2'), 
                        url('../../font/Inter-Light.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
}

@font-face { font-family: Jost; src: url('../../font/Jost-Regular.ttf');
    src: local('☺'), url('../../font/Jost-Regular.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
}
/* End Fonts */

/* Html/ body */
html,body {
	height: 100%;
	width: 100%;
	margin: 0px;
	padding: 0px;
	border: none;
	font-size: 1em;
}

/* End Html/ body */

/* End HTML */

/* Cookies popup */
#popup_cookies {
    position: fixed; 
    display: none; 
    z-index: 3000; 
    text-align: center;
    padding: 1em 1em 1em 1em;
    font-family: Jost;
    font-weight: bold;
    background: #2b76ad;
    color: #fefefe; 
    border-style: solid; 
    border-width: 1px; 
    border-color: #a1a3a7;
}

#managecookies {
    overflow: hidden;
    position: relative;
}

#cookiebutton {
    font-family: Jost;
    font-weight: 200;
    background-color: #FF6F64;
    color: #ffffff;
    border: none;
    cursor: pointer;
    opacity: 90%;
    position: fixed;
    z-index: 1000;
}

#cookiebox {
    display: none;
    font-family: Jost;
    font-weight: bold;
    position: fixed;
    background-color: white;
    opacity: 1;
    color: #fff;
    border-style: solid;
    border-color: black;
    z-index: 3000;
    margin: 0em;
    border-radius: 15px;
    border-width: 4px;
}

div.red-header {
    background: #FF6F64;
      height: 15px;
      padding: 1em;
      position: relative;
      border-radius: 11px;
      border-bottom-left-radius: 0;
      border-bottom-right-radius: 0;    
}

div.red-header img {
    float: right;
    width: 20px;
    cursor: pointer;
    background: white;
    border-radius: 15px;
}

div.red-header02 {
    background: #FF6F64;
      height: 15px;
      padding: 1.1em;
      position: relative;
      border-radius: 11px;
      border-bottom-left-radius: 0;
      border-bottom-right-radius: 0;
      width: 100%;
      right: 1em;
}

div.red-header02 img {
    float: right;
    width: 20px;
    cursor: pointer;
    background: white;
    border-radius: 15px;
}

#cookiesetting {
    font-family: Jost;
    font-weight: 200;
    position: fixed;
    opacity: 1;
    background: white;
    border: none;
    z-index: 1000;
    display: none;
    border-style: solid;
    border-color: black;
    border-radius: 15px;
    border-width: 4px;
    margin: 0em auto;
  height: 460px;
  width: 25%;
  padding-left: 1em;
  padding-right: 1em;
}

.cookietext div.innerCookiebox{
    font-family: Jost;
    font-weight: bold;
    color: #ffffff;
}

.cookietext .textPosition{
    font-family: Jost;
    font-weight: bold;
    color: #ffffff;
    overflow: hidden;
}

.cookietext .buttonPosition{
    font-family: Jost;
    font-weight: bold;
    color: #ffffff;
    overflow: hidden;
}

.cookietext div p {
    font-family: Jost;
    font-weight: bold;
    color: black;
}

.cookietext .button03 {
    transition: 0.5s;
    font-family: Jost;
    font-weight: bold;
    background-color: transparent;
    color: black;
    cursor: pointer;
    opacity: 1;
    border: 1px solid black;
}

.cookiesetting .button03 {
    transition: 0.5s;
    font-family: Jost;
    font-weight: bold;
    background-color: transparent;
    color: black;
    cursor: pointer;
    opacity: 1;
    border: 1px solid black;    
}

.cookietext .button03:hover {
  opacity: 0.8;
}

#cookiebutton:hover {
  opacity: 1;
  background-color: #e65549;
  color: #ffffff;
  transition: 0.5s;
}

/* End Cookies popup */

/* Begin Toggle Switch */
.switch {
  position: relative;
  display: inline-block;
  width: 48px;
  height: 20px;
}

.switch input { 
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  -webkit-transition: .4s;
  transition: .4s;
}

.slider:before {
  position: absolute;
  content: "";
  height: 14px;
  width: 14px;
  left: 4px;
  bottom: 3px;
  background-color: white;
  -webkit-transition: .4s;
  transition: .4s;
}

input:checked + .slider {
  background-color: #FF6F64;
}

input:focus + .slider {
  box-shadow: 0 0 1px #FF6F64;
}

input:checked + .slider:before {
  -webkit-transform: translateX(26px);
  -ms-transform: translateX(26px);
  transform: translateX(26px);
}

/* Rounded sliders */
.slider.round {
  border-radius: 34px;
}

.slider.round:before {
  border-radius: 50%;
}

/* End Toggle Switch */


/*Pop up message*/
/* Outer */
.modal {
	display: none; /* Hidden by default */
	position: fixed; /* Stay in place */
	overflow: auto; /* Enable scroll if needed */
	background-color: rgb(0,0,0); /* Fallback color */
	background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
	font-family: Jost;
	text-align: center;
    z-index: 1000;
}

/* Modal Content */
.modal-content {
    background-color: #5a8a74;
    margin: auto;
    border-style: none;
}

.modal-body p {
    position: relative;
    font-family: Jost; 
    font-size: 0.9em;
    color: #ffffff;
    padding: 1px;
}

/* The Close Button */
.close {
	color: #888;
	float: right;
	font-weight: bold;
}

.close:hover,
.close:focus {
	color: #000;
	text-decoration: none;
	cursor: pointer;
}

/* The Close Button */
.close {
	color: #fff;
	float: right;
	font-weight: bold;
}

.close:hover,
.close:focus {
	color: #000;
	text-decoration: none;
	cursor: pointer;
}

.modal-header {
	background-color: #ffffff;
	color: black;
}
.modal-headers {
	background-color: #ffffff;
	color: black;
}

.modal-footer {
	background-color: #ffffff;
	color: black;
}

.errormodal {
	display: none; /* Hidden by default */
	position: fixed; /* Stay in place */
	overflow: auto; /* Enable scroll if needed */
	background-color: rgb(0,0,0); /* Fallback color */
	background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
	font-family: Jost;
	text-align: center;
        z-index: 1000;
}

/* Modal Content */
.errormodal-content {
	background-color: #FF6F64;
	margin: auto;
	border: 1px solid #888;
}

.errormodal-body p {
	position: relative;
	font-family: Jost; 
	font-size: 0.9em;
        color: #680808;
        padding: 1px;
}

.errormodal-header {
	background-color: #ffffff;
	color: black;
}
.errormodal-headers {
	background-color: #ffffff;
	color: black;
}

.errormodal-footer {
	background-color: #ffffff;
	color: black;
}

/*End pop up message*/

/* Lines */

/* End Lines */

/* Inputs */

.input01 {
    border-bottom: 1px solid black;
    width: 100%;
    border-top: 0;
    border-right: 0;
    border-left: 0;
    margin-bottom: 1em;
    font-family: Jost;
    font-size: 30px;
}

/* End Inputs */

/* Labels */

.label01 {
    font-family: Jost;
}

/* End Labels */

/* Headers */

/* End Headers */

/* Textarea */

.message-box {
  position: relative;
  gap: 20px;
  padding: 30px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
  font-family: Jost;
  margin-top: 8em;
  height: 463px;
}

.message-label {
  font-weight: 500;
  font-size: 36px;
  font-family: Jost;
  padding-top: 5px;
  white-space: nowrap;
}

.message-textarea {
  border: none;
  outline: none;
  resize: none;
  font-size: 30px;
  font-family: Jost;
  line-height: 1.6;
  color: #333;
  height: 420px;
  overflow-y: auto;
  padding-right: 10px;
  width: 90%;
}

.send-button {
  position: absolute;
  bottom: 0;
  right: 0;
  background-color: #FF6F64;
  color: white;
  border: none;
  padding: 20px 50px;
  border-radius: 12px 0px;
  font-size: 30px;
  cursor: pointer;
  transition: background 0.2s ease;
  font-family: Jost;
}

.send-button:hover {
  background-color: #e85b51;
}

/* End Textarea */

/* Selects */

.custom-select-wrapper {
  width: 100%;
  font-family: Jost;
}

.custom-select-container {
  position: relative;
  display: flex;
  align-items: center;
  border-bottom: 1px solid black;
  padding-bottom: 5px;
}

.custom-select {
  appearance: none;
  border: none;
  outline: none;
  background: transparent;
  font-size: 30px;
  width: 100%;
  padding-right: 30px;
  cursor: pointer;
  font-family: Jost;
}

.custom-arrow {
  position: absolute;
  right: 0;
  width: 25px;
  height: 16px;
  pointer-events: none;
}

/* End Selects */

/* Buttons */

.button01 {
    background: #FF6F64;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 30px;
    font-size: 31px;
    font-family: Jost;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.button01:hover {
    background-color: #ff5a4d;
}

/* End Buttons */

/* Images */

/* End Images */

/* Containers */

div.displayrecord01 {
    overflow: hidden;
}

div.topbar {
    position: fixed;
    overflow: hidden;
    background: #262627;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: top 0.3s;    
}

div.topbar .hidden {
    top: -100px;
}

.header-container {
    position: relative;
    width: 100%;
    background: white; /* Ensure visibility */
    transition: opacity 0.3s ease, transform 0.3s ease;     
}

.header-container.sticky {
    position: fixed;
    top: 124px;
    left: 0;
    line-height: 0;
    width: 100%;
    z-index: 999;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}

.header-container.placeholder {
    visibility: hidden;
}

div.topbar-logo {
    float: left;
}

div.footer {
    overflow: hidden;
    background: #262627;
}

div.footercontent {
    overflow: hidden;
    margin: 0px auto 0px auto;
}

div.footerbox {
    overflow: hidden;
}

div.footerbox2 {
    overflow: hidden;
}

div.footerbox3 {
    overflow: hidden;
}

div.topbarcontent {
    overflow: hidden;
    margin: 20px auto 20px auto;
}

div.content {
    display: block;
    overflow: hidden;
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    z-index: 900;
}

.overlay.active {
    opacity: 1;
    visibility: visible;
}

.menu {
    position: fixed;
    top: 0;
    right: 0;
    width: 521px;
    height: 100%;
    background: rgba(38, 38, 39, 0.81);
    color: #fff;
    padding-top: 20px;
    padding-bottom: 20px;
    box-shadow: -2px 0 5px rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transform: scale(0.9);
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
    z-index: 950;
}

.menu.active {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
}

.menu .close-btn {
    position: absolute;
    top: 20px;
    right: 50px;
    font-size: 60px;
    color: #fff;
    cursor: pointer;
    font-family: Jost;
}

.menu .small {
    margin-top: 10px;
}

.menu .link01 {
    display: block;
    text-decoration: none;
    color: #fff;
    font-size: 35px;
    margin: 10px 0;
    font-family: Jost;
    padding-top: 0.5em;
    padding-bottom: 0.5em;
    padding-left: 55px;
}

.menu .link01:hover {
    color: #FF6F64;
    background: rgba(0, 0, 0, 0.26);
}

.menu .submenu {
    margin-left: 10px;
}

.menu .submenu .link01 {
    font-size: 16px;
}

.contactbox-container {
    position: relative;
}

.contactus-headerbox {
    background: #FF6F64; 
    width: 100%;
}

.brand-hover-wrapper {
    border-radius: 8px;
    box-shadow: 0px 4px 20px 0px rgba(0, 0, 0, 0.1);
}

.team-socials {

}

/* End Containers */

/* Slideshows */

.cycle-slideshow {
    position: relative;
}

#prevslide {
    position: absolute;
    left: 0;
    z-index: 500;
}

#nextslide {
    position: absolute;
    right: 0;
    z-index: 500;
}

#prevslide02 {
    position: absolute;
    left: 0;
    z-index: 500;
}

#nextslide02 {
    position: absolute;
    right: 0;
    z-index: 500;
}

#prevslide03 {
    position: absolute;
    left: 0;
    z-index: 500;
}

#nextslide03 {
    position: absolute;
    right: 0;
    z-index: 500;
}

#prevslide04 {
    position: absolute;
    left: 0;
    z-index: 500;
}

#nextslide04 {
    position: absolute;
    right: 0;
    z-index: 500;
}

/* End Slideshows */

/* Sections */

/* End Sections */

/* Buttons and Links */

a {
    transition: 0.3s ease;
}

/* End Buttons and Links */

/* Texts */

.paragraph01 {
    font-family: Jost;
}

/* End Texts */

/* Menus */

div.hamburger-menu {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 30px;
    cursor: pointer;
    float: right;
}

div.bar {
    width: 100%;
    height: 5px;
    background-color: #FF6F64;
}

/* End Menus */

/* Fields */

/* End Fields */

/* Images */

img.brand-default {
    border-radius: 8px;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

/* End Images */