/* Styles */

/*--------------
1. Global Styles
---------------*/

/* Typography */
html {font-family: 'Roboto', Arial, Helvetica, sans-serif;}
body {
    margin: 0;
}
.display-xlg {
    font-size: 90px;
    font-weight: 700;
    line-height: 1.25;
}
.display-lg {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.25;
}
.display-md {
    font-size: 36px;
    font-weight: 700;
    line-height: 1.5;
}
.display-sm {
    font-size: 32px;
    font-weight: 700;
    line-height: 1.5;
}
.header-lg {
    font-size: 36px;
    font-weight: 500;
    line-height: 1.5;
}
.header-md {
    font-size: 32px;
    font-weight: 500;
    line-height: 1.5;
}
.header-sm {
    font-size: 24px;
    font-weight: 300;
    line-height: 1.5;
    letter-spacing:2px
}
.body-large {
    font-size: 18px;
    font-weight: 600;
    line-height: 2.5em;
}
.body-regular {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.25;
}
.body-bold {
    font-size: 16px;
    font-weight: 500;
    line-height: 1.25;
}
.button-text {
    font-size: 16px;
    font-weight: 700;
}
.link-text {
    font-size: 14px;
    font-weight: 500;
}
.footer-text {
    font-size: 12px;
    font-weight: 500;
}
/* Colors */
/* :root allows for global changes instead of looking for each iteration of the color. Changing here will change across the entire site */
html:root {
    --mendeldrizin-primary:                #85BADA;
    --mendeldrizin-primary-highlight:      #2d5482;
    --mendeldrizin-primary-shade:          #212f3f;
    --mendeldrizin-secondary:              #353e4f;
    --mendeldrizin-white:                  #FFFFFF;
    --mendeldrizin-grey:                   #a8afb9;
}
/* Columns */
.col-full {
    width: 100%;
}
.col-half {
    width: 50%;
}
.col-third {
    width: 33.33%;
}
.col-sixth {
    width: 16.665%;
}

/*--------------
2. Navigation & Logo
---------------*/

header {
    background: var(--mendeldrizin-white);
    padding-top: 8px;
    padding-bottom: 8px;
    padding-left: 64px;
    padding-right: 64px;
}
.header-inner {
    display: flex;
    flex-direction: row;
    width: 100%;
}
.nav-bar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-btn {
    width: auto;
    height: 36px;
    padding: 8px 16px;
    color: var(--mendeldrizin-white);
    background: var(--mendeldrizin-secondary);
    border-radius: 24px;
    text-decoration: none;
    font-weight: 500;
}

.nav-btn:hover {
    text-decoration: none;
    background-color: var(--mendeldrizin-grey);
    color: var(--mendeldrizin-white);
}
.logo img{
   height: 80px;
}

/*--------------
3. Images
---------------*/
*{box-sizing: boder-box;}
img {vertical-align: middle;}
.hero-container {
    height: 600px;
    margin: 0;
    overflow: hidden;
}
.hero-container {
    height: 600px;
    margin: 0;
    overflow: hidden;
}
img {
    width: 100%;
    object-fit: contain;
}
.fade {
    animation-name: fade;
    animation-duration: 600ms ease;
}
@keyframes fade {
    from {opacity: .4}
    to {opacity: 1}
}
.dot {
    visibility: hidden;
    display: none;
    height: 12px;
    width: 12px;
    margin: 0 2px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.6s ease;
    margin-bottom: -8px;
}
/*--------------
4. Title Section
---------------*/
.title-section {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: var(--mendeldrizin-primary);
    padding-bottom: 48px;
    gap: 32px;
    text-align: center;
    height: 250px;
}
.title {
    color: var(--mendeldrizin-grey);
}
.subtitle {
    color: var(--mendeldrizin-white);
    padding-bottom: 16px;
}
.subtitle h4 {
    color: var(--mendeldrizin-white);
}
/* Button */
.tenant-btn {
    width: 160px;
    height: auto;
    border-radius: 52px;
    padding: 8px;
    background-color: var(--mendeldrizin-white); 
    border: 2px solid var(--mendeldrizin-white);
    text-decoration: none;
    color: var(--mendeldrizin-secondary);
    font-weight: bold;
}
.tenant-btn:hover {
    background: var(--primary-highlight);
    color: var(--mendeldrizin-white);
    text-decoration: none;
    border: 2px solid var(--mendeldrizin-white);
}


/*--------------
5. Content Section
---------------*/

.content-section {
    display: flex;
    flex-direction: row;
    padding-top: 24px;
    padding-left: 48px;
    padding-bottom: 48px;
}
.content-section-mobile {
    display: none;
    visibility: hidden;
}
.divider-right {
    border-right: 1px solid var(--mendeldrizin-primary);
    margin-right: 24px;
    padding-right: 32px;
    padding-left: 15px;
}
.content {
    display: flex;
    word-wrap: break-word;
    padding-right: 24px;
}

/*--------------
6. Footer Section
---------------*/

footer {
    padding-top: 8px;
    padding-bottom: 8px;
    padding-left: 64px;
    padding-right: 64px;
}
.footer-info {
    color: var(--mendeldrizin-grey);
    display: flex;
    align-items: center;
    justify-content: space-between;
}


/*--------------
7. Media Queries
---------------*/
@media screen and (max-width: 1633px) {
    .hero-container {
        height: 600px;
        margin: 0;
        overflow: hidden;
    }
}



@media screen and (max-width: 1200px) and (min-width: 800px){
    .hero-container  {
        height: 500px;
        margin: 0;
        overflow: hidden;
    }
}


    @media screen and (min-width: 400px){
        .hero-container  {
            height: 200px;
            margin: 0;
            overflow: hidden;
        }
    


    /* Content Changes */
    .content-section {
        display: flex;
        flex-direction: row;
        padding-top: 24px;
        padding-left: 48px;
        padding-right: 48px;
        padding-bottom: 48px;
        overflow: hidden;
    }

    .navigation{
        visibility: hidden;
    }
    .logo img {
        height: 80px;
    }
    
    /* Image changes */
 
    /* Title Section changes */
    .title {
        font-size: 48px;
        color: var(--mendeldrizin-white);
        margin-bottom: -24px;
    }
    .subtitle {
        font-size: 18px;
        color: var(--mendeldrizin-secondary);
        padding-bottom: 16px;
    }
    /* Content Section */
    .content-section {
        display: none;
        visibility: hidden;
    }
    .content-section-mobile {
        display: flex;
        flex-direction: column;
        visibility: visible;
        padding-left: 24px;
        padding-right: 32px;
        padding-bottom: 32px;
    }
    .header-sm {
        margin-bottom: 0;
    }
    .divider-right {
        border: 0px;
    }

    /* Footer changes */
    footer {
        padding-top: 8px;
        padding-bottom: 8px;
        padding-left: 64px;
        padding-right: 64px;
    }
    .footer-info {
        color: var(--mendeldrizin-grey);
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: space-between;
    }
}
@media screen and (max-width: 390px){
    header {
        background: var(--mendeldrizin-white);
        padding-top: 8px;
        padding-bottom: 8px;
        padding-left: 140px;
        padding-right: 85px;
    }
    .navigation {
        visibility: hidden;
    }
    
    /* Image changes */
    .hero-container {
        height: 200px;
        margin: 0;
        overflow: hidden;
    }
    /* Title Section changes */
    .title {
        font-size: 48px;
        color: var(--mendeldrizin-white);
        margin-bottom: 0px;
    }
    .subtitle {
        font-size: 18px;
        color: var(--mendeldrizin-secondary);
        padding-bottom: 16px;
    }
    /* Content Section */
    .content-section {
        display: none;
        visibility: hidden;
    }
    .content-section-mobile {
        display: flex;
        flex-direction: column;
        visibility: visible;
        padding-left: 24px;
        padding-right: 32px;
        padding-bottom: 32px;
    }
    .header-sm {
        margin-bottom: 0;
    }
    .divider-right {
        border: 0px;
    }

    /* Footer changes */
    footer {
        padding-top: 8px;
        padding-bottom: 8px;
        padding-left: 64px;
        padding-right: 64px;
    }
    .footer-info {
        color: var(--mendeldrizin-grey);
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: space-between;
    }
}
@media screen and (max-width: 375px){
    header {
        background: var(--mendeldrizin-white);
        padding-top: 8px;
        padding-bottom: 8px;
        padding-left: 140px;
        padding-right: 85px;
    }
    .navigation {
        visibility: hidden;
    }
    /* Image changes */
    .hero-container {
        height: 250px;
        margin: 0;
        overflow: hidden;
    }
    /* Title Section changes */
    .title {
        font-size: 48px;
        color: var(--mendeldrizin-white);
    }
    .subtitle {
        font-size: 18px;
        color: var(--mendeldrizin-secondary);
        padding-bottom: 16px;
    }
    /* Content Section */
    .content-section {
        display: none;
        visibility: hidden;
    }
    .content-section-mobile {
        display: flex;
        flex-direction: column;
        visibility: visible;
        padding-left: 24px;
        padding-right: 32px;
        padding-bottom: 32px;
    }
    .header-sm {
        margin-bottom: 0;
    }
    .divider-right {
        border: 0px;
    }


    /* Footer changes */
    footer {
        padding-top: 8px;
        padding-bottom: 8px;
        padding-left: 64px;
        padding-right: 64px;
    }
    .footer-info {
        color: var(--mendeldrizin-grey);
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: space-between;
    }
}