*, *::before, *::after {
    box-sizing: border-box;
}

body {
    padding: 0;
    margin: 0;
    background-image: url(../bg/bg3.jpg);
    background-size: 100% 110%;
    font-family: Arial;
}

.container {
    display: grid;
    height: 100vh;
    grid-template-columns: 1fr;
    grid-template-rows: 0.3fr 1.8fr 0.15fr;
    grid-template-areas: 
    "nav"
    "grid";
    font-family: "Arial", sans-serif;
}

nav {
    background: #005e6a;
    padding-top: 8px;
    grid-area: nav;
}

.banner-container {
    font-weight: bold;
    font-size: 35px;
    color: #fff;
    text-align: center;
    margin-top: 15px;
}

/* SIDEBAR CSS STARTS HERE!!! */
.side-bar {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    width: 290px;
    height: 100vh;
    position: fixed;
    top: 0;
    left: -100%;
    overflow-y: auto;
    transition: 0.6s ease;
    transition-property: left;
}

.side-bar.active {
    left: 0;
}

.side-bar .menu {
    width: 100%;
    margin-top: 80px;
}

.side-bar .menu .item {
    position: relative;
    cursor: pointer;
}

.side-bar .menu .item a {
    color: #fff;
    font-size: 16px;
    text-decoration: none;
    display: block;
    padding: 5px 30px;
    line-height: 60px;
}

.side-bar .menu .item a:hover {
    /* background: #8621f8; */
    /* background: rgb(0,128,128); */
    background: rgb(255,255,255,0.2);
    transition: 0.3s ease;
}

.side-bar .menu .item img {
    margin-right: 15px;
    width: 17px;
    height: auto;
    vertical-align: middle;
}

/* CSS for About & Privacy in Sidebar */
.privacy-icon1 {
    margin-right: 15px;
}
/* END */

.side-bar .menu .item a .dropdown {
    width: 16px;
    height: auto;
    position: absolute;
    right: 0;
    margin: 20px;
    transition: 0.3s ease;
}

.side-bar .menu .item .sub-menu {
    background: rgba(255,255,255,0.1);
    display: none;
}

.side-bar .menu .item .sub-menu a {
    padding-left: 80px;
}

.rotate {
    transform: rotate(90deg);
}

.side-bar .close-btn img {
    position: absolute;
    width: 16px;
    height: auto;
    right: 0;
    margin: 25px;
    cursor: pointer;
}

.menu-btn img {
    position: absolute;
    width: 20px;
    height: auto;
    margin: 23px;
    margin-left: 30px;
    cursor: pointer;
}

/* SIDEBAR CSS ENDS HERE!!! */

#grid {
    grid-area: grid;
    justify-content: center;
    display: flex;
    padding: 20px 0;
    height: 0;
}

.btn-grid {
    display: grid;
    grid-template-columns: repeat(1, auto);
    gap: 10px;
    margin-top: 5px;
    margin-bottom: 5px;
    align-items: center;
    justify-content: center;
}

.btn {
    width: 450px;
    height: 40px;
    border: none;
    background-color: #39c9bb;
    border-radius: 5px;
    padding: 5px 10px;
    color: white;
    outline: none;
    font-size: medium;
    box-shadow: 0 2px 3px 0 rgba(0,0,0,.1);
    cursor: pointer;
}

.btn:hover {
    background-color:teal;
}

.btn:active {
    background-color: rgb(0, 102, 102);
}

.icon-btn {
    width: 80px;
    height: auto;
}

.back img {
    width: 33px;
    height: auto;
}

.back {
    margin-top: 10px;
    padding: 1px 10px;
    /* border-style: solid; */
    /* border-color: #fff; */
    border-style: none;
    background: transparent;
    border-radius: 5px;
    cursor: pointer;
}

.back:hover {
    background-color: rgb(0,128,128);

}

.back:active {
    /* background-color: rgb(0,102,102); */
    background-color: #24a0ed;
}

/* START OF MODAL CSS */
.bg-modal {
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, .7);
    backdrop-filter: blur(15px);
    position: absolute;
    top: 0;
    justify-content: center;
    align-items: center;
    transition: 0.25s ease-in-out;
    display: none;
    z-index: 3;
}

.modal-content {
    width: 800px;
    height: 550px;
    background-color: #fff;
    border-radius: 5px;
    box-shadow: 10px 10px 30px rgb(0,0,0,0.7);
    padding: 1.5rem;
    overflow-y: scroll;
    position: relative;
}

.justify {
    text-align:justify
}

.modal-content h2 {
    color: #015c68;
}

.highlight {
    font-weight: bold;
}

.close {
    position: absolute;
    top: 0;
    right: 14px;
    font-size: 42px;
    transform: rotate(45deg);
    cursor: pointer;
    color: #005e6a;
}

.close:hover {
    color: #39c9bb;
} 

.close:active {
    color: rgb(0, 102, 102);
}

hr {
    padding-top: 0;
    top: 0;
    margin-top: 0;
    color: #015c68;
}

.modal {
    padding-right: 10px;
    color: #015c68;
}

/* SUPPORT ICONS - GCASH & PAYMAYA */
.gcash-icon {
    width: 80px;
    height: auto;
    padding-right: 10px;
    left: 0;
    display: inline;
    float: left;
}

.paymaya-icon {
    width: 80px;
    height: auto;
    padding-right: 10px;
    left: 0;
    display: inline;
    float: left;
}

.paypal-icon {
    width: 80px;
    height: auto;
    padding-right: 10px;
    left: 0;
    display: inline;
    float: left;
}

.support {
    justify-content: center;
    justify-items: center;
    vertical-align: middle;
    padding-top: 3px;
}

/* .fa-paypal {
    color: darkblue;
    padding-right: 10px;
    padding-left: 4px;
    font-size: 1.2em;
} */

.paypal-link {
    text-decoration: none;
    color: #000;
}

.paypal-link:hover {
    color: blue;
    text-decoration: underline;
}

.qr {
    text-decoration: none;
    color: black;
}

.qr:hover {
    color: blue;
    text-decoration: underline;
}
/* END OF MODAL CSS */

@media (min-width: 750px) {
    .btn {
        width: 660px;
    }
}

/* For iPhone 6/7/8 Plus - could include Samsung A32 */
@media only screen and (max-width: 414px) {
    .container {
        grid-template-columns: 1fr;
        grid-template-rows: 0.3fr 1.8fr 0.15fr;
        grid-template-areas:
        "nav"
        "grid";
    }
    nav {
        padding-top: 34.5px;
    }
    .banner-container {
        font-size: 25px;
        margin-top: 0px;
    }

    .menu-btn img {
        margin-top: 3.5px;
    }

    .btn {
        width: 300px;
        font-size: 16px;
    }

    .modal-content {
        width: 90%;
        height: 85%;
}

}

@media only screen and (max-width: 412px) {
    .container {
        grid-template-columns: 1fr;
        grid-template-rows: 0.2fr 1.8fr 0.15fr;
        grid-template-areas:
        "nav"
        "grid";
    }
    nav {
        padding-top: 28px;
    }

    .banner-container {
        font-size: 25px;
        margin-top: 0px;
    }

    .menu-btn img {
        margin-top: 3.5px;
    }

    .btn {
        width: 300px;
        font-size: 16px;
    }
}

/* For Redmi Note 10 Pro */
@media only screen and (max-width: 393px) and (max-height: 735px){
    .container {
        grid-template-columns: 1fr;
        grid-template-rows: 0.2fr 1.8fr 0.15fr;
        grid-template-areas:
        "nav"
        "grid";
    }

    nav {
        padding-top: 19.5px;
    }

    .banner-container {
        font-size: 25px;
        margin-top: 0px;
    }

    .menu-btn img {
        margin-top: 4px;
    }

    .btn {
        width: 300px;
        font-size: 16px;
    }
}

@media only screen and (max-width: 375px) {
    .container {
        grid-template-columns: 1fr;
        grid-template-rows: 0.3fr 1.8fr 0.15fr;
        grid-template-areas:
        "nav"
        "grid";
    }

    nav {
        padding-top: 30px;
    }

    .banner-container {
        font-size: 25px;
        margin-top: 0px;
    }

    .menu-btn img {
        margin-top: 4px;
    }
}

@media only screen and (max-width: 320px) {
    .container {
        grid-template-columns: 1fr;
        grid-template-rows: 0.3fr 1.8fr 0.15fr;
        grid-template-areas:
        "nav"
        "grid";
    }

    nav {
        padding-top: 20px;
    }

    .banner-container {
        font-size: 20px;
        margin-top: 0px;
    }

    .menu-btn img {
        width: 15px;
        height: 15px;
        margin-top: 4px;
    }

    .btn {
        width: 280px;
        font-size: 14px;
    }

    .back img {
        width: 27px;
        height: 27px;
    }
    .side-bar {
        width: 250px;
        height: 100vh;
    }
    .side-bar .menu .item a {
        font-size: 14px;
    }
    .side-bar .close-btn img {
        width: 14px;
    }
    .side-bar .menu .item a .dropdown {
        width: 15px;
    }
    .modal-content {
        font-size: 14px;
    }
}

:root {
    /* scrollbar color*/
    --scrollbar-color: #015c68; 
    --scrollbar-hover-color: #026674; 
    --scrollbar-track-color: #003c44;
}

/*ScrollBar*/::-webkit-scrollbar {
    width: 6px !important;
}

::-webkit-scrollbar-track {
    /* background-color: var(--scrollbar-track-color) !important; */
    background-color: none !important;
}

::-webkit-scrollbar-thumb {
    background-color: var(--scrollbar-color) !important;
    border-radius: 25px!important;
    /* border-style: solid!important; */
    border-style: none !important;
    /* border-color: var(--scrollbar-track-color) !important; */
    border-color: none !important;
    /* border-width: 4px!important; */
}
::-webkit-scrollbar-thumb:hover {
    background-color: var(--scrollbar-hover-color) !important;
    border-radius: 25px!important;
}

input,
textarea,
button,
select,
a {
  -webkit-tap-highlight-color: rgba(0,0,0,0);
}
a:focus,a:visited,a:active{
  outline: none;
}
* {
    -webkit-tap-highlight-color: transparent;
}