﻿/*=== xxl screen ===*/
@media (min-width: 1400px) {
    .banner .heading{
        text-shadow: 1px 1px 9px rgba(0,0,0,0.25);
    }
}

/*=== xl screen ===*/
@media (max-width: 1399px) and (min-width:1200px) {
    .character {
        max-width: 490px;
    }

    .banner {
        background: #002c56 url(../images/Blue-BG.png) no-repeat bottom right;
        background-size: contain !important;
    }

    .dottedLines {
        background: url(../images/DottedLines.png) no-repeat bottom right;
        background-size: contain !important;
    }

    .banner .heading {
        margin-top: 40%;
    }
}

/*=== lg screen ===*/
@media (max-width: 1199px) and (min-width:992px) {
    .banner {
        background: #002c56 url(../images/Blue-BG.png) no-repeat top right;
        background-size: contain !important;
    }

    .dottedLines {
        background: url(../images/DottedLines.png) no-repeat top right;
        background-size: contain !important;
    }

    .banner .heading {
        line-height: 55px;
    }

        .banner .heading .part01 {
            font-size: 150px;
        }

        .banner .heading .part02 {
            font-size: 55px;
            padding-left: 35px;
        }

    .heading .part04 {
        font-size: 100px;
    }

    .part06 {
        margin-left: -25px;
    }

    .banner p {
        padding-left: 70px;
    }

    .mainImage {
        padding-top: 70px;
    }
}

/*=== md screen ===*/
@media (max-width: 991px) and (min-width:768px) {
    .banner {
        background: #002c56 url(../images/Blue-BG.png) no-repeat top right;
        background-size: contain !important;
    }

    .dottedLines {
        background: url(../images/DottedLines.png) no-repeat top right;
        background-size: contain !important;
    }

    .banner .heading {
        line-height: 55px;
        margin-top: 40%;
    }

        .banner .heading .part01 {
            font-size: 150px;
        }

        .banner .heading .part02 {
            font-size: 55px;
            padding-left: 35px;
        }

    .heading .part04 {
        font-size: 100px;
    }

    .part06 {
        margin-left: -25px;
    }

    .banner p {
        padding-left: 30px;
        padding-right: 0;
        font-size: 18px;
        line-height: normal;
    }

    .mainImage {
        padding-top: 70px;
    }

    @keyframes fadeIn {
        0% {
            opacity: 0;
            right: -40px;
        }

        100% {
            opacity: 1;
            right: 30px;
        }
    }
}

/*=== sm screen ===*/
@media (max-width: 767px) and (min-width:576px) {
    .banner .heading .part01 {
        font-size: 220px;
    }

    .banner .heading {
        margin-top: 15%;
    }

    .banner p {
        color: white;
        padding-left: 100px;
        padding-right: 0;
        font-size: 18px;
        margin-top: -10px;
    }

    .mainImage {
        padding-top: 10px;
    }

    @keyframes fadeIn {
        0% {
            opacity: 0;
            right: -40px;
        }

        100% {
            opacity: 1;
            right: 0px;
        }
    }
}
/*=== extra small screen ===*/
@media (max-width: 575px) {
    .banner .heading {
        line-height: 50px;
        margin-top: 30%;
    }

        .banner .heading .part01 {
            font-size: 150px;
        }

        .banner .heading .part02 {
            font-size: 50px;
            padding-left: 30px;
        }


        .banner .heading .part03 {
            font-size: 14px;
        }

        .banner .heading .part04 {
            font-size: 90px;
        }

        .banner .heading .part06 {
            margin-left: -30px;
        }

    .banner p {
        padding-left: 65px;
        padding-right: 20px;
        font-size: 16px;
    }

    .mainImage {
        padding-top: 10px;
    }

    @keyframes fadeIn {
        0% {
            opacity: 0;
            right: -40px;
        }

        100% {
            opacity: 1;
            right: 0px;
        }
    }
}