@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Manrope:wght@200..800&family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap');


/* font-family: "Manrope", sans-serif; */
/* font-family: "Playfair Display", serif; */
/* font-family: "Inter", sans-serif; */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    width: 100%;
    height: 100%;
    font-family: "Inter", sans-serif;
}

body {
    font-family: "Inter", sans-serif;
    position: relative;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Manrope", sans-serif;
}

a,
p,
ul,
ol,
span,
li,
strong,
i,
b,
u {
    font-family: "Inter", sans-serif;
    text-decoration: none;
}

::-webkit-scrollbar {
    display: none;
}


.special-heading {
    font-family: "Playfair Display", serif;
    font-style: italic;
    font-weight: 500;
}

.editorial-hero {
    width: 100%;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    background-image: url(/assets/images/ed-hero.jpg);
    background-position: bottom center;
    background-repeat: no-repeat;
    background-size: cover;
    margin-bottom: 50px;


    .Ed-hero-Container {
        width: 100%;
        height: auto;
        min-height: 100vh;
        display: flex;
        align-items: start;
        justify-content: end;
        flex-direction: column;
        background: linear-gradient(20deg, #000, #ffffff00);


        h1{
            font-size: 6rem;
            line-height: 7rem;
            color: #fff;
            padding-left: 30px;
        }

        p{
            font-size: 1.1rem;
            color: #fff;
            padding-left: 30px;
            margin-bottom: 50px;
            max-width: 800px;
        }
    }
}

@media only screen and (max-width:768px) {
    .editorial-hero{
        /* margin: 0; */
        padding: 0;

        .Ed-hero-Container{
            margin: 0;
            padding: 0;
            min-height: 90vh;

            h1{
                font-size: 3rem;
                line-height: 3.5rem;
                padding-left: 20px;
            }

            p{
                font-size: 1rem !important;
                padding-left: 20px;
            }
        }
    }
}