.container {
  max-width: 1152px !important;
  width: 95% !important;
  margin: 0 auto;
}

.span-arrow {
  transition: none;
}

@media screen and (min-width: 425px) {
  .container {
    max-width: 1152px !important;
    width: 90% !important;
    margin: 0 auto;
  }
}

.flex {
  display: flex;
}

.block {
  display: block;
}

.gap-16 {
  row-gap: 16px;
  display: flex;
  flex-direction: column;
  width: 100%;
}

.btn {
  display: flex;
  width: 100%;
  justify-content: space-between;
}

@media screen and (min-width: 1199px) {
  .hide-desktop {
    display: none !important;
  }
}

@media screen and (max-width: 1198px) and (min-width: 769px) {
  .hide-tablet {
    display: none !important;
  }
}

@media screen and (max-width: 768px) {
  .hide-mobile {
    display: none !important;
  }
  .tittle-pagination h1 {
    font-size: 40px !important;
  }

  .btn.btn-orange {
    width: 148px !important;
  }
  a.btn.btn-orange,
  a.btn.btn-default {
    font-size: 14px;
    padding: 10px;
  }
}
@media screen and (max-width: 425px) {
  .tittle-pagination h1 {
    font-size: 32px !important;
    line-height: 150%;
  }
}

.tittle-pagination {
  width: 100%;
  height: 218px;
  background: #ed6b47;
  display: flex;
  align-items: center;
  margin-bottom: 56px;
}

.tittle-pagination h1 {
  font-family: "Superclarendon";
  font-style: normal;
  font-weight: 400;
  font-size: 48px;
  color: #ffffff;
}

/* Modal vídeo*/

#iframe-video {
  width: 560px;
  height: 315px;
}

#modal {
  position: fixed;
  background-color: #fff;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
  width: auto;
  height: 460px;
  max-width: 100%;
  max-height: 100%;
  border-radius: 8px;
  border: 5px solid #ed6b47;
}

.modal-header button {
  padding: 5px 8px;
  background: #ed6b47;
  width: 50px;
  border-radius: 3px;
  color: #ffffff !important;
}
.modal-header button:hover {
  background: #0069b4;
}

#fade,
#modal {
  transition: 0.5s;
  opacity: 0;
  pointer-events: none;
}

#fade {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 5;
}

.modal-body {
  margin: 1rem;
}

.modal-body iframe {
  width: 100%;
}

#modal.show,
#fade.show {
  opacity: 1;
  pointer-events: all;
  z-index: 9999999;
}

#modal.hide {
  top: 0;
}

#app > nav > ul > i {
  color: #98a2b3;
  justify-content: center;
  align-items: center;
  display: flex;
  margin-right: 5px;
}

@media (max-width: 991px) {
  #modal {
    width: 70%;
    /* height: 460px; */
  }
}

@media (max-width: 425px) {
  #modal {
    width: 90%;
    /* height: 460px; */
  }
}

/* Animação botão de play do vídeo */
@-webkit-keyframes heartbeat {
  from {
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-transform-origin: center center;
    transform-origin: center center;
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  10% {
    -webkit-transform: scale(0.91);
    transform: scale(0.91);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  17% {
    -webkit-transform: scale(0.98);
    transform: scale(0.98);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  33% {
    -webkit-transform: scale(0.87);
    transform: scale(0.87);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  45% {
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
}
@keyframes heartbeat {
  from {
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-transform-origin: center center;
    transform-origin: center center;
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  10% {
    -webkit-transform: scale(0.91);
    transform: scale(0.91);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  17% {
    -webkit-transform: scale(0.98);
    transform: scale(0.98);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  33% {
    -webkit-transform: scale(0.87);
    transform: scale(0.87);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  45% {
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
}

@media (max-width: 990px) {
  #about .modal-body iframe {
    width: 100%;
    height: 400px;
  }

  #iframe-video {
    width: auto;
    height: auto;
  }

  .breadcrumb ul li a,
  .breadcrumb ul li {
    line-height: 14px;
  }
}

@media (max-width: 820px) {
  #about .modal-body iframe {
    width: 100%;
    height: 350px;
  }
}

@media (max-width: 710px) {
  #about .modal-body iframe {
    width: 100%;
    height: 300px;
  }

  .breadcrumb ul {
    gap: var(--spacing-sm);
  }
}

@media (max-width: 610px) {
  #about .modal-body iframe {
    height: 200px;
  }

  .breadcrumb .horizontal a {
    font-size: 15px;
  }
}

@media (max-width: 360px) {
  .breadcrumb .horizontal a {
    font-size: 13px;
  }
}
