:root {
    --border: #663300;
    --c1: #663300;
    --green: #33cc33;
    --fc: #cc9900;
    /* --base-bg: #a5aec4; */
    --base-bg: #c4cbdc;

}

body {
    font-family: "Afacad Flux", system-ui, -apple-system, BlinkMacSystemFont,
        "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans",
        "Helvetica Neue", sans-serif;
    /* font-size: 22px; */
    position: relative;
    background-color: var(--base-bg);
}
html {
    scrollbar-gutter: stable;
}
html {
    scroll-behavior: smooth;
}

/* UTILITY CLASSES */

.base-bg {
    background-color: var(--base-bg);
}

.w-max-content {
    width: max-content;
}

.content-section-wrap {
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow-x: auto;
}

/* FOOTER CSS */
.bg-pinkish {
    background-image: linear-gradient(7deg, #d3b3b3cc, transparent);
}

footer {
    background-color: #343a40;
    color: #fff;
    font-size: 0.9rem;
    text-align: center;
}

footer a {
    color: #ffc107;
    text-decoration: none;
}

footer a:hover,
footer a:focus,
footer a:active {
    color: var(--green);
}

.bg-uph {
    background-color: #152121fa !important;
}

/* HERO CSS FOR ANIMATION */

/* hero background image */
.new-heros {
    overflow: hidden;
}

.hero-image,
.fade-in-fwd {
    animation: fade-in-fwd 0.6s cubic-bezier(0.39, 0.575, 0.565, 1) both;
}

@keyframes fade-in-fwd {
    0% {
        transform: translateZ(-80px);
        opacity: 0;
    }

    100% {
        transform: translateZ(0);
        opacity: 1;
    }
}

.kenburns-top {
    animation: kenburns-top 5s ease-out both;
}

@keyframes kenburns-top {
    0% {
        transform: scale(1) translateY(0);
        transform-origin: 50% 16%;
    }

    100% {
        transform: scale(1.25) translateY(-15px);
        transform-origin: top;
    }
}

/* button fouse */
.shake-lr {
    animation: shake-lr 0.7s cubic-bezier(0.455, 0.03, 0.515, 0.955) both;
}

@keyframes shake-lr {
    0%,
    100% {
        transform: rotate(0deg);
        transform-origin: 50% 50%;
    }

    10% {
        transform: rotate(8deg);
    }

    20%,
    40%,
    60% {
        transform: rotate(-10deg);
    }

    30%,
    50%,
    70% {
        transform: rotate(10deg);
    }

    80% {
        transform: rotate(-8deg);
    }

    90% {
        transform: rotate(8deg);
    }
}

/* educatoin for everyone
 */
.ff-top,
.text-shadow-drop-center {
    animation: text-shadow-drop-center 0.6s both;
}

@keyframes text-shadow-drop-center {
    0% {
        text-shadow: 0 0 0 transparent;
    }

    100% {
        text-shadow: 0 0 18px rgba(0, 0, 0, 0.35);
    }
}

.alert-notification {
    z-index: 2000;
}

.alert-notification {
    animation: flip-in-hor-bottom 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.5s
        both;
}

@keyframes flip-in-hor-bottom {
    0% {
        transform: rotateX(80deg);
        opacity: 0;
    }

    100% {
        transform: rotateX(0);
        opacity: 1;
    }
}

.blink-2 {
    animation: blink-2 1s infinite alternate 0.2s linear;
}

@keyframes blink-2 {
    0% {
        opacity: 1;
        background-image: linear-gradient(355deg, #fff007, transparent);
    }

    50% {
        opacity: 0.8;
        background-image: linear-gradient(250deg, #a3cf10, transparent);
    }

    100% {
        opacity: 1;
        background-image: linear-gradient(355deg, #fff007, transparent);
    }
}

.quiz-btn {
    background-image: linear-gradient(355deg, #fff007, transparent);
}

.ui {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
        Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue",
        sans-serif;
}

.quiz-btn:hover {
    color: rgb(193, 158, 158) !important;
    background-color: #062442 !important;
    background-image: none !important;
}

/*
 * --------------------------------------------------------------------------------------------------------------------
 * core
 * --------------------------------------------------------------------------------------------------------------------
 */

/* @import url('hero.css'); */

.fs-top {
    font-size: clamp(2rem, 3rem, 4.5vw);
    font-weight: 800;
    font-family: "Open Sans", system-ui, -apple-system, BlinkMacSystemFont;
    text-align: left;
}

.ff-ui {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
        Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue",
        sans-serif !important;
}

.navbar-brand {
    font-weight: bold;
}

.ff-open-sans {
    font-family: "Open Sans", "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

.ff-top {
    font-family: "Playfair Display";
}

.navbar-toggler:focus {
    border: none;
    box-shadow: none;
}

/*
 * -------------------------------------------------------------------------------------------------------------------- 
 * hero css
 * --------------------------------------------------------------------------------------------------------------------
 */

.new-heros {
    position: relative;
    height: 90vh;
    /* background-color:var(--fc); */
}

/* The hero image */
.hero-image {
    /* Use "linear-gradient" to add a darken background effect to the image (photographer.jpg). This will make the text easier to read */
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
        url("../imgs/image.png");

    /* Set a specific height */
    height: 100%;

    /* Position and center the image to scale nicely on all screens */
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

/* Place text in the middle of the image */
.hero-text {
    text-align: center;
    position: absolute;
    top: 30%;
    left: 25%;
    transform: translate(-25%, -25%);
    color: white;
    text-shadow: 0 0 5px #000;
}

.ts-0 {
    text-shadow: none;
}

/*
 * -------------------------------------------------------------------------------------------------------------------- 
 * achivements
 * --------------------------------------------------------------------------------------------------------------------
 */
/* @import url('core.css'); */

#auto-lr-scroll::-webkit-scrollbar,
.auto-lr-scroll::-webkit-scrollbar {
    display: none;
}

.ach-bar {
    position: relative;
    display: inline-block;
    padding: 25px 3px;
    color: #03e9f4;
    margin: 8px;
    text-decoration: none;
    text-transform: uppercase;
    transition: 0.5s;
    letter-spacing: 4px;
    overflow: hidden;
}

.ach-bar:nth-child(1n) {
    filter: hue-rotate(270deg);
}

.ach-bar:nth-child(2n) {
    filter: hue-rotate(110deg);
}
/* 
.ach-bar span {
    position: absolute;
    display: block;
}

.ach-bar span:nth-child(1) {
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #03e9f4);
    animation: animate1 1s linear infinite;
}

@keyframes animate1 {
    0% {
        left: -100%;
    }

    50%,
    100% {
        left: 100%;
    }
}

.ach-bar span:nth-child(2) {
    top: -100%;
    right: 0;
    width: 2px;
    height: 100%;
    background: linear-gradient(180deg, transparent, #03e9f4);
    animation: animate2 1s linear infinite;
    animation-delay: 0.25s;
}

@keyframes animate2 {
    0% {
        top: -100%;
    }

    50%,
    100% {
        top: 100%;
    }
}

.ach-bar span:nth-child(3) {
    bottom: 0;
    right: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(270deg, transparent, #03e9f4);
    animation: animate3 1s linear infinite;
    animation-delay: 0.50s;
}

@keyframes animate3 {
    0% {
        right: -100%;
    }

    50%,
    100% {
        right: 100%;
    }
}


.ach-bar span:nth-child(4) {
    bottom: -100%;
    left: 0;
    width: 2px;
    height: 100%;
    background: linear-gradient(360deg, transparent, #03e9f4);
    animation: animate4 1s linear infinite;
    animation-delay: 0.75s;
}

@keyframes animate4 {
    0% {
        bottom: -100%;
    }

    50%,
    100% {
        bottom: 100%;
    }
} */

.glowing::before,
.ach-bar::before {
    content: "";
    position: absolute;
    left: -2px;
    top: -2px;
    background: linear-gradient(
        45deg,
        #e8f74d,
        #ff6600d9,
        #00ff66,
        #13ff13,
        #ad27ad,
        #bd2681,
        #6512b9,
        #ff3300de,
        #5aabde
    );
    background-size: 400%;
    width: calc(100% + 5px);
    height: calc(100% + 5px);
    z-index: -1;
    animation: glower 20s linear infinite;
}

@keyframes glower {
    0% {
        background-position: 0 0;
    }

    50% {
        background-position: 400% 0;
    }

    100% {
        background-position: 0 0;
    }
}

/*
 * -------------------------------------------------------------------------------------------------------------------- 
 * end of achivements
 ***************
 * FOOTER
 * --------------------------------------------------------------------------------------------------------------------
 */

.blinking {
    animation: blink 1.5s ease-in-out infinite alternate;
}

@keyframes blink {
    from {
        color: #0ff;
    }
    50% {
        color: #ff0;
    }
    to {
        color: #0ff;
    }
}
/* hide alt=ad */

img[alt="ad"] {
    display: none;
}

.scroll-animate {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease;
}

.scroll-animate.visible {
    opacity: 1;
    transform: translateY(0);
}

.scroll-animate.hidden-up {
    opacity: 0;
    transform: translateY(-20px);
    transition: all 0.5s ease;
}

.scroll-animate.hidden-down {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease;
}

.zoom-hover {
    transition: transform 0.3s ease;
}
.zoom-hover:hover {
    transform: scale(1.05);
    transition: transform 0.3s ease;
}
.zoom-in-hover {
    transition: transform 0.3s ease;
}
.zoom-in-hover:hover {
    transform: scale(0.99);
    transition: transform 0.3s ease;
}

.ribbon {
    width: 60px;
    font-size: 14px;
    padding: 4px;
    position: absolute;
    right: -25px;
    top: -12px;
    text-align: center;
    border-radius: 25px;
    transform: rotate(20deg);
    background-color: #ff9800;
    color: white;
}

.animation_main_div{
  position:absolute;
  margin:0px auto;
  display:block;
  width:50px;
  left:30%;
  top:30%;
  margin-left:20px;
  margin-top:20px;
}


.circle{
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #2196F3;
     position: absolute;
    -webkit-animation-timing-function: linear;
    -webkit-animation: scaler 4s infinite;  /* Chrome, Safari, Opera */
    -webkit-animation-timing-function: linear;  /* Chrome, Safari, Opera */
    animation: scaler 4s infinite;
    animation-timing-function: linear;
}

.circle2{
    -webkit-animation-delay: 1s;
}

.circle3{

    -webkit-animation-delay: 2s;
}


.circle4{
    -webkit-animation-delay: 3s;
}



@-webkit-keyframes scaler{

    0%{
        -webkit-transform: scale(1);
    }

    33%{
        -webkit-transform: scale(4);
        opacity: 0.20;
    }

    67%{
        -webkit-transform: scale(7);
        opacity: 0.10;
    }

    100%{
        -webkit-transform: scale(10);
        opacity: 0;
    }


}

@-moz-keyframes scaler{

    0%{
        -moz-transform: scale(1);
    }

    33%{
        -moz-transform: scale(4);
        opacity: 0.20;
    }

    67%{
        -moz-transform: scale(7);
        opacity: 0.10;
    }

    100%{
        -moz-transform: scale(10);
        opacity: 0;
    }


}

@keyframes scaler{

    0%{
        transform: scale(1);
    }

    33%{
        transform: scale(4);
        opacity: 0.20;
    }

    67%{
        transform: scale(7);
        opacity: 0.10;
    }

    100%{
        transform: scale(10);
        opacity: 0;
    }


}