
* {
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-style: normal;
    box-sizing: border-box;
}

body {
    margin: 0px;
}

.container {
    max-width: 1400px;
    margin: auto;
    padding-left: 30px;
    padding-right: 30px;
}

.topBar {
    background-color: #96BF0D;
    color: white;
    padding: 8px 0px;
}

a {
    color: #96BF0D;
}

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

.topBar .contactInfoTop {
    display: flex;
}

.contactInfoTop .email, .contactInfoTop .phone {
    justify-content: center;
    align-items: center;
    display: flex;
}

.contactInfoTop .email img, .contactInfoTop .phone img {
    margin-right: 8px;
    margin-top: 8px;
}

.topBar a {
    color: white;
    text-decoration: none;
}

.navList  a {
    font-weight: 500;
    color: black;
}

.navList  a:hover {
    color:#96BF0D;
    transition: 0.1s all;
}

.contactInfoTop .email {
    margin-right: 20px;
}

.mainNavigation  ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    overflow: hidden;
}

.mainNavigation  li {
    float: left;
}

.mainNavigation .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 30px;
}
.mainNavigation .container .logo {
    margin-top: 10px;
}

.mainNavigation  li a {
    display: block;
    text-align: center;
    text-decoration: none;
    margin-left: 20px;
}

.mainHeroBG {
    width: 100%;
    height: 700px;
    background-image: url("../img/background2.jpg"), linear-gradient(rgba(0,0,0,0.55),rgba(0,0,0,0.55));
    background-blend-mode: overlay;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    color: white;
}

.mainHeroBG .container {
    display: flex;
    height: 100%;
    align-items: center;
}

.mainHeroBG h1 {
    margin-top: 0px;
    font-size: 60px;
    line-height: 1em;
    font-weight: 600;
    max-width: 550px;
    margin-bottom: 0px;
}

.mainHeroBG h2 {
    font-size: 20px;
    font-weight: 300;
    line-height: 1.2em;
}

.mainHeroBG .overlayText {
    max-width: 700px;
}

.mainHeroBG .btnMain {
    background-color: #96BF0D;
    color: white;
    text-decoration: none;
    padding: 12px 30px;
    border-radius: 6px;
    width: 325px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 40px;
}

.mainHeroBG .btnMain .btnIcon {
    margin-right: 15px;
    margin-top: 6px;
    width: 16px;
}

.mainHeroBG .btnMain:hover {
    background-color: #1d1d1d;
    transition: 0.3s all;
}

.mainHeroBG a, .itemList a, .contactInfo a {
    text-decoration: none;
}

.itemList {
    display: flex;
}

.itemList .singleItem {
    background-color: #96BF0D;
    color: white;
    text-decoration: none;
    padding: 12px 30px;
    border-radius: 6px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    margin-bottom: 10px;
}

.itemList .singleItem:hover {
    background-color: #1d1d1d;
    transition: 0.3s all;
}

.itemList .singleItem img {
    height: 22px;
    margin-right: 10px;
    margin-top: 6px;
}

.itemList {
    display: flex;
    flex-wrap: wrap;
}

.bodyContent {
    display: flex;
    align-items: flex-start;
    margin-top: 50px;
    margin-bottom: 100px;
}

.contactInfo {
    background-color: #F6F6F6;
    padding: 40px;
    border-radius: 12px;
    max-width: 400px;
    margin-left: 100px;
}

.contactInfo h3 {
    margin: 0px;
    font-weight: 600;
}

.contactInfo p {
    font-weight: 300;
}

.contactInfo .companyName {
    font-weight: 600;
}

.contactInfo a {
    display: block;
}

.descFull p {
    font-weight: 300;
}

footer {
    background-color: #96BF0D;
    color: white;
    width: 100%;
    text-align: center;
    padding: 10px 0px;
}

footer p {
    font-weight: 300;
    margin-top: 0px;
    margin-bottom: 0px;
}

.branding {
    margin-top: 30px;
}

.branding img {
    width: 180px;
}

.branding p {
    margin-top: 0px;
}

@media screen and (max-width: 1040px) {
    .singleItem {
        width: 100%;
    }

}


@media screen and (max-width: 767px) {
    .container.bodyContent {
        flex-direction: row;
        flex-wrap: wrap;
    }
    .topBar a {
        font-size: 13px;
    }
    
.topBar {
    padding: 5px 30px;
}
    
    .container.bodyContent .contactInfo {
        width: 100%;
        margin-left: 0px;
        margin-top: 30px;
    }

    .mainContent{
        width: 100%;
    }

    .mainNavigation .logo img {
        width: 150px;
        margin-top: 10px;
    }

    .mainHeroBG h1 {
        font-size: 40px;
    }

    .mainHeroBG h2 {
        font-size: 16px;
    }

    .mainHeroBG {
        height: 400px;
    }

    .navList, .slogan {
        display: none;
    }
    .mainNavigation .container{
        justify-content: center;
    }
    .contactInfoTop {
        justify-content: space-between;
    }
    .topBarContent {
        display: initial;
    }
    .topBar .container {
        padding: 0px;
    }

    .mainHeroBG .btnMain {
        padding: 8px 20px;
    }
}
