@import url(fonts.css);
@import url(media.css);

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: 'roboto';
    list-style: none;
    text-decoration: none;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.navbar a {
    color: black;
}

.navbar__list {
    display: flex;
    gap: 40px;
}

/* HEADER END */

/* ==================== */

/* MAIN STARTS */

/* DESK STARTS */

.desk {
    background-image: url(../img/desk-bg.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    height: 93vh;
    text-align: center;
}

.desk__content {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 20px;
    height: 93vh;
}

.desk__content h1 {
    color: white;
    font-size: 40px;
    font-weight: 400;
}

.desk__content p {
    color: white;
}

.desk__content a {
    color: white;
}

/* DESK END */

/* DESIGN STARTS */

.design__title{
    text-align: center;
    margin: 50px 0;
}

.design__title h1{
    font-size: 40px;
    font-weight: 400;
}

.design__title p{
    opacity: .5;
    margin: 30px 20px;
}

.design__title a{
    color: black;
}

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

.desing__parent-child{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 30px;
}

.desing__parent-child h3{
    font-size: 27px;
    font-weight: 400;
}

.desing__parent-child a{
    color: black;
}

/* DESIGN END */

/* PRODUCTS STARTS */

.products__title{
    text-align: center;
    margin: 50px 0;
}

.products__title h1{
    font-size: 40px;
    font-weight: 400;
}

.products__title p{
    opacity: .5;
    margin: 30px 0;
}

.products__dots{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.dot{
    width: 10px;
    height: 10px;
    background: black;
}

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

.products__parent-child p{
    margin-top: 10px;
    opacity: .5;
}

/* PRODUCTS END */

/* office STARTS */

.office {
    background-image: url(../img/office-bg.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    height: 400px;
    text-align: center;
    margin: 100px 0;
}

.office__content {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 20px;
    height: 400px;
}

.office__content h1 {
    color: white;
    font-size: 40px;
    font-weight: 400;
}

.office__content p {
    color: white;
    margin: 0 20px;
}

.office__content a {
    color: white;
}

/* office END */

/* WAY STARTS */

.way__content{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.way__content h1{
    font-size: 35px;
    font-weight: 400;
}

.way__content p{
    width: 700px;
    opacity: .5;
    margin: 30px 0;
}

/* WAY END */

/* WORK STARTS */

.work{
    margin: 50px 0;
}

.work__content{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.work__content h1{
    font-size: 35px;
    font-weight: 400;
}

.work__content p{
    width: 700px;
    opacity: .5;
    margin: 30px 0;
}

.work__content-child{
    display: flex;
    gap: 20px;
    margin-top: 20px;
}

/* WORK END */

/* HOPE STARTS */

.hope__content{
    text-align: center;
}

.hope__content h1{
    font-size: 35px;
    font-weight: 400;
    margin-bottom: 30px;
}

.hope__content a{
    color: black;
}

.hope__content-block{
    color: white;
    background: #9AA8B1;
    margin: 100px 20px;
    height: 400px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    padding: 0 20px;
}

/* HOPE END */

/* MAIN END */

/* ======================= */

/* FOOTER STARTS */

.footer{
    background: #F9F9F9;
}

.footer__head{
    display: flex;
    justify-content: end;
}

.footer__content{
    display: flex;
    gap: 20px;
    padding: 50px 0;
}

.footer__content-list li{
    margin-top: 10px;
    font-size: 22px;
}

.footer__content-list a{
    color: black;
}

.footer__content-block h2{
    font-size: 22px;
    font-weight: 400;
    margin-top: 10px;
}

.footer__content-block p{
    width: 350px;
    opacity: .5;
    margin-top: 20px;
}

.footer__content-block input{
    background: none;
    border: none;
    border-bottom: 2px solid black;
    font-size: 18px;
    width: 330px;
    padding: 5px 10px;
    margin-top: 50px;
}

.footer__list{
    display: flex;
    justify-content: end;
    align-items: center;
    gap: 30px;
    padding: 20px 0;
}

.footer__list a{
    color: black;
    opacity: .6;
    transition: all .2s linear;
}

.footer__list a:hover{
    opacity: 1;
}

/* FOOTER END */