/* --------------------nav bar ------------------------ */
#navbar-container{
    background-color: aliceblue;
}
.navbar{
    background-color: aliceblue;
    .navbar-brand{
        display: none;
        img{
            height: 60px;
        }
    }
    .navbar-toggler{
        border: none;
    }
    .nav-link{
        img{
            margin-top: -40px;
            margin-bottom: -35px;
            width: 200px;
            height: 110px;
        }
    }
}
@media screen and (max-width: 991px){
    .navbar{
        .navbar-brand{
            display: block;   
        }
        .nav-item-logo{
            display: none;
        }
    }   
}

/* -----------------------info-------------------------------------- */
.social-links{
    width: 100%;
    height: 400px;
    padding-top: 2%;
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    font-size: 70%;
    h3{
        width: 70%;
        font-size: large;
        text-decoration: underline;
        letter-spacing: 2px;
      }
      a{
        text-decoration: none;
        padding: 2%;
        /* font-size: 90%; */
      }
      li{
        padding: 1%;
      }
    .logoLink{
        /* border: solid; */
        img{
            width: 250px;
            height: 200px;
        }
    }
    .contact-links{
        /* border: solid; */
        width: 20%;
        display: flex;
        flex-direction: column;
        a{
            letter-spacing: 2px;
        }
    }
    .quick-links{
        /* border: solid; */
        width: 15%;
        display: flex;
        flex-direction: column;
    }
    .advertLinks{
        /* border: solid; */
        width: 20%;
        display: flex;
        flex-direction: column;
    }
}
.terms{
    display: flex;
    text-align: center;
    border-top: solid 1px;
    border-bottom: solid 1px;
    width: 100%;
    .social-icons{
        margin-top: 1%;
        width: 60%;
        a{
            padding: 5%;
        }
    }
    footer{
        text-align: right;
        margin-top: 1%;
        width: 40%;
    
    }
}
#infoLinks{
    display: flex;
    gap: 3%;
}
@media screen and (max-width: 968px){
    .social-links{
        H3{
            font-size: small;
        }
        a{
            font-size: 80%;
        }
        .logoLink{
            /* border: solid; */
            img{
                width: 180px;
                height: 150px;
            }
        }
        .advertLinks{
            /* border: solid; */
            width: 25%;
        }
        .address{
            p{
                font-size: 80%;
            }
        }
    }
    #infoLinks{
        gap: 1%;
    }
}
@media screen and (max-width: 700px){
    #infoLinks{
        display: grid;
        /* grid-template-columns: repeat(2, 1fr); */
        gap: 3%;
    }
    .social-links{
        height: 100%;
        a{
            font-size: small;
        }
        /* li{
            font-size: larger;
        } */
        .logoLink{
            /* position: absolute; */
            img{
                /* border: solid; */
                margin-left: 30%;
                width: 150px;
                height: 100px;
            }
        }
        .contact-links{
            width: 80%;
            padding-left: 2%;
        }
        .quick-links{
            width: 80%;
            margin-left: 2%;
        }
        .advertLinks{
            width: 80%;
            margin-left: 2%;
            margin-bottom: 15%;
        }
        .address{
            display: none;
        }
    }
    .terms{
        margin-top: 20%;
        display: grid;
        .social-icons{
            width: 100%;
        }
        footer{
            margin-top: 5%;
            width: 100%;
            text-align: center;
            p{
                font-size: 60%;
            }
            a{
                font-size: 80%;
            }
        
        }
    }
}