/* Animation On Scroll */
    /* Bottom To Top */
    .reveal {
        position: relative;
        opacity: 0;
    }
    .reveal.active {
        opacity: 1;
    }
    .active.fade-bottom {
        animation: fade-bottom 1s ease-in;
    }
    @keyframes fade-bottom {
        0% {
            transform: translateY(50px);
            opacity: 0;
        }
        100% {
            transform: translateY(0);
            opacity: 1;
        }
    }
    /* Left To Right */
    .active.fade-left {
        animation: fade-left 1s ease-in;
    }
    @keyframes fade-left {
        0% {
            transform: translateX(-100px);
            opacity: 0;
        }
        100% {
            transform: translateX(0);
            opacity: 1;
        }
    }
    /* Right To left */
    .active.fade-right {
        animation: fade-right 1s ease-in;
    }
    @keyframes fade-right {
        0% {
            transform: translateX(100px);
            opacity: 0;
        }
        100% {
            transform: translateX(0);
            opacity: 1;
        }
    }

.ftco-navbar-light {
        background: #d4cc5c !important;
        z-index: 3;
        padding: 0;
        width: 100%;
        /* position: fixed; */
        -webkit-box-shadow: 0px 5px 20px -17px rgba(0, 0, 0, 0.34);
        -moz-box-shadow: 0px 5px 20px -17px rgba(0, 0, 0, 0.34);
        box-shadow: 0px 5px 20px -17px rgba(0, 0, 0, 0.34); 
    }
    @media (max-width: 991.98px) {
        .ftco-navbar-light {
            background: #fff;
            position: relative;
            top: 0;
            padding: 10px 15px; 
        } 
    }
    .ftco-navbar-light .navbar-brand {
        color: #000;
        text-transform: uppercase;
        font-weight: 700;
        font-size: 20px;
        line-height: 1; 
    }
    .ftco-navbar-light .navbar-brand span {
        display: block;
        font-size: 12px;
        font-weight: 500; 
    }
    .ftco-navbar-light .navbar-brand:hover, .ftco-navbar-light .navbar-brand:focus {
        color: #000; 
    }
    @media (max-width: 767.98px) {
        .ftco-navbar-light .navbar-brand {
            margin-bottom: 20px; 
        } 
    }
    @media (max-width: 991.98px) {
        .ftco-navbar-light .navbar-nav {
            padding-bottom: 10px; 
        }
    }
    .ftco-navbar-light .navbar-nav > .nav-item > .nav-link {
            font-size: 11px;
            padding-top: 2.5rem;
            padding-bottom: 60px;
            padding-left: 10px;
            padding-right: 10px;
            font-weight: 500;
            color: #4d4d4d;
            text-transform: uppercase;
            letter-spacing: 2px;
            position: relative;
            opacity: 1 !important;
            height: 51px;
    }
    .ftco-navbar-light .navbar-nav > .nav-item > .nav-link:before {
        content: "";
        position: absolute;
        width: 100%;
        height: 100%;
        bottom: 0;
        left: 0;
        background-color: #f6e9c6;
        visibility: hidden;
        -webkit-transform: scaleX(0);
        -ms-transform: scaleX(0);
        transform: scaleX(0);
        -webkit-transition: all 0.2s ease-in-out 0s;
        -o-transition: all 0.2s ease-in-out 0s;
        transition: all 0.2s ease-in-out 0s;
        z-index: -1; 
    }
    .ftco-navbar-light .navbar-nav > .nav-item > .nav-link:hover {
        color: black; 
    }
        .ftco-navbar-light .navbar-nav > .nav-item > .nav-link:hover:before {
            visibility: visible;
            background-color: #f6e9c6;
            -webkit-transform: scaleX(1);
            -ms-transform: scaleX(1);
            transform: scaleX(1); 
        }
    @media (max-width: 991.98px) {
        .ftco-navbar-light .navbar-nav > .nav-item > .nav-link {
            padding-left: 0;
            padding-right: 0;
            padding-top: .9rem;
            padding-bottom: .9rem; }
            .ftco-navbar-light .navbar-nav > .nav-item > .nav-link:hover {
            color: #fff; 
        } 
    }
    @media (max-width: 767.98px) {
        .ftco-navbar-light .navbar-nav > .nav-item > .nav-link {
            border-bottom: 1px solid rgba(0, 0, 0, 0.05); 
        } 
    }
    .ftco-navbar-light .navbar-nav > .nav-item .dropdown-menu {
        border: none;
        background: #fff;

        -webkit-box-shadow: 0px 10px 34px -20px rgba(0, 0, 0, 0.41);
        -moz-box-shadow: 0px 10px 34px -20px rgba(0, 0, 0, 0.41);
        box-shadow: 0px 10px 34px -20px rgba(0, 0, 0, 0.41);
        border-radius: 4px; 
    }
    .ftco-navbar-light .navbar-nav > .nav-item .dropdown-menu .dropdown-item {
        font-size: 20px;
        color: #000; 
    }
    .ftco-navbar-light .navbar-nav > .nav-item .dropdown-menu .dropdown-item:hover, .ftco-navbar-light .navbar-nav > .nav-item .dropdown-menu .dropdown-item:focus {
        background: #f6e9c6;
        color: #fff; 
    }
    @media (max-width: 991.98px) {
        .ftco-navbar-light .navbar-nav > .nav-item .dropdown-menu {
            display: block !important;
            background: #fff;
            -webkit-box-shadow: none;
            box-shadow: none; 
        } 
    }
    .ftco-navbar-light .navbar-nav > .nav-item.cta > a {
        color: #fff;
        background: #f6e9c6;
        border-radius: 0px; 
    }
    @media (max-width: 767.98px) {
        .ftco-navbar-light .navbar-nav > .nav-item.cta > a {
            padding-left: 15px;
            padding-right: 15px; 
        } 
    }
    @media (max-width: 991.98px) {
        .ftco-navbar-light .navbar-nav > .nav-item.cta > a {
            color: #fff;
            background: #f6e9c6;
            border-radius: 4px; 
        } 
    }
        .ftco-navbar-light .navbar-nav > .nav-item.active > a {
            color: black; /* menu text color*/
        }
        .ftco-navbar-light .navbar-nav > .nav-item.active > a:before {
        visibility: visible;
        background-color: #f6e9c6;
        -webkit-transform: scaleX(1);
        -ms-transform: scaleX(1);
        transform: scaleX(1); 
    }
    @media (max-width: 991.98px) {
        .ftco-navbar-light .navbar-nav > .nav-item.active > a {
            color: #000; 
        }
        .ftco-navbar-light .navbar-nav > .nav-item.active > a:before {
            display: none; 
        } 
    }
    .ftco-navbar-light .navbar-toggler {
        border: none;
        color: rgba(0, 0, 0, 0.5) !important;
        cursor: pointer;
        padding-right: 0;
        text-transform: uppercase;
        font-size: 16px;
        letter-spacing: .1em; 
    }
    .ftco-navbar-light .navbar-toggler:focus {
        outline: none !important; 
    }
.yelowBack{
    background-color:#d4cc5c ;
    width: 100%;
}
.purchaseBack{
    background-image: url('../images/Group 8582.png');
    height:826px;
}
.productStore{
    background-color: #e4e4e4;
    padding: 30px;
    width: 100%;
    border-radius: 50px;
    text-align: center;
}
.btnBlue{
    background-color:#302c74 ;
    padding: 8px;
    padding-left: 20px;
    padding-right: 20px;
    font-weight: bold;
    color: white;
    border: none;
    border-radius: 50px;
}
.colorBlue{
    color: #302c74;
}
.bat{
    margin-top: -10%;
}
.playerCard{
    background-color: #e4e4e4;
    padding: 30px;
    width: 250px;
    border-radius: 50px;
    border-left: solid 20px #302c74;
    border-bottom:solid 20px #302c74 ;
    
}
.colorGreen{
    color: #0c430b;
}
.btn{
    background-color: #302c74;
    padding: 10px;
    width: 150px;
    color: white;
}
.btn:hover{
    color: white;
}
.bold{
    font-weight: bold;
}
.otherCard{
    background-color:white;
    width:350px;
    padding: 10px;
    border-radius: 50px;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.5);
}
.black{
    background-color: black;
    width: 100px;
    padding: 10px;
    text-align: center;
    color: white;
}
.pakCard{
    position: relative;
    z-index: 1;
    padding: 10px;
    background-color:#e4e4e4;
}
.bookSection{
    margin-top: -5%;
    background-image: url('../images/Group 8577.png');
    height: 820px;
}
.heading{
    margin-top: 50%;
    color: #d4cc5c;
    font-size:50px;
    font-weight: bold;
}
.btnYellowBook{
    background-color:#d4cc5c ;
    padding: 5px;
    font-size: small;
    font-weight: bold;
    padding-left: 20px;
    padding-right: 20px;
    color: black;
    border: none;
    border-radius: 50px;
}
.btnYellowBook:focus{
    outline: none;
}
.colmargin{
    margin-top: 160px;
}
.simage{
    margin-left: 111px;
    margin-top: 215px;
    height: 341px;
}
.hideShow{
    display: none;
}
.blue{
    /* margin-top: 5%; */
    background-color: #302c74;
    color: white;
    padding: 10px;
    margin-top:100px;
}
.droptext{
    font-size: 11px !important;
    font-weight: 500;
    color: #4d4d4d;
    text-transform: uppercase;
    letter-spacing: 2px;
}
/* mobile */
@media  screen and (max-width:320px){
    .purchaseBack{
        background-image: url('../images/Group 8582.png');
        background-repeat: no-repeat;
        background-size: cover;
        height:2500px;
    }
    .productStore{
        margin-bottom: 10px;
    }
    .bat{
        margin-top: 3%;
    }
    .playerCard{
        background-color: #e4e4e4;
        padding: 0px;
        width:70px;
        border-radius: 17px;
        border-left: solid 3px #302c74;
        border-bottom:solid 3px #302c74 ;
        
    }
    .btn{
        background-color: #302c74;
        padding: 0px;
        width:65px;
        padding-top: 2px;
        padding-bottom: 5px;
        font-size: small;
        color: white;
    }
    .otherCard{
        background-color:white;
        width:77px;
        padding: 10px;
        border-radius: 50px;
        box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.5);
    }
    .black{
        background-color: black;
        width: 63px;
        padding:4px;
        font-size: x-small;
        text-align: center;
        color: white;
    }
    .miniBold{
        font-size: x-small;
    }
    .slider1{
        margin-left: 5px;
    }
    .bookSection{
        margin-top: -30%;
        background-image: url('../images/Group 8577.png');
        background-repeat: no-repeat;
        background-size: cover;
        height:1300px;
    }
    .simage{
        margin-left: 0px;
        margin-top: 12px;
        height:270px;
    }
    .heading{
        margin-top: 10%;
        color: #d4cc5c;
        font-size:50px;
        font-weight: bold;
    }
    .blue{
        background-color: #302c74;
        color: white;
        padding: 10px;
        margin-top:0px;
    }
    .blueTextArea{
        font-size: small;
    }
    .searchImage{
        width: 20px;
        float: right;
        margin-top: -27px;
    }
}
@media  screen and (min-width:321px) and (max-width:375px){
    .purchaseBack{
        background-image: url('../images/Group 8582.png');
        background-repeat: no-repeat;
        background-size: cover;
        height:2500px;
    }
    .productStore{
        margin-bottom: 10px;
    }
    .bat{
        margin-top: 3%;
    }
    .playerCard{
        background-color: #e4e4e4;
        padding: 0px;
        width:80px;
        border-radius: 17px;
        border-left: solid 3px #302c74;
        border-bottom:solid 3px #302c74 ;
        
    }
    .btn{
        background-color: #302c74;
        padding: 0px;
        width:70px;
        padding-top: 2px;
        padding-bottom: 5px;
        font-size: small;
        color: white;
    }
    .otherCard{
        background-color:white;
        width:77px;
        padding: 10px;
        border-radius: 50px;
        box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.5);
    }
    .black{
        background-color: black;
        width: 63px;
        padding:4px;
        font-size: x-small;
        text-align: center;
        color: white;
    }
    .miniBold{
        font-size: x-small;
    }
    .slider1{
        margin-left: 5px;
    }
    .bookSection{
        margin-top: -30%;
        background-image: url('../images/Group 8577.png');
        background-repeat: no-repeat;
        background-size: cover;
        height:1300px;
    }
    .simage{
        margin-left: 0px;
        margin-top: 12px;
        height:270px;
    }
    .heading{
        margin-top: 10%;
        color: #d4cc5c;
        font-size:50px;
        font-weight: bold;
    }
    .blue{
        background-color: #302c74;
        color: white;
        padding: 10px;
        margin-top:0px;
    }
    .blueTextArea{
        font-size: small;
    }
    .searchImage{
        width: 20px;
        float: right;
        margin-top: -27px;
    }
}
@media  screen and (min-width:376px) and (max-width:425px){
    .purchaseBack{
        background-image: url('../images/Group 8582.png');
        background-repeat: no-repeat;
        background-size: cover;
        height:2500px;
    }
    .productStore{
        margin-bottom: 10px;
    }
    .bat{
        margin-top: 3%;
    }
    .playerCard{
        background-color: #e4e4e4;
        padding: 0px;
        width:95px;
        border-radius: 17px;
        border-left: solid 3px #302c74;
        border-bottom:solid 3px #302c74 ;
        
    }
    .btn{
        background-color: #302c74;
        padding: 0px;
        width:82px;
        padding-top: 2px;
        padding-bottom: 5px;
        font-size: small;
        color: white;
    }
    .otherCard{
        background-color:white;
        width:77px;
        padding: 10px;
        border-radius: 50px;
        box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.5);
    }
    .black{
        background-color: black;
        width: 63px;
        padding:4px;
        font-size: x-small;
        text-align: center;
        color: white;
    }
    .miniBold{
        font-size: x-small;
    }
    .slider1{
        margin-left: 5px;
    }
    .bookSection{
        margin-top: -30%;
        background-image: url('../images/Group 8577.png');
        background-repeat: no-repeat;
        background-size: cover;
        height:1300px;
    }
    .simage{
        margin-left: 0px;
        margin-top: 12px;
        height:270px;
    }
    .heading{
        margin-top: 10%;
        color: #d4cc5c;
        font-size:50px;
        font-weight: bold;
    }
    .blue{
        background-color: #302c74;
        color: white;
        padding: 10px;
        margin-top:0px;
    }
    .blueTextArea{
        font-size: small;
    }
    .searchImage{
        width: 20px;
        float: right;
        margin-top: -27px;
    }
}
/* tablet */
@media only screen and (min-width:601px) and (max-width:768px){
    .playerCard{
        background-color: #e4e4e4;
        padding: 0px;
        width:165px;
        border-radius: 17px;
        border-left: solid 3px #302c74;
        border-bottom:solid 3px #302c74 ;   
    }
    .btn{
        background-color: #302c74;
        padding: 0px;
        width: 90px;
        padding-top: 2px;
        padding-bottom: 5px;
        font-size: small;
        color: white;
    }
    .otherCard{
        background-color:white;
        width:150px;
        padding: 10px;
        border-radius: 50px;
        box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.5);
    }
    .black{
        background-color: black;
        width: 63px;
        padding:4px;
        font-size: x-small;
        text-align: center;
        color: white;
        margin-left: 35px;
    }
    .miniBold{
        font-size: x-small;
    }
    .bookSection{
        margin-top: -15%;
        background-image: url('../images/Group 8577.png');
        height: 1016px;
        background-repeat: no-repeat;
        background-size: cover;
    }
    .heading{
        margin-top: 152%;
        color: #d4cc5c;
        font-size:50px;
        font-weight: bold;
    }
    .hide{
        display: none;
    }
    .hideShow{
        display: block;
        margin-top: 153px;
    }
    .blue{
        background-color: #302c74;
        color: white;
        padding: 10px;
        margin-top:0px;
    }
    .blueTextArea{
        font-size: small;
    }
    .searchImage{
        width: 20px;
        float: right;
        margin-top: -24px;
        margin-right: 167px;
    }
    .ftco-navbar-light .navbar-toggler {
        border: none;
        color: rgba(0, 0, 0, 0.5) !important;
        cursor: pointer;
        padding-right: 0;
        text-transform: uppercase;
        font-size: 16px;
        letter-spacing: .1em; 
        margin-right: 55px;
    }
}
/* laptop */
@media only screen and (min-width:787px) and (max-width:1366px){
    .otherCard{
        background-color:white;
        width:280px;
        padding: 10px;
        border-radius: 50px;
        box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.5);
    }
    .black{
        background-color: black;
        width: 100px;
        padding: 10px;
        text-align: center;
        color: white;
    }
}