
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


/* hero */
.team-hero {
    position: relative;
    width: 100%;
    height: 60vh;
    background-image: url('../img/g-pac-logo.jpg');
    transition: 0.3s, border-radius 0.3s, opacity 0.3s;
    background-position: center center;
    background-size: cover;
    overflow: hidden;

}

.team-hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000000;
    opacity: .7;
    
    /* z-index: 1; */
}

.team-hero-content {
    position: relative;
    z-index: 2;
    margin-top: 15%;
    color: white;
}
.team-hero-content h1 {
    letter-spacing: 1px;
    padding: 10px 0px !important;
    font-size: 60px;
    font-weight: 700;
}

/* contact */
.contact-section{
    background-color: var(--white);
    box-shadow: 1px 1px 5px 0px #02020230;

}
form input{
    padding: 12px 15px;
    border-radius: 2px;
    border:1px solid #eee;
    background: transparent;
}
form input::placeholder{
color:var(--light-black) !important ;

}
.form-control:focus{
    outline: none;
    border:1px solid #eee;
    box-shadow: none;
}
form textarea{
    height:150px;
    color:var(--light-black);
}
.get-in-touch-button{
    margin-top: 4rem !important;
}
form  a{
    letter-spacing: 1px;
    padding:10px 20px !important;
}

.contact-numbers a{
    font-size: 18px;
    color:var(--light-black) ;
    padding:5px 0px
}
.contact-numbers a i{
    color:var(--polbg)
}

