﻿
/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
    width: 100%;
    height: 75vh;
    background-image: url('../images/about.jpg');
    background-size: cover;
    position: relative;
    margin-bottom: -140px;
    z-index: 1;
}

    #hero:before {
        content: "";
        background: rgba(60, 65, 51, 0.4);
        position: absolute;
        bottom: 0;
        top: 0;
        left: 0;
        right: 0;
    }

    #hero .hero-container {
        position: absolute;
        bottom: 0;
        top: 0;
        left: 0;
        right: 0;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        text-align: center;
    }

    #hero h1 {
        margin: 0 0 10px 0;
        font-size: 48px;
        font-weight: 700;
        line-height: 56px;
        color: #fff;
    }

    #hero h2 {
        color: #eee;
        margin-bottom: 50px;
        font-size: 24px;
    }

    #hero .btn-get-started {
        font-family: "Raleway", sans-serif;
        font-weight: 600;
        font-size: 13px;
        letter-spacing: 1px;
        display: inline-block;
        padding: 8px 28px;
        border-radius: 50px;
        transition: 0.5s;
        margin: 10px;
        border: 2px solid #94c045;
        text-transform: uppercase;
        color: #fff;
    }

        #hero .btn-get-started:hover {
            background: #94c045;
        }

@media (min-width: 1024px) {
    #hero {
        background-attachment: fixed;
    }
}

@media (max-width: 768px) {
    #hero {
        height: 100vh;
    }

        #hero h1 {
            font-size: 28px;
            line-height: 36px;
        }

        #hero h2 {
            font-size: 18px;
            line-height: 24px;
            margin-bottom: 30px;
        }

        #hero .hero-container {
            padding: 0 15px;
        }
}

@media (max-height: 500px) {
    #hero {
        height: 120vh;
    }
}


/*--------------------------------------------------------------
# About Us
--------------------------------------------------------------*/
.about {
    padding-bottom: 300px;
}

    .about .container {
        box-shadow: 0 5px 25px 0 rgba(214, 215, 216, 0.6);
    }

    .about .video-box img {
        padding: 15px 0;
    }

    .about .section-title p {
        text-align: left;
        font-style: italic;
        color: #666;
    }

    .about .about-content {
        padding: 40px;
    }

    .about .icon-box + .icon-box {
        margin-top: 40px;
    }

    .about .icon-box .icon {
        float: left;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 72px;
        height: 72px;
        background: #f1f7fb;
        border-radius: 6px;
        transition: 0.5s;
    }

        .about .icon-box .icon i {
            color: #428bca;
            font-size: 32px;
        }

    .about .icon-box:hover .icon {
        background: #428bca;
    }

        .about .icon-box:hover .icon i {
            color: #fff;
        }

    .about .icon-box .title {
        margin-left: 95px;
        font-weight: 700;
        margin-bottom: 10px;
        font-size: 18px;
        text-transform: uppercase;
    }

        .about .icon-box .title a {
            color: #343a40;
            transition: 0.3s;
        }

            .about .icon-box .title a:hover {
                color: #428bca;
            }

    .about .icon-box .description {
        margin-left: 95px;
        line-height: 24px;
        font-size: 14px;
    }

    .about .video-box {
        position: relative;
    }

    .about .play-btn {
        width: 94px;
        height: 94px;
        background: radial-gradient(#428bca 50%, rgba(66, 139, 202, 0.4) 52%);
        border-radius: 50%;
        display: block;
        position: absolute;
        left: calc(50% - 47px);
        top: calc(50% - 47px);
        overflow: hidden;
    }

        .about .play-btn::after {
            content: "";
            position: absolute;
            left: 50%;
            top: 50%;
            transform: translateX(-40%) translateY(-50%);
            width: 0;
            height: 0;
            border-top: 10px solid transparent;
            border-bottom: 10px solid transparent;
            border-left: 15px solid #fff;
            z-index: 100;
            transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
        }

        .about .play-btn::before {
            content: "";
            position: absolute;
            width: 120px;
            height: 120px;
            animation-delay: 0s;
            animation: pulsate-btn 2s;
            animation-direction: forwards;
            animation-iteration-count: infinite;
            animation-timing-function: steps;
            opacity: 1;
            border-radius: 50%;
            border: 5px solid rgba(66, 139, 202, 0.7);
            top: -15%;
            left: -15%;
            background: rgba(198, 16, 0, 0);
        }

        .about .play-btn:hover::after {
            border-left: 15px solid #428bca;
            transform: scale(20);
        }

        .about .play-btn:hover::before {
            content: "";
            position: absolute;
            left: 50%;
            top: 50%;
            transform: translateX(-40%) translateY(-50%);
            width: 0;
            height: 0;
            border: none;
            border-top: 10px solid transparent;
            border-bottom: 10px solid transparent;
            border-left: 15px solid #fff;
            z-index: 200;
            animation: none;
            border-radius: 0;
        }

@keyframes pulsate-btn {
    0% {
        transform: scale(0.6, 0.6);
        opacity: 1;
    }

    100% {
        transform: scale(1, 1);
        opacity: 0;
    }
}

.why_section .box {
    text-align: center;
    margin-top: 45px;
    background-color: #94c045;
    padding: 45px 50px;
    border-radius: 5px;
    color: #ffffff;
}

    .why_section .box .img-box {
        margin-bottom: 15px;
    }

        .why_section .box .img-box svg {
            width: 55px;
            height: auto;
            fill: #ffffff;
        }

/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/


    .about .content {
        padding: 0 80px;
    }

        .about .content h3 {
            font-weight: 400;
            font-size: 34px;
            color: #5f5950;
        }

        .about .content h4 {
            font-size: 20px;
            font-weight: 700;
            margin-top: 5px;
        }

        .about .content p {
            font-size: 15px;
            color: #848484;
        }

        .about .content ul {
            list-style: none;
            padding: 0;
        }

            .about .content ul li + li {
                margin-top: 15px;
            }

            .about .content ul li {
                position: relative;
                padding-left: 26px;
            }

            .about .content ul i {
                font-size: 20px;
                color: #ffb03b;
                position: absolute;
                left: 0;
                top: 2px;
            }

        .about .content p:last-child {
            margin-bottom: 0;
        }

    .about .video-box {
        background-size: cover;
        background-repeat: no-repeat;
        background-position: center center;
        min-height: 400px;
        position: relative;
    }

    .about .play-btn {
        width: 94px;
        height: 94px;
        background: radial-gradient(#ffb03b 50%, rgba(255, 176, 59, 0.4) 52%);
        border-radius: 50%;
        display: block;
        position: absolute;
        left: calc(50% - 47px);
        top: calc(50% - 47px);
        overflow: hidden;
    }

       /* .about .play-btn::after {
            content: "";
            position: absolute;
            left: 50%;
            top: 50%;
            transform: translateX(-40%) translateY(-50%);
            width: 0;
            height: 0;
            border-top: 10px solid transparent;
            border-bottom: 10px solid transparent;
            border-left: 15px solid #fff;
            z-index: 100;
            transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
        }

        .about .play-btn::before {
            content: "";
            position: absolute;
            width: 120px;
            height: 120px;
            animation-delay: 0s;
            animation: pulsate-btn 2s;
            animation-direction: forwards;
            animation-iteration-count: infinite;
            animation-timing-function: steps;
            opacity: 1;
            border-radius: 50%;
            border: 5px solid rgba(255, 176, 59, 0.7);
            top: -15%;
            left: -15%;
            background: rgba(198, 16, 0, 0);
        }

        .about .play-btn:hover::after {
            border-left: 15px solid #ffb03b;
            transform: scale(20);
        }*/

       /* .about .play-btn:hover::before {
            content: "";
            position: absolute;
            left: 50%;
            top: 50%;
            transform: translateX(-40%) translateY(-50%);
            width: 0;
            height: 0;
            border: none;
            border-top: 10px solid transparent;
            border-bottom: 10px solid transparent;
            border-left: 15px solid #fff;
            z-index: 200;
            animation: none;
            border-radius: 0;
        }*/

@media (max-width: 1024px) {

    .about .content,
    .about .accordion-list {
        padding-left: 0;
        padding-right: 0;
    }
}

@media (max-width: 992px) {
    .about .content {
        padding-top: 30px;
    }

    .about .accordion-list {
        padding-bottom: 30px;
    }
}

@keyframes pulsate-btn {
    0% {
        transform: scale(0.6, 0.6);
        opacity: 1;
    }

    100% {
        transform: scale(1, 1);
        opacity: 0;
    }
}

/*--------------------------------------------------------------
# Whu Us
--------------------------------------------------------------*/
.why-us .box {
    padding: 50px 30px;
    box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
    transition: all ease-in-out 0.3s;
    height: 100%;
}

    .why-us .box span {
        display: block;
        font-size: 28px;
        font-weight: 700;
        color: #ffcf88;
    }

    .why-us .box h4 {
        font-size: 24px;
        font-weight: 600;
        padding: 0;
        margin: 20px 0;
        color: #6c665c;
    }

    .why-us .box p {
        color: #aaaaaa;
        font-size: 15px;
        margin: 0;
        padding: 0;
    }

    .why-us .box:hover {
        background: #ffb03b;
        padding: 30px 30px 70px 30px;
        box-shadow: 10px 15px 30px rgba(0, 0, 0, 0.18);
    }

        .why-us .box:hover span,
        .why-us .box:hover h4,
        .why-us .box:hover p {
            color: #fff;
        }
