*{
    margin: 0;
    padding: 0;
    font-family: sans-serif;
}


.team-section{
    text-align: center;
    background: #272727;
    padding: 60px;
    height: 100%;
}

.team-section h1{
    text-transform: uppercase;
    margin-bottom: 40px;
    color: white;
    font-size: 40px;
}


.border{
    display: block;
    margin: auto;
    width: 260px;
    height: 3px;
    background: goldenrod;
    margin-bottom: 200px;
    padding: 0px;

}

.team-photos{
    margin: 100px;
}

.team-photos a{
    display: inline-block;
    margin: 0 30px;
    width: 160px;
    height: 160px;
    overflow: hidden;
    border-radius: 50%;
}


.team-photos a img{
    width: 100%;
    filter: grayscale(100%);
    transition: 0.4s all;
}


.team-photos a:hover > img{
    filter: none;
}


.section {
    width: 600px;
    margin: auto;
    font-size: 20px;
    color: gold;
    text-align: center;
    height: 100vh;
}

.section p{
    padding: 10px 0px;
    color: white;
    font-size: 1rem;
}

.name {
    display: block;
    margin-bottom: 30px;
    text-align: center;
    text-transform: uppercase;
    font-size: 22px;
}





/*Navigation*/
.main-nav{
    position: absolute;
    float: right;
    list-style-type: none;
    margin-top: 30px;
    z-index: 3;
}

.main-nav li{
    display: inline-block;

}

.main-nav li a{
    color:rgb(248, 248, 248);
    text-decoration: none;
    padding: 5px 20px;
    font-family: sans-serif;
    font-size: 25px;

}

.main-nav li.active a{
    border: 1px solid goldenrod;

}


.main-nav li a:hover{
    border: 1px solid goldenrod;
    color: black;
}



/*Footer*/
.footer-main-div{
    width: 100%;
    height: auto;
    margin: auto;
    background: #272727;
    padding: 20px 0px;
    display: inline-block;
}

.footer-social-icons{
    position: relative;
    width: 100%;
    height: auto;
    margin: auto;
    top: 20px;
}

.footer-social-icons ul{
    margin: 0px;
    padding: 0px;
    text-align: center;
}

.footer-social-icons ul li{
    display: inline-block;
    width: 50px;
    height: 50px;
    margin: 0px 10px;
    border-radius: 100%;
    background: goldenrod;

}

.footer-social-icons ul li a{
    color: #272727;
    font-size: 25px;
    display: block;
}

.footer-social-icons ul li a i{
    line-height: 50px;
}

.footer-menu-one{
    width: 100%;
    height: auto;
    margin: auto;
}

.footer-menu-one ul{
    margin: 0px;
    padding: 0px;
    text-align: center;
}

.footer-menu-one ul li{
    display: inline-block;
    margin: 0px 20px;
}

.footer-menu-one ul li a{
    font-family: arial;
    font-size: 20px;
    font-weight: 600;
    color: goldenrod;
    text-transform: uppercase;
}

.footer-menu-two{
    width: 100%;
    height: auto;
    margin: auto;
}

.footer-menu-two ul{
    margin: 0px;
    padding: 0px;
    text-align: center;
}

.footer-menu-two ul li{
    display: inline-block;
    margin: 0px 20px;
}

.footer-menu-two ul li a{
    font-family: arial;
    font-size: 20px;
    font-weight: 600;
    color: goldenrod;
    text-transform: uppercase;
}


footer{
    width: 100%;
    display: inline-block;
    margin: 0;
    height: 100px;
    border-top: 2px goldenrod solid;
    background-color: #272727;
}

.footer-copyright{
    width: 50%;
    float: left;
    font-size: 35px;
}

.footer-copyright p{
    padding-left: 10%;
    color: white;
    font-size: 0.7em;
    line-height: 70px;
    text-transform: capitalize;
    letter-spacing: 1px;
}


