@font-face {
    font-family: 'metropolis-extrabold';
    src: url(./Metropolis-ExtraBold.otf);
}

@font-face {
    font-family: 'metropolis-bold';
    src: url(./Metropolis-Bold.otf);
}

@font-face {
    font-family: 'metropolis-regular';
    src: url(./Metropolis-Regular.otf);
}


*, *::after, *::before {
    box-sizing: border-box;
}

body {
    margin: 0;
    background: radial-gradient(#152142, #111C33);
    color: white;
    font-family: 'metropolis-regular', sans-serif;
    font-weight: 400;
    height: 100vh;
}

.anchor {
    color: inherit;
    /*text-decoration: none;*/
    font-size: 1.3rem;
    font-weight: 400;
}

.contact-us-container {
    line-height: 1.6rem;
}

.page-header {
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
}

.main-logo-img {
    width: 12rem;
    max-width: 60vw;
}

main {
    height: calc(100vh - 107px);
}

.page-container {
    padding: 0 1.5rem;
    padding-bottom: 3rem;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    height: 100%;
    max-height: 100vh;
}

.socials-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-left: 30px;
}

.fb {
    margin-right: 20px;
}

.heading-container {
    max-width: 900px;
}

.main-heading {
    font-size: calc(1.5rem + 3vw);
    line-height: 120%;
    font-family: 'metropolis-bold', sans-serif;
    margin: 10px 0 0 0;
}

.feature-list {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    list-style: none;
    padding: 0;
    font-size: .8rem;
}

.feature {
    color: #00998E;
    margin-left: 15px;
    position: relative;
}

.feature::before {
    content: '|';
    color: #00998E;
    margin-right: 10px;
}

.first-feature {
    margin-left: 0;
}

.first-feature::before {
    display: none;
}

.sub-heading {
    color: #00998E;
    font-weight: 500;
    letter-spacing: .5rem;
    font-size: 1.3rem;
}

@media (max-width: 768px) {
    .feature-list {
        display: none;
    }    
}

@media (min-width: 768px) {
    .sub-heading {
        font-size: 1.5rem;
        letter-spacing: .6rem;
    }    
}

@media (min-width: 1200px) {
    .main-heading {
        font-size: 4rem;
    }    
}

@media (max-height: 425px) {
    .page-container {
        max-height: initial;
    }

    main {
        height: fit-content;
    }
}