*{
    overflow-x: hidden;
}

a.btn-link:visited { 
    text-decoration: none; 
    color:var(--white-color); 
}

a:link {
    color: var(--white-color);
}

/* Section-1 */

.logo{
    max-width:70%;
    max-height:70%;
    top: 4rem;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeContent 2s ease-in-out forwards;
}


.banner-btn {
    width: 30rem;
    height: 4rem;
    background-color: var(--black-color);
    color: var(--white-color);
    letter-spacing: .3rem; 
    text-align: center;
    margin-top: 5rem;
    font-size: 1.8rem;
    text-transform: uppercase;
    animation: fadeContent 2s ease-in-out forwards;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.banner-btn::before {
    content: '';
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, transparent, #fff, transparent);
    position: absolute;
    top: 0;
    left: -100%;
    transform: skewX(-30deg);
    transition: left .5s;
}

.banner-btn:hover::before {
    left: 100%;
} 
/* End Section-1 */

/* Section-About */
.section-about  {
    width: 100%;
    background-color: var(--smoke-color);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 8rem 0 8rem 0;
}

.about-1, .about-2 {
padding: 2rem 10rem 4rem 10rem;
}

h3 {
    font-size: 3rem;
    color: var(--grey-color);
}

p {
    font-size: 1.6rem;
    line-height: 2.5rem;
    letter-spacing: .1rem;
    padding-top: 2rem;
    color: var(--grey-color);
}

.link{
    color: var(--grey-color);
    font-weight: 700;
}

.link:hover {
    color: var(--darkblue-color);
}
/* End Section-About */

/* Section-Team */
.section-team {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background-color: var(--light-grey);
    padding: 8rem 0 8rem 0;
}

.card-container {
    display: flex;
    flex-direction: column;
    width: 100%;
    padding-top: 5rem;
}

.card {
    display: flex;
    align-items: center;
    padding: 2rem 0 2rem 0;
}

.card-img {
    width: 40%;
}

.card-img img {
    width: 60%;
}

.card-info h2 {
    font-size: 2em;
}

.card-info {
    width: 60%;
    padding: 5rem;
}
/* End Section-Team */

/* Section-portfolio */
.section-portfolio {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 8rem 0 8rem 0;
    background-color: var(--smoke-color);
}

.projects-container {
    display: flex;
    justify-content: space-evenly;
    width: 100%;
    padding-top: 5rem;
}

.project {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2rem;
    margin: 0 2rem 0 2rem;
}

.project-description {
    padding: 0 9rem 0 9rem;
}
/* End Section-portfolio */

/* Section-client */
.section-client {
    background-color: var(--smoke-color);
    padding: 8rem 0 8rem 0;
}

.client-container {
    display: flex;
    justify-content: space-evenly;
    width: 100%;
}

.client {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 33.3333%;
    text-align: center;
}

.underline-2 {
    width: 12rem;
    height: .3rem;
    background-color: var(--grey-color);
    margin-bottom: 2rem;
}

.client p {
    padding: 0 4rem 0 4rem;
}

.client h3 {
    padding-bottom: 3rem;
}

ul {
    font-size: 1.6rem;
    line-height: 2.5rem;
    letter-spacing: .1rem; 
    color: var(--grey-color);
}
/* End Section-client */

/* Media Queries */
@media only screen and (max-width: 900px) {
    .card {
        display: flex;
        flex-direction: column;
    }

    .card-img {
        width: 60%;
    }

    .card-info {
        width: 100%;
    }

    .projects-container {
        display: flex;
        flex-direction: column;
    }
}

@media only screen and (max-width: 600px) {
    .banner-btn {
        width: 20rem;
        height: 3.5rem;
        font-size: 1.2rem;
    }

    .section-about  {
        padding: 4rem 0 4rem 0;
    }

    .about-1, .about-2 {
        padding: 2rem 4rem 4rem 4rem;
    }

    h3 {
        font-size: 2.2rem;
    }
    
    p {
        font-size: 1.4rem;
        line-height: 2rem;
        letter-spacing: .1rem;
        padding-top: 2rem;
    }

    .section-portfolio {
        padding: 4rem 1rem 4rem 1rem;
    }

    .section-client {
        padding: 3rem 0 3rem 0;
    }

    .client {
        width: 90%;
    }

    .client-container {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .client {
        padding: 2rem 0 2rem 0;
    }

    .page-btn {
        width: 20rem;
    }

    .btn-link {
        font-size: 1.2rem;
    }
}
/* End Media Queries */
