header {
    width: 100%;
    background: linear-gradient(0deg, #020024 0%, #232D66 89%, #121940 100%) !important;
    padding: 15px 0;
    position: fixed;
    top: 0;
    left: 0;
    box-shadow: 0px 5px 5px 0px rgba(0, 0, 0, 0.137);
    z-index: 10;
}

header .content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 80%;
    margin: 0 10%;
}

@media(max-width: 810px) {
    header .content {
        width: 90%;
        margin: 0 5%;
        flex-direction: column;
    }
}

header .content div {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    font-size: 20px;
}

@media(max-width: 810px) {
    header .content div {
        font-size: 16px;
        margin-top: 10px;
    }
}

header .content div img {
    height: 30px;
}

header img {
    height: 50px;
}

header .border {
    font-family: "Montserrat", sans-serif;
}

.banner {
    display: flex;
    align-items: center;
    width: 100%;
    height: 30vh;
    margin-top: 80px;
    background: rgb(2, 0, 36);
    background: linear-gradient(90deg, rgba(2, 0, 36, 0.808) 0%, rgba(9, 9, 121, 0.50) 35%, rgba(28, 14, 53, 0.753) 100%), url(/landing/8182/img/banner-8182-maxqda.jpg);
    background-size: cover;
    background-repeat: no-repeat;
	background-position-y: center;
}


@media(min-width: 1400px){
    .banner{
        height: 30vh;
    }
}

@media (min-width: 360px) and (max-width: 399px) {
    .banner{
        margin-top: 110px;
    }
}

.banner .content {
    width: 90%;
    margin: 0 10%;
    color: #ffffff;
}

@media(max-width: 810px) {
    .banner .content {
        width: 90%;
        margin: 0 5%;
    }
}

@media(min-width: 1200px){
    .banner .content {
        width: 90%;
    }
}

@media(min-width: 1300px){
    .banner .content {
        width: 80%;
    }
}

@media(min-width: 1400px){
    .banner .content {
        width: 60%;
    }
}

@media (min-width: 1800px) {
  .banner .content {
    width: 45%;
  }
}

.banner .content h1 {
    margin-top: 5vh;
    font-size: 38px;
    line-height: 1.1;
    font-family: "Montserrat", sans-serif;
    text-shadow: black 0.1em 0.1em 0.2em;
}

@media(max-width: 810px) {
    .banner .content h1 {
        font-size: 30px;
    }
}

@media (min-width: 360px) and (max-width: 399px) {
	    .banner .content h1 {
        font-size: 20px;
    }
}

.banner .country {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
}

.banner .content .icon img {
    height: 40px;
}

.banner .content .border {
    font-size: 20px;
    font-family: "Montserrat", sans-serif;
    padding: 3px 15px;
    border-top: 0.2px solid #f3f3f3;
    border-bottom: 0.2px solid #f3f3f3;
    border-left: 0;
    border-right: 1px solid #ffffff;
    border-radius: 5px;
}

.mainSection {
    display: grid;
    grid-template-columns: 6.5fr 3.5fr;
    gap: 3rem;
    width: 90%;
    margin: 20px 5%;
}

@media(min-width: 1400px){
    .mainSection{
        width: 80%;
        margin: 20px 10%;
    }
}

@media(max-width: 810px) {
    .mainSection {
        grid-template-columns: 1fr;
    }
}

.mainSection .box {
    width: 100%;
}

.mainSection .btn {
    margin-top: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 24px;
    font-family: "Montserrat", sans-serif;
	font-weight: 600;
    background: #232D66;
	background: -webkit-linear-gradient(bottom, rgba(35, 45, 102, 1) 50%, rgba(21, 26, 59, 1) 100%);
	background: -o-linear-gradient(bottom, rgba(35, 45, 102, 1) 50%, rgba(21, 26, 59, 1) 100%);
	background: linear-gradient(to top, rgba(35, 45, 102, 1) 50%, rgba(21, 26, 59, 1) 100%);
    padding: 10px 30px;
    color: #FFFFFF;
    /*border: 1.5px solid #dddddd;*/
	-webkit-border-top-left-radius: 10px;
	-webkit-border-top-right-radius: 10px;
	-moz-border-radius-topleft: 10px;
	-moz-border-radius-topright: 10px;
	border-top-left-radius: 10px;
	border-top-right-radius: 10px;
}

.mainSection .btn:hover {
    cursor: pointer;
	background: #151A3B;
	background: -webkit-linear-gradient(bottom, rgba(21, 26, 59, 1) 0%, rgba(62, 81, 184, 1) 42%, rgba(62, 81, 184, 1) 50%, rgba(21, 26, 59, 1) 100%);
	background: -o-linear-gradient(bottom, rgba(21, 26, 59, 1) 0%, rgba(62, 81, 184, 1) 42%, rgba(62, 81, 184, 1) 50%, rgba(21, 26, 59, 1) 100%);
	background: linear-gradient(to top, rgba(21, 26, 59, 1) 0%, rgba(62, 81, 184, 1) 42%, rgba(62, 81, 184, 1) 50%, rgba(21, 26, 59, 1) 100%);
}

.mainSection .icon{
    display: block;
    transition: 0.5s ease-in-out;
}

.mainSection .icon-minus{
    display: none;
    transition: 0.5s ease-in-out;
}

.mainSection .icon.off {
    display: none;
    transition: 0.5s ease-in-out;
}

.mainSection .icon-minus.on {
    display: block;
    transition: 0.5s ease-in-out;
}

.mainSection .container {
    display: none;
    padding: 30px 30px;
    font-size: 17px;
    text-align: justify;
    line-height: 1.6;
    letter-spacing: 1.5;
    color: #4c6280;
    border: 1.5px solid #dddddd;
    background-color: #ffffff;
}

.mainSection .container.on {
    display: block;
}

.mainSection .container ul {
    padding: 15px 15px;
}

.mainSection .line {
    width: 10%;
    margin: 10px 0;
    background-color: #ff3d55;
    height: 1.5px;
    border: none;
}

.mainSection .container h2,
h3,
h4 {
    font-family: "Montserrat", sans-serif;
    font-size: 24px;
}

/* Second box */
.mainSection .container .img-content {
    width: 100%;
    padding: 20px 10px;
    display: grid;
    grid-template-columns: 3fr 7fr;
    gap: 4rem;
    border-bottom: 1px solid #797979;
    background-color: #ffffff;
}

@media(max-width: 810px) {
    .mainSection .container .img-content {
        grid-template-columns: 1fr;
    }
}

.mainSection .container .img-content:last-of-type {
    border-bottom: none;
}

.mainSection .container .img-content .title {
    font-family: "Montserrat", sans-serif;
    font-size: 16px;
}

.mainSection .container .img-content div {
    display: flex;
    justify-content: center;
    flex-direction: column;
}

.mainSection .container .img-content img {
    width: 100%;
}

.strong{
    font-family: "Montserrat", sans-serif;
	font-weight: 600;
}

/* img content | just content */
.mainSection .container .content {
    width: 100%;
    padding: 20px 10px;
    gap: 4rem;
    border-bottom: 1px solid #797979;
    background-color: #ffffff;
}

@media(max-width: 810px) {
    .mainSection .container .content {
        grid-template-columns: 1fr;
    }
}

.mainSection .container .content:last-of-type {
    border-bottom: none;
}

.mainSection .container .content .title {
    font-family: "Montserrat", sans-serif;
    font-size: 20px;
}

.mainSection .container .content div {
    display: flex;
    justify-content: center;
    flex-direction: column;
}

/* Third box */
.mainSection .container .img-content-instructor {
    width: 100%;
    padding: 20px 10px;
    display: grid;
    grid-template-columns: 2.5fr 7.5fr;
    gap: 2rem;
    background-color: #ffffff;
}

@media(max-width: 810px) {
    .mainSection .container .img-content-instructor {
        grid-template-columns: 1fr;
    }
}

.mainSection .container .img-content-instructor .title {
    font-family: "Montserrat", sans-serif;
	font-weight: 600;
    font-size: 24px;
}

.mainSection .container .img-content-instructor .subTitle {
    font-size: 18px;
    font-family: "Montserrat", sans-serif;
    margin-bottom: 20px;
}



.mainSection .container .img-content-instructor img {
    width: 100%;
}

.politicas-title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-align: center;
    font-size: 20px;
    font-family: "Montserrat", sans-serif;
}

.politicas-title .icon img {
    height: 50px;
}

.politicas-desc {
    font-size: 18px;
    text-align: center;
}

/* Form */
.floating {
    width: 100%;
    height: auto;
    box-shadow: 5px 5px 5px 0px rgba(0, 0, 0, 0.151);
    border-radius: 15px;
    /*transform: translateY(-300px);*/
    position: sticky;
    top: 100px;
    z-index: 0;
    background-color: #ffffff;
    transition: 0.5s ease-in-out;
    padding-bottom: 20px;
}


@media(max-width: 810px) {
    .floating {
        position: block;
        transform: translateY(0px);
        top: 0;
        z-index: 0;
    }
}

.floating.notTranslate {
    transform: translateY(0px);
    transition: 0.5s ease-in-out;
}

.boxTwo .product {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 25px 5px;
}

.boxTwo .product img {
    height: 50px;
}

.boxTwo .containerForm .title {
    text-align: center;
    margin-top: 25px;
    font-family: "Montserrat", sans-serif;
    font-size: 20px;
}

.floating .containerForm{
    padding: 10px 0 30px 0;
    background: #f6f7f9;
    border-top: 1px solid #cacaca;
    border-bottom: 1px solid #cacaca;
}

.boxTwo form {
    display: flex;
    align-items: center;
    justify-items: center;
    flex-direction: column;
    padding: 0px 40px;
}

.boxTwo form input {
    width: 100%;
    padding: 10px 15px;
    border-radius: 5px;
    border: 1px solid #797979;
    text-align: center;
    margin: 10px 0;
	font-size: 18px;
}

.boxTwo form input[type="email"]:hover {
    outline: 1px solid #232d66;
}

.boxTwo form input[type="email"]:focus {
    outline: 1px solid #232d66;
}


.boxTwo .submit {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #6ab33c;
    color: #ffffff;
    padding: 8px 20px;
    font-size: 18px;
    font-family: "Montserrat", sans-serif;
    border: none;
    border-radius: 5px;
    gap: 5px;
    margin-top: 1rem;
    width: 40%;
}

.boxTwo .submit:hover {
    background-color: #3e51b8;
    cursor: pointer;
}

/* General heigth in the box two*/
.boxTwo img {
    height: 18px;
}

.boxTwo .submit img {
    height: 18px;
}

.boxTwo .info img {
    height: 30px;
}


.boxTwo .info {
    display: flex;
    align-items: center;
    gap: 5px;
    background-color: #232d66;
    color: #ffffff;
    padding: 10px 20px;
    width: 50%;
    text-align: center;
    border-radius: 0 0 20px 0;
    margin: 50px 0 10px 0;
    font-size: 20px;
    font-family: "Montserrat", sans-serif;
}

#sponsor {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 50px;
}

#sponsor img.sponsor-logo {
    min-height: 100px;
    max-height: 150px;
    object-fit: contain;
}

.place {
    width: calc(100% - 20px);
    border-bottom: 1px solid #cacaca;
    padding: 20px 10px;
}

.no-border {
    border-bottom: none;
}

.place div {
    padding: 0px 20px;
}

.place .titleBox{
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 0 10px;
}

.place .icon {
    font-size: 16px;
}

.place .title {
    font-size: 18px;
    font-family: "Montserrat", sans-serif;
}

.place .desc {
    padding-left: 18px;
    font-size: 16px;
}

.place .descList {
    padding-left: 35px;
    font-size: 16px;
}

.place .descList span {
    font-family: "Montserrat", sans-serif;
}

.helper {
	background: #FFFFFF;
    width: calc(85% - 20px);
    margin: 10px 7.5%;
    border: 1px solid #dadada;
    border-radius: 10px;
    padding: 10px;
}

.helper2 {
	background: #FFFFFF;
    width: calc(100% - 20px);
    margin: 10px 0;
    border: 1px solid #dadada;
    border-radius: 10px;
    padding: 10px;
}

.helper span img {
    height: 50px;
}

.helper2 span img {
    height: 50px;
}


.helper .title {
    display: flex;
    align-items: center;
    font-family: "Montserrat", sans-serif;
    text-align: left;
    gap: 10px;
    width: 90%;
    margin: 0;
}

.helper2 .title {
    display: flex;
    align-items: center;
    font-family: "Montserrat", sans-serif;
    text-align: left;
    gap: 10px;
    width: 90%;
    margin: 0;
}

.helper .title span:last-of-type {
    font-size: 18px;
    line-height: 1.1;
}

.helper .line {
    width: 100%;
    color: #dadada;
}

.line {
	color:#6ab33c !important;
    background-color: #6ab33c !important;
}

.helper .desc {
    font-size: 18px;
}

.helper .agent {
    font-size: 20px;
    font-family: "Montserrat", sans-serif;
    margin-top: 20px;
}

.helper .job {
    font-size: 18px;
}

.helper ul {
    list-style: none;
}

.helper a {
    font-size: 18px;
}

footer{
    background: linear-gradient(0deg, #020024 0%, #232D66 89%, #121940 100%) !important;
}

/*footer div{
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 70%;
    margin: 0 15%;
    padding: 20px 0;
}*/

footer div{
	text-align: center;
    align-items: center;
    justify-content: space-between;
    width: 70%;
    margin: 0 auto;
    padding: 20px 0;
}


@media(max-width: 810px) {
    footer div{
        flex-direction: column;
    }
}

footer img{
    height: 60px;
}

footer p{
    color: #ffffff;
}