/* 
https://sohrabzia.github.io/ 
2023
*/
html {
    background: url(../img/bg.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

body {
    background: transparent;
}

h4 {
    color: #4f4f4f;
}

.companyName {
    transition: all 3s ease-in-out;
    z-index: 999;
    transform: translateY(20px)scale(30);
    opacity: 0;
  
    animation: fadeUp 1s ease-in-out forwards;
    animation-delay:2s;
}

@keyframes fadeUp {
    60% {
        transform: translateY(0px)scale(0.8);
        opacity: 1;
    }

    70% {
        transform: translateY(0px)scale(1.1);
        opacity: 1;
    }

    100% {
        transform: translateY(0px)scale(1);
        opacity: 1;
    }
}
.companyName h1{
    color: #35a966;
}
.companyName h4 {
    letter-spacing: 2px;
    text-transform: uppercase;
}

.heroText h2 {
    font-size: 40px;
    font-family: arial;
    background-image: linear-gradient(65deg, #41B576 20%, #52AACF 30%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    -moz-background-clip: text;
    -moz-text-fill-color: transparent;
    margin-top: 55px;
    font-weight: bolder;
}

.animatedText {
    font-size: 60px;
    height: 70px;
}

.animatedText img {
    width: 70px;
    transition: all 1.3s ease;
}

.logoMain {
    width: 141px;
    height: auto;
}

.navbar-light .navbar-nav .nav-link {
    color: #ffffff;
    transition: all 0.3s ease;
    margin: 0 11px;
}

.navbar-light .navbar-nav .nav-link:hover {
    transform: translateY(-5px);
    color: #fff;
}

.navContainer {
    width: 100%;
    margin: auto;
    box-shadow: 1px 8px 18px 1px rgb(0 0 0 / 12%);
    background: url(../img/headerBg.svg);
    background-repeat: repeat-x;
    background-size: contain;
    background-color: #35a966;
    //background-blend-mode: multiply;
    animation: scroll 35s ease infinite alternate;
}

@keyframes scroll {
    to {
        background-position: 500px 0;
    }
}

.wawBg {
    position: relative;
}

.moreless-button.text-center.d-block:hover {
    cursor: pointer;
}

.linkHover {
    transition: all 0.3s ease;
}

.linkHover:hover {
    letter-spacing: 3px;
}

.alertGreen {
    background-color: #23CF7C;
    color: #fff;
    border-radius: 5px;
    padding: 5px 10px;
    display: inline-block;
    font-size: 30px;
}

.heroSecton {
    position: relative;
}

.heroSecton:after {
    content: "";
    position: absolute;
    background: url(../img/fisherBoat.svg);
    right: 74px;
    top: 88px;
    width: 414px;
    height: 331px;
    background-size: contain;
    background-repeat: no-repeat;
    z-index: -1;
}

.font-weight-800 {
    font-weight: 800;
}

.owl-nav button {
    top: 43%;
    position: absolute;
}

.owl-nav .owl-prev, .owl-nav .owl-next {
    font-size: 41px !important;
    color: #81C19C !important;
}

.owl-nav .owl-prev {
    left: -17px;
}

.owl-nav .owl-next {
    right: -17px;
}

#ourBrands .owl-nav button {
    top: 28%;
    position: absolute;
    font-size: 29px !important;
}

p {
    color: #608A63;
    font-size: 18px;
}

a {
    color: #608A63;
}

a:hover {
    color: #53AB5B;
}


h1,h2,h3 {
    color: #067233;
}

.nav-pills .nav-item {
    transition: all 0.3s ease;
}

.nav-pills .nav-item:hover {
    background-color: #ddffde;
    border-radius: 100px;
}

.nav-pills .nav-link {
    border-radius: 100px;
    padding: 2px 8px;
    font-size: 18px;
}

.nav-pills .nav-link.active, .nav-pills .show>.nav-link {
    background-color: #35A966;
}

.nav-pills .nav-link {
    color: #58605B;
}

.tab-content img {
    transition: all 0.3s ease;
    border: 1px solid #ececec;
}

.tab-content img:hover {
    box-shadow: 2px 2px 15px 1px #cfbf9e70 !important;
    transform: scale(1.5);
    background-color: white;
    padding: 5px;
}

.contactUs p {
    color: #575757;
}

.findUsOn {
    background: url('../img/skyline.svg');
    background-repeat: repeat-x;
    background-size: contain;
    /* background-position: center; */
}

.findUsOn a {
    transition: all 0.3s ease;
}

.findUsOn a:hover {
    transform: translateY(-5px);
}

footer {
    background-color: #53CB94;
}

footer span {
    color: #fff;
}

.modal-body p {
    font-size: 16px;
    color: #3E3C3C;
}

.modal-header {
    background-color: #35A966;
}

.modal-title {
    color: #fff;
}

.moretext {
    display: none;
}

a.text-decoration-none {
    font-weight: 800;
    font-style: oblique;
}

@media(max-width: 1080px) {
    .heroSecton:after {
        right: -24px;
        top: 147px;
        width: 301px;
        height: 331px;
    }
}

@media(max-width: 768px) {
    .companyName h1 {
        font-size: 38px;
    }

    .owl-nav i {
        font-size: 26px;
    }

    .tab-content img:hover {
        transform: scale(1);
    }

    .heroSecton {
        overflow: hidden;
    }

    .container {
        width: 95%;
    }

    .navContainer {
        width: 100%;
        background-size: cover;
    }

    .heroSecton:after {
        right: -54px;
        top: 116px;
        width: 259px;
        height: 347px;
    }

    .heroSecton img {
        padding: 10px;
    }

    ul.navbar-nav.mx-auto {
        display: inline-block;
    }

    .navbar-nav li.nav-item {
        display: inline-block;
        float: left;
        margin: 2px;
    }
}

@media(max-width: 575px) {
    .heroText h2 {
        font-size: 23px;
        margin-bottom: 20px;
        margin-top: 25px;
    }

    .logoMain {
        width: 94px;
    }

    .navbar-light .navbar-nav .nav-link {
        margin: 0 5px;
        letter-spacing: -1px;
    }

    .alertGreen {
        font-size: 20px;
    }

    .heroSecton:after {
        right: -35px;
        top: 80px;
        width: 239px;
        height: 347px;
    }

    .nav-pills .nav-link {
        border-radius: 100px;
        padding: 5px 9px;
        font-size: 17px;
    }

    .findUsOn img {
        max-width: 100%;
    }
}
    