@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@800&display=swap');

* {
    font-family: 'Roboto';
}

body {
    width: 100%;
}

nav {
    width: 100%;
}

.nav-container {
    width: 70%;
    display: flex;
    flex-direction: row;
    margin: 0 auto;
    justify-content: center;
    align-items: center;
}

.nav-menu {
    text-transform: uppercase;
}

.website-title {
    margin-right: auto;
}

.website-title h1 {
    font-size: 2em;
}

.website-title a {
    text-decoration: none;
    color: #000;
}

.menu-nav {
    padding: 0 10px;
    margin: 0 0 0 0;
}

.menu-nav h3 a {
    text-decoration: none;
    color: #000;
}

.menu-nav:hover {
    text-decoration: none;
    background-color: #0047bb;
    color: #fff;
}

.menu-nav h3 a:hover {
    color: #fff;
}

h3 {
    font-size: 1em;
}

.color-line {
    background-color: #a20322;
    height: 40px;
    width: 100%;
}

.color-line p {
    text-align: center;
    padding-top: 10px;
    font-weight: bold;
    font-size: 1.2em;
    color: #fff;
}

.image img {
    max-height: 600px;
    width: 100%;
    object-fit: cover;
}

.image {
    position: relative;
}

.nice-bg {
    background-color: rgba(0,0,0, 0.5);
    width: 35%;
    height: 35%;
    position: absolute;
    bottom: 10%;
    left: 15%;
   /* opacity: 0.6; */
}

.my-text {
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.my-text h2 {
    color: #fff;
    font-size: 2.5em;
    font-family: 'Poppins';
    font-weight: bold;
    text-align: center;
    
}

.box-button p {
    color: #fff;
    position: absolute;
    bottom: -3%;
    left: 50%;
    transform: translate(-50%, 1%);
    padding: 15px 10px;
    background-color: #a20322;
    border-radius: 7px;
    font-weight: bold;
}

.box-button p a {
    text-decoration: none;
    color: #fff;
}

.feature-box {
    width: 100%;
    background-color: #e7e7e7;
    margin-top: -30px;
    padding-top: 30px;
    padding-bottom: 20px;
}

.featured-box-container {
    width: 70%;
    margin: 25px auto;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: flex-start;
    column-gap: 15px;
}

.box1, .box2, .box3 {
    flex: 1 1 0;
    border-radius: 10px;
    width: 30%;
    min-height: 600px;
    background-color: #fff;
}

.featured-box-container img {
    width: 100%;
    height: auto;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.heading1, .heading2, .heading3, .all-text1, .all-text2, .all-text3, .bottom-links1, .bottom-links2, .bottom-links3 {
    margin: 0 15px;
}

.box1, .box2, .box3 {
    position: relative;
}

.bottom-links1 {
    position: absolute;
    bottom: 0px;
    left: 0px;
    width: 100%;
    height: 70px;
    background-color: #0047bb;
    margin-left: -.9px;
    border-bottom-right-radius: 10px;
    border-bottom-left-radius: 10px;
}

.bottom-links-text {
    color: #fff;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    font-weight: bold;
}

@media only screen and (max-width: 800px) {
    .featured-box-container {
        display: flex;
        flex-direction: column;
    }

    .box1, .box2, .box3 {
        width: 100%;
        margin-bottom: 25px;
    }
}

.testimonials, .sports-leagues {
    width: 100%;
    margin: 0 auto;
    background-color: #fff;
}

.testimonials-container, .sportsl-container {
    width: 70%;
    margin: 25px auto;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    column-gap: 20px;;
}

.testimonials-pictures img, .sl-image img {
    width: 100%;
    height: auto;
}

.testimonials-text, .sl-text {
    font-size: 1.5em;
}

.testimonials-text, .testimonials-pictures {
    flex: 1;
}

.sl-image, .sl-text {
    flex: 1;
}

.footer-container {
    width: 100%;
    margin: 0 auto;
    background-color: #0047bb;
    min-height: 200px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer-box p {
    color: #fff;
    font-size: 1.2em;
    font-weight: bold;
}

.footer-box p:hover {
    background-color: #fff;
    color: #000;
    padding: 15px 10px;
    border-radius: 10px;
}