@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

::selection {
  background-color: #777777db;
  color: #fff;
}

::-moz-selection {
  background-color: #777777db;
  color: #fff;
}

:root {
  --theme-color: #ef4222;
}

.bg-light {
  font-family: "Poppins", sans-serif !important;
  background-color: #fff !important;
}

.header-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 2.5rem 1.5rem;
  background-color: #fff;
}

.header-wrap-left {
  width: 15%;
}

.header-wrap-right {
  width: 20%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.header-wrap-center {
  width: 65%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.header-wrap-logo, .header-wrap-logo > a {
  display: flex;
  width: 100%;
}

.header-wrap-logo > a > img {
  width: 100%;
}

.header-wrap-menu #cssmenu > ul {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
  gap: 3rem;
}

.header-wrap-menu #cssmenu > ul > li > a {
  color: #000;
  text-decoration: none;
}

.header-wrap-menu #cssmenu > ul > li > a > span {
  font-size: 17px;
  font-weight: 500;
  transition: .2s ease-in-out;
  cursor: pointer;
}

.header-wrap-menu #cssmenu > ul > li > a:hover > span {
  color: var(--theme-color);
}

.header-wrap-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 130px;
  background-color: var(--theme-color);
}

.header-wrap-btn > a {
  padding: 0.9rem;
  color: #fff;
  font-weight: 500;
  font-size: 17px;
  text-decoration: none;
}

.caption-wrap {
  bottom: 50px !important;
  height: fit-content;
  width: 150px !important;
  min-width: 150px !important;
  background-color: transparent !important;
  left: 50% !important;
  transform: translateX(-50%);
  margin: 0 !important;
}

.caption-wrap a {
  border-radius: 0;
  width: 100%;
  padding: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 19px;
  font-weight: 500;
  background-color: var(--theme-color) !important;
  text-decoration: none;
}

.caption-wrap .caption {
  padding: 0 !important;
}

.slides li:focus-within {
  outline: none !important;
}

.event-contain {
  padding: 5rem 3rem;
}

.home-content-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 1.5rem;
  margin-bottom: 2rem;
  border-bottom: 2px solid #000;
}

.home-content-title > span {
  font-size: 60px;
  color: #000;
  font-weight: 500;
}

.home-content-allmore > a {
  font-size: 20px;
  color: #000;
  display: flex;
  align-items: center;
  transition: .2s ease-in-out;
  text-decoration: none;
}

.home-content-allmore > a > i {
  padding-left: 1rem;
  font-size: 26px;
}

.home-content-allmore > a:hover {
  transform: scale(1.1);
}


.event-contain-list {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}

.event-contain-content {
  position: relative;
  width: calc(33.33% - (2rem * 2) / 3);
  display: flex;
}

.event-contain-content > a {
  display: flex;
  position: relative;
  width: 100%;
  overflow: hidden;
}

.event-contain-img, .event-contain-img > img {
  display: flex;
  width: 100%;
}

.event-contain-desc {
  position: absolute;
  width: calc(100% - 35px);
  bottom: -2rem;
  display: flex;
  flex-direction: column;
  gap: .5rem;
  transition: .2s ease-in-out;
  left: 35px;
  z-index: 1;
}

.event-contain-name > span {
  font-size: 25px;
  color: #fff;
  font-weight: 500;
}

.event-contain-date > span {
  font-size: 14px;
  font-weight: 300;
  color: #fff;
}

.event-contain-date {
  margin-bottom: 1.5rem;
}

.event-contain-content:hover .event-contain-desc {
  bottom: 1rem;
}

.event-contain-readmore > span {
  font-size: 14px;
  font-weight: bold;
  color: #fff;
  display: flex;
  align-items: center;
}

.event-contain-readmore > span > i {
  font-size: 25px;
  padding-left: 1rem;
}

.event-contain-content > a::before {
  content: "";
  position: absolute;
  z-index: 1;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0)), to(rgb(0, 0, 0)));
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgb(0, 0, 0) 100%);
  opacity: 0.9;
}

.experience-blog-contain {
  padding: 5rem 3rem;
}

.event-contain-img > img {
  transition: .35s ease-in-out;
}

.event-contain-content:hover .event-contain-img > img {
  transform: scale(1.1);
}

.experience-blog-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 28px;
  max-width: 1320px;
  margin: 0 auto;
  padding: 20px 0;
}

.experience-blog-content {
  position: relative;
  overflow: hidden;
  min-height: 720px;
  background: #000;
}

.experience-blog-content a {
  display: block;
  position: relative;
  width: 100%;
  height: 100%;
  text-decoration: none;
}

.experience-blog-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.experience-blog-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

/* alttaki koyu geçiş efekti */
.experience-blog-content a::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
      to top,
      rgba(0, 0, 0, 0.78) 0%,
      rgba(0, 0, 0, 0.42) 28%,
      rgba(0, 0, 0, 0.08) 55%,
      rgba(0, 0, 0, 0) 100%
  );
  z-index: 1;
  pointer-events: none;
}

.experience-blog-desc {
  position: absolute;
  left: 50%;
  bottom: 42px;
  transform: translateX(-50%);
  width: 100%;
  padding: 0 24px;
  text-align: center;
  z-index: 2;
  box-sizing: border-box;
}

.experience-blog-name span {
  display: block;
  color: #fff;
  font-size: 22px;
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: -0.3px;
  text-transform: none;
}

.experience-blog-content:hover img {
  transform: scale(1.05);
}

/* Tablet */
@media (max-width: 1199px) {
  .experience-blog-list {
      grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .experience-blog-content {
      min-height: 620px;
  }
}

/* Mobil */
@media (max-width: 767px) {
  .experience-blog-list {
      grid-template-columns: 1fr;
      gap: 20px;
  }

  .experience-blog-content {
      min-height: 520px;
  }

  .experience-blog-name span {
      font-size: 18px;
  }

  .experience-blog-name span::after {
      font-size: 11px;
      letter-spacing: 1.5px;
  }
}

.marquee {
  overflow: hidden;
  width: 100%;
  background: #fff;
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: scroll 20s linear infinite;
}

.marquee-track span {
  font-size: 120px;
  font-weight: 600;
  color: #000;
  white-space: nowrap;
  margin-right: 60px;
}

@keyframes scroll {
  0% {
      transform: translateX(0);
  }
  100% {
      transform: translateX(-50%);
  }
}

.custom-footer {
  position: relative;
  background: #fff;
  padding: 70px 20px 40px;
  border-top: 1px solid #000;
  margin-top: 3rem;
}

.custom-footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  text-align: center;
}

.custom-footer-logo {
  margin-bottom: 45px;
}

.custom-footer-logo img {
  max-width: 180px;
  width: 100%;
  height: auto;
  display: inline-block;
}

.custom-footer-menu {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.custom-footer-menu a {
  font-size: 18px;
  font-weight: 400;
  color: #000;
  text-decoration: none;
  transition: all 0.3s ease;
}

.custom-footer-menu a:hover {
  color: var(--theme-color);
}

.custom-footer-social {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 18px;
  margin-bottom: 55px;
}

.custom-footer-social a {
  width: 48px;
  height: 48px;
  border: 1px solid #d7d7d7;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000;
  text-decoration: none;
  font-size: 18px;
  transition: all 0.3s ease;
  background: transparent;
}

.custom-footer-social a:hover {
  background: #000;
  color: #fff;
  border-color: #000;
}

.custom-footer-line {
  width: 100%;
  height: 1px;
  background: #d8d8d8;
  margin-bottom: 28px;
}

.custom-footer-bottom p {
  margin: 0;
  font-size: 15px;
  color: #000;
  font-weight: 400;
}

.custom-footer-bottom p strong,
.custom-footer-bottom p b {
  color: #000;
  font-weight: 500;
}

.custom-footer-top {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 42px;
  height: 42px;
  background: #000;
  color: #fff;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  line-height: 1;
  z-index: 999;
  transition: all 0.3s ease;
  text-decoration: none;
}

.custom-footer-top:hover {
  transform: translateY(-3px);
}

.custom-footer-top:hover,
.custom-footer-top:hover > i {
  color: #fff;
}

/* Tablet */
@media (max-width: 991px) {
  .custom-footer {
      padding: 55px 20px 35px;
  }

  .custom-footer-logo {
      margin-bottom: 35px;
  }

  .custom-footer-menu {
      gap: 24px;
      margin-bottom: 30px;
  }

  .custom-footer-menu a {
      font-size: 18px;
  }

  .custom-footer-bottom p {
      font-size: 16px;
  }
}

/* Mobil */
@media (max-width: 767px) {
  .custom-footer {
      padding: 45px 15px 30px;
  }

  .custom-footer-logo img {
      max-width: 140px;
  }

  .custom-footer-menu {
      flex-direction: column;
      gap: 14px;
      margin-bottom: 28px;
  }

  .custom-footer-menu a {
      font-size: 17px;
  }

  .custom-footer-social {
      gap: 12px;
      margin-bottom: 40px;
  }

  .custom-footer-social a {
      width: 42px;
      height: 42px;
      font-size: 16px;
  }

  .custom-footer-bottom p {
      font-size: 15px;
      line-height: 1.5;
  }

  .custom-footer-top {
      right: 15px;
      bottom: 15px;
      width: 38px;
      height: 38px;
      font-size: 22px;
  }
}


.events-page {
  max-width: 1280px;
  margin: 0 auto;
  padding: 28px 24px 80px;
}

/* top search area */
.events-toolbar {
  display: grid;
  grid-template-columns: 1fr auto auto;
  border: 1px solid #d9d9d9;
  background: #fff;
  margin-bottom: 68px;
  overflow: hidden;
  padding: 0.5rem 0;
  align-items: center;
}

.events-search {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 18px;
  min-height: 60px;
}

.events-search svg {
  width: 18px;
  height: 18px;
  fill: #9b9b9b;
  flex-shrink: 0;
}

.events-search input {
  width: 100%;
  border: none;
  outline: none;
  background: transparent;
  font-size: 18px;
  color: #444;
  font-family: inherit;
}

.events-search input::placeholder {
  color: #9d9d9d;
}

.events-search-btn {
  border: none;
  background: #f04b23;
  color: #fff;
  font-family: inherit;
  font-size: 18px;
  font-weight: 600;
  padding: 0 34px;
  cursor: pointer;
  transition: 0.3s ease;
  height: 60px;
}

.events-search-btn:hover {
  background: #da411d;
}

.events-view-tab {
  min-width: 96px;
  border: none;
  background: transparent;
  font-family: inherit;
  font-size: 18px;
  font-weight: 600;
  color: #111;
  position: relative;
  cursor: pointer;
}

.events-view-tab.active::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 44px;
  height: 3px;
  background: #f04b23;
}

/* month title */
.events-month-row {
  display: grid;
  grid-template-columns: 140px 1fr;
  align-items: center;
  gap: 0;
  margin-bottom: 38px;
}

.events-month-title {
  font-size: 20px;
  font-weight: 700;
  color: #111;
}

.events-month-line {
  height: 1px;
  background: #d9d9d9;
  width: 100%;
}

/* event item */
.event-card {
  display: grid;
  grid-template-columns: 90px minmax(0, 1fr) 385px;
  gap: 34px;
  align-items: start;
  margin-bottom: 56px;
}

.event-date {
  text-align: center;
}

.event-date .day-short {
  display: block;
  font-size: 25px;
  font-weight: 600;
  letter-spacing: 0.4px;
  color: #111;
  margin-bottom: 4px;
}

.event-date .day-num {
  display: block;
  font-size: 30px;
  font-weight: 600;
  color: #111;
  line-height: 1;
}

.event-content {
  padding-right: 10px;
}

.event-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #9a9a9a;
  font-size: 14px;
  font-weight: 400;
  margin-bottom: 10px;
}

.event-meta svg {
  width: 14px;
  height: 14px;
  fill: #f04b23;
  flex-shrink: 0;
}

.event-title {
  font-size: 24px;
  line-height: 1.25;
  font-weight: 700;
  color: #111;
  margin-bottom: 18px;
}

.event-location {
  font-size: 15px;
  line-height: 1.6;
  color: #222;
  margin-bottom: 22px;
  max-width: 760px;
}

.event-desc {
  font-size: 15px;
  line-height: 1.9;
  color: #7f7f7f;
  max-width: 760px;
}

.event-image {
  width: 100%;
}

.event-image img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
}

/* floating top button */
.scroll-top {
  position: fixed;
  right: 22px;
  bottom: 22px;
  width: 42px;
  height: 42px;
  background: #000;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  line-height: 1;
  z-index: 100;
}

.scroll-top:hover {
  opacity: 0.9;
}

.event-title > a {
  color: #000;
  font-weight: 500;
  font-size: 45px;
  text-decoration: none;
}

/* responsive */
@media (max-width: 1100px) {
  .event-card {
    grid-template-columns: 90px minmax(0, 1fr) 300px;
  }
}

@media (max-width: 900px) {
  .events-toolbar {
    grid-template-columns: 1fr;
  }

  .events-search {
    min-height: 64px;
    border-bottom: 1px solid #d9d9d9;
  }

  .events-search-btn,
  .events-view-tab {
    min-height: 56px;
  }

  .event-card {
    grid-template-columns: 80px 1fr;
  }

  .event-image {
    grid-column: 2 / 3;
    margin-top: 18px;
    max-width: 420px;
  }
}

@media (max-width: 640px) {
  .events-page {
    padding: 18px 16px 70px;
  }

  .events-month-row {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .event-card {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-bottom: 40px;
  }

  .event-date {
    text-align: left;
    padding-top: 0;
  }

  .event-image {
    grid-column: auto;
    max-width: 100%;
  }

  .event-title {
    font-size: 20px;
  }

  .events-search input,
  .events-search-btn,
  .events-view-tab {
    font-size: 16px;
  }
}

.custom-events-toolbar {
  display: grid;
  grid-template-columns: 1fr 250px 320px;
  align-items: center;
  column-gap: 36px;
  row-gap: 18px;
  margin: 24px 0 32px;
}

.custom-events-cat-filters {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
}

.cat-radio {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  font-weight: 600;
  line-height: 1;
  color: #273036;
  text-decoration: none !important;
  cursor: pointer; 
}

.cat-radio:hover {
  color: var(--theme-color);
}

.cat-radio-dot {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 2px solid #d4d4d4;
  display: inline-block;
  position: relative;
  flex-shrink: 0;
  background: transparent;
  box-sizing: border-box;
}

.cat-radio.is-active .cat-radio-dot {
  border-color: #f24822;
}

.cat-radio.is-active .cat-radio-dot::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #f24822;
}

.custom-events-dropdown-wrap {
  position: relative;
  width: 100%;
  max-width: 250px;
  display: flex;
  align-items: center;
}

.custom-events-dropdown {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  width: 100%;
  height: 46px;
  background: transparent;
  border: none;
  border-bottom: 2px solid #d9d9d9;
  padding: 0 30px 0 0;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.2;
  color: #273036;
  cursor: pointer;
  outline: none;
  box-shadow: none;
}

.dropdown-arrow {
  position: absolute;
  right: 4px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 12px;
  color: #273036;
  pointer-events: none;
}

.custom-events-search {
  width: 100%;
}

.custom-events-search .search-input-wrap {
  display: flex;
  align-items: center;
  height: 48px;
  border: 1px solid #d8d8d8;
  border-radius: 6px;
  overflow: hidden;
  background: #fff;
  width: 100%;
}

.custom-events-search input[type="text"] {
  flex: 1;
  height: 100%;
  padding: 0 16px;
  border: none;
  font-size: 15px;
  font-weight: 400;
  color: #273036;
  outline: none;
  min-width: 0;
  background: transparent;
}

.custom-events-search input[type="text"]::placeholder {
  color: #969696;
  opacity: 1;
}

.custom-events-search button {
  height: 100% !important;
  width: 52px;
  padding: 0 !important;
  border: none !important;
  border-radius: 0 !important;
  background: transparent !important;
  color: #273036 !important;
  cursor: pointer;
  display: flex !important;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.custom-events-search button:hover {
  color: #f24822 !important;
  opacity: 1 !important;
}

.custom-events-search button svg {
  width: 20px;
  height: 20px;
  stroke-width: 2.2;
}

.custom-events-list {
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin: 24px 0;
}

.custom-event-card {
  display: grid;
  grid-template-columns: 105px 180px minmax(160px, 1fr) 150px;
  align-items: center;
  gap: 24px;
  padding: 24px 28px;
  background: #f7f7f7;
  border: 1px solid #e3e3e3;
}

.custom-event-date {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #2f363b;
  font-weight: 700;
  line-height: 1.05;
  text-align: center;
  font-size: 14px;
}

.custom-event-date .day {
  display: block;
  font-size: 44px;
  line-height: 0.95;
  font-weight: 700;
}

.custom-event-date .month {
  display: block;
  margin-top: 6px;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
}

.custom-event-date .weekday {
  display: block;
  margin-top: 12px;
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  color: #69757c;
}

.custom-event-date .year {
  display: block;
  margin-top: 6px;
  font-size: 14px;
  font-weight: 500;
  color: #69757c;
}

.custom-event-image {
  display: block;
  width: 100%;
}

.custom-event-image img {
  width: 100%;
  height: 140px;
  object-fit: cover;
  display: block;
}

.custom-event-content {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.custom-event-category {
  margin: 0;
  font-size: 13px;
  line-height: 1;
  font-weight: 700;
  text-transform: uppercase;
  color: #5f696f;
  letter-spacing: 0.04em;
}

.custom-event-title {
  margin: 0;
  font-size: 26px;
  line-height: 1.1;
  font-weight: 700;
}

.custom-event-title a {
  text-decoration: none;
  color: #273036;
}

.custom-event-title a:hover {
  color: #ef4323;
}

.custom-event-venue {
  font-size: 14px;
  line-height: 1.5;
  color: #5c666d;
}

.custom-event-venue p {
  margin: 0;
}

.list_button.sc_button_wrap {
  justify-self: end;
  align-self: center;
  margin: 0;
}

.list_button.sc_button_wrap .sc_button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 140px;
  min-height: 48px;
  padding: 12px 20px;
  background: #ef4323;
  border: 0;
  text-decoration: none;
  box-shadow: none;
  transition: 0.2s ease;
}

.list_button.sc_button_wrap .sc_button:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}

.list_button.sc_button_wrap .sc_button_title {
  color: #fff;
  font-size: 14px;
  line-height: 1;
  font-weight: 500;
  text-transform: none;
}

.page_content_wrap {
  padding: 0 !important;
  padding-top: 2rem !important;
}

.home-content-title span {
  font-size: 42px;
  line-height: 1.1;
  font-weight: 700;
}

.home-content-desc {
  margin-bottom: 18px;
  font-size: 15px;
  line-height: 1.6;
}

.home-content-desc p:last-child {
  margin-bottom: 0;
}

.custom-events-empty {
  padding: 20px;
  border: 1px solid #dfe5e5;
  background: #f7f7f7;
  font-size: 15px;
  color: #5c666d;
}

@media (max-width: 1200px) {
  .custom-events-toolbar {
    grid-template-columns: 1fr;
  }

  .custom-event-card {
    grid-template-columns: 90px 160px 1fr;
  }

  .list_button.sc_button_wrap {
    grid-column: 1 / -1;
    justify-self: start;
  }
}

@media (max-width: 767px) {
  .custom-events-cat-filters {
    gap: 14px;
  }

  .cat-radio {
    font-size: 14px;
  }

  .cat-radio-dot {
    width: 18px;
    height: 18px;
  }

  .cat-radio.is-active .cat-radio-dot::after {
    width: 8px;
    height: 8px;
  }

  .custom-events-dropdown {
    font-size: 14px;
    height: 42px;
  }

  .custom-events-search .search-input-wrap {
    height: 44px;
  }

  .custom-events-search input[type="text"] {
    font-size: 14px;
  }

  .custom-event-card {
    grid-template-columns: 1fr;
    padding: 18px;
    gap: 16px;
  }

  .custom-event-date {
    align-items: flex-start;
    text-align: left;
  }

  .custom-event-image img {
    height: auto;
  }

  .custom-event-title {
    font-size: 22px;
  }

  .home-content-title span {
    font-size: 30px;
  }
}

.about-wrapper {
  padding: 3rem;
}

.about-content > p {
  font-weight: 400;
  color: #666;
}

.contact-section-custom {
  display: flex;
  gap: 80px;
  align-items: flex-start;
  justify-content: space-between;
  padding: 60px 0;
}

.contact-section-left {
  width: 42%;
}

.contact-section-right {
  width: 58%;
}

.contact-section-left .mini-title {
  font-size: 14px;
  letter-spacing: 3px;
  color: #2f3338;
  margin-bottom: 24px;
  font-weight: 600;
}

.contact-section-left h2 {
  font-size: 72px;
  line-height: 0.95;
  font-weight: 500;
  margin: 0 0 36px;
  color: #000;
}

.contact-section-left .mail-line {
  font-size: 18px;
  color: #000;
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 400;
}

.contact-section-left .mail-line::before {
  content: "\2709";
  font-size: 25px;
  color: var(--theme-color);
  line-height: 1;
}

.form-style-3 {
  max-width: 100%;
  width: 100%;
}

.form-style-3 .columns_wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin-bottom: 26px;
}

.form-style-3 .column-1_2 {
  width: calc(50% - 15px);
}

.form-style-3 .column-1_1 {
  width: 100%;
}

.form-style-3 .style-line {
  position: relative;
  display: block;
}

.form-style-3 input[type="text"], .form-style-3 input[type="email"], .form-style-3 input[type="tel"], .form-style-3 textarea {
  width: 100%;
  border: none;
  border-bottom: 1px solid #cfcfcf;
  background: transparent;
  box-shadow: none;
  border-radius: 0;
  padding: 0 0 14px 38px;
  font-size: 18px;
  font-weight: 400;
  color: #2f3338;
  outline: none;
  min-height: auto;
  padding: 0;
  padding-bottom: 1rem;
  padding-left: 1rem;
  font-size: 15px;
}

.form-style-3 textarea {
  resize: none;
  height: 70px;
  padding-top: 2px;
}

.form-style-3 input::placeholder, .form-style-3 textarea::placeholder {
  color: #3b3f45;
  opacity: 1;
}

.form-style-3 input:focus, .form-style-3 textarea:focus {
  border-bottom-color: #8f8f8f;
  box-shadow: none;
  outline: none;
}

.form-style-3 .form-bottom-row {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-top: 18px;
  flex-wrap: wrap;
}

.form-style-3 .form-submit-wrap {
  flex: 0 0 auto;
}

.form-style-3 input[type="submit"], .form-style-3 .wpcf7-submit {
  background: #f84a1d;
  color: #fff;
  border: none;
  border-radius: 0;
  padding: 18px 36px;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.1;
  cursor: pointer;
  transition: 0.25s ease;
  min-width: 200px;
  box-shadow: none;
}

.form-style-3 input[type="submit"]:hover, .form-style-3 .wpcf7-submit:hover {
  background: #dd3f16;
}

.form-style-3 .form-acceptance-wrap {
  flex: 1 1 auto;
  font-size: 15px;
  color: #6a6f75;
  line-height: 1.5;
}

.form-style-3 .form-acceptance-wrap .wpcf7-list-item {
  margin: 0;
}

.form-style-3 .form-acceptance-wrap label {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
}

.form-style-3 .form-acceptance-wrap input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin: 0;
  accent-color: #f84a1d;
  flex: 0 0 18px;
}

.form-style-3 .form-acceptance-wrap a {
  color: #6a6f75;
  text-decoration: underline;
}

.form-style-3 .wpcf7-not-valid-tip {
  font-size: 13px;
  margin-top: 8px;
}

.form-style-3 .wpcf7-spinner {
  margin-top: 12px;
}

.page-title {
  margin-bottom: 10px;
}

.contact-wrapper {
  padding: 3rem 10rem;
}

.button_wrap > p {
  display: flex;
  align-items: center;
}

.button_wrap > p .wpcf7-spinner {
  display: none !important;
}

.button_wrap > p a {
  color: #000;
}

.button_wrap > p a:hover {
  color: var(--theme-color);
}

@media (max-width: 991px) {
  .form-style-3 .column-1_2 {
      width: 100%;
  }

  .form-style-3 .form-bottom-row {
      flex-direction: column;
      align-items: flex-start;
      gap: 18px;
  }

  .form-style-3 input[type="submit"], .form-style-3 .wpcf7-submit {
      width: 100%;
      min-width: 0;
  }

  .contact-section-custom {
      flex-direction: column;
      gap: 40px;
      padding: 40px 0;
  }

  .contact-section-left, .contact-section-right {
      width: 100%;
  }

  .contact-section-left h2 {
      font-size: 44px;
  }
}

.post-page-container {
  padding: 5rem 0;
}

.post-page-name {
  margin-bottom: 3rem;
}

.post-page-desc > p {
  font-size: 15px;
  font-weight: 400;
}


.event-post-page-contain-top {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.event-post-page-title {
  font-size: 50px;
  font-weight: 500;
  color: #000;
  line-height: 1.1;
  margin-bottom: 1rem;
}

.event-post-page-date {
  font-size: 16px;
  margin-bottom: 3rem;
}

.event-post-page-image > img {
  width: 100%;
}

.event-post-page-content {
  margin-top: 3rem;
}

.event-post-page-content > p {
  color: #666;
}

.event-info-section {
  display: grid;
  grid-template-columns: 1fr 1fr 1.15fr;
  gap: 70px;
  align-items: start;
  padding: 40px 0 20px;
}

.event-info-col h3 {
  margin: 0 0 28px;
  font-size: 28px;
  line-height: 1.1;
  font-weight: 500;
  color: #111;
}

.event-info-details .event-info-item {
  margin-bottom: 18px;
}

.event-info-details .event-info-item strong {
  display: block;
  margin-bottom: 6px;
  font-size: 17px;
  line-height: 1.4;
  font-weight: 700;
  color: #575757;
}

.event-info-details .event-info-item span {
  display: block;
  font-size: 15px;
  line-height: 1.55;
  color: #6b6b6b;
}

.event-info-location .location-content p {
  margin: 0 0 4px;
  font-size: 15px;
  line-height: 1.5;
  color: #3f3f3f;
}

.event-info-location .location-content a {
  display: inline-block;
  margin-top: 10px;
  font-size: 18px;
  line-height: 1.4;
  color: #f04b23;
  text-decoration: none;
  transition: 0.2s ease;
}

.event-info-location .location-content a:hover {
  opacity: 0.8;
}

.event-info-map iframe,
.event-info-map .acf-map,
.event-info-map .mapouter,
.event-info-map .gmap_canvas {
  height: 270px;
  width: 100%;
  min-height: 270px;
  border: 0;
}

.event-info-map iframe {
  display: block;
}

.location-content {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

#cssmenu-lang > ul {
  list-style: none;
  padding: 0;
  margin: 0;
  position: relative;
}

.header-wrap-right .mega-menu {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

#cssmenu-lang > ul > li > ul {
  list-style: none;
  padding: 0;
  margin: 0;
  width: 180px;
  position: absolute;
  background-color: #33333385;
  left: -45px;
  top: 105%;
  overflow: hidden;
  opacity: 0;
  transition: .2s ease-in-out;
}

#cssmenu-lang > ul > li > ul > li > a {
  padding: 1rem;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  transition: .2s ease-in-out;
}

#cssmenu-lang > ul > li > ul > li > a span {
  color: #fff;
  text-decoration: none !important;
}

#cssmenu-lang > ul > li > a > span {
  text-decoration: none;
}

#cssmenu-lang a {
  text-decoration: none !important;
}

#cssmenu-lang > ul > li > a {
  color: #fff;
  transition: .2s eease-in-out;
  width: 110px;
  display: flex;
  padding: 0.9rem;
  background-color: var(--theme-color);
  align-items: center;
  text-align: center;
  justify-content: center;
}

#cssmenu-lang > ul > li:hover > ul{
  opacity: 1;
  visibility: visible;
}

#cssmenu-lang > ul > li > ul > li:not(:last-child) > a {
  border-bottom: 1px solid #fff;
}

#cssmenu-lang > ul > li > ul > li > a:hover {
  background-color: #555;
}

.menu-remove-button {
  display: none;
}

.mobile-menu {
  display: none;
}

@media (max-width: 1199px) {
  .event-info-section {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .event-info-map {
    grid-column: 1 / -1;
  }
}

@media (max-width: 767px) {
  .event-info-section {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 30px 0 10px;
  }

  .event-info-col h3 {
    font-size: 24px;
    margin-bottom: 18px;
  }

  .event-info-details .event-info-item strong,
  .event-info-details .event-info-item span,
  .event-info-location .location-content p,
  .event-info-location .location-content a {
    font-size: 16px;
  }
}

@media (max-width: 993px) { 
  .event-contain-content {
    width: calc(50% - (2rem) / 2);
  }

  .header-wrap-center {
    position: absolute;
    top: 0;
    left: -100%;
    height: 100%;
    width: 35%;
    background-color: #fff;
    z-index: 99999;
    justify-content: flex-start;
    align-items: flex-start;
    transition: .3s ease-in-out;
    opacity: 0;
    visibility: hidden;
    flex-direction: column;
  }

  .header-wrap-center.active {
    opacity: 1;
    visibility: visible;
    left: 0;
  }

  .header-wrap-menu #cssmenu > ul {
    flex-direction: column;
    gap: 0;
  }

  .header-wrap-menu {
    width: 100%;
  }

  .header-wrap-menu #cssmenu > ul > li > a {
    display: flex;
    width: 100%;
    padding: 1rem;
  }

  .menu-remove-button {
    display: flex;
    width: 100%;
  }

  .mobile-menu {
    display: flex;
  }

  .mobile-menu-btn > i {
    font-size: 35px;
  }

  .mobile-menu-btn {
    display: flex;
    margin-left: 1.5rem;
  }

  .menu-overlay {
    position: absolute;
    inset: 0;
    z-index: 9999;
    background-color: rgba(0,0,0,.6);
    opacity: 0;
    visibility: hidden;
    transition: .25s ease-in-outt;
  }

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

  .header-wrap-menu #cssmenu > ul > li:not(:last-child) > a {
    border-bottom: 1px solid;
  }

  .menu-remove {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    width: 100%;
    padding: 1rem;
    border-bottom: 1px solid;
  }
}

@media (max-width: 553px) { 
  .event-contain-content {
    width: 100%;
  }

  .event-contain {
    padding: 2rem 1rem;
  }

  .home-content-top {
    flex-direction: column;
    align-items: flex-start;
  }

  .experience-blog-contain {
    padding: 2rem 1rem;
  }

  .experience-blog-content {
    min-height: 300px;
  }

  .marquee-track span {
    font-size: 60px;
  }

  .about-wrapper {
    padding: 1rem;
  }

  .event-date {
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }

  h2.event-title > a {
    width: 100%;
    display: flex;
    font-size: 35px;
  }

  .event-desc {
    font-size: 13px;
  }

  .events-month-title {
    text-align: center;
    font-size: 50px;
  }

  .contact-wrapper {
    padding: 2rem 1rem;
  }

  .button_wrap > p {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .custom-event-date {
    align-items: center;
  }

  .list_button.sc_button_wrap .sc_button {
    width: 100%;
  }

  .header-wrap {
    align-items: center;
    justify-content: right;
    flex-direction: column;
  }

  .header-wrap-btn {
    width: 150px;
    min-width: 150px;
  }

  .header-wrap-left {
    width: 100%;
    margin-bottom: 2rem;
  }

  .header-wrap-right {
    width: 100%;
    justify-content: center;
  }

  .header-wrap-center {
    width: 95%;
  }
}