﻿.innerpagebanner {
    background: url(../Images/banner-bg.png) no-repeat;
    background-size: 100% 100%;
    padding: 150px 0 100px;
}

    .innerpagebanner h1 {
        color: #fff;
        font-size: 48px;
        line-height: 48px;
        font-weight: 700;
        margin-bottom: 30px;
    }
footer {
    background: #fff;
    border-top: 1px solid #ddd;
}

.frgtlink {
    color: #434C00;
    text-decoration: none;
    text-align: center;
    margin-top: 50px;
    justify-content: center;
    margin-bottom:100px;
}

    .frgtlink:hover {
        color: #000;
    }

    footer .copyrights {
        text-align: center;
    }

img {
    max-width: 100%;
}

h1, h2, h3, h4, h5, h5 {
    margin: 0;
    padding: 0;
    color: #333;
}

@media(min-width: 1200px) {
    .container {
        width: 100%;
        max-width: 1400px;
    }
}

.btn-primary {
    background: #A6CF3D;
    border-color: #A6CF3D;
    color:white;
    font-weight: 700;
    font-size: 16px;
    text-transform: uppercase;
    padding: 10px 30px;
    border-radius: 30px;
    transition: 0.5s all ease;
    margin-bottom:20px;
    margin-top:20px;
}

    .btn-primary:hover, .btn-primary:focus, .btn-primary:active, .btn-primary:active:focus {
        background: #000;
        color: #fff;
        border-color: #000;
    }

.form-control {
    height: 50px;
}

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 0;
}

    header:after {
        content: "";
        display: block;
        width: 100%;
        position: absolute;
        top: 0;
        left: 0;
        height: 133px;
        background: #363c0a;
        opacity: 0;
        visibility: hidden;
        transition: 0.5s all ease;
    }

    header.fixed {
        padding: 0;
        z-index: 11;
    }

        header.fixed:after {
            opacity: 1;
            visibility: visible;
            height: 73px;
        }

    header .navbar-expand-lg {
        background: transparent !important;
        position: relative;
        z-index: 1;
    }

.navbar-expand-lg .navbar-nav .nav-link {
    color: #fff;
    font-weight: 700;
    /*padding: 0 25px;*/
}

    .navbar-expand-lg .navbar-nav .nav-link:hover {
        color: #90c745;
    }

@media(min-width: 992px) {
    .navbar-expand-lg .navbar-nav {
        display: flex;
        align-items: center;
        justify-content: flex-end;
        flex: 0 0 100%;
    }

        .navbar-expand-lg .navbar-nav .nav-item {
            margin-left: 20px;
        }
}
body {
    
    background: #f2f2f2;
       font-family: "Roboto", sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 20px;
}

.main-container {
    padding: 20px 0px;
    
    display: flex;
    align-items: center;
    justify-content: center;

}

/* ===== MAIN CARD ===== */
.wave-wrapper {
    width: 1000px;
    height: auto;
    background: #fff;
    border-radius: 18px;
    display: flex;
    overflow: hidden;
    box-shadow: 0 35px 80px rgba(0,0,0,0.25);
}

/* ===== LEFT PANEL ===== */
.wave-left {
    width: 42%;
    position: relative;
    background: #434C00;
    overflow: hidden;
}
.wave-image {
    transition: transform 0.4s ease;

}


    .wave-image:hover {
        transform: scale(1.05);
    }
.wave-image {
    max-width: 100%;
    height: auto;
    display: block;
    margin-top: 150px;
}
    /* BIG DARK CURVE */
    .wave-left::before {
        content: "";
        position: absolute;
        top: -20%;
        right: -60%;
        width: 140%;
        height: 140%;
        background: #434C00;
        border-radius: 50%;
    }

    /* LIGHT GREEN WAVE */
    .wave-left::after {
        content: "";
        position: absolute;
        top: -10%;
        right: -70%;
        width: 150%;
        height: 140%;
        background: #90C745;
        border-radius: 50%;
    }

/* INNER WHITE WAVE */
.wave-content::before {
    content: "";
    position: absolute;
    top: -5%;
    right: -75%;
    width: 155%;
    height: 100%;
    background: rgba(255,255,255,0.15);
    border-radius: 50%;
}

/* LEFT TEXT */
.wave-content {
    position: relative;
    z-index: 3;
    padding: 60px 45px;
    color: #fff;
}

    .wave-content h1 {
        font-size: 40px;
        font-weight: 700;
        line-height: 1.1;
    }

        .wave-content h1 span {
            font-weight: 800;
        }

    .wave-content p {
        margin-top: 18px;
        font-size: 15px;
        line-height: 1.6;
        opacity: 0.9;
    }

/* ===== RIGHT PANEL ===== */
.wave-right {
    width: 58%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    max-height:auto;
}

/* ===== FORM ===== */
.loginbox {
    width: 100%;
    max-width: 400px;
    max-height:auto;
}

.title {
    font-size: 28px;
    font-weight: 700;
    color: #434C00;
    margin-bottom: 28px;
}

.form-group {
    margin-bottom: 18px;
}

.form-control {
    width: 100%;
    height: 44px;
    border: none;
    border-bottom: 2px solid #ddd;
    font-size: 14px;
    outline: none;
}

    .form-control:focus {
        border-bottom-color: #90C745;
    }

.btn-container {
    margin-top: 30px;
}

.btn-primary {
    width: 100%;
    padding: 14px;
    border-radius: 30px;
    border: none;
    background: linear-gradient(135deg, #90C745, #434C00);
    color: #fff;
    font-weight: 600;
    box-shadow: 0 12px 30px rgba(144,199,69,0.45);
}



html, body {
    max-width: 100%;
    overflow-x: hidden;
    -webkit-text-size-adjust: 100%;
}
@media (max-width: 768px) {

    /* Banner */
    .innerpagebanner {
        padding: 90px 20px 50px;
        background-size: cover;
        text-align: center;
    }

        .innerpagebanner h1 {
            font-size: 28px;
            line-height: 34px;
        }

    /* Main container */
    .main-container {
        padding: 20px;
    }

    /* Stack panels */
    .wave-wrapper {
        width: 100%;
        flex-direction: column;
        border-radius: 14px;
    }

    .wave-left,
    .wave-right {
        width: 100%;
    }

        /* Reduce wave overflow */
        .wave-left::before,
        .wave-left::after,
        .wave-content::before {
            right: -30%;
        }

    .wave-image {
        margin-top: 40px;
        width: 80%;
        margin-left: auto;
        margin-right: auto;
    }

    /* Text */
    .wave-content {
        padding: 40px 25px;
        text-align: center;
    }

        .wave-content h1 {
            font-size: 28px;
        }

    /* Form */
    .loginbox {
        padding: 30px 25px;
    }

    .title {
        font-size: 22px;
        text-align: center;
    }

    .btn-primary {
        font-size: 15px;
    }

    .frgtlink {
        margin-top: 20px;
        margin-bottom: 40px;
    }
}
@media only screen and (min-width: 390px) and (max-width: 430px) {

    .wave-content h1 {
        font-size: 30px;
    }

    .title {
        font-size: 24px;
    }

    .btn-primary {
        padding: 15px;
        font-size: 16px;
    }
}
@media only screen and (min-width: 768px) and (max-width: 820px) {

    .wave-wrapper {
        width: 95%;
        flex-direction: column;
    }

    .wave-left,
    .wave-right {
        width: 100%;
    }

    .wave-content {
        text-align: center;
    }

    .wave-image {
        margin-top: 60px;
        width: 70%;
        margin-left: auto;
        margin-right: auto;
    }
}
@media only screen and (min-width: 1024px) and (max-width: 1366px) {

    .wave-wrapper {
        width: 90%;
    }

    .wave-content h1 {
        font-size: 36px;
    }

    .loginbox {
        max-width: 450px;
    }
}
.btn-primary {
    min-height: 44px;
    touch-action: manipulation;
}

.form-control {
    height: 50px;
}

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 0;
}

    header:after {
        content: "";
        display: block;
        width: 100%;
        position: absolute;
        top: 0;
        left: 0;
        height: 133px;
        background: #363c0a;
        opacity: 0;
        visibility: hidden;
        transition: 0.5s all ease;
    }

    header.fixed {
        padding: 0;
        z-index: 11;
    }

        header.fixed:after {
            opacity: 1;
            visibility: visible;
            height: 73px;
        }

    header .navbar-expand-lg {
        background: transparent !important;
        position: relative;
        z-index: 1;
    }

.navbar-expand-lg .navbar-nav .nav-link {
    color: #fff;
    font-weight: 700;
    /*padding: 0 25px;*/
}

    .navbar-expand-lg .navbar-nav .nav-link:hover {
        color: #90c745;
    }

@media(min-width: 992px) {
    .navbar-expand-lg .navbar-nav {
        display: flex;
        align-items: center;
        justify-content: flex-end;
        flex: 0 0 100%;
    }

        .navbar-expand-lg .navbar-nav .nav-item {
            margin-left: 20px;
        }
}
@media(max-width:991px) {
    .navbar-toggler {
        background: #fff;
    }

    .about-section3 .items {
        margin-bottom: 40px;
    }

    .about-section4 .items {
        margin-bottom: 40px;
    }
}

@media(max-width:767px) {
    .home-section1 {
        background-size: cover;
    }

        .home-section1 .text .title {
            font-size: 36px;
            line-height: 36px;
        }

        .home-section1 .text .btn-container {
            margin-bottom: 30px;
        }

    .home-section2 {
        padding: 40px 0 0;
    }

        .home-section2 .title {
            font-size: 36px;
            line-height: 36px;
        }

    .navbar-collapse {
        background: #363c0a;
        padding: 30px;
        border-radius: 10px;
    }

    .navbar-expand-lg .navbar-nav .nav-link {
        padding: 15px 0;
    }

    footer {
        padding: 30px 0;
    }

    .innerpagebanner {
        background-size: cover;
        padding-bottom: 80px;
        padding-top: 150px;
    }

    .traning-tier1 {
        padding: 40px 0;
    }

        .traning-tier1 .text {
            margin-bottom: 40px;
        }

    .traning-tier2 .text {
        padding-left: 0;
    }

    .contactblock {
        margin-bottom: 40px;
    }

        .contactblock:after {
            display: none;
        }

    .contactpageblock:before {
        display: none;
    }

    .contactdetails {
        padding: 20px;
    }

        .contactdetails .title {
            font-size: 24px;
        }

        .contactdetails p span:first-child {
            width: 130px;
        }

    .contactblock .form {
        padding: 20px;
    }

    .innerpagebanner h1 {
        font-size: 36px;
    }

    .innerpagebanner {
        background-size: cover;
        padding-bottom: 50px;
        padding-top: 120px;
    }

        .innerpagebanner h1 {
            margin-bottom: 10px;
        }

    .about-section1 {
        padding: 60px 0 60px;
    }

        .about-section1 .title {
            font-size: 28px;
            line-height: 24px;
        }

        .about-section1 .img {
            margin-bottom: 40px;
        }

        .about-section1 .text {
            padding-left: 0;
        }

    .about-section2 {
        padding: 60px 0 20px;
    }

        .about-section2 .title {
            font-size: 28px;
            line-height: 24px;
        }

        .about-section2 .items {
            margin-bottom: 40px;
        }

    .about-section3 {
        padding: 60px 0 20px;
    }

        .about-section3 .title {
            font-size: 28px;
            line-height: 24px;
        }

        .about-section3 .items {
            margin-bottom: 40px;
        }

    .about-section4 {
        padding: 60px 0 20px;
    }

        .about-section4 .title {
            font-size: 28px;
            line-height: 24px;
        }

    .about-section5 {
        padding: 0;
    }

        .about-section5 .title {
            font-size: 28px;
            line-height: 24px;
        }

        .about-section5 .img {
            margin-bottom: 40px;
        }

        .about-section5 .text {
            padding-left: 0;
        }

    .about-section6 .img {
        margin-bottom: 40px;
    }

    .about-section6 .text {
        padding-left: 0;
    }

    .about-section6 {
        padding: 0;
    }

        .about-section6 .title {
            font-size: 28px;
            line-height: 24px;
        }

    .about-section7 {
        padding-bottom: 0;
    }

        .about-section7 .title {
            font-size: 28px;
            line-height: 24px;
        }

    .about-section8 {
        padding: 60px 0 20px 0;
    }

        .about-section8 .title {
            font-size: 28px;
            line-height: 24px;
        }
}

/* ================================
   NAVBAR
================================ */
header .navbar {
    background: transparent !important;
    position: relative;
    z-index: 2;
}

/* ================================
   NAV LINKS
================================ */
.navbar-nav .nav-link {
    color: #fff;
    font-weight: 700;
    padding: 10px 18px;
    transition: 0.3s;
}

    .navbar-nav .nav-link:hover {
        color: #90c745;
    }

/* ================================
   DESKTOP (>= 992px)
================================ */
@media (min-width: 992px) {
    .navbar-nav {
        display: flex;
        justify-content: flex-end;
        align-items: center;
        width: 100%;
    }

        .navbar-nav .nav-item {
            margin-left: 20px;
        }
}

/* ================================
   TABLET & MOBILE
================================ */
@media (max-width: 991px) {

    /* Hamburger */
    .navbar-toggler {
        background: #fff;
        border-radius: 6px;
        padding: 6px 12px;
    }

    /* Menu dropdown */
    .navbar-collapse {
        background: #363c0a;
        padding: 20px;
        margin-top: 10px;
        border-radius: 12px;
        text-align: center;
    }

    .navbar-nav .nav-link {
        padding: 15px 0;
        font-size: 16px;
        display: block;
    }
}

/* ================================
   SMALL MOBILE
================================ */
@media (max-width: 480px) {
    header {
        padding: 12px 0;
    }

    .navbar-nav .nav-link {
        font-size: 15px;
    }
}