/*---------------------------------------
  CUSTOM PROPERTIES (VARIABLES)
-----------------------------------------*/
:root {
  --white-color: #ffffff;

  /* Brand Core */
  --primary-color: #1f6f73;
  --primary-gradient-light: #2fa6a2;
  --secondary-color: #8dba2e;
  --secondary-gradient-light: #b6d84a;
  --dark-color: #114e52;

  /* UI */
  --section-bg-color: #f4f9f9;
  --custom-btn-bg-color: #1f6f73;
  --custom-btn-bg-hover-color: #8dba2e;
  --p-color: #4a6b6d;
  --link-hover-color: #b6d84a;

  /* Typography */
  --body-font-family: "DM Sans", sans-serif;
  --h1-font-size: 42px;
  --h2-font-size: 36px;
  --h3-font-size: 28px;
  --h4-font-size: 24px;
  --h5-font-size: 22px;
  --h6-font-size: 20px;
  --p-font-size: 18px;
  --menu-font-size: 16px;
  --btn-font-size: 14px;
  --copyright-font-size: 14px;

  /* Radius */
  --border-radius-large: 100px;
  --border-radius-medium: 20px;
  --border-radius-small: 10px;

  /* Weight */
  --font-weight-normal: 400;
  --font-weight-medium: 500;
  --font-weight-bold: 700;

  /* Logo */
  --kcc-logo-height: 72px;
}

/*---------------------------------------
  BASE
-----------------------------------------*/
html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--white-color);
  font-family: var(--body-font-family);
  overflow-x: hidden;
}

img,
svg,
video,
iframe {
  max-width: 100%;
  height: auto;
}

::selection {
  background-color: var(--primary-color);
  color: var(--white-color);
}

a,
button {
  touch-action: manipulation;
  transition: all 0.3s;
}

a {
  display: inline-block;
  color: var(--secondary-color);
  text-decoration: none;
  overflow-wrap: break-word;
}

a:hover {
  color: var(--link-hover-color);
}

b,
strong {
  font-weight: var(--font-weight-bold);
}

/*---------------------------------------
  TYPOGRAPHY
-----------------------------------------*/
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: var(--font-weight-medium);
  letter-spacing: -1px;
  overflow-wrap: break-word;
}

h1 {
  font-size: var(--h1-font-size);
  font-weight: var(--font-weight-bold);
}

h2 {
  color: var(--dark-color);
  font-size: var(--h2-font-size);
  font-weight: var(--font-weight-bold);
}

h3 {
  color: var(--dark-color);
  font-size: var(--h3-font-size);
}

h4 {
  color: var(--dark-color);
  font-size: var(--h4-font-size);
}

h5 {
  color: var(--dark-color);
  font-size: var(--h5-font-size);
}

h6 {
  color: var(--dark-color);
  font-size: var(--h6-font-size);
}

p,
ul li {
  color: var(--p-color);
  font-size: var(--p-font-size);
  font-weight: var(--font-weight-normal);
  overflow-wrap: break-word;
}

/*---------------------------------------
  GENERIC SECTIONS
-----------------------------------------*/
.section-bg {
  background-color: var(--section-bg-color);
}

.section-padding {
  padding-top: 20px;
  padding-bottom: 20px;
}

.section-overlay {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(39, 48, 83, 0.01) 0%, rgb(39, 48, 83) 100%);
}

/*---------------------------------------
  ANIMATED HEADLINE
-----------------------------------------*/
.cd-words-wrapper {
  display: inline-block;
  position: relative;
  text-align: left;
}

.cd-words-wrapper b {
  color: var(--link-hover-color);
  display: inline-block;
  position: absolute;
  top: 0;
  left: 0;
  white-space: nowrap;
}

.cd-words-wrapper b.is-visible {
  position: relative;
}

.no-js .cd-words-wrapper b {
  opacity: 0;
}

.no-js .cd-words-wrapper b.is-visible {
  opacity: 1;
}

.cd-headline.rotate-1 .cd-words-wrapper {
  perspective: 300px;
}

.cd-headline.rotate-1 b {
  opacity: 0;
  transform: rotateX(180deg);
  transform-origin: 50% 100%;
}

.cd-headline.rotate-1 b.is-visible {
  opacity: 1;
  transform: rotateX(0deg);
  animation: cd-rotate-1-in 1.2s;
}

.cd-headline.rotate-1 b.is-hidden {
  transform: rotateX(180deg);
  animation: cd-rotate-1-out 1.2s;
}

@keyframes cd-rotate-1-in {
  0% {
    transform: rotateX(180deg);
    opacity: 0;
  }
  35% {
    transform: rotateX(120deg);
    opacity: 0;
  }
  65% {
    opacity: 0;
  }
  100% {
    transform: rotateX(360deg);
    opacity: 1;
  }
}

@keyframes cd-rotate-1-out {
  0% {
    transform: rotateX(0deg);
    opacity: 1;
  }
  35% {
    transform: rotateX(-40deg);
    opacity: 1;
  }
  65% {
    opacity: 0;
  }
  100% {
    transform: rotateX(180deg);
    opacity: 0;
  }
}

/*---------------------------------------
  BUTTONS
-----------------------------------------*/
.custom-btn {
  margin-top: 50px;
  padding: 10px 20px;
  background: var(--custom-btn-bg-color);
  border: 2px solid transparent;
  border-radius: var(--border-radius-large);
  color: var(--white-color);
  font-size: var(--btn-font-size);
  font-weight: var(--font-weight-bold);
  line-height: normal;
}

.custom-btn:hover {
  background: var(--custom-btn-bg-hover-color);
  color: var(--white-color);
}

.custom-border-btn {
  background: transparent;
  border: 2px solid var(--custom-btn-bg-color);
  color: var(--custom-btn-bg-color);
}

.custom-border-btn:hover {
  background: var(--custom-btn-bg-color);
  border-color: transparent;
  color: var(--white-color);
}

.custom-btn-bg-white {
  border-color: var(--white-color);
  color: var(--white-color);
}

.custom-btn-group .link {
  color: var(--white-color);
  font-weight: var(--font-weight-medium);
}

.custom-btn-group .link:hover {
  color: var(--link-hover-color);
}

/*---------------------------------------
  OFFCANVAS / NAVBAR
-----------------------------------------*/
.offcanvas {
  background-color: var(--primary-color);
  padding: 30px;
}

.offcanvas.offcanvas-end {
  border-left: 0;
}

.offcanvas-header .btn-close:hover {
  transform: rotate(180deg);
}

.offcanvas svg {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
}

.sticky-wrapper {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
}

.sticky-wrapper.is-sticky .navbar {
  background-color: rgba(61, 91, 78, 0.425);
}

.navbar {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 999;
  width: 100%;
  background: transparent;
  box-shadow: none !important;
  overflow: visible !important;
}

.navbar .container {
  min-height: 104px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: nowrap !important;
  overflow: visible !important;
}

.navbar-brand,
.navbar-brand:hover {
  display: flex;
  align-items: center;
  justify-content: flex-start !important;
  min-width: 0 !important;
  min-height: unset !important;
  max-width: calc(100% - 90px) !important;
  flex: 0 1 auto !important;
  flex-shrink: 1;
  width: auto !important;
  height: auto !important;
  padding: 0 !important;
  margin: 0 !important;
  color: var(--white-color);
  font-size: var(--h4-font-size);
  font-weight: var(--font-weight-bold);
  overflow: visible !important;
}

.navbar-brand-image {
  display: block !important;
  width: auto !important;
  height: auto !important;
  max-width: min(100%, 320px) !important;
  max-height: var(--kcc-logo-height) !important;
  object-fit: contain !important;
  object-position: left center !important;
  margin-left: 0;
}

.navbar-brand-text {
  position: relative;
  bottom: 5px;
  margin-left: 10px;
  line-height: normal;
}

.navbar-brand-text small {
  display: block;
  font-size: 10px;
  line-height: 1;
  text-transform: uppercase;
}

.navbar-expand-lg .navbar-nav .nav-link {
  margin: 10px;
  padding: 10px;
  border-radius: var(--border-radius-large);
}

.navbar-nav .nav-link {
  display: inline-block;
  padding-top: 15px;
  padding-bottom: 15px;
  color: var(--white-color);
  font-size: var(--menu-font-size);
  font-weight: var(--font-weight-medium);
}

.navbar-nav .nav-link.active,
.navbar-nav .nav-link:hover {
  color: var(--link-hover-color);
}

.navbar .dropdown-menu {
  display: inherit;
  min-width: 9rem;
  margin-top: 20px;
  padding: 13px 0 10px;
  background: var(--white-color);
  border: 0;
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175);
  opacity: 0;
  pointer-events: none;
}

.navbar .dropdown-menu::before {
  content: "";
  position: absolute;
  top: -10px;
  left: 10px;
  width: 0;
  height: 0;
  border-right: 20px solid transparent;
  border-bottom: 15px solid var(--white-color);
  border-left: 20px solid transparent;
}

.navbar .dropdown-item {
  display: inline-block;
  position: relative;
  color: var(--p-color);
  font-size: var(--menu-font-size);
  font-weight: var(--font-weight-medium);
}

.navbar .dropdown-item.active,
.navbar .dropdown-item:active,
.navbar .dropdown-item:focus,
.navbar .dropdown-item:hover {
  background: transparent;
  color: var(--link-hover-color);
}

.navbar .dropdown-toggle::after {
  content: "\f282";
  position: relative;
  left: 2px;
  display: inline-block;
  border: 0;
  font-family: bootstrap-icons !important;
  font-size: var(--copyright-font-size);
  font-style: normal;
  font-weight: normal !important;
  line-height: 1;
  vertical-align: -0.125em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

@media screen and (min-width: 992px) {
  .navbar .dropdown:hover .dropdown-menu {
    margin-top: 0;
    opacity: 1;
    pointer-events: auto;
  }
}

.navbar-toggler {
  width: 30px;
  height: 35px;
  margin: 0;
  padding: 0;
  border: 0;
  cursor: pointer;
  outline: none;
}

.navbar-toggler:focus {
  box-shadow: none;
  outline: none;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
  background: transparent;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::before,
.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::after {
  top: 0;
  transition: top 300ms 50ms ease, transform 300ms 350ms ease;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::before {
  transform: rotate(45deg);
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::after {
  transform: rotate(-45deg);
}

.navbar-toggler .navbar-toggler-icon {
  display: block;
  position: relative;
  width: 30px;
  height: 2px;
  background: var(--white-color);
  transition: background 10ms 300ms ease;
}

.navbar-toggler .navbar-toggler-icon::before,
.navbar-toggler .navbar-toggler-icon::after {
  content: "";
  position: absolute;
  right: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--white-color);
  transition: top 300ms 350ms ease, transform 300ms 50ms ease;
}

.navbar-toggler .navbar-toggler-icon::before {
  top: -8px;
}

.navbar-toggler .navbar-toggler-icon::after {
  top: 8px;
}

.navbar-collapse {
  min-width: 0 !important;
}

/*---------------------------------------
  HERO
-----------------------------------------*/
.hero-section {
  position: relative;
  height: 100vh;
  min-height: 670px;
  margin-bottom: -90px;
  padding-top: 100px;
  padding-bottom: 100px;
  background-image: url("../images/budda.jpg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.hero-50 {
  height: auto;
  min-height: 540px;
  margin-bottom: -100px;
}

.hero-50 .container + svg {
  transform: rotate(180deg);
}

.hero-section .ratio {
  overflow: hidden;
  border-radius: var(--border-radius-medium);
}

.hero-section svg {
  position: absolute;
  right: 0;
  left: 0;
}

.hero-section > svg {
  top: 0;
}

.hero-section .container + svg {
  top: auto;
  bottom: -1px;
}

.hero-section .row {
  position: relative;
  z-index: 22;
}

/*---------------------------------------
  BACKGROUND IMAGE SECTION
-----------------------------------------*/
.section-bg-image {
  position: relative;
  margin-bottom: -70px;
  background-image: url("../images/frederik-rosar-NDSZcCfnsbY-unsplash.jpg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.section-bg-image .container + svg {
  position: relative;
  bottom: -1px;
  transform: rotate(180deg);
}

.section-bg-image-block {
  padding: 50px;
  background-color: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(209, 213, 219, 0.3);
  border-radius: var(--border-radius-medium);
  backdrop-filter: blur(5px) saturate(180%);
  -webkit-backdrop-filter: blur(5px) saturate(180%);
}

.section-bg-image-block .input-group {
  padding: 10px 15px;
  background-color: var(--white-color);
  border-radius: var(--border-radius-large);
}

.section-bg-image-block .input-group-text {
  background-color: transparent;
  border: 0;
}

.section-bg-image-block input[type="email"] {
  margin-bottom: 0;
  padding-left: 0;
  border: 0;
  box-shadow: none;
}

.section-bg-image-block button[type="submit"] {
  max-width: 150px;
  color: var(--white-color);
  background-color: var(--primary-color);
  border: 0;
  border-radius: var(--border-radius-large) !important;
}

/*---------------------------------------
  ABOUT SECTION
-----------------------------------------*/
.about-section {
  padding-bottom: 70px;
}

.member-block-image-wrap {
  position: relative;
  overflow: hidden;
  border-radius: var(--border-radius-medium);
}

.member-block-image-wrap:hover .member-block-image {
  transform: scale(1.2);
}

.member-block-image-wrap:hover .social-icon {
  opacity: 1;
}

.member-block-image-wrap .social-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  width: auto;
  padding: 15px 20px;
  background-color: var(--white-color);
  border-radius: var(--border-radius-large);
  opacity: 0;
  transform: translate(-50%, -50%);
  transition: all 0.5s;
}

.member-block-image {
  transition: all 0.3s;
}

.member-block-info {
  padding: 10px;
}

.member-block-info h4,
.member-block-info p {
  margin-bottom: 0;
}

/*---------------------------------------
  CUSTOM BLOCK
-----------------------------------------*/
.custom-block {
  position: relative;
  overflow: hidden;
  padding: 30px 20px;
  border-radius: var(--border-radius-medium);
}

.custom-block-bg {
  background: var(--white-color);
}

.custom-block-date-wrap {
  padding: 20px 30px;
  text-align: center;
  background-color: var(--primary-color);
  border-radius: var(--border-radius-medium);
}

.custom-block-date {
  font-size: var(--h1-font-size);
}

.custom-block-image-wrap {
  position: relative;
  overflow: hidden;
  border-radius: var(--border-radius-medium);
}

.custom-block-image-wrap:hover .custom-block-image {
  transform: scale(1.2);
}

.custom-block-image-wrap:hover .custom-block-icon {
  opacity: 1;
}

.custom-block-image {
  transition: all 0.3s;
}

.custom-block-image-wrap .custom-block-date-wrap,
.custom-block-image-wrap .custom-btn-wrap {
  position: absolute;
  bottom: 0;
}

.custom-block-image-wrap .custom-block-date-wrap {
  left: 0;
  width: 50%;
  padding: 12.3px 20px;
  border-radius: 0;
}

.custom-block-image-wrap .custom-btn-wrap {
  right: 0;
  width: 50%;
}

.custom-block-image-wrap .custom-btn {
  display: block;
  padding: 15px 20px;
  border-radius: 0;
}

.custom-block-info {
  padding-top: 10px;
}

.custom-block-image-wrap + .custom-block-info {
  padding-top: 20px;
}

.custom-block-span {
  min-width: 110px;
  margin-right: 10px;
  color: var(--secondary-color);
  font-weight: var(--font-weight-bold);
}

.custom-block-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 60px;
  height: 60px;
  color: var(--white-color);
  background: var(--custom-btn-bg-color);
  border-radius: var(--border-radius-large);
  font-size: var(--h3-font-size);
  line-height: 60px;
  text-align: center;
  opacity: 0;
  transform: translate(-50%, -50%);
  transition: all 0.5s;
}

.custom-block-icon:hover {
  color: var(--white-color);
  background: var(--custom-btn-bg-hover-color);
}

/*---------------------------------------
  EVENTS
-----------------------------------------*/
.events-section.section-bg .container > .row {
  margin-right: 5px;
  margin-left: 5px;
}

.events-section.section-bg .container > .row .row {
  margin: auto;
}

.events-listing-section {
  margin-bottom: 100px;
}

.events-detail-section .custom-block-info {
  padding: 40px 60px;
}

.events-detail-info {
  padding: 50px 25px;
  background-color: var(--section-bg-color);
  border-radius: var(--border-radius-medium);
}

.events-title {
  font-size: var(--h3-font-size);
  font-weight: var(--font-weight-medium);
}

/*---------------------------------------
  MEMBERSHIP
-----------------------------------------*/
.membership-section .container {
  position: relative;
  z-index: 2;
}

.table-responsive {
  border-radius: var(--border-radius-medium);
}

.table-responsive tbody,
.table-responsive td,
.table-responsive tfoot,
.table-responsive th,
.table-responsive thead,
.table-responsive tr {
  border: 0;
}

.table-responsive thead tr {
  color: var(--white-color);
  background-color: var(--secondary-color);
}

.table-responsive thead th {
  padding: 22px 16px !important;
}

.table-responsive tbody tr:nth-child(even) {
  background-color: var(--section-bg-color);
}

.table > :not(caption) > * > * {
  padding: 18px 16px;
}

.table-responsive .bi-check-circle-fill {
  color: var(--primary-color);
}

.table-responsive .bi-x-circle-fill {
  color: var(--custom-btn-bg-hover-color);
}

.membership-form {
  padding: 35px;
  background-color: var(--secondary-color);
  border-radius: var(--border-radius-medium);
}

.membership-form .form-floating > textarea {
  height: 100px;
  border-radius: var(--border-radius-medium);
}

/*---------------------------------------
  BANNER
-----------------------------------------*/
.banner-section {
  min-height: 500px;
  padding: 10px 0;
  background-image:
    linear-gradient(rgba(61, 64, 91, 0.45), rgba(61, 64, 91, 0.45)),
    url("../images/ABC-Karelia.jpg");
  background-repeat: no-repeat;
  background-position: center 10%;
  background-size: cover;
}

.banner-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-height: 10px;
  overflow: hidden;
}

.banner-wrapper img {
  width: 100%;
  object-fit: cover;
}

/*---------------------------------------
  CONTACT
-----------------------------------------*/
.contact-form .form-floating > textarea {
  height: 200px;
  border-radius: var(--border-radius-medium);
}

.contact-info {
  position: relative;
}

.contact-info-item {
  position: absolute;
  top: 100%;
  left: 100%;
  overflow: hidden;
  text-align: left;
  background: var(--secondary-color);
  border-radius: var(--border-radius-medium);
  transform: translate(-50%, -50%);
}

.contact-info-body {
  padding: 10px 20px;
}

.contact-info-body strong,
.contact-info-item a {
  color: var(--white-color);
}

.contact-info-footer {
  padding: 10px 20px;
  background-color: var(--custom-btn-bg-hover-color);
  transition: all 0.3s;
}

.contact-info-footer:hover {
  background-color: var(--custom-btn-bg-color);
}

.contact-info-footer a {
  display: block;
  font-weight: var(--font-weight-bold);
}

.worldmap-image {
  margin-top: 5px;
  margin-left: 100px;
}

/*---------------------------------------
  FOOTER
-----------------------------------------*/
.site-footer {
  position: relative;
  padding-bottom: 200px;
}

.site-footer .container {
  position: relative;
  z-index: 2;
}

.site-footer svg {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  pointer-events: none;
}

.site-footer-title {
  color: var(--secondary-color);
}

.site-footer p span {
  margin-right: auto;
  font-weight: var(--font-weight-medium);
}

/*---------------------------------------
  FORMS
-----------------------------------------*/
.custom-form .form-control {
  margin-bottom: 20px;
  padding: 10px 10px 10px 20px;
  color: var(--p-color);
  border-width: 2px;
  border-radius: var(--border-radius-large);
  box-shadow: none;
  outline: none;
}

.custom-form .form-control:focus,
.custom-form .form-control:hover {
  border-color: var(--dark-color);
}

.form-floating > label {
  padding-left: 20px;
}

.custom-form button[type="submit"] {
  margin-bottom: 0;
  padding-left: 10px;
  color: var(--white-color);
  background: var(--custom-btn-bg-color);
  border: none;
  border-radius: var(--border-radius-large);
  font-size: var(--p-font-size);
  font-weight: var(--font-weight-medium);
  transition: all 0.3s;
}

.custom-form button[type="submit"]:hover,
.custom-form button[type="submit"]:focus {
  background: var(--custom-btn-bg-hover-color);
  border-color: transparent;
}

.header-form {
  position: relative;
}

.header-form .form-control {
  padding-left: 42px;
}

.header-form-icon {
  position: absolute;
  top: 0;
  width: 24px;
  margin: 12px 0 0 15px;
}

/*---------------------------------------
  SOCIAL ICONS
-----------------------------------------*/
.social-icon {
  margin: 0;
  padding: 0;
}

.social-icon-item {
  display: inline-block;
  vertical-align: top;
  list-style: none;
}

.social-icon-link {
  display: block;
  width: 35px;
  height: 35px;
  margin-right: 5px;
  color: var(--white-color);
  background: var(--secondary-color);
  border-radius: var(--border-radius-large);
  font-size: var(--btn-font-size);
  line-height: 36px;
  text-align: center;
  transition: background 0.2s, color 0.2s;
}

.social-icon-link:hover {
  color: var(--white-color);
  background: var(--primary-color);
}

/*---------------------------------------
  PRIVACY POLICY
-----------------------------------------*/
.privacy-policy-hero {
  height: auto;
  min-height: 300px;
  padding-top: 40px;
  padding-bottom: 40px;
}

/*---------------------------------------
  NOTICE PRIVACY PRACTICE
-----------------------------------------*/
a[href="notice-privacy-practice.html"] {
  display: none !important;
}

/*---------------------------------------
  RESPONSIVE
-----------------------------------------*/
@media screen and (max-width: 1199px) {
  .worldmap-image {
    margin-left: 40px;
  }
}

@media screen and (max-width: 991px) {
  h1 {
    font-size: 36px;
  }

  h2 {
    font-size: 28px;
  }

  h3 {
    font-size: 22px;
  }

  h4 {
    font-size: 20px;
  }

  h5 {
    font-size: 18px;
  }

  h6 {
    font-size: 16px;
  }

  p,
  ul li {
    font-size: 16px;
  }

  .section-padding {
    padding-top: 32px;
    padding-bottom: 32px;
  }

  .navbar {
    background-color: var(--secondary-color);
  }

  .navbar .container {
    min-height: 92px !important;
    align-items: center !important;
  }

  .navbar-brand,
  .navbar-brand:hover {
    max-width: calc(100% - 64px) !important;
    height: auto;
  }

  .navbar-brand-image {
    max-height: 56px !important;
    max-width: min(100%, 260px) !important;
    width: auto !important;
    height: auto !important;
  }

  .navbar-toggler {
    margin-left: auto;
  }

  .navbar-collapse {
    padding-top: 10px;
  }

  .navbar-nav.ms-lg-auto {
    align-items: stretch;
  }

  .navbar-nav.ms-lg-auto > .nav-item,
  .navbar-nav.ms-lg-auto > .nav-item:last-child {
    flex: 1 1 auto;
    justify-content: flex-start;
    width: 100%;
    min-width: 0;
  }

  .navbar-nav .nav-link {
    text-align: left;
    white-space: normal;
  }

  .navbar-nav .dropdown-menu {
    position: relative;
    left: 10px;
    max-width: 155px;
    margin-top: 15px;
    margin-bottom: 15px;
    opacity: 1;
    pointer-events: auto;
  }

  .navbar-expand-lg .navbar-nav {
    padding-top: 15px;
    padding-bottom: 10px;
    row-gap: 4px;
  }

  .navbar-expand-lg .navbar-nav .nav-link {
    margin: 4px 0;
    padding: 10px 0;
  }

  .hero-section {
    top: 82px;
    height: auto;
    min-height: calc(100vh - 82px);
    margin-bottom: 82px;
    padding-top: 72px;
    padding-bottom: 72px;
    background-position: center center;
  }

  .hero-50 {
    min-height: 420px;
  }

  .hero-section .col-lg-6.col-12.mb-5.mb-lg-0,
  .hero-section h2,
  .hero-section h1,
  .hero-section .custom-btn-group {
    max-width: 100%;
  }

  .hero-section .cd-headline,
  .hero-section h2,
  .hero-section .custom-btn-group {
    min-height: 0;
  }

  .custom-btn {
    margin-top: 18px;
  }

  .events-listing-section {
    margin-bottom: 50px;
  }

  .events-detail-section .custom-block-info {
    padding: 32px;
  }

  .events-detail-info {
    padding: 30px 20px;
  }

  .custom-block {
    padding: 24px 18px;
  }

  .contact-info-item {
    width: 60%;
  }

  .events-detail-section .contact-info-item {
    width: 70%;
  }

  .section-bg-image {
    margin-bottom: 0;
  }

  .section-bg-image-block {
    padding: 30px;
  }

  .contact-visual {
    justify-content: center;
    min-height: auto;
  }

  .worldmap-image {
    margin-left: 0;
    max-width: 100%;
  }

  .contact-info-card {
    position: static;
    width: 100%;
    margin-top: 24px;
    padding: 32px 24px;
    transform: none;
  }

  .site-footer {
    padding-top: 20px;
    padding-bottom: 120px;
  }
}

@media screen and (max-width: 767px) {
  h1 {
    font-size: 32px;
    line-height: 1.15;
  }

  h2 {
    font-size: 26px;
    line-height: 1.2;
  }

  h3 {
    font-size: 21px;
  }

  .section-padding {
    padding-top: 28px;
    padding-bottom: 28px;
  }

  .hero-section {
    min-height: auto;
    padding-top: 56px;
    padding-bottom: 56px;
    margin-bottom: 64px;
  }

  .hero-section .row > [class*="col-"] {
    text-align: left;
  }

  .custom-btn-group {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    width: 100%;
  }

  .custom-btn,
  .custom-btn-group .custom-btn,
  .custom-btn-group a.btn {
    width: 100%;
    margin-top: 0;
    text-align: center;
  }

  .banner-section {
    min-height: 320px;
    background-position: center center;
  }

  .about-section {
    padding-bottom: 28px;
  }

  .custom-block {
    padding: 20px 16px;
  }

  .custom-block-image-wrap .custom-block-date-wrap,
  .custom-block-image-wrap .custom-btn-wrap {
    position: static;
    width: 100%;
  }

  .custom-block-image-wrap .custom-block-date-wrap {
    border-radius: 0 0 var(--border-radius-medium) var(--border-radius-medium);
  }

  .custom-block-image-wrap .custom-btn {
    border-radius: 0;
  }

  .section-bg-image-block {
    padding: 22px 18px;
  }

  .section-bg-image-block .input-group {
    flex-direction: column;
    gap: 10px;
    border-radius: 20px;
  }

  .section-bg-image-block button[type="submit"] {
    max-width: 100%;
    width: 100%;
  }

  .contact-form .form-floating > textarea {
    height: 160px;
  }

  .contact-info-item {
    position: static;
    width: 100%;
    transform: none;
    margin-top: 20px;
  }

  .contact-info-body {
    padding: 18px 20px;
  }

  .site-footer {
    padding-bottom: 90px;
  }

  .site-footer .col-12 {
    margin-bottom: 18px;
  }
}

@media screen and (max-width: 575px) {
  h1 {
    font-size: 28px;
  }

  h2 {
    font-size: 24px;
  }

  h3 {
    font-size: 20px;
  }

  h4 {
    font-size: 18px;
  }

  h5 {
    font-size: 17px;
  }

  p,
  ul li {
    font-size: 15px;
    line-height: 1.6;
  }

  .navbar .container {
    min-height: 80px !important;
  }

  .navbar-brand,
  .navbar-brand:hover {
    max-width: calc(100% - 58px) !important;
  }

  .navbar-brand-image {
    max-height: 48px !important;
    max-width: min(100%, 210px) !important;
  }

  .hero-section {
    padding-top: 44px;
    padding-bottom: 44px;
  }

  .hero-50 {
    min-height: 360px;
  }

  .banner-section {
    min-height: 260px;
  }

  .custom-block {
    padding: 18px 14px;
    border-radius: 16px;
  }

  .custom-form .form-control {
    padding: 12px 12px 12px 18px;
    font-size: 16px;
  }

  .form-floating > label {
    padding-left: 18px;
  }

  .custom-form button[type="submit"] {
    min-height: 52px;
    font-size: 16px;
  }

  .section-bg-image-block {
    padding: 18px 14px;
  }

  .membership-form {
    padding: 22px 16px;
  }

  .site-footer {
    padding-bottom: 72px;
  }
}

@media screen and (max-width: 480px) {
  .navbar-brand {
    font-size: var(--p-font-size);
  }

  .navbar-brand-icon {
    width: 30px;
    height: 30px;
  }

  .navbar-brand-icon::after {
    top: 5px;
  }

  .contact-info-item {
    width: 100%;
  }

  .table > :not(caption) > * > * {
    padding: 14px 12px;
  }
}

@media screen and (max-width: 420px) {
  .navbar-brand-image {
    max-height: 42px !important;
    max-width: min(100%, 180px) !important;
  }
}

@media screen and (max-width: 360px) {
  .custom-btn {
    padding: 10px 14px;
    font-size: 12px;
  }

  h1 {
    font-size: 25px;
  }

  h2 {
    font-size: 22px;
  }

  .custom-form .form-control,
  .custom-form button[type="submit"] {
    font-size: 15px;
  }
}