*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body{
    font-family: "Poppins", sans-serif;
    font-size: 14px;
    line-height: 1.7em;
    font-weight: 400;
}

h1, h2, h3, h4, h5, h6{
    font-family: "Poppins", sans-serif;
}
a{
    text-decoration: none;
    color: inherit;
}
a {
    cursor: pointer;
    text-decoration: none;
}
a:hover, a:focus {
    text-decoration: none;
}

.container {
    width: 1140px;
    margin: 0 auto;
}
.row {
    width: 100%;
    float: left;
}

.col-3{
    width: 25%;
    float: left;
}
.col-4{
    width: 33.33%;
    float: left;
}
.col-6{
    width: 50%;
    float: left;
}
.col-12{
    width: 100%;
    float: left;
}   
.header{
    width: 100%;
    float: left;
    padding: 10px 0;
    border-bottom: 1px solid #e4e4e4;
}
.header .menu {
    width: 100%;
    display: block;
    text-align: right;
}

.header .menu li {
    list-style: none;
    display: inline-block;
    margin-left: 30px;
}
.header .menu li a {
    display: block;
    margin: 10px 0px 10px 20px;
    color: #162D5B;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.7s ease;
}
.header .menu li a:hover, header .menu li a:focus {
   color: #0964FF;
}
.banner {
    width: 100%;
    float: left;
    padding: 60px 0;
    text-align: center;
}
.banner h1 {
    font-size: 56px;
    line-height: 1.3em;
    font-weight: 600;
    color: #162D5B;
    margin-bottom: 10px;
}
.banner h1 span {
    color: #0964FF;
}

.banner p {
    margin: 20px 150px 0px 150px; 
    color: #162D5B;
    font-size: 16px;
    line-height: 1.7em;
    font-weight: 400;
}
.banner img {
    margin-top: 15px;
    width: 50%;
}

.success {
    width: 100%;
    float: left;
    padding: 60px 0;
}

.success .success-left{
    width: 100%;
    float: left;
    text-align: right;
}
.success .success-left h2{
    font-size: 56px;
    line-height: 1.3em;
    font-weight: 600;
    color: #F15666;
    font-weight: 600;
    margin-bottom: 10px;
    margin-right: 25px;
}
.success .success-left p{
    width: 75%;
    display: inline-block;
    color: #162D5B;
    margin-bottom: 15px;
    font-size: 20px;
    line-height: 1.7em;
    font-weight: 400;
    margin-right: 25px;
    

}
.success .success-right{
    width: 100%;
    float: left;
}
.success .success-right h2{
    font-size: 55px;
    line-height: 1.3em;
    font-weight: 600;
    color: #162D5B;
    font-weight: 600;
    margin-bottom: 10px;
    margin-left: 25px;
}
.feature{
    width: 100%;
    float: left;
    padding: 60px 0;
    
}
.feature-box{
    width: 90%;
    float: left;
    padding: 50px 20px;
    margin: 0px 15px;
   
}
.feature-box img {
    width: 100%;
    height: 225px;
    margin-bottom: 20px;
}
.feature-box h4{
    font-size: 18px;
    line-height: 1.3em;
    font-weight: 600;
    color: #162D5B;
    margin-bottom: 10px;
}
.feature-box p{
    color: #162D5B;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.7em;

}
.bg-1 {
    background: #FDEBED;
}
.bg-2 {
    background: #d4fbee;
}
.bg-3 {
    background: #FFF7E8;
}

.footer {
    background: #0964FF;
    width: 100%;
    float: left;
    padding: 20px 0;
    border-top: 1px solid #e4e4e4;
    text-align: center;
    color: #162D5B;
    font-size: 14px;
}
.footer p{
    color: #FFFFFF;
}   
/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.banner, .success, .feature, .footer {
    animation: fadeInUp 0.8s ease-out;
}

.success .success-left {
    animation: slideInLeft 0.8s ease-out;
}

.success .success-right {
    animation: slideInRight 0.8s ease-out;
}

.feature-box {
    animation: fadeInUp 0.8s ease-out;
}

/* ===========================
   BASIC RESPONSIVE FIXES
=========================== */

/* Container */
@media (max-width: 1200px) {
    .container {
        width: 95%;
    }
}

/* Columns full width on smaller screens */
@media (max-width: 992px) {
    .col-3, .col-4, .col-6, .col-12 {
        width: 100%;
        float: none;
        margin: 0 auto;
    }

    /* Banner text and image */
    .banner h1 {
        font-size: 36px;
    }

    .banner p {
        margin: 15px 20px;
        font-size: 15px;
    }

    .banner img {
        width: 80%;
        margin: 20px auto;
        display: block;
    }

    /* Success section */
    .success .success-left,
    .success .success-right {
        width: 100%;
        text-align: center;
        margin-bottom: 20px;
    }

    .success .success-left h2,
    .success .success-right h2 {
        font-size: 36px;
    }

    .success .success-left p {
        width: 100%;
        margin: 0 auto;
        font-size: 16px;
    }

    /* Feature boxes */
    .feature .col-4 {
        width: 100%;
        margin-bottom: 20px;
    }

    .feature-box {
        width: 90%;
        margin: 0 auto 20px auto;
        padding: 30px 15px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    /* Header logo center + menu below */
    .header .col-6:first-child {
        text-align: center;
        width: 100%;
        float: none;
        margin-bottom: 10px;
    }

    .header .col-6:last-child {
        width: 100%;
        float: none;
        text-align: center;
    }

    .header .menu li {
        display: inline-block;
        margin: 5px 10px;
    }

    .banner h1 {
        font-size: 28px;
    }

    .banner p {
        font-size: 14px;
    }

    .banner img {
        width: 90%;
    }

    .success .success-left h2,
    .success .success-right h2 {
        font-size: 28px;
    }

    .feature-box h4 {
        font-size: 16px;
    }

    .feature-box p {
        font-size: 13px;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .banner h1 {
        font-size: 24px;
    }

    .banner p {
        font-size: 13px;
        margin: 10px 15px;
    }

    .feature-box {
        width: 95%;
        padding: 20px 10px;
    }

    .footer p {
        font-size: 12px;
    }

    /* Header menu stack nicely */
    .header .menu li {
        display: inline-block;
        margin: 5px 8px;
    }
}



