body {
  background: #0f0c29;  /* fallback for old browsers */
background: -webkit-linear-gradient(to right, #24243e, #302b63, #0f0c29);  /* Chrome 10-25, Safari 5.1-6 */
background: linear-gradient(to right, #24243e, #302b63, #0f0c29); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
  color: #fff;
  font-family: "Open Sans", sans-serif;
}

/* body:before {
  content: "";
  background: rgba(6, 12, 34, 0.5);
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
} */

a {
  color: #d2232a;
  transition: 0.5s;
}

a:hover,
a:active,
a:focus {
  color: #f8234a;
  outline: none;
  text-decoration: none;
}

p {
  padding: 0;
  margin: 0 0 30px 0;
}

h1,
h2,
h3,
h4,
h6 {
  font-family: "Raleway", sans-serif;
  font-weight: 400;
  margin: 0 0 20px 0;
  padding: 0;
  color: #53575a;
}

h5 {
  font-family: "Raleway", sans-serif;
  font-weight: 400;
  margin: 0 0 20px 0;
  padding: 0;
  color: #d2232a;
}

.main-page {
  margin-top: 70px;
}

.wow {
  visibility: hidden;
}

/* Prelaoder */

#preloader {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 999;
  width: 100%;
  height: 100%;
  overflow: visible;
  background: #fff url("../img/preloader.svg") no-repeat center center;
}

/* Back to top button */

.back-to-top {
  position: fixed;
  display: none;
  background: #d2232a;
  color: #fff;
  width: 40px;
  height: 40px;
  text-align: center;
  border-radius: 50px;
  right: 15px;
  bottom: 15px;
  transition: background 0.5s ease-in-out;
}

.back-to-top i {
  font-size: 24px;
  padding-top: 6px;
}

.back-to-top:focus {
  background: #d2232a;
  color: #fff;
  outline: none;
}

.back-to-top:hover {
  background: #d2232a;
  color: #fff;
}

/* Sections Header
--------------------------------*/

.section-header {
  margin-bottom: 30px;
  margin-top: 30px;
  position: relative;
  padding-bottom: 20px;
}

.section-header::before {
  content: '';
  position: absolute;
  display: block;
  width: 60px;
  height: 5px;
  background: #f83bff;
  bottom: 0;
  left: calc(50% - 25px);
}

.section-header h2 {
  font-size: 36px;
  text-transform: uppercase;
  text-align: center;
  font-weight: 700;
  margin-bottom: 10px;
  color:#fff;
}

.section-header p {
  text-align: center;
  padding: 0;
  margin: 0;
  font-size: 18px;
  font-weight: 500;
  color: #fff !important;
}

.section-with-bg {
  background-color: #f6f7fd;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/

#header {
  height: 90px;
  padding: 25px 0;
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  transition: all 0.5s;
  z-index: 997;
}

#header.header-scrolled,
#header.header-fixed {
  background: rgba(6, 12, 34, 0.98);
  height: 70px;
  padding: 15px 0;
  transition: all 0.5s;
}

#header #logo h1 {
  font-size: 36px;
  margin: 0;
  padding: 6px 0;
  line-height: 1;
  font-family: "Raleway", sans-serif;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
}

#header #logo h1 span {
  color: #d2232a;
}

#header #logo h1 a,
#header #logo h1 a:hover {
  color: #fff;
}

#header #logo img {
  padding: 0;
  margin: 0;
  max-height: 40px;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/

/* Nav Menu Essentials */

.nav-menu,
.nav-menu * {
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-menu ul {
  position: absolute;
  display: none;
  top: 100%;
  left: 0;
  z-index: 99;
}

.nav-menu li {
  position: relative;
  white-space: nowrap;
}

.nav-menu > li {
  float: left;
}

.nav-menu li:hover > ul,
.nav-menu li.sfHover > ul {
  display: block;
}

.nav-menu ul ul {
  top: 0;
  left: 100%;
}

.nav-menu ul li {
  min-width: 180px;
}

/* Nav Menu Arrows */

.sf-arrows .sf-with-ul {
  padding-right: 30px;
}

.sf-arrows .sf-with-ul:after {
  content: "\f107";
  position: absolute;
  right: 15px;
  font-family: FontAwesome;
  font-style: normal;
  font-weight: normal;
}

.sf-arrows ul .sf-with-ul:after {
  content: "\f105";
}

/* Nav Meu Container */

#nav-menu-container {
  float: right;
  margin: 0;
}

/* Nav Meu Styling */

.nav-menu a {
  padding: 8px;
  text-decoration: none;
  display: inline-block;
  color: rgba(202, 206, 221, 0.8);
  font-family: "Raleway", sans-serif;
  font-weight: 600;
  font-size: 14px;
  outline: none;
}

.nav-menu .menu-active a,
.nav-menu a:hover {
  color: #fff;
}

.nav-menu > li {
  margin-left: 8px;
}

.nav-menu > li > a:before {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: #d2232a;
  visibility: hidden;
  transition: all 0.3s ease-in-out 0s;
}

.nav-menu a:hover:before,
.nav-menu li:hover > a:before,
.nav-menu .menu-active > a:before {
  visibility: visible;
  width: 100%;
}

.nav-menu li.buy-tickets a {
  color: #fff;
  background: #d2232a;
  padding: 7px 22px;
  border-radius: 50px;
  border: 2px solid #d2232a;
  transition: all ease-in-out 0.3s;
  font-weight: 500;
  margin-left: 8px;
  margin-top: 2px;
  line-height: 1;
  font-size: 13px;
}

.nav-menu li.buy-tickets a:hover {
  background: none;
}

.nav-menu li.buy-tickets:hover a:before,
.nav-menu li.buy-tickets.menu-active a:before {
  visibility: hidden;
}

.nav-menu ul {
  margin: 4px 0 0 0;
  padding: 10px;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  background: #fff;
  border-radius: 3px;
}

.nav-menu ul li {
  transition: 0.3s;
}

.nav-menu ul li a {
  padding: 10px;
  color: #060c22;
  transition: 0.3s;
  display: block;
  font-size: 13px;
  text-transform: none;
  border-radius: 3px;
}

.nav-menu ul li:hover > a {
  background: #d2232a;
  color: #fff;
}

.nav-menu ul ul {
  margin: 0;
}

/* Mobile Nav Toggle */

#mobile-nav-toggle {
  position: fixed;
  right: 0;
  top: 0;
  z-index: 999;
  margin: 15px 15px 0 0;
  border: 0;
  background: none;
  font-size: 24px;
  display: none;
  transition: all 0.4s;
  outline: none;
  cursor: pointer;
}

#mobile-nav-toggle i {
  color: #fff;
}

/* Mobile Nav Styling */

#mobile-nav {
  position: fixed;
  top: 0;
  padding-top: 18px;
  bottom: 0;
  z-index: 998;
  background: rgba(6, 12, 34, 0.9);
  left: -260px;
  width: 260px;
  overflow-y: auto;
  transition: 0.4s;
}

#mobile-nav ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

#mobile-nav ul li {
  position: relative;
}

#mobile-nav ul li a {
  color: #fff;
  font-size: 17px;
  overflow: hidden;
  padding: 10px 22px 10px 15px;
  position: relative;
  text-decoration: none;
  width: 100%;
  display: block;
  outline: none;
}

#mobile-nav ul li a:hover {
  color: #d2232a;
}

#mobile-nav ul li li {
  padding-left: 30px;
}

#mobile-nav ul .menu-has-children i {
  position: absolute;
  right: 0;
  z-index: 99;
  padding: 15px;
  cursor: pointer;
  color: #fff;
}

#mobile-nav ul .menu-has-children i.fa-chevron-up {
  color: #d2232a;
}

#mobile-nav ul .menu-item-active {
  color: #d2232a;
}

#mobile-body-overly {
  width: 100%;
  height: 100%;
  z-index: 997;
  top: 0;
  left: 0;
  position: fixed;
  background: rgba(6, 12, 34, 0.8);
  display: none;
}

/* Mobile Nav body classes */

body.mobile-nav-active {
  overflow: hidden;
}

body.mobile-nav-active #mobile-nav {
  left: 0;
}

body.mobile-nav-active #mobile-nav-toggle {
  color: #fff;
}

/*--------------------------------------------------------------
# Intro Section
--------------------------------------------------------------*/

#intro {
  width: 100%;
  height: 85vh;
  /* background: url(../img/intro-bg.jpg) top center; */
  /*background: url(../img/background-autodesk.gif) top center;*/
  background: #0f0c29;  /* fallback for old browsers */
background: -webkit-linear-gradient(to right, #24243e, #302b63, #0f0c29);  /* Chrome 10-25, Safari 5.1-6 */
background: linear-gradient(to right, #24243e, #302b63, #0f0c29); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */

  background-size: cover;
  overflow: hidden;
  position: relative;
}

#intro:before {
  content: "";
  background: rgba(6, 12, 34, 0.5);
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}

#intro .intro-container {
  position: absolute;
  bottom: 0;
  left: 0;
  top: 40px;
  right: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: left;
  -ms-flex-pack: left;
  justify-content: left;
  -webkit-box-align: left;
  -ms-flex-align: left;
  align-items: left;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  text-align: left;
  padding: 0 15px;
}

#intro h1 {
  color: #fff;
  font-family: "Raleway", sans-serif;
  font-size: 40px;
  font-weight: 600;
}

#intro .text {
  margin:30px 0;
}

#intro h1 span {
  color:#584ccc;
}


#intro p {
  color: #fff !important;
  font-weight: 400;
  font-size: 20px;
}

#intro .play-btn {
  width: 94px;
  height: 94px;
  background: radial-gradient(#d2232a 50%, rgba(101, 111, 150, 0.15) 52%);
  border-radius: 50%;
  display: block;
  position: relative;
  overflow: hidden;
}

#intro .play-btn::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translateX(-40%) translateY(-50%);
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 100;
  transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

#intro .play-btn:before {
  content: '';
  position: absolute;
  width: 120px;
  height: 120px;
  -webkit-animation-delay: 0s;
  animation-delay: 0s;
  -webkit-animation: pulsate-btn 2s;
  animation: pulsate-btn 2s;
  -webkit-animation-direction: forwards;
  animation-direction: forwards;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-timing-function: steps;
  animation-timing-function: steps;
  opacity: 1;
  border-radius: 50%;
  border: 2px solid rgba(163, 163, 163, 0.4);
  top: -15%;
  left: -15%;
  background: rgba(198, 16, 0, 0);
}

#intro .play-btn:hover::after {
  border-left: 15px solid #d2232a;
  -webkit-transform: scale(20);
  transform: scale(20);
}

#intro .play-btn:hover::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translateX(-40%) translateY(-50%);
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border: none;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 200;
  -webkit-animation: none;
  animation: none;
  border-radius: 0;
}

/* =========================================================
   INTRO / HERO
========================================================= */

#intro {
    position: relative;
    overflow: hidden;
    min-height: 750px;
    background:
        radial-gradient(circle at 75% 50%, rgba(86, 52, 180, .25), transparent 32%),
        radial-gradient(circle at 95% 80%, rgba(0, 120, 255, .15), transparent 30%),
        linear-gradient(110deg, #11142f 0%, #0b0d24 55%, #08091b 100%);
    color: #fff;
}

#intro .intro-container {
    position: relative;
    min-height: 650px;
    display: flex;
    align-items: center;
    padding: 80px 0;
}

#intro .container {
    position: relative;
    z-index: 5;
}

#intro .row {
    min-height: 520px;
}


/* =========================================================
   TEXTO
========================================================= */

.intro-content {
    position: relative;
    z-index: 10;
}

.intro-kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 22px;
    color: #8cc8ff;
    font-size: 13px;
    font-weight: 500;
}

.kicker-icon {
    width: 34px;
    height: 34px;
    border: 1px solid rgba(120, 170, 255, .4);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(80, 120, 255, .12);
    box-shadow: 0 0 20px rgba(80, 120, 255, .15);
}

.intro-content h1 {
    margin: 0;
    max-width: 650px;
    font-size: clamp(42px, 4.1vw, 64px);
    line-height: 1.04;
    font-weight: 700;
    letter-spacing: -2.5px;
    color: #fff;
}

.intro-content h1 span {
    background: linear-gradient(
        90deg,
        #d778ff,
        #8e7cff,
        #26b9ff
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.intro-description {
    max-width: 460px;
    margin: 25px 0 30px;
    color: rgba(255,255,255,.72);
    font-size: 13px !important;
    line-height: 1.6;
}


/* =========================================================
   BOTÕES
========================================================= */

.intro-buttons {
    display: flex;
    align-items: center;
    gap: 25px;
    margin-bottom: 45px;
}

.btn-intro-primary {
    display: inline-flex;
    align-items: center;
    gap: 20px;
    padding: 8px 12px;
    border-radius: 12px;
    color: #fff !important;
    text-decoration: none !important;
    font-size: 14px;
    font-weight: 600;

    background: linear-gradient(
        90deg,
        #d13ce8,
        #586cff
    );

    box-shadow:
        0 10px 35px rgba(111, 65, 255, .35);

    transition: all .3s ease;
}

.btn-intro-primary i {
    font-size: 14px;
    transition: transform .3s ease;
}

.btn-intro-primary:hover {
    transform: translateY(-3px);
    box-shadow:
        0 15px 45px rgba(111, 65, 255, .5);
}

.btn-intro-primary:hover i {
    transform: translateX(5px);
}

.btn-intro-secondary {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: #f2c329 !important;
    text-decoration: none !important;
    font-size: 15px;
    font-weight: 500;
}

.btn-intro-secondary i {
    font-size: 20px;
}


/* =========================================================
   BENEFÍCIOS
========================================================= */

.intro-benefits {
    display: flex;
    max-width: 680px;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 16px;
    background: rgba(255,255,255,.025);
    backdrop-filter: blur(10px);
    padding: 18px 20px;
}

.benefit {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 0 18px;
    border-right: 1px solid rgba(255,255,255,.12);
}

.benefit:first-child {
    padding-left: 0;
}

.benefit:last-child {
    border-right: 0;
}

.benefit > i {
    color: #9b7cff;
    font-size: 21px;
}

.benefit strong,
.benefit small {
    display: block;
}

.benefit strong {
    color: #fff;
    font-size: 13px;
    line-height:10px;
}

.benefit small {
    margin-top: 3px;
    color: rgba(255,255,255,.55);
    font-size: 11px;
}


/* =========================================================
   VISUAL
========================================================= */

.intro-visual {
    position: relative;
    min-height: 520px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.visual-glow {
    position: absolute;
    width: 480px;
    height: 480px;
    border-radius: 50%;

    background: radial-gradient(
        circle,
        rgba(112, 65, 255, .35) 0%,
        rgba(52, 107, 255, .15) 35%,
        transparent 70%
    );

    filter: blur(20px);
    z-index: 0;
}


/* =========================================================
   LOGO COPILOT
========================================================= */

.copilot-logo {
    position: absolute;
    width: 145px;
    height: auto;
    top: 20px;
    right: 125px;
    z-index: 3;
    filter: drop-shadow(0 15px 25px rgba(0,0,0,.3));
}


/* =========================================================
   ROBÔ
========================================================= */

.intro-robot {
    position: relative;
    z-index: 4;
    width: 600px;
    max-width: 90%;
    object-fit: contain;

    filter:
        drop-shadow(0 25px 35px rgba(0,0,0,.45))
        drop-shadow(0 0 30px rgba(100,80,255,.25));

    animation: robotFloat 5s ease-in-out infinite;
}

@keyframes robotFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-12px);
    }

}


/* =========================================================
   BADGE 30 DIAS
========================================================= */

.trial-badge-intro {
    position: absolute;
    z-index: 8;
    bottom: 105px;
    left: 70px;

    width: 110px;
    height: 110px;

    border-radius: 50%;
    background: #ffc52f;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    color: #1b1d38;

    box-shadow:
        0 10px 30px rgba(0,0,0,.25),
        0 0 25px rgba(255,197,47,.25);

    transform: rotate(-5deg);
}

.trial-number {
    font-size: 40px;
    line-height: .9;
    font-weight: 800;
}

.trial-text {
    margin-top: 5px;
    text-align: center;
    font-size: 11px;
    line-height: 1.1;
    font-weight: 600;
}

.trial-text span {
    font-weight: 800;
}


/* =========================================================
   CAIXA DO BADGE
========================================================= */

.trial-info {
    position: absolute;
    z-index: 7;
    bottom: 117px;
    left: 155px;

    width: 210px;
    min-height: 75px;

    padding: 14px 15px 14px 30px;

    border-radius: 0 9px 9px 0;

    background: rgba(255,255,255,.92);
    color: #303246;

    box-shadow: 0 12px 30px rgba(0,0,0,.25);
}

.trial-info strong,
.trial-info span {
    display: block;
}

.trial-info strong {
    font-size: 12px;
}

.trial-info span {
    margin-top: 4px;
    font-size: 11px;
    color: #666;
}


/* =========================================================
   FEATURE CARDS
========================================================= */

.feature-card {
    position: absolute;
    z-index: 10;

    display: flex;
    align-items: center;
    gap: 10px;

    width: 190px;
    padding: 10px;

    border: 1px solid rgba(255,255,255,.12);
    border-radius: 12px;

    background: rgba(25, 25, 65, .72);
    backdrop-filter: blur(12px);

    box-shadow:
        0 10px 30px rgba(0,0,0,.2);

    transition: all .3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: rgba(140,120,255,.45);
}

.feature-icon {
    width: 38px;
    height: 38px;
    flex-shrink: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 10px;

    color: #b394ff;
    background: rgba(120, 90, 255, .15);

    font-size: 16px;
}

.feature-card strong,
.feature-card span {
    display: block;
}

.feature-card strong {
    color: #fff;
    font-size: 11px;
}

.feature-card span {
    margin-top: 3px;
    color: rgba(255,255,255,.55);
    font-size: 9px;
    line-height: 1.3;
}

.feature-card-1 {
    top: 120px;
    right: -15px;
}

.feature-card-2 {
    top: 220px;
    right: -35px;
}

.feature-card-3 {
    top: 320px;
    right: -25px;
}

.feature-card-4 {
    top: 420px;
    right: 0;
}


/* =========================================================
   PLATAFORMA
========================================================= */

.visual-platform {
    position: absolute;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%);

    width: 470px;
    height: 22px;

    border-radius: 50%;

    background: rgba(218, 80, 255, .35);

    box-shadow:
        0 0 20px #d850ff,
        0 0 50px rgba(100, 80, 255, .7),
        0 0 100px rgba(80, 70, 255, .35);

    filter: blur(1px);
}


/* =========================================================
   RESPONSIVO
========================================================= */

@media (max-width: 1199px) {

    .intro-content h1 {
        font-size: 48px;
    }

    .intro-robot {
        width: 350px;
    }

    .feature-card {
        width: 170px;
    }

    .feature-card-1 {
        right: -20px;
    }

    .feature-card-2 {
        right: -30px;
    }

    .feature-card-3 {
        right: -20px;
    }

    .feature-card-4 {
        right: -10px;
    }

}


@media (max-width: 991px) {

    #intro .intro-container {
        padding: 70px 0;
    }

    .intro-content {
        text-align: center;
    }

    .intro-kicker {
        justify-content: center;
    }

    .intro-content h1 {
        max-width: 750px;
        margin: auto;
    }

    .intro-description {
        margin-left: auto;
        margin-right: auto;
    }

    .intro-buttons {
        justify-content: center;
    }

    .intro-benefits {
        margin: auto;
    }

    .intro-visual {
        margin-top: 60px;
    }

}


@media (max-width: 767px) {

    #intro {
        min-height: 900px;
    }

    #intro .intro-container {
        padding: 55px 15px;
    }

    .intro-content h1 {
        font-size: 38px;
        line-height: 1.08;
        letter-spacing: -1.5px;
    }

    .intro-description {
        font-size: 16px;
    }

    .intro-buttons {
        flex-direction: column;
        gap: 18px;
    }

    .intro-benefits {
        flex-direction: column;
        gap: 15px;
    }

    .benefit {
        border-right: 0;
        border-bottom: 1px solid rgba(255,255,255,.1);
        padding: 12px 0;
        justify-content: center;
    }

    .benefit:last-child {
        border-bottom: 0;
    }

    .intro-visual {
        min-height: 480px;
        margin-top: 30px;
    }

    .intro-robot {
        width: 320px;
    }

    .copilot-logo {
        width: 100px;
        top: 20px;
        right: 10%;
    }

    .feature-card {
        display: none;
    }

    .trial-badge-intro {
        left: 5%;
        bottom: 100px;
        width: 90px;
        height: 90px;
    }

    .trial-number {
        font-size: 32px;
    }

    .trial-info {
        left: 17%;
        bottom: 108px;
        width: 185px;
    }

    .visual-platform {
        width: 80%;
    }

}


@media (max-width: 480px) {

    .intro-content h1 {
        font-size: 34px;
    }

    .intro-visual {
        min-height: 420px;
    }

    .intro-robot {
        width: 280px;
    }

    .copilot-logo {
        width: 85px;
    }

    .trial-badge-intro {
        bottom: 75px;
    }

    .trial-info {
        bottom: 84px;
        left: 18%;
    }

}

.play-btn {
  width: 94px;
  height: 94px;
  background: radial-gradient(#d2232a 50%, rgba(101, 111, 150, 0.15) 52%);
  border-radius: 50%;
  margin-left: auto;
  margin-right: auto;
  display: inline-block;
  position: relative;
  overflow: hidden;
}

.play-btn::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translateX(-40%) translateY(-50%);
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 100;
  transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.play-btn:before {
  content: '';
  position: absolute;
  width: 120px;
  height: 120px;
  -webkit-animation-delay: 0s;
  animation-delay: 0s;
  -webkit-animation: pulsate-btn 2s;
  animation: pulsate-btn 2s;
  -webkit-animation-direction: forwards;
  animation-direction: forwards;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-timing-function: steps;
  animation-timing-function: steps;
  opacity: 1;
  border-radius: 50%;
  border: 2px solid rgba(163, 163, 163, 0.4);
  top: -15%;
  left: -15%;
  background: rgba(198, 16, 0, 0);
}

.play-btn:hover::after {
  border-left: 15px solid #d2232a;
  -webkit-transform: scale(20);
  transform: scale(20);
}

.play-btn:hover::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translateX(-40%) translateY(-50%);
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border: none;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 200;
  -webkit-animation: none;
  animation: none;
  border-radius: 0;
}

#intro .about-btn {
  font-family: "Raleway", sans-serif;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 32px;
  border-radius: 50px;
  transition: 0.5s;
  line-height: 1;
  margin: 10px;
  color: #fff;
  -webkit-animation-delay: 0.8s;
  animation-delay: 0.8s;
  border: 2px solid #d2232a;
}

#intro .about-btn:hover {
  background: #d2232a;
  color: #fff;
}

@-webkit-keyframes pulsate-btn {
  0% {
    -webkit-transform: scale(0.6, 0.6);
    transform: scale(0.6, 0.6);
    opacity: 1;
  }

  100% {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    opacity: 0;
  }
}

@keyframes pulsate-btn {
  0% {
    -webkit-transform: scale(0.6, 0.6);
    transform: scale(0.6, 0.6);
    opacity: 1;
  }

  100% {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    opacity: 0;
  }
}

/* =========================================================
   MICROSOFT 365 COPILOT
   ESTILIZAÇÃO DAS 3 SEÇÕES
========================================================= */

.copilot-benefits {
    --copilot-bg: #343233;
    --copilot-card: #373536;
    --copilot-card-hover: #403e3f;
    --copilot-border: rgba(255,255,255,.42);
    --copilot-white: #ffffff;
    --copilot-text: #eeeeee;
    --copilot-muted: #d5d5d5;
    --copilot-blue: #1769ff;
    --copilot-purple: #a65cff;

    width: 100%;
    /* background: var(--copilot-bg); */
    color: var(--copilot-white);
    padding: 55px 20px 10px;
    font-family: Arial, Helvetica, sans-serif;
    overflow: hidden;
}


/* =========================================================
   CONTAINER
========================================================= */

.copilot-container {
    width: 100%;
    max-width: 1050px;
    margin: 0 auto;
}


/* =========================================================
   TÍTULOS
========================================================= */

.copilot-section-title {
    text-align: center;
    margin-bottom: 24px;
}

.copilot-section-title h2 {
    margin: 0;
    font-size: 22px;
    line-height: 1.3;
    font-weight: 700;
    color: #ffffff;
}

.copilot-results-title {
    margin-top: 34px;
    margin-bottom: 18px;
}


/* =========================================================
   SEÇÃO 1 — BENEFÍCIOS
========================================================= */

.copilot-benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px 24px;
}


.copilot-benefit-card {
    min-height: 112px;
    border: 1px solid var(--copilot-border);
    border-radius: 12px;

    padding: 15px 17px;

    display: flex;
    align-items: center;
    gap: 15px;

    background: rgba(255,255,255,.015);

    transition:
        background .25s ease,
        transform .25s ease,
        border-color .25s ease;
}


.copilot-benefit-card:hover {
    background: var(--copilot-card-hover);
    border-color: rgba(255,255,255,.65);
    transform: translateY(-2px);
}


/* =========================================================
   ÍCONES
========================================================= */

.copilot-icon {
    flex: 0 0 64px;
    width: 64px;
    height: 64px;

    display: flex;
    align-items: center;
    justify-content: center;
}


.copilot-icon svg {
    width: 100%;
    height: 100%;
}


/* =========================================================
   TEXTO DOS BENEFÍCIOS
========================================================= */

.copilot-benefit-content {
    flex: 1;
}

.copilot-benefit-content h3 {
    margin: 0 0 5px;

    color: #ffffff;

    font-size: 13px;
    line-height: 1.25;
    font-weight: 700;
}


.copilot-benefit-content h3.highlight {
    color: var(--copilot-blue);
}


.copilot-benefit-content p {
    margin: 0;

    color: var(--copilot-text);

    font-size: 11px;
    line-height: 1.35;
}


/* =========================================================
   SEÇÃO 2 — RESULTADOS
========================================================= */

.copilot-results-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 7px;
}


.copilot-result-card {
    min-height: 118px;

    padding: 13px 9px;

    border-radius: 5px;

    background: rgba(255,255,255,.045);

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;

    text-align: center;

    transition:
        transform .25s ease,
        background .25s ease;
}


.copilot-result-card:hover {
    transform: translateY(-3px);
    background: rgba(255,255,255,.08);
}


.copilot-result-icon {
    width: 43px;
    height: 43px;

    margin-bottom: 9px;

    padding: 6px;

    border-radius: 50%;

    background: #ffffff;

    display: flex;
    align-items: center;
    justify-content: center;
}


.copilot-result-icon svg {
    width: 100%;
    height: 100%;
}


.copilot-result-card p {
    margin: 0;

    max-width: 135px;

    color: #ffffff;

    font-size: 11px;
    line-height: 1.25;
    font-weight: 600;
}


/* =========================================================
   SEÇÃO 3 — TRIAL
========================================================= */

.copilot-trial {
    position: relative;

    min-height: 260px;

    margin-top: 28px;

    display: flex;
    align-items: flex-end;

    padding-left: 20px;
}


/* =========================================================
   BOX DA TABELA
========================================================= */

.copilot-trial-box {
    position: relative;
    z-index: 5;

    width: min(650px, 72%);

    border-radius: 6px;
    overflow: hidden;

    background: rgba(255,255,255,.32);

    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);

    box-shadow: 0 10px 35px rgba(0,0,0,.12);
}


.copilot-trial-header {
    background: #f2f5fb;

    padding: 12px 20px;
}


.copilot-trial-header h2 {
    margin: 0;

    color: #1d1d1f;

    font-size: 16px;
    line-height: 1.2;
    font-weight: 700;
}


/* =========================================================
   TABELA
========================================================= */

.copilot-trial-table {
    padding: 5px 20px 9px;
}


.copilot-table-row {
    display: grid;
    grid-template-columns: 125px 1fr;

    min-height: 31px;

    align-items: center;

    border-bottom: 1px solid rgba(255,255,255,.45);
}


.copilot-table-row:last-child {
    border-bottom: 0;
}


.copilot-table-label {
    color: #e9e9e9;

    font-size: 11px;
    line-height: 1.2;
}


.copilot-table-value {
    color: #f2f2f2;

    font-size: 13px;
    line-height: 1.25;
}


/* =========================================================
   ILUSTRAÇÃO — COPILOT
========================================================= */

.copilot-trial-visual {
    position: absolute;

    right: 0;
    bottom: -5px;

    width: 330px;
    height: 250px;

    pointer-events: none;
}


/* =========================================================
   FORMAS DO LOGO
========================================================= */

.copilot-logo-shape {
    position: absolute;

    right: 35px;
    top: 28px;

    width: 155px;
    height: 150px;

    transform: rotate(-12deg);
}


.logo-block {
    position: absolute;

    display: block;

    border-radius: 28px;

    filter: drop-shadow(0 4px 5px rgba(0,0,0,.12));
}


.block-1 {
    width: 58px;
    height: 110px;

    left: 32px;
    top: 12px;

    background: linear-gradient(
        145deg,
        #7d4df5,
        #4b5cf0
    );

    transform: rotate(28deg);
}


.block-2 {
    width: 54px;
    height: 105px;

    left: 65px;
    top: 4px;

    background: linear-gradient(
        145deg,
        #35a8e8,
        #2377e8
    );

    transform: rotate(-5deg);
}


.block-3 {
    width: 48px;
    height: 90px;

    left: 92px;
    top: 50px;

    background: linear-gradient(
        145deg,
        #7c4de9,
        #6246d9
    );

    transform: rotate(35deg);
}


.block-4 {
    width: 47px;
    height: 80px;

    left: 15px;
    top: 70px;

    background: linear-gradient(
        145deg,
        #49b5dd,
        #1596bd
    );

    transform: rotate(-32deg);
}


/* =========================================================
   ÓRBITAS
========================================================= */

.copilot-orbit {
    position: absolute;

    border-radius: 50%;

    border: 3px dashed rgba(186, 255, 86, .75);

    transform: rotate(-22deg);
}


.orbit-1 {
    width: 160px;
    height: 100px;

    right: 85px;
    bottom: 55px;
}


.orbit-2 {
    width: 130px;
    height: 85px;

    right: 99px;
    bottom: 63px;

    border-color: rgba(255,255,255,.35);
    border-style: solid;
    border-width: 2px;
}


/* =========================================================
   MOEDAS
========================================================= */

.copilot-coins {
    position: absolute;

    right: 76px;
    bottom: 22px;

    display: flex;
    align-items: flex-end;
    gap: 2px;
}


.copilot-coins span {
    width: 34px;
    height: 13px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: linear-gradient(
        180deg,
        #ffd866,
        #e9a928
    );

    color: #bd7c00;

    font-size: 12px;

    box-shadow:
        0 4px 0 #c98b21,
        0 6px 8px rgba(0,0,0,.2);
}


.copilot-coins span:nth-child(2) {
    transform: translateY(-8px);
}


.copilot-coins span:nth-child(3) {
    transform: translateY(-15px);
}


/* =========================================================
   RESPONSIVIDADE — TABLET
========================================================= */

@media (max-width: 900px) {

    .copilot-benefits {
        padding: 45px 18px 50px;
    }

    .copilot-results-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .copilot-trial-box {
        width: 78%;
    }

}


/* =========================================================
   RESPONSIVIDADE — MOBILE
========================================================= */

@media (max-width: 650px) {

    .copilot-benefits {
        padding: 38px 15px 45px;
    }


    .copilot-section-title h2 {
        font-size: 18px;
    }


    /* BENEFÍCIOS */

    .copilot-benefits-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }


    .copilot-benefit-card {
        min-height: 95px;
        padding: 13px;
    }


    .copilot-icon {
        flex-basis: 55px;
        width: 55px;
        height: 55px;
    }


    .copilot-benefit-content h3 {
        font-size: 12px;
    }


    .copilot-benefit-content p {
        font-size: 10px;
    }


    /* RESULTADOS */

    .copilot-results-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 7px;
    }


    .copilot-result-card {
        min-height: 115px;
    }


    .copilot-result-card:last-child {
        grid-column: 1 / -1;
    }


    /* TRIAL */

    .copilot-trial {
        min-height: auto;

        margin-top: 25px;

        padding: 0;

        display: block;
    }


    .copilot-trial-box {
        width: 100%;
    }


    .copilot-trial-header {
        padding: 11px 15px;
    }


    .copilot-trial-header h2 {
        font-size: 14px;
    }


    .copilot-trial-table {
        padding: 5px 15px 8px;
    }


    .copilot-table-row {
        grid-template-columns: 95px 1fr;
        min-height: 35px;
    }


    .copilot-table-label {
        font-size: 10px;
    }


    .copilot-table-value {
        font-size: 9px;
    }

    .copilot-logo-shape {
        right: 50%;
        transform: translateX(50%) rotate(-12deg);
    }


    .orbit-1 {
        right: 50%;
        transform: translateX(50%);
    }


    .orbit-2 {
        right: 50%;
        transform: translateX(50%);
    }


    .copilot-coins {
        right: 50%;
        transform: translateX(50%);
    }

}


/* =========================================================
   MOBILE PEQUENO
========================================================= */

@media (max-width: 400px) {

    .copilot-results-grid {
        grid-template-columns: 1fr 1fr;
    }


    .copilot-result-card p {
        font-size: 8px;
    }


    .copilot-table-row {
        grid-template-columns: 85px 1fr;
    }

}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/

#about {
  background: url("../img/back-acrobat.jpg");
  background-size: contain;
  overflow: hidden;
  position: relative;
  background-repeat: no-repeat;
  color: #fff;
  min-height:240px;
  padding: 60px 0 40px 0;
}

#about:before {
  content: "";
  /*background: rgba(13, 20, 41, 0.8);*/
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}

#about h2 {
  font-size: 30px;
  font-weight: bold;
  margin-bottom: 10px;
  color: #fff;
}

#about h3 {
  font-size: 18px;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 10px;
  color: #fff;
}

#about p {
  font-size: 18px;
  margin-bottom: 20px;
  color: #fff;
}



/*--------------------------------------------------------------
# Speakers Section
--------------------------------------------------------------*/

#speakers {
  padding: 60px 0 30px 0;
}

#speakers .speaker {
  position: relative;
  overflow: hidden;
  margin-bottom: 30px;
}

#speakers .speaker .details {
  background: rgba(210, 35, 42, 0.76);
  position: absolute;
  left: 0;
  bottom: -30px;
  right: 0;
  text-align: center;
  padding-top: 10px;
  transition: all 300ms cubic-bezier(0.645, 0.045, 0.355, 1);
}

#speakers .speaker .details h3 {
  color: #fff;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 5px;
}

#speakers .speaker .details p {
  color: #fff;
  font-size: 15px;
  margin-bottom: 10px;
  font-style: italic;
}

#speakers .speaker .details .social {
  height: 30px;
}

#speakers .speaker .details a {
  color: #fff;
}

#speakers .speaker .details a:hover {
  color: #d2232a;
}

#speakers .speaker:hover .details {
  bottom: 0;
}

#speakers-details {
  padding: 60px 0;
}

#speakers-details .details h2 {
  color: #112363;
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 10px;
}

#speakers-details .details .social {
  margin-bottom: 15px;
}

#speakers-details .details .social a {
  background: #e9edfb;
  color: #112363;
  line-height: 1;
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  padding-top: 9px;
}

#speakers-details .details .social a:hover {
  background: #d2232a;
  color: #fff;
}

#speakers-details .details .social a i {
  font-size: 18px;
}

#speakers-details .details p {
  color: #112363;
  font-size: 15px;
  margin-bottom: 10px;
}

/*--------------------------------------------------------------
# Schedule 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: #53575a;
  color: #fff;
  padding: 10px 30px;
}

#schedule .nav-tabs a.active {
  background-color: #d2232a;
  color: #fff;
}

#schedule .sub-heading {
  text-align: center;
  font-size: 18px;
  font-style: italic;
  margin: 0 auto 30px auto;
}

#schedule .tab-pane {
  transition: ease-in-out .2s;
}

#schedule .schedule-item {
  border-bottom: 1px solid #cad4f6;
  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%;
  -webkit-transform: translateX(-50%);
  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: #7b0708;
  font-weight: normal;
  font-size: 16px;
}

#schedule .schedule-item p {
  font-style: italic;
  color: #d2232a;
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Venue Section
--------------------------------------------------------------*/

#venue {
  padding: 10px 0;
}

#venue .container-fluid {
  margin-bottom: 3px;
}

#venue .venue-map {
  padding: 10px;
}

#venue .venue-map h2 {
  color: #d2232a;
}
#venue .venue-map h5 {
  color: #fff;
}

#venue .venue-map img {
  width: 200px;
}

#venue .venue-microsoft {
  background-color: #009bd7;
  padding: 15px 30px 0px 30px;
  height: 80px;
}

#venue .venue-microsoft p {
  color: #ffffff;
}

#venue .venue-info {
  background: url("../img/venue-info-bg.jpg") top center no-repeat;
  background-size: cover;
  position: relative;
  padding-top: 60px;
  padding-bottom: 60px;
}

#venue .venue-info:before {
  content: "";
  background: rgba(13, 20, 41, 0.8);
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}

#venue .venue-info h3 {
  font-size: 36px;
  font-weight: 700;
  color: #fff;
}

#venue .venue-info p {
  color: #fff;
  margin-bottom: 0;
}

#venue .venue-gallery-container {
  padding-right: 12px;
}

#venue .venue-gallery {
  overflow: hidden;
  border-right: 3px solid #fff;
  border-bottom: 3px solid #fff;
}

#venue .venue-gallery img {
  transition: all ease-in-out 0.4s;
}

#venue .venue-gallery:hover img {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/

#contact {
  padding: 10px 0;
}

#contact .container-fluid {
  margin-bottom: 3px;
}

#contact .venue-map {
  padding: 10px;
}

#contact .venue-map h2 {
  color: #d2232a;
}

#contact .venue-map img {
  width: 200px;
}

#contact .venue-microsoft {
  background-color: #009bd7;
  padding: 15px 30px 0px 30px;
  height: 80px;
}

#contact .venue-microsoft p {
  color: #ffffff;
}

#contact .venue-info {
  background: url("../img/venue-info-bg.jpg") top center no-repeat;
  background-size: cover;
  position: relative;
  padding-top: 60px;
  padding-bottom: 60px;
}

#contact .venue-info:before {
  content: "";
  background: rgba(13, 20, 41, 0.8);
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}

#contact .venue-info h3 {
  font-size: 36px;
  font-weight: 700;
  color: #fff;
}

#contact .venue-info p {
  color: #fff;
  margin-bottom: 0;
}

#contact .venue-gallery-container {
  padding-right: 12px;
}

#contact .venue-gallery {
  overflow: hidden;
  border-right: 3px solid #fff;
  border-bottom: 3px solid #fff;
}

#contact .venue-gallery img {
  transition: all ease-in-out 0.4s;
}

#contact .venue-gallery:hover img {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}

/*--------------------------------------------------------------
# Hotels Section
--------------------------------------------------------------*/

#hotels {
  padding: 0 0;
  background-color:transparent;
}

.thumb-video {
  min-height:250px;
  transition: transform .3s; /* Animation */
}

.thumb-video:hover {
  transform: scale(1.1); /* (150% zoom - Note: if the zoom is too large, it will go outside of the viewport) */
}

.thumb-video h3 {
  margin-top:10px;
  font-size:18px !important;
}

/* .thumb-video img {
  border-radius:10px;
  opacity: 0.5;
}
.thumb-video:hover img {
  opacity: 1;
} */

#hotels .hotel {
  border: 1px solid #e0e5fa;
  background: #fff;
  margin-bottom: 30px;
}

#hotels .hotel:hover .hotel-img img {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}

#hotels .hotel-img {
  overflow: hidden;
  margin-bottom: 15px;
}

#hotels .hotel-img img {
  transition: 0.3s ease-in-out;
}

#hotels h3 {
  font-weight: 600;
  font-size: 20px;
  margin-bottom: 5px;
  padding: 0 20px;
}

#hotels a {
  color: #152b79;
}

#hotels a:hover {
  color: #d2232a;
}

#hotels .stars {
  padding: 0 20px;
  margin-bottom: 5px;
}

#hotels .stars i {
  color: #ffc31d;
}

#hotels p {
  padding: 0 20px;
  margin-bottom: 20px;
  color: #060c22;
  font-style: italic;
  font-size: 15px;
}

/*--------------------------------------------------------------
# Gallery Section
--------------------------------------------------------------*/

#gallery {
  padding: 60px;
  overflow: hidden;
}

#gallery .owl-nav,
#gallery .owl-dots {
  margin-top: 25px;
  text-align: center;
}

#gallery .owl-item {
  border-left: 2px solid #fff;
  border-right: 2px solid #fff;
}

#gallery .owl-dot {
  display: inline-block;
  margin: 0 5px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #ddd;
}

#gallery .owl-dot.active {
  background-color: #d2232a;
}

#gallery .gallery-carousel .owl-stage-outer {
  overflow: visible;
}

#gallery .gallery-carousel .center {
  border: 6px solid #d2232a;
  margin: -10px;
  box-sizing: content-box;
  padding: 4px;
  background: #fff;
  z-index: 1;
}

/*--------------------------------------------------------------
# Sponsors Section
--------------------------------------------------------------*/

#sponsors {
  padding: 60px 0;
}

#sponsors .sponsors-wrap {
  border-top: 1px solid #e0e5fa;
  border-left: 1px solid #e0e5fa;
  margin-bottom: 30px;
}

#sponsors .sponsor-logo {
  padding: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border-right: 1px solid #e0e5fa;
  border-bottom: 1px solid #e0e5fa;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.5);
  height: 160px;
}

#sponsors .sponsor-logo:hover img {
  -webkit-transform: scale(1.2);
  transform: scale(1.2);
}

#sponsors img {
  transition: all 0.4s ease-in-out;
}

/*--------------------------------------------------------------
# F.A.Q Section
--------------------------------------------------------------*/

#faq {
  padding: 10px 0;
}

#faq #faq-list {
  padding: 0;
  list-style: none;
}

#faq #faq-list li {
  border-bottom: 1px solid #ddd;
}

#faq #faq-list a {
  padding: 18px 0;
  display: block;
  position: relative;
  font-family: "Raleway", sans-serif;
  font-size: 16px;
  line-height: 24px;
  font-weight: 600;
  padding-right: 20px;
}

#faq #faq-list i {
  font-size: 24px;
  position: absolute;
  right: 0;
  top: 16px;
}

#faq #faq-list p {
  margin-bottom: 20px;
}

#faq #faq-list a.collapse {
  color: #d2232a;
}

#faq #faq-list a.collapsed {
  color: #000;
}

#faq #faq-list a.collapsed i::before {
  content: "\f055" !important;
}



#bim {
  padding: 10px;
  background: url(../img/subscribe-bg.jpg) center center no-repeat;
  background-size: cover;
  overflow: hidden;
  position: relative;
}

#bim:before {
  content: "";
  background: rgba(6, 12, 34, 0.6);
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}

#bim .section-header h2 {
  color: #fff;
  font-size: 40px;
}

#bim p {
  color: #fff;
  font-size: 20px;
}

#bim input {
  background: #fff;
  color: #060c22;
  border: 0;
  outline: none;
  margin: 0;
  padding: 9px 20px;
  border-radius: 50px;
  font-size: 14px;
}

#bim button {
  border: 0;
  padding: 9px 25px;
  cursor: pointer;
  background: #d2232a;
  color: #fff;
  transition: all 0.3s ease;
  outline: none;
  font-size: 14px;
  border-radius: 50px;
}

#bim button:hover {
  background: #d2232a;
}

/*--------------------------------------------------------------
# Buy Tickets Section
--------------------------------------------------------------*/

#buy-tickets {
  padding: 30px 0;
}

#buy-tickets .card {
  border: none;
  border-radius: 5px;
  min-height: 550px;
  transition: all  0.3s ease-in-out;
  box-shadow: 0 10px 25px 0 rgba(6, 12, 34, 0.1);
}

#buy-tickets .card:hover {
  box-shadow: 0 10px 35px 0 rgba(6, 12, 34, 0.2);
}

#buy-tickets .card hr {
  margin: 25px 0;
}

#buy-tickets .card .card-title {
  margin: 10px 0;
  font-size: 14px;
  letter-spacing: 1px;
  font-weight: bold;
}

#buy-tickets .card .card-price {
  font-size: 48px;
  margin: 0;
}

#buy-tickets .card ul li {
  margin-bottom: 20px;
}

#buy-tickets .card .text-muted {
  opacity: 0.7;
}

#buy-tickets .card .btn {
  font-size: 15px;
  border-radius: 50px;
  padding: 10px 40px;
  transition: all 0.2s;
  background-color: #d2232a;
  border: 0;
  color: #fff;
}

#buy-tickets .card .btn:hover {
  background-color: #d2232a;
}

#buy-tickets #buy-ticket-modal input,
#buy-tickets #buy-ticket-modal select {
  border-radius: 0;
}

#buy-tickets #buy-ticket-modal .btn {
  font-size: 15px;
  border-radius: 50px;
  padding: 10px 40px;
  transition: all 0.2s;
  background-color: #d2232a;
  border: 0;
  color: #fff;
}

#buy-tickets #buy-ticket-modal .btn:hover {
  background-color: #d2232a;
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/

#contact {
  padding: 60px 0;
}

#contact .contact-info {
  margin-bottom: 20px;
  text-align: center;
}

#contact .contact-info i {
  font-size: 48px;
  display: inline-block;
  margin-bottom: 10px;
  color: #d2232a;
}

#contact .contact-info address,
#contact .contact-info p {
  margin-bottom: 0;
  color: #53575a;
}

#contact .contact-info h3 {
  font-size: 18px;
  margin-bottom: 15px;
  font-weight: bold;
  text-transform: uppercase;
  color: #d2232a;
}

#contact .contact-info a {
  color: #53575a;
}

#contact .contact-info a:hover {
  color: #d2232a;
}

#contact .contact-address,
#contact .contact-phone,
#contact .contact-email {
  margin-bottom: 20px;
}

#contact .form #sendmessage {
  color: #d2232a;
  border: 1px solid #d2232a;
  display: none;
  text-align: center;
  padding: 15px;
  font-weight: 600;
  margin-bottom: 15px;
}

#contact .form #errormessage {
  color: red;
  display: none;
  border: 1px solid red;
  text-align: center;
  padding: 15px;
  font-weight: 600;
  margin-bottom: 15px;
}

#contact .form #sendmessage.show,
#contact .form #errormessage.show,
#contact .form .show {
  display: block;
}

#contact .form .validation {
  color: red;
  display: none;
  margin: 0 0 20px;
  font-weight: 400;
  font-size: 13px;
}

#contact .form input,
#contact .form textarea {
  padding: 10px 14px;
  border-radius: 0;
  box-shadow: none;
  font-size: 15px;
}

#contact .form button[type="submit"] {
  background: #d2232a;
  border: 0;
  padding: 10px 40px;
  color: #fff;
  transition: 0.4s;
  border-radius: 50px;
  cursor: pointer;
}

#contact .form button[type="submit"]:hover {
  background: #d2232a;
}

.form #sendmessage {
  color: #d2232a;
  border: 1px solid #d2232a;
  display: none;
  text-align: center;
  padding: 15px;
  font-weight: 600;
  margin-bottom: 15px;
}

.form #errormessage {
  color: red;
  display: none;
  border: 1px solid red;
  text-align: center;
  padding: 15px;
  font-weight: 600;
  margin-bottom: 15px;
}

.form #sendmessage.show,
.form #errormessage.show,
.form .show {
  display: block;
}

.form .validation {
  color: red;
  display: none;
  margin: 0 0 20px;
  font-weight: 400;
  font-size: 13px;
}

.form input,
.form textarea {
  padding: 10px 14px;
  border-radius: 0;
  box-shadow: none;
  font-size: 15px;
}

.form button[type="submit"] {
  background: #d2232a;
  border: 0;
  padding: 10px 40px;
  color: #fff;
  transition: 0.4s;
  border-radius: 50px;
  cursor: pointer;
}

.form button[type="submit"]:hover {
  background: #d2232a;
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/

#footer {
  /* background: #101522; */
  padding: 0 0 25px 0;
  color: #eee;
  font-size: 14px;
}

#footer .footer-top {
  background: #040919;
  padding: 60px 0 30px 0;
}

#footer .footer-top .footer-info {
  margin-bottom: 30px;
}

#footer .footer-top .footer-info h3 {
  font-size: 26px;
  margin: 0 0 20px 0;
  padding: 2px 0 2px 0;
  line-height: 1;
  font-family: "Raleway", sans-serif;
  font-weight: 700;
  color: #fff;
}

#footer .footer-top .footer-info img {
  height: 40px;
  margin-bottom: 10px;
}

#footer .footer-top .footer-info p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
  font-family: "Raleway", sans-serif;
  color: #fff;
}

#footer .footer-top .social-links a {
  font-size: 18px;
  display: inline-block;
  background: #222636;
  color: #eee;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}

#footer .footer-top .social-links a:hover {
  background: #d2232a;
  color: #fff;
}

#footer .footer-top h4 {
  font-size: 14px;
  font-weight: bold;
  color: #fff;
  text-transform: uppercase;
  position: relative;
  padding-bottom: 12px;
  border-bottom: 2px solid #d2232a;
}

#footer .footer-top .footer-links {
  margin-bottom: 30px;
}

#footer .footer-top .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

#footer .footer-top .footer-links ul i {
  padding-right: 5px;
  color: #d2232a;
  font-size: 18px;
}

#footer .footer-top .footer-links ul li {
  border-bottom: 1px solid #262c44;
  padding: 10px 0;
}

#footer .footer-top .footer-links ul li:first-child {
  padding-top: 0;
}

#footer .footer-top .footer-links ul a {
  color: #eee;
}

#footer .footer-top .footer-links ul a:hover {
  color: #d2232a;
}

#footer .footer-top .footer-contact {
  margin-bottom: 30px;
}

#footer .footer-top .footer-contact p {
  line-height: 26px;
}

#footer .footer-top .footer-newsletter {
  margin-bottom: 30px;
}

#footer .footer-top .footer-newsletter input[type="email"] {
  border: 0;
  padding: 6px 8px;
  width: 65%;
}

#footer .footer-top .footer-newsletter input[type="submit"] {
  background: #d2232a;
  border: 0;
  width: 35%;
  padding: 6px 0;
  text-align: center;
  color: #fff;
  transition: 0.3s;
  cursor: pointer;
}

#footer .footer-top .footer-newsletter input[type="submit"]:hover {
  background: #d2232a;
}

#footer .copyright {
  text-align: center;
  padding-top: 30px;
}

#footer .credits {
  text-align: center;
  font-size: 13px;
  color: #ddd;
}

/*--------------------------------------------------------------
# Responsive Media Queries
--------------------------------------------------------------*/

@media (min-width: 767px) {
  #bim input {
    min-width: 400px;
  }
}

@media (min-width: 768px) {
  #contact .contact-address,
  #contact .contact-phone,
  #contact .contact-email {
    padding: 20px 0;
  }

  #contact .contact-phone {
    border-left: 1px solid #ddd;
    border-right: 1px solid #ddd;
  }
}

@media (min-width: 991px) {
  #schedule .sub-heading {
    width: 75%;
  }
}

@media (min-width: 1024px) {
  #intro {
    background-attachment: fixed;
  }

  #about {
    background-attachment: fixed;
  }

  #bim {
    background-attachment: fixed;
  }
}

@media (max-width: 1199px) {
  #header .container {
    max-width: 100%;
  }

  .nav-menu a {
    padding: 8px 4px;
  }
}

@media (max-width: 991px) {
  #header {
    background: rgba(6, 12, 34, 0.98);
    height: 70px;
    padding: 15px 0;
    transition: all 0.5s;
  }

  #intro {
    width: 100%;
    margin-top:20px;
    height: 70vh !important;
  }

  #nav-menu-container {
    display: none;
  }

  #mobile-nav-toggle {
    display: inline;
  }

  #intro .intro-container {
    top: 30px;
  }

  #intro h1 {
    font-size: 40px;
    line-height:42px;
  }

  #intro p {
    font-size: 16px;
  }

  #schedule .nav-tabs a {
    padding: 8px 60px;
  }
}

@media (max-width: 768px) {
  .back-to-top {
    bottom: 15px;
  }

  #faq #faq-list a {
    font-size: 18px;
  }

  #faq #faq-list i {
    top: 13px;
  }
  #about {
    display:none;
  }
}

@media (max-width: 767px) {
  #schedule .nav-tabs a {
    padding: 8px 50px;
  }
}

@media (max-width: 574px) {
  #venue .venue-info h3 {
    font-size: 24px;
  }
}

@media (max-width: 480px) {
  #schedule .nav-tabs a {
    padding: 8px 30px;
  }
}

@media (max-width: 460px) {
  #bim button {
    margin-top: 10px;
  }
}