body {
  font: 400 14px "Montserrat", sans-serif;
  background: #000;
  overflow-x: hidden;
}

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

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
}

p {
  line-height: 24px;
}

a {
  color: #252525;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  text-decoration: none !important;
}

a:hover,
a:active,
a:focus {
  color: #f4b600;
  outline: none;
}

::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

::-webkit-scrollbar-thumb {
  cursor: pointer;
  background: #6f6e6e;
}

/* ===================================================
  NAVBAR
=================================================== */
.custom-navbar {
  position: absolute;
  z-index: 10;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100px;
  top: 16px;
  left: 0;
  margin: 0;
  border: 0;
}

.custom-navbar .logo {
  height: 30px;
}

@media screen and (max-width: 1199px) {
  .custom-navbar {
    height: 70px;
    top: 0;
  }
}

/* ===================================================
  SLIDER
=================================================== */
.slider {
  position: relative;
  padding: 160px 0 54px;
  background: url("../images/bg.png") no-repeat;
  background-size: 100%;
}

.slider .title {
  margin: 0 0 16px;
  font-size: 32px;
  line-height: 46px;
}

.slider .title span {
  font-size: 42px;
  color: #f4b600;
}

.slider .description {
  font-weight: 700;
  font-size: 16px;
}

.slider .description span {
  color: #43a958;
}

.slider .curve {
  position: absolute;
  bottom: 0;
  width: 100%;
}

@media screen and (max-width: 1365px) {
  .slider .curve {
    display: none;
  }
}

@media screen and (max-width: 991px) {
  .slider .title {
    font-size: 22px;
    line-height: 44px;
  }

  .slider .title span {
    font-size: 32px;
  }

  .slider .description {
    font-size: 14px;
  }
}

@media screen and (max-width: 767px) {
  .slider .title {
    font-size: 16px;
    line-height: 30px;
  }

  .slider .title span {
    font-size: 26px;
  }

  .slider .description {
    font-size: 16px;
  }
}

@media screen and (max-width: 580px) {
  .slider {
    background: #000;
  }
}

/* ===================================================
  VIDEOS
=================================================== */
.video {
  margin-top: 92px;
}

.video .subtitle {
  width: 100%;
  margin-bottom: 80px;
  font-size: 26px;
  color: #f4b600;
  text-align: center;
}

.video .video__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
}

.video .video__item:hover {
  opacity: 0.8;
}

.video .video__item.disabled {
  pointer-events: none;
  cursor: not-allowed !important;
}

.video__item .item__img {
  margin-bottom: 8px;

  @media screen and (max-width: 1199px) {
    width: 80%;
  }
}

.video__item .item__date {
  font-weight: 700;
  text-align: left;
}

.video .video-executado {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
  width: 100%;
  height: 100%;
}

/* Bootstrap */
.modal-content {
  background-color: #111;
}

.modal-body {
  position: relative;
  height: 0;
  padding: 0 0 56.25%;
  /* 16:9 */
  margin: 15px;
}

.modal-body .overlay {
  position: absolute;
  z-index: 20;
  top: 0;
  left: 0;
  width: 100%;
  height: calc(100% - 4rem);
  background-color: transparent;
  cursor: not-allowed;
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding-bottom: 0;
  border: 0;
}

.modal-header .modal-title {
  width: calc(100% - 48px);
  font-size: 18px;
}

.modal-header .close {
  opacity: 0.8;
}

@media screen and (max-width: 1199px) {
  .video .subtitle {
    font-size: 20px;
  }

  .video__item .item__img {
    width: 100%;
  }
}

@media screen and (max-width: 991px) {
  .video {
    margin-top: 48px;
  }

  .video .subtitle {
    width: 100%;
    margin-bottom: 64px;
  }

  .video .video__item {
    margin-bottom: 32px;
  }
}

/* ===================================================
  SPEAKERS
=================================================== */
.speakers {
  position: relative;
  padding: 100px 0 64px;
}

.speakers .subtitle {
  font-size: 28px;
  text-align: left;
}

.speakers .speakers__item {
  margin: 64px 0;
}

.speakers__item .item__img {
  width: 85%;
  border: 14px solid #ececec;
  border-right-width: 5px;
  border-radius: 50%;
}

.speakers__item .item__name {
  width: max-content;
  padding: 8px 16px;
  margin: 0 0 24px;
  font-weight: 700;
  font-size: 22px;
  color: #000;
  background-color: #f4b600;
}

.speakers__item .item__description {
  text-align: justify;
}

@media screen and (max-width: 991px) {
  .speakers {
    padding: 48px 0 16px;
    text-align: center;
  }

  .speakers__item .item__img {
    width: 50%;
  }

  .speakers__item .item__name {
    margin-top: 32px;
  }
}

/* ===================================================
  SOCIAL
=================================================== */
.social {
  display: flex;
  justify-content: center;
  padding: 0 15px;
  background-color: #111;
}

.social .social__item {
  display: flex;
  align-items: center;
  height: 64px;
  padding: 0 32px;
  border-left: 1px solid #151515;
}

.social .social__item:last-child {
  border-right: 1px solid #151515;
}

.social .social__item a {
  color: #fff;
  text-decoration: none;
}

.social .social__item a:hover {
  color: #f4b600;
}

.footer {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 15px;
}

.footer p {
  margin: 0;
  color: #252830;
}

.footer p span {
  color: #fff;
}

/*=================================================
    FORMULÁRIO
=====================================================*/

.formulario h2 {
  padding: 3em 0 0;
}

.formulario h2,
.formulario p {
  text-align: center;
}

.formulario .form {
  width: 70%;
  margin: 0 auto;
}

@media only screen and (max-width: 768px) {
  .formulario .form {
    width: 90%;
    margin: 0 auto;
  }
}
