html {
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    font-family: "TTNorms-Regular";
}

.container {
    max-width: 75rem;
    margin: 0 auto;
    padding: 0 1rem;
}

/* sections styles (padding) */

.header-section,
.works,
.clients,
.portfolio,
.email,
.copyright {
    padding: 7rem 0;
}

/* title style */

.title {
    font-family: "TTNorms-Medium";
    font-size: 2rem;
    color: #081D43;
}

/* description style */

.desc {
    font-size: 1rem;
    color: #6C7890;
}

/* border redius */

.border-radius {
    border-radius: 0.3rem;
}

/* line height */

.line-height {
    line-height: 1.8rem;
}



/* start nav styles */



.nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 1.5rem;
}

.menu {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 50%;
}

.menu__link {
    text-decoration: none;
    color: #081D43;
}

.menu__link--active {
    padding: 0.75rem 1.5rem;
    background-color: #2F5BEA;
    color: #fff;
}

.header__logo--responsive {
    display: none;
}

.header__icon {
    font-size: 1.8rem;
    display: none;
    cursor: pointer;
}



/* start header section styles */



.header-section-wrapper {
    display: flex;
}

.header-content {
    display: flex;
    flex-direction: column;
    width: 50%;
}

.header__title {
    max-width: 25rem;
    padding-top: 3rem;
    line-height: 2.4rem;
}

.header__desc {
    max-width: 25rem;
    padding-top: 1.5rem;
}

.header-content-links {
    padding-top: 2rem;
    display: flex;
}

.header__link {
    padding: 0.7rem 0;
    background-color: #2F5BEA;
    color: white;
    text-decoration: none;
    width: 10rem;
    display: block;
    text-align: center;
    margin-right: 0.8rem;
}

.header-content-links a:nth-child(1) {
    background-color: #87BC25;
}



/* start main --> section works*/



.works {
    text-align: center;
}

.works__title {
    padding-top: 1.25rem;
}

.works-wrapper {
    display: flex;
    justify-content: space-between;
}

.works-content {
    padding-top: 4rem;
}

.works-content-title {
    font-family: "TTNorms-Medium";
    font-size: 1.1rem;
    color: #081D43;
}

.works-content-desc {
    padding-top: 1rem;
    max-width: 15rem;
}

.works-img {
    padding-top: 3rem;
}



/* start clients */



.clients {
    background-color: #2F5BEA;
    text-align: center;
}

.clients__title {
    color: #fff;
}

.clients__desc {
    color: #fff;
    padding: 0 18rem;
    padding-top: 1rem;
}

.clients-wrapper {
    max-width: 60rem;
    margin: 0 auto;
}

.comments {
    display: flex;
    justify-content: space-between;
    padding-top: 5rem;
}

.comment {
    background-color: #fff;
    margin: 0 1rem;
    text-align: start;
}

.comment-content {
    padding: 1rem;
    padding-bottom: 3rem;
}

.comment-content__txt {
    font-family: "Times-Roman";
    color: #7E8085;
}

.comment-username {
    display: flex;
    align-items: center;
    padding: 1rem;
    border-top: 1px solid #7E8085;
}

.comment-username__id {
    margin-left: 1rem;
}

.company {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 1rem;
    padding-top: 7rem;
}



/* start section portfolio */



.portfolio {
    text-align: center;
}

.portfolio__title {
    padding-top: 1.5rem;
}

.portfolio-images {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding-top: 4rem;
}

.portfolio-image {
    margin-bottom: 2rem;
}



/* start footer --> section email */



.email {
    background-color: #2F5BEA;
}

.email-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.email__title {
    font-size: 1.5rem;
    color: #fff;
}

.email-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-width: 24rem;
    background-color: #fff;
    padding: 0.3rem;
}

.email-content__input {
    color: #6C7890;
    width: 100%;
    min-height: 2.5rem;
    padding-left: 1rem;
    border: none;
    outline: none;
}

.email-send-logo {
    padding: 1rem 1.25rem;
    background-color: #2F5BEA;
    display: flex;
    justify-content: center;
    align-items: center;
}



/* start section copyright */


.copyright {
    padding: 2.5rem 0;
}

.copyright-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
}