/********** Template CSS **********/
/*--------------------------------------------------------------
 1.GENERAL
  --------------------------------------------------------------*/

:root {
  --bg-white: #ffffff;
  --bg-white-rgb: 255, 255, 255;
  --bg-black: #000000;
  --bg-black-rgb: 0, 0, 0;
  --primary-color: #f16623;
  --primary-color-rgb: 241, 102, 35;
  --secondary-color: #f4f4f4;
  --secondary-color-rgb: 244, 244, 244;
  --banner-bg-color: #fffbd3;
  --banner-bg-color-rgb: 255, 251, 211;
  --default-font-color: #212529;
  --default-font-color-rgb: 33, 37, 41;
  --font-primary: "Barlow Condensed", sans-serif;
  --font-secondary: "Montserrat", sans-serif;
  --body-line-height: 1.8;
  --default-size: 16px;
}
body {
  line-height: var(--body-line-height);
  font-family: var(--font-secondary);
  -webkit-font-smoothing: antialiased;
  font-size: var(--dfault-size);
  color: var(--default-font-color);
  background-color: var(--bg-white);
  margin: 0;
  padding: 0;
}
/*** Heading ***/

h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5,
h6,
.h6 {
  font-family: var(--font-primary);
  font-weight: 700;
  color: var(--bg-black) !important;
  letter-spacing: 0.5px;
}
h1,
h2,
.fw-bold {
  font-weight: 700 !important;
}

h3,
h4,
.fw-semi-bold {
  font-weight: 600 !important;
}

h5,
h6,
.fw-medium {
  font-weight: 500 !important;
}

/*** Button ***/
.btn {
  font-family: var(--font-secondary);
  font-weight: 500;
  transition: 0.5s;
  text-transform: uppercase !important;
}
.btn:hover {
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
  color: var(--bg-white) !important;
  background: var(--primary-color) !important;
}

a {
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: var(--primary-color);
  text-decoration: none;
}
/*--------------------------------------------------------------
  2. SECTION & SECTION TITLE
  --------------------------------------------------------------*/
section,
.section {
  font-size: var(--default-size);
  color: var(--default-font-color);
  background-color: var(--bg-white);
  padding: 60px 0 !important;
  overflow: clip;
}

.section-title {
  text-align: center;
  padding-bottom: 60px;
}

.section-title h2 {
  font-size: 32px;
  font-weight: 700;
  position: relative;
}

.section-title h2:before,
.section-title h2:after {
  content: "";
  width: 50px;
  height: 2px;
  background: var(--primary-color);
  display: inline-block;
}

.section-title h2:before {
  margin: 0 15px 10px 0;
}

.section-title h2:after {
  margin: 0 0 10px 15px;
}

.section-title p {
  margin-bottom: 0;
}
/*--------------------------------------------------------------
 3. HEADER & NAVIGATION
  --------------------------------------------------------------*/
.navbar .dropdown-toggle::after {
  border: none;
  content: "\F4FE";
  font-family: "bootstrap-icons";
  font-size: 10px;
  font-weight: bold;
  vertical-align: middle;
  margin-left: 8px;
}

.navbar-light .navbar-nav .nav-link {
  position: relative;
  margin-right: 25px;
  padding: 35px 0;
  font-family: var(--font-secondary);
  color: var(--bg-black) !important;
  font-size: var(--dfault-size);
  font-weight: 500;
  outline: none;
  transition: 0.5s;
}

.sticky-top.navbar-light .navbar-nav .nav-link {
  padding: 20px 0;
  color: var(--bg-black) !important;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
  color: var(--primary-color) !important;
}

.navbar-light .navbar-brand small {
  font-family: var(--font-primary);
  font-weight: 700;
  color: var(--bg-black) !important;
  letter-spacing: 0.5px;
}

.navbar-light .navbar-brand img {
  max-height: 60px;
  transition: 0.5s;
}

.sticky-top.navbar-light .navbar-brand img {
  max-height: 45px;
}
.navbar-light .navbar-toggler {
  color: var(--primary-color) !important;
  border-color: var(--primary-color) !important;
}
@media (max-width: 991.98px) {
  .navbar-light {
    width: 100%;

    z-index: 999;
    background: var(--banner-bg-color);
  }

  .sticky-top.navbar-light {
    position: fixed;
    background: var(--bg-white);
  }

  .navbar-light .navbar-collapse {
    margin-top: 15px;
    border-top: 1px solid #000000;
  }

  .navbar-light .navbar-nav .nav-link,
  .sticky-top.navbar-light .navbar-nav .nav-link {
    padding: 10px 0;
    margin-left: 0;
    color: var(--dark) !important;
  }

  .navbar-light .navbar-brand img {
    max-height: 45px;
  }
}

@media (min-width: 992px) {
  .navbar-light {
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    border-bottom: 1px solid rgba(256, 256, 256, 1);
    z-index: 999;
  }

  .sticky-top.navbar-light {
    position: fixed;
    background: #ffffff;
  }

  .navbar-light .navbar-nav .nav-item .dropdown-menu {
    display: block;
    border: none;
    margin-top: 0;
    top: 150%;
    opacity: 0;
    visibility: hidden;
    transition: 0.5s;
  }

  .navbar-light .navbar-nav .nav-item:hover .dropdown-menu {
    top: 100%;
    visibility: visible;
    transition: 0.5s;
    opacity: 1;
  }

  .navbar-light .btn {
    color: var(--bg-white);
    background: var(--bg-black);
    border: none;
  }

  .sticky-top.navbar-light .btn {
    color: var(--bg-white);
    background: var(--bg-black);
    border: none;
  }
}
/*** Hero Header ***/
.hero-header {
  padding: 17rem 0;
  background: var(--banner-bg-color);
  overflow: hidden;
  display: block;
}

@media (max-width: 991.98px) {
  .hero-header {
    padding: 6rem 0 9rem 0;
  }
}
/*--------------------------------------------------------------
 3. FOOTER
  --------------------------------------------------------------*/
.footer_top {
  width: 100%;
  background: #1e2129;
  overflow: hidden;
}
.footer-about {
  background: var(--primary-color);
}
.text-social {
  color: var(--primary-color);
}
.btn-social {
  background: var(--primary-color);
  color: var(--bg-white);
}
.link-animated a {
  transition: 0.5s;
}

.link-animated a:hover {
  padding-left: 10px;
}
.footer_bottom {
  width: 100%;
  background: var(--bg-black);
  overflow: hidden;
}
/*--------------------------------------------------------------
 4. BACK-TO-TOP
  --------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  display: none;
  right: 45px;
  bottom: 45px;
  z-index: 99;
  background: var(--primary-color);
  color: var(--bg-white);
}
/*--------------------------------------------------------------
 5. CLIENTS-HOME PAGE
  --------------------------------------------------------------*/
.clients {
  padding: 10px 0 !important;
  background: var(--secondary-color) !important;
  display: block;
}

.clients .client-logo {
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}
.clients .client-logo h2 {
  margin: 0;
  padding: 0;
}
/*--------------------------------------------------------------
 6. ABOUT-HOME PAGE
  --------------------------------------------------------------*/

.about .content h3 {
  font-size: 16px;
  font-weight: 500;
  line-height: 19px;
  padding: 10px 20px;
  background: rgba(var(--primary-color-rgb), 0.2);
  color: var(--primary-color);
  border-radius: 7px;
  display: inline-block;
  overflow: hidden;
}

.about .content h2 {
  font-weight: 700;
}

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

/* .about .content .read-more {
    background: var(--bg-black);
    color: var(--bg-white);
    font-family: var(--font-secondary);
    font-weight: 500;
    font-size: 16px;
    letter-spacing: 1px;
    padding: 12px 24px;
    border-radius: 5px;
    transition: 0.3s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
  
  .about .content .read-more i {
    font-size: 18px;
    margin-left: 5px;
    line-height: 0;
    transition: 0.3s;
  }
  
  .about .content .read-more:hover {
    background: rgba(var(--primary-color-rgb), 0.8);
    padding-right: 19px;
  } 
  
  .about .content .read-more:hover i {
    margin-left: 10px;
  }*/

.about .icon-box {
  padding: 50px 40px;
  box-shadow: 0px 10px 50px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  transition: all 0.3s ease-out 0s;
  background-color: #fff;
}

.about .icon-box i {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  font-size: 32px;
  line-height: 0;
  transition: all 0.4s ease-out 0s;
  background-color: rgba(var(--primary-color-rgb), 0.05);
  color: var(--primary-color);
}

.about .icon-box h3 {
  margin-bottom: 10px;
  font-size: 24px;
  font-weight: 700;
}

.about .icon-box p {
  margin-bottom: 0;
}
.about .line_about p {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.about .icon-box a {
  text-transform: uppercase;
  color: var(--bg-black);
}
.about .icon-box a:hover {
  color: var(--primary-color);
}
.about .icon-box:hover i {
  background-color: var(--primary-color);
  color: var(--bg-white);
}

.about .icon-boxes .col-md-6:nth-child(2) .icon-box,
.about .icon-boxes .col-md-6:nth-child(4) .icon-box {
  margin-top: -40px;
}

@media (max-width: 768px) {
  .about .icon-boxes .col-md-6:nth-child(2) .icon-box,
  .about .icon-boxes .col-md-6:nth-child(4) .icon-box {
    margin-top: 0;
  }
}
/*--------------------------------------------------------------
7. STATS-HOME PAGE
  --------------------------------------------------------------*/
.stats {
  --default-color: #ffffff;
  --default-color-rgb: 255, 255, 255;
  --background-color: #000000;
  --background-color-rgb: 0, 0, 0;
  position: relative;
  padding: 120px 0;
}

.stats img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  z-index: 1;
}

.stats:before {
  content: "";
  background: rgba(var(--background-color-rgb), 0.6);
  position: absolute;
  inset: 0;
  z-index: 2;
}

.stats .container {
  position: relative;
  z-index: 3;
}

.stats .stats-item {
  padding: 30px;
  width: 100%;
}

.stats .stats-item span {
  font-size: 48px;
  display: block;
  color: var(--default-color);
  font-weight: 700;
}

.stats .stats-item p {
  padding: 0;
  margin: 0;
  font-family: var(--font-secondary);
  font-size: 16px;
  font-weight: 700;
  color: rgba(var(--default-color-rgb), 0.6);
}
/*--------------------------------------------------------------
8. EVENTS-HOME PAGE
  --------------------------------------------------------------*/
.recent-posts article {
  box-shadow: 0 4px 16px rgba(var(--default-font-color-rgb), 0.1);
  padding: 30px;
  height: 100%;
  border-radius: 10px;
  overflow: hidden;
  /* background: rgba(var(--primary-color-rgb), 0.3); */
}

.recent-posts .post-img {
  max-height: 240px;
  margin: -30px -30px 15px -30px;
  overflow: hidden;
}

.recent-posts .post-category {
  font-size: 16px;
  color: rgba(var(--default-font-color-rgb), 0.2);
  margin-bottom: 10px;
}

.recent-posts .title {
  font-size: 20px;
  font-weight: 600;
  padding: 0;
  margin: 0 0 20px 0;
  color: var(--bg-black);
}

.recent-posts .title a {
  color: var(--bg-black);
  transition: 0.3s;
}

.recent-posts .ev_desc p {
  max-height: auto;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  /* line-height: 2; */
  -webkit-line-clamp: 2;
  word-break: break-word;
}
.recent-posts .ev_desc p {
  display: none;
}
.recent-posts .ev_desc p:first-child {
  display: -webkit-box !important;
}

.recent-posts .title a:hover {
  color: var(--primary-color);
}

.recent-posts .post-author-img {
  width: 50px;
  border-radius: 50%;
  margin-right: 15px;
}

.recent-posts .post-author {
  font-weight: 600;
  margin-bottom: 5px;
}

.recent-posts .post-date {
  font-size: 14px;
  color: rgba(var(--default-font-color-rgb), 0.5);
  margin-bottom: 0;
}

/*--------------------------------------------------------------
9. SERVICES-HOME PAGE
  --------------------------------------------------------------*/
.services .service-item {
  position: relative;
  padding-top: 40px;
}

.services .service-item:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: #f4f4f4;
}

.services .service-item::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--primary-color);
  border-right: 5px solid var(--bg-white);
}

.services .service-item .icon {
  width: 48px;
  height: 48px;
  position: relative;
  margin-right: 50px;
  line-height: 0;
}

.services .service-item .icon i {
  color: rgba(var(--default-font-color-rgb), 0.7);
  font-size: 56px;
  transition: ease-in-out 0.3s;
  z-index: 2;
  position: relative;
}

.services .service-item .icon:before {
  position: absolute;
  content: "";
  height: 30px;
  width: 30px;
  background: rgba(var(--primary-color-rgb), 0.3);
  border-radius: 50px;
  z-index: 1;
  bottom: -15px;
  right: -15px;
  transition: 0.3s;
}

.services .service-item .title {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 18px;
  color: var(--bg-black);
}

.services .service-item .title a {
  color: var(--bg-black);
}

.services .service-item .title a:hover {
  color: var(--primary-color);
}

.services .service-item .description {
  line-height: 24px;
  font-size: 14px;
}
/*--------------------------------------------------------------
10. FEATURES-HOME PAGE
  --------------------------------------------------------------*/
.features .features-item {
  color: rgba(var(--default-font-color-rgb), 0.8);
}

.features .features-item + .features-item {
  margin-top: 100px;
}

@media (max-width: 768px) {
  .features .features-item + .features-item {
    margin-top: 40px;
  }
}

.features .features-item h3 {
  font-weight: 700;
  font-size: 26px;
}

.features .features-item .btn-get-started {
  background-color: var(--bg-black);
  color: var(--bg-white);
  padding: 8px 30px 10px 30px;
  border-radius: 4px;
}

.features .features-item .btn-get-started:hover {
  background-color: var(--primary-color);
  color: var(--bg-white);
}

.features .features-item ul {
  list-style: none;
  padding: 0;
}

.features .features-item ul li {
  padding-bottom: 10px;
  display: flex;
  align-items: flex-start;
}

.features .features-item ul li:last-child {
  padding-bottom: 0;
}

.features .features-item ul i {
  font-size: 20px;
  padding-right: 4px;
  color: var(--primary-color);
}

.features .features-item img {
  border: 6px solid var(--bg-white);
  box-shadow: 0 15px 30px -10px rgba(0, 0, 0, 0.1);
}

.features .features-item .features-img-bg {
  position: relative;
  min-height: 500px;
}

@media (max-width: 640px) {
  .features .features-item .features-img-bg {
    min-height: 300px;
  }
}

.features .features-item .features-img-bg img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.features .features-item .image-stack {
  display: grid;
  position: relative;
  grid-template-columns: repeat(12, 1fr);
}

.features .features-item .image-stack .stack-back {
  grid-column: 4/-1;
  grid-row: 1;
  width: 100%;
  z-index: 1;
}

.features .features-item .image-stack .stack-front {
  grid-row: 1;
  grid-column: 1 / span 8;
  margin-top: 20%;
  width: 100%;
  z-index: 2;
}
/*--------------------------------------------------------------
11. SPONSOR-HOME PAGE
  --------------------------------------------------------------*/
  .item {
    overflow: hidden;
    width: auto;
  }

  article {
    width: 100%;
    position: relative;
    height: 100%;
  }

  article picture.backdrop {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
  }
  article picture.backdrop img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: bottom;
    object-position: bottom;
    filter: blur(90px) brightness(95%) contrast(70%);
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%) scaleX(1.5) scaleY(1.14);
  }
  article .front {
    position: relative;

    margin: auto;
    text-align: center;

    box-sizing: border-box;
  }

  article .front img {
    height: 300px;
    width: auto !important;
    box-shadow: 0 -60px 80px rgba(0, 0, 0, 0.5),
      0 1px 2px rgba(0, 0, 0, 0.5);
    position: relative;
    margin: auto;
  }
  article .front .info-backdrop {
    position: absolute;
    left: 50%;
    bottom: 0;

    background-color: rgba(255, 255, 255, 0.4);
    transform: translate(-50%, calc(100% - 60px));
  }
  /*--------------------------------------------------------------
12. CALL TO ACTION-HOME PAGE
  --------------------------------------------------------------*/
.call-to-action {
    --default-color: #ffffff;
    --background-color: #000000;
    --background-color-rgb: 0, 0, 0;
    padding: 80px 0;
    position: relative;
    -webkit-clip-path: inset(0);
    clip-path: inset(0);
  }
  
  .call-to-action img {
    position: fixed;
    top: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    z-index: 1;
  }
  
  .call-to-action:before {
    content: "";
    background: rgba(var(--bg-black-rgb), 0.5);
    position: absolute;
    inset: 0;
    z-index: 2;
  }
  
  .call-to-action .container {
    position: relative;
    z-index: 3;
  }
  
  .call-to-action h3 {
    font-size: 28px;
    font-weight: 700;
    color: var(--bg-white) !important;
  }
  
  .call-to-action p {
    color: var(--bg-white);
  }
  
  .call-to-action .cta-btn {
    font-family: var(--primary-font);
    font-weight: 500;
    font-size: 16px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 12px 40px;
    border-radius: 5px;
    transition: 0.5s;
    margin: 10px;
    border: 2px solid var(--bg-white);
    color: var(--bg-white);
  }
  
  .call-to-action .cta-btn:hover {
    background: var(--primary-color);
    border: 2px solid var(--primary-color);
  }
  /*--------------------------------------------------------------
13. CONTACT-HOME PAGE
  --------------------------------------------------------------*/
  .contact .info-item {
    background: rgba(var(--default-font-color-rgb), 0.03);
    padding: 30px;
  }
  
  .contact .info-item i {
    font-size: 38px;
    line-height: 0;
    color: var(--primary-color);
  }
  
  .contact .info-item h3 {
    font-size: 20px;
    font-weight: 700;
    margin: 20px 0 10px 0;
  }
  
  .contact .info-item p {
    padding: 0;
    line-height: 24px;
    font-size: 14px;
    margin-bottom: 0;
  }
  
  .contact .php-email-form {
    background: rgba(var(--default-font-color-rgb), 0.03);
    padding: 30px;
    height: 100%;
  }
  
  .contact .php-email-form .error-message {
    display: none;
    background: #01cbb5;
    color: #ffffff;
    text-align: left;
    padding: 15px;
    margin-bottom: 24px;
    font-weight: 600;
  }
  
  .contact .php-email-form .sent-message {
    display: none;
    color: #ffffff;
    background: #059652;
    text-align: center;
    padding: 15px;
    margin-bottom: 24px;
    font-weight: 600;
  }
  
  .contact .php-email-form .loading {
    display: none;
    background: var(--background-color);
    text-align: center;
    padding: 15px;
    margin-bottom: 24px;
  }
  
  .contact .php-email-form .loading:before {
    content: "";
    display: inline-block;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    margin: 0 10px -6px 0;
    border: 3px solid var(--primary-color);
    border-top-color: var(--background-color);
    animation: animate-loading 1s linear infinite;
  }
  
  .contact .php-email-form input[type="text"],
  .contact .php-email-form input[type="email"],
  .contact .php-email-form textarea {
    font-size: 14px;
    padding: 10px 15px;
    box-shadow: none;
    border-radius: 0;
    color: var(--default-color);
    background-color: rgba(var(--background-color-rgb), 0.5);
    border-color: rgba(var(--default-color-rgb), 0.2);
  }
  
  .contact .php-email-form input[type="text"]:focus,
  .contact .php-email-form input[type="email"]:focus,
  .contact .php-email-form textarea:focus {
    border-color: var(--primary-color);
  }
  
  .contact .php-email-form input[type="text"]::-moz-placeholder,
  .contact .php-email-form input[type="email"]::-moz-placeholder,
  .contact .php-email-form textarea::-moz-placeholder {
    color: rgba(var(--default-color-rgb), 0.3);
  }
  
  .contact .php-email-form input[type="text"]::placeholder,
  .contact .php-email-form input[type="email"]::placeholder,
  .contact .php-email-form textarea::placeholder {
    color: rgba(var(--default-color-rgb), 0.3);
  }
  
  .contact .php-email-form button[type="submit"] {
    /*background: var(--primary-color);*/
    /* background-color: #08A3F9;
      color: var(--contrast-color); */
    border: 0;
    padding: 10px 30px;
    transition: 0.4s;
    border-radius: 4px;
  }
  
  .contact .php-email-form button[type="submit"]:hover {
    /*background: rgba(var(--primary-color-rgb), 0.8);*/
    background-color: #00c194;
  }
  
  @keyframes animate-loading {
    0% {
      transform: rotate(0deg);
    }
  
    100% {
      transform: rotate(360deg);
    }
  }

  /*--------------------------------------------------------------
# Event Page
--------------------------------------------------------------*/
.evnt_details {
    max-height: 22px;
    overflow: hidden;
    margin-bottom: 16px;
  }
  .evnt_details p,
  .evnt_details span,
  .evnt_details div span,
  .evnt_details div p,
  .evnt_details div {
    max-height: 22px;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 2;
    -webkit-line-clamp: 1;
    word-break: break-word;
  }
  .evnt_details p,
  .evnt_details span,
  .evnt_details div span,
  .evnt_details div p,
  .evnt_details div {
    display: none;
  }
  .evnt_details p:first-child,
  .evnt_details span:first-child,
  .evnt_details div span:first-child,
  .evnt_details div p:first-child,
  .evnt_details div:first-child {
    display: -webkit-box !important;
  }
  .events .content + .content {
    margin-top: 60px;
  }
  .content {
    background: var(--bg-white);
    padding: 25px;
    border-top: 4px solid var(--primary-color) !important;
  
    box-shadow: 0 5px 26px 0 rgba(68, 88, 144, 0.14);
    overflow: hidden;
  }
  .events .content h3 {
    margin-bottom: 16px;
    font-size: var(--h3-head);
    color: var(--primary-color) !important;
    text-decoration: none;
    font-family: var(--secondary-font) !important;
    font-weight: bold;
  }
  .events .content p:last-child {
    margin-bottom: 0;
  }
  .btn-new {
    width: 100%;
    max-width: 300px;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    text-decoration: none;
    letter-spacing: 1px;
    display: inline-block;
    padding: 12px 50px;
    transition: 0.5s;
    color: #fff !important;
    border-radius: 40px;
  
    text-align: center;
  }
  .btn-new:hover {
    background: var(--primary-color);
    color: #fff !important;
  }
  
  /*--------------------------------------------------------------
  # Event Detail Page
  --------------------------------------------------------------*/
  .detail_head {
    text-align: center;
    margin-bottom: 15px;
  }
  .detail_head h3 {
    margin-bottom: 16px;
    font-size: var(--h3-head);
    color: var(--primary-color) !important;
    text-decoration: none;
    font-family: var(--secondary-font) !important;
    font-weight: bold;
  }
  .detail_head p {
    text-align: center !important;
  }
  .detail_content h3 {
    margin-bottom: 16px;
    font-size: var(--h3-head);
    color: var(--primary-color) !important;
    text-decoration: none;
    font-family: var(--secondary-font) !important;
    font-weight: bold;
  }
  .detail_content p {
    font-size: 14px;
    margin-bottom: 8px;
  }
  .section-title-detail h3 {
    font-size: 14px;
    font-weight: bold;
    padding: 0;
    line-height: 1px;
    margin: 0 0 5px 0;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--primary-color) !important;
    font-family: var(--secondary-font);
    padding-bottom: 40px;
  }
  .events_detail_similar {
    margin-bottom: 60px;
    overflow: hidden;
  }
  
  /* Team */
  .member {
    text-align: center;
    box-shadow: 0px 0px 12px 0px rgba(0, 0, 0, 0.1);
    padding: 30px 20px;
    background: #fff;
  }
  .member img {
    max-width: 100%;
    border-radius: 50%;
    margin: 0 0 30px 0;
    width: 200px !important;
    height: 200px !important;
  }
  .member h4 {
    font-size: var(--h3-head);
    color: var(--primary-color);
    margin-bottom: 8px;
    text-decoration: none;
    font-family: var(--primary-font) !important;
    font-weight: bold;
    letter-spacing: 1px;
  }
  .member span {
    font-style: normal;
    display: block;
    font-size: 12px;
    color: var(--primary-color) !important;
    text-transform: uppercase !important;
  }
  
  
  