@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Open+Sans&display=swap');

* {
    font-family: 'Open Sans';
}

body {
    width: 100%;
    margin: 0 auto;
    background: linear-gradient(15deg, #898989, #676767);
}

nav {
    width: 100%;
    margin: 0 auto;
}

.nav-color {
    width: 75%;
    margin: 0 auto;
    min-height: 70px;
    background-color: #bb0000;
    padding-top: 7px;
    padding-bottom: 7px;
}

.nav-container {
    width: 100%;
    min-height: 70px;
    margin: 0 auto;
    background-color: #fff;
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    align-items: center;
}

.website-title {
    margin-right: auto;
    margin-left: 20px;
    font-size: 1.6em;
}

.nav-listing {
    padding-right: 30px;
}

.nav-container > div a {
    text-decoration: none;
    color: #000;
    font-weight: bold;
}

.nav-container > div:nth-of-type(7) {
    background-color: #bb0000;
    margin-right: 20px;
    padding: 10px 15px;
    border-radius: 5px;
    
}

.reminder {
    width: 100%;
    margin: 0 auto;
}

.nav-container > div:nth-of-type(7) a {
    color: #fff;
}

.nav-container > div:nth-of-type(7):hover {
    background-color: teal;
}

.reminder-container {
    width: 75%;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #222222
}

.reminder-container > div {
    text-align: center;
    color: #fff;
    font-weight: bold;
}

.featured-container {
    width: 75%;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-insert-here img {
    object-fit: cover;
    width: 100%;
    min-height: 400px;
}

.image-insert-here {
    position: relative;
}

.box {
    position: absolute;
    top: 20%;
    right: 10%;
    background-color: teal;
    width: 350px;
    height: 180px;
    opacity: 0.90;
    border-radius: 10px;

}

.box:hover {
    opacity: 1.00;
    transform: scale(1.05);
    cursor: pointer;
}


.text-inside {
    position: absolute;
    padding: 10px 30px;
    color: #fff;
}

.feature-quotes {
    width: 100%;
    margin: 0 auto;
}

.feature-quotes-container {
    width: 75%;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height:70px;
    background-color: #bb0000;
    margin-top: -10px;
    margin-bottom: 15px;
    color: #fff;
}

.feature-quotes-container > div p {
    font-size: 1.5em;
}

.featured-explain {
    width: 100%;
    margin: 0 auto;
}

.featured-explain-container {
    width: 75%;
    margin: -15px auto;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: flex-start;
    column-gap: 25px;
    background-color: #fff;
}

.featured-left, .featured-right {
    width: 45%;
    margin-top: 45px;
}
.featured-left {
    font-size: 1.05em;
}

.featured-right-top img {
    width: 100%;
    height: auto;
    object-fit: cover;
    margin-top: 25px;
    border-radius: 10px;

}

.feature-right-bottom-container {
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: flex-start;
    padding-bottom: 30px;
}

.bottom-left, .bottom-right {
    width: 40%;
}

.bottom-left p, .bottom-right p {
    font-size: 1.1em;
    font-weight: bold;
    padding-top: 8px;
}

.bottom-left p i, .bottom-right p i {
    color: #bb0000;
}

footer {
    width: 100%;
    margin: 0 auto;
}

.footer-container {
    width: 75%;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    column-gap: 100px;
    padding-top: 30px;
    padding-bottom: 30px;
    background-color: #222222;
}

.left-footer, .right-footer {
    color: #fff;
}

.reminder-inside2 h2 {
    font-weight: bold;
    color: #bb0000;
    font-size:2em;
}

.text-color {
    color: #fff;
}

.content {
    width: 100%;
    margin: 0 auto;
}

.content-container {
    width: 70%;
    margin: 0 auto;
    background-color: #fff;
    padding: 20px 30px;
}

.content-container2 {
    width: 75%;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    background-color: #fff;
    column-gap: 15px;
}

.content-left, .content-right {
    width: 45%;
    padding: 20px 30px;
}

.content-right img {
    width: 100%;
    height: auto;
    object-fit: cover;
    margin-top: 30px;
    border-radius: 15px;
}

@media screen and (max-width: 700px) {
   .nav-container {
    flex-direction: column;
   }

   .nav-container > div:nth-of-type(7) {
    margin-bottom: 20px;
   }

   .featured-inside {
    padding: 20px 30px;
   }

   .featured-explain-container {
    flex-direction: column;
   }

   .featured-left, .featured-right {
    width: 100%;
    padding-left: 5px;
   }

   .content-container2 {
    flex-direction: column-reverse;
   }

   .content-left, .content-right {
    width: 90%;
   }

}

