/*======================
   01. Theme Base CSS
=========================*/
html,
body {
  width: 100%;
  height: 100%;
  scroll-behavior: smooth;
}

body {
  position: relative;
  font-family: "Libre Franklin", sans-serif;
  color: #252525;
  font-size: 16px;
  letter-spacing: 0.26px;
  font-weight: 400;
  background: #fff;
  height: unset;
  width: 100%;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

.container {
  max-width: 1280px;
  margin: 0px auto;
  padding: 0px 15px;
}

.container {
  padding: 0px 15px;
}

section {
  overflow: hidden;
}

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

* {
  box-sizing: border-box;
}

p,
tr td {
  font-family: "Libre Franklin", sans-serif;
  font-weight: 400;
  font-size: 16px;
  letter-spacing: 0.26px;
  line-height: 28px;
  color: #252525;
  margin: 0px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  margin-bottom: 10px;
  font-family: "Libre Franklin", sans-serif;
  color: #333333;
  font-size: 28px;
  font-weight: 700;
}

a {
  font-family: "Libre Franklin", sans-serif;
  text-decoration: none;
  display: block;
  margin: 0px;
  color: #252525;
  font-weight: 500;
  text-transform: capitalize;
}

a:hover {
  text-decoration: none;
}

a:active,
a:hover {
  outline: 0 none;
  color: none !important;
}

button {
  cursor: pointer;
  background: transparent;
  border: 0px;
  outline: none;
}

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

section {
  position: relative;
}

dialog,
figure,
figcaption {
  margin: 0px;
  border: 0px;
  padding: 0px;
  position: relative;
}

ul {
  list-style: outside none none;
  margin: 0;
  padding: 0;
}

li {
  display: inline-block;
}

.o_zero {
  opacity: 0;
}

.d_none {
  display: none;
}

.color_one {
  color: #17b0c3;
}

.bold_p {
  font-weight: 700;
}

header.sticky .menu {
  position: fixed;
  top: 0;
  animation: sticky 1s 1;
  transition: all 0.3s ease-in-out;
  background: #00469b;
  border-bottom: 1px solid #cfcfd1;
}
header.sticky .menu .navbar {
  padding: 15px 0;
  transition: all 0.3s ease-in-out;
}
header.sticky .menu .navbar .logo {
  width: 180px;
}
header.sticky .menu .navbar .logo .logo_blue {
  display: none;
}
header.sticky .menu .navbar .logo .white_logo {
  display: block;
}
header.sticky .menu .navbar .joinbtn {
  opacity: 1;
  visibility: visible;
  pointer-events: fill;
  padding: 10px 30px;
  font-size: 16px;
  transition: all 0.3s ease-in-out;
}
header.sticky .menu .navbar .joinbtn:hover {
  background: rgb(255, 255, 255);
  transition: all 0.3s ease-in-out;
}
header.sticky .menu .language-toggle {
  background: #cce0ee;
}
@keyframes sticky {
  0% {
    top: -105%;
  }
  100% {
    top: 0px;
  }
}
header .menu {
  background: rgb(255, 255, 255);
  box-shadow: 0px 1px 10px 0px rgba(45, 19, 106, 0.12);
  position: absolute;
  z-index: 50;
  width: 100%;
  transition: all 0.3s ease-in-out;
}
header .menu .navbar {
  padding: 25px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease-in-out;
}
header .menu .navbar .logo img {
  max-width: 250px;
  width: 100%;
}
header .menu .navbar .logo svg.white_logo {
  display: none;
}
header .menu .navbar .joinbtn {
  margin-top: 0;
  margin-right: 40px;
  background: #cce0ee;
  color: rgb(0, 0, 0);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
header .menu .language-toggle {
  position: relative;
  display: inline-flex;
  border-radius: 25px;
  padding: 5px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
header .menu .lang-btn {
  padding: 8px 16px;
  border: none;
  background: transparent;
  cursor: pointer;
  border-radius: 20px;
  font-weight: 500;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 5px;
}
header .menu .lang-btn.active {
  background: #00469b;
  color: rgb(255, 255, 255);
  transform: scale(1.05);
}
header .menu .flag {
  width: 20px;
  height: 15px;
  border-radius: 2px;
  display: inline-block;
}
header .menu .flag-nl {
  background: linear-gradient(to bottom, #ff0000 33%, #ffffff 33%, #ffffff 66%, #0000ff 66%);
}
header .menu .flag-en {
  background: url("../images/flag.svg");
  background-size: cover;
  background-position: center;
}
header .hero {
  padding: 270px 0px 160px;
  background-image: url("../images/header.png");
  background-size: cover;
  background-position: center center;
  position: relative;
  z-index: 2;
}
header .hero::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: #00469b;
  background: linear-gradient(-90deg, rgba(0, 70, 155, 0) 0%, rgb(0, 70, 155) 60%);
  z-index: -1;
  opacity: 0.7;
}
header .hero h1 {
  font-size: 47px;
  line-height: 70px;
  max-width: 767px;
  color: rgb(255, 255, 255);
}

a.joinbtn {
  background: #cce0ee;
  padding: 16px 50px;
  font-size: 18px;
  margin-top: 40px;
  display: inline-block;
  border-radius: 50px;
  text-transform: uppercase;
  font-weight: 600;
  transition: all 0.3s ease-in-out;
}
a.joinbtn:hover {
  background: rgb(255, 255, 255);
  transition: all 0.3s ease-in-out;
}

.lang-nl.hidden,
.lang-en.hidden {
  display: none;
}

.section_title {
  text-align: center;
  margin-bottom: 55px;
}
.section_title h2 {
  font-size: 42px;
  display: inline-block;
  position: relative;
  padding-bottom: 20px;
}
.section_title h2::before {
  width: 18px;
  height: 18px;
  content: "";
  position: absolute;
  bottom: -11px;
  left: 50%;
  border-radius: 50px;
  border: 4px solid #00469b;
  background: rgb(255, 255, 255);
  transform: translate(-50%, 0);
  z-index: 1;
}
.section_title h2::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  height: 4px;
  bottom: 0;
  top: unset;
  background: #00469b;
}

.event {
  padding: 50px 0;
  background: #cce0ee;
  position: relative;
}
.event::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-image: url("../images/event.jpg");
  background-size: cover;
  opacity: 0.3;
}
.event.eventimg::before {
  display: none;
}
.event.eventimg .event_area {
  display: flex;
  align-items: center;
  gap: 50px;
}
.event.eventimg .event_area .event_image {
  flex: 1;
  height: auto;
  max-height: 790px;
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  box-shadow: 0px 1px 10px 0px rgba(45, 19, 106, 0.12);
}
.event.eventimg .event_area .event_image img {
  height: auto;
  width: 100%;
  object-fit: cover;
  object-position: bottom;
}
.event.eventimg .event_area .event_content {
  flex: 1;
  display: flex;
  gap: 25px;
  flex-direction: column;
}
.event .event_area {
  display: flex;
  gap: 25px;
}
.event .event_area .event_item {
  flex: 1;
  border-radius: 10px;
  padding: 25px 15px;
  border: 1px solid #cfcfd1;
  box-shadow: 0px 1px 10px 0px rgba(45, 19, 106, 0.12);
  text-align: center;
  background: rgb(255, 255, 255);
  overflow: hidden;
  position: relative;
  top: 0;
  transition: all 0.3s ease-in-out;
}
.event .event_area .event_item::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  width: 0%;
  left: 50%;
  height: 4px;
  background: #00469b;
  transform: translate(-50%, 0);
  transition: all 0.3s ease-in-out;
}
.event .event_area .event_item:hover {
  top: -5px;
  box-shadow: 0px 1px 10px 0px rgba(45, 19, 106, 0.12);
  transition: all 0.3s ease-in-out;
}
.event .event_area .event_item:hover::before {
  width: 100%;
  transition: all 0.5s ease-in-out;
}
.event .event_area .event_item .icon {
  margin: 0px auto;
  width: 80px;
  height: 80px;
  text-align: center;
  line-height: 80px;
  background: #cce0ee;
  border-radius: 100px;
}
.event .event_area .event_item .icon i {
  font-size: 28px;
  vertical-align: middle;
}
.event .event_area .event_item p {
  font-size: 20px;
  margin: 15px 0;
  font-weight: 500;
}
.event .event_area .event_item h4 {
  font-size: 22px;
  font-weight: 600;
  line-height: 34px;
}
.event .event_area .event_item h4 span {
  font-size: 18px;
  display: block;
}
.event .event_area .event_item h4 span.hidden {
  display: none;
}

.form {
  padding: 50px 0;
  background: #cce0ee;
}
.form .form_section {
  display: flex;
  align-items: center;
  gap: 50px;
}
.form .form_section .form_img {
  flex: 1;
  padding-right: 40px;
}
.form form {
  background: rgb(255, 255, 255);
  flex: 1;
  max-width: 650px;
  margin: 0px auto;
  box-shadow: 0px 1px 10px 0px rgba(45, 19, 106, 0.12);
  border-radius: 10px;
  padding: 50px 40px;
  width: 100%;
}
.form form .form-control {
  width: 100%;
  position: relative;
}
.form form .form-control input {
  padding: 14px 20px;
  width: 100%;
  border: 1px solid #cfcfd1;
  border-radius: 8px;
  font-size: 17px;
}
.form form .form-control input:focus {
  border: 1px solid #00469b;
  outline: none;
}
.form form .form-control input:focus ~ span, .form form .form-control input:valid ~ span {
  top: -10px;
  transition: all 0.3s ease-in-out;
  font-size: 15px;
}
.form form .form-control span {
  position: absolute;
  top: 15px;
  left: 20px;
  background: rgb(255, 255, 255);
  font-size: 17px;
  padding: 0px 4px;
  transition: all 0.3s ease-in-out;
  pointer-events: none;
}
.form form .form-group {
  padding: 20px 0px 0px;
}
.form form .form-group p {
  font-weight: 600;
  padding-bottom: 10px;
  margin-bottom: 0;
  font-size: 18px;
}
.form form .form-group label {
  font-size: 17px;
  display: block;
}
.form form .form-group .radio-group {
  display: flex;
  gap: 40px;
}
.form form .form-group .radio-group label {
  box-shadow: 0px 1px 10px 0px rgba(45, 19, 106, 0.05);
  padding: 10px;
  border-radius: 7px;
  background: rgb(255, 255, 255);
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}
.form form .form-group .radio-group label:hover {
  background: #cce0ee;
  transition: all 0.3s ease-in-out;
}
.form form .form-group .radio-group input {
  width: 20px;
  height: 20px;
  margin-top: 0;
  vertical-align: middle;
  accent-color: #00469b;
}
.form form button.submit_btn {
  background: #00469b;
  padding: 15px 40px;
  border-radius: 8px;
  color: rgb(255, 255, 255);
  font-size: 20px;
  text-transform: uppercase;
  font-weight: 600;
  border: 0px;
  margin-top: 30px;
  display: block;
  width: 100%;
  position: relative;
  top: 0;
  box-shadow: none;
  transition: all 0.3s ease-in-out;
}
.form form button.submit_btn:focus {
  outline: none;
  box-shadow: none;
  border: 0px;
}
.form form button.submit_btn:hover {
  box-shadow: 0px 8px 10px 0px rgba(41, 187, 255, 0.3);
  top: -3px;
  transition: all 0.3s ease-in-out;
}

body.no-scroll {
  overflow: hidden;
}

.popup {
  position: fixed;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.7);
  width: 100%;
  height: 100vh;
  z-index: 50;
  visibility: visible;
  opacity: 1;
  pointer-events: fill;
  transition: all 0.3s ease-in-out;
}
.popup.hidden {
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s ease-in-out;
}
.popup.hidden .popup_content {
  transform: translate(-50%, -50%) scale(0);
  transition: all 0.3s ease-in-out;
}
.popup .popup_content {
  width: 100%;
  max-width: 500px;
  background: rgb(255, 255, 255);
  top: 50%;
  left: 50%;
  position: relative;
  transform: translate(-50%, -50%) scale(1);
  min-height: 300px;
  border-radius: 10px;
  text-align: center;
  padding: 30px;
  transition: all 0.3s ease-in-out;
}
.popup .popup_content .check {
  position: absolute;
  top: -50px;
  left: 50%;
  background: #229e20;
  width: 100px;
  height: 100px;
  border-radius: 50px;
  line-height: 100px;
  transform: translate(-50%, 0);
  text-align: center;
}
.popup .popup_content .check i {
  font-size: 32px;
  vertical-align: middle;
  color: rgb(255, 255, 255);
}
.popup .popup_content h4 {
  font-size: 30px;
  padding-top: 80px;
  margin-bottom: 10px;
}
.popup .popup_content p {
  font-size: 20px;
}
.popup .popup_content a {
  font-size: 20px;
  width: 100%;
  display: block;
  padding: 14px 20px;
  text-align: center;
  color: rgb(255, 255, 255);
  background: #00469b;
  border-radius: 10px;
  text-transform: uppercase;
  margin-top: 40px;
  border: 1px solid #00469b;
  transition: all 0.3s ease-in-out;
}
.popup .popup_content a:hover {
  color: rgb(0, 0, 0);
  background: #cce0ee;
  transition: all 0.3s ease-in-out;
}

.image_sec {
  position: relative;
}
.image_sec::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  width: 50%;
  left: unset;
  background: #00469b;
}
.image_sec .image_area {
  display: flex;
  align-items: center;
  gap: 50px;
}
.image_sec .image_area .image_logo {
  width: 50%;
  max-width: 600px;
  flex: 1;
}
.image_sec .image_area .image_logo img {
  width: 100%;
}
.image_sec .image_area .image_slidearea {
  flex: 1;
  width: 50%;
  padding: 120px 0;
  padding-right: 45px;
}
.image_sec .image_area .image_slidearea .img_slider {
  width: 100%;
}
.image_sec .image_area .image_slidearea .img_slider .item {
  border-radius: 10px;
  overflow: hidden;
  width: 580px;
  height: 350px;
  border: 2px solid #cce0ee;
}
.image_sec .image_area .image_slidearea .img_slider .item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

footer {
  background: #00469b;
  padding: 50px 0;
  text-align: center;
}
footer p {
  color: rgb(255, 255, 255);
  font-size: 18px;
}

#scrollBtn {
  width: 30px;
  height: 45px;
  line-height: 45px;
  background: #00469b;
  position: fixed;
  right: 30px;
  bottom: 20px;
  border-radius: 50px;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s ease-in-out;
}
#scrollBtn.show {
  visibility: visible;
  pointer-events: fill;
  opacity: 1;
  transition: all 0.3s ease-in-out;
}
#scrollBtn i {
  color: rgb(255, 255, 255);
}

/* hide the real radios */
.radio-group input[type="radio"] {
  position: absolute;
  left: -9999px;
}

/* base label styling */
.radio-group label {
  cursor: pointer;
  padding: 0.4rem 1rem;
  border: 1px solid #ccc;
  border-radius: 9999px;
  font-size: 0.9rem;
  user-select: none;
  /* transition: background 0.2s ease; */
}

/* ✅ selected state */
.radio-group input[type="radio"]:checked+label {
  background: #00469b;
  color: #fff;
  border-color: #00469b;
}

/* focus ring for keyboard users */
.radio-group input[type="radio"]:focus+label {
  /* outline: 2px solid #000; */
  /* outline-offset: 2px; */
}

.preloader {
  width: 100%;
  height: 100vh;
  position: fixed;
  background: #cce0ee;
  z-index: -5;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease-in-out;
}
.preloader.active {
  z-index: 99;
  opacity: 1;
  visibility: visible;
  transition: all 0.3s ease-in-out;
}
.preloader .preloadr_item {
  position: absolute;
  width: 100px;
  height: 100px;
  border: 2px solid #00469b;
  border-radius: 50%;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) scale(1);
  animation: preloader 2s infinite;
}
.preloader .preloadr_item:last-child {
  animation-delay: 1s;
}
@keyframes preloader {
  0% {
    transform: translate(-50%, -50%) scale(1);
  }
  50% {
    transform: translate(-50%, -50%) scale(0.4);
  }
  100% {
    transform: translate(-50%, -50%) scale(1);
  }
}/*# sourceMappingURL=style.css.map */