:root {
    --ei-color-1: rgb(88,203,232);
    --ei-color-2: rgb(83,104,121);
}

html {
    background-color: var(--ei-color-1);
    font-family: 'Quicksand', sans-serif;
    scroll-behavior: smooth;
}

.material-icons {
    padding: 10px;
}

@media (max-width: 768px) {
    .top-container {
        display: none;
    }
}

.top-container {
    padding: 30px;
}

.top-container a {
    color: inherit;
}

.contact-info-row {
    display: flex;
}

.contact-info {
    flex: 1 1 0;
    display: flex;
    align-items: center;
}

.contact-info-left {
    justify-content: start;
}

.contact-info-right {
    justify-content: end;
}

.logo-row {
    display: flex;
    align-items: end;
}

.main-logo {
    flex: 0;
    height: 250px;
}

.logo-buffer {
    flex: 1 0 50px;
    text-align: right;
}

.instagram-icon {
    width: 24px;
    margin: 10px;
}

.top-container-mobile {
    display: none;
}

@media (max-width: 768px) {
    .top-container-mobile {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
}

.main-logo-mobile {
    padding: 30px;
    width: 75%;
    min-width: 75%;
}

.contact-info-mobile {
    width: 100%;
    text-align: left;
}

.contact-info-mobile a {
    color: inherit;
}

.contact-info-mobile table {
    width: 100%;
    table-layout: fixed;
}

.contact-info-mobile td {
    padding: 10px;
    vertical-align: middle;
}

td.contact-info-mobile-icon {
    width: 25%;
}

td.contact-info-mobile-value {
    width: 75%;
}

.feature-row {
    background-color: var(--ei-color-2);
    display: flex;
    width: 100%;
    color: white;
}

.feature-container {
    margin: 20px;
    flex: 1 1 0;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

@media (max-width: 768px) {
    .feature-row {
        flex-wrap: wrap;
        width: calc(100% - 40px);
        margin: 20px;
    }

    .feature-container {
        margin: 10px;
        flex: 0 0 calc(50% - 20px);
    }
}

.feature {
    height: 100px;
}

.feature-title {
    margin-top: 10px;
}

.feature-link {
    color: inherit;
    text-decoration: inherit;
}

.sub-heading {
    text-align: center;
    margin: 30px;
    font-size: 72px;
}

@media (max-width: 768px) {
    .sub-heading {
        display: none;
    }
}

.sub-heading-mobile {
    text-align: center;
    font-size: 40px;
    padding-bottom: 20px;
}

.details-container {
    width: 100%;
    margin-bottom: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.details-panel {
    width: 75%;
    flex: 0;
    display: flex;
    background-color: white;
    align-items: center;
}

.details-panel-reversed {
    flex-direction: row-reverse;
}

@media (max-width: 768px) {
    .details-panel {
        flex-direction: column;
    }
}

.details-buffer {
    flex: 0 0 30px;
}

.details-feature-container {
    flex: 0;
}

.details-text {
    flex: 1;
    padding: 30px;
}