@import url('https://fonts.googleapis.com/css2?family=Tajawal:wght@200;300;400;500;700;800;900&display=swap');
* {
    margin: 0;
    padding: 0;
    font-family: "Tajawal", serif;
    cursor: url('./img/cursor.svg'), auto;
    user-select: none;
}
:root {
    --c-bg: hsl(0, 0%, 90%);
    --c-text: hsl(0, 0%, 10%);
    --pad: max(20px, 4vmin);
    --fs-text: 12px;
}
html, body {
    margin: 0;
    padding: 0;
    height: 100%;
    overflow: hidden;
}
.marketing_container {
    height: 100vh;
    width: 100vw;
    overflow-y: scroll;
    scroll-snap-type: y mandatory;
    scroll-behavior: smooth;
}

.marketing_section {
    height: 100vh;
    width: 100vw;
    scroll-snap-align: start;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2em;
}

.marketing_programacion, .marketing_marketing {
    display: flex;
    flex-direction: column;
    color: white;
    align-items: flex-start;
    font-family: "Tajawal", serif;
    position: relative;

}
.section_1-title{
    font-weight: 100;
    font-size: 100px;
    padding-left: calc(var(--pad)* 2);
}
.section_1-copy {
    font-weight: 100;
    font-size: 30px;
    max-width: 750px;
    width: 50%;
    line-height: 1;
    white-space: normal;
    padding-left: calc(var(--pad)* 2);
}
.section_1-conjunto{
    display: flex;
    justify-content: space-between;
    width: 60%;
    max-width: 590px;
    margin-top: 130px;
    padding-left: calc(var(--pad)* 2);
}
.section_1-conjunto img{
    width: 90px;
}
.section_1-conjunto_2{
    margin-top: 10px
}
.section_2-conjunto_1 {
    width: 45%;
    flex-wrap: wrap;
}

@media (max-width: 590px) {

    .section_1-title{
        font-size: 30px;
        font-weight: 300;
        margin-top: 120px;
        
    }

    .section_1-copy{
        font-size: 18px;
        line-height: 1.3;
    }
    .section_1-conjunto img {
        width: 60px;
    }
    .section_1-conjunto{
        margin-top: 50px;
        width: 80%;
    }
    .section_1-conjunto_2{
        margin-top: 0px;
    }
}