﻿/* Secondary Navigation */
#secondaryNavigation .Normal {
    display: flex;
    justify-content: center;
}
#secondaryNavigation ul {
    list-style-type: none;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    margin: 0;
    align-items: center;
    width: 100%;
}
#secondaryNavigation ul li {
    display: block;
    margin: 0 10px;
}
#secondaryNavigation ul li#mobileNavToggle {
    display: none;
}
#secondaryNavigation ul li a,
#secondaryNavigation ul li a:visited {
    display: flex;
    color: var(--black);
    line-height: 1;
    align-items: center;
    text-decoration: none;
}
#secondaryNavigation ul li a span {
    display: none;
}
#secondaryNavigation ul li a span.material-symbols-outlined {
    display: inline-block;
}

@media only screen and (min-width: 600px) {
    #secondaryNavigation ul {
        max-width: 250px;
    }
}

@media only screen and (min-width: 1400px) {
    #secondaryNavigation {
        height: 100%;
    }
    #secondaryNavigation .Normal {
        justify-content: flex-start;
    }
    #secondaryNavigation ul {
        max-width: none;
        justify-content: flex-start;
    }
    #secondaryNavigation ul li {
        margin: 0;
        height: 100%;
    }
    #secondaryNavigation ul li a {
        font-family: var(--Arial);
        font-weight: 400;
        font-size: 1.6rem; /* 16px */
        text-transform: uppercase;
        height: 100%;
        padding: 0 1.25rem; /* 12.5px */
        transition: all 0.25s ease-in-out;
    }
    #secondaryNavigation ul li a:hover,
	#secondaryNavigation ul li a:active	{
		background-color: var(--TNW-Blue);
        color: var(--white);
	}
    #secondaryNavigation ul li a span {
        display: inline-block;
    }
    #secondaryNavigation ul li a span.material-symbols-outlined {
        display: none;
    }
}

@media only screen and (min-width: 1600px)  {
    #secondaryNavigation ul li a {
        font-size: 1.8rem; /* 18px */
        padding: 0 2rem; /* 20px */
    }
}

/* Banner */
.banner-image {
    border-bottom: 4px solid var(--white);
}


/* Content containers */
.text-box {
    background-color: var(--white);
    padding: 2.2rem 2.2rem 1rem; /* 22px 22px 10px */
    box-shadow: rgba(0,0,0,.16) 0 3px 6px;
}
.text-box .Normal {
    color: var(--black);
}
.text-box--rounded {
    border-radius: 1.2rem; /* 12px */
}
.text-box h1 {
    color: var(--TNW-Blue);
}
.text-box h2 {
    color: var(--black);
}
.text-box h3 {
    color: var(--TNW-Blue);
}
.text-box h4 {
    color: #333;
}
.text-box--yellow-stars {
    background-color: var(--TNW-Yellow);
    background-image: linear-gradient(var(--TNW-Yellow), var(--TNW-Yellow) 65%, transparent), url('images/star-background.jpg');
    background-repeat: repeat-x, repeat;
    background-size: 75%;
    padding-bottom: 4rem; /* 40px */
}
.text-box--gray {
    background-color: #d8d9da;
}
@media only screen and (min-width: 768px) {
    .text-box {
        padding: 3rem 2.85rem;
        height: 100%;
    }
}
@media only screen and (min-width: 1200px) {
    .text-box {
        padding: 4.6rem 5.7rem 2rem;
    }
}

/* Intro Text Box */
.intro__text-box {
    margin-top: -3rem;
}
.intro__text-box h1 {
    text-align: center;
}
@media only screen and (min-width: 768px) {
    .intro__text-box {
        padding-bottom: 5rem; /* 50px */
    }
    .intro__text-box p {
        font-size: 2.2rem; /* 22px */
        line-height: 1.4;
    }
}

/* Full image box */
.full-image-box {
    padding: 0;
    overflow: hidden;
    border-radius: 1.2rem; /* 12px */
}
.full-image-box p {
    margin: 0;
}
.full-image-box img {
    width: 100%; 
}
@media only screen and (min-width: 768px) {
    .full-image-box div {
        height: 100%;
    }
    .full-image-box img {
        object-fit: cover;
        width: 100%;
        height: 100%;
    }
}

/* Privacy Practices Box */
.privacy-box {
    padding: 0;
    border-radius: 1.2rem; /* 12px */
    overflow: hidden;
}
.privacy-box .Normal a {
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    color: var(--white);
    text-decoration: none;
    padding: 2.4rem 4.8rem; /* 24px 48px */
    font-size: 2.5rem; /* 25px */
    font-family: var(--Arial);
    font-weight: 700;
    line-height: 1.1;
    text-transform: uppercase;
    background-color: var(--LightBlue);
    transition: all 0.25s ease-in-out;
}
.privacy-box .Normal a:hover {
    background-color: #3c8cce;
}
.privacy-box .Normal a img {
    height: 6.6rem;
}
.privacy-box .mock-password-field {
    color: var(--white);
    border: 4px solid var(--white);
    height: 3.6rem;
    border-radius: 1.8rem;
    font-weight: 700;
    font-size: 2.4rem;
    line-height: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1rem 2rem;
    margin: 2rem auto;
    max-width: 260px;
}
@media only screen and (min-width: 768px) {
    .privacy-box .Normal a {
        height: 100%;
    }
    #section4 .col-33 .col .privacy-box a > div {
        height: auto;
    }
    #section4 .col-33 .col .privacy-box .mock-password-field {
        height: 3.6rem;
    }
}

/* Footer content */
.footer-content .Normal {
    text-align: center;
}
.footer-content .Normal p {
    margin-bottom: 4rem; /* 40px */
}
@media only screen and (min-width: 768px) {
    .footer-content .Normal {
        text-align: left;
    }
    .footer-content .Normal p {
        margin-bottom: 2rem; /* 20px */
    }
}