
* {
    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: #db2415;
    color: white;
    padding: 8px 0px;
}

a {
    color: #db2415;
}

.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:#db2415;
    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;
    margin-left: 30px;
}

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

.logo img {
    max-width: 348px;
}

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

.mainHeroBG {
    width: 100%;
    height: 700px;
    background-image: url("../img/background.png"), linear-gradient(rgba(0,0,0,0.7),rgba(0,0,0,0.7));
    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: 55px;
    line-height: 1em;
    font-weight: 600;
    max-width: 630px;
    margin-bottom: 0px;
}

h3 {
    font-weight: 600;
}

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

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

.mainHeroBG .btnMain {
    background-color: #db2415;
    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: 26px;
}

.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: #db2415;
    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;
    min-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: #db2415;
    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;
}

.mainContent {
    flex: 1;
}

.mainDesc iframe {
    border: 1px solid #d9d9d9;
    padding: 10px;
    border-radius: 6px;
}

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

}


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

    .mainContent{
        width: 100%;
    }

    .mainNavigation .logo img {
        width: 150px;
        margin: auto;
    }

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

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

    .mainHeroBG {
        height: 600px;
    }

    .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;
    }

    .mainNavigation .container .logo {
        margin: auto;
        text-align: center;
    }
}


.dropdown-content .active {
    color: #db2415;
}

.singleCategory, .singleCategory .mainContent {
    width: 100%;
}

.singleTopBar {
    border-bottom: 1px solid rgb(226, 226, 226);
}
  
/* Dropdown button */
.dropdown .dropbtn {
    border: none;
    outline: none;
    background: white;
    font-weight: 500;
    color: black;
    font-size: 16px;
    cursor: pointer;
}

.dropdown a {
    margin-left: 0px !important;
    text-align: left !important;
}

.dropdown .dropbtn:hover {
    color: #db2415;
}


/* Dropdown content (hidden by default) */
.dropdown-content {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
}

/* Links inside the dropdown */
.dropdown-content a {
    float: none;
    color: black;
    padding: 8px 16px;
    text-decoration: none;
    display: block;
    text-align: left;
}

/* Add a grey background color to dropdown links on hover */
.dropdown-content a:hover {
    background-color: #ddd;
    color: #db2415;
}

/* Show the dropdown menu on hover */
.dropdown:hover .dropdown-content {
    display: block;
}