* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

@font-face {
    font-family: sora-thin;
    src: url(../sora-3/Sora-Thin.ttf);
}

@font-face {
    font-family: sora-extra-light;
    src: url(../sora-3/Sora-ExtraLight.ttf);
}

@font-face {
    font-family: sora-light;
    src: url(../sora-3/Sora-Light.ttf);
}

@font-face {
    font-family: sora-regular;
    src: url(../sora-3/Sora-Regular.ttf);
}

@font-face {
    font-family: sora-semibold;
    src: url(../sora-3/Sora-SemiBold.ttf);
}

@font-face {
    font-family: sora-bold;
    src: url(../sora-3/Sora-Bold.ttf);
}

@font-face {
    font-family: sora-extrabold;
    src: url(../sora-3/Sora-ExtraBold.ttf);
}

a {
    text-decoration: none;
}

:root {
    /* *********color************ */
    --white-color: #ffffff;
    --blue-color: #09283B;
    --light-yellow: #FDB168;
    --light-grey: #747E84;
    --dark-yelllow: #F07905;
    --black-color: #000000;
    --darker-yelllow: #d87008;
    /* ***********font********** */
    --sora-thin: sora-thin;
    --sora-extra-light: sora-extra-light;
    --sora-light: sora-light;
    --sora-regular: sora-regular;
    --sora-semibold: sora-semibold;
    --sora-bold: sora-bold;
    --sora-extrabold: sora-extrabold;
}

.menuDiv {
    max-width: 100%;
    height: 15vh;
    flex-shrink: 1;
    /* background-color: aqua; */
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding: 0rem 4rem;
}

.ContactDiv {
    width: 15%;
    height: 15vh;
    flex-shrink: 1;
    background-color: rgb(7, 41, 56);
    display: flex;
    justify-content: center;
    align-items: center;
}

.ContactDiv h3 {
    color: #fff;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: 600;
}

a {
    text-decoration: none;
    font-weight: 600;
}

.blogPostArea {
    width: 100%;
    min-height: 100vh;
    background-color: #fff;
    padding: 7rem 5rem;

}

.blogLogoDiv {
    min-width: 10rem;
    min-height: 7rem;
    /* background-color: brown; */
    display: flex;
    flex-direction: column;
    justify-self: flex-start;
    align-self: center;
    margin-left: 5rem;
}

.blogLink {
    display: flex;
}

.blogsLogo {
    color: #fff;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: 600;
    font-size: 3rem;
    margin-top: 1rem;
}

.blogmenu {
    color: #fff;
}



.gridDiv {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, auto));
    /* background-color: aqua; */
    gap: 5.3rem;
    padding-block: min(10vh, 10rem);
    padding-left: 6%;
    padding-right: 6%;

}

.post {
    min-height: 80vh;
    border-radius: 11px;
    display: flex;
    background-image: url(../Images/Rectangle\ 16.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    align-items: flex-end;

}
.blog1{
    background-image: url(../Images/portrait-engineers-work-hours-job-site\ \(1\).jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
.blog2{
    background-image: url(../Images/engineer-cooperation.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
.blog3{
    background-image: url(../Images/portrait-engineers-work-hours-job-site\ \(2\).jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
.blog4{
    background-image: url(../Images/q2.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
.blog5{
    background-image: url(../Images/images\ \(13\).jfif);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
.blog6{
    background-image: url(../Images/Compressed-Natural-Gas.jpeg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
.postText {
    background-color: rgb(7, 41, 56);
    width: 70%;
    padding: 1rem;
    min-height: 6rem;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    border-bottom-left-radius: 11px;
}

.postText h4 {
    font-family: var(--sora-light);
    font-weight: 600;
    font-size:105%;
    color: #fff;
    line-height: 1.5rem;
}

@media(max-width:750px) {
    .gridDiv {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(200px, auto));
        padding-block: min(10vh, 10rem);
        padding-left: 5%;
        padding-right: 5%;
    }

    .menuDiv {
        display: none;
    }
}

@media(max-width:800px) {
    .ContactContainer {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        align-items: center
    }

    .CompanyInfo {
        margin-top: 2rem;
        width: 80%;
    }

    .logoRow {
        width: 15px;
        height: 10px;

    }

    .contactSection h2 {
        font-size: 20px;
    }
}
@media(max-width:635px){
    .InfoRow{
        width: 100%;
    }
}