@import url('https://fonts.googleapis.com/css2?family=Merriweather+Sans:ital,wght@0,300..800;1,300..800&display=swap');

p {
    font-family: "Merriweather Sans", sans-serif;
    font-style: normal;
    font-weight: lighter;
}

h1,h2,h3,h4,h5,h6 {
    font-family: "Merriweather Sans", sans-serif;
    font-style: normal;
    font-weight: bold;
}

/* Universal styles */
html, body {
    height: 100%;
    margin: 0;
}
body {
    display: flex;
    flex-direction: column;
}

nav,
footer p,
.landing-content,
.landing  {
    max-width: 1300px;
    margin: 0 auto;
}

.bg {
    background-size: cover;
    width: 100%;
}
.heading-blue {
    color: #007180;
}
.sub-orange {
    color: #D66918;
}
p {
    line-height: 170%;
}
.side-image {
    width: 100%;
}
/* Allows fullscreen withot scroll */
.landing-content {
    flex-grow: 1;
    display: flex;
    align-items: center;
    height: 100%;
}
.cnt {
    border: 2px solid #D66918;
    text-decoration: none;
    color: #007180;
}
.cnt:hover{
    background-color: #D66918;
    color: #fff
}
.line {
    color: #007180;
    border-width: 3px;
    opacity: 1;
}

/* Removes margin/padding of P to align text*/
.row .col-lg-10 p {
    margin-top: 0; 
    margin-bottom: 0; 
    line-height: 170%; 
}





/*------Nav Bar---------
----------------------*/
#logo {
    width: 150px;
}
nav {
    padding: 1rem !important;
}
.navbar {
    flex-shrink: 0;
}

.nav-item.dropdown .dropdown-menu {
  display: block;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-20px);
  transition: opacity 0.3s, transform 0.3s, visibility 0.3s;
  border-radius: 0;
  border: none;
}
.nav-item.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.nav-link {
    color: #007180;
    text-transform: uppercase;
    font-family: "Merriweather Sans", sans-serif;
    font-style: normal;
    font-weight: bold;
}
.dropdown-item {
    text-transform: uppercase;
}
.nav-link:hover {
    color: #D66918;
}
.dropdown-menu .dropdown-item:hover {
    color: #D66918;
}
/* Remove drop down arrow*/
.dropdown-toggle::after {
    display: none;
}
.dropdown-item {
    color: #D66918;
}
.dropdown-item:hover {
    color: #007180 !important;
}
.dropdown-item:active {
    background-color: transparent;
}

/*------Home Page------
----------------------*/
.bg-home {
    background-image: url(../images/Home-Page-opt.jpg);
}

/*------About Page------
----------------------*/
.bg-about {
    background-image: url(../images/about-bg-opt.jpg);
}

/*------Actchem page------
----------------------*/
.bg-actchem {
    background-image: url(../images/actchem-bg-opt.jpg);
}

/*------Actsil page------
----------------------*/
.bg-actsil {
    background-image: url(../images/actsil-bg-opt.jpg);
}
/*------Product page------
----------------------*/
.bg-product {
    background-image: url(../images/products-bg-opt.jpg);
}
.product-txt {
    width: 100%;
}

/*------Contact page------
----------------------*/
.bg-contact {
    background-image: url(../images/contact-bg.jpg);
}
.cnt-txt, .cnt-txt-location {
    width: 100%;
}
.email-hover:hover {
    color: #D66918 !important;
}




/*------Footer---------
----------------------*/
footer {
    background-color: #007180;
}
footer p {
    color: #fff;
}

/*------Ipad--------
----------------------*/
@media (min-width: 700px) {
    /* Universal styles */
    .landing-content {
        height: 90vh;
    }

    .product-txt {
        width: 50%;
    }

    /*------Contact page------
----------------------*/
.bg-contact {
    background-image: url(../images/contact-opt.jpg);
}
.cnt-txt {
    width: 50%;
}
.cnt-txt-location {
    width: 44%;
}



}


/*------Desktop--------
----------------------*/
@media (min-width: 1200px) {
    /* Universal styles */
    .w-85 {
        width: 85%;
    }
    .w-custom {
        width: 55%; 
        margin: 0 auto;
    }
    .bg-full {
        height: 100%;
    }
    /*------Nav Bar---------
    ----------------------*/
    #logo {
        width: 200px;
    }
    .contact-nav {
        border: 2px solid #D66918;
    }
    .contact-nav:hover {
        background-color: #D66918;
        color: #fff;
    }


    .landing-content {
        height: 100%;
    }

}

/*------Desktop xl--------
----------------------*/
@media (min-width: 1800px) {
    /* Universal styles */
    .bg-white {
        padding: 2rem;
    }

}

