@import url('https://fonts.googleapis.com/css2?family=Ubuntu:wght@300;400;500;700&display=swap');

:root {
    --peoblue: #1D1F2E;
    --peogolddark: #C5701E;
    --peogoldlight: #F4AD1F;
    --peogrey: #ACABA9;
    --grey: #252525;
    --white: #ffffff;
    --spadding: 20px;
    --npadding: 50px;
    --lpadding: 100px;
    --sradius: 20px;
    --nradius: 20px;
    --lradius: 50px;
}

.darknet {
    z-index: -1;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background-color: unset;
    background: linear-gradient(rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.6) 100%);
    /* display: none; */
}

.bgwhite {
    background-color: var(--white);
    color: var(--peoblue);
}

.bgblue {
    background-color: var(--peoblue);
    color: var(--peogoldlight)
}

.bggold {
    background-color: var(--peogolddark);
}

.bggrey {
    background-color: var(--peogrey);
    color: var(--peoblue);
}

.bggoldlight {
    background-color: var(--peogoldlight);
    color: var(--peoblue);
}

body {
    font-family: 'Ubuntu',
        sans-serif;
    color: var(--grey) !important;
    font-weight: 300;
    background-color: #efefefcb;
}


.main-logo {
    height: 60px;
    padding: 0px;
    margin: 15px 0px;
}

.footer-logo {
    height: 100px;
    /* width: 150px; */
}

.footer-course-logo {
    height: 150px;
}

.pay-accept {
    height: 30px;
    margin-bottom: 10px;
}

.center-box {
    display: grid;
    place-items: center;
}

.text-box {
    padding: var(--npadding);
}

.text-box-big {
    padding: var(--lpadding);
}

.all-round-box {
    -webkit-border-radius: var(--sradius);
    -moz-border-radius: var(--sradius);
    border-radius: var(--sradius);
    overflow: hidden;
}

.trans-box {
    background-color: #ffffff00;
}

.empty-space {
    height: 50px;
}

.jumbo-video {
    height: 100%;
    width: 100%;
    object-fit: cover;
    position: absolute;
    z-index: -1;
}

.jumbo-container {
    height: 100vh;
    position: relative;
}


.jumbo-text {
    color: white;
    text-align: center;
    text-shadow: 5px 4px 7px #000000;
    /* background-color: rgba(0, 0, 0, 0.5); */
    /* From https://css.glass
    background: rgba(255, 255, 255, 0.4);
    /* backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(6.5px);

    -webkit-border-radius: var(--sradius);
    -moz-border-radius: var(--sradius);
    border-radius: var(--sradius);
    overflow: hidden; */
}

.jumbo-arrow {
    position: absolute;
    bottom: 0;
    height: 20%;
}

.jumbo-link {
    background-color: rgb(217, 217, 217);
    /* border: 1px solid var(--peogrey); */
    color: var(--peoblue) !important;
    font-weight: 700;
    font-size: 200%;
    padding: 20px 40px;
    -webkit-border-radius: var(--sradius);
    -moz-border-radius: var(--sradius);
    border-radius: var(--sradius);
    transition: all 0.2s ease;
    text-shadow: none;
    margin: 5px;
}

.jumbo-link:hover {
    background-color: var(--peogoldlight);
    transform: scale(1.1);
}

.jumbo-d-arrow {
    height: 50px;
}

.course-list {
    margin-top: -100px;
}

.course-item-box {
    min-height: 300px;
    position: relative;
    padding: 15px;
    color: var(--white);
    font-size: 110%;
    font-weight: 700;
    -webkit-border-radius: var(--sradius);
    -moz-border-radius: var(--sradius);
    border-radius: var(--sradius);
    overflow: hidden;
}

.course-item-box div {
    text-align: center;
    padding: var(--spadding);
}

.course-box-img {
    width: 60%;
    /* height: 100%;
    object-fit: cover; */
    /* position: absolute; */
    /* z-index: -1; */
    filter: brightness(1);
    transition: all 0.3s ease;
    display: inline;
}

.course-item-box:hover>div>.course-box-img {
    scale: 1.2;
}

.serv-box {
    text-align: center;
    padding: var(--spadding);
}

.serv-box img {
    padding: var(--spadding);
}

.testi-box {
    text-align: left;
    padding: var(--npadding);
}

.serv-ttl {
    font-size: 130%;
    font-weight: 500;
}

.why-box {
    text-align: center;
    padding: var(--spadding);
    font-size: 120%;
    display: grid;
    place-items: center;
}

.full-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-member {
    text-align: center;
    padding: var(--spadding);
}

.team-img-container {
    width: 100%;
    aspect-ratio: 1/1.2;
    text-align: center;
}

.team-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    -webkit-border-radius: var(--sradius);
    -moz-border-radius: var(--sradius);
    border-radius: var(--sradius);
    /* filter: grayscale(100); */
    transition: all 0.5s ease;
}

.team-member:hover .team-img {
    filter: grayscale(0);
}

.team-text {
    text-align: center;
}

.footer-box {
    color: white;
}

.footer-box {
    background-color: #efefefcb;
    color: var(--peoblue);
    -webkit-border-top-left-radius: var(--sradius);
    -webkit-border-top-right-radius: var(--sradius);
    -moz-border-radius-topleft: var(--sradius);
    -moz-border-radius-topright: var(--sradius);
    border-top-left-radius: var(--sradius);
    border-top-right-radius: var(--sradius);
}

.nextbatch {
    font-size: 500%;
}

.time-cover {
    position: relative;
    height: 100vh;
}

.time-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    filter: brightness(0.5);
    /* opacity: 0.2; */
}

.time-text {
    position: relative;
    z-index: 2;
    color: white;
}

.pay-link {
    display: inline-block;
    width: 100px;
    height: auto;
}

.trading-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: var(--npadding);
}

.content-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-img {
    background-image: url(../media/aboutpeoeye.jpg);
    background-position: center bottom;
    background-repeat: no-repeat;
    background-size: cover;
    min-height: 400px;
}

.all-courses {
    /* display: grid;
    grid-template-columns: repeat(3, 1fr); */
    height: 300px;
    padding-right: 10px;
    overflow-y: scroll;
}

.courses-box {
    background-color: rgba(0, 0, 0, 0.61);
    -webkit-border-radius: var(--sradius);
    -moz-border-radius: var(--sradius);
    border-radius: var(--sradius);
    overflow: hidden;
    padding: 10px;
}

.crypto-box {
    /* background-image: url(../media/crypto/bg.webp); */
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.9)),
        url('../media/crypto/bg.webp');
    background-repeat: no-repeat;
    background-size: cover;
}

.forex-box {
    /* background-image: url(../media/forex/bg.webp); */
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.9)),
        url('../media/forex/bg.webp');
    background-repeat: no-repeat;
    background-size: cover;
}

.stock-box {
    /* background-image: url(../media/stock/bg.webp); */
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.9)),
        url('../media/stock/bg.webp');
    background-repeat: no-repeat;
    background-size: cover;
}

.course-box {
    padding: 15px 30px;
    /* background-color: var(--peogoldlight); */
    background-color: rgb(227, 227, 227);
    margin: 5px 0px;
    list-style: none;
    color: var(--grey);
    font-size: 120%;
    /* text-align: center; */
}

.course-day {
    font-size: 60%;
}

.course-ttl {
    font-size: 80%;
    font-weight: 500;
    text-transform: uppercase;
}

.g-map-container {
    padding: 5px;
    background-color: white;
}

.g-map {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
}

#all-courses::-webkit-scrollbar-track {
    /* -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3); */
    background-color: #F5F5F5;
}

#all-courses::-webkit-scrollbar {
    width: 10px;
    background-color: #F5F5F5;
}

#all-courses::-webkit-scrollbar-thumb {
    background-color: #F90;
    background-image: -webkit-linear-gradient(45deg,
            rgba(255, 255, 255, .2) 25%,
            transparent 25%,
            transparent 50%,
            rgba(255, 255, 255, .2) 50%,
            rgba(255, 255, 255, .2) 75%,
            transparent 75%,
            transparent)
}

.icon-bar {
    position: fixed;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}

.icon-bar a {
    display: block;
    text-align: center;
    padding: 16px;
    transition: all 0.3s ease;
    color: white;
    font-size: 20px;
    margin: 5px;
}

.icon-bar a:hover {
    background-color: var(--peogolddark);
    transform: scale(1.05);
}

.facebook {
    background: #3B5998;
    color: white;
}

.twitter {
    background: #55ACEE;
    color: white;
}

.insta {
    background: #470061;
    color: white;
}

.tiktok {
    background: #db00ba;
    color: white;
}

.youtube {
    background: #bb0000;
    color: white;
}

.whatsapp {
    background: #3b8911;
    color: white;
}

.telegram {
    background: #195bdf;
    color: white;
}

.mobile-only {
    display: none;
}

.why-icon {
    display: block;
    width: 100px !important;
    margin-bottom: 20px;
}

.boxinput {
    border: 0px solid var(--peogolddark);
    background-color: rgb(231, 231, 231);
    color: var(--peoblue) !important;
    padding: 15px 30px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    border-radius: 20px;
    width: 100%;
    display: block;
}

.subm {
    background-color: var(--peogoldlight);
    color: black;
    padding: 15px 30px;
    border: none;
    transition: all 0.5s ease;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    border-radius: 20px;
}

textarea:focus,
input:focus {
    outline: none;
}

.subm:hover {
    background-color: var(--peogolddark);
}

.course-group {
    display: inline-block;
    font-size: 40px;
    padding: 0px 10px;
    transition: all 0.2s ease;
}

.course-group:hover {
    color: var(--peogolddark);
}

.main-link {
    color: black;
    transition: all 0.3s ease;
}

.main-link:hover {
    color: var(--peogolddark) !important;
}

@media (max-width: 992px) {
    .navbar-nav {
        align-items: start !important;
        padding: 20px;
        padding-bottom: 30px;
    }
}

@media (max-width: 768px) {
    :root {
        --spadding: 15px;
        --npadding: 25px;
        --lpadding: 50px;
        --sradius: 20px;
        --nradius: 30px;
        --lradius: 50px;
    }

    .nextbatch {
        font-size: 300%;
    }

    .mobile-only {
        display: block;
    }
}

@media (max-width: 576px) {
    :root {
        --spadding: 10px;
        --npadding: 20px;
        --lpadding: 30px;
        --sradius: 15px;
        --nradius: 20px;
        --lradius: 30px;
    }

    .main-logo {
        height: 45px;
        margin: 15px 0px;
    }

    .nextbatch {
        font-size: 150%;
    }

    .icon-bar {
        display: none;
    }

    .jumbo-link {
        font-size: 150%;
        padding: 10px 20px;
        margin-bottom: 5px;
    }

    .about-img {
        background-size: 120%;
        background-position: center center;
    }

    .pay-accept {
        height: auto;
        width: 100%;
    }

    .footer-logo {
        height: auto;
        width: 100%;
        margin-bottom: 20px;
    }

    .jumbo-container {
        min-height: 60vh;
        height: auto;
    }

    .time-cover {
        min-height: 60vh;
        height: auto;
    }

    .course-list {
        margin-top: 0px;
    }

}