@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap');

* {
    margin: 0;
    padding: 0;
    font-family: "Montserrat", sans-serif;
}

a {
    text-decoration: none;
}

main {
    min-height: 85vh;
}

.footer {
    margin-top: 10px;
    background-color: #333333;
    color: #999;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    padding: 10px 0px;
}

.footerdiv a {
    text-decoration: none;
    color: grey;
}

.footerdiv {
    text-align: center;
}

.footerdiv a:hover {
    color: white;
}

.header {
    background-color: #EEAA36;
    color: whitesmoke;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 15px;
    font-size: 20px;
}

.icon {
    display: flex;
    gap: 20px;
}

.icon a {
    text-decoration: none;
    color: whitesmoke;
}

.icon a:hover {
    color: rgb(232, 66, 232);
}

.heading {
    font-size: 13px;
    display: flex;
    gap: 20px;
    max-width: 70%;
    margin: auto;
}

.heading a {
    text-decoration: none;
    color: whitesmoke;
}

.heading a:hover {
    color: rgb(232, 66, 232);
}

.bases {
    font-family: 'Lato', sans-serif;
    max-width: 85%;
    line-height: 30px;
    margin: auto;
    padding: 20px 0px;
}

.bases a {
    text-decoration: none;
    color: red;
}

.content {
    text-align: left;
}

.content li {
    font-weight: 500;
}

.center {
    text-align: center;
}

.backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(121, 121, 121, 0.6);
    backdrop-filter: blur(8px);
    z-index: 999;
}

.loader-container {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1000;
}

.loader {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: inline-block;
    border-top: 3px solid #FFF;
    border-right: 3px solid transparent;
    box-sizing: border-box;
    animation: rotation 1s linear infinite;
}


@keyframes rotation {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.hide {
    display: none;
}

#myBtn {
    display: none;
    position: fixed;
    bottom: 20px;
    right: 30px;
    z-index: 99;
    font-size: 10px;
    border: none;
    outline: none;
    background-color: #333333;
    color: white;
    cursor: pointer;
    border-radius: 5px;
}

#myBtn i {
    font-size: 30px;
}

.top {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 5px 10px;
}

.sidebar {
    text-transform: uppercase;
    height: 100%;
    width: 250px;
    position: fixed;
    top: 0;
    left: -250px;
    background-color: rgb(242, 242, 242);
    color: #555;
    overflow-x: hidden;
    transition: 0.3s;
    padding-top: 60px;
    z-index: 1000;
}

.sidebar a:hover {
    color: #979797;
}

.closebtn {
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 36px;
    cursor: pointer;
}

.sidebar a {
    padding: 10px 15px;
    text-decoration: none;
    font-size: 13px;
    color: #555;
    display: block;
    border-bottom: 1px solid #ccc;
}

.sidebar a:last-child {
    border-bottom: none;
}

.main-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.login-box {
    position: relative;
    border: 1px solid;
    width: 30%;
    padding: 40px 0;
    text-align: center;
    overflow: hidden;
}

.login-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url(/img/background.png);
    background-repeat: no-repeat;
    background-size: cover;
    opacity: 0.4;
    z-index: 0;
}

.login-box>* {
    position: relative;
    z-index: 1;
}


.login-title {
    color: #eeaa36;
}

.error-message {
    color: red;
    background-color: rgb(255, 196, 196);
    border: 1px solid red;
    width: fit-content;
    margin: 10px auto;
    padding: 3px 10px;
    border-radius: 10px;
}

.input-container {
    border: 1px solid #eeaa36;
    width: fit-content;
    margin: auto;
    background-color: white;
}

.country-select,
.mobile-input {
    outline: none;
    border: none;
    padding: 10px 0;
}

.mobile-input {
    width: 45%;
}

.login-button {
    margin: 20px 0;
    background-color: #eeaa36;
    color: white;
    border: none;
    outline: none;
    padding: 5px 20px;
    font-size: 17px;
}

.category {
    width: 80%;
    margin: auto;
}



.category h1 {
    font-size: 20px;
    text-transform: uppercase;
    margin: 10px 0px 30px 0px;
    text-align: center;
    font-weight: 800;
}

.title {
    font-size: 1.15rem;
    font-weight: 400;
    color: black;
}

.title:hover {
    color: rgb(163, 163, 163);
}

.para {
    color: #777;
    font-size: .9rem;
    font-weight: 400;
    margin-top: 5px;
}

.image-container {
    position: relative;
    display: inline-block;
}

.image-container1 {
    position: relative;
    display: inline-block;
}

.image-container img {
    display: block;
    width: 350px;
    height: 150px;
    object-fit: cover;
}

.imagetop {
    width: 350px;
    height: 280px;
}

.view-count {
    position: absolute;
    top: 10px;
    right: 10px;
    color: white;
    display: flex;
    align-items: center;
    font-size: 11px;
}

.view-count i {
    margin-right: 5px;
}

.container {
    display: flex;
    width: 80%;
    margin: auto;
}

.container1 {
    display: flex;
    width: 85%;
    margin: auto;
}

.left-section {
    flex: 3;
    padding: 20px;
}

.right-section {
    flex: 1;
    padding: 20px;
}

.category-post {
    padding: 15px 0px;
}

.post-category {
    color: #999;
    font-size: .65rem;
    font-weight: 400;
    margin-bottom: 6px;
    text-transform: uppercase;
}

.post-title {
    font-size: 1rem;
    font-weight: 400;
    color: #222;
}

.post-content {
    color: #777;
    font-size: .9rem;
    margin-top: 5px;
    font-weight: 400;
}

.indexp {
    background-color: #eeaa36;
    color: white;
    width: fit-content;
    font-size: 10px;
    font-weight: 600;
    padding: 5px 13px;
}

.indexdiv {
    position: relative;
    margin: 2px;
}

.overlay {
    position: relative;
}

.indexdiv img {
    display: block;
    width: 350px;
    height: 450px;
    object-fit: cover;
}

.overlay::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    /* Black overlay with 50% opacity */
}

.text {
    position: absolute;
    bottom: 10px;
    left: 35%;
    transform: translate(-50%);
    color: white;
    font-weight: 600;
    padding: 10px 0px;
}

.pagination {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.pagination a {
    margin: 0 5px;
    text-decoration: none;
    color: #a4a4a4;
    border: 1px solid #777;
    padding: 3px 8px;
    border-radius: 3px;
}

.pagination a.active {
    color: white;
    background-color: #a4a4a4;
}

.contenth6 {
    background-color: #eeaa36;
    color: white;
    width: fit-content;
    padding: 4px 15px;
    margin-bottom: 7px;
}

.contenth1 {
    font-weight: 800;
    margin-bottom: 7px;
}

.contentimg {
    width: 100%;
    height: 400px;
    margin: 15px 0px;
}

.error {
    background-color: rgb(255, 168, 168);
    color: red;
    padding: 4px 10px;
    border: 1px solid red;
    border-radius: 10px;
    margin: 10px;
    animation: wiggle 0.5s ease-in-out infinite;
    visibility: hidden;
    text-align: center;
}

.buttons button {
    padding: 10px;
    border-radius: 10px;
    background-color: #eeaa26;
    color: white;
    border: 1px solid white;
    cursor: pointer;
}

.profile {
    position: relative;
    border: 1px solid;
    width: 30%;
    overflow: hidden;
}

.profile::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url(/img/background.png);
    background-repeat: no-repeat;
    background-size: cover;
    opacity: 0.3;
    z-index: 0;
}

.profile>* {
    position: relative;
    z-index: 1;
}

.section {
    display: flex;
    justify-content: center;
    margin: auto;
    align-items: center;
}

.basic {
    display: flex;
    flex-direction: column;
    height: 100%;
    margin-top: 20px;
}

iframe {
    flex: 1;
    border: none;
    overflow: hidden;
    width: 100%;
    height: 100%;
    scrollbar-width: none;
}

.ui.segament::-webkit-scrollbar {
    display: none;
}


@media (max-width: 1024px) {
    .indexdiv img {
        width: 250px;
    }

    .text {
        left: 52%;
        width: 95%;
    }

    .container,
    .container1 {
        width: 100%;
    }

    .login-box,
    .profile {
        width: 40%;
    }

    .image-container img {
        width: 310px;
    }

    .imagetop {
        width: 310px;
    }
}

@media(max-width:933px) {
    .heading {
        font-size: 10px;
    }
}

@media (max-width: 768px) {
    .image-container img {
        width: 285px;
    }

    .imagetop {
        width: 285px;
    }

    .indexdiv img {
        width: 185px;
        height: 350px;
    }

    .heading {
        font-size: 8px;
    }

    .login-box,
    .profile {
        width: 50%;
    }

    .right-section {
        display: none;
    }
}

@media(max-width:710px) {
    .heading {
        display: none;
    }

    .footer {
        flex-direction: column;
        gap: 20px;
    }
}

@media (max-width: 425px) {
    .right-section {
        display: none;
    }

    .section {
        flex-direction: column;
    }

    .login-box,
    .profile {
        width: 90%;
    }

    .flexx {
        flex-direction: column;
    }

    .indexdiv img {
        width: 100vw;
        height: 100px;
    }

    .text {
        font-size: 13px;
    }

    .image-container img {
        width: 175px;
    }

    .imagetop {
        width: 175px;
    }
}