:root {
  --primary-color: #535353;
  --secondry-color: #F6851F;
  --tag-color: #8ECBE8;
  --bg-color: #023047 ;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-size: 1rem;
  font-family: "Ubuntu", sans-serif;
  font-weight: 300;
  color: var(--primary-color);
}

a {
  text-decoration: none;
}

.container {
  width: 100%;
  max-width: 1203px;
  margin: 0 auto;
}

.register-btn {
  color: var(--secondry-color);
  font-weight: 400;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: gap 0.3s ease;
  background: transparent;
  border: 0;
  cursor: pointer;
}
.register-btn:hover {
  gap: 18px;
}

.blog-font {
  font-family: "Work Sans", sans-serif;
}
.blog-font h1, .blog-font h2, .blog-font h3, .blog-font h4, .blog-font h5, .blog-font h6 {
  font-family: "Domine", serif;
}

header {
  position: fixed;
  display: flex;
  justify-content: space-between;
  padding: 1.75rem 1.563rem 1.75rem 1.938rem;
  width: 100%;
  z-index: 3;
  transition: all 0.3s ease;
}
header.is-scrolled {
  background: var(--bg-color);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

nav.menu-item {
  display: flex;
}
nav.menu-item ul {
  display: flex;
  align-items: center;
  list-style: none;
}
nav.menu-item ul a {
  color: #fff;
  padding: 0.625rem 1.25rem;
  font-size: 0.813rem;
  line-height: 1.313rem;
  font-weight: 500;
  text-transform: uppercase;
  display: block;
  position: relative;
}
nav.menu-item ul a::after {
  content: "";
  position: absolute;
  bottom: 5px;
  height: 1px;
  background: #fff;
  left: 1.25rem;
  right: 1.25rem;
  opacity: 0;
  transition: opacity 0.3s ease;
}
nav.menu-item ul a:hover::after {
  opacity: 1;
}
nav.menu-item ul li.mobile-menu-link {
  display: none;
}
nav.menu-item ul .current_page_item a::after {
  opacity: 1;
}
nav.menu-item ul .booking a {
  background: #fff;
  color: #383838;
  border-radius: 5px;
  text-decoration: none;
}

.hero-section {
  background: var(--bg-color);
  padding: 10.751rem 1.938rem 14.688rem;
  color: #F7F8FA;
  display: flex;
  flex-direction: column;
  gap: 6.438rem;
  align-items: flex-start;
}
.hero-section .content-area {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.hero-section span.tag-line {
  color: var(--tag-color);
  text-transform: uppercase;
  font-weight: 400;
  margin-bottom: 1.813rem;
  letter-spacing: 1px;
}
.hero-section h1 {
  font-size: 3rem;
  font-weight: 300;
  line-height: 3.375rem;
  margin-bottom: 0.938rem;
  letter-spacing: -2px;
  max-width: 924px;
}
.hero-section .button-area {
  display: flex;
  gap: 2.875rem;
  align-items: center;
}
.hero-section .btn2 {
  filter: brightness(0) saturate(100%) invert(64%) sepia(11%) saturate(563%) hue-rotate(156deg) brightness(89%) contrast(89%);
}
.hero-section .hero-shade {
  position: absolute;
  right: 0;
  top: 0;
  width: 100%;
  max-width: 849px;
  z-index: 1;
}
.hero-section .hero-shade.mobile {
  display: none;
}
.hero-section .container {
  position: relative;
  z-index: 2;
}

.video-area {
  position: relative;
  margin-bottom: 6.688rem;
  background: #000;
}
.video-area .video-thumbnail {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.video-area .video-thumbnail img.thumbnail {
  width: 100%;
}
.video-area .video-thumbnail img.play-btn {
  position: absolute;
  cursor: pointer;
}
.video-area iframe {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
}

.event-section {
  display: flex;
  justify-content: center;
  margin-top: -8.375rem;
  margin-bottom: 8.75rem;
  position: relative;
  overflow: hidden;
}
.event-section .event-container {
  width: 100%;
  max-width: 1440px;
  display: flex;
  align-items: flex-start;
}
.event-section .event-detail {
  padding: 6.188rem 5.75rem 0 7.5rem;
  flex: 0 60.31%;
  background: #fff;
  display: flex;
  flex-direction: column;
}
.event-section .event-detail > h2 {
  font-size: 2.5rem;
  color: #000;
  font-weight: 500;
  letter-spacing: -2px;
  line-height: 2.813rem;
  margin-bottom: 3.938rem;
}
.event-section .event-detail .event-agenda {
  display: flex;
  flex-direction: column;
}
.event-section .event-detail .event-agenda span.tagline {
  color: var(--bg-color);
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 1.625rem;
}
.event-section .event-detail .event-agenda h2 {
  font-size: 2.75rem;
  letter-spacing: -2px;
  font-weight: 300;
  line-height: 3.438rem;
  margin-bottom: 5.375rem;
  color: var(--primary-color);
}
.event-section .event-detail .timeline-area {
  display: flex;
  flex-direction: column;
  gap: 1.625rem;
}
.event-section .event-detail .timeline-area .time-line {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 3.563rem;
  color: #000;
}
.event-section .event-detail .timeline-area .time-line span.time {
  width: 63px;
  line-height: 1.438rem;
}
.event-section .event-detail .timeline-area .time-line .event-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1.125rem;
}
.event-section .event-detail .timeline-area .time-line .event-info .event-title {
  font-weight: 500;
}
.event-section .event-detail .timeline-area .time-line .event-info p {
  line-height: 1.563rem;
}
.event-section .form-area {
  flex: 1;
  padding: 10.188rem 0 7.625rem 7.5rem;
  background: var(--bg-color);
  position: relative;
}
.event-section .form-area span.bg-area {
  background: var(--bg-color);
  position: absolute;
  width: 100vw;
  top: 0;
  height: 100%;
  left: 0;
}
.event-section .form-area .form-content {
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 1;
  color: #fff;
}
.event-section .form-area .form-content span.tag-line {
  color: var(--tag-color);
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  line-height: 100%;
  margin-bottom: 1.625rem;
}
.event-section .form-area .form-content h2 {
  font-size: 2.563rem;
  line-height: 3.188rem;
  font-weight: 300;
  letter-spacing: -2px;
  margin-bottom: 1.688rem;
}
.event-section .form-area .form-content > p {
  letter-spacing: 0.69px;
  line-height: 1.688rem;
  max-width: 432px;
  margin-bottom: 2.438rem;
}
.event-section .form-area .register-form input[type=text], .event-section .form-area .register-form input[type=email] {
  border: 0;
  background: #fff;
  height: 66px;
  width: 100%;
  border-radius: 5px;
  padding-left: 1.688rem;
  font-size: 1.125rem;
  margin-bottom: 10px;
}
.event-section .form-area .register-form .terms {
  margin: 1.625rem 0 2.438rem;
  display: block;
}
.event-section .form-area .register-form .terms .wpcf7-list-item {
  margin: 0 0 0 1.688rem;
}
.event-section .form-area .register-form .terms .wpcf7-list-item label {
  display: flex;
  align-items: center;
  gap: 1.188rem;
}
.event-section .form-area .register-form .terms .wpcf7-list-item input[type=checkbox] {
  width: 16px;
  height: 16px;
}
.event-section .form-area .register-form .terms .wpcf7-list-item span.wpcf7-list-item-label {
  font-size: 1.125rem;
  font-weight: 400;
}
.event-section .form-area .register-form .register-btn {
  margin: 0 0 0 1.688rem;
}
.event-section .form-area .register-form .register-btn img {
  position: relative;
  z-index: -1;
}
.event-section .form-area .register-form .cf7-stripe-message {
  color: #dc3232;
  margin-top: 10px;
}
.event-section .form-area .register-form .success-msg {
  margin-top: 10px;
}
.event-section .form-area.inner-pages {
  padding: 25.438rem 0 7.188rem 7.5rem;
}
.event-section .content-box {
  color: #000;
  margin-bottom: 2.75rem;
}
.event-section .right-content {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1.625rem;
  color: #fff;
}
.event-section .right-content span.tag-line {
  font-size: 0.75rem;
  line-height: 100%;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--tag-color);
}
.event-section .right-content h2 {
  font-size: 2.563rem;
  line-height: 3.188rem;
  font-weight: 300;
  letter-spacing: -2px;
  margin-bottom: 0.375rem;
}
.event-section .right-content p {
  line-height: 1.688rem;
  letter-spacing: 0.69px;
}

.what-we-do .content-box {
  font-size: 1rem;
  line-height: 1.688rem;
  letter-spacing: 0.69px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.what-we-do .event-section .event-detail > h2 {
  font-size: 1.938rem;
  line-height: 2.563rem;
  font-weight: 300;
  letter-spacing: 0.69px;
}
.what-we-do .video-area {
  margin-bottom: 5.25rem;
}

.content-section {
  padding: 0 2rem 5.25rem;
}
.content-section .container {
  display: flex;
  gap: 7.5rem;
}
.content-section .content-box {
  display: flex;
  flex-direction: column;
  gap: 1.125rem;
}
.content-section .content-box .text {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.content-section h2 {
  color: #000;
  font-size: 1.5rem;
  line-height: 1.688rem;
  letter-spacing: 0.69px;
  font-weight: 700;
}
.content-section p, .content-section ul {
  letter-spacing: 0.69px;
  line-height: 1.688rem;
  color: #000;
  font-size: 1rem;
}
.content-section p strong, .content-section ul strong {
  font-weight: 700;
}
.content-section ul {
  padding-left: 20px;
}

.inner-pages .event-section {
  margin-bottom: 0;
}

.speakers-section {
  padding-bottom: 10.938rem;
}
.speakers-section h2 {
  font-size: 2.75rem;
  letter-spacing: -2px;
  line-height: 3.438rem;
  font-weight: 300;
}
.speakers-section .container {
  display: flex;
  flex-direction: column;
  gap: 4.688rem;
}
.speakers-section .speakers {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.063rem;
}
.speakers-section .speaker {
  position: relative;
  color: #fff;
  display: flex;
}
.speakers-section .speaker img {
  filter: grayscale(100%);
  transition: filter 0.3s ease;
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
}
.speakers-section .speaker .speaker-info {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  padding: 1.25rem;
  transition: background 0.3s ease;
}
.speakers-section .speaker .speaker-info .content {
  display: flex;
  flex-direction: column;
  text-align: right;
  gap: 10px;
  transform: translateY(27px);
  transition: transform 0.3s ease;
}
.speakers-section .speaker .speaker-info span.name {
  font-size: 1.25rem;
  text-transform: uppercase;
  line-height: 1.313rem;
  font-weight: 700;
}
.speakers-section .speaker .speaker-info p.description {
  font-weight: 600;
  font-size: 0.83rem;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
  height: 15px;
}
.speakers-section .speaker:hover img {
  filter: grayscale(0%);
}
.speakers-section .speaker:hover .speaker-info {
  background: rgba(0, 0, 0, 0.31);
}
.speakers-section .speaker:hover .speaker-info .content {
  transform: translateY(0);
}
.speakers-section .speaker:hover .speaker-info p.description {
  opacity: 1;
}

.services {
  background: var(--bg-color);
  padding: 10.063rem 0 17.063rem;
  color: #fff;
}
.services .container {
  display: flex;
  flex-direction: column;
  gap: 8.813rem;
}
.services .service-heading {
  display: flex;
  flex-direction: column;
  gap: 1.625rem;
  max-width: 534px;
}
.services .service-heading span.tagline {
  font-size: 0.75rem;
  color: var(--tag-color);
  letter-spacing: 2px;
  text-transform: uppercase;
  line-height: 100%;
}
.services .service-heading > h2 {
  font-size: 2.563rem;
  font-weight: 300;
  line-height: 3.188rem;
  letter-spacing: -2px;
}
.services .services-list {
  display: flex;
  gap: 3.438rem;
}
.services .services-list .service {
  display: flex;
  flex-direction: column;
  gap: 1.375rem;
  padding-right: 3.063rem;
  border-right: 1px solid rgba(255, 255, 255, 0.2509803922);
flex:1;
}
.services .services-list .service:last-child {
  padding-right: 0;
  border-right: 0;
}
.services .services-list .service > h2 {
  font-size: 2.563rem;
  line-height: 100%;
  font-weight: 400;
  letter-spacing: -3px;
}
.services .services-list .service p {
  line-height: 1.688rem;
  letter-spacing: 0.69px;
}

.landing-page .hero-section .label-text {
  display: flex;
  flex-direction: column;
  margin-bottom: 1rem;
}
.landing-page .hero-section .label-text h1 {
  margin: 0;
}
.landing-page .hero-section .label-text span {
  font-size: 1.25rem;
  letter-spacing: -1px;
  color: var(--secondry-color);
}
.landing-page .hero-section p {
  font-size: 1.125rem;
  line-height: 1.438rem;
  max-width: 600px;
  margin-bottom: 1.563rem;
}
.landing-page .event-section .event-detail > h2 {
  font-size: 1.938rem;
  color: #000;
  font-weight: 300;
  letter-spacing: -1px;
  line-height: 2.563rem;
  margin-bottom: 4.563rem;
}
.landing-page .event-section {
  margin-bottom: 3.188rem;
}
.landing-page .video-area {
  margin-bottom: 0;
  max-width: 600px;
}
.landing-page .event-detail-info {
  display: flex;
  flex-direction: column;
  margin-bottom: 4.5rem;
}
.landing-page .event-detail-info .listed {
  display: flex;
  gap: 1.438rem;
  color: #023047;
}
.landing-page .event-detail-info .listed strong {
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: -1px;
  line-height: 2.5rem;
  min-width: 114px;
}
.landing-page .event-detail-info .listed span {
  font-size: 1.25rem;
  font-weight: 400;
  letter-spacing: -1px;
  line-height: 2.5rem;
}
.landing-page .services {
  padding-bottom: 14.875rem;
}
.landing-page .speakers-section {
  padding: 13.563rem 2rem 10.938rem;
}

.event-listing-area {
  padding: 0 2rem;
}
.event-listing-area .container {
  display: flex;
  gap: 4.625rem;
}
.event-listing-area h2 {
  font-size: 2.75rem;
  letter-spacing: -2px;
  font-weight: 300;
  line-height: 3.438rem;
  margin-bottom: 2.625rem;
  color: var(--primary-color);
}
.event-listing-area .event-agenda {
  display: flex;
  flex-direction: column;
  max-width: 924px;
}
.event-listing-area .event-agenda span.tagline {
  color: var(--bg-color);
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 1.625rem;
}
.event-listing-area .agenda-list {
  display: flex;
  flex-direction: column;
  gap: 3.313rem;
}
.event-listing-area .agenda-session {
  display: flex;
  flex-direction: column;
  gap: 3.688rem;
}
.event-listing-area .agenda-session .agenda-label {
  display: flex;
  font-size: 1rem;
  font-weight: 500;
  line-height: 100%;
  color: #fff;
}
.event-listing-area .agenda-session .agenda-label .session-title {
  padding: 15px 20px;
  background: var(--bg-color);
}
.event-listing-area .agenda-session .agenda-label .session-topic {
  padding: 15px 20px 15px 10px;
  background: rgba(2, 48, 71, 0.6);
  flex: 1;
}
.event-listing-area .timeline-area {
  display: flex;
  flex-direction: column;
  gap: 2.938rem;
}
.event-listing-area .timeline-area .time-line {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 3.563rem;
  color: #000;
}
.event-listing-area .timeline-area .time-line span.time {
  width: 63px;
  line-height: 1.438rem;
}
.event-listing-area .timeline-area .time-line .event-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1.125rem;
}
.event-listing-area .timeline-area .time-line .event-info .event-title {
  font-weight: 500;
}
.event-listing-area .timeline-area .time-line .event-info p {
  line-height: 1.563rem;
}
.event-listing-area .timeline-area .time-line .speaker-info {
  display: flex;
  flex-direction: column;
  font-size: 1rem;
  line-height: 1.188;
  min-width: 324px;
}
.event-listing-area .timeline-area .time-line .speaker-name {
  font-weight: 500;
}
.event-listing-area .timeline-area .time-line .speaker-role {
  font-size: 0.75rem;
}
.event-listing-area .other-info {
  display: flex;
  flex-direction: column;
}
.event-listing-area .other-info .other-info-heading {
  padding: 14px 20px;
  background: rgba(246, 133, 31, 0.2509803922);
  font-weight: 500;
  font-size: 1rem;
  color: #000;
  border-top: 1px solid rgba(0, 0, 0, 0.1882352941);
  border-bottom: 1px solid rgba(0, 0, 0, 0.1882352941);
}
.event-listing-area .other-info .info-table-list {
  display: flex;
  flex-direction: column;
  padding: 1.4rem 1.25rem 2rem;
  background: rgba(2, 48, 71, 0.1019607843);
  border-top: 1px solid rgba(0, 0, 0, 0.1882352941);
  border-bottom: 1px solid rgba(0, 0, 0, 0.1882352941);
  font-size: 1rem;
  line-height: 2.313rem;
  gap: 0.6rem;
}
.event-listing-area .other-info .info-table-list .info-item {
  display: flex;
  gap: 10px;
  color: #000;
}
.event-listing-area .other-info .info-table-list .info-item .info-time {
  min-width: 100px;
}
.event-listing-area .other-info .info-table-list .info-item .info-detail {
  font-weight: 500;
}
.event-listing-area .event-sponsers {
  flex: 1;
  position: relative;
  padding-top: 2.875rem;
}
.event-listing-area .event-sponsers .sp-logo {
  width: 274px;
  position: absolute;
  left: 0;
  display: flex;
  flex-direction: column;
  gap: 1.375rem;
  align-items: center;
}
.event-listing-area .event-sponsers .sp-logo img {
  max-width: 100%;
}

.info-text {
  padding: 4.063rem 2rem 4.063rem;
  margin: -9.675rem 0 -10.6rem;
  color: #fff;
  position: relative;
}
.info-text::before {
  content: "";
  background: #4A4A4A;
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  max-width: 92.4%;
  left: 0;
}
.info-text h2 {
  font-size: 2.563rem;
  font-weight: 400;
  line-height: 3.188rem;
  letter-spacing: -2px;
  max-width: 959px;
  position: relative;
}
.info-text .container {
  max-width: 960px;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.info-text .register-btn {
  position: relative;
}

.banner-area {
  height: 100vh;
  background-size: cover;
  position: relative;
  display: flex;
  align-items: center;
  padding: 16rem 1rem 5rem 8.75rem;
}
.banner-area::before {
  content: "";
  background: linear-gradient(270deg, rgba(0, 0, 0, 0) 17.33%, rgba(0, 0, 0, 0.75) 100%);
  position: absolute;
  inset: 0;
}
.banner-area .banner-content {
  display: flex;
  flex-direction: column;
  gap: 1.813rem;
  color: #F7F8FA;
  position: relative;
  padding-left: 7.5rem;
}
.banner-area .banner-content span.tag-line {
  font-size: 1rem;
  line-height: 100%;
  text-transform: uppercase;
  font-weight: 400;
  letter-spacing: 1px;
  color: var(--tag-color);
}
.banner-area .banner-content h1 {
  font-size: 3.938rem;
  line-height: 3.938rem;
  letter-spacing: -2px;
  font-weight: 300;
  max-width: 924px;
}

.partner-area {
  padding-left: 8.75rem;
  margin-top: -5rem;
  position: relative;
  margin-bottom: 4.563rem;
}
.partner-area .partner-content {
  padding: 5rem 1rem 1.5rem 7.5rem;
  background: #fff;
  display: flex;
  gap: 7.5rem;
  align-items: center;
}
.partner-area .partner-content h2 {
  font-size: 2.5rem;
  letter-spacing: -2px;
  font-weight: 500;
  max-width: 360px;
  line-height: 2.813rem;
}
.partner-area .partner-content p {
  max-width: 608px;
  color: #000;
  line-height: 1.688rem;
}

.advisory {
  padding-top: 7.125rem;
  display: flex;
  gap: 6.375rem;
  position: relative;
  align-items: flex-start;
}
.advisory::before {
  content: "";
  background: var(--bg-color);
  position: absolute;
  height: calc(100% - 76px);
  width: 85vw;
  top: 0;
}
.advisory .video-area {
  width: 50%;
  margin-bottom: 0;
}
.advisory .advisory-content {
  display: flex;
  flex-direction: column;
  gap: 1.625rem;
  color: #fff;
  max-width: 413px;
  position: relative;
}
.advisory .advisory-content span.tag-line {
  font-size: 0.75rem;
  line-height: 100%;
  text-transform: uppercase;
  font-weight: 300;
  letter-spacing: 2px;
  color: var(--tag-color);
}
.advisory .advisory-content h2 {
  font-size: 2.563rem;
  line-height: 3.188rem;
  letter-spacing: -2px;
  font-weight: 300;
}
.advisory .advisory-content p {
  line-height: 1.688rem;
}

.services-area {
  padding: 9.5rem 2rem;
  overflow: hidden;
}
.services-area .container {
  display: flex;
  flex-direction: column;
  gap: 6.063rem;
}
.services-area .services-content {
  display: flex;
  flex-direction: column;
  gap: 1.625rem;
  align-items: center;
}
.services-area .services-content span.tag-line {
  font-size: 0.75rem;
  line-height: 100%;
  text-transform: uppercase;
  font-weight: 300;
  letter-spacing: 2px;
  color: var(--bg-color);
}
.services-area .services-content h2 {
  font-size: 2.75rem;
  line-height: 3.438rem;
  letter-spacing: -2px;
  font-weight: 300;
  text-align: center;
  max-width: 902px;
}
.services-area .services-content.second {
  margin-bottom: -4rem;
  gap: 0.5rem;
}
.services-area .services-content.second h2 {
  font-size: 2.3rem;
  text-align: center;
}
.services-area .services-content.second span.tag-line {
  color: #000;
  font-size: 14px;
  text-align: center;
  line-height: 1.65rem;
  text-transform: unset;
  letter-spacing: 0;
}
.services-area .services-content.tri {
  align-items: baseline;
}
.services-area .services-content.tri h2 {
  text-align: left;
  font-size: 2.3rem;
  line-height: 2.7rem;
}
.services-area .services-content.tri p {
  max-width: 902px;
}
.services-area .services-content.tri .register-btn {
  filter: brightness(0) saturate(100%) invert(64%) sepia(11%) saturate(563%) hue-rotate(156deg) brightness(89%) contrast(89%);
}
.services-area .services-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.813rem 5.125rem;
}
.services-area .services-list .services-item {
  border: 1px solid #E7E7E7;
  background: #FAFAFA;
  padding: 1.844rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  border-radius: 10px;
  transition: all 0.5s ease;
}
.services-area .services-list .services-item img {
  margin-bottom: 2.313rem;
}
.services-area .services-list .services-item span {
  font-size: 1.25rem;
  line-height: 100%;
  font-weight: 500;
  color: var(--bg-color);
  margin-bottom: 1.25rem;
  transition: all 0.5s ease;
}
.services-area .services-list .services-item p {
  font-size: 0.875rem;
  line-height: 1.313rem;
  color: #000;
  letter-spacing: 0.69px;
  transition: all 0.5s ease;
}

.benefit-area {
  display: flex;
  gap: 5rem;
  align-items: baseline;
}
.benefit-area .info-box {
  padding: 3.938rem 2.188rem 13.313rem 0;
  color: #fff;
  position: relative;
}
.benefit-area .info-box::before {
  content: "";
  background: var(--bg-color);
  position: absolute;
  width: 100vw;
  height: 100%;
  right: 0;
  top: 0;
}
.benefit-area .info-box .text {
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
  max-width: 305px;
  position: relative;
}
.benefit-area .info-box .text h2 {
  font-size: 1.813rem;
  line-height: 2.063rem;
  font-weight: 300;
}
.benefit-area .info-box .text p {
  font-size: 1rem;
  line-height: 1.5rem;
}

.detail-area {
  flex: 1;
  padding: 3.938rem 0 0 0;
  color: #000;
}
.detail-area h2 {
  font-size: 2rem;
  line-height: 1.813rem;
  font-weight: 300;
  margin-bottom: 2rem;
}
.detail-area p {
  font-size: 1.25rem;
  line-height: 1.813rem;
}

.benefit-list {
  display: flex;
  gap: 3.75rem;
  margin-top: 4.563rem;
}
.benefit-list .benefit-group {
  display: flex;
  flex-direction: column;
  gap: 3.25rem;
}
.benefit-list .benefit-item {
  display: flex;
  flex-direction: column;
  gap: 1.563rem;
}
.benefit-list .benefit-item span {
  font-size: 1.5rem;
  line-height: 1.813rem;
  font-weight: 500;
}

.benifit-section {
  padding: 9.938rem 2rem 0;
  background: var(--bg-color);
  color: #fff;
  margin-bottom: 12rem;
}
.benifit-section img {
  object-fit: cover;
}
.benifit-section h2 {
  font-size: 2.5rem;
  line-height: 100%;
  font-weight: 700;
  margin-bottom: 3.063rem;
}
.benifit-section p {
  line-height: 1.688rem;
  max-width: 960px;
  letter-spacing: 0.69px;
}
.benifit-section .benifit-detail {
  display: flex;
  gap: 4.313rem;
  margin-top: 5.375rem;
}
.benifit-section .benifit-content {
  padding-bottom: 10rem;
}
.benifit-section .benefit-list {
  margin-top: 1.688rem;
  width: 114%;
}

.about-us {
  padding: 0 2rem 8.75rem;
  display: flex;
  justify-content: center;
}
.about-us .about-content {
  max-width: 1440px;
  padding: 0 5rem 5rem 0;
  background: #F2F2F2;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 5.563rem;
  color: #000;
  position: relative;
}
.about-us .about-content .about-text {
  display: flex;
  flex-direction: column;
  gap: 1.625rem;
  margin-top: -8.3rem;
  padding-top: 5.5rem;
  position: relative;
  padding-left: 5rem;
}
.about-us .about-content .about-text::before {
  content: "";
  position: absolute;
  left: 0;
  height: 100%;
  width: 720px;
  top: 0;
  background: #f2f2f2;
}
.about-us .about-content span.tag-line {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 2px;
  line-height: 100%;
  position: relative;
}
.about-us .about-content h2 {
  font-size: 2.563rem;
  line-height: 3.188rem;
  letter-spacing: -2px;
  font-weight: 300;
  position: relative;
}
.about-us .about-content .speakers-section {
  padding: 0 0 0 5rem;
}

.post-section {
  display: flex;
  justify-content: center;
  color: #000;
  padding: 0 2rem 19.188rem;
}
.post-section .post-content {
  max-width: 1348px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 3.625rem;
}
.post-section .post-text {
  display: flex;
  flex-direction: column;
  gap: 1.625rem;
}
.post-section .post-text span.tag-line {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  line-height: 100%;
  position: relative;
}
.post-section .post-text h2 {
  font-size: 2.563rem;
  line-height: 3.188rem;
  letter-spacing: -2px;
  font-weight: 300;
  position: relative;
}
.post-section .post-list {
  display: flex;
  gap: 3.5rem;
}
.post-section .post-list .blog-post {
  width: 65.1%;
}
.post-section .post-list .blog-post .post-card {
  display: flex;
  flex-direction: column;
  gap: 3.063rem;
  color: #000;
}
.post-section .post-list .blog-post .post-card img.wp-post-image {
  width: 100%;
  height: auto;
}
.post-section .post-list .blog-post .post-card .post-info {
  display: flex;
  flex-direction: column;
  gap: 0.938rem;
}
.post-section .post-list .blog-post .post-card .post-info time {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  line-height: 100%;
}
.post-section .post-list .blog-post .post-card .post-info h2 {
  font-size: 2.063rem;
  line-height: 2.563rem;
  font-weight: 300;
}
.post-section .post-list .news-post {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2.625rem;
  padding-top: 1.5rem;
}
.post-section .post-list .news-post h2 {
  font-size: 1.125rem;
  line-height: 100%;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
}
.post-section .post-list .news-post .news-item {
  display: flex;
  flex-direction: column;
  gap: 1.375rem;
  padding-bottom: 2.563rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1490196078);
  color: #000;
}
.post-section .post-list .news-post .news-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.post-section .post-list .news-post .news-item h2 {
  font-size: 1.25rem;
  line-height: 1.813rem;
  font-weight: 400;
  text-transform: none;
}
.post-section .post-list .news-post .news-item time {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  line-height: 100%;
}

.client-logo {
  padding: 0 2rem 7.625rem;
}
.client-logo .container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: center;
  justify-content: center;
}
.client-logo .container .client-logo-item {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

body:not(.home) .about-us {
  padding-bottom: 16.438rem;
}

.single-member .event-detail {
  align-items: flex-start;
}
.single-member img.logo-image {
  margin-bottom: 5.438rem;
  min-width: 243px;
}
.single-member .description1 {
  font-size: 1.938rem;
  line-height: 2.563rem;
  letter-spacing: 0.69px;
  margin-bottom: 3.438rem;
}
.single-member img.member-image {
  width: 100%;
  margin-bottom: 5.438rem;
}
.single-member .description2 {
  line-height: 1.688rem;
  letter-spacing: 0.69px;
  display: flex;
  flex-direction: column;
  gap: 0.938rem;
}
.single-member .description2 strong {
  font-weight: 700;
}
.single-member .description2 ul {
  padding-left: 40px;
}
.single-member .event-section {
  margin-bottom: 11.125rem;
}
.single-member .event-section .form-area {
  padding: 0;
  background: transparent;
}
.single-member .event-section .right-content {
  padding: 25.438rem 0 7.188rem 7.5rem;
}
.single-member .event-section .right-content span.bg-area {
  z-index: -1;
}

.agency-info {
  padding: 7.938rem 0 0 7.5rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2.188rem;
  color: #000;
  line-height: 1.688rem;
}
.agency-info img.agency-logo {
  max-width: 260px;
}
.agency-info .contact-info {
  display: flex;
  flex-direction: column;
  gap: 1.188rem;
}
.agency-info .contact-info span {
  display: flex;
  align-items: center;
  gap: 1.438rem;
}
.agency-info .contact-info span a {
  color: #000;
}
.agency-info .social {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.agency-info .social span {
  font-weight: 700;
}
.agency-info .social .links {
  display: flex;
  align-items: center;
  gap: 0.625rem;
}

.expert .content-box {
  line-height: 1.688rem;
  letter-spacing: 0.69px;
  display: flex;
  flex-direction: column;
  gap: 0.938rem;
}
.expert .content-box h3 {
  font-size: 1.5rem;
  font-weight: 500;
}

.member-area {
  padding: 5.313rem 2rem 8.75rem;
}
.member-area .container {
  display: flex;
  flex-direction: column;
  gap: 8.563rem;
}
.member-area .agency-block {
  display: flex;
  flex-direction: column;
  gap: 1.625rem;
  align-items: center;
}
.member-area .agency-members {
  display: flex;
  gap: 2rem 0.813rem;
  flex-wrap: wrap;
  justify-content: center;
}
.member-area .agency-list {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 5rem;
}
.member-area .agency-list .agency-logo {
  height: 106px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 0;
}
.member-area .agency-list .agency-logo img {
  max-height: 100%;
}
.member-area .agency-list .agency-block {
  gap: 0;
}
.member-area .member-card {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  max-width: 240px;
}
.member-area .member-card img.wp-post-image {
  width: 100%;
  height: 240px;
  object-fit: cover;
  aspect-ratio: 1/1;
}
.member-area .member-card .member-info {
  display: flex;
  flex-direction: column;
}
.member-area .member-card .member-info span {
  color: #000;
  letter-spacing: 0.69px;
}
.member-area .member-card .member-info span.member-name {
  font-size: 1.5rem;
  font-weight: 500;
}

.blog-area {
  display: flex;
  justify-content: center;
  margin-top: -8.375rem;
  position: relative;
  overflow: hidden;
  padding: 0 2rem;
}

.blog-container {
  max-width: 1444px;
  position: relative;
  width: 100%;
}
.blog-container .bg-area {
  background: var(--bg-color);
  position: absolute;
  width: 100vw;
  top: 0;
  height: 100%;
  left: 100%;
  max-height: 940px;
}

.blog-content {
  position: relative;
  background: #fff;
  z-index: 1;
  width: 100%;
  padding: 10.25rem 7.5rem 15.5rem;
  color: #000;
}
.blog-content .blog-header {
  display: flex;
  flex-direction: column;
  gap: 1.625rem;
  margin-bottom: 3.625rem;
}
.blog-content .blog-header .tag-line {
  font-size: 0.75rem;
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: 2px;
}
.blog-content .blog-header h2 {
  font-size: 2.563rem;
  line-height: 3.188rem;
  letter-spacing: -2px;
  font-weight: 300;
}

.posts-wrapper {
  display: flex;
  flex-direction: column;
  gap: 4.125rem;
  color: #000;
}

.featured-post {
  display: flex;
  gap: 4.375rem;
  align-items: center;
  padding-bottom: 4.125rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}
.featured-post img.wp-post-image {
  width: 100%;
  object-fit: cover;
  height: auto;
}

.post-content-area {
  display: flex;
  flex-direction: column;
  max-width: 357px;
}
.post-content-area span.post-date {
  font-size: 0.938rem;
  line-height: 1.563rem;
  font-weight: 400;
  margin-bottom: 4px;
}
.post-content-area h2 {
  font-size: 1.938rem;
  line-height: 2.563rem;
  font-weight: 700;
  margin-bottom: 1.797rem;
}
.post-content-area h2 a {
  color: var(--secondry-color);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.post-content-area p {
  font-size: 1.25rem;
  line-height: 1.938rem;
  margin-bottom: 2.357rem;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.post-content-area a.read-more {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-weight: 600;
  line-height: 1.563rem;
  color: #000;
  transition: gap 0.3s ease;
}
.post-content-area a.read-more:hover {
  gap: 1.5rem;
}

.other-posts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 7.418rem 3.919rem;
}

.pagination-container {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 4rem;
}
.pagination-container .page-numbers {
  display: inline-block;
  padding: 8px 16px;
  margin: 0 4px;
  background: #f4f4f4;
  color: #333;
  text-decoration: none;
  border-radius: 4px;
  font-weight: 600;
}
.pagination-container .page-numbers.current {
  background: #E89B4E;
  color: #fff;
}

.detail-page {
  max-width: 1203px;
  width: 100%;
  position: relative;
  color: #000;
}
.detail-page .blog-content {
  padding: 7.125rem 7.5rem 12.063rem;
  display: flex;
  flex-direction: column;
  gap: 3.438rem;
}
.detail-page .wp-post-image {
  width: 100%;
}
.detail-page .detail-section {
  display: flex;
  flex-direction: column;
  gap: 3.438rem;
  padding: 0 7.5rem;
}
.detail-page .detail-header {
  display: flex;
  flex-direction: column;
}
.detail-page .detail-header .post-date {
  font-size: 0.938rem;
  line-height: 1.563rem;
  font-weight: 400;
  margin-bottom: 1rem;
}
.detail-page .detail-header h2 {
  font-size: 2.688rem;
  line-height: 3.313rem;
  color: var(--secondry-color);
  margin-bottom: 1.563rem;
}
.detail-page .detail-header .extra-info {
  padding: 0.813rem 0.625rem;
  border-top: 1px solid rgba(0, 0, 0, 0.1490196078);
  border-bottom: 1px solid rgba(0, 0, 0, 0.1490196078);
  font-size: 0.875rem;
  line-height: 100%;
  font-weight: 400;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.detail-page .detail-header .extra-info a {
  color: #000;
  display: flex;
  align-items: center;
  gap: 6px;
}
.detail-page .post-content {
  font-size: 1.125rem;
  line-height: 1.938rem;
  display: flex;
  flex-direction: column;
  gap: 0.938rem;
}
.detail-page .post-content a {
  color: #000;
  text-decoration: underline;
}
.detail-page .post-content blockquote {
  font-size: 1.5rem;
  line-height: 1.875rem;
  font-weight: 500;
  padding: 1.563rem 0 1.563rem 2.875rem;
  border-left: 3px solid var(--secondry-color);
}
.detail-page .post-content h6 {
  font-size: 0.875rem;
  line-height: 1.313rem;
  font-weight: 300;
}

.related-articles {
  padding: 0 2rem 8.75rem;
}
.related-articles .container {
  display: flex;
  flex-direction: column;
  gap: 2.625rem;
}
.related-articles h2.heading {
  font-size: 1.688rem;
  line-height: 2.063rem;
  color: #000;
  font-weight: 700;
}

.mobile-menu-area {
  display: none;
}

footer {
  background: #000;
  padding: 15.438rem 2rem 5.25rem;
  color: #fff;
}
footer .container {
  display: flex;
  align-items: center;
  gap: 7.563rem;
  max-width: 960px;
}
footer .column1 {
  display: flex;
  flex-direction: column;
  gap: 1.699rem;
  align-items: flex-start;
  max-width: 118px;
}
footer p {
  font-size: 0.813rem;
  line-height: 1.313rem;
}
footer .column2 {
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 2.688rem;
}
footer .footer-menu {
  display: flex;
  gap: 5.375rem;
}
footer .footer-menu .footer-row {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
footer .footer-menu a {
  font-size: 1rem;
  color: #fff;
  line-height: 1rem;
}
footer .social-media {
  display: flex;
  gap: 4.188rem;
  align-items: center;
}
footer .social-media .icon-list {
  display: flex;
  align-items: center;
  gap: 2rem;
}
footer .social-media:after {
  content: "";
  flex: 1;
  height: 1px;
  background: rgba(255, 255, 255, 0.4);
}
footer .pages-list {
  display: flex;
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  align-self: flex-start;
  padding: 0;
  min-width: 534px;
}
footer .pages-list a {
  font-size: 0.75rem;
  color: #fff;
  line-height: 100%;
  padding: 10px;
}
footer .footer-mb-text {
  display: none;
}

.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  padding: 100px 20px;
  flex-wrap: wrap;
  overflow: auto;
}

.popup-content {
  background: #FAFAFA;
  padding: 0;
  max-width: 500px;
  width: 100%;
  position: relative;
  border: 1px solid #FAFAFA;
  border-radius: 10px;
}
.popup-content input[type=text], .popup-content input[type=email] {
  width: 100%;
  height: 50px;
  padding: 10px;
  border: 1px solid #ccc;
  box-shadow: none;
  border-radius: 5px;
  margin-bottom: 1rem;
  font-size: 1rem;
}
.popup-content .register-btn {
  font-size: 1rem;
  filter: brightness(0) saturate(100%) invert(64%) sepia(11%) saturate(563%) hue-rotate(156deg) brightness(89%) contrast(89%);
  font-weight: bold;
}

.popup-close {
  position: absolute;
  right: 15px;
  top: 15px;
  cursor: pointer;
  width: 20px;
  height: 20px;
}
.popup-close img {
  filter: brightness(0) saturate(100%) invert(53%) sepia(5%) saturate(16%) hue-rotate(323deg) brightness(100%) contrast(90%);
}

@media (max-width: 1600px) {
  .event-section .event-container {
    padding-right: 4rem;
    max-width: 1376px;
  }
  .event-section .event-detail {
    padding: 6.188rem 5.75rem 0 5.75rem;
  }
  .speakers-section {
    padding: 0 2rem 10.938rem;
  }
  .services {
    padding: 10.063rem 2rem 17.063rem;
  }
  .banner-area {
    padding: 10rem 1rem 5rem 8.75rem;
  }
  .advisory::before {
    width: 90vw;
    height: calc(100% - 43px);
  }
  .event-listing-area .event-sponsers .sp-logo {
    position: unset;
  }
  .benifit-section .benefit-list {
    width: 100%;
  }
}
@media (max-width: 1360px) {
  .advisory {
    padding: 4rem 2rem;
  }
  .advisory::before {
    width: 100%;
    height: 100%;
    left: 0;
  }
  .blog-content, .detail-page .blog-content {
    padding: 5.25rem 5.5rem 7.5rem;
  }
  .featured-post {
    align-items: flex-start;
  }
  .detail-page .detail-section {
    padding: 0;
  }
  .content-section .container {
    display: flex;
    gap: 3rem;
  }
  .landing-page .speakers-section {
    padding: 4.563rem 2rem 10.938rem;
  }
  .event-listing-area .event-agenda {
    max-width: 100%;
  }
  .benifit-section .benifit-detail {
    align-items: flex-start;
  }
  .benifit-section .benifit-detail img {
    width: 40%;
  }
}
@media (max-width: 1200px) {
  .event-section .event-detail {
    padding: 6.188rem 4rem 0 4rem;
  }
  .event-section .form-area {
    padding: 10.188rem 0 7.625rem 4rem;
  }
  .hero-section .hero-shade {
    max-width: 590px;
  }
  nav.menu-item ul a {
    padding: 0.625rem 0.8rem;
    font-size: 0.8rem;
  }
  .logo img {
    width: 180px;
  }
  .banner-area .banner-content {
    padding-left: 0;
  }
  .services-area {
    padding: 6.5rem 2rem;
  }
  .services-area .container {
    gap: 3.063rem;
  }
  .services-area .services-content h2 {
    font-size: 2.56rem;
    line-height: 3.188rem;
  }
  .services-area .services-list {
    gap: 2rem;
  }
  .advisory {
    gap: 3rem;
  }
  .about-us .about-content {
    padding: 0 3rem 3rem 0;
    gap: 3.563rem;
  }
  .about-us .about-content .about-text {
    padding-top: 3.5rem;
    padding-left: 3rem;
  }
  .about-us .about-content .speakers-section {
    padding: 0 0 0 3rem;
  }
  .about-us {
    padding: 0 2rem 5.75rem;
  }
  .client-logo .container {
    gap: 4rem;
  }
  .client-logo .container .client-logo-item img {
    max-width: 100%;
  }
  .services-area .services-content.second {
    margin-bottom: 0;
  }
  .event-listing-area .agenda-session {
    gap: 2.688rem;
  }
  .event-listing-area .agenda-session .agenda-label, .event-listing-area .timeline-area .time-line span.time {
    font-size: 0.8rem;
  }
  .event-listing-area .timeline-area {
    gap: 2.938rem;
  }
  .event-listing-area .timeline-area .time-line .event-info p {
    line-height: 1.3rem;
    font-size: 0.8rem;
  }
  .event-listing-area .container {
    gap: 1.625rem;
  }
}
@media (min-width: 1024px) {
  .services-area .services-list .services-item:hover {
    background: var(--bg-color);
  }
  .services-area .services-list .services-item:hover span, .services-area .services-list .services-item:hover p {
    color: #fff;
  }
  .services-area .services-list .services-item:hover img {
    filter: brightness(0) saturate(100%) invert(100%) sepia(100%) saturate(0%) hue-rotate(350deg) brightness(103%) contrast(102%);
  }
  .client-logo-item {
    transition: transform 0.3s ease;
  }
  .client-logo-item:hover {
    transform: scale(1.1);
  }
  .speakers-section .speaker {
    overflow: hidden;
  }
  .speakers-section .speaker img {
    transition: transform 0.3s ease;
  }
  .speakers-section .speaker:hover img {
    transform: scale(1.1);
  }
}
@media (max-width: 1024px) {
  .hero-section h1 {
    font-size: 2.5rem;
    line-height: 3rem;
  }
  .event-section .form-area {
    padding: 6.188rem 0 4.625rem 3rem;
  }
  .event-section .event-detail {
    padding: 5.188rem 3rem 0 3rem;
  }
  .event-section .event-container {
    padding-right: 3rem;
  }
  .hero-section .hero-shade {
    max-width: 500px;
  }
  .speakers-section .speakers {
    grid-template-columns: repeat(3, 1fr);
  }
  .event-section {
    margin-bottom: 3.75rem;
  }
  .info-text {
    width: 92.4%;
  }
  .info-text::before {
    max-width: 100%;
  }
  nav.menu-item {
    display: none;
  }
  .mobile-menu-area {
    display: flex;
  }
  .mobile-menu-toggle {
    background: none;
    border: 0;
    cursor: pointer;
  }
  .mobile-menu-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    background: #fff;
    margin: 4px 0;
    transition: 0.2s;
  }
  .mobile-menu {
    position: fixed;
    left: 100%;
    top: 0;
    bottom: 0;
    width: 100%;
    background: var(--bg-color);
    padding: 3.5rem 2rem;
    z-index: 10;
    transition: left 0.3s ease;
  }
  .mobile-menu.is-open {
    left: 0;
  }
  .mobile-menu ul.mb-menu-list {
    list-style: none;
    display: flex;
    flex-direction: column;
  }
  .mobile-menu ul.mb-menu-list a {
    padding: 1.2rem 0;
    color: #fff;
    font-size: 1.2rem;
    display: block;
  }
  .mobile-menu ul.mb-menu-list li.booking {
    position: absolute;
    bottom: 2rem;
    width: 100%;
    left: 0;
    padding: 0 2rem;
  }
  .mobile-menu ul.mb-menu-list li.booking a {
    background: #fff;
    color: #383838;
    border-radius: 5px;
    padding: 1.2rem;
    text-align: center;
    text-transform: uppercase;
    font-weight: 600;
  }
  .mobile-menu .close-menu {
    padding: 0;
    background: transparent;
    border: 0;
    width: 25px;
    position: absolute;
    right: 2rem;
    cursor: pointer;
  }
  .banner-area {
    padding-left: 4.75rem;
    height: 75vh;
  }
  .banner-area .banner-content h1 {
    font-size: 2.5rem;
    line-height: 3rem;
  }
  .partner-area {
    padding-left: 4.75rem;
    margin-bottom: 3.563rem;
  }
  .partner-area .partner-content {
    padding: 1.5rem 3rem 1.5rem 3rem;
    gap: 4.5rem;
  }
  .partner-area .partner-content h2 {
    font-size: 2rem;
    line-height: 2.5rem;
  }
  .services-area .services-list {
    grid-template-columns: repeat(2, 1fr);
  }
  .services {
    padding: 10.063rem 2rem 10.063rem;
  }
  .about-us {
    padding: 0 0rem 5.75rem;
  }
  .about-us .about-content .speakers-section {
    padding: 0;
  }
  .about-us .about-content {
    padding: 0 2rem 3.5rem;
  }
  .about-us .about-content .about-text {
    margin-top: 0;
    padding-left: 0rem;
  }
  .about-us .about-content .about-text::before {
    display: none;
  }
  .post-section .post-list .blog-post {
    width: 55%;
  }
  footer .container {
    gap: 5.563rem;
  }
  footer {
    padding: 15.438rem 2rem 2.25rem;
  }
  .event-section .form-area.inner-pages {
    padding: 6.188rem 0 4.625rem 3rem;
  }
  .member-area .agency-list {
    gap: 1rem;
  }
  .member-area .container {
    gap: 4.563rem;
  }
  .single-member .event-section .form-area {
    padding: 0;
  }
  .single-member .event-section .right-content {
    padding: 6.188rem 0 4.625rem 3rem;
  }
  .single-member img.logo-image {
    margin-bottom: 3.438rem;
  }
  .single-member .description1 {
    font-size: 1.5rem;
    line-height: 2rem;
  }
  .single-member img.member-image {
    margin-bottom: 3.438rem;
  }
  .agency-info {
    padding: 3rem 0 0 3rem;
  }
  .blog-content, .detail-page .blog-content {
    padding: 3.25rem 3.5rem 5.5rem;
  }
  .detail-page .post-content p {
    padding-left: 0 !important;
  }
  .featured-post {
    gap: 3.5rem;
  }
  .post-content-area {
    max-width: 290px;
  }
  .post-content-area h2 {
    font-size: 1.5rem;
    line-height: 2rem;
    margin-bottom: 0.797rem;
  }
  .other-posts-grid {
    gap: 4.418rem 1.919rem;
  }
  .post-content-area p {
    font-size: 1rem;
    line-height: 1.5rem;
    margin-bottom: 1.357rem;
  }
  .event-listing-area .container {
    flex-direction: column;
    align-items: center;
  }
  .benefit-list {
    flex-direction: column;
  }
}
@media (max-width: 768px) {
  body {
    background: var(--bg-color);
  }
  .event-section .event-container {
    flex-direction: column;
    padding-right: 0.938rem;
  }
  .event-section .event-detail, .event-section .form-area {
    width: 100%;
  }
  .event-section .bg-area {
    display: none;
  }
  .event-section .event-detail {
    padding: 5.188rem 3rem 3rem 3rem;
    border-bottom-right-radius: 10px;
  }
  .event-section .form-area {
    padding: 6.188rem 3rem 4.625rem 3rem;
  }
  .speakers-section .speakers {
    grid-template-columns: repeat(2, 1fr);
  }
  .event-section {
    margin-bottom: 0;
  }
  .speakers-section {
    padding: 0 0.938rem 0 0;
  }
  .speakers-section .container {
    background: #fff;
    padding: 6.188rem 3rem 4.625rem 3rem;
    border-bottom-right-radius: 10px;
  }
  .speakers-section .speaker img {
    filter: grayscale(100%);
  }
  .speakers-section .speaker .speaker-info .content {
    transform: translateY(0);
  }
  .speakers-section .speaker .speaker-info p.description {
    display: none;
  }
  .services {
    padding: 6.188rem 3rem 8.188rem;
  }
  .services .services-list {
    flex-direction: column;
  }
  .services .services-list .service {
    padding-right: 0;
    border-right: 0;
  }
  .services .container {
    gap: 4.813rem;
  }
  .banner-area {
    padding: 5rem 1.938rem;
  }
  .partner-area {
    padding-left: 0;
    margin-bottom: 0;
    padding-right: 0.938rem;
  }
  .partner-area .partner-content {
    padding: 1.5rem 3rem;
  }
  .advisory {
    padding: 4rem 3rem;
    flex-direction: column;
    gap: 3rem;
  }
  .advisory .video-area {
    width: 100%;
    margin-bottom: 0;
  }
  .advisory .advisory-content {
    max-width: 100%;
    gap: 1rem;
  }
  .services-area {
    padding: 0 0.938rem 0 0;
  }
  .services-area .container {
    padding: 4.188rem 3rem 2.625rem;
    background: #fff;
    border-bottom-right-radius: 10px;
  }
  .services-area .services-content {
    align-items: flex-start;
  }
  .services-area .services-content h2 {
    text-align: left;
  }
  .about-us {
    padding: 2rem 3rem 4.75rem;
    background: #fff;
  }
  .about-us .about-content {
    padding: 0 3rem 3.5rem;
    margin-top: -7rem;
  }
  .post-section {
    background: #fff;
  }
  .post-section .post-list {
    flex-direction: column;
  }
  .post-section .post-list .blog-post {
    width: 100%;
  }
  .info-text {
    margin: -11.675rem 0 -10.6rem;
  }
  footer {
    padding: 15.438rem 2rem 1.25rem;
  }
  footer .container {
    gap: 1.563rem;
    flex-direction: column;
    align-items: flex-start;
  }
  footer .column1 {
    max-width: 100%;
  }
  footer .column1 p {
    display: none;
  }
  footer .footer-mb-text {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    padding-top: 1rem;
  }
  footer .pages-list {
    display: none;
  }
  footer .footer-mb-text .pages-list {
    display: flex;
    min-width: auto;
    border: 0;
  }
  footer .column2 {
    gap: 1.688rem;
    width: 100%;
  }
  .mobile-menu ul.mb-menu-list li.booking a {
    font-size: 1rem;
  }
  .event-section .form-area.inner-pages {
    padding: 6.188rem 3rem 4.625rem 3rem;
  }
  .services-area + .client-logo {
    margin-top: -9px;
  }
  .client-logo {
    padding: 0 0.938rem 0 0;
  }
  .client-logo .container {
    padding: 3rem 3rem 2rem;
    background: #ffffff;
    border-bottom-right-radius: 10px;
    gap: 3rem;
  }
  .member-area {
    padding: 0 0.938rem 0 0;
  }
  .member-area .container {
    padding: 4.188rem 3rem 2.625rem;
    background: #fff;
    border-bottom-right-radius: 10px;
  }
  .single-member .event-section .form-area {
    padding: 0;
  }
  .single-member .event-section .right-content {
    padding: 6.188rem 3rem 4.625rem 3rem;
  }
  .agency-info {
    padding: 3rem;
    background: #fff;
  }
  .single-member .event-section {
    margin-bottom: 0;
  }
  .featured-post {
    gap: 1.5rem;
    flex-direction: column;
  }
  .blog-content, .detail-page .blog-content {
    padding: 3rem;
  }
  .blog-container .bg-area {
    display: none;
  }
  .blog-area {
    padding: 0 0.938rem 0 0;
  }
  .blog-content {
    border-bottom-right-radius: 10px;
  }
  .other-posts-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .post-content-area {
    max-width: 100%;
  }
  .detail-page .blog-content {
    border-radius: 0;
  }
  .related-articles {
    padding: 0 0.938rem 0 0;
  }
  .related-articles .container {
    padding: 0 3rem 3rem;
    background: #fff;
    border-bottom-right-radius: 10px;
  }
  .detail-page .post-content {
    font-size: 1rem;
    line-height: 1.5rem;
  }
  .content-section {
    padding: 0 0.938rem 0 0;
  }
  .content-section .container {
    display: flex;
    gap: 3rem;
    flex-direction: column;
    background: #fff;
    padding: 4rem 3rem 3rem;
    border-bottom-right-radius: 10px;
  }
  .event-listing-area {
    padding: 0 0.938rem 0 0;
  }
  .event-listing-area .container {
    padding: 5.188rem 3rem 3rem 3rem;
    background: #fff;
  }
  .event-listing-area .agenda-session {
    gap: 1.688rem;
  }
  .event-listing-area .timeline-area {
    gap: 1rem;
  }
  .event-listing-area .timeline-area .time-line {
    flex-direction: column;
    border-bottom: 1px solid rgba(0, 0, 0, 0.2509803922);
    padding-bottom: 1rem;
    gap: 1rem;
  }
  .event-listing-area .timeline-area .time-line:last-child {
    padding-bottom: 0;
    border-bottom: 0;
  }
  .event-listing-area .timeline-area .time-line .event-info {
    gap: 0.5rem;
  }
  .event-listing-area .agenda-session .agenda-label {
    flex-direction: column;
  }
  .event-listing-area .agenda-session .agenda-label, .event-listing-area .timeline-area .time-line span.time {
    font-size: 1rem;
  }
  .event-listing-area .timeline-area .time-line .event-info p {
    line-height: 1.563rem;
    font-size: 1rem;
  }
  .landing-page .speakers-section {
    padding: 0 0.938rem 0 0;
  }
  .landing-page .speakers-section .container {
    padding: 3.188rem 3rem 4.625rem 3rem;
  }
  .benefit-area {
    flex-direction: column;
    gap: 1rem;
  }
  .benefit-area .info-box {
    padding: 3rem 0.188rem 3rem 0;
  }
  .benefit-area .info-box .text {
    max-width: 96%;
  }
  .benifit-section {
    padding: 4rem 3rem;
    margin-bottom: 0;
  }
  .benifit-section .benifit-content {
    padding-bottom: 0;
  }
  .benifit-section .benifit-detail {
    flex-direction: column;
    gap: 2rem;
  }
  .benifit-section .benifit-detail img {
    width: 100%;
    aspect-ratio: 1/1;
  }
}
@media (max-width: 600px) {
  .banner-area {
    padding: 5rem 1.938rem 5rem 0.938rem;
  }
  header {
    padding: 1.75rem 0.938rem 1.75rem 0.938rem;
  }
  .hero-section h1 {
    font-size: 2.375rem;
    line-height: 2.813rem;
  }
  .hero-section {
    padding: 12.375rem 0.938rem 3.5rem;
  }
  .hero-section .hero-shade {
    display: none;
  }
  .hero-section .hero-shade.mobile {
    z-index: 0;
    display: block;
    width: unset;
    max-width: unset;
  }
  .event-section {
    margin-top: 0;
    margin-bottom: 0;
  }
  .event-section .event-detail {
    padding: 2.125rem 1.313rem 2.875rem 2.313rem;
  }
  .event-section .event-detail > h2 {
    margin-bottom: 2.3rem;
    font-size: 1.688rem;
    line-height: 100%;
  }
  .event-section .event-detail .video-area {
    margin-bottom: 3rem;
  }
  .event-section .event-detail .event-agenda span.tagline {
    margin-bottom: 0;
  }
  .event-section .event-detail .event-agenda h2 {
    font-size: 1.875rem;
    margin-bottom: 2rem;
  }
  .event-section .form-area {
    padding: 3.688rem 0rem 4.75rem 1rem;
  }
  .event-section .form-area .form-content > p {
    max-width: 100%;
  }
  .speakers-section .container {
    padding: 2.438rem 1.313rem 3.875rem 2.313rem;
    gap: 2rem;
  }
  .speakers-section .speakers {
    grid-template-columns: repeat(1, 1fr);
  }
  .services {
    padding: 6.563rem 0 8.063rem 0.938rem;
  }
  .services .service-heading > h2 {
    font-size: 2.375rem;
    line-height: 2.813rem;
  }
  .services .container {
    gap: 4.125rem;
  }
  .services .services-list {
    padding: 0 3.563rem 0 1.75rem;
  }
  .info-text h2 {
    font-size: 2.125rem;
    line-height: 2.563rem;
  }
  footer {
    padding: 13.438rem 2rem 1.25rem;
  }
  footer .container {
    gap: 2.25rem;
    flex-direction: column;
    align-items: flex-start;
  }
  .partner-area .partner-content {
    flex-direction: column;
    gap: 1rem;
    align-items: flex-start;
  }
  .partner-area .partner-content h2 {
    max-width: 100%;
    font-size: 1.5rem;
    line-height: 2rem;
  }
  .partner-area .partner-content p {
    line-height: 1.5rem;
  }
  .banner-area .banner-content h1 {
    font-size: 2.375rem;
    line-height: 2.813rem;
  }
  .services-area .services-list {
    grid-template-columns: repeat(1, 1fr);
  }
  .partner-area .partner-content {
    padding: 1.5rem 2rem 1.5rem 2rem;
  }
  .advisory {
    padding: 4rem 0.938rem 4rem 2rem;
  }
  .services-area .container {
    padding: 4.188rem 2rem 2.625rem 2rem;
  }
  .advisory .advisory-content h2, .services-area .services-content h2, .about-us .about-content h2, .post-section .post-text h2 {
    font-size: 2.375rem;
    line-height: 2.813rem;
  }
  .about-us {
    padding: 2rem 2rem 4.75rem;
  }
  .about-us .about-content {
    padding: 0 2rem 2rem;
  }
  footer .social-media:after {
    display: none;
  }
  footer .social-media .icon-list {
    gap: 1.3rem;
    flex-wrap: wrap;
  }
  footer .footer-menu {
    flex-direction: column;
    gap: 20px;
  }
  footer .footer-mb-text {
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    padding-top: 0.5rem;
    flex-direction: column-reverse;
    justify-content: center;
    align-items: center;
  }
  footer .footer-mb-text .pages-list {
    width: 100%;
    justify-content: center;
  }
  .client-logo .container {
    gap: 4rem;
    grid-template-columns: repeat(2, 1fr);
    padding: 3rem 2rem 2rem;
  }
  .member-area .container {
    padding: 4.188rem 2rem 2.625rem 2rem;
    gap: 1rem;
  }
  .agency-info {
    padding: 2rem;
  }
  .blog-area {
    margin-top: 0;
  }
  .other-posts-grid {
    grid-template-columns: repeat(1, 1fr);
  }
  .blog-content, .detail-page .blog-content {
    padding: 2rem;
  }
  .related-articles .container {
    padding: 0 2rem 2rem;
  }
}

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