.Box {
    width: 100%;
    height: 15px;
    opacity: 0.25;
    box-shadow: inset 0 -1px 0 0 #001133;
    margin-bottom: 25px;
    2
}

@media only screen and (max-width: 1200px) {
    .header-image {
        display: none;
    }
}
/* The Mobile Menu that appears on click */
.mobile-menu {
  width: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9998;
  min-height: 100%;
  height: 100%;
  background: #000000;
    opacity: 0.85;
  margin: 0;
  position: fixed;
  display: none;
    text-align: center;
}
@media (min-width: 1024px) {
  .mobile-menu {
    float: right;
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
    top: auto;
    min-height: auto;
    height: auto;
    padding: 0;
    width: auto;
    background: transparent;
    display: block;
  }
}
.mobile-menu.open {
  display: block;
}

a {
  text-decoration: none;
}

/* Main Navigation in header for desktop */
.main-menu {
  margin: 64px 0;
  padding: 0;
}
@media (min-width: 1024px) {
  .main-menu {
    width: 850px;
    margin: 0 auto;
  }
}
.main-menu__item {
  padding: 0;
  display: block;
  position: relative;
}
@media (min-width: 1024px) {
  .main-menu__item {
    float: left;
    display: block;
  }
}
.main-menu__link {
  border-bottom: 0;
  color: white;
  font: bold 15px/15px Arial;
  display: block;
    padding-left:20px;
    padding-right:20px;
  position: relative;
  margin-top: 30px;
}
@media (min-width: 1024px) {
  .main-menu__link {
    float: left;
    color: #001133;
  }
}
@media (max-width: 1024px) {
  .main-menu__link {
    font: bold 20px/20px Arial;
      border-bottom: none!important;
  }
}
@media (max-width: 1024px) {
  .main-menu__link_icon{
    display: none!important;
  }
}
@media (max-width: 1024px) {
  .main-menu__link:hover {
    font: bold 20px/20px Arial;
      color: black;
  }
}
.main-menu__link:hover, .main-menu__link:focus, .main-menu__link:active {
  border-bottom: 0px solid #ed1c24;
    color: #001133;
}

/* Hamburger Button - Animation courtesy of https://codepen.io/designcouch/pen/Atyop - more examples in this link */
.open-button {
  width: 30px;
  height: 30px;
  transform: rotate(0deg);
  transition: .5s ease-in-out;
  position: absolute;
  cursor: pointer;
  border-bottom: 0;
  top: 25px;
  right: 50px;
  z-index: 9999;
  border-bottom: 0;
}
@media (min-width: 1024px) {
  .open-button {
    display: none;
  }
}
.open-button:hover {
  border-bottom: 0;
}

.open-button span {
  display: block;
  position: absolute;
  height: 2px;
  width: 100%;
  background: #ed1c24;
  border-radius: 2px;
  opacity: 1;
  left: 0;
  transform: rotate(0deg);
  transition: .25s ease-in-out;
}

.open-button span:nth-child(1) {
  top: 0px;
  transform-origin: left center;
}

.open-button span:nth-child(2) {
  top: 10px;
  transform-origin: left center;
}

.open-button span:nth-child(3) {
  top: 20px;
  transform-origin: left center;
}

.open-button.open span:nth-child(1) {
  transform: rotate(45deg);
  top: -3px;
  left: 8px;
}

.open-button.open span:nth-child(2) {
  width: 0%;
  opacity: 0;
}

.open-button.open span:nth-child(3) {
  transform: rotate(-45deg);
  top: 19px;
  left: 8px;
}
.lista-item {
	background: white;
	border-radius: 2px;
	margin-bottom: 20px;
	box-shadow: 0 2px 6px rgba(50,50,90,.1);

}

.faq-titulo {
	cursor: pointer;
	font-size: 1.4em;
	color: #074784;
    padding:20px;
}
s
.faq-titulo::before {
	content: '';
	display: inline-block;
	height: 12px;
	width: 24px;
	margin-right: 10px;
	
}

.faq-titulo::after {
	content: '+';
	float: right;
	transition: transform .3s ease;
}

.faq-conteudo {
	padding-left: 5%;
    padding-right: 5%;
    padding-bottom:2.5%;
	color: #6B7C93;
	font-family: Helvetica;
	font-size: .875em;
	line-height: 1.2em;
	display: none;
}
.faq-conteudo1 {
	padding-left: 0%;
    padding-right: 0%;
    margin-left: 1px;
    padding-bottom:2.5%;
	color: #6B7C93;
	font-family: Helvetica;
	font-size: .875em;
	line-height: 1.2em;
    text-align: left;
}

.faq-conteudo ul{
    padding-left: 3%;
}

.trigger-input {
	display: none;
}

.trigger-input:checked + .trigger-wrapper .faq-conteudo {
	display: block;
}

.trigger-input:checked + .trigger-wrapper .faq-titulo::after {
	transform: rotate(45deg) scale(1.08);
}

span{
    margin-left: 2.5%;
    font-weight: 700;
    font-size: 14px;
    color: #888;
    text-align:right;
    letter-spacing: .05px;
}
/* The Modal (background) */
.modal {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 1; /* Sit on top */
    padding-top: 200px; /* Location of the box */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgb(0,0,0); /* Fallback color */
    background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
}

/* Modal Content */
.modal-content {
    background-color: #fefefe;
    margin: auto;
    padding: 20px;
    border: 1px solid #888;
    width: 47%;
}

/* The Close Button */
.close {
    color: #aaaaaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.close:hover,
.close:focus {
    color: #000;
    text-decoration: none;
    cursor: pointer;
}
.video-js{
    width: 95% !important;
}
.card {
  width: 227px;
  height: 80px;
    border: none;
  border-radius: 4px;
  background-color: #ffffff;
  color: #001133;
    font-size: 1.5rem;
    text-transform: none;
    text-align: center;
    padding: 10px;
    box-shadow: 0 2px 6px rgba(50,50,90,.1);
}
.card1 {
  width: 20px;
  height: 30px;
    border: none;
  border-radius: 4px;
  background-color: #ed1c24;
  color: #ffffff;
    font-size: 1.2rem;
    text-transform: none;
    text-align: center;
    padding: 0px;
    margin-top: -40px;
    margin-bottom: -2px;
}