/* ============= General ================= */
@import url("https://fonts.googleapis.com/css2?family=Mrs+Saint+Delafield&family=Righteous&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Mrs+Saint+Delafield&family=Open+Sans:wght@300;400;500;600;700;800&display=swap");

html {
  scroll-behavior: smooth;
}

:root {
  --pri-color: #1c242b;
  --sec-color: #ff6600;
  --alt-color: #ffb07b;
  --hover-color: #c95202;
}

a {
  text-decoration: none;
  color: var(--pri-color);
  transition: 0.3s ease;
}

a:hover {
  text-decoration: none;
  color: var(--sec-color);
}

::-moz-selection {
  color: #fff;
  background: var(--sec-color);
}

h2.btf-text::selection {
  background-color: var(--pri-color);
}

::selection {
  color: #fff;
  background: var(--sec-color);
}

p {
  font-size: 17px;
  color: var(--pri-color);
}

.section-title {
  text-align: center;
  padding-bottom: 30px;
}

.section-title h1 {
  font-size: 35px;
  color: var(--pri-color);
  font-weight: 500;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
}

.section-title h2 {
  font-size: 30px;
  color: var(--pri-color);
  font-weight: 500;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
}

.section-title h1::before,
.section-title h2::before {
  content: "";
  position: absolute;
  display: block;
  width: 150px;
  height: 1px;
  background: #d1d1d1;
  bottom: 1px;
  left: calc(50% - 75px);
}

.section-title h1::after,
.section-title h2::after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 4px;
  background: var(--sec-color);
  bottom: 0;
  left: calc(50% - 25px);
}

.section-title p {
  margin-bottom: 0;
  width: 80%;
}

.inner-tag {
  font-weight: 600;
}

.emphasized-text {
  color: var(--sec-color);
  font-weight: 500;
}

.title-theme {
  color: var(--sec-color);
  font-weight: 500;
}

@media (max-width: 790px) {
  .section-title p {
    margin-bottom: 0;
    width: auto;
  }
}

@media (max-width: 567px) {
  .section-title h1 {
    font-size: calc(1.5rem + 1vw);
  }

  .section-title h2 {
    font-size: calc(1.2rem + 1vw);
  }
}

.orange {
  background: var(--sec-color);
  height: 15px;
}

/* ============= Navbar Section ================= */
#header {
  background-color: #fff;
  box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15);
}

.navbar {
  transition: 0.5s ease;
  -webkit-transition: 0.5s ease;
}

.navbar .logo img {
  transition: 0.5s ease;
  -webkit-transition: 0.5s ease;
}

.navbar .navbar-nav .nav-link {
  color: var(--pri-color);
  font-weight: 700;
  text-align: center;
  text-transform: uppercase;
  font-size: 15px;
  padding: 10px 15px;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .active {
  color: var(--sec-color);
}

.navbar .special-link {
  background: var(--sec-color);
  border-radius: 50px;
  color: #fff !important;
  padding: 10px 20px !important;
  font-weight: 600 !important;
}

.navbar .special-link:hover {
  transition: 0.3s ease;
  background: var(--hover-color);
}

.navbar .disabled-link {
  cursor: pointer;
}

@media (max-width: 768px) {
  .navbar .navbar-nav .nav-link {
    text-align: center;
    margin: auto;
  }

  .navbar .logo img {
    padding: 10px 0;
  }

  .navbar .navbar-nav {
    border-top: solid 1px rgba(28, 36, 43, 0.2);
  }

  .navbar .special-link {
    align-items: center;
    width: 230px;
  }
}

/* ============== Hero Section ================= */
.hero {
  padding-top: 70px;
}

.hero .hero-image {
  background-size: cover;
  min-height: 95vh;
  position: relative;
  color: white;
}

.hero .color-overlay {
  position: absolute;
  text-align: center;
  background-color: rgba(0, 0, 0, 0.7);
  height: 100%;
  width: 100%;
}

.hero .color-overlay h1 {
  display: inline-block;
  line-height: 80px;
  font-family: "Righteous";
  font-size: 90px;
  text-transform: uppercase;
  text-shadow: 2px 2px 2px rgba(0, 0, 0, 0.974);
}

.hero .color-overlay h4 {
  padding: 10px;
  font-size: 20px;
  font-weight: 400;
}

.hero .color-overlay .btf-tag {
  color: var(--sec-color);
}

.hero .color-overlay .text {
  display: inline-block;
  line-height: 34px;
}

.hero .color-overlay p {
  padding: 0 10px;
  font-size: 25px;
  color: #fff;
}

.hero .color-overlay .hero-btns a {
  position: relative;
  font-weight: 500;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: inline-block;
  padding: 15px 35px;
  border-radius: 50px;
  line-height: 1;
  margin: 10px;
  color: #fff;
  border: 1px solid var(--sec-color);
  z-index: 1;
}

.hero .color-overlay .hero-btns .speakers-btn a {
  position: relative;
  font-weight: 500;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: inline-block;
  padding: 15px 35px;
  border-radius: 50px;
  line-height: 1;
  margin: 10px;
  color: #fff;
  background: var(--sec-color);
  border: 1px solid var(--sec-color);
  z-index: 1;
}

.hero .color-overlay .hero-btns a:hover,
.hero .color-overlay .hero-btns .speakers-btn a:hover {
  background: var(--hover-color);
  border: 1px solid var(--hover-color);
  transition: 0.5s ease;
}

@media (max-width: 768px) {
  .hero {
    padding-top: 100px;
  }

  .hero .hero-image {
    min-height: 80vh;
  }

  .hero .color-overlay p {
    margin-bottom: 0;
    font-size: calc(16px + 1.3vw);
    color: #fff;
  }

  .hero .color-overlay h1 {
    font-size: calc(30px + 3.3vw);
    margin: 0;
    display: inline-block;
    line-height: 50px;
  }
}

@media (max-width: 576px) {
  .hero .color-overlay h1 {
    font-size: calc(28px + 3vw);
    display: inline-block;
    line-height: 40px;
  }

  .hero .color-overlay h4 {
    font-size: calc(1rem + 0.5vw);
  }

  .hero .color-overlay p {
    margin-bottom: 0;
    font-size: calc(15px + 1vw);
    color: #fff;
  }
}

/* Inner pages */
.inner-pages-hero {
  padding-top: 30px;
}

.inner-pages-hero .hero-image {
  min-height: 50vh;
  background-size: cover;
  position: relative;
  border-bottom: solid 15px var(--sec-color);
  color: white;
}

.inner-pages-hero .color-overlay {
  position: absolute;
  text-align: center;
  background-color: rgba(0, 0, 0, 0.7);
  height: 100%;
  width: 100%;
}

.inner-pages-hero .color-overlay h3 {
  margin-top: 50px;
  padding-top: 60px;
  font-size: 40px;
  font-weight: 500;
  text-transform: uppercase;
}

@media (max-width: 768px) {
  .inner-pages-hero {
    padding-top: 60px;
  }

  .inner-pages-hero .hero-image {
    min-height: 40vh;
    background-size: cover;
    position: relative;
    color: white;
  }

  .inner-pages-hero .color-overlay h3 {
    font-size: calc(1.5rem + 0.8vw);
  }
}

@media (max-width: 575px) {
  .inner-pages-hero {
    padding-top: 100px;
  }

  .inner-pages-hero .hero-image {
    min-height: 30vh;
    background-size: cover;
    position: relative;
    color: white;
  }

  .inner-pages-hero .color-overlay h3 {
    margin-top: 20px;
    padding-top: 30px;
    font-size: calc(1.3rem + 0.6vw);
  }
}

/* ============== Breadcrumb Section ================= */
.breadcrumb {
  font-size: 17px;
}

.inner-pages-hero .breadcrumb a,
.inner-pages-hero .breadcrumb ol li {
  color: #fff;
}

.breadcrumb-item + .breadcrumb-item::before {
  color: #fff;
}

.inner-pages-hero .breadcrumb a:hover {
  transition: 0.3s ease;
  color: var(--hover-color);
}

/* ============== To-top button ================= */
#to-top-btn {
  position: fixed;
  z-index: 2;
  bottom: 30px;
  right: 30px;
  border-radius: 50%;
  font-size: 20px;
  width: 45px;
  height: 45px;
  background: var(--sec-color);
  color: var(--pri-color);
  border: none;
  cursor: pointer;
  display: none;
  transition: 0.3s ease;
}

#to-top-btn:hover {
  background: var(--hover-color);
}

/* ============== Cookie Banner ================= */
#cb-cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  border-radius: 0;
  display: none;
}

.cookiealert {
  background: #f1f1f1;
  color: var(--pri-color);
  z-index: 1;
  font-size: 16px;
  box-shadow: 0 -2px 16px rgba(47, 54, 64, 0.39);
}

.cookiealert .btn-primary {
  background: var(--sec-color);
  border: solid 1px var(--sec-color);
  color: var(--pri-color);
  font-weight: 600;
  font-size: 17px;
  border-radius: 50px;
  padding: 5px 15px;
  transition: 0.5s ease;
}

.cookiealert .btn-primary:hover {
  background: var(--hover-color);
  border: solid 1px var(--hover-color);
}

/* ============== Countdown Section ================= */
#countdown {
  padding: 30px 0;
  border-top: solid 10px var(--pri-color);
  border-bottom: solid 10px var(--pri-color);
  background: var(--sec-color);
  display: none;
}

#countdown .countdown div {
  text-align: center;
  justify-content: center;
  width: 150px;
  height: 150px;
  border: 2px solid #fff;
  border-radius: 100px;
  margin: 0 20px;
  padding: 30px 0;
}

#countdown .title h2 {
  color: #fff;
}

#countdown .title i {
  color: var(--pri-color);
}

#countdown .countdown div h3 {
  font-weight: 700;
  color: #fff;
  font-size: 45px;
}

#countdown .countdown div h4 {
  font-size: 20px;
  font-weight: 700;
}

@media (max-width: 768px) {
  #countdown .countdown div {
    width: 130px;
    height: 130px;
    padding: 10px 0;
    margin: 10px 20px;
  }
}

@media (max-width: 575px) {
  #countdown .countdown div {
    width: 90px;
    height: 90px;
    padding: 10px 0;
    margin: 10px 3px;
  }

  #countdown .title h2 {
    font-size: calc(1rem + 0.9vw);
  }

  #countdown .countdown div h3 {
    font-size: 30px;
  }

  #countdown .countdown div h4 {
    font-size: 13px;
    font-weight: 600;
  }
}

/* ============== About Section ================= */
.about {
  padding: 80px 0;
}

.about img {
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

/* ============== Host Section ================= */
.host {
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
    url("../images/orange-sunday-1.jpg") fixed center;
  background-size: cover;
  padding: 80px 0;
  margin: 50px 0;
}

.host img {
  background: linear-gradient(white, white) padding-box,
    linear-gradient(to right, #ff6600, #f59d32) border-box;
  border-radius: 10px;
  border: 10px solid transparent;
}

.host h3 {
  color: #fff;
  font-size: 30px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  display: inline-block;
  padding: 8px 28px;
  border-radius: 4px;
  margin-bottom: 30px;
  border: 2px solid #fff;
  color: var(--sec-color);
}

.host p {
  color: #fff;
}

.host .host-btn a {
  font-weight: 600;
  font-size: 18px;
  letter-spacing: 1px;
  position: relative;
  text-transform: uppercase;
  display: inline-block;
  padding: 8px 28px;
  border-radius: 50px;
  margin-top: 10px;
  border: 2px solid var(--sec-color);
  color: var(--sec-color);
}

.host .host-btn a:hover {
  color: #fff;
  background: var(--hover-color);
  border: 2px solid var(--hover-color);
}

@media (max-width: 768px) {
  .host img {
    width: 400px;
  }
}

@media (max-width: 575px) {
  .host {
    padding: 50px 0;
  }

  .host img {
    width: auto;
  }

  .host h3 {
    margin: 15px;
    padding: 10px;
    font-size: calc(1.2rem + 0.6vw);
  }
}

/* ============== Roadmap Section ================= */
.roadmap {
  padding: 60px 0;
}

.roadmap .wrapper {
  margin: auto;
  padding: 0 20px;
  position: relative;
}

.roadmap .wrapper .center-line {
  position: absolute;
  height: 88%;
  width: 4px;
  background: var(--pri-color);
  left: 50%;
  top: 20px;
  transform: translateX(-50%);
}

.roadmap .roadmap-container {
  display: flex;
  margin-top: 20px;
  align-items: center;
}

.roadmap .roadmap-container img {
  width: 120px;
  border-radius: 50%;
  background: linear-gradient(white, white) padding-box,
    linear-gradient(to right, #ff6600, #f59d32) border-box;
  border-radius: 50em;
  border: 4px solid transparent;
  margin-right: 20px;
}

.roadmap .wrapper .roadmap-card {
  display: flex;
}

.roadmap .wrapper .row-1 {
  justify-content: flex-start;
}

.roadmap .wrapper .row-2 {
  justify-content: flex-end;
}

.roadmap .wrapper .roadmap-card section {
  background: #f4f4f4;
  border-radius: 10px;
  width: calc(50% - 40px);
  padding: 20px;
  position: relative;
  border: solid 1px var(--sec-color);
}

.roadmap .wrapper .roadmap-card section::before {
  position: absolute;
  content: "";
  height: 20px;
  width: 20px;
  background: var(--sec-color);
  top: 28px;
  z-index: -1;
  transform: rotate(45deg);
}

.row-1 section::before {
  right: -7px;
}

.row-2 section::before {
  left: -7px;
}

.roadmap-card section .icon,
.center-line .scroll-icon {
  position: absolute;
  background: #f4f4f4;
  height: 40px;
  width: 40px;
  text-align: center;
  line-height: 40px;
  border-radius: 50%;
  color: var(--pri-color);
  font-size: 18px;
  box-shadow: 0 0 0 4px var(--pri-color), inset 0 2px 0 rgba(0, 0, 0, 0.08),
    0 3px 0 4px rgba(0, 0, 0, 0.05);
}

.center-line .scroll-icon {
  bottom: 0px;
  left: 50%;
  font-size: 25px;
  transform: translateX(-50%);
}

.row-1 section .icon {
  top: 15px;
  right: -60px;
}

.row-2 section .icon {
  top: 15px;
  left: -60px;
}

.roadmap-card section .title h3 {
  display: table;
  background-color: var(--sec-color);
  padding: 7px 20px;
  border-radius: 100px;
  font-size: 18px;
  font-weight: 650;
  text-transform: uppercase;
  color: #fff;
}

.roadmap-card section .roadmap-content h4 {
  text-transform: uppercase;
  font-size: 18px;
  font-weight: 600;
  text-decoration: underline;
}

.roadmap-card section p {
  margin: 10px 0;
}

@media (max-width: 790px) {
  .roadmap .wrapper .center-line {
    left: 40px;
    transform: translateY(2%);
  }
  .roadmap .wrapper .roadmap-card {
    margin: 30px 0 3px 60px;
  }
  .roadmap .wrapper .roadmap-card section {
    width: 100%;
  }
  .row-1 section::before {
    left: -7px;
  }
  .row-1 section .icon {
    left: -60px;
  }
}

@media (max-width: 575px) {
  .roadmap .wrapper {
    padding: 0 10px;
  }

  .roadmap .roadmap-container img {
    display: none;
    width: 100px;
  }

  .roadmap .wrapper .center-line {
    left: 30px;
  }
}

/* ============== Host Profile Section ================= */
.host-profile {
  padding: 80px 0 100px 0;
}

.host-profile img {
  width: 300px;
  float: left;
  margin-right: 20px;
}

.host-profile .info .social-media-links i {
  height: 40px;
  width: 40px;
  color: #fff;
  background: var(--sec-color);
  border: solid 1px var(--sec-color);
  line-height: 38px;
  margin-right: 20px;
  text-align: center;
  font-size: 16px;
  border-radius: 50%;
  position: relative;
  transition: all 0.3s ease;
}

.host-profile .social-media-links i:hover {
  color: var(--sec-color);
  background: transparent;
}

@media (max-width: 575px) {
  .host-profile img {
    width: 100%;
    float: none;
    margin-right: 0;
    margin-bottom: 20px;
  }
}

/* ============== Speakers Section ================= */
.speakers {
  padding: 80px 0;
}

.speakers .speaker-card {
  margin-bottom: 40px;
  overflow: hidden;
  border-radius: 10px;
  background: #f1f1f1;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px,
    rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
}

.speakers .speaker-card .speaker-img {
  position: relative;
  overflow: hidden;
}

.speakers .speaker-card .speaker-img img {
  display: block;
  width: 100%;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.speakers .speaker-card:hover img {
  -webkit-transform: scale(1.1) rotate(0.01deg);
  transform: scale(1.1) rotate(0.01deg);
}

.speakers .speaker-card .speaker-profile {
  position: absolute;
  left: 0;
  bottom: 30px;
  right: 0;
  opacity: 0;
  transition: ease-in-out 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.speakers .speaker-card .speaker-profile a {
  transition: color 0.3s;
  color: var(--sec-color);
  margin: 0 3px;
  border-radius: 50px;
  width: 36px;
  height: 36px;
  background: var(--sec-color);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: ease-in-out 0.3s;
  color: #fff;
}

.modal .btn-secondary,
.speakers .speaker-card .btn-primary {
  background: var(--sec-color);
  border: solid 1px var(--sec-color);
  color: #fff;
  font-weight: 500;
  font-size: 17px;
  border-radius: 50px;
  padding: 5px 15px;
  transition: 0.5s ease;
}

.modal .btn-secondary:hover,
.speakers .speaker-card .btn-primary:hover {
  background: var(--hover-color);
  border: solid 1px var(--hover-color);
}

.speakers .speaker-card .speaker-name {
  padding: 15px;
}

.speakers .speaker-card .speaker-name h4 {
  font-weight: 600;
  margin-bottom: 5px;
  font-size: 17px;
  color: var(--pri-color);
}

.speakers .speaker-card .speaker-name p {
  font-style: italic;
  font-size: 14px;
  line-height: 26px;
  color: #6e6e6f;
  margin: 0;
}

.speakers .speaker-card:hover .speaker-profile {
  opacity: 1;
  bottom: 15px;
}

/* ============== Artistes Section ================= */
.artistes {
  padding: 80px 0 100px 0;
}

.artistes .artiste-card {
  margin-bottom: 20px;
  overflow: hidden;
  border-radius: 10px;
  background: #f1f1f1;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px,
    rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
  margin-bottom: 50px;
}

.artistes .artiste-card .artiste-img {
  position: relative;
  overflow: hidden;
}

.artistes .artiste-card .artiste-img img {
  display: block;
  width: 100%;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.artistes .artiste-card:hover img {
  -webkit-transform: scale(1.1) rotate(0.01deg);
  transform: scale(1.1) rotate(0.01deg);
}

.artistes .artiste-card .artiste-profile {
  position: absolute;
  left: 0;
  bottom: 30px;
  right: 0;
  opacity: 0;
  transition: ease-in-out 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.artistes .artiste-card .artiste-profile a {
  transition: color 0.3s;
  color: var(--sec-color);
  margin: 0 3px;
  border-radius: 50px;
  width: 36px;
  height: 36px;
  background: var(--sec-color);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: ease-in-out 0.3s;
  color: #fff;
}

.modal .btn-secondary,
.artistes .artiste-card .btn-primary {
  background: var(--sec-color);
  border: solid 1px var(--sec-color);
  color: #fff;
  font-weight: 500;
  font-size: 17px;
  border-radius: 50px;
  padding: 5px 15px;
  transition: 0.5s ease;
}

.modal .btn-secondary:hover,
.artistes .artiste-card .btn-primary:hover {
  background: var(--hover-color);
  border: solid 1px var(--hover-color);
}

.artistes .artiste-card .artiste-name {
  padding: 15px;
}

.artistes .artiste-card .artiste-name h4 {
  font-weight: 600;
  margin-bottom: 5px;
  font-size: 17px;
  color: var(--pri-color);
}

.artistes .artiste-card .artiste-name p {
  font-style: italic;
  font-size: 14px;
  line-height: 26px;
  color: #6e6e6f;
  margin: 0;
}

.artistes .artiste-card:hover .artiste-profile {
  opacity: 1;
  bottom: 15px;
}

/* ============== Main Gallery Section ================= */
.main-gallery-container {
  padding: 80px 0 100px 0;
}

.gallery-container .card {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 200px;
  margin: 30px 0;
  border-radius: 0;
}

.gallery-container .card .card-img {
  position: relative;
  overflow: hidden;
  border-radius: 0;
}

.gallery-container .card .card-img img {
  width: 100%;
  transition: 0.4s;
}

.gallery-container .card .card:hover .card-img img {
  transform: scale(1.2, 1.2);
}

.gallery-container .card .card-content {
  height: 40px;
  width: 100%;
  overflow: hidden;
  text-align: center;
  position: absolute;
  bottom: 0;
  transition: all 0.4s;
  background: rgba(255, 255, 255, 0.6);
}

.gallery-container #card-content {
  height: 65px;
}

.gallery-container .card:hover .card-content {
  height: 75px;
  background: rgba(0, 0, 0, 0.7);
}

.gallery-container #card:hover .card-content {
  height: 95px;
  background: rgba(0, 0, 0, 0.7);
}

.gallery-container .card .card-info {
  transition: all 0.5s;
  padding: 5px 20px 5px 20px;
}

.gallery-container .card .card-info h3 {
  font-size: 17px;
  color: var(--pri-color);
  margin: 5px;
  text-transform: uppercase;
  font-weight: 650;
  padding-top: 0;
}

.gallery-container .card:hover .card-info h3 {
  color: var(--sec-color);
  font-weight: 500;
}

.gallery-container .card .card-info p {
  color: #ffff;
  padding-top: 30px;
  font-size: 16px;
  font-weight: 450;
  text-transform: uppercase;
  transition: all 0.3s;
}

.gallery-container .card:hover .card-info p {
  padding-top: 0;
}

@media (max-width: 1024px) {
  .gallery-container .card {
    height: 160px;
  }

  .gallery-container .card .card-info h3 {
    font-size: 15px;
  }
}

@media (max-width: 984px) {
  .gallery-container .card {
    height: 220px;
  }

  .gallery-container .card .card-info h3 {
    font-size: 17px;
  }
}

@media (max-width: 425px) {
  .gallery-container .card {
    height: 250px;
  }
}

/* ============== Gallery Section ================= */
.gallery {
  padding: 80px 0 100px 0;
}

.gallery .item a {
  display: inline-block;
  position: relative;
  overflow: hidden;
}

.gallery .item a img {
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  height: 200px;
  width: 100%;
  object-fit: cover;
}

.gallery .item a:hover img {
  -webkit-transform: scale(1.1) rotate(0.01deg);
  transform: scale(1.1) rotate(0.01deg);
}

@media (max-width: 768px) {
  .gallery .item a img {
    height: auto;
    width: auto;
    object-fit: inherit;
  }
}

/* ============== Schedules Section ================= */
#schedule {
  padding: 60px 0 60px 0;
}

#schedule .nav-tabs {
  text-align: center;
  margin: auto;
  display: block;
  border-bottom: 0;
  margin-bottom: 30px;
}

#schedule .nav-tabs li {
  display: inline-block;
  margin-bottom: 0;
}

#schedule .nav-tabs a {
  border: none;
  border-radius: 50px;
  font-weight: 600;
  background-color: var(--pri-color);
  color: #fff;
  text-transform: uppercase;
  padding: 10px 20px;
  transition: 0.3s ease;
}

#schedule .nav-tabs a:hover {
  background-color: var(--sec-color);
}

@media (max-width: 991px) {
  #schedule .nav-tabs a {
    margin-bottom: 20px;
  }
}

#schedule .nav-tabs a.active {
  background-color: var(--sec-color);
  color: #fff;
}

#schedule .sub-heading {
  text-align: center;
  font-size: 18px;
  font-style: italic;
  margin: 0 auto 30px auto;
}

@media (min-width: 991px) {
  #schedule .sub-heading {
    width: 75%;
  }
}

#schedule .tab-pane {
  transition: ease-in-out 0.2s;
}

#schedule .date {
  text-align: center;
  margin: auto;
}

#schedule .date-container {
  margin: 30px 0;
}

#schedule .date h4 {
  font-size: 18px;
  background: var(--sec-color);
  display: inline;
  padding: 5px 20px;
  border-radius: 50px;
  color: #fff;
  text-transform: uppercase;
}

#schedule .schedule-item {
  border-bottom: 1px solid #9096a9a6;
  padding-top: 15px;
  padding-bottom: 15px;
  transition: background-color ease-in-out 0.3s;
}

#schedule .schedule-item:hover {
  background-color: #fff;
}

#schedule .schedule-item time {
  padding-bottom: 5px;
  display: inline-block;
}

#schedule .schedule-item .speaker {
  width: 60px;
  height: 60px;
  overflow: hidden;
  border-radius: 50%;
  float: left;
  margin: 0 10px 10px 0;
}

#schedule .schedule-item .speaker img {
  height: 100%;
  transform: translateX(-50%);
  margin-left: 50%;
  transition: all ease-in-out 0.3s;
}

#schedule .schedule-item h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 5px;
}

#schedule .schedule-item h4 span {
  font-style: italic;
  color: var(--hover-color);
  font-weight: normal;
  font-size: 16px;
}

#schedule .schedule-item p {
  font-style: italic;
  color: var(--hover-color);
  margin-bottom: 0;
}

#schedule .mc {
  text-align: center;
  margin: auto;
}

#schedule .mc h4 {
  font-size: 20px;
}

#schedule .mc span {
  color: var(--hover-color);
  font-style: italic;
}

/* ============== Contact Us Section ================= */
.contact-us {
  padding: 80px 0 100px 0;
}

.contact-us .contact-card {
  box-shadow: 0 0 30px rgba(214, 215, 216, 0.6);
  padding: 20px;
}

.contact-us .contact-card .icon i {
  font-size: 28px;
  color: var(--sec-color);
  border-radius: 50%;
  padding: 5px;
  border: 2px dotted var(--alt-color);
  float: left;
}

.contact-us .contact-card .contact-info {
  margin-left: 15px;
}

.contact-us .contact-card h3 {
  font-size: 20px;
  color: var(--sec-color);
  font-weight: 600;
}

.contact-us .contact-card a,
.contact-us .contact-card p {
  padding: 0;
  line-height: 24px;
  font-size: 17px;
  margin-top: 10px;
}

.contact-us .contact-us-form {
  box-shadow: 0 0 30px rgba(214, 215, 216, 0.6);
  padding: 30px;
}

.contact-us .contact-us-form .loading {
  display: none;
  background: #fff;
  color: green;
  text-align: center;
  padding: 17px;
}

.contact-us .contact-us-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid green;
  border-top-color: #eee;
  animation: animate-loading 1s linear infinite;
}

.contact-us .contact-us-form .form-control,
.contact-us .contact-us-form textarea {
  border-radius: 5px;
  box-shadow: none;
  font-size: 17px;
}

.contact-us .contact-us-form .form-control:hover,
.contact-us .contact-us-form textarea:hover,
.contact-us .contact-us-form .form-control:focus,
.contact-us .contact-us-form textarea:focus {
  border-color: var(--sec-color);
  transition: 0.5s ease;
}

.contact-us .contact-us-form .form-control {
  padding: 10px 15px;
}

.contact-us .contact-us-form textarea {
  padding: 12px 15px;
}

.contact-us .contact-us-form .form-check-input {
  width: 17px;
  height: 17px;
  font-size: 17px;
  display: inline-block;
  vertical-align: middle;
  margin-top: 0;
  border: solid 1px #8a8a8a;
}

.contact-us .contact-us-form button[type="reset"] {
  background: transparent;
  border: 0;
  border-radius: 50px;
  margin-right: 20px;
  border: solid 1px var(--pri-color);
  font-size: 17px;
  padding: 9px 24px;
  color: var(--pri-color);
  transition: 0.5s ease;
}

.contact-us .contact-us-form button[type="reset"]:hover {
  background: var(--pri-color);
  color: #fff;
}

.contact-us .contact-us-form button[type="submit"] {
  background: var(--sec-color);
  border: 0;
  border-radius: 50px;
  margin-right: 20px;
  font-size: 17px;
  padding: 10px 25px;
  color: #fff;
  transition: 0.5s ease;
}

.contact-us .contact-us-form button[type="submit"]:hover {
  background: var(--hover-color);
}

#others {
  display: none;
}

@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/* ============== Footer Section ================= */
.thank-you {
  padding: 0 0 100px 0;
}

.thank-you .icon i {
  font-size: 200px;
  color: green;
}

.thank-you h2 {
  font-size: 30px;
}

.thank-you .buttons .bttn {
  margin: 20px;
}

.thank-you .buttons .bttn a {
  display: flex;
  align-items: center;
  color: #fff;
  font-weight: 500;
  text-transform: uppercase;
  background: var(--sec-color);
  padding: 10px 20px;
  border-radius: 50px;
  transition: 0.3s ease;
}

.thank-you .buttons .bttn a:hover {
  background: var(--hover-color);
}

.thank-you .buttons .fa-home {
  padding: 0 5px;
  font-size: 15px;
}

.thank-you .buttons .btn-icons {
  font-size: 25px;
  font-weight: 300;
  display: inline-block;
}

@media (max-width: 768px) {
  .thank-you h2 {
    font-size: calc(1.3rem + 1vw);
  }
}

@media (max-width: 575px) {
  .thank-you .icon i {
    font-size: 120px;
  }

  .thank-you .buttons .bttn a {
    font-size: calc(0.7rem + 0.8vw);
  }
}

/* ============== Error Section ================= */
.error {
  padding: 80px 0 100px 0;
}

.error-page h1 {
  font-size: 40px;
}

.error-page h2 {
  font-size: 25px;
}

.error .buttons .bttn {
  margin: 20px;
}

.error .buttons .bttn a {
  display: flex;
  align-items: center;
  color: #fff;
  font-weight: 500;
  text-transform: uppercase;
  background: var(--sec-color);
  padding: 10px 20px;
  border-radius: 50px;
  transition: 0.3s ease;
}

.error .buttons .bttn a:hover {
  background: var(--hover-color);
}

.error .buttons .fa-home {
  padding: 0 5px;
  font-size: 15px;
}

.error .buttons .btn-icons {
  font-size: 25px;
  font-weight: 300;
  display: inline-block;
}

@media (max-width: 575px) {
  .error-page h2 {
    font-size: calc(1.5rem + 1.2vw);
  }

  .error-page h3 {
    font-size: calc(1.1rem + 0.8vw);
  }
}

/* ============== Unavailable Section ================= */
.unavailable {
  padding: 80px 0 100px 0;
}

.unavailable-page h1 {
  font-size: 100px;
  text-transform: uppercase;
}

.unavailable-page h2 {
  font-size: 25px;
}

.unavailable .buttons .bttn {
  margin: 20px;
}

.unavailable .buttons .bttn a {
  display: flex;
  align-items: center;
  color: #fff;
  font-weight: 500;
  text-transform: uppercase;
  background: var(--sec-color);
  padding: 10px 20px;
  border-radius: 50px;
  transition: 0.3s ease;
}

.unavailable .buttons .bttn a:hover {
  background: var(--hover-color);
}

.unavailable .buttons .fa-home {
  padding: 0 5px;
  font-size: 15px;
}

.unavailable .buttons .btn-icons {
  font-size: 25px;
  font-weight: 300;
  display: inline-block;
}

@media (max-width: 575px) {
  .unavailable-page h1 {
    font-size: calc(1.8rem + 1.5vw);
  }

  .unavailable-page h2 {
    font-size: calc(1.1rem + 1vw);
  }
}

/* ============== Legal Section ================= */
.legal {
  padding: 80px 0 100px 0;
}

.legal .legal-info .content {
  padding-top: 80px;
}

.legal .legal-info h2 {
  text-transform: capitalize;
  color: var(--sec-color);
  font-size: 38px;
}

.legal .legal-info .bullets ol li,
.legal .legal-info .bullets ul li {
  font-size: 17px;
  color: var(--pri-color);
}

.legal .legal-info .special-bullets {
  padding-left: 20px;
}

@media (max-width: 575px) {
  .legal .legal-info h2 {
    font-size: calc(1.5rem + 1.1vw);
  }
}

.top-of-article {
  margin-top: 100px;
}

.top-of-article a {
  text-transform: uppercase;
  font-size: 17px;
  font-weight: 500;
  padding: 10px 30px;
  color: #fff;
  background: var(--sec-color);
  border-radius: 50px;
  display: inline;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
}

.top-of-article a:hover {
  background: var(--hover-color);
}

/* ============== Footer Section ================= */
#footer {
  background: #131a1f;
  color: #fff;
}

#footer #footer-top {
  background: var(--pri-color);
  border-bottom: solid 1px var(--sec-color);
}

#footer #footer-top .menu ul {
  list-style: none;
}

#footer #footer-top .menu li {
  display: inline;
}

#footer #footer-top ul li a {
  color: #fff;
  padding: 20px;
  font-weight: 400;
  font-size: 13px;
}

#footer #footer-top {
  padding: 50px 0;
}

#footer #footer-top .active {
  color: var(--sec-color);
  cursor: pointer;
}

.footer #footer-top .content img {
  width: 250px;
  margin-bottom: 40px;
}

#footer #footer-top .social-media-links {
  border-top: solid 1px rgba(241, 241, 241, 0.217);
}

#footer #footer-top .social-media-links i {
  height: 40px;
  width: 40px;
  color: var(--sec-color);
  border: solid 1px var(--sec-color);
  line-height: 38px;
  margin: 50px 20px;
  text-align: center;
  font-size: 16px;
  border-radius: 50%;
  position: relative;
  transition: all 0.3s ease;
}

#footer #footer-top .social-media-links i:hover {
  color: #fff;
  border: solid 1px var(--hover-color);
  background: var(--hover-color);
}

#footer .credits {
  padding: 20px 12px;
}

#footer .credits a {
  color: var(--sec-color);
}

#footer #footer-top ul li a:hover,
#footer .credits a:hover {
  color: var(--hover-color);
}

#google-map {
  line-height: 0;
}

@media (max-width: 440px) {
  #footer #footer-top .social-media-links i {
    height: 40px;
    width: 40px;
    color: var(--sec-color);
    border: solid 1px var(--sec-color);
    line-height: 40px;
    margin: 50px 10px;
    text-align: center;
    font-size: 16px;
    border-radius: 50%;
    position: relative;
    transition: all 0.3s ease;
  }
}
