* {
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
}

.header {
    min-height: 100vh;
    width: 100%;
    background-image: linear-gradient(rgba(243, 139, 2, 0.404), rgba(243, 139, 2, 0.404)), url(/Images/Banner.jpg);
    background-position: center;
    background-size: cover;
    position: relative;
}

nav {
    display: flex;
    padding: 2% 6%;
    justify-content: space-between;
    align-items: center;
}

nav img {
    width: 150px;
}

.nav-links {
    flex: 1;
    text-align: right;
}

.nav-links ul li {
    list-style: none;
    display: inline-block;
    padding: 8px 12px;
    position: relative;
}

.nav-links ul li a {
    color: #f44336;
    text-decoration: none;
    font-size: 13px;
}

.nav-links ul li::after {
    content: " ";
    width: 0%;
    height: 2px;
    background: #f44336;
    display: block;
    margin: auto;
    transition: 0.5s;
}

.nav-links ul li:hover::after {
    width: 100%;
}

.text-box {
    width: 90%;
    color: #f44336;
    position: absolute;
    top: 60%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.text-box h1 {
    font-size: 62px;
}

.text-box P {
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    margin: 10PX 0 40px;
    font-size: 14PX;
    color: #f44336;
    line-height: 2;
}

.hero-btn {
    display: inline-block;
    text-decoration: none;
    color: #f44336;
    border: 1px solid #f44336;
    padding: 12px 34px;
    font-size: 13px;
    background: transparent;
    position: relative;
    cursor: pointer;
}

.hero-btn:hover {
    border: 1px solid #fff;
    background: #f44336;
    transition: 1s;
    color: #fff;
}

nav .fa-solid {
    display: none;
}
.slide-left{
animation: slideleft 2s linear forwards;
}
@keyframes slideleft{
    0%{
        transform: translate(100px);
        opacity: 0;
    }
    100%{
        transform: translate(0px);
        opacity: 1;
    }
}

@media(max-width:700px) {
    .text-box h1 {
        font-size: 30px;
    }

    .nav-links ul li {
        display: block;
    }

    .nav-links {
        position: fixed;
        background: #fff;
        height: 100vh;
        width: 200px;
        top: 0;
        right: -200px;
        text-align: left;
        z-index: 2;
        transition: 1s;
    }

    nav .fa-solid {
        display: block;
        color: #f44336;
        margin: 10px;
        font-size: 22px;
        cursor: pointer;
    }

    .nav-links ul {
        padding: 30px;
    }

}

/* About Us */
.sub-header {
    height: 30vh;
    width: 100%;
    background-image: linear-gradient(rgba(4, 9, 30, 0.7), rgba(4, 9, 30, 0.7)), url(/Images/About\ head.png);
    background-position: center;
    background-size: cover;
    text-align: center;
    color:#fff;
}

.about-us {
    background-color: rgba(207, 252, 237, 0.801);
    width: 100%;
    margin: auto;
    padding-top: 50px;
    padding-bottom: 15px;
}

.row {
    display: flex;
}

.about-col {
    flex-basis: 48%;
    padding: 30px 25px;
}

.about-col img {
    width: 100%;
}

.about-col h1 {
    padding-top: 0;
}

.about-col p {
    padding: 15px 0 25px;
}
@media(max-width:700px){
    .row {
        display:block;
    }
}
.products {
    width: 90%;
    margin: auto;
    text-align: center;
    padding-top: 50px;
}

.product-col {
    flex-basis: 31%;
    border-radius: 10px;
    margin-bottom: 5%;
    text-align: left;
}

.product-col img {
    width: 100%;
    border-radius: 10px;
}

.product-col p {
    padding: 0;
}

.product-col h3 {
    margin-top: 10px;
    margin-bottom: 15px;
    text-align: left;
}
.products .row{
    column-gap: 20px;
    margin-top: 20px;
}
.product-col:hover{
   color: #f44336;
}

.cta {
    margin: 50px auto;
    width: 80%;
    background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url(/Images/banner2.jpg);
    background-position: center;
    background-size: cover;
    border-radius: 10px;
    text-align: center;
    padding: 100px 0;
}

.cta h1 {
    color: #fff;
    margin-bottom: 40px;
    padding: 0;
}

@media(max-width: 700px) {
    .cta h1 {
        font-size: 24px;
    }

}
footer{
    position: relative;
    width: 100%;
    background: #f44336;
    min-height: 100px;
    padding: 20px 0px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
footer .social-icons {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 10px 0;
    flex-wrap: wrap;
}
footer .social-icons li {
    list-style: none;
}
footer .social-icons li a{
    font-size: 2em;
    color: #fff;
    margin: 0 10px;
    display: inline-block;
    transition: 0.5s;
}
footer .social-icons li:hover{
    transform: translateY(-10px);
}
footer .menu{
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 10px 0;
    flex-wrap: wrap;
}
footer .menu li{
    list-style: none;
}
footer .menu li a{
    font-size: 1.2em;
    color: #fff;
    margin: 0 10px;
    display: inline-block;
    text-decoration: none;
    opacity: 0.5;
}
.menu li a:hover{
    opacity: 1;
}
footer p{
    color: #fff;
    font-family:Verdana, Geneva, Tahoma, sans-serif;
    justify-content: center;
    align-items: center;
}
.flice-product {
    /* background-color: bisque; */
    background-image:  url(/Images/Flice\ Banner.jpg);
    width: 100%;
    margin: auto;
    padding-top: 50px;
    padding-bottom: 15px;
}

.flice-product .row {
    display: flex;
}

.flice-col {
    /* flex-basis:auto; */
    padding: 30px 25px;
}

.flice-col img {
    width: 100%;
}

.flice-col h1 {
    padding-top: 0;
}

.flice-col p {
    padding: 15px 0 25px;
}
@media(max-width:700px){
    .flice-product .row {
        display:block;
    }
}

.gutsan-product {
    /* background-color: rgba(177, 250, 250, 0.63); */
    background-image:  url(/Images/Gutsan\ Banner.jpg);
    width: 100%;
    margin: auto;
    padding-top: 50px;
    padding-bottom: 15px;
}

.gutsan-product .row {
    display: flex;
}

.gutsan-col {
    /* flex-basis:100vw; */
    padding: 30px 25px;
}
.gutsan-col2{
    padding: 30px 25px;
}

.gutsan-col img {
    width: 100%;
}

.gutsan-col h1 {
    padding-top: 0;
}

.gutsan-col p {
    padding: 15px 0 25px;
}
@media(max-width:700px){
    .gutsan-product .row {
        display:block;
    }
}
.immusan-product {
    /* background-color: bisque; */
    background-image:  url(/Images/Immusan\ Banner.jpg);
    width: 100%;
    margin: auto;
    padding-top: 50px;
    padding-bottom: 15px;
}

.immusan-product .row {
    display: flex;
}

.immusan-col {
    /* flex-basis:auto; */
    padding: 30px 25px;
}

.immusan-col img {
    width: 100%;
}

.immusan-col h1 {
    padding-top: 0;
}

.immusan-col p {
    padding: 15px 0 25px;
}
@media(max-width:700px){
    .immusan-product .row {
        display:block;
    }
}
.sanlyte-product {
    /* background-color: bisque; */
    background-image:  url(/Images/Sanlyte\ Banner.jpg);
    width: 100%;
    margin: auto;
    padding-top: 50px;
    padding-bottom: 15px;
}

.sanlyte-product .row {
    display: flex;
}

.sanlyte-col {
    flex-basis: 48%;
    padding: 30px 25px;
}

.sanlyte-col img {
    width: 100%;
}

.sanlyte-col h1 {
    padding-top: 0;
}

.sanlyte-col p {
    padding: 15px 0 25px;
}
@media(max-width:700px){
    .sanlyte-product .row {
        display:block;
    }
}
.sanresp-product {
    /* background-color: bisque; */
    background-image:  url(/Images/Sanresp\ Banner.jpg);
    width: 100%;
    margin: auto;
    padding-top: 50px;
    padding-bottom: 15px;
}

.sanresp-product .row {
    display: flex;
}

.sanresp-col {
    flex-basis: 48%;
    padding: 30px 25px;
}

.sanresp-col img {
    width: 100%;
}

.sanresp-col h1 {
    padding-top: 0;
}

.sanresp-col p {
    padding: 15px 0 25px;
}
@media(max-width:700px){
    .sanresp-product .row {
        display:block;
    }
}
.location{
    width: 80%;
    margin: auto;
    padding: 80px 0;
}
.location iframe{
    width: 100%;
}
.contact-us{
    width: 80%;
    margin: auto;
}
.contact-col{
    flex-basis: 48%;
    margin-bottom: 30px;
}
.contact-col div{
    display: flex;
    align-items: center;
    margin-top: 40px;
}
.contact-col div .fa-solid{
    font-size: 28px;
    color: #f44336;
    margin: 10px;
    margin-right: 30px;
}
.contact-col div p{
    padding: 0;
}
.contact-col div h5{
    font-size: 20px;
    margin-bottom: 5px;
    color: #555;
    font-weight: 400;
}
.contact-col input, .contact-col textarea{
    width: 100%;
    padding: 15px;
    margin-bottom: 17px;
    outline: none;
    border: 1px solid #ccc;
    box-sizing: border-box;
}