*		{margin: 0; border: 0; padding: 0; outline: 0; box-sizing: border-box;}
p, a, small, li, textarea, input, label, td, tr, div {font-family: 'Montserrat', sans-serif;}
h1, h2, h3, h4, h5		{font-family: 'Montserrat', sans-serif;}
.clear	{clear: both;}
a		{text-decoration: none; color: inherit;}
html	{overflow-y: scroll; background-color: #f5f2ea; color: #1d1d1b;}
ul		{list-style-type: none;}
img     {max-width: 100%; max-height: 100%; height: auto;}

#landing {
    display: flex;
    flex-direction: column;
}

#landing .img {
    order: 1;
}

#landing .img:before {
    content: "";
    display: block;
    padding-top: 75%;
}

#landing .text {
    order: 2;
    padding: 60px 20px;
    text-align: center;
}

#landing .text .inner img {
    display: block;
    margin: 0 auto;
}

#landing .text .inner h1 {
    font-family: "Playfair Display", serif;
    font-optical-sizing: auto;
    font-weight: 700;
    font-style: normal;
    color: #e94652;
    font-size: 48px;
    margin-top: 50px;
}

#landing .text .inner p.intro {
    font-family: "Poppins", sans-serif;
    font-weight: 300;
    font-size: 16px;
    line-height: 1.6;
    margin-top: 20px;
}

#landing .text .inner p.intro span {
    font-weight: 500;
    font-size: 22px;
}

#landing .text .inner p.details {
    font-family: "Poppins", sans-serif;
    color: #e94652;
    font-weight: bold;
    line-height: 1.6;
    font-size: 19px;
    margin-top: 30px;
}

#landing .text .inner ul {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin-top: 15px;
}

#landing .text .inner ul a {
    color: #e94652;
}

#landing .text .inner ul i {
    font-size: 32px;
}

@media all and (min-width: 992px) {
    #landing {
        flex-direction: row;
        height: 100vh;
        align-items: stretch;
    }
    #landing > div {
        width: 50%;
    }
    #landing .text {
        order: 1;
        padding: 0 20px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    #landing .img {
        order: 2;
    }
    #landing .img:before {
        display: none;
    }
    #landing .text .inner h1 {
        font-size: 72px;
    }
    #landing .text .inner p.intro {
        font-size: 19px;
    }
    #landing .text .inner p.intro span {
        font-size: 28px;
    }
}