*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

nav{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 150px;
}

.links a{
    color: hsl(236, 13%, 42%);
    text-decoration: none;
    font-family: "Inter", sans-serif;

}

.links{
    display: flex;
    align-items: center;
    gap: 36px;
}

img{
    width: 100%;
}

.menu_open{
    display: none;
}

section{
    display: grid;
    padding: 24px 150px;
    grid-template-columns:repeat(3, 1fr) ;
    grid-template-rows: auto auto 136px;
    gap: 32px;
    grid-template-areas: 
    "a a b"
    "c d b"
    "e f g";
}


.Image_1{
    grid-area: a;
}

.content_text{
    grid-area: b;
}

.main_text{
    grid-area: c;
}

.sub_text{
    grid-area: d;
}

.card1{
    grid-area: e;
}
.card2{
    grid-area: f;
}
.card3{
    grid-area: g;
}


.content_text{
    display: flex;
    flex-direction: column;
    height: 100%;
    background-color: hsl(240, 100%, 5%);
    font-family: "Inter", sans-serif;
    padding: 24px 16px;
    gap: 36px;
}

.content_text h1{
    color: hsl(35, 77%, 62%);
    font-size: 36px;
}

.text{
    display: flex;
    flex-direction: column;
    gap: 8px;
    
}

.text h2{
    color: white;
    font-size: 18px;
    
}

.text p{
    color: hsl(236, 13%, 42%);
    font-size: 15px;
    line-height: 1.6;
}

.main_text h1{
    font-size: 62px;
    font-family: "Inter", sans-serif;
    line-height: 1;
}

.sub_text{
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 24px;
    align-items: start;
     font-family: "Inter", sans-serif;
}

.sub_text p{
    font-size: 16px;
    line-height: 1.6;
    color:hsl(236, 13%, 42%) ;

}

button{
    padding: 12px 24px ;
    background-color: hsl(240, 100%, 5%);
    color: white;
    text-transform: uppercase;
    font-family: "Inter", sans-serif;
    border: none;
    letter-spacing: 3px;
    font-size: 14px;
}

.card1{
    display: flex;
    gap: 18px;
    object-fit: cover;
}
.card2{
    display: flex;
    gap: 18px;
    object-fit: contain;
}

.card_image{
    object-fit: cover;
    height: 136px;
}

.card3{
    display: flex;
    gap: 18px;
}


.card_text{
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    font-family: "Inter", sans-serif;
}

.card_text h1{
    font-size: 36px;
    color: hsl(5, 85%, 63%);
}

.card_text h3{
    font-size: 18px;
    color: hsl(240, 100%, 5%);
    font-weight: 800;
}


.card_text p{
    font-size: 16px;
    color: hsl(236, 13%, 42%);
    font-weight: 400;
    line-height: 1.6;
}

.pc{
    height: 136px;
    width: 107.25px;
}



@media screen and (max-width:375px) {
    nav{
        padding: 24px 16px;
    }
    a{
        display: none;
    }
    .menu_open{
        display: block;
    }

    section{
        grid-template-columns: 1fr;
        grid-template-areas: 
        "a"
        "b"
        "c"
        "d"
        "e"
        "f"
        "g";
        padding: 24px 16px;
        gap: 24px;
    }

    .sub_text{
        margin-top: 42px;
    }

}

picture{
    width: 100%;
}