/* CUSTOM SCROLL BAR */
::-webkit-scrollbar{
    width: 15px;
}
::-webkit-scrollbar-track{
    background: #260026;
}
::-webkit-scrollbar-thumb{
    background: linear-gradient(#e91e63, #893A90);
}
*{
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
    box-sizing: border-box;
}
body{
    background-color: #260026;
}
.emptyLoader{
    position: absolute;
    background-color: black;
    width: 100%;
    height: 100vh;
    z-index: 99999;
    left: -130%;
    -webkit-transition: .5s;
    transition: .5s;
}
.loader{
    position: absolute;
    background-color: black;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    overflow: visible;
    z-index: 99999;
    -webkit-transition: .5s;
    transition: .5s;
}
.loader img{
    position: absolute;
    height: 250px;
    width: 250px;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}
.header{
    position: absolute;
    left: 0;
    width: 100%;
    height: 100vh;
    overflow-y: scroll;
    background: #260026;
    padding-left: 11%;
    padding-right: 8%;
}

/* SIGN IN POPUP */
.popup{
    position: fixed;
    top: -150%;
    left: 50%;
    opacity: 0;
    transform: translate(-50%,-50%) scale(1.25);
    width: 380px;
    padding: 20px 30px;
    background: #e91e63;
    box-shadow: 2px 2px 5px 5px rgba(0,0,0,0.15);
    border-radius: 10px;
    transition: top 0ms ease-in-out 200ms,
                opacity 200ms ease-in-out 0ms,
                transform 200ms ease-in-out 0ms;
    z-index: 10;
}
.popup.active{
    top: 50%;
    opacity: 1;
    transition: top 0ms ease-in-out 0ms,
                opacity 200ms ease-in-out 0ms,
                transform 200ms ease-in-out 0ms;
}
.popup .close-btn{
    position: absolute;
    top: 10px;
    right: 10px;
    width: 15px;
    height: 15px;
    background: #fff;
    color: #e91e63;
    text-align: center;
    line-height: 15px;
    border-radius: 15px;
    cursor: pointer;
}
.popup .popup-content h2,
.popup .popup-content h4,
.popup .popup-content h5{
    color: #fff;
}
.popup .popup-content h2{
    text-align: center;
    font-size: 25px;
}
.popup .popup-content h4{
    text-align: center;
    font-size: 14px;
}
.popup .popup-content h5{
    text-align: justify;
    margin-bottom: 20px;
    font-size: 11px;
}
.popup-content button {
    background: #fff;
    color: #e91e63;
    border: 0;
    outline: 0;
    font-weight: bold;
    border-radius: 30px;
    transition: scale 0.2 ease;
    padding-top: 3px;
    padding-bottom: 3px;
    padding-left: 3px;
    padding-right: 10px;
    margin: 0 auto;
    display: flex; /* Use flexbox for button content */
    align-items: center; /* Vertically center the content */
}
.popup-content button:hover{
    scale: 1.05;
    cursor: pointer;
}
.popup-content img {
    margin-right: 3px;
    width: 35px;
    height: 35px;
    border-radius: 50%;
}

/* SUBSCRIBE POPUP */
.popup-subscribe{
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    display: none;
    z-index: 9;
}
.contentBox{
    position: relative;
    width: 600px;
    height: 400px;
    background: #e91e63;
    border-radius: 20px;
    display: flex;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}
.contentBox .imgBx{
    position: relative;
    width: 300px;
    height: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.contentBox .imgBx::before{
    content: '';
    position: absolute;
    width: 250px;
    height: 250px;
    background: #260026;
    border-radius: 50%;
}
.contentBox .imgBx img{
    position: relative;
    max-width: 250px;
    z-index: 1;
}
.contentBox .content{
    position: relative;
    width: 300px;
    height: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.contentBox .content h3{
    color: #fff;
    line-height: 1em;
    font-weight: 300;
    font-size: 1.7em;
}
.contentBox .content h2{
    font-size: 4em;
    color: yellow;
    line-height: 1em;
}
.contentBox .content h2 span{
    color: #fff;
    font-size: 0.75em;
    text-transform: uppercase;
}
.contentBox .content p{
    color: #fff;
    font-weight: 300;
    width: 90%;
}
.contentBox .content a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 70%;
    position: relative;
    background: #fff;
    color: #fff;
    text-decoration: none;
    padding: 10px 30px 10px;
    margin: 7px 0 0;
    transition: 0.5s;
    cursor: pointer;
}

.contentBox .content a:hover{
    background: var(--clr);
    color: var(--clr);
    letter-spacing: 0.1em;
    box-shadow: 0 0 35px var(--clr);
}
.contentBox .content a::before{
    content: '';
    position: absolute;
    inset: 2px;
    background: #260026;
}
.contentBox .content a span{
    position: relative;
    z-index: 1;
}
.contentBox .content a i{
    position: absolute;
    inset: 0;
    display: block;
}
.contentBox .content a i::before{
    content: '';
    position: absolute;
    top: 0;
    left: 80%;
    width: 10px;
    height: 4px;
    background: #260026;
    transform: translateX(-50%) skewX(325deg);
    transition: 0.5s;
}
.contentBox .content a:hover i::before{
    width: 20px;
    left: 20%;
}
.contentBox .content a i::after{
    content: '';
    position: absolute;
    bottom: 0;
    left: 20%;
    width: 10px;
    height: 4px;
    background: #260026;
    transform: translateX(-50%) skewX(325deg);
    transition: 0.5s;
}
.contentBox .content a:hover i::after{
    width: 20px;
    left: 80%;
}
.close-subscribe{
    position: absolute;
    top: 10px;
    right: 10px;
    width: 35px;
    height: 35px;
    background: #260026;
    color: #fff;
    text-align: center;
    font-size: 20px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 9;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* MAIN CONTENT */
.container button{
    width: 100%;
    padding: 14px;
    outline: none;
    border: none;
    color: #fff;
    cursor: pointer;
    margin-top: 20px;
    font-size: 17px;
    border-radius: 12px;
    background: #e91e63;
}
.to-top{
    display: none;
    position: fixed;
    bottom: 20px;
    right: 20px;
    font-size: 26px;
    width: 50px;
    height: 50px;
    background-color: #260026;
    color: #fff;
    cursor: pointer;
    outline: none;
    border: 3px solid #fff;
    border-radius: 50%;
    transition-duration: 0.2s;
    transition-timing-function: ease-in-out;
    transition-property: background-color, color;
    z-index: 99998;
}
.to-top:hover, .to-top:focus{
    background-color: #e91e63;
    color: #fff;
}
  
  /* Animations */
  .btnEntrance{
    animation-duration: 0.5s;
    animation-fill-mode: both;
    animation-name: btnEntrance;
  }
  /* zoomIn */
  /* @keyframes btnEntrance { 
    from {
      opacity: 0;
      transform: scale3d(0.3, 0.3, 0.3);
    }
    to {
      opacity: 1;
    }    
  } */
  
  /* fadeInUp */
  @keyframes btnEntrance {
    from {
      opacity: 0;
      transform: translate3d(0, 100%, 0);
    }
    to {
      opacity: 1;
      transform: translate3d(0, 0, 0);
    }
  }
  
  .btnExit {
    animation-duration: 0.25s;
    animation-fill-mode: both;  
    animation-name: btnExit;
  }
  /* zoomOut */
  /* @keyframes btnExit {
    from {
      opacity: 1;
    }
    to {
      opacity: 0;
      transform: scale3d(0.3, 0.3, 0.3);
    }
  } */
  
  /* fadeOutDown */
  @keyframes btnExit {
    from {
      opacity: 1;
    }
    to {
      opacity: 0;
      transform: translate3d(0, 100%, 0);
    }
  }
  .top-nav{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 30px 0 15px;
    border-bottom: 1px solid #bababa;
}
.top-nav .logoMobDiv{
    cursor: pointer;
    display: none;
}
.top-nav .logoMobDiv .logoMobile{
    width: 60px;
}
.top-nav ul li{
    list-style: none;
    display: inline-block;
    margin-right: 30px;
    margin-top: 10px;
    margin-bottom: 10px;
}
.top-nav ul li a{
    text-decoration: none;
    color: #fff;
    font-size: 15px;
}
.top-nav-right{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.top-nav-right img{
    width: 35px;
    height: 35px;
    border-radius: 50%;
}
.top-nav button{
    color: #fff;
    border: 0;
    outline: 0;
    font-weight: bold;
    margin-left: 30px;
    border-radius: 30px;
    padding: 10px 20px;
    cursor: pointer;
    transition: scale 0.2 ease;
    background: linear-gradient(#00bcd4, #e91e63, #3f51b5, #00bcd4);
    background-size: 100% 500%;
    background-position: 0 40%;
    animation: backcolor 20s linear infinite;
}
.login-btn {
    display: flex;
    align-items: center;
}
.login-btn button {
    padding-top: 3px;
    padding-bottom: 3px;
    padding-left: 3px;
    padding-right: 10px;
    display: flex; /* Use flexbox for button content */
    align-items: center; /* Vertically center the content */
}
.login-btn img {
    margin-right: 3px;
    width: 35px;
    height: 35px;
    border-radius: 50%;
}
.top-nav button:hover{
    scale: 1.05;
    color: #fff;
}
.top-nav button:active{
    scale: 0.95;
}
.top-nav .toggle_btn{
    display: none;
    color: #fff;
    margin-left: 30px;
    font-size: 1.5rem;
    cursor: pointer;
}
.top-nav .user-pic{
    margin-left: 30px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
}

/* PROFILE SUBMENU */
.sub-menu-wrap{
    position: absolute;
    right: 6%;
    width: 350px;
    z-index: 1;
    max-height: 0px;
    overflow: hidden;
    transition: max-height 0.5s;
}
.sub-menu-wrap.open-menu{
    max-height: 400px;
}
.sub-menu{
    background: #e91e63;
    border-radius: 12px;
    padding: 20px;
    margin: 10px;
}
.user-info{
    display: flex;
    align-items: center;
}
.user-info h4,
.user-info h5{
    color: #fff;
}
.user-info img{
    width: 60px;
    border-radius: 50%;
    margin-right: 15px;
}
.sub-menu hr{
    border: 0;
    height: 1px;
    width: 100%;
    background: #fff;
    margin: 15px 0 10px;
}
.sub-menu-link{
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #fff;
    margin: 12px 0;
    cursor: pointer;
}
.sub-menu-link p{
    font-size: 15px;
    width: 100%;
}
.sub-menu-link i{
    width: 40px;
    background: #260026;
    border-radius: 50%;
    padding: 8px;
    margin-right: 15px;
}
.sub-menu-link span{
    font-size: 22px;
    transition: transform 0.5s;
}
.sub-menu-link:hover span{
    transform: translateX(5px);
}
.sub-menu-link:hover p{
    font-weight: 600;
}

/* SIDEBAR */
.side-nav{
    position: fixed;
    left: 0;
    top: 0;
    width: 100px;
    height: 100vh;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: column;
    padding: 50px 0;
    background: linear-gradient(#00bcd4, #e91e63, #3f51b5, #00bcd4);
    background-size: 100% 500%;
    background-position: 0 40%;
    animation: backcolor 20s linear infinite;
}
@keyframes backcolor{
    0%{
        background-position: 0 0%;
    }
    100%{
        background-position: 0 400%;
    }
}
.side-nav .logo{
    width: 60px;
    cursor: pointer;
}
.side-nav a{
    position: relative;
    background: #fff;
    color: #fff;
    text-decoration: none;
    transform: rotate(-90deg) translateX(50%);
    width: max-content;
    padding: 10px 30px;
    transition: 0.5s;
}
.side-nav a:hover{
    background: var(--clr);
    color: var(--clr);
    letter-spacing: 0.1em;
    box-shadow: 0 0 35px var(--clr);
}
.side-nav a::before{
    content: '';
    position: absolute;
    inset: 2px;
    background: #260026;
}
.side-nav a span{
    position: relative;
    z-index: 1;
}
.side-nav a i{
    position: absolute;
    inset: 0;
    display: block;
}
.side-nav a i::before{
    content: '';
    position: absolute;
    top: 0;
    left: 80%;
    width: 10px;
    height: 4px;
    background: #260026;
    transform: translateX(-50%) skewX(325deg);
    transition: 0.5s;
}
.side-nav a:hover i::before{
    width: 20px;
    left: 20%;
}
.side-nav a i::after{
    content: '';
    position: absolute;
    bottom: 0;
    left: 20%;
    width: 10px;
    height: 4px;
    background: #260026;
    transform: translateX(-50%) skewX(325deg);
    transition: 0.5s;
}
.side-nav a:hover i::after{
    width: 20px;
    left: 80%;
}
.top-nav ul li,
.side-nav a{
    cursor: pointer;
}

/* DROPDOWN MENU */
.dropdown_menu{
    z-index: 9999;
    display: none;
    position: absolute;
    right: 2rem;
    top: 120px;
    height: 0;
    width: 300px;
    background: rgba(19, 0, 19, 0.8);
    backdrop-filter: blur(15px);
    border-radius: 10px;
    overflow: hidden;
    transition: height .2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.dropdown_menu.open{
    height: 360px;
}
.dropdown_menu li{
    padding: 0.7rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 10px;
    margin-right: 10px;
    margin-top: 10px;
    margin-bottom: 10px;
}
.dropdown_menu li a{
    text-decoration: none;
    color: #ffffff;
    font-size: 15px;
}
.dropdown_menu button{
    background: #e91e63;
    width: 100%;
    color: #fff;
    border: 0;
    outline: 0;
    font-weight: bold;
    border-radius: 30px;
    padding: 10px 20px;
    cursor: pointer;
    transition: scale 0.2 ease;
}
.dropdown_menu button:hover{
    scale: 1.05;
    color: #fff;
}
.dropdown_menu button:active{
    scale: 0.95;
}

/*=============== BODY DESIGN ===============*/
.brand-bar{
    height: 100px;
    width: 100%;
}
.bodoLogo{
    height: 100px;
    width: 30%;
    text-align: center;
    display: flex;
    align-items: center;
    color: white;
    float: left;
}
.bodoLogoTxT{
    height: 100px;
    width: 70%;
    text-align: center;
    font-size: smaller;
    display: flex;
    align-items: center;
    justify-content: right;
    color: white;
    float: left;
}
.bodoLogo .bodoSkyLogo{
    height: 65%;
    margin-right: auto;
    display: block;
}
.bodoLogo .bodoDictAronaiLogo{
    height: 100%;
    width: auto;
    margin-left: auto;
    display: block;
}
.input-group{
    margin: auto;
    position: relative;
    width: 300px;
    height: 42px;
    border: 4px solid #260026;
    padding: 0px 10px;
    border-radius: 50px;
}
.form-outline{
    width: 100%;
    height: 100%;
    vertical-align: middle;
}
.search{
    background: none;
    border: none;
    height: 100%;
    width: 85%;
    padding: 0px 5px;
    border-radius: 50px;
    font-size: 15px;
    color: #260026;
    font-weight: 500;
}
::placeholder{
    color: #fff;
}
.search:focus{
    outline: none;
}
.material-icons{
    font-size: 25;
    color: #fff;
    vertical-align: middle;
}
.material-icons:hover{
    cursor: pointer;
}
.mid-content{
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 30px;
    margin-bottom: -30px;
}
#videoPlayer{
    display: flex;
    justify-content: center;
    align-items: center;
    height: auto;
    width: 100%;
    padding-top: 25px;
    margin-right: 2.5px;
    transition: transform .6s cubic-bezier(.9, 0, .3, .9);
}
.video-iframe{
    width: 800px;
    height: 455px;
    max-width: 100%;
    border-radius: 12px;
    border: 3px solid #e91e63;
    outline: none;
}

.post{
    width: 50%;
    margin-left: 2.5px;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.post-img{
    height: 380px;
    width: 100%;
    border-radius: 12px;
    transition: .3s linear;
}
.post-content{
    background-color: #ffffffdd;
    margin: 0 20px;
    padding: 30px;
    border-radius: 12px;
    transform: translateY(-100px);
    transition: .3s linear;
}
.post-content h3{
    font-size: 16px;
    margin-bottom: 0px;
}
.date{
    font-size: 15px;
    color: #260026;
    width: 100%;
    text-align: right;
    box-sizing: border-box;
}
@media (min-width: 1130px){
    .post:hover .post-img{
        transform: translateY(20px);
        cursor: pointer;
    }
    .post:hover .post-content{
        transform: translateY(-120px);
        cursor: pointer;
    }
}

/* FOOTER */
footer{
    margin-top: 20px;
    position: relative;
    width: 100%;
    background: #e91e63;
    min-height: 100px;
    padding: 20px 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    border-radius: 15px;
}
footer .social_icons,.footer_menu{
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 10px 0;
    flex-wrap: wrap;
}
footer .social_icons li,.footer_menu li{
    list-style: none;
}
footer .social_icons li a{
    font-size: 2em;
    color: #fff;
    margin: 0 10px;
    display: inline-block;
    transition: 0.5s;
}
footer .social_icons li a:hover{
    transform: translateY(-10px);
}
footer .footer_menu li a{
    font-size: 1.2em;
    color: #fff;
    margin: 0 10px;
    display: inline-block;
    text-decoration: none;
    opacity: 0.75;
    cursor: pointer;
}
footer .footer_menu li a:hover{
    opacity: 1;
}
footer p{
    color: #fff;
    text-align: center;
    margin-top: 15px;
    margin-bottom: 10px;
    font-size: 1.1em;
}

/* RESPONSIVE DESIGN */
@media(max-width: 1130px){
    /* CUSTOM SCROLL BAR */
    ::-webkit-scrollbar{
        width: 5px;
    }

    /* SUBSCRIBE POPUP */
    .contentBox{
        width: 300px;
        height: auto;
        flex-direction: column;
    }
    .contentBox .imgBx::before{
        background: #e91e63;
    }
    .contentBox .imgBx{
        height: 200px;
        transform: translateY(-50px);
    }
    .contentBox .content{
        height: auto;
        text-align: center;
        padding: 20px;
        padding-top: 0;
    }

    .contentBox .content a {
        width: 100%;
    }

    /* MAIN CONTENT */
    .header{
        padding-left: 5%;
        padding-right: 5%;
    }
    .to-top{
        font-size: 22px;
        width: 40px;
        height: 40px;
        bottom: 15px;
        right: 15px;
    }
    .top-nav ul li,
    .top-nav .contact-us,
    .side-nav{
        display: none;
    }
    .top-nav .logoMobDiv,
    .top-nav .toggle_btn{
        display: block;
    }
    .dropdown_menu{
        display: block;
    }
    html{
        font-size: 70%;
    }
    .brand-bar{
        height: 100px;
        width: 100%;
    }
    .bodoLogo{
        height: 100px;
        width: 30%;
        text-align: center;
        display: flex;
        align-items: center;
        color: white;
        float: left;
    }
    .bodoLogo .bodoSkyLogo{
        height: 50%;
    }
    .bodoLogoTxT{
        height: 100px;
        width: 70%;
    }

    /* PROFILE SUBMENU */
    .sub-menu-wrap{
        right: 2%;
    }
    .user-info h4{
        font-size: 14px;
    }
    .user-info h5{
        font-size: 12px;
    }

    /* MID CONTENT */
    .input-group{
        width: 200px;
        height: 25px;
        border: 2px solid #260026;
    }
    .search{
        width: 80%;
        font-size: 13px;
    }
    .material-icons{
        font-size: 16px;
    }
    .mid-content{
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    #videoPlayer, .post{
        margin-bottom: 0px;
        margin-left: 0px;
        margin-right: 0px;
    }
    #videoPlayer{
        height: auto;
        width: 100%;
    }
    .video{
        display: flex;
        justify-content: center;
        align-items: center;
        height: auto;
    }
    .video-iframe{
        height: 285px;
        width: 500px;
    }
    .post{
        width: 100%;
    }
}

@media(max-width: 576px){
    /* PROFILE SUBMENU */
    .sub-menu-wrap{
        padding-left: 4%;
        width: 100%;
    }

    /* SIGN IN POPUP */
    .popup {
        width: calc(100% - 130px);
    }
    .popup .popup-content h2{
        font-size: 15px;
    }
    .popup .popup-content h4{
        font-size: 10px;
    }
    .popup .popup-content h5{
        font-size: 8px;
    }
    .popup-content button {
        font-size: 12px;
    }
    .popup-content img {
        width: 25px;
        height: 25px;
    }

    /* TRANSLATOR */
    .translator{
        padding: 20px;
    }
    .wrapper .text-input{
        flex-direction: column;
    }
    .text-input .to-text{
        border-left: 0px;
        border-top: 1px solid #ccc;
    }
    .text-input textarea{
        height: 200px;
    }
    .controls .row .icons{
        font-size: 14px;
    }
    .controls .row.from .icons{
        padding-right: 0px;
    }
    .controls .row.to .icons{
        padding-left: 0px;
    }
    .container button{
        padding: 13px;
        font-size: 16px;
    }
    .controls .row select{
        font-size: 16px;
    }
    .controls .exchange{
        font-size: 14px;
    }
    .dropdown_menu{
        left: 2rem;
        width: unset;
    }
    .top-nav button{
    margin-left: 10px;
    }
    .top-nav .toggle_btn{
        margin-left: 10px;
    }
    .top-nav .user-pic{
        margin-left: 10px;
    }
    .to-top{
        font-size: 18px;
        width: 32px;
        height: 32px;
        bottom: 6px;
        right: 6px;
    }
    .mid-content{
        margin-bottom: -30px;
    }
    #videoPlayer{
        height: auto;
        padding-top: 10px;
    }
    .video{
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
    }
    .video-iframe{
        height: 218px;
    }
    .post-content{
        padding: 20px;
        transform: translateY(-60px);
    }
    .post-img{
        height: 200px;
    }
    .post-content h3{
        font-size: 13px;
        margin-bottom: 10px;
    }
    .date{
        font-size: 12px;
        color: #260026;
    }
    footer{
        padding: 2px 5px;
    }
}