@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;600&family=Qahiri&display=swap');

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}

/* ------------------- */

html,
body {
    height: 100%;
}

.main-div {
    width: 100vw;
    height: 100vh;

    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
}

.sub-left {
    width: 75vw;
    height: 100vh;

    display: flex;
    justify-content: center;
    align-content: center;
}

.sub-left-inner {
    width: 80%;
    height: 100%;

    display: flex;
    flex-direction: column;
    justify-content: safe center;
    align-content: safe center;
}

.redfeather-logo {
    width: 60%;
}

.redfeather-p {
    font-size: 1vw;
    line-height: 1.5;
    font-family: 'Poppins', sans-serif;
    padding-top: 4vh;
    padding-bottom: 10vh;
    font-weight: 200;
}

.contact-p {
    font-size: 1.25vw;
    font-family: 'Poppins', sans-serif;
    font-weight: 200;
    white-space: pre-wrap;
    line-height: 1.3;
}

.contact-span {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
}

.sub-right {
    width: 25vw;
    height: 100vh;

    background-image: url("./contour.svg");
    background-size: cover;

    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}

.coordinates-p {
    padding-top: 5vh;
    color: white;
    font-size: 3vw;
    font-family: 'Qahiri', sans-serif;
    letter-spacing: 0.5vw;
    text-align: center;
}

.icon {
    width: 20%;
    padding-bottom: 5vh;
}

@media (min-aspect-ratio: 2.5) {
    .redfeather-logo {
        width: 40%;
    }

    .redfeather-p {
        font-size: 0.75vw;
    }

    .contact-p {
        font-size: 1vw;
    }
}

@media (max-aspect-ratio: 1) {
    .redfeather-logo {
        width: 80%;
    }

    .redfeather-p {
        font-size: 2vw;
    }

    .contact-p {
        font-size: 3vw;
    }

    .coordinates-p {
        font-size: 5vw;
    }
}
@media (max-aspect-ratio: 0.75) {
    .main-div {
        flex-direction: column;
    }

    .sub-left {
        width: 100vw;
        height: 85vh;
    }

    .redfeather-logo {
        width: 100%;
    }

    .redfeather-p {
        font-size: 2vw;
        padding-top: 3vh;
        padding-bottom: 7vh;
    }

    .sub-right {
        width: 100vw;
        height: 15vh;

        justify-content: center;
    
        /* background-image: url("./contour.svg");
        background-size: cover;
    
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        align-items: center; */
    }

    .coordinates-p {
        font-size: 7vw;
        padding-top: 0;
	word-spacing: 15px;
    }

    .icon {
        display: none;
    }
}
