/********************* COMMON SECTION STYLES *********************/

.section-title {
    font-size: 48px;
    color: #1E2345;
    font-family: Nexa Heavy;
    text-align: center;
    line-height: 50px;
}

.section-subtitle {
    color: #7B7B7B;
    font-weight: 400;
    font-size: 18px;
    text-align: center;
    font-family: 'Poppins', sans-serif;
    margin-top: 10px;
}

.section-description {
    color: #555555;
    font-weight: 400;
    font-size: 18px;
    text-align: center;
    margin: 0 auto 50px;
    font-family: 'Poppins', sans-serif;
    line-height: 30px
}

.section-horizontal-line {
    height: 5px;
    background-color: #AE0921;
    max-width: 85px;
    width: 100%;
    text-align: center;
    margin: 10px auto 50px;
    border: unset;
}

.section-horizontal-line-left {
    height: 5px;
    background-color: #AE0921;
    max-width: 85px;
    width: 100%;
    margin: 20px auto 20px 0px;
    border: unset;
}

.red-button {
    margin: auto;
    max-width: 180px;
    width: 100%;
    background-color: #AE0921;
    color: #fff;
    font-size: 18px;
    font-weight: 500;
    padding: 15px 20px;
    border-radius: 30px;
    font-family: 'Poppins', sans-serif;
    outline: 0;
    border: 0;
    cursor: pointer;
    text-align: center;
    margin: 50px auto 50px;

}

.red-button-left {
    margin: 20px auto 0 0;
}

.red-button:hover,
.red-button-left:hover {
    -webkit-animation: wiggle 0.82s cubic-bezier(.36, .07, .19, .97) both;
    animation: wiggle 0.82s cubic-bezier(.36, .07, .19, .97) both;
}

@-webkit-keyframes wiggle {

    10%,
    90% {
        transform: translate3d(-1px, 0, 0);
    }

    20%,
    80% {
        transform: translate3d(2px, 0, 0);
    }

    30%,
    50%,
    70% {
        transform: translate3d(-4px, 0, 0);
    }

    40%,
    60% {
        transform: translate3d(4px, 0, 0);
    }
}

@media screen and (max-width: 600px) {
    .section-title {
        font-size: 40px;
    }
}

@media screen and (max-width: 400px) {
    .section-title {
        font-size: 30px;
    }

    .section-subtitle,
    .section-description {
        font-size: 15px;
    }
}


/********************* WHO ARE WE *********************/

.who-are-we {
    background-color: #fff;
    background-repeat: no-repeat;
    background-size: cover;
    margin: 50px auto auto;
    padding: 150px 0px 50px;
}

.who-are-we-wrapper {
    max-width: 1200px;
    width: 100%;
    margin: auto;
    display: flex;
    flex-direction: column;
    padding: 0 35px;
}

@media screen and (max-width: 400px) {
    .who-are-we {
        margin: 50px auto auto;
        padding: 50px 0 0;
    }
}

/********************* MONETIZING!  *********************/

.monetizing {
    width: 100%;
    padding-bottom: 100px;
    padding-top: 0px;
    background-image: url(../media/red-blob.svg), url(../media/red-blob-left.svg);
    background-repeat: no-repeat, no-repeat;
    background-size: 120px, 120px;
    background-position-x: calc(100%), calc(0%);
    background-position-y: calc(35%), calc(65%);
}

.monetizing-wrapper {
    width: 100%;
    max-width: 1400px;
    margin: auto;
    display: flex;
    position: relative;
    padding: 0 35px;
    align-items: center;
}

.monetizing-right {
    max-width: 600px;
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
}

.monetizing-right .section-title{
    text-align: left;
}

#svgText1,
#svgText2,
#svgText3,
#svgText4 {
    display: none;

}

#svgText1.activeSvg,
#svgText2.activeSvg,
#svgText3.activeSvg,
#svgText4.activeSvg {
    display: flex;
    animation: fadeIn 2s;
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

.monetizing-right .section-description {
    margin: 0 0 30px;
    max-width: 700px;
    width: 100%;
    text-align: left;
}

.monetizing-left {
    max-width: 600px;
    margin: auto;
    width: 100%;
}

.monetizing-box {
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.monetizing-image {
    width: 100%;
    position: relative;
    display: flex;
}

.monetizing-image svg {
    width: 100%;
    height: 100%;
    object-fit: contain;
}


.svg-outline {
    fill: rgba(0, 0, 0, 0.1);
}

.svg-icon {
    fill: #1e2345;
}

#svg1:hover,
#svg2:hover,
#svg3:hover,
#svg4:hover {
    cursor: pointer;
}

#svg1:hover>.svg-outline,
#svg1:hover>.svg-icon,
#svg2:hover>.svg-outline,
#svg2:hover>.svg-icon,
#svg3:hover>.svg-outline,
#svg3:hover>.svg-icon,
#svg4:hover>.svg-outline,
#svg4:hover>.svg-icon {
    cursor: pointer;
    fill: #ae0921;
    transition: fill 1s ease-in-out;
}

#svg1.activeSvg>.svg-outline,
#svg1.activeSvg>.svg-icon,
#svg2.activeSvg>.svg-outline,
#svg2.activeSvg>.svg-icon,
#svg3.activeSvg>.svg-outline,
#svg3.activeSvg>.svg-icon,
#svg4.activeSvg>.svg-outline,
#svg4.activeSvg>.svg-icon {
    fill: #ae0921;
    transition: fill 1.5s ease-in-out;

}

@media screen and (min-width: 1900px) {
    .monetizing {
        background-position-x: calc(100%), calc(0%);
    }
}

@media screen and (max-width: 1275px) {
    .monetizing .section-description-padding {
        padding-top: 50px;
        max-width: 700px;
        width: 100%;
    }

    .monetizing {
        background-image: none;
    }

    .monetizing-left {
        margin-bottom: 100px;
    }

    .monetizing .section-image-middle {
        max-width: 800px;
        margin: auto;
    }

    .monetizing-wrapper {
        flex-direction: column;
    }

    .monetizing-right,
    .monetizing-right .section-description {
        max-width: unset;
    }
}

@media screen and (max-width: 700px) {
    .monetizing {
        background-image: unset;
    }

}

@media screen and (max-width: 500px) {
    .monetizing-right .section-title {
        text-align: left;
    }
}

@media screen and (max-width: 400px) {
    .monetizing-wrapper {
        margin: 50px auto auto;
    }

    .monetizing {
        padding-bottom: 100px;
    }
}

/********************* SERVICES *********************/


.services-wrapper {
    max-width: 1400px;
    width: 100%;
    margin: auto;
    display: flex;
    flex-direction: column;
    padding: 0 35px;
    justify-content: center;
    padding-top: 250px;
}

.services .section-button {
    margin: 50px auto;
}

.services-top {
    width: 100%;
    display: flex;
    flex-direction: column;
}

.services-top .section-title,
.services-top .section-subtitle,
.services-top .section-description {
    text-align: center;
}

.services-top .section-title {
    max-width: 750px;
    width: 100%;
    margin: auto;
}

.services-top .section-description {
    max-width: 1000px;
    width: 100%;
    margin: auto;
}

.services-bottom {
    width: 100%;
    display: flex;
    justify-content: space-between;
    margin: 100px auto;
}

.services-box {
    max-width: 420px;
    width: 100%;
    padding: 40px;
    border-radius: 10px;
    /* display: flex; */
    flex-direction: column;
    box-shadow: 0px 0px 50px rgba(0, 0, 0, 0.05);
}

.services-image {
    /* max-width: 45px; */
    /* width: 100%; */
    height: 70px;
    margin: auto auto 40px;
}

.services-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.services-box-title {
    color: #1E2345;
    font-size: 23px;
    padding: 0 0 40px;
    font-family: Nexa XBold;
    text-align: center;
}

.services-box-description {
    color: #555555;
    font-size: 18px;
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    text-align: center;
}

@media screen and (max-width: 1300px) {
    .services-wrapper {
        flex-direction: column;
    }

    .services-top {
        width: 70%;
        text-align: center;
        margin: auto;
    }

    .services-bottom {
        width: 100%;
        justify-content: space-evenly;
    }

    .services-box {
        max-height: unset;
        height: unset;
    }
}

@media screen and (max-width: 960px) {
    .services-bottom {
        flex-wrap: wrap;
        flex-direction: column;
        align-items: center;
    }

    .services-box {
        margin-bottom: 30px;
    }

    .services-wrapper {
        padding-top: 100px;
    }

    .services-bottom {
        margin: 100px auto 0;
    }
}

@media screen and (max-width: 550px) {
    .services-top {
        width: 100%;
    }

    .services-box {
        max-width: unset;
    }
}

@media screen and (max-width: 400px) {
    .services {
        margin: 50px auto auto;
    }

    .services-box-description {
        font-size: 15px;
    }
}



/********************* WORLD *********************/

.world-wrapper {
    max-width: 1400px;
    width: 100%;
    margin: auto;
    display: flex;
    flex-direction: column;
    padding: 110px 35px;
    justify-content: center;
    margin-top: 100px;
    /* background-image: url(../media/faded-background.svg);
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 80px; */
    background: linear-gradient(180deg, rgba(174, 9, 33, 0.03) 0%, rgba(174, 9, 33, 0) 100%);
    border-top-right-radius: 80px;
    border-top-left-radius: 80px;
}

.world-top {
    max-width: 1000px;
    width: 100%;
    margin: auto;
    display: flex;
    flex-direction: column;
}

.world-map {
    background-image: url(../media/mapa.png);
    background-position: center;
    background-repeat: no-repeat;
    width: 100%;
    background-size: contain;
}

.world-map .red-button {
    margin: 450px auto 0;
    box-shadow: 0px 0px 99px rgb(190 0 0 / 30%);
}

button{
    background: unset;
    border: 0;
    color: #fff;
    font-size: 18px;
    font-weight: 500;
    font-family: 'Poppins', sans-serif;
    cursor: pointer;
}

/* The Modal (background) */

.modal {
    display: none;
    /* Hidden by default */
    position: fixed;
    /* Stay in place */
    z-index: 999999999999;
    /* Sit on top */
    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 */
    justify-content: center;
    align-items: center;
}



/* Modal Content */

.modal-content {
    background: rgb(252 247 248) ;
    border-radius: 80px;
    padding: 50px;
    margin: auto;
    width: 100%;
    max-width: 900px;
    background-image: url(../media/mapa.png);
    background-position-y: calc(20%);
    background-position-x: center;
    background-repeat: no-repeat;
    width: 100%;
    background-size: contain;
}

.modal-content h3 {
    text-transform: uppercase;
    color: #1E2345;
    font-family: Nexa Heavy;
    text-align: center;
    line-height: 50px;
    padding: 10px 20px 0;
    margin-bottom: 30px;
}

/* The Close Button */

.close {
    color: #aaaaaa;
    float: right;
    font-size: 45px !important;
    font-weight: bold;
    padding: 0 20px;
    margin: 0 0 0 auto;
}

.close:hover,
.close:focus {
    color: #102454;
    text-decoration: none;
    cursor: pointer;
}

form {
    padding: 20px;
    display: flex;
    flex-direction: column;
}

input,
textarea{
    margin-top: 15px !important;
    padding: 15px 20px;
    border-radius: 30px;
    border: 1px solid #f7f7f7;
    font-size: 15px;
    font-weight: 500;
    font-family: 'Poppins', sans-serif;
    -webkit-tap-highlight-color: transparent!important;

}

input:focus,
textarea:focus {
   outline: none;
   -webkit-tap-highlight-color: transparent!important;

}

textarea{
    resize: none;
    height: 200px;
}

.modal-content .red-button {
    margin-bottom: 0;
}

label.error{
    width: 80%;
    text-align: center;
    background: #ae0921;
    margin: auto;
    padding: 5px;
    color: #fff;
    border-bottom-right-radius: 30px;
    border-bottom-left-radius: 30px;
}

@media screen and (max-width: 800px) {

    .modal-content{
        padding: 20px;
    }
    form{
        padding: 0 10px;
    }
}

@media screen and (max-width: 600px) {

    .world-map .red-button {
        margin: 100px auto 0;
    }
    .modal-content h3{
        padding: 70px 20px 0;
    }
}


/********************* PRIVACY POLICY AND TERMS & CONDITIONS *********************/

.privacy {
    background-color: #fff;
    background-repeat: no-repeat;
    background-size: cover;
    margin: 150px auto auto;
    padding-bottom: 100px;
}

.privacy-content-wrapper {
    max-width: 1400px;
    width: 100%;
    margin: auto;
    display: flex;
    flex-direction: column;
    padding: 0 35px;
}

.privacy-details-wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 100px;
}

.privacy-box-title {
    color: #102454;
    font-size: 20px;
    padding: 20px 0;
    font-family: Nexa Heavy;
}

.privacy-content-wrapper .section-title {
    text-align: left;
    font-size: 35px;
}

.privacy-content-wrapper .section-subtitle {
    text-align: left;
    font-size: 25px;
    color: #ae0921;
    margin-top: 20px;
}

.privacy-content-wrapper .section-horizontal-line {
    text-align: left;
    margin: 10px 0;
    border: 0;
    outline: 0;
}

.privacy-content-wrapper .section-mini-title {
    text-align: left;
    font-size: 20px;
    color: #102454;
    margin-top: 20px;
}

.privacy-content-wrapper .section-description {
    text-align: left;
    margin: 5px 0;
}

.privacy-content-wrapper .section-description a {
    color: #ae0921;
}

.privacy ul {
    text-align: left;
    font-size: 18px;
    color: #1D232A;
    font-weight: 400;
    font-family: 'Poppins', sans-serif;
    margin-left: 25px;
}

.privacy ul {
    list-style: none;
    /* Remove default bullets */
}

.privacy ul li::before {
    content: "\2022";
    /* Add content: \2022 is the CSS Code/unicode for a bullet */
    color: #ae0921;
    /* Change the color */
    font-weight: bold;
    /* If you want it to be bold */
    display: inline-block;
    /* Needed to add space between the bullet and the text */
    width: 1em;
    /* Also needed for space (tweak if needed) */
    margin-left: -1em;
    /* Also needed for space (tweak if needed) */
}

@media screen and (max-width: 700px) {
    .privacy {
        background-image: unset;
        margin: 50px auto;
    }
}

@media screen and (max-width: 400px) {
    .privacy-content-wrapper .section-title {
        font-size: 30px;
    }

    .privacy-content-wrapper .section-subtitle {
        font-size: 20px;
    }

    .privacy-content-wrapper .section-description,
    .privacy ul {
        font-size: 15px;
    }
}