@charset "UTF-8";
* {
  box-sizing: border-box;
}

html {
  overflow-x: hidden;
}

body {
  margin: 0;
  padding: 0;
  font-family: "Titillium Web", sans-serif;
  color: #ffffff;
  position: relative;
  height: 100%;
  background-image: url(/wp-content/uploads/2025/11/background.png);
  background-size: cover;
  overflow-x: hidden;
}

@media (max-width: 1250px) {
  #main-menu .menu-item.has-submenu > a {
    position: relative;
    padding-right: 44px; /* χώρο για το arrow */
  }
  #main-menu .menu-item.has-submenu > a::after {
    content: "▾";
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    line-height: 1;
    pointer-events: none; /* το click θα το πιάσει το <a> */
  }
  #main-menu .menu-item.has-submenu.open > a::after {
    transform: translateY(-50%) rotate(180deg);
  }
  #main-menu .mobile-submenu {
    display: none;
    padding-left: 15px;
  }
  .mobile-submenu ul {
    list-style: none;
    padding-left: 0;
    margin-top: 10px;
    margin-bottom: 5px;
  }
}
@media (max-width: 1250px) {
  .mobile-submenu ul {
    list-style: none;
    padding-left: 0;
    margin-top: 10px;
    margin-bottom: 5px;
  }
}
.toggle-menu {
  display: none;
  outline: 0;
}

@media (max-width: 1200px) {
  .header-area .toggle-menu {
    display: flex;
  }
}
.object-fit-cover {
  object-fit: cover;
}

.mr-10 {
  margin-right: 10px;
}

.mt-10 {
  margin-top: 10px;
}

.mt-20 {
  margin-top: 20px;
}

.mt-30 {
  margin-top: 30px;
}

.mt-40 {
  margin-top: 40px;
}

.mt-50 {
  margin-top: 50px;
}

.mb-10 {
  margin-bottom: 10px !important;
}

.p-0 {
  padding: 0;
}

.p-15 {
  padding: 15PX !important;
}

.header-area {
  display: flex;
  width: 100%;
  flex-wrap: wrap;
  position: fixed;
  z-index: 9;
  background-color: rgba(255, 255, 255, 0.1);
  padding: 20px 40px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid #ffffff;
  transition: max-height 0.4s ease;
  max-height: 86px;
  overflow: hidden;
}
.header-area.active {
  max-height: 250px;
}
@media (max-width: 1250px) {
  .header-area.active {
    max-height: 86px;
  }
}
@media (max-width: 1250px) {
  .header-area {
    overflow: visible;
  }
}
.header-area .top-area {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  width: 100%;
}
.header-area .top-area .tool-area {
  display: flex;
  align-items: flex-start;
  gap: 40px;
  padding-top: 12px;
}
.header-area .top-area .tool-area .tool-item {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  text-decoration: none;
}
@media (max-width: 991px) {
  .header-area .top-area .tool-area .tool-item {
    display: none;
  }
}
.header-area .top-area .tool-area .tool-text {
  font-size: 16px;
  line-height: 100%;
  font-weight: 400;
  color: #ffffff;
  cursor: pointer;
}
.header-area .sub-menu-area {
  display: flex;
  justify-content: center;
  width: 100%;
}
.header-area .sub-menu-area ul {
  list-style: none;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  justify-content: center;
  gap: 60px;
}
.header-area .sub-menu-area ul li a {
  color: #ffffff;
  font-size: 16px;
  font-weight: 400;
  line-height: 100%;
  text-decoration: none;
}
.header-area .sub-menu-area ul li.active:after {
  position: absolute;
  content: "";
  border-bottom: 1px solid;
  width: 100%;
  height: 1px;
  left: 0;
  bottom: -10px;
}
.header-area .sub-menu-area ul li:not(:last-child)::before {
  content: "";
  position: absolute;
  right: -30px; /* μετακινώ τον separator μετά το gap */
  top: 50%;
  transform: translateY(-50%);
  width: 2px;
  height: 20px;
  background: rgb(255, 255, 255);
}
.header-area #main-menu {
  list-style: none;
  display: none;
  gap: 60px;
  justify-content: center;
  width: 100%;
}
@media (max-width: 1250px) {
  .header-area #main-menu {
    position: absolute;
    flex-direction: column;
    padding: 0;
    left: 0;
    z-index: 9999;
    background-color: #113045;
    top: 70px;
    gap: 10px;
    padding-left: 40px;
    padding-top: 10px;
    padding-bottom: 10px;
  }
}
.header-area #main-menu li {
  position: relative;
}
.header-area #main-menu li.active:after {
  position: absolute;
  content: "";
  border-bottom: 1px solid;
  width: 100%;
  height: 1px;
  left: 0;
  top: 26px;
}
@media (max-width: 1250px) {
  .header-area #main-menu li.active:after {
    width: 12%;
  }
}
.header-area #main-menu li a {
  color: #ffffff;
  font-size: 16px;
  font-weight: 400;
  line-height: 100%;
  text-decoration: none;
}
.header-area #main-menu li:not(:last-child)::before {
  content: "";
  position: absolute;
  right: -30px; /* μετακινώ τον separator μετά το gap */
  top: 50%;
  transform: translateY(-50%);
  width: 2px;
  height: 20px;
  background: rgb(255, 255, 255);
}

.section-full {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
}

.section {
  max-width: 1272px;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  margin: 0 auto;
}
.inner-row {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}

img {
  max-width: 100%;
}

.gap-20 {
  gap: 20px;
}

.gap-30 {
  gap: 30px;
}

.gap-40 {
  gap: 40px;
}

.gap-60 {
  gap: 60px;
}

.gap-80 {
  gap: 80px;
}

.column-gap-80 {
  column-gap: 80px;
}

.align-items-center {
  align-items: center;
}

.align-content-center {
  align-content: center;
}

.justify-content-between {
  justify-content: space-between;
}

.view-all {
  width: 140px;
  height: 58px;
  color: #ffffff;
  border: 1px solid #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 40px;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.4px;
  text-decoration: none;
  background-color: #496681;
}

.white-btn {
  width: 262px;
  height: 56px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #001E24;
  font-weight: 500;
  font-size: 18px;
  line-height: 115%;
  letter-spacing: 0.4px;
  background-color: #ffffff;
  border-radius: 40px;
  text-decoration: none;
  border: 0;
}

.yellow {
  background-color: #F4B507;
}

.blue {
  background-color: #0B5DB0;
}

.deep-azure {
  background-color: #3178A0;
}

.footer {
  padding: 80px 120px;
  padding-bottom: 20px;
  background-color: #0D514E;
}
@media (max-width: 1200px) {
  .footer {
    padding: 50px 60px;
  }
}
@media (max-width: 768px) {
  .footer {
    padding: 40px 15px;
  }
}
.footer:after {
  content: "";
  position: absolute;
  top: -40px;
  width: 100%;
  height: 62px;
  left: 0;
  background-size: cover;
  background-repeat: no-repeat;
}
.footer .footer-grid {
  display: grid;
  grid-template-columns: 1fr 0.4fr 1.1fr 0.6fr;
  gap: 40px;
}
@media (max-width: 1250px) {
  .footer .footer-grid {
    grid-template-columns: 100%;
  }
}
.footer .footer-grid .footer-item {
  display: grid;
  grid-template-columns: 95px auto;
  margin-bottom: 12px;
}
@media (max-width: 1250px) {
  .footer .footer-grid .footer-item {
    grid-template-columns: 100%;
  }
}
.footer .footer-grid .footer-item .title {
  color: #9CB4C5;
  font-size: 14px;
  line-height: 150%;
  letter-spacing: 4%;
}
.footer .footer-grid .footer-item .text {
  font-weight: 400;
  line-height: 150%;
  letter-spacing: 4%;
  font-size: 14px;
}
.footer .footer-grid .footer-item ul {
  margin: 0;
  list-style: none;
  padding: 0;
}
.footer .footer-grid .footer-item ul li {
  margin-bottom: 7px;
}
.footer .footer-grid .footer-item ul li a {
  font-size: 14px;
  line-height: 150%;
  color: #ffffff;
  text-decoration: none;
  display: flex;
  flex-wrap: wrap;
}
.footer .footer-grid .footer-item .date {
  font-size: 14px;
  line-height: 150%;
  font-weight: 400;
  color: #9CB4C5;
}
.footer .social-icons {
  display: flex;
  flex-wrap: wrap;
  padding: 0;
  margin: 0;
  list-style: none;
  gap: 10px;
  margin-top: 10px;
}
.footer .title {
  color: #9CB4C5;
  font-size: 14px;
  line-height: 150%;
}

.main-title {
  font-weight: 700;
  line-height: 110%;
  font-size: 42px;
  letter-spacing: 0.4px;
  margin: 0;
}

.tabs {
  padding: 100px 120px;
}
@media (max-width: 991px) {
  .tabs {
    padding-left: 15px;
    padding-right: 15px;
  }
}
.tabs {
  background-repeat: no-repeat;
  background-size: cover;
}
.tabs .tabs-top-area {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}
.tabs .tabs-top-area .tabs-holder {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 60px;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .tabs .tabs-top-area .tabs-holder {
    gap: 15px;
    margin-bottom: 40px;
  }
}
.tabs .tabs-top-area .tabs-holder li {
  position: relative;
}
.tabs .tabs-top-area .tabs-holder li:after {
  content: "|";
  position: absolute;
  right: -30px;
}
@media (max-width: 768px) {
  .tabs .tabs-top-area .tabs-holder li:after {
    display: none;
  }
}
.tabs .tabs-top-area .tabs-holder li:last-child:after {
  display: none;
}
.tabs .tabs-top-area .tabs-holder li .tab-handler {
  cursor: pointer;
}
.tabs .tabs-top-area .tabs-holder li .tab-handler.active {
  text-decoration: underline;
}
.tabs .tabs-content-holder {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}
.tabs .tabs-content-holder .vc_column-inner {
  padding: 0;
}
.tabs .tabs-content-holder .tab {
  display: none;
  flex-wrap: wrap;
  width: 100%;
}
.tabs .tabs-content-holder .tab.active {
  display: flex;
}
.tabs .tabs-content-holder .tab h1, .tabs .tabs-content-holder .tab h2, .tabs .tabs-content-holder .tab h3, .tabs .tabs-content-holder .tab h4, .tabs .tabs-content-holder .tab h5, .tabs .tabs-content-holder .tab h6, .tabs .tabs-content-holder .tab strong, .tabs .tabs-content-holder .tab span {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  color: #ffffff;
}
.tabs .tabs-content-holder .tab p, .tabs .tabs-content-holder .tab ul, .tabs .tabs-content-holder .tab ol, .tabs .tabs-content-holder .tab li {
  font-size: 16px;
  font-weight: 400;
  line-height: 150%;
  letter-spacing: 0.4px;
  color: #9CB4C5;
}
.tabs .tabs-content-holder .tab ul, .tabs .tabs-content-holder .tab ol {
  padding-left: 15px;
}

.wpb_content_element {
  padding-bottom: 60px;
}
.wpb_content_element p {
  color: #9CB4C5;
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  letter-spacing: 0.4px;
}
.wpb_content_element a {
  color: #ffffff;
}

.news-listing .top-categories {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  margin-top: 70px;
  margin-bottom: 35px;
}
.news-listing .top-categories ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 10px;
}
@media (max-width: 991px) {
  .news-listing .top-categories ul {
    flex-direction: column;
    width: 100%;
  }
}
.news-listing .top-categories ul li a {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  min-height: 40px;
  padding-left: 20px;
  padding-right: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #ffffff;
  font-size: 16px;
  line-height: 150%;
  letter-spacing: 0.4px;
  text-decoration: none;
}
.news-listing .listing-row {
  display: grid;
  grid-template-columns: 280px 1fr; /* sidebar | list */
}
@media (max-width: 991px) {
  .news-listing .listing-row {
    grid-template-columns: unset;
    width: 100%;
  }
}
.news-listing .listing-row {
  gap: 10px;
  align-items: start;
}
.news-listing .news-sidebar {
  background-color: rgba(255, 255, 255, 0.1);
  padding: 15px;
  border-radius: 12px;
  margin-bottom: 50px;
}
.news-listing .news-sidebar .sidebar-title {
  margin-bottom: 10px;
  color: #9CB4C5;
  font-size: 16px;
  font-weight: 400;
  line-height: 150%;
  letter-spacing: 0.4px;
}
.news-listing .news-sidebar ul {
  list-style: none;
  padding: 0;
}
@media (max-width: 991px) {
  .news-listing .news-sidebar ul {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    justify-content: space-between;
  }
}
.news-listing .news-sidebar ul li {
  margin-bottom: 20px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  min-width: 250px;
}
@media (max-width: 991px) {
  .news-listing .news-sidebar ul li {
    width: 100%;
  }
}
.news-listing .news-sidebar ul li a {
  color: #ffffff;
  text-decoration: none;
  font-size: 16px;
  line-height: 150%;
  letter-spacing: 0.4px;
  display: flex;
  align-items: center;
}
.news-listing .news-sidebar ul li a .topic-box {
  width: 18px;
  height: 18px;
  border: 1px solid #9CB4C5;
  border-radius: 4px;
  background: transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  margin-right: 8px;
}
.news-listing .news-sidebar ul li a {
  /* Hover outline */
}
.news-listing .news-sidebar ul li a .topic-box:hover {
  border-color: #9fe3f0;
}
.news-listing .news-sidebar ul li a .topic-box.active {
  background-color: #9CB4C5;
  border-color: #9CB4C5;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23fff' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E<polyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 12px 12px;
}
.news-listing .news-sidebar ul li a {
  /* Active state: filled with check icon */
}
.news-listing .news-sidebar ul li ul {
  display: none;
  padding-left: 15px;
  margin-top: 15px;
}
.news-listing .news-sidebar ul li ul li {
  margin-bottom: 5px;
}
.news-listing .news-sidebar ul li .topic-arrow {
  cursor: pointer;
}
.news-listing .news-items {
  max-height: 700px;
  overflow-y: scroll;
  margin-bottom: 50px;
}
.news-listing .news-items .article {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 25px;
  margin-bottom: 10px;
}
.news-listing .news-items .article .article-categories ul {
  list-style: none;
  display: flex;
  padding: 0;
  gap: 5px;
}
.news-listing .news-items .article .article-categories ul li a {
  border-radius: 20px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #ffffff;
  font-size: 14px;
  font-weight: 400;
  text-transform: uppercase;
  line-height: 100%;
  padding-left: 12px;
  padding-right: 12px;
  text-decoration: none;
}
.news-listing .news-items .article .article-title {
  font-size: 16px;
  color: #ffffff;
  font-weight: 400;
  letter-spacing: 0.4px;
  line-height: 150%;
  font-size: 16px;
}
.news-listing .news-items .article .article-excerpt {
  font-size: 16px;
  color: #9CB4C5;
  font-weight: 400;
  letter-spacing: 0.4px;
  line-height: 150%;
  font-size: 16px;
}
.news-listing .news-items .article .article-link {
  text-decoration: none;
}

.single .news {
  background-color: #113045;
  padding-top: 0;
}

.single-article {
  padding: 80px 120px;
}
@media (max-width: 991px) {
  .single-article {
    padding: 80px 15px;
  }
}
.single-article ul {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
}
.single-article p {
  display: flex;
  width: 100%;
  flex-wrap: wrap;
}
.single-article .image-area {
  display: flex;
  width: 100%;
  margin-bottom: 30px;
  flex-wrap: wrap;
}
.single-article a {
  color: #ffffff;
  text-decoration: underline;
  display: flex;
  margin-left: 5px;
  margin-right: 5px;
}
.single-article .mks_accordion, .single-article .mks_toggle {
  width: 100%;
}
.single-article .mks_accordion br, .single-article .mks_toggle br {
  display: none;
}

.relative {
  position: relative;
}

.wave-dynamic {
  display: flex;
  position: relative;
  top: 2px;
}

.wpcf7 {
  width: 100%;
}
@media (max-width: 991px) {
  .wpcf7 {
    padding-left: 15px;
    padding-right: 15px;
  }
}
.wpcf7 .half {
  display: flex;
  flex: 0 0 49%;
  flex-wrap: wrap;
  align-content: flex-start;
}
@media (max-width: 991px) {
  .wpcf7 .half {
    flex: 0 0 100%;
  }
}

form.wpcf7-form {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  justify-content: space-between;
}
form.wpcf7-form .form-title {
  color: #FFF;
  font-family: "Inter", sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: 136%; /* 27.2px */
  letter-spacing: -0.4px;
  margin-bottom: 20px;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
}
form.wpcf7-form p:empty {
  display: none;
}
form.wpcf7-form .form-row {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  margin-bottom: 12px;
}
form.wpcf7-form .form-row input[type=text], form.wpcf7-form .form-row input[type=email], form.wpcf7-form .form-row input[type=file] {
  height: 56px;
  border: 1px solid #ffffff;
  border-radius: 40px;
  background: rgba(0, 0, 0, 0.1);
  outline: 0;
  color: #9CB4C5;
  padding-left: 32px;
  padding-right: 32px;
  font-size: 16px;
  line-height: 116%;
  font-weight: 400;
  font-family: "Inter", sans-serif;
  width: 100%;
}
form.wpcf7-form .form-row input[type=text]::-webkit-input-placeholder, form.wpcf7-form .form-row input[type=email]::-webkit-input-placeholder, form.wpcf7-form .form-row input[type=file]::-webkit-input-placeholder {
  color: #9CB4C5;
}
form.wpcf7-form .form-row input[type=text]:-moz-placeholder, form.wpcf7-form .form-row input[type=email]:-moz-placeholder, form.wpcf7-form .form-row input[type=file]:-moz-placeholder {
  color: #9CB4C5;
  opacity: 1;
}
form.wpcf7-form .form-row input[type=text]::-moz-placeholder, form.wpcf7-form .form-row input[type=email]::-moz-placeholder, form.wpcf7-form .form-row input[type=file]::-moz-placeholder {
  color: #9CB4C5;
  opacity: 1;
}
form.wpcf7-form .form-row input[type=text]:-ms-input-placeholder, form.wpcf7-form .form-row input[type=email]:-ms-input-placeholder, form.wpcf7-form .form-row input[type=file]:-ms-input-placeholder {
  color: #9CB4C5;
}
form.wpcf7-form .form-row input[type=text]::placeholder, form.wpcf7-form .form-row input[type=email]::placeholder, form.wpcf7-form .form-row input[type=file]::placeholder {
  color: #9CB4C5;
}
form.wpcf7-form .form-row input[type=text]:-webkit-autofill, form.wpcf7-form .form-row input[type=text]:-webkit-autofill, form.wpcf7-form .form-row input[type=email]:-webkit-autofill, form.wpcf7-form .form-row input[type=email]:-webkit-autofill, form.wpcf7-form .form-row input[type=file]:-webkit-autofill, form.wpcf7-form .form-row input[type=file]:-webkit-autofill {
  box-shadow: 0 0 0 1000px rgba(0, 0, 0, 0.1) inset !important;
  -webkit-text-fill-color: #9CB4C5 !important;
  transition: background-color 9999s ease-out 0s;
}
form.wpcf7-form .form-row input[type=text]:-webkit-autofill:focus, form.wpcf7-form .form-row input[type=text]:-webkit-autofill:focus, form.wpcf7-form .form-row input[type=email]:-webkit-autofill:focus, form.wpcf7-form .form-row input[type=email]:-webkit-autofill:focus, form.wpcf7-form .form-row input[type=file]:-webkit-autofill:focus, form.wpcf7-form .form-row input[type=file]:-webkit-autofill:focus {
  box-shadow: 0 0 0 1000px rgba(0, 0, 0, 0.1) inset !important;
  -webkit-text-fill-color: #9CB4C5 !important;
}
form.wpcf7-form .form-row textarea {
  height: 140px;
  resize: none;
  border: 1px solid #ffffff;
  border-radius: 40px;
  background: rgba(0, 0, 0, 0.1);
  outline: 0;
  color: #9CB4C5;
  width: 100%;
  padding: 25px 32px;
  font-size: 16px;
  line-height: 116%;
  font-weight: 400;
  font-family: "Inter", sans-serif;
}
form.wpcf7-form .form-row textarea::-webkit-input-placeholder {
  color: #9CB4C5;
}
form.wpcf7-form .form-row textarea:-moz-placeholder {
  color: #9CB4C5;
  opacity: 1;
}
form.wpcf7-form .form-row textarea::-moz-placeholder {
  color: #9CB4C5;
  opacity: 1;
}
form.wpcf7-form .form-row textarea:-ms-input-placeholder {
  color: #9CB4C5;
}
form.wpcf7-form .form-row textarea::placeholder {
  color: #9CB4C5;
}
form.wpcf7-form .form-row select {
  height: 56px;
  border: 1px solid #ffffff;
  border-radius: 40px;
  color: #FFF;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 136%; /* 21.76px */
  letter-spacing: 0.64px;
  background: rgba(0, 0, 0, 0.1);
  width: 100%;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='8' viewBox='0 0 14 8' fill='none'%3E%3Cpath d='M1 1L7 7L13 1' stroke='%239CB4C5' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center; /* move arrow */
  background-size: 45px 8px;
  padding-left: 32px;
  padding-right: 32px;
}
form.wpcf7-form .form-row select.custom_select {
  padding-bottom: 35px;
  padding-left: 32px;
  height: 68px;
}
form.wpcf7-form .form-row select option {
  background-color: #ffffff; /* background for dropdown items */
  color: #000;
}
form.wpcf7-form .form-row span {
  width: 100%;
}
@media (max-width: 991px) {
  form.wpcf7-form .form-row span {
    width: auto;
    display: block;
  }
}
form.wpcf7-form .form-row span.wpcf7-spinner {
  width: auto;
}
form.wpcf7-form .form-row span.wpcf7-not-valid-tip {
  color: #dc3232;
  font-size: 1em;
  font-weight: normal;
  display: block;
  width: fit-content !important;
  display: flex;
  justify-content: center;
  position: relative;
  top: 5px;
  margin-left: 30px;
}
form.wpcf7-form .form-row .wpcf7-submit {
  cursor: pointer;
}
form.wpcf7-form .form-row label {
  color: #FFF;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 136%; /* 21.76px */
  letter-spacing: 0.64px;
  margin-bottom: 12px;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
}
form.wpcf7-form .form-row .content-area {
  color: #9CB4C5;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 136%;
  letter-spacing: 0.64px;
  margin-top: 12px;
}
form.wpcf7-form .form-row .content-area strong {
  font-weight: 700;
  color: #ffffff;
}
form.wpcf7-form .form-row .split-area {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
form.wpcf7-form .form-row .w-60 {
  width: 59%;
}
form.wpcf7-form .form-row .w-40 {
  width: 39%;
}
form.wpcf7-form .form-row .w-20 {
  width: 19%;
}
form.wpcf7-form .form-row .w-80 {
  width: 79%;
}
form.wpcf7-form .form-row .w-10 {
  width: 9%;
}
form.wpcf7-form .form-row .w-90 {
  width: 89%;
}
form.wpcf7-form .form-row .w-12 {
  width: 11%;
}
form.wpcf7-form .form-row .w-88 {
  width: 87%;
}
form.wpcf7-form .form-row .wpcf7-file {
  position: relative;
  text-indent: 1500px;
}
form.wpcf7-form .form-row .wpcf7-file::before {
  content: "Attachments";
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  text-indent: 12px;
  font-style: italic;
}
form.wpcf7-form .form-row .wpcf7-file::after {
  content: "";
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  background-repeat: no-repeat;
  background-size: 24px 24px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M21 15V19C21 19.5304 20.7893 20.0391 20.4142 20.4142C20.0391 20.7893 19.5304 21 19 21H5C4.46957 21 3.96086 20.7893 3.58579 20.4142C3.21071 20.0391 3 19.5304 3 19V15' stroke='%239CB4C5' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M17 8L12 3L7 8' stroke='%239CB4C5' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M12 3V15' stroke='%239CB4C5' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}
form.wpcf7-form .form-row .wpcf7-acceptance .wpcf7-list-item label {
  display: inline-flex;
  flex-wrap: nowrap;
}
form.wpcf7-form .form-row .wpcf7-acceptance .wpcf7-list-item label input[type=checkbox] {
  appearance: none;
  -webkit-appearance: none;
  background: transparent;
  border: 1px solid #9CB4C5; /* your border */
  width: 18px;
  height: 18px;
  border-radius: 4px;
  position: relative;
  margin-right: 12px;
  cursor: pointer;
}
form.wpcf7-form .form-row .wpcf7-acceptance .wpcf7-list-item label input[type=checkbox]:checked::after {
  content: "";
  position: absolute;
  left: 4px;
  top: 1px;
  width: 6px;
  height: 12px;
  border: solid #9CB4C5;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
form.wpcf7-form .form-row .wpcf7-acceptance .wpcf7-list-item label .wpcf7-list-item-label {
  color: #9CB4C5;
  text-align: justify;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 136%; /* 21.76px */
  letter-spacing: 0.64px;
  font-family: "Inter", sans-serif;
}
form.wpcf7-form .form-row .wpcf7-acceptance .wpcf7-list-item label .wpcf7-list-item-label a {
  color: #ffffff;
}
form.wpcf7-form .extra-person {
  height: 56px;
  border: 1px solid #ffffff;
  border-radius: 40px;
  color: #9CB4C5;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 136%; /* 21.76px */
  letter-spacing: 0.64px;
  background: rgba(0, 0, 0, 0.1);
  width: 100%;
  align-items: center;
  display: flex;
  padding-left: 32px;
  margin-top: 10px;
  position: relative;
  cursor: pointer;
}
form.wpcf7-form .extra-person:after {
  content: "";
  position: absolute;
  right: 16px; /* distance from the right */
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M12 5V19' stroke='%239CB4C5' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M5 12H19' stroke='%239CB4C5' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: 24px 24px;
}
form.wpcf7-form .form-row.contact_admin_purposes {
  margin-top: 30px;
}

[class*=wave_] .wpb_column {
  position: relative;
}

[class*=wave_] .wpb_column::after {
  position: absolute;
  top: -50px;
  left: 0;
  right: 0;
  width: 100%;
  height: 68px;
  background-size: cover;
  background-repeat: no-repeat;
}

.locked-messages {
  display: flex;
  width: 100%;
  flex-wrap: wrap;
}
.locked-messages a {
  color: #ffffff;
  text-decoration: underline;
}

.content-row {
  display: block;
}
.content-row strong {
  color: #ffffff;
}

.category-calendar {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  align-items: center;
  justify-content: space-between;
}
.category-calendar ul {
  list-style: none;
  width: 100%;
  flex-wrap: wrap;
  display: flex;
  gap: 8px;
  padding: 0;
  width: 100%;
}
@media (max-width: 1140px) {
  .category-calendar ul {
    flex-direction: column;
    margin-bottom: 20px;
  }
}
.category-calendar ul li span {
  cursor: pointer;
  display: flex;
  padding: 8px 20px;
  align-items: center;
  border-radius: 1000px;
  background: rgba(255, 255, 255, 0.1);
  color: #FFF;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 24px */
  letter-spacing: 0.64px;
}
@media (max-width: 1140px) {
  .category-calendar ul li span {
    text-align: center;
    justify-content: center;
  }
}
.category-calendar .view-filter {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  color: #FFFFFF;
  text-decoration: none;
}

.non-tab {
  display: none;
}
.non-tab.active {
  display: block;
}
.non-tab .news {
  padding-top: 0;
}

.footer-terms {
  justify-content: space-between;
  margin-top: 80px;
}
.footer-terms .left-terms {
  display: flex;
  flex-wrap: wrap;
}
.footer-terms .left-terms ul {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  gap: 40px;
}
@media (max-width: 991px) {
  .footer-terms .left-terms ul {
    gap: 10px;
    flex-direction: column;
  }
}
.footer-terms .left-terms ul li {
  color: #9CB4C5;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 116%; /* 18.56px */
  letter-spacing: 0.64px;
  position: relative;
}
.footer-terms .left-terms ul li:after {
  position: absolute;
  content: "";
  width: 2px;
  height: 24px;
  background-color: #9CB4C5;
  right: -20px;
}
@media (max-width: 1140px) {
  .footer-terms .left-terms ul li:after {
    display: none;
  }
}
.footer-terms .left-terms ul li:last-child:after {
  display: none;
}
.footer-terms .left-terms ul li a {
  color: #9CB4C5;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 116%; /* 18.56px */
  letter-spacing: 0.64px;
  text-decoration: none;
}
.footer-terms .right-des-dev {
  color: #9CB4C5;
  font-family: "Titillium Web";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 116%; /* 18.56px */
  letter-spacing: 0.64px;
}
@media (max-width: 991px) {
  .footer-terms .right-des-dev {
    margin-top: 10px;
    flex-wrap: wrap;
    width: 100%;
  }
}

.toggle-menu {
  display: none;
  outline: 0;
}

@media (max-width: 1250px) {
  .header-area .toggle-menu {
    display: flex;
    align-items: center;
  }
}
@media (max-width: 991px) {
  .single-post .hero .full-image {
    height: 450px;
  }
}

/*# sourceMappingURL=main.css.map */
