* {
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    outline: 0;
  }
  
  html {
    scroll-behavior: smooth;
  }
  
  body,
  html {
    overflow-x: hidden;
  }
  
  ol,
  ul {
    list-style: none;
  }
  
  a {
    text-decoration: none;
  }
  
  a,
  button,
  input,
  textarea {
    background: 0 0;
    color: inherit;
    font-family: inherit;
    font-size: inherit;
    border: none;
    cursor: pointer;
    -webkit-transition: 0.3s ease-in-out;
    -o-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
  }
  
  input,
  textarea {
    border-radius: 0;
    -webkit-appearance: none;
  }
  
  input[readonly],
  textarea[readonly] {
    cursor: default;
  }
  
  input::-webkit-input-placeholder,
  textarea::-webkit-input-placeholder {
    font-family: inherit;
    font-size: inherit;
    color: inherit;
  }
  
  input::-moz-placeholder,
  textarea::-moz-placeholder {
    font-family: inherit;
    font-size: inherit;
    color: inherit;
  }
  
  input:-ms-input-placeholder,
  textarea:-ms-input-placeholder {
    font-family: inherit;
    font-size: inherit;
    color: inherit;
  }
  
  input::-ms-input-placeholder,
  textarea::-ms-input-placeholder {
    font-family: inherit;
    font-size: inherit;
    color: inherit;
  }
  
  input::placeholder,
  textarea::placeholder {
    font-family: inherit;
    font-size: inherit;
    color: inherit;
  }
  
  textarea {
    resize: none;
  }
  
  img {
    display: block;
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
  }
  
  @-webkit-keyframes fadeIn {
    0% {
      opacity: 0;
    }
    100% {
      opacity: 1;
    }
  }
  
  @keyframes fadeIn {
    0% {
      opacity: 0;
    }
    100% {
      opacity: 1;
    }
  }
  
  @-webkit-keyframes fadeOut {
    0% {
      opacity: 1;
    }
    100% {
      opacity: 0;
    }
  }
  
  @keyframes fadeOut {
    0% {
      opacity: 1;
    }
    100% {
      opacity: 0;
    }
  }
  
  .fadeIn {
    -webkit-animation: 0.4s ease-in-out fadeIn;
    animation: 0.4s ease-in-out fadeIn;
  }
  
  .fadeOut {
    -webkit-animation: 0.4s ease-in-out fadeOut;
    animation: 0.4s ease-in-out fadeOut;
  }
  
  html.fixed {
    overflow: hidden;
  }
  
  body {
    font-family: Rubik, sans-serif;
    color: #382933;
    font-size: 17px;
    line-height: 1.5;
  }
  
  .section {
    padding: 60px 0;
  }
  
  .h1,
  .h2,
  .h3,
  .h4,
  .h5,
  .h6,
  h1,
  h2,
  h3,
  h4,
  h5,
  h6 {
    font-family: Poppins, sans-serif;
    color: #19456b;
  }
  
  .h1,
  h1 {
    font-weight: 600;
    font-size: 38px;
    line-height: 1.1;
  }
  
  .h2,
  h2 {
    font-size: 34px;
    line-height: 1.3;
    font-weight: 700;
  }
  
  .h3,
  h3 {
    font-size: 28px;
    line-height: 1.2;
    font-weight: 700;
  }
  
  .h4,
  h4 {
    font-size: 24px;
    line-height: 1.2;
    font-weight: 700;
  }
  
  .h5,
  h5 {
    font-size: 20px;
    line-height: 1.3;
    font-weight: 600;
  }
  
  .h6,
  h6 {
    font-size: 18px;
    line-height: 1.3;
    font-weight: 600;
  }
  
  .container {
    max-width: 1180px;
  }
  
  .collapse:not(.show) {
    display: none;
  }
  
  .collapsing {
    height: 0;
    overflow: hidden;
    -webkit-transition: height 0.3s ease-in-out;
    -o-transition: height 0.3s ease-in-out;
    transition: height 0.3s ease-in-out;
  }
  
  .fade {
    -webkit-transition: opacity 0.3s ease-in-out;
    -o-transition: opacity 0.3s ease-in-out;
    transition: opacity 0.3s ease-in-out;
  }
  
  .fade:not(.show) {
    opacity: 0;
  }
  
  .tab-content > .tab-pane {
    display: none;
  }
  
  .tab-content > .active {
    display: block;
  }
  
  .logo {
    height: 37px;
  }
  
  .logo_media {
    margin-right: 6px;
  }
  
  .logo_media svg {
    position: relative;
    top: 4px;
  }
  
  .logo_text {
    font-weight: 600;
    font-size: 32px;
    line-height: 1;
    font-family: Poppins, sans-serif;
    position: relative;
  }
  
  .link--arrow {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    color: #fff;
    text-transform: uppercase;
    font-family: Poppins, sans-serif;
    font-weight: 600;
    line-height: 1;
    font-size: 14px;
  }
  
  .link--arrow .icon {
    margin-left: 5px;
    -webkit-transition: margin-left 0.4s ease-in-out;
    -o-transition: margin-left 0.4s ease-in-out;
    transition: margin-left 0.4s ease-in-out;
  }
  
  .link--arrow:hover .icon {
    margin-left: 10px;
  }
  
  .btn {
    color: #fff;
    background: #0f0fb1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    text-align: center;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
  }
  
  .btn--split {
    height: 54px;
    min-width: 270px;
    position: relative;
  }
  
  .btn--split:before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 0;
    height: 100%;
    background: #00008e;
    -webkit-transition: width 0.3s ease-in-out;
    -o-transition: width 0.3s ease-in-out;
    transition: width 0.3s ease-in-out;
  }
  
  .btn--split .icon,
  .btn--split .main {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    position: relative;
    z-index: 1;
  }
  
  .btn--split .main {
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    width: calc(100% - 54px);
  }
  
  .btn--split .icon {
    width: 54px;
    background: #00008e;
    height: 100%;
  }
  
  .btn--split:focus:before,
  .btn--split:hover:before {
    width: 100%;
  }
  
  .btn--regular {
    height: 44px;
    min-width: 180px;
  }
  
  .btn--regular.bordered {
    background: 0 0;
    border: 1px solid #fff;
  }
  
  .btn--regular:focus,
  .btn--regular:hover {
    background-color: #00008e;
  }
  
  .btn--regular,
  .btn--split {
    font-size: 18px;
    line-height: 1;
    font-family: Poppins, sans-serif;
    font-weight: 500;
  }
  
  .sidebar {
    background: #fff;
  }
  
  .sidebar_block {
    margin-bottom: 40px;
    font-family: Poppins, sans-serif;
  }
  
  .sidebar_block:last-of-type {
    margin-bottom: 0;
  }
  
  .sidebar_block-header {
    height: 64px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding-left: 20px;
    margin-bottom: 20px;
    background: #fff;
    -webkit-box-shadow: 0 2px 15px rgba(0, 0, 142, 0.1);
    box-shadow: 0 2px 15px rgba(0, 0, 142, 0.1);
  }
  
  .sidebar_block-header .icon {
    width: 64px;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    color: #fff;
    background: #00008e;
    font-size: 20px;
  }
  
  .sidebar_block-content {
    padding: 0 20px;
  }
  
  .metadata {
    gap: 5px 20px;
  }
  
  .metadata_item {
    font-size: 14px;
    line-height: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    color: #6d6d6d;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
  }
  
  .metadata_item .icon {
    color: #00008e;
    margin-right: 5px;
  }
  
  .metadata_item .icon-calendar-o {
    margin-top: -3px;
  }
  
  .pagination_control {
    position: relative;
    top: 1px;
  }
  
  .pagination_pages {
    margin: 0 40px;
  }
  
  .pagination_pages-item {
    margin-right: 35px;
  }
  
  .pagination_pages-item:last-of-type {
    margin-right: 0;
  }
  
  .pagination_pages-item .link {
    position: relative;
    -webkit-transition: color 0.3s ease-in-out;
    -o-transition: color 0.3s ease-in-out;
    transition: color 0.3s ease-in-out;
  }
  
  .pagination_pages-item .link:before {
    content: "";
    position: absolute;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: -o-linear-gradient(315deg, #00008e 0, #017280 100%);
    background: linear-gradient(135deg, #00008e 0, #017280 100%);
    z-index: -1;
    top: 50%;
    left: 50%;
    -webkit-transform: translateY(-50%) translateX(-50%);
    -ms-transform: translateY(-50%) translateX(-50%);
    transform: translateY(-50%) translateX(-50%);
    -webkit-transition: opacity 0.3s ease-in-out;
    -o-transition: opacity 0.3s ease-in-out;
    transition: opacity 0.3s ease-in-out;
    opacity: 0;
  }
  
  .pagination_pages-item .link.current,
  .pagination_pages-item .link:focus,
  .pagination_pages-item .link:hover {
    color: #fff;
  }
  
  .pagination_pages-item .link.current:before,
  .pagination_pages-item .link:focus:before,
  .pagination_pages-item .link:hover:before {
    opacity: 1;
  }
  
  .breadcrumbs {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 5px;
    color: #6d6d6d;
    font-size: 14px;
  }
  
  .breadcrumbs .item {
    line-height: 1;
  }
  
  .breadcrumbs .item .link {
    position: relative;
  }
  
  .breadcrumbs .item .link:after {
    content: "/";
    margin-left: 5px;
  }
  
  .contact_data {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    grid-gap: 20px;
    margin-bottom: 60px;
  }
  
  .contact_data-item {
    -webkit-box-shadow: 0 2px 15px rgba(0, 0, 142, 0.1);
    box-shadow: 0 2px 15px rgba(0, 0, 142, 0.1);
    background: #fff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  
  .contact_data-item .media {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 30%;
    background: #017280;
    color: #fff;
    display: none;
  }
  
  .contact_data-item .media svg {
    max-width: 40px;
  }
  
  .contact_data-item .media--highlight {
    background: #00008e;
  }
  
  .contact_data-item .main {
    padding: 25px;
  }
  
  .contact_data-item .main_info {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    margin-top: 5px;
  }
  
  .form .field,
  .form .label {
    display: block;
  }
  
  .form .label {
    font-size: 14px;
    margin-bottom: 5px;
    color: #6d6d6d;
    text-transform: uppercase;
  }
  
  .form .field {
    background: #fff;
    border: 1px solid #e1e1e1;
    -webkit-transition: 0.3s ease-in-out;
    -o-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
    height: 45px;
    padding: 0 20px;
  }
  
  .form .field.error {
    border-color: #bc0000;
  }
  
  .form .field::-webkit-input-placeholder {
    -webkit-transition: opacity 0.3s ease-in-out;
    transition: opacity 0.3s ease-in-out;
    color: #a3a3a3;
  }
  
  .form .field::-moz-placeholder {
    -moz-transition: opacity 0.3s ease-in-out;
    transition: opacity 0.3s ease-in-out;
    color: #a3a3a3;
  }
  
  .form .field:-ms-input-placeholder {
    -ms-transition: opacity 0.3s ease-in-out;
    transition: opacity 0.3s ease-in-out;
    color: #a3a3a3;
  }
  
  .form .field::-ms-input-placeholder {
    -ms-transition: opacity 0.3s ease-in-out;
    transition: opacity 0.3s ease-in-out;
    color: #a3a3a3;
  }
  
  .form .field::placeholder {
    -webkit-transition: opacity 0.3s ease-in-out;
    -o-transition: opacity 0.3s ease-in-out;
    transition: opacity 0.3s ease-in-out;
    color: #a3a3a3;
  }
  
  .form .field:focus {
    border-color: #0f0fb1;
  }
  
  .form .field:focus::-webkit-input-placeholder {
    opacity: 0;
  }
  
  .form .field:focus::-moz-placeholder {
    opacity: 0;
  }
  
  .form .field:focus:-ms-input-placeholder {
    opacity: 0;
  }
  
  .form .field:focus::-ms-input-placeholder {
    opacity: 0;
  }
  
  .form .field:focus::placeholder {
    opacity: 0;
  }
  
  input[type="checkbox"] {
    position: absolute;
    left: -9999px;
  }
  
  input[type="checkbox"] + label {
    position: relative;
    padding-left: 25px;
    cursor: pointer;
    display: inline-block;
    -webkit-transition: color 0.4s ease-in-out;
    -o-transition: color 0.4s ease-in-out;
    transition: color 0.4s ease-in-out;
    line-height: 1;
  }
  
  input[type="checkbox"]:checked + label .icon,
  input[type="checkbox"]:not(:checked) + label .icon {
    position: absolute;
    left: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 17px;
    height: 17px;
    -webkit-transition: 0.4s ease-in-out;
    -o-transition: 0.4s ease-in-out;
    transition: 0.4s ease-in-out;
  }
  
  input[type="checkbox"]:checked + label .icon-check-square-regular {
    opacity: 1;
    color: #00008e;
  }
  
  input[type="checkbox"]:not(:checked) + label .icon-check-square-regular {
    opacity: 0;
  }
  
  #map {
    height: 100%;
  }
  
  @media screen and (min-width: 374.98px) {
    .container {
      padding: 0 30px;
    }
  }
  
  @media screen and (min-width: 474.98px) {
    .contact_data-item .media {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
    }
  }
  
  @media screen and (min-width: 575.98px) {
    .metadata {
      gap: 5px 40px;
    }
    .contact_data-item {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      text-align: left;
    }
    .contact_data-item .main,
    .contact_data-item .media {
      padding: 0;
    }
    .contact_data-item .media {
      width: 120px;
    }
    .contact_data-item .main {
      width: calc(100% - 120px);
      padding: 20px 30px 20px 20px;
    }
  }
  
  @media screen and (min-width: 767.98px) {
    .section {
      padding: 80px 0;
    }
    .h1,
    h1 {
      font-size: 42px;
    }
    .h2,
    h2 {
      font-size: 38px;
    }
    .h3,
    h3 {
      font-size: 34px;
    }
  }
  
  @media screen and (min-width: 991.98px) {
    .section {
      padding: 40px 0;
    }
    .h1,
    h1 {
      font-size: 56px;
    }
    .h2,
    h2 {
      font-size: 42px;
    }
    .h3,
    h3 {
      font-size: 38px;
    }
    .h4,
    h4 {
      font-size: 28px;
    }
    .h5,
    h5 {
      font-size: 22px;
    }
    .swiper-pagination {
      margin-top: 60px;
    }
    .contact_data-item .media svg {
      max-width: 50px;
    }
  }
  
  @media screen and (min-width: 1199.98px) {
    .container {
      padding: 0;
    }
  }
  
  .swiper-pagination {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-top: 40px;
  }
  
  .swiper-pagination-bullet {
    display: block;
    cursor: pointer;
    border-radius: 2.5px;
    width: 20px;
    height: 5px;
    background: #00008e;
    margin-right: 15px;
    -webkit-transition: width 0.7s ease-in-out;
    -o-transition: width 0.7s ease-in-out;
    transition: width 0.7s ease-in-out;
  }
  
  .swiper-pagination-bullet-active {
    width: 50px;
  }
  
  .swiper-pagination-bullet:last-of-type {
    margin-right: 0;
  }
  
  .swiper-controls {
    position: absolute;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    top: 50%;
    left: 0;
    right: 0;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    z-index: 100;
  }
  
  .swiper-button {
    background: #00008e;
    color: #fff;
    font-size: 18px;
    line-height: 1;
    width: 40px;
    height: 40px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-transition: opacity 0.4s ease-in-out;
    -o-transition: opacity 0.4s ease-in-out;
    transition: opacity 0.4s ease-in-out;
  }
  
  .swiper-button-prev .icon {
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
  }
  
  .swiper-button-disabled {
    opacity: 0.3;
  }
  
  .swiper-button:hover {
    opacity: 0.7;
  }
  
  a[href^="http://maps.google.com/maps"],
  a[href^="https://maps.google.com/maps"]
  {
    display: none !important;
  }
  
  .gm-style-cc,
  .gmnoprint a,
  .gmnoprint span {
    display: none;
  }
  
  .gmnoprint div {
    background: 0 0 !important;
  }
  
  input[type="search"]::-webkit-search-cancel-button,
  input[type="search"]::-webkit-search-decoration,
  input[type="search"]::-webkit-search-results-button,
  input[type="search"]::-webkit-search-results-decoration {
    -webkit-appearance: none;
  }
  
  input::-webkit-inner-spin-button,
  input::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
  }
  
  input[type="number"] {
    -moz-appearance: textfield;
  }
  
  .sticky-spacer {
    display: none !important;
  }
  
  .swal2-container {
    z-index: 1000000 !important;
  }
  
  .modal.swal2-backdrop-show {
    background: rgba(43, 53, 67, 0.5);
  }
  
  .modal .modal_popup-close {
    position: absolute;
    font-size: 20px;
    top: 10px;
    right: 10px;
    color: #ffcc29;
  }
  
  .modal_popup {
    background: #fff;
    border-radius: 12px;
    position: relative;
  }
  
  .modal_popup--team {
    overflow: hidden;
    padding: 30px;
  }
  
  .modal_popup--team .media {
    border-radius: 12px;
    overflow: hidden;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    margin-bottom: 10px;
    aspect-ratio: 1/1;
  }
  
  .modal_popup--team .media img {
    height: 100%;
  }
  
  .modal_popup--team .main .icon {
    color: #ffcc29;
  }
  
  .modal_popup--team .main_name {
    line-height: 1.1;
    color: #ffcc29;
    margin-bottom: 5px;
  }
  
  .modal_popup--team .main_socials {
    margin: 10px 0;
    font-size: 20px;
  }
  
  .modal_popup--team .main_socials-item {
    width: 21px;
    margin-right: 15px;
  }
  
  .modal_popup--team .main_bio {
    margin-bottom: 20px;
  }
  
  .modal_popup--team .main_about {
    margin-bottom: 30px;
  }
  
  .modal_popup--team .main_about-item {
    margin-bottom: 10px;
  }
  
  .modal_popup--team .main_about-item:last-of-type {
    margin-bottom: 0;
  }
  
  .modal_popup--team .main_about-item .text {
    margin: 0 3px;
  }
  
  .modal_popup--team .main_btn {
    text-transform: uppercase;
    color: #ffcc29;
    font-size: 14px;
    line-height: 1;
    font-weight: 900;
  }
  
  .modal_popup--team .main_btn .icon {
    -webkit-transition: margin-left 0.3s ease-in-out;
    -o-transition: margin-left 0.3s ease-in-out;
    transition: margin-left 0.3s ease-in-out;
    margin-left: 10px;
    font-size: 14px;
  }
  
  .modal_popup--team .main_btn:focus .icon,
  .modal_popup--team .main_btn:hover .icon {
    margin-left: 15px;
  }
  
  .modal_popup--register {
    max-width: 1000px;
    padding: 30px;
    text-align: center;
  }
  
  .modal_popup--register .title {
    margin-bottom: 15px;
  }
  
  .modal_popup--register .subtitle {
    color: #ffcc29;
    margin: 10px 0;
  }
  
  .modal_popup--register .text {
    font-weight: 400;
  }
  
  .modal_popup--register .registration_form {
    margin-top: 20px;
  }
  
  .modal_popup--register .registration_form .field:not(:last-of-type) {
    margin-bottom: 10px;
  }
  
  .modal_popup--register .registration_form .wrapper {
    margin: 10px 0 20px;
    text-align: left;
    font-size: 14px;
    font-weight: 600;
  }
  
  .modal_popup--register .registration_form .wrapper .link {
    color: #ffcc29;
    margin-left: 25px;
  }
  
  .modal_popup--register
    .registration_form
    .wrapper
    .checkbox
    input[type="checkbox"]:checked
    + label:after,
  .modal_popup--register
    .registration_form
    .wrapper
    .checkbox
    input[type="checkbox"]:checked
    + label:before {
    top: 10px;
  }
  
  .modal_popup--register .registration_form .btn {
    width: 100%;
  }
  
  .alert_popup {
    background: #fff;
    -webkit-box-shadow: 0 2px 25px rgba(0, 0, 142, 0.15);
    box-shadow: 0 2px 25px rgba(0, 0, 142, 0.15);
    border-radius: 8px;
    min-width: 280px;
    max-width: 360px;
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding: 30px;
    position: relative;
    z-index: 1000000;
  }
  
  .alert_popup-close {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    -webkit-transition: color 0.3s ease-in-out;
    -o-transition: color 0.3s ease-in-out;
    transition: color 0.3s ease-in-out;
    position: absolute;
    top: 15px;
    right: 15px;
  }
  
  .alert_popup-close:focus,
  .alert_popup-close:hover {
    color: #ffcc29;
  }
  
  @media screen and (min-width: 575.98px) {
    .modal_popup--team {
      padding: 40px;
    }
    .modal_popup--team .modal_popup-close {
      font-size: 24px;
      top: 15px;
      right: 15px;
    }
    .modal_popup--register {
      padding: 60px;
    }
    .modal_popup--register .modal_popup-close {
      top: 20px;
      right: 20px;
    }
    .modal_popup--register .registration_form {
      max-width: 605px;
      margin: 20px auto 0;
    }
    .modal_popup--register .registration_form .wrapper {
      margin: 10px 0 20px;
      text-align: center;
    }
    .modal_popup--register .registration_form .wrapper .link {
      color: #ffcc29;
      font-weight: 600;
    }
    .modal_popup--register .registration_form .btn {
      width: 350px;
    }
  }
  
  @media screen and (min-width: 767.98px) {
    .modal_popup--team .modal_popup-close {
      top: 20px;
      right: 20px;
    }
    .modal_popup--team .media {
      margin-right: 40px;
    }
    .modal_popup--register .registration_form .wrapper {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: center;
      -ms-flex-pack: center;
      justify-content: center;
      -webkit-box-align: center;
      -ms-flex-align: center;
      align-items: center;
    }
    .modal_popup--register .registration_form .wrapper .link {
      margin-left: 5px;
    }
  }
  
  @media screen and (min-width: 991.98px) {
    .modal_popup--team {
      padding: 75px 70px;
      max-width: 1000px;
    }
    .modal_popup--team .media {
      width: 356px;
      aspect-ratio: unset;
      margin-bottom: 0;
    }
    .modal_popup--team .main {
      width: calc(100% - 396px);
    }
  }
  
  .header {
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    right: 0;
    z-index: 900000;
    padding: 20px 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #bcbcbc;
  }
  
  .header_panel-logo {
    color: #fff;
    display: block;
    /* margin-bottom: 10px; */
  }
  
  .header_panel-links {
    display: none;
  }
  
  .header_nav {
    will-change: transform;
    -webkit-transition: 0.4s ease-in-out;
    -o-transition: 0.4s ease-in-out;
    transition: 0.4s ease-in-out;
  }
  
  .header_nav.header--pinned {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
  
  .header_nav.header--unpinned {
    -webkit-transform: translateY(-100%);
    -ms-transform: translateY(-100%);
    transform: translateY(-100%);
  }
  
  /* .header_nav.sticky {
      position: fixed;
      width: 100%;
      top: 0;
      left: 0;
      padding: 15px 0;
      background: #00008e;
  } */
  
  .header_nav.sticky {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    padding: 15px 0;
    background: linear-gradient(
      135deg,
      rgba(0, 0, 142, 0.7) 0%,
      rgba(1, 114, 128, 0.7) 100%
    );
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    /* For Safari support */
  }
  
  .header_nav-trigger {
    color: #fff;
    height: 32px;
  }
  
  .header_nav-trigger svg {
    width: 32px;
  }
  
  .header_nav-tel {
    color: #fff;
    font-weight: 500;
  }
  
  .header_nav-wrapper {
    width: 100%;
  }
  
  .header_nav-menu {
    width: 100%;
    gap: 15px;
    font-family: Poppins, sans-serif;
    font-weight: 500;
    color: #fff;
    height: 100vh;
    overflow-y: auto;
  }
  
  .header_nav-menu_item {
    font-size: 20px;
    line-height: 1.3;
  }
  
  .header_nav-menu_item:first-of-type {
    margin-top: 30px;
  }
  
  .header_nav-menu_item:last-of-type {
    margin-bottom: 30px;
  }
  
  .header_nav-menu_item .dropdown-toggle .icon {
    margin-left: 10px;
    color: #fff;
  }
  
  .header_nav-menu_item .dropdown-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 15px;
  }
  
  .header_nav-menu_item .dropdown-list .list-item:first-of-type {
    margin-top: 10px;
  }
  
  .header_nav-menu_item .dropdown-list .nav-item {
    font-size: 17px;
  }
  
  .header_nav-menu_item .dropdown-list .nav-item.current,
  .header_nav-menu_item .dropdown-list .nav-item:focus,
  .header_nav-menu_item .dropdown-list .nav-item:hover {
    color: #ffcc29;
  }
  
  @media screen and (min-width: 767.98px) {
    /* .header_panel {
          margin-bottom: 30px;
      } */
    .header_panel-logo {
      margin-bottom: 0;
    }
    .header_panel-links {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      gap: 50px;
    }
    .header_panel-links_link {
      width: -webkit-fit-content;
      width: -moz-fit-content;
      width: fit-content;
    }
    .header_nav-menu {
      height: 50vh;
    }
  }
  
  @media screen and (min-width: 991.98px) {
      .header {
    padding: 20px 30px;
  }
  
    /* .header {
          padding: 40px 0 0;
      }
      .header_panel {
          margin-bottom: 40px;
      } */
    .header_panel-links {
      margin-bottom: 0;
      gap: 50px;
    }
    .header_panel-links_link {
      width: -webkit-fit-content;
      width: -moz-fit-content;
      width: fit-content;
    }
    /* .header_nav {
          position: relative;
      }
      .header_nav:after {
          content: "";
          position: absolute;
          bottom: 0;
          left: 50%;
          -webkit-transform: translateX(-50%);
          -ms-transform: translateX(-50%);
          transform: translateX(-50%);
          height: 1px;
          width: calc(100% - 24px);
          max-width: 1280px;
          background: #bcbcbc;
          -webkit-transition: opacity 0.4s ease-in-out;
          -o-transition: opacity 0.4s ease-in-out;
          transition: opacity 0.4s ease-in-out;
      } */
    .header_nav.sticky:after {
      opacity: 0;
      visibility: hidden;
    }
    .header_nav.sticky .header_nav-menu_item,
    .header_nav.sticky .header_nav-tel {
      padding-bottom: 0;
    }
    .header_nav.sticky .nav-link:after {
      bottom: -13.5px;
    }
    .header_nav-wrapper {
      display: -webkit-box !important;
      display: -ms-flexbox !important;
      display: flex !important;
      width: -webkit-fit-content;
      width: -moz-fit-content;
      width: fit-content;
    }
    .header_nav-trigger {
      display: none;
    }
    .header_nav-tel {
      padding-bottom: 30px;
    }
    .header_nav-menu {
      width: -webkit-fit-content;
      width: -moz-fit-content;
      width: fit-content;
      height: auto;
      gap: 70px;
      overflow-y: visible;
    }
    .header_nav-menu .nav-link {
      position: relative;
    }
    .header_nav-menu .nav-link:after {
      content: "";
      position: absolute;
      bottom: -31px;
      left: 0;
      width: 100%;
      background: #ffcc29;
      height: 7px;
      z-index: 10;
      -webkit-transition: 0.4s ease-in-out;
      -o-transition: 0.4s ease-in-out;
      transition: 0.4s ease-in-out;
      -webkit-transform: scale(0);
      -ms-transform: scale(0);
      transform: scale(0);
    }
    .header_nav-menu .nav-link.current:after,
    .header_nav-menu .nav-link:hover:after {
      -webkit-transform: scale(1.1);
      -ms-transform: scale(1.1);
      transform: scale(1.1);
    }
    /* .header_nav-menu_item {
          padding-bottom: 30px;
      } */
    .header_nav-menu_item:first-of-type {
      margin-top: 0;
    }
    .header_nav-menu_item:last-of-type {
      margin-bottom: 0;
    }
    .header_nav-menu .dropdown-menu {
      position: absolute;
      z-index: 100;
      opacity: 0;
      top: calc(100% + 5px);
      max-height: unset;
      text-align: left;
      visibility: hidden;
      padding-top: 10px;
      -webkit-transition: opacity 0.3s;
      -o-transition: opacity 0.3s;
      transition: opacity 0.3s;
    }
    .header_nav-menu .dropdown-menu.active {
      opacity: 1;
      visibility: visible;
    }
    .header_nav-menu .dropdown-menu .list-item:not(:last-of-type) {
      padding-bottom: 25px;
    }
    .header_nav-menu .dropdown-menu .list-item[data-main="true"] {
      display: none !important;
    }
    .header_nav-menu .dropdown-list {
      background: #fff;
      border-left: 3px solid #00008e;
      padding: 0;
      margin: 0;
      color: #19456b;
      gap: 0;
    }
    .header_nav-menu .dropdown-list .list-item {
      padding: 0 !important;
      margin-left: -1px;
    }
    .header_nav-menu .dropdown-list .nav-item {
      display: inline-block;
      width: 100%;
      padding: 15px 25px;
    }
    .header_nav-menu .dropdown-list .nav-item.current,
    .header_nav-menu .dropdown-list .nav-item:hover {
      background: #00008e;
      color: #fff;
    }
    .header_nav-menu .dropdown-toggle[aria-expanded="true"] {
      padding-bottom: 0;
    }
    .header_nav-menu .dropdown-toggle .icon {
      margin-left: 10px;
      position: relative;
      top: 1px;
    }
  }
  
  .page {
    height: 300px;
    position: relative;
    padding: 0 12px;
  }
  
  .page_overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: -o-linear-gradient(
      315deg,
      rgba(0, 0, 142, 0.8) 0,
      rgba(1, 114, 128, 0.8) 100%
    );
    background: linear-gradient(
      135deg,
      rgba(0, 0, 142, 0.8) 0,
      rgba(1, 114, 128, 0.8) 100%
    );
    z-index: 1;
  }
  
  .page .container {
    padding: 0;
  }
  
  .page_card {
    position: relative;
    z-index: 10;
    padding-top: 150px;
  }
  
  .page_card-breadcrumbs {
    margin-top: 20px;
    color: #bcbcbc;
  }
  
  .page_card-title {
    line-height: 1.3;
    color: #fff;
  }
  
  @media screen and (min-width: 575.98px) {
    .page {
      height: 300px;
    }
  }
  
  @media screen and (min-width: 767.98px) {
    .page {
      height: 400px;
    }
    .page_card {
      padding-top: 205px;
    }
  }
  
  @media screen and (min-width: 991.98px) {
    .page {
      height: 500px;
    }
    .page_card {
      padding-top: 280px;
    }
    .contact_data {
      grid-template-columns: repeat(2, 1fr);
    }
  }
  
  @media screen and (min-width: 1199.98px) {
    .header_nav-menu_item {
      font-size: 22px;
    }
    .page {
      height: 610px;
    }
    .page_card {
      padding-top: 340px;
    }
  }
  
  .contact_form {
    background: #fff;
    -webkit-box-shadow: 0 2px 25px rgba(0, 0, 142, 0.15);
    box-shadow: 0 2px 25px rgba(0, 0, 142, 0.15);
    padding: 30px;
  }
  
  .contact_form-row {
    margin-bottom: 20px;
  }
  
  .contact_form-row:last-of-type {
    margin-bottom: 0;
  }
  
  .contact_form-row .column {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    margin-bottom: 20px;
  }
  
  .contact_form-row .column:last-of-type {
    margin-bottom: 0;
  }
  
  .contact_form-row .column #feedbackMessage {
    min-height: 145px;
    padding: 10px 20px;
  }
  
  .contact_form .btn {
    width: 100%;
    margin-top: 30px;
  }
  
  @media screen and (min-width: 575.98px) {
    .contact_form {
      padding: 70px 40px;
    }
    .contact_form-row {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: justify;
      -ms-flex-pack: justify;
      justify-content: space-between;
      margin-bottom: 20px;
    }
    .contact_form-row .column {
      width: calc(50% - 10px);
      margin-bottom: 0;
    }
    .contact_form-row:last-of-type .column {
      width: 100%;
    }
    .contact_form .btn {
      width: -webkit-fit-content;
      width: -moz-fit-content;
      width: fit-content;
      margin-left: auto;
      margin-top: 40px;
    }
  }
  
  .iOS .page {
    background: url(../img/contacts/cover.jpg) center/cover no-repeat;
  }
  
  .page {
    background: url(../img/contacts/cover.jpg);
    background-size: cover;
    background-position: center;
  }
  
  .contacts_map {
    height: 400px;
  }
  
  .contacts_main-form {
    margin-bottom: 60px;
  }
  
  .contacts_main-card {
    position: relative;
    height: 300px;
    padding: 30px;
  }
  
  .contacts_main-card_bg {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1;
    overflow: hidden;
  }
  
  .contacts_main-card_bg img {
    height: 100%;
  }
  
  .contacts_main-card .content {
    position: relative;
    z-index: 2;
  }
  
  .contacts_main-card_title {
    color: #fff;
    margin-bottom: 20px;
  }
  
  .contacts_main-card_btn {
    min-width: 100%;
  }
  
  @media screen and (min-width: 575.98px) {
    .contacts_main-card {
      height: 300px;
      padding: 80px 60px;
    }
    .contacts_main-card_btn {
      min-width: 270px;
    }
  }
  
  @media screen and (min-width: 767.98px) {
    .contacts_map {
      height: 500px;
    }
  }
  
  @media screen and (min-width: 1199.98px) {
    .contact_data {
      grid-template-columns: repeat(3, 1fr);
      margin-top: -58px;
      z-index: 1000000;
      position: relative;
      margin-bottom: 80px;
      width: 100%;
    }
    .contacts_map {
      height: 660px;
    }
    .contacts_main {
      padding-top: 0;
    }
    .contacts_main .wrapper {
      display: grid;
      grid-template-columns: 640px calc(100% - 700px);
      grid-gap: 60px;
    }
    .contacts_main-form {
      margin-bottom: 0;
    }
    .contacts_main-card {
      -ms-flex-item-align: stretch;
      align-self: stretch;
      height: 100%;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
      -ms-flex-direction: column;
      flex-direction: column;
      -webkit-box-pack: end;
      -ms-flex-pack: end;
      justify-content: flex-end;
    }
  }
  
  .footer {
    background: -o-linear-gradient(315deg, #00008e 0, #017280 100%);
    background: linear-gradient(135deg, #00008e 0, #017280 100%);
    color: #fff;
    padding: 80px 0 40px;
  }
  
  .footer_main {
    margin-bottom: 60px;
  }
  
  .footer_main-block--about {
    margin-bottom: 40px;
  }
  
  .footer_main-block--about .brand {
    display: inline-block;
    margin-bottom: 20px;
  }
  
  .footer_main-block--about .text {
    margin-bottom: 30px;
    color: #e1e1e1;
  }
  
  .footer_main-block--nav {
    margin-bottom: 40px;
  }
  
  .footer_main-block--nav .list-item {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-size: 18px;
    margin-bottom: 15px;
    font-family: Poppins, sans-serif;
    font-weight: 500;
  }
  
  .footer_main-block--nav .list-item:last-of-type {
    margin-bottom: 0;
  }
  
  .footer_main-block--nav .list-item .icon {
    padding-right: 10px;
    position: relative;
    top: -1px;
    left: 0;
    -webkit-transition: 0.3s ease-in-out;
    -o-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
    color: #e1e1e1;
  }
  
  .footer_main-block--nav .list-item:hover .icon {
    color: #ffcc29;
  }
  
  .footer_main-block--subscribe .title {
    font-size: 20px;
    line-height: 1.2;
    color: #fff;
    margin-bottom: 15px;
  }
  
  .footer_main-block--subscribe .text {
    color: #e1e1e1;
    margin-bottom: 30px;
  }
  
  .footer_main-block--subscribe .form {
    background: rgba(255, 255, 255, 0.1);
    height: 55px;
  }
  
  .footer_main-block--subscribe .form .field {
    padding: 15px 20px;
    border: 1px solid #e1e1e1;
    border-right: none;
    height: 100%;
    background: 0 0;
    color: #fff;
  }
  
  .footer_main-block--subscribe .form .field::-webkit-input-placeholder {
    color: #fff;
  }
  
  .footer_main-block--subscribe .form .field::-moz-placeholder {
    color: #fff;
  }
  
  .footer_main-block--subscribe .form .field:-ms-input-placeholder {
    color: #fff;
  }
  
  .footer_main-block--subscribe .form .field::-ms-input-placeholder {
    color: #fff;
  }
  
  .footer_main-block--subscribe .form .field::placeholder {
    color: #fff;
  }
  
  .footer_main-block--subscribe .form .field.error {
    border-color: #bc0000;
  }
  
  .footer_main-block--subscribe .form .btn {
    width: 55px;
    font-size: 22px;
    background: #00008e;
  }
  
  .footer_main-block--subscribe .form .btn .icon {
    -webkit-transition: 0.4s ease-in-out;
    -o-transition: 0.4s ease-in-out;
    transition: 0.4s ease-in-out;
  }
  
  .footer_main-block--subscribe .form .btn:hover .icon {
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
  }
  
  .footer_info {
    margin-bottom: 80px;
  }
  
  .footer_info-block {
    background: rgba(255, 255, 255, 0.1);
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding: 25px;
  }
  
  .footer_info-block--highlight {
    background: rgba(255, 255, 255, 0.2);
  }
  
  .footer_info-block .main {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  
  .footer_info-block .main_label {
    color: #e1e1e1;
    margin-bottom: 10px;
  }
  
  .footer_info-block .main_info {
    font-family: Poppins, sans-serif;
    font-size: 18px;
    line-height: 1.3;
    font-weight: 600;
  }
  
  .footer_info-block .main_info.link:hover {
    opacity: 0.8;
  }
  
  .footer_info-block .main_info.link--bold {
    font-weight: 700;
  }
  
  .footer_copyrights {
    text-align: center;
    color: #e1e1e1;
  }
  
  @media screen and (min-width: 767.98px) {
    .footer_main-block--about {
      width: 100%;
    }
    .footer_main-block--nav {
      margin-bottom: 0;
    }
    .footer_main-block--subscribe {
      width: 50%;
    }
    .footer_info {
      gap: 20px;
      -webkit-box-pack: center;
      -ms-flex-pack: center;
      justify-content: center;
    }
    .footer_info-block {
      width: calc(50% - 10px);
    }
  }
  
  @media screen and (min-width: 991.98px) {
    .footer {
      padding: 100px 0 40px;
    }
    .footer_main {
      margin-bottom: 80px;
    }
    .footer_main-block--about {
      margin-bottom: 50px;
    }
    .footer_main-block--nav {
      margin-bottom: 40px;
    }
    .footer_info {
      margin-bottom: 100px;
    }
  }
  
  @media screen and (min-width: 1199.98px) {
    .footer_main {
      margin-bottom: 80px;
    }
    .footer_main-block--about {
      margin-bottom: 0;
      max-width: 380px;
    }
    .footer_main-block--about .brand {
      margin-bottom: 40px;
    }
    .footer_main-block--about .text {
      margin-bottom: 55px;
    }
    .footer_main-block--nav {
      margin-bottom: 0;
      -webkit-box-flex: 1;
      -ms-flex-positive: 1;
      flex-grow: 1;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: end;
      -ms-flex-pack: end;
      justify-content: flex-end;
      margin-right: 110px;
    }
    .footer_main-block--nav .list-item {
      margin-bottom: 25px;
    }
    .footer_main-block--subscribe {
      max-width: 380px;
    }
    .footer_info {
      gap: 0;
    }
    .footer_info-block {
      width: calc(100% / 3);
      padding: 40px 0px;
    }
  }
  
  .social-icon {
    width: 40px;
    height: 40px;
    background-color: #ffffff20;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease-in-out;
    text-decoration: none;
    font-size: 18px;
  }
  
  .social-icon:hover {
    background-color: white;
    color: #000;
    transform: scale(1.1);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  }
  
  #socialid {
    gap: 10px;
  }
  
  .custom-select-wrapper {
    width: 200px;
    position: relative;
    border: 1px solid #ccc;
    border-radius: 6px;
    padding: 4px;
    background: #f9f9f9;
  }
  
  .options-container {
    max-height: 150px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    scroll-behavior: smooth;
  }
  
  .option {
    padding: 10px;
    cursor: pointer;
    border-bottom: 1px solid #eee;
    background: white;
  }
  
  .option:hover {
    background: #e0f7ff;
  }
  
  .scroll-btn {
    width: 100%;
    background: #007bff;
    color: white;
    border: none;
    padding: 6px;
    cursor: pointer;
    font-weight: bold;
  }
  
  .scroll-btn:hover {
    background: #0056b3;
  }
  #textpo {
    text-align: center;
  }
  
  /*# sourceMappingURL=../sourcemaps/contacts.css.map */
  #loader {
    position: fixed;
    z-index: 999999;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: linear-gradient(135deg, #00008e 0%, #017280 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: opacity 0.8s ease-in-out, transform 1.6s ease-in-out;
    opacity: 1;
    transform: translateY(0);
  }
  
  #loader.loader-finish {
    opacity: 0;
    transform: translateY(-100vh); /* moves loader upward */
    pointer-events: none;
  }
  
  /* Animated Logo Styling */
  #loader-logo {
    width: 330px;
    height: auto;
    margin-bottom: 32px;
    animation: loaderLogoFloat 3.5s ease-in-out forwards;
    opacity: 0;
  }
  
  /* Logo floating up with glowing effect */
  @keyframes loaderLogoFloat {
    0% {
      transform: translateY(80px) scale(0.9);
      opacity: 0;
      filter: brightness(0.8) drop-shadow(0 0 30px #00f);
    }
    30% {
      opacity: 1;
      transform: translateY(40px) scale(1.05);
      filter: brightness(1.2) drop-shadow(0 0 60px #00f);
    }
    60% {
      transform: translateY(-10px) scale(1.02);
      filter: brightness(1.1) drop-shadow(0 0 40px #00f);
    }
    100% {
      transform: translateY(-50px) scale(1);
      filter: brightness(1) drop-shadow(0 0 0 transparent);
      opacity: 1;
    }
  }
  
  @media (max-width: 600px) {
    #loader-logo {
      width: 170px;
    }
  }
  
  /* Loader Container */
  
  /* Custom Country Code Dropdown Styles */
  .country-code-wrapper {
    position: relative;
    width: 100%;
  }
  
  .country-code-selector {
    position: relative;
    width: 100%;
    user-select: none;
  }
  
  .country-code-display {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #fff;
    border: 1px solid #e1e1e1;
    border-radius: 0;
    padding: 0 20px;
    height: 45px;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    font-family: inherit;
    font-size: inherit;
    color: inherit;
  }
  
  .country-code-display:hover {
    border-color: #0f0fb1;
  }
  
  .country-code-display.active {
    border-color: #0f0fb1;
    box-shadow: 0 0 0 2px rgba(15, 15, 177, 0.1);
  }
  
  .country-code-display .country-flag {
    font-size: 18px;
    margin-right: 8px;
    flex-shrink: 0;
  }
  
  .country-code-display .country-name {
    flex: 1;
    text-align: left;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 14px;
  }
  
  .country-code-display i {
    color: #6d6d6d;
    transition: transform 0.3s ease-in-out;
    flex-shrink: 0;
    margin-left: 8px;
  }
  
  .country-code-display.active i {
    transform: rotate(180deg);
  }
  
  .country-code-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    border: 1px solid #e1e1e1;
    border-top: none;
    border-radius: 0 0 4px 4px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease-in-out;
    max-height: 400px;
    overflow: hidden;
  }
  
  .country-code-dropdown.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
  
  .country-search-container {
    position: relative;
    padding: 12px;
    border-bottom: 1px solid #e1e1e1;
    background: #f8f9fa;
  }
  
  .country-search-input {
    width: 100%;
    padding: 8px 12px 8px 35px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    background: #fff;
    transition: border-color 0.3s ease-in-out;
  }
  
  .country-search-input:focus {
    outline: none;
    border-color: #0f0fb1;
    box-shadow: 0 0 0 2px rgba(15, 15, 177, 0.1);
  }
  
  .search-icon {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: #6d6d6d;
    font-size: 14px;
    pointer-events: none;
  }
  
  .country-list-container {
    max-height: 300px;
    overflow-y: auto;
    /* iOS momentum scrolling */
    -webkit-overflow-scrolling: touch;
    /* Custom scrollbar for webkit browsers */
    scrollbar-width: thin;
    scrollbar-color: #c1c1c1 #f1f1f1;
  }
  
  .country-list-container::-webkit-scrollbar {
    width: 6px;
  }
  
  .country-list-container::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 3px;
  }
  
  .country-list-container::-webkit-scrollbar-thumb {
    background: #c1c1c1;
    border-radius: 3px;
  }
  
  .country-list-container::-webkit-scrollbar-thumb:hover {
    background: #a8a8a8;
  }
  
  .country-list {
    padding: 0;
    margin: 0;
  }
  
  .country-option {
    display: flex;
    align-items: center;
    padding: 12px 16px;
    cursor: pointer;
    transition: background-color 0.2s ease-in-out;
    border-bottom: 1px solid #f0f0f0;
  }
  
  .country-option:last-child {
    border-bottom: none;
  }
  
  .country-option:hover {
    background-color: #f8f9fa;
  }
  
  .country-option.selected {
    background-color: #e3f2fd;
    color: #0f0fb1;
  }
  
  .country-option .country-flag {
    font-size: 18px;
    margin-right: 12px;
    flex-shrink: 0;
    width: 24px;
    text-align: center;
  }
  
  .country-option .country-name {
    flex: 1;
    font-size: 14px;
    line-height: 1.4;
  }
  
  /* Responsive Design */
  @media screen and (max-width: 767.98px) {
    .country-code-dropdown {
      max-height: 350px;
    }
  
    .country-list-container {
      max-height: 250px;
    }
  
    .country-option {
      padding: 14px 16px;
    }
  
    .country-option .country-flag {
      font-size: 20px;
      margin-right: 10px;
    }
  
    .country-option .country-name {
      font-size: 15px;
    }
  
    .country-search-input {
      padding: 10px 12px 10px 35px;
      font-size: 16px; /* Prevents zoom on iOS */
    }
  }
  
  @media screen and (max-width: 575.98px) {
    .country-code-dropdown {
      position: fixed;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      width: 90%;
      max-width: 400px;
      max-height: 80vh;
      border-radius: 8px;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    }
  
    .country-code-dropdown.active {
      transform: translate(-50%, -50%);
    }
  
    .country-list-container {
      max-height: 60vh;
    }
  
    .country-option {
      padding: 16px 20px;
    }
  
    .country-option .country-flag {
      font-size: 22px;
      margin-right: 12px;
    }
  
    .country-option .country-name {
      font-size: 16px;
    }
  
    .country-search-container {
      padding: 16px;
    }
  
    .country-search-input {
      padding: 12px 12px 12px 40px;
      font-size: 16px;
    }
  
    .search-icon {
      left: 24px;
      font-size: 16px;
    }
  }
  
  /* iOS Specific Fixes */
  @supports (-webkit-touch-callout: none) {
    .country-list-container {
      /* Enhanced momentum scrolling for iOS */
      -webkit-overflow-scrolling: touch;
      /* Prevent rubber band effect */
      overscroll-behavior: contain;
    }
  
    .country-option {
      /* Prevent text selection on iOS */
      -webkit-touch-callout: none;
      -webkit-user-select: none;
      -khtml-user-select: none;
      -moz-user-select: none;
      -ms-user-select: none;
      user-select: none;
      /* Improve touch targets */
      min-height: 44px;
    }
  
    .country-search-input {
      /* Prevent zoom on focus */
      font-size: 16px;
      /* Improve touch interaction */
      -webkit-appearance: none;
      border-radius: 0;
    }
  
    .country-code-display {
      /* Improve touch targets */
      min-height: 44px;
      /* Prevent text selection */
      -webkit-touch-callout: none;
      -webkit-user-select: none;
      -khtml-user-select: none;
      -moz-user-select: none;
      -ms-user-select: none;
      user-select: none;
    }
  }
  
  /* Dark mode support */
  @media (prefers-color-scheme: dark) {
    .country-code-dropdown {
      background: #2d2d2d;
      border-color: #444;
      color: #fff;
    }
  
    .country-search-container {
      background: #1a1a1a;
      border-bottom-color: #444;
    }
  
    .country-search-input {
      background: #333;
      border-color: #555;
      color: #fff;
    }
  
    .country-search-input::placeholder {
      color: #aaa;
    }
  
    .country-option {
      border-bottom-color: #444;
    }
  
    .country-option:hover {
      background-color: #3a3a3a;
    }
  
    .country-option.selected {
      background-color: #1e3a5f;
      color: #4fc3f7;
    }
  
    .search-icon {
      color: #aaa;
    }
  }
  
  /* Focus management for accessibility */
  .country-code-display:focus {
    outline: 2px solid #0f0fb1;
    outline-offset: 2px;
  }
  
  .country-option:focus {
    outline: 2px solid #0f0fb1;
    outline-offset: -2px;
  }
  
  /* Animation for smooth transitions */
  @keyframes fadeInUp {
    from {
      opacity: 0;
      transform: translateY(10px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  .country-code-dropdown.active {
    animation: fadeInUp 0.3s ease-out;
  }
  
  /* Loading state */
  .country-list.loading {
    opacity: 0.6;
    pointer-events: none;
  }
  
  .country-list.loading::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    border: 2px solid #f3f3f3;
    border-top: 2px solid #0f0fb1;
    border-radius: 50%;
    animation: spin 1s linear infinite;
  }
  
  @keyframes spin {
    0% {
      transform: translate(-50%, -50%) rotate(0deg);
    }
    100% {
      transform: translate(-50%, -50%) rotate(360deg);
    }
  }
  
  /* No results state */
  .country-list.no-results::after {
    content: "No countries found";
    display: block;
    text-align: center;
    padding: 20px;
    color: #6d6d6d;
    font-style: italic;
  }
  
  /* High contrast mode support */
  @media (prefers-contrast: high) {
    .country-code-display {
      border-width: 2px;
    }
  
    .country-option {
      border-bottom-width: 2px;
    }
  
    .country-search-input {
      border-width: 2px;
    }
  }
  
  /* Reduced motion support */
  @media (prefers-reduced-motion: reduce) {
    .country-code-display,
    .country-code-dropdown,
    .country-option,
    .country-search-input {
      transition: none;
    }
  
    .country-code-dropdown.active {
      animation: none;
    }
  }
  
  
  /* ==========================================
     ENHANCED GALLERY STYLES
     ========================================== */
  
  /* Gallery Section */
  .gallery-section {
      padding: 80px 0;
      background: #f8f9fa;
  }
  
  .section-header {
      margin-bottom: 60px;
  }
  
  .gallery-title {
      color: #19456b;
      margin-bottom: 15px;
      font-weight: 700;
  }
  
  .gallery-subtitle {
      color: #6d6d6d;
      font-size: 18px;
      line-height: 1.6;
      max-width: 600px;
      margin: 0 auto;
  }
  
  /* Gallery Grid Layout */
  .gallery-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(514px, 1fr));
      grid-gap: 30px;
      margin-bottom: 50px;
      justify-items: center;
      align-items: start;
  }
  
  /* Gallery Items */
  .gallery-item {
      position: relative;
      overflow: hidden;
      border-radius: 12px;
      box-shadow: 0 4px 20px rgba(0, 0, 142, 0.1);
      transition: all 0.4s ease-in-out;
      transform: scale(1);
      opacity: 1;
      background: #fff;
      cursor: pointer;
  }
  
  .gallery-item:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 30px rgba(0, 0, 142, 0.2);
  }
  
  .gallery-item--large {
      grid-column: span 2;
      grid-row: span 2;
  }
  
  .gallery-media {
      position: relative;
      width: 100%;
      max-width: 514px;
      height: 630px;
      overflow: hidden;
      margin: 0 auto;
  }
  
  .gallery-item--large .gallery-media {
      max-width: 514px;
      height: 630px;
  }
  
  .gallery-media img {
      width: 100%;
      height: 100%;
      max-width: 514px;
      max-height: 630px;
      object-fit: cover;
      transition: transform 0.4s ease-in-out;
  }
  
  .gallery-item:hover .gallery-media img {
      transform: scale(1.05);
  }
  
  /* Gallery Overlay */
  .gallery-overlay {
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: linear-gradient(
          45deg,
          rgba(0, 0, 142, 0.8) 0%,
          rgba(1, 114, 128, 0.8) 100%
      );
      opacity: 0;
      transition: opacity 0.4s ease-in-out;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      padding: 20px;
  }
  
  .gallery-item:hover .gallery-overlay {
      opacity: 1;
  }
  
  .gallery-content {
      color: #fff;
      transform: translateY(20px);
      transition: transform 0.4s ease-in-out;
  }
  
  .gallery-item:hover .gallery-content {
      transform: translateY(0);
  }
  
  .gallery-content-title {
      font-size: 24px;
      font-weight: 600;
      margin-bottom: 10px;
      font-family: Poppins, sans-serif;
  }
  
  .gallery-content-desc {
      font-size: 16px;
      margin-bottom: 20px;
      opacity: 0.9;
  }
  
  .gallery-zoom-btn {
      background: rgba(255, 255, 255, 0.2);
      border: 2px solid #fff;
      border-radius: 50%;
      width: 50px;
      height: 50px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #fff;
      font-size: 18px;
      cursor: pointer;
      transition: all 0.3s ease-in-out;
      margin: 0 auto;
  }
  
  .gallery-zoom-btn:hover {
      background: #fff;
      color: #00008e;
      transform: scale(1.1);
  }
  
  /* Gallery Filters */
  .gallery-filters {
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
      gap: 15px;
      margin-bottom: 40px;
  }
  
  .gallery-filter-btn {
      background: #fff;
      border: 2px solid #e1e1e1;
      border-radius: 25px;
      padding: 12px 24px;
      font-family: Poppins, sans-serif;
      font-weight: 500;
      font-size: 14px;
      color: #6d6d6d;
      cursor: pointer;
      transition: all 0.3s ease-in-out;
      text-transform: uppercase;
      letter-spacing: 0.5px;
  }
  
  .gallery-filter-btn:hover,
  .gallery-filter-btn.active {
      background: linear-gradient(135deg, #00008e 0%, #017280 100%);
      border-color: #00008e;
      color: #fff;
      transform: translateY(-2px);
      box-shadow: 0 4px 15px rgba(0, 0, 142, 0.3);
  }
  
  /* Load More Button */
  .gallery-load-more {
      text-align: center;
      margin-top: 40px;
  }
  
  .gallery-load-btn {
      position: relative;
      overflow: hidden;
  }
  
  /* Gallery Lightbox */
  .gallery-lightbox {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      z-index: 9999;
      opacity: 0;
      visibility: hidden;
      transition: all 0.4s ease-in-out;
  }
  
  .gallery-lightbox.active {
      opacity: 1;
      visibility: visible;
  }
  
  .gallery-lightbox-overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.9);
      backdrop-filter: blur(5px);
      -webkit-backdrop-filter: blur(5px);
  }
  
  .gallery-lightbox-container {
      position: relative;
      width: 100%;
      height: 100%;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 40px;
  }
  
  .gallery-lightbox-close {
      position: absolute;
      top: 20px;
      right: 20px;
      background: rgba(255, 255, 255, 0.1);
      border: 2px solid #fff;
      border-radius: 50%;
      width: 50px;
      height: 50px;
      color: #fff;
      font-size: 24px;
      font-weight: 300;
      cursor: pointer;
      transition: all 0.3s ease-in-out;
      z-index: 10;
      display: flex;
      align-items: center;
      justify-content: center;
  }
  
  .gallery-lightbox-close:hover {
      background: #fff;
      color: #000;
      transform: rotate(90deg);
  }
  
  .gallery-lightbox-content {
      max-width: 90%;
      max-height: 90%;
      text-align: center;
      position: relative;
  }
  
  .gallery-lightbox-image {
      max-width: 100%;
      max-height: 80vh;
      object-fit: contain;
      border-radius: 8px;
      box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
      transition: opacity 0.3s ease-in-out;
  }
  
  .gallery-lightbox-info {
      margin-top: 20px;
      color: #fff;
  }
  
  .gallery-lightbox-title {
      font-size: 24px;
      font-weight: 600;
      margin-bottom: 15px;
      font-family: Poppins, sans-serif;
  }
  
  .gallery-lightbox-nav {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 20px;
  }
  
  .gallery-nav-btn {
      background: rgba(255, 255, 255, 0.1);
      border: 2px solid #fff;
      border-radius: 50%;
      width: 45px;
      height: 45px;
      color: #fff;
      font-size: 20px;
      cursor: pointer;
      transition: all 0.3s ease-in-out;
      display: flex;
      align-items: center;
      justify-content: center;
  }
  
  .gallery-nav-btn:hover {
      background: #fff;
      color: #000;
      transform: scale(1.1);
  }
  
  .gallery-counter {
      font-family: Poppins, sans-serif;
      font-weight: 500;
      font-size: 16px;
      min-width: 80px;
  }
  
  /* Loading Animation */
  .loader {
      width: 16px;
      height: 16px;
      border: 2px solid transparent;
      border-top: 2px solid currentColor;
      border-radius: 50%;
      animation: spin 1s linear infinite;
  }
  
  @keyframes spin {
      0% { transform: rotate(0deg); }
      100% { transform: rotate(360deg); }
  }
  
  /* Gallery Animation Classes */
  .gallery-item--visible {
      animation: galleryFadeIn 0.6s ease-out;
  }
  
  @keyframes galleryFadeIn {
      from {
          opacity: 0;
          transform: translateY(30px) scale(0.9);
      }
      to {
          opacity: 1;
          transform: translateY(0) scale(1);
      }
  }
  
  /* Responsive Design */
  @media screen and (max-width: 1199.98px) {
      .gallery-grid {
          grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
      }
      
      .gallery-item--large {
          grid-column: span 1;
          grid-row: span 1;
      }
      
      .gallery-media {
          max-width: 450px;
          height: 550px;
      }
      
      .gallery-item--large .gallery-media {
          max-width: 450px;
          height: 550px;
      }
      
      .gallery-media img {
          max-width: 450px;
          max-height: 550px;
      }
  }
  
  @media screen and (max-width: 991.98px) {
      .gallery-section {
          padding: 60px 0;
      }
      
      .section-header {
          margin-bottom: 40px;
      }
      
      .gallery-grid {
          grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
          grid-gap: 15px;
      }
      
      .gallery-media {
          max-width: 380px;
          height: 465px;
      }
      
      .gallery-item--large .gallery-media {
          max-width: 380px;
          height: 465px;
      }
      
      .gallery-media img {
          max-width: 380px;
          max-height: 465px;
      }
      
      .gallery-content-title {
          font-size: 20px;
      }
      
      .gallery-content-desc {
          font-size: 14px;
      }
      
      .gallery-filters {
          gap: 10px;
      }
      
      .gallery-filter-btn {
          padding: 10px 20px;
          font-size: 13px;
      }
      
      .gallery-lightbox-container {
          padding: 20px;
      }
      
      .gallery-lightbox-title {
          font-size: 20px;
      }
  }
  
  @media screen and (max-width: 767.98px) {
      .gallery-grid {
          grid-template-columns: 1fr;
          grid-gap: 12px;
      }
      
      .gallery-media {
          max-width: 320px;
          height: 392px;
      }
      
      .gallery-item--large .gallery-media {
          max-width: 320px;
          height: 392px;
      }
      
      .gallery-media img {
          max-width: 320px;
          max-height: 392px;
      }
      
      .gallery-content-title {
          font-size: 18px;
      }
      
      .gallery-zoom-btn {
          width: 40px;
          height: 40px;
          font-size: 16px;
      }
      
      .gallery-filters {
          flex-direction: column;
          align-items: center;
      }
      
      .gallery-filter-btn {
          min-width: 120px;
      }
      
      .gallery-lightbox-close {
          top: 10px;
          right: 10px;
          width: 40px;
          height: 40px;
          font-size: 20px;
      }
      
      .gallery-nav-btn {
          width: 40px;
          height: 40px;
          font-size: 18px;
      }
      
      .gallery-lightbox-title {
          font-size: 18px;
      }
      
      .gallery-counter {
          font-size: 14px;
      }
  }
  
  @media screen and (max-width: 575.98px) {
      .gallery-section {
          padding: 40px 0;
      }
      
      .section-header {
          margin-bottom: 30px;
      }
      
      .gallery-title {
          font-size: 28px;
      }
      
      .gallery-subtitle {
          font-size: 16px;
      }
      
      .gallery-media {
          max-width: 280px;
          height: 343px;
      }
      
      .gallery-item--large .gallery-media {
          max-width: 280px;
          height: 343px;
      }
      
      .gallery-media img {
          max-width: 280px;
          max-height: 343px;
      }
      
      .gallery-content-title {
          font-size: 16px;
      }
      
      .gallery-content-desc {
          font-size: 13px;
          margin-bottom: 15px;
      }
      
      .gallery-lightbox-container {
          padding: 10px;
      }
      
      .gallery-lightbox-image {
          max-height: 70vh;
      }
  }
  
  /* High Contrast Mode */
  @media (prefers-contrast: high) {
      .gallery-overlay {
          background: rgba(0, 0, 0, 0.8);
      }
      
      .gallery-filter-btn {
          border-width: 3px;
      }
      
      .gallery-zoom-btn,
      .gallery-lightbox-close,
      .gallery-nav-btn {
          border-width: 3px;
      }
  }
  
  /* Reduced Motion */
  @media (prefers-reduced-motion: reduce) {
      .gallery-item,
      .gallery-media img,
      .gallery-overlay,
      .gallery-content,
      .gallery-zoom-btn,
      .gallery-filter-btn,
      .gallery-lightbox,
      .gallery-lightbox-close,
      .gallery-nav-btn,
      .gallery-lightbox-image {
          transition: none;
      }
      
      .gallery-item:hover {
          transform: none;
      }
      
      .gallery-item:hover .gallery-media img {
          transform: none;
      }
      
      .gallery-item--visible {
          animation: none;
      }
      
      .loader {
          animation: none;
          border: 2px solid currentColor;
          border-radius: 50%;
      }
  }
  
  /* Dark Mode Support */
  @media (prefers-color-scheme: dark) {
      .gallery-section {
          background: #1a1a1a;
      }
      
      .gallery-title {
          color: #fff;
      }
      
      .gallery-subtitle {
          color: #ccc;
      }
      
      .gallery-item {
          background: #2d2d2d;
          box-shadow: 0 4px 20px rgba(255, 255, 255, 0.1);
      }
      
      .gallery-filter-btn {
          background: #2d2d2d;
          border-color: #444;
          color: #ccc;
      }
      
      .gallery-filter-btn:hover,
      .gallery-filter-btn.active {
          background: linear-gradient(135deg, #00008e 0%, #017280 100%);
          border-color: #00008e;
          color: #fff;
      }
  }
  
  /* Print Styles */
  @media print {
      .gallery-section {
          background: #fff;
      }
      
      .gallery-overlay,
      .gallery-filters,
      .gallery-load-more,
      .gallery-lightbox {
          display: none !important;
      }
      
      .gallery-grid {
          grid-template-columns: repeat(2, 1fr);
          grid-gap: 10px;
      }
      
      .gallery-item {
          break-inside: avoid;
          box-shadow: none;
          border: 1px solid #ddd;
      }
  }