/* global */

* {
    margin: 0;
    padding: 0;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    box-sizing: border-box;
}

body {
    background: #fff;
    margin: 0;
    padding: 0;
    font-family: brandon-grotesque, sans-serif;
}

input:focus,
textarea:focus,
select:focus {
    outline: none;
}

/* end of global */

@media(min-width: 1366px) {
    .team-container {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        grid-gap: 50px;
        margin: 50px auto 0 auto;
        width: 100%;
    }
    .team-card {
        background: #fff;
        border-radius: 10px;
        box-shadow: 0px 0px 20px rgba(0, 34, 68, 0.1);
        padding: 50px 25px;
        text-align: center;
        transition: all 0.2s ease-in-out;
    }
    .team-card:hover {
        transform: translateY(-5px);
        box-shadow: 0px 10px 30px rgba(0, 34, 68, 0.2);
    }
    .team-headshot {
        width: 180px;
        height: 180px;
        border-radius: 50%;
        object-fit: cover;
        border: 4px solid #69be28;
        margin: 0 auto 20px auto;
        display: block;
    }
    .team-card h3 {
        font-size: 30px;
        font-weight: 500;
        color: #002244;
        margin: 10px auto 0 auto;
    }
    .team-card h4 {
        font-size: 20px;
        font-weight: 500;
        color: #69be28;
        margin: 5px auto;
    }
    .team-card p {
        font-size: 15px;
        font-weight: 400;
        color: #555555;
        margin: 5px auto;
    }
    .team-card-contact {
        display: flex;
        flex-direction: column;
        gap: 5px;
        margin: 20px auto;
    }
    .team-card-contact a {
        font-size: 17px;
        font-weight: 500;
        color: #002244;
        text-decoration: none;
    }
    .team-card-contact a:hover {
        color: #69be28;
    }
    .team-card-contact a i {
        color: #69be28;
        margin: 0 5px 0 0;
    }
    .team-card-button {
        display: inline-block;
        background: #69be28;
        color: #fff;
        padding: 15px 30px;
        margin: 10px auto 0 auto;
        transition: all .4s ease-in-out;
        font-size: 17px;
        font-weight: 500;
        letter-spacing: 1px;
        text-decoration: none;
        border-radius: 3px;
    }
    .team-card-button:hover {
        background: #002244;
    }
}

@media(max-width: 1366px) and (min-width: 1024px) {
    .team-container {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        grid-gap: 25px;
        margin: 50px auto 0 auto;
        width: 100%;
    }
    .team-card {
        background: #fff;
        border-radius: 10px;
        box-shadow: 0px 0px 20px rgba(0, 34, 68, 0.1);
        padding: 50px 25px;
        text-align: center;
        transition: all 0.2s ease-in-out;
    }
    .team-card:hover {
        transform: translateY(-5px);
        box-shadow: 0px 10px 30px rgba(0, 34, 68, 0.2);
    }
    .team-headshot {
        width: 160px;
        height: 160px;
        border-radius: 50%;
        object-fit: cover;
        border: 4px solid #69be28;
        margin: 0 auto 20px auto;
        display: block;
    }
    .team-card h3 {
        font-size: 25px;
        font-weight: 500;
        color: #002244;
        margin: 10px auto 0 auto;
    }
    .team-card h4 {
        font-size: 20px;
        font-weight: 500;
        color: #69be28;
        margin: 5px auto;
    }
    .team-card p {
        font-size: 15px;
        font-weight: 400;
        color: #555555;
        margin: 5px auto;
    }
    .team-card-contact {
        display: flex;
        flex-direction: column;
        gap: 5px;
        margin: 20px auto;
    }
    .team-card-contact a {
        font-size: 16px;
        font-weight: 500;
        color: #002244;
        text-decoration: none;
    }
    .team-card-contact a:hover {
        color: #69be28;
    }
    .team-card-contact a i {
        color: #69be28;
        margin: 0 5px 0 0;
    }
    .team-card-button {
        display: inline-block;
        background: #69be28;
        color: #fff;
        padding: 15px 30px;
        margin: 10px auto 0 auto;
        transition: all .4s ease-in-out;
        font-size: 16px;
        font-weight: 500;
        letter-spacing: 1px;
        text-decoration: none;
        border-radius: 3px;
    }
    .team-card-button:hover {
        background: #002244;
    }
}

@media(max-width: 1024px) and (min-width: 769px) {
    .team-container {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        grid-gap: 25px;
        margin: 50px auto 0 auto;
        width: 100%;
    }
    .team-card {
        background: #fff;
        border-radius: 10px;
        box-shadow: 0px 0px 20px rgba(0, 34, 68, 0.1);
        padding: 50px 25px;
        text-align: center;
        transition: all 0.2s ease-in-out;
    }
    .team-card:hover {
        transform: translateY(-5px);
        box-shadow: 0px 10px 30px rgba(0, 34, 68, 0.2);
    }
    .team-headshot {
        width: 160px;
        height: 160px;
        border-radius: 50%;
        object-fit: cover;
        border: 4px solid #69be28;
        margin: 0 auto 20px auto;
        display: block;
    }
    .team-card h3 {
        font-size: 25px;
        font-weight: 500;
        color: #002244;
        margin: 10px auto 0 auto;
    }
    .team-card h4 {
        font-size: 20px;
        font-weight: 500;
        color: #69be28;
        margin: 5px auto;
    }
    .team-card p {
        font-size: 15px;
        font-weight: 400;
        color: #555555;
        margin: 5px auto;
    }
    .team-card-contact {
        display: flex;
        flex-direction: column;
        gap: 5px;
        margin: 20px auto;
    }
    .team-card-contact a {
        font-size: 16px;
        font-weight: 500;
        color: #002244;
        text-decoration: none;
    }
    .team-card-contact a:hover {
        color: #69be28;
    }
    .team-card-contact a i {
        color: #69be28;
        margin: 0 5px 0 0;
    }
    .team-card-button {
        display: inline-block;
        background: #69be28;
        color: #fff;
        padding: 15px 30px;
        margin: 10px auto 0 auto;
        transition: all .4s ease-in-out;
        font-size: 16px;
        font-weight: 500;
        letter-spacing: 1px;
        text-decoration: none;
        border-radius: 3px;
    }
    .team-card-button:hover {
        background: #002244;
    }
}

@media(max-width: 769px) {
    .team-container {
        display: grid;
        grid-template-columns: 1fr;
        grid-gap: 25px;
        margin: 50px auto 0 auto;
        width: 100%;
    }
    .team-card {
        background: #fff;
        border-radius: 10px;
        box-shadow: 0px 0px 20px rgba(0, 34, 68, 0.1);
        padding: 50px 25px;
        text-align: center;
        transition: all 0.2s ease-in-out;
    }
    .team-headshot {
        width: 160px;
        height: 160px;
        border-radius: 50%;
        object-fit: cover;
        border: 4px solid #69be28;
        margin: 0 auto 20px auto;
        display: block;
    }
    .team-card h3 {
        font-size: 25px;
        font-weight: 500;
        color: #002244;
        margin: 10px auto 0 auto;
    }
    .team-card h4 {
        font-size: 20px;
        font-weight: 500;
        color: #69be28;
        margin: 5px auto;
    }
    .team-card p {
        font-size: 15px;
        font-weight: 400;
        color: #555555;
        margin: 5px auto;
    }
    .team-card-contact {
        display: flex;
        flex-direction: column;
        gap: 5px;
        margin: 20px auto;
    }
    .team-card-contact a {
        font-size: 16px;
        font-weight: 500;
        color: #002244;
        text-decoration: none;
    }
    .team-card-contact a:hover {
        color: #69be28;
    }
    .team-card-contact a i {
        color: #69be28;
        margin: 0 5px 0 0;
    }
    .team-card-button {
        display: inline-block;
        background: #69be28;
        color: #fff;
        padding: 15px 30px;
        margin: 10px auto 0 auto;
        transition: all .4s ease-in-out;
        font-size: 16px;
        font-weight: 500;
        letter-spacing: 1px;
        text-decoration: none;
        border-radius: 3px;
    }
    .team-card-button:hover {
        background: #002244;
    }
}
