﻿
/*====================================
        HERO
====================================*/

.hero {
    background: linear-gradient(135deg, #006837, #00a44c, #029245);
    color: #fff;
    position: relative;
    overflow: hidden;
    padding: 150px 0px 0px;
    background-image: url(../img/bg/1.jpg);
    background-size: cover;
    background-repeat: no-repeat;
}

    .hero::before {
        content: "";
        position: absolute;
        width: 500px;
        height: 500px;
        background: rgba(255,255,255,.08);
        border-radius: 50%;
        top: -180px;
        right: -180px;
    }

    .hero .row {
        min-height: 650px;
    }

.tag {
    display: inline-block;
    background: rgba(255,255,255,.15);
    padding: 10px 20px;
    border-radius: 50px;
    margin-bottom: 20px;
}

    .tag i {
        margin-right: 8px;
    }

.hero h1 {
    font-size: 58px;
    font-weight: 800;
    margin-bottom: 10px;
    margin-top: 10px;
}

.hero p {
    font-size: 18px;
    line-height: 1.9;
    margin-bottom: 5px;
}

.hero-img {
    animation: float 4s ease-in-out infinite;
}

.btn-explore {
    background: #fff;
    color: #0077b6;
    padding: 14px 35px;
    border-radius: 50px;
    font-weight: 600;
}

    .btn-explore:hover {
        background: #023e8a;
        color: #fff;
    }


/*====================================
        ACTIVITIES
====================================*/

.activities {
    background: #fff;
    padding: 50px 0px;
}
.activity-card {
    background: #fff;
    border-radius: 20px;
    padding: 35px;
    text-align: center;
    box-shadow: 0 15px 40px rgba(0,0,0,.08);
    transition: .4s;
    height: 100%;
}

    .activity-card:hover {
        transform: translateY(-10px);
    }

    .activity-card i {
        font-size: 45px;
        color: #056b3b;
        margin-bottom: 20px;
    }

    .activity-card h4 {
        margin-bottom: 15px;
        color: #023e8a;
        font-size: 22px;
    }

    .activity-card p {
        color: #666;
    }


/*====================================
        FACILITATION
====================================*/

.facilitation {
    background: #eef9ff;
    padding: 50px 0px;
}
.info-card {
    background: #fff;
    border-radius: 20px;
    padding: 35px;
    text-align: center;
    height: 100%;
    box-shadow: 0 15px 35px rgba(0,0,0,.07);
    transition: .4s;
}

    .info-card:hover {
        background: #056b3b;
        color: #fff;
        transform: translateY(-10px);
    }
        .info-card:hover h4,
        .info-card:hover p,
        .info-card:hover i {
            color: #fff;
        }

    .info-card i {
        font-size: 45px;
        color: #056b3b;
        margin-bottom: 20px;
    }

    .info-card h4 {
        margin-bottom: 15px;
        color: #023e8a;
    }


/*====================================
        CTA
====================================*/

.cta {
    background: linear-gradient(135deg,#023e8a,#0096c7);
    color: #fff;
    text-align: center;
}

    .cta h2 {
        font-size: 48px;
        margin-bottom: 20px;
    }

    .cta p {
        font-size: 20px;
        margin-bottom: 30px;
    }

    .cta .btn {
        padding: 15px 40px;
        border-radius: 50px;
        font-weight: 600;
    }


/*====================================
        ANIMATION
====================================*/

@keyframes float {

    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-18px);
    }

    100% {
        transform: translateY(0);
    }
}


.ocean {
    display: grid;
    grid-template-columns: repeat(5,1fr);
    text-align: center;
    align-items: center;
    justify-content: center;
    gap: 30px;
    margin-bottom: 50px;
}

    .ocean .ocean-item {
        box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
        min-height: 280px;
        background: #00673842;
        border: 2px solid #c88a26;
        border-radius: 30px;
    }

        .ocean .ocean-item img {
            width: 100px;
            height: 100px;
        }

        .ocean .ocean-item h5 {
            font-size: 18px;
            padding: 10px;
            margin: 0px;
            line-height: 30px;
            text-transform: none;
        }

        .ocean .ocean-item p {
            font-size: 16px;
            padding: 10px;
            margin: 0px;
            line-height: 25px;
        }


/*====================================
        RESPONSIVE
====================================*/

@media(max-width:991px) {

    .hero {
        text-align: center;
    }

        .hero h1 {
            font-size: 42px;
        }

        .hero .row {
            min-height: auto;
        }

    .hero-img {
        margin-top: 40px;
    }
    .ocean {
        grid-template-columns: repeat(1,1fr);
        gap: 30px;
    }
}

@media(max-width:768px) {

    .section-title h2 {
        font-size: 30px;
    }

    .hero h1 {
        font-size: 34px;
    }

    .hero p {
        font-size: 16px;
    }

    .activity-card,
    .info-card {
        padding: 25px;
    }

    .cta h2 {
        font-size: 32px;
    }
    .ocean {
        grid-template-columns: repeat(1,1fr);
        gap: 30px;
    }
}
