body {
    display: flex;
    margin: 0;
    padding: 0%;
    overflow-x: hidden;
}

img {
    margin-top: 15px;
    margin-left: 20px;
}

.navbar {
    position: fixed;
    z-index: 1000;
    width: 100%;
    height: 160px;
    background-color: rgb(255, 255, 255);
}

nav {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 1.2rem;
    display: flex;
    justify-content: right;
    margin-right: 114px;
    margin-top: -82px;

    a {
        position: relative;
        text-decoration: none;
        margin-left: 30px;
        color: #177bb6;
    }

    a.nav {
        &::after {
            content: '';
            position: absolute;
            width: 100%;
            height: 3px;
            background: #2ea5e4;
            border-radius: 6px;
            left: 0;
            bottom: -6px;
            transform: scaleX(0);
            transform-origin: right;
            transition: transform 0.5s ease-in-out;
        }

        &:hover::after {
            transform-origin: left;
            transform: scaleX(1);
        }
    }
}

.home {
    display: flex;
    justify-content: center;
    height: 100vh;
    width: 100vw;
    background-image: url(water.png);
    background-repeat: no-repeat;
    background-size: cover;
}

.mission {
    --min-height: 225px;
    margin-top: 200px;
    --overflow-wrap: break-word;
    width: 900px;
    font-size: 30px;
    font-family: Arial, Helvetica, sans-serif;
    text-align: justify;
    color: #177bb6;
}

.story {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 120vh;
    width: 100vw;
    background-image: linear-gradient(to right, #a9b9d8 1%, #a5cde8, #daeaf8, #e8f3fc, #e9f3fc);
    background-repeat: no-repeat;
    background-size: cover;
}

.oursto {
    justify-content: center;
    width: 1200px;
    text-align: justify;
    --min-height: 225px;
    margin-top: 200px;
    --overflow-wrap: break-word;
    font-size: 28px;
    font-family: Arial, Helvetica, sans-serif;
    transform: translateY(-100px);
    color: #177bb6;
}

#btnsto {
    margin-top: 50px;
    width: 120px;
    height: 60px;
    border-radius: 10px;
    cursor: pointer;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 20px;
    border: none;
    color: whitesmoke;
    background-image: linear-gradient(50deg, purple 30%, #0c6eaf);
    transition: background-image 0.5s ease;
    background-size: 180%;
    background-position: right;
    opacity: 80%;
    transition: background-position 0.5s ease;

    &:hover {
        background-position: left;
    }
}

#btnprod {
    transform: translateX(22px);
    width: 150px;
    height: 60px;
    border-radius: 10px;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 20px;
    border: none;
    cursor: pointer;
    color: whitesmoke;
    background-image: linear-gradient(50deg, purple 30%, #0c6eaf);
    transition: background-image 0.5s ease;
    background-size: 180%;
    background-position: right;
    opacity: 80%;
    transition: background-position 0.5s ease;

    &:hover {
        background-position: left;
    }
}

.prod {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 120vh;
    width: 100vw;
    background-color: #f0f8ff;
    background-repeat: no-repeat;
    background-size: cover;
}

.ourpro {
    width: 1200px;
    /* text-align: justify; */
    --min-height: 225px;
    margin-top: 200px;
    --overflow-wrap: break-word;
    font-size: 28px;
    font-family: Arial, Helvetica, sans-serif;
    transform: translateY(-88px);
    color: #177bb6;

    img {
        display: flex;
        margin-top: 0px;
        margin-left: 0px;
        margin-bottom: 0px;
        margin-right: 0px;
        justify-content: left;
        height: 70%;
        width: 60%;
        transform: translateX(-50px) translateY(90px);
    }

    #para {
        display: flex;
        justify-content: right;
    }

    p {
        width: 50%;
    }

    h1 {
        margin-left: 425px;
    }

    span {
        font-weight: bold;
    }
}

h1 {
    display: flex;
    margin-left: 450px;
}

#ocn {
    width: 100%;
    height: 500px;
    margin-left: -10px;
    margin-top: -10px;
}

div.img {
    height: 490px;
}

.enquiry {
    display: flex;
    height: 500px;
    background-color: #0c6eaf;
    justify-content: center;
    /* align-items: center; */
}

#box {
    margin-top: 50px;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 28px;

    h1 {
        color: whitesmoke;
        margin-left: 0px;
        margin-bottom: -10px;
    }

    p {
        color: whitesmoke;
        margin-left: 45px;
    }

    button {
        width: 150px;
        height: 60px;
        border-radius: 10px;
        font-family: Arial, Helvetica, sans-serif;
        font-size: 20px;
        border: none;
        cursor: pointer;
        color: whitesmoke;
        margin-left: 180px;
        border: 2px solid white;
        background-color: transparent;

        i {
            margin-left: 5px;
        }
    }
}