* {
    /*max-width: 1600px;*/
    /*  EXTRA LARGE (LARGE SCREENS + WIDE)   */
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    box-sizing: border-box;
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    overflow-x: hidden;
    padding: 0 0.5rem 0 0.5rem;
}

/*   NAVBAR   */

.logo {
    margin-top: 0.1rem;
    margin-left: 1rem;
    width: 3rem;
    height: 2.5rem;
}

.navbar {
    background-color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: 6rem;
    z-index: 1;
}

ul {
    list-style: none;
}

.a {
    cursor: pointer;
    font-weight: bold;
    color: rgb(143, 143, 143);
    text-decoration: none;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 1.2rem;
    transition: all 0.3s;
    white-space: nowrap;
}


.a:hover {
    box-shadow: inset 0 0 0 0.1rem rgb(143, 143, 143);
    color: rgb(143, 143, 143);
    transition: all 0.3s ease;
}

.signup {
    background-color: #48c9b0;
    color: white;
}

.signup:hover {
    color: white;
    box-shadow: inset 0 0 0 0.1rem #1ABC9C;
    background-color: #1ABC9C;
}

.navbar-logo-text {
    display: flex;
}

.navbar-links {
    display: flex;
}

.navbar-links li {
    margin: 0 0.5rem;
}

.active-link {
    color: rgb(121, 121, 121);
    box-shadow: inset 0 0 0 0.1rem rgb(143, 143, 143);
}

.navbar-text-container {
    text-decoration: none;
    display: flex;
    align-items: center;
}

.navbar-text {
    color: rgb(127, 127, 127);
    font-size: 2rem;
    font-weight: bolder;
    margin-left: 10%;
    white-space: nowrap;
}

.navbar-text-hive {
    color: rgb(255, 255, 255);
    font-size: 2rem;
    margin-left: 2%;
    white-space: nowrap;
    background-color: rgb(255, 145, 0);
    padding: 0 0.4rem;
    border-radius: 5px;
}


.hamburger {
    position: absolute;
    justify-content: center;
    align-items: center;
    display: none;
    cursor: pointer;
}

.bar {
    display: block;
    width: 35px;
    height: 4.5px;
    margin: 5px auto;
    border-radius: 20px;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    background-color: rgb(143, 143, 143);
}







/*    HEADER     */


.header-image {
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 96.25vw;
    height: 26rem;
    object-fit: cover;
    filter: brightness(70%);
    border-radius: 20px;
}

.header-container {
    position: absolute;
    top: 13rem;
    left: 3rem;
    right: 3rem;
    margin: auto;
    text-align: center;
}

.header-title {
    position: relative;
    color: white;
    font-size: 2.25rem;
    font-weight: bolder;
    margin-bottom: 0.5rem;
    white-space: nowrap;
}

.subheader-title {
    position: relative;
    font-size: 1rem;
    margin-bottom: 0.5rem;
    color: rgb(244, 244, 244);
}


.feature-title {
    position: absolute;
    top: 29.5rem;
    left: 2rem;
    font-size: 1vw;
    margin-bottom: 0.5rem;
    text-align: start;
    color: rgb(222, 222, 222);
    white-space: nowrap;
}

.feature-name {
    color: white;
}

.feature-logo {
    color: rgb(255, 255, 255);
    font-size: 1vw;
    margin-left: 1%;
    background-color: rgb(255, 145, 0);
    padding: 0 0.1rem;
    border-radius: 2px;
}

.title-span-container {
    padding: 0 4rem 0 4rem;
}

.title-span {
    color: #ffffff;
    font-weight: 700;
}

/*   POLICY   */

.policy-span {
    font-weight: bolder;
}





/*    CATEGORIES TAGS  */

.category-tag-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    padding: 5rem 8rem 0 8rem;
}

.category-tag {
    cursor: pointer;
    font-weight: bold;
    color: white;
    text-decoration: none;
    padding: 0.5rem 1rem;
    border-radius: 15px;
    font-size: 1.25rem;
    transition: all 0.3s;
    white-space: nowrap;
    margin-right: 1rem;
    margin-bottom: 1rem;
}

.animals-tag {
    background-color: #e5cb85;
}

.architecture-tag {
    background-color: #c085e5;
}

.design-tag {
    background-color: #e5c885;
}

.fashion-tag {
    background-color: #85e2e5;
}

.food-tag {
    background-color: rgb(250, 145, 121);
}

.music-tag {
    background-color: #e5859d;
}

.nature-tag {
    background-color: yellowgreen;
}

.technology-tag {
    background-color: #92e585;
}

.travel-tag {
    background-color: #81b8e0;
}

.people-tag {
    background-color: rgb(248, 219, 51);
}

.sport-tag {
    background-color: #e585da;
}

.vehicles-tag {
    background-color: #e5b285;
}


.category-tag:hover {
    box-shadow: inset 0 0 0 0.1rem rgb(143, 143, 143);
    color: rgb(96, 96, 96);
    transition: all 0.3s ease;
    background-color: white;
}






/*    CATEGORIES  LINK  */

.categories-link {
    text-align: center;
    width: 6.5rem;
    text-decoration: none;
    background-color: rgb(255, 145, 0);
    color: #ffffff;
    transition: all .5s;
    padding: 0.5rem 0 0.5rem 1rem;
    font-size: 1.15rem;
    border-radius: 5px;
    display: inherit;
    cursor: pointer;
    margin-top: 1rem;
    margin-bottom: 1rem;
}

.categories-link:hover {
    background-color: rgb(242, 137, 0);
}





/*    CATEGORIES  PAGE   */

.category-container {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}


.category-image-container {
    position: relative;
    flex-grow: 1;
    flex-shrink: 1;
    flex-basis: auto;
    /*flex: 1 1 auto;*/
    height: 200px;
}

.category-image {
    object-fit: cover;
    width: 100%;
    height: 100%;
    vertical-align: middle;
    filter: brightness(60%);
    border-radius: 5px;
    margin-bottom: 0.5rem;
}

.category-info {
    position: absolute;
    left: 1rem;
    bottom: 1rem;
    font-size: 2rem;
    font-weight: bolder;
    color: white;
}







/*     LOGIN  AND SIGN UP    */

.hide-login {
    text-decoration: none;
    color: rgb(143, 143, 143);
}


.form-container {
    width: 400px;
    margin: auto;
    background: white;
    border-radius: 5px;
    margin-top: 5rem;
    margin-bottom: 4rem;
    padding: 1rem 2rem 3rem 2rem;
    background-color: rgb(250, 250, 250);
}

h3 {
    font-size: 2rem;
    margin-bottom: 2rem;
    margin-top: 2rem;
    font-weight: bold;
    text-align: center;
}

h4 {
    display: block;
    margin: auto;
    margin-top: 2rem;
    background-color: rgb(253, 133, 133);
    width: 20rem;
    text-align: center;
    font-size: 1rem;
    padding: 0.25rem 0;
    color: white;
    border-radius: 5px;
}


.btn-login {
    box-shadow: none;
    border: none;
    background-color: #48c9b0;
    color: #ffffff;
    outline: none;
    transition: all .5s;
    padding: 0.5rem 1.25rem;
    font-size: 1.15rem;
    border-radius: 5px;
    margin: auto;
    margin-top: 3rem;
    display: inherit;
    cursor: pointer;
    -webkit-font-smoothing: subpixel-antialiased;
}

.btn-login:hover {
    background-color: #1ABC9C;
}


.user-icon {
    margin-top: 2.2rem;
    margin-right: 1rem;
    width: 1rem;
    height: 1rem;
}

.user-icon1 {
    margin-top: 2.2rem;
    margin-right: 1rem;
    width: 1rem;
    height: 0.8rem;
}

.user-icon2 {
    margin-top: 2.2rem;
    margin-right: 1rem;
    margin-left: 0.2rem;
    width: 0.8rem;
    height: 0.9rem;
}

.form {
    display: flex;
}

.form-input {
    transition: opacity .6s;
    opacity: 1;
    border: 0;
    border-bottom: 0.1rem solid #bdc3c7;
    background: rgb(250, 250, 250);
    font-size: 1rem;
    height: 2.75rem;
}


input,
textarea {
    transition: all 800ms;
    resize: none;
    overflow: auto;
    outline: none;
    font-family: inherit;
    box-sizing: border-box;
    width: 100%;
    padding: 0 0 0 0.5rem;
    color: rgb(143, 143, 143);
    margin-top: 1.25rem;
}


.form-input:focus,
textarea:focus {
    border-color: #48c9b0;
    color: rgb(64, 64, 64);
}






textarea.form-control {
    height: 120px;
    transition: .6s;
}

textarea.form-control:focus {
    height: 200px;
    border-color: #48c9b0;
}






.text-status {
    text-align: center;
    font-size: 1rem;
    margin-top: 2rem;
}


.forgot-password {
    margin-top: 2rem;
    display: inherit;
    color: rgb(143, 143, 143);
}


.sign-container {
    margin-top: 4rem;
    margin-bottom: 4rem;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    border-radius: 10px;
    background-color: rgb(250, 250, 250);
}

.sign-text {
    color: rgb(143, 143, 143);
}

.sign-link {
    text-align: center;
    width: 6.5rem;
    text-decoration: none;
    background-color: #56c1ef;
    color: #ffffff;
    transition: all .5s;
    padding: 0.5rem 0 0.5rem 1rem;
    font-size: 1.15rem;
    border-radius: 5px;
    display: inherit;
    cursor: pointer;
    margin-top: 1rem;
    margin-bottom: 1rem;
}

.sign-link:hover {
    background-color: #29b2ec;
}

.error {
    font-weight: bolder;
    margin-top: 1rem;
    display: block;
    margin-left: auto;
    margin-right: auto;
    border-radius: 5px;
    width: 20rem;
    background-color: rgb(253, 133, 133);
    color: white;
    padding: 4px;
    text-align: center;
}







/*   SIGN  UP  FORM   */

.btn-sign {
    box-shadow: none;
    border: none;
    background-color: #56c1ef;
    color: #ffffff;
    outline: none;
    transition: all .5s;
    padding: 0.5rem 1.25rem;
    font-size: 1.15rem;
    border-radius: 5px;
    margin: auto;
    margin-top: 3rem;
    display: inherit;
    cursor: pointer;
    -webkit-font-smoothing: subpixel-antialiased;
}

.btn-sign:hover {
    background-color: #29b2ec;
}

.focus:focus,
textarea:focus {
    border-color: #29b2ec;
    color: rgb(64, 64, 64);
}


.login-container {
    margin-top: 4rem;
    margin-bottom: 4rem;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    background-color: rgb(250, 250, 250);
}

.login-text {
    color: rgb(143, 143, 143);
}

.login-link {
    text-align: center;
    width: 6.5rem;
    text-decoration: none;
    background-color: #50c8b0;
    color: #ffffff;
    transition: all .5s;
    padding: 0.5rem 0 0.5rem 1.7rem;
    font-size: 1.15rem;
    border-radius: 5px;
    display: inherit;
    cursor: pointer;
    margin-top: 1rem;
    margin-bottom: 1rem;
}

.login-link:hover {
    background-color: #1ABC9C;
}






/*     CREATE IMAGE PAGE    */


.box {
    display: grid;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.img-create {
    width: 65%;
    height: auto;
    margin-bottom: 2rem;
    margin-top: 2rem;
    border: 1rem solid #f6f6f6;
}

.edit-delete {
    margin-bottom: 4rem;
}

.edit-btn {
    text-align: center;
    text-decoration: none;
    background-color: #56c1ef;
    color: #ffffff;
    transition: all .5s;
    padding: 0.5rem 1.5rem 0.5rem 1.7rem;
    font-size: 1.15rem;
    border-radius: 5px;
    cursor: pointer;
    margin-top: 1rem;
    margin-bottom: 1rem;
    margin-right: 3rem;
}

.edit-btn:hover {
    background-color: #29b2ec;
}

.delete-btn {
    text-align: center;
    text-decoration: none;
    background-color: rgb(253, 133, 133);
    color: #ffffff;
    transition: all .5s;
    padding: 0.5rem 1rem 0.5rem 1rem;
    font-size: 1.15rem;
    border-radius: 5px;
    cursor: pointer;
    margin-top: 1rem;
    margin-bottom: 1rem;
}

.delete-btn:hover {
    background-color: rgb(254, 107, 107);
}

.create-image-title {
    font-size: 1.5rem;
    font-weight: bolder;
    color: rgb(143, 143, 143);
    margin-bottom: 0.5rem;
}

.create-image-line {
    display: block;
    margin-left: auto;
    margin-right: auto;
    height: 0.1rem;
    width: 25%;
    background-color: #c7c7c7;
    margin-bottom: 4rem;
}

.user-icon-create-page {
    width: 1.5rem;
    height: 1.5rem;
}







/*     LOGOUT     */

.logout-container {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    margin-top: 3rem;
    margin-right: 3rem;
    margin-bottom: 2rem;
}

.profile-logout-image {
    width: 2rem;
    height: 2rem;
    margin-right: 1rem;
}

.logout-user {
    margin-right: 1rem;
    font-size: 1.5rem;
    font-weight: bolder;
    color: rgb(143, 143, 143);
}

.logout {
    text-decoration: none;
    background-color: rgb(253, 133, 133);
    width: 5rem;
    text-align: center;
    font-size: 1rem;
    padding: 0.5rem 0;
    color: white;
    border-radius: 5px;
    transition: all .5s;
}

.logout:hover {
    background-color: rgb(254, 107, 107);
}






/*   Dashboard links   */

.display {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 6rem;
    font-size: 3.5rem;
    color: rgb(143, 143, 143);
    margin-bottom: 4rem;
}

.dashboard-link-dashboard {
    display: block;
    margin-left: auto;
    margin-right: auto;
    text-decoration: none;
    background-color: #d47bea;
    width: 16rem;
    text-align: center;
    font-size: 1.5rem;
    padding: 0.5rem 0;
    color: white;
    border-radius: 5px;
}

.dashboard-link-dashboard:hover {
    background-color: #c863e1;
}

.dashboardLinks {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    margin-top: 2rem;
    margin-bottom: 4rem;
}

.dashboard-link-user {
    margin-left: 2rem;
    margin-right: 2rem;
    text-decoration: none;
    background-color: #50c8b0;
    width: 7rem;
    text-align: center;
    font-size: 1.5rem;
    padding: 0.5rem 0;
    color: white;
    border-radius: 5px;
}

.dashboard-link-user:hover {
    background-color: #1ABC9C;
}

.dashboard-link-post {
    margin-left: 2rem;
    margin-right: 2rem;
    text-decoration: none;
    background-color: #56c1ef;
    width: 7rem;
    text-align: center;
    font-size: 1.5rem;
    padding: 0.5rem 0;
    color: white;
    border-radius: 5px;
}

.dashboard-link-post:hover {
    background-color: #29b2ec;
}

.dashboard-link-log {
    margin-left: 2rem;
    margin-right: 2rem;
    text-decoration: none;
    background-color: rgb(250, 181, 54);
    width: 7rem;
    text-align: center;
    font-size: 1.5rem;
    padding: 0.5rem 0;
    color: white;
    border-radius: 5px;
}

.dashboard-link-log:hover {
    background-color: rgb(251, 169, 16);
}







/*    COUNT   */

.count-title {
    font-size: 1.5rem;
    font-weight: bolder;
    text-align: center;
    color: #939393;
    margin-bottom: 2rem;
    margin-top: 2rem;
}

.count-container {
    padding: 2rem 0 2rem 0;
    margin-top: 0.5rem;
    margin-bottom: 2rem;
    background-color: rgb(250, 250, 250);
    display: flex;
    justify-content: space-evenly;
}

.count-text {
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
    font-weight: bolder;
    color: rgb(100, 100, 100);
    text-align: center;
}

.count-image-photo {
    display: block;
    width: 4rem;
    height: 3rem;
    margin-left: auto;
    margin-right: auto;
}

.count-image {
    display: block;
    width: 3rem;
    height: 3rem;
    margin-left: auto;
    margin-right: auto;
}

.number {
    font-size: 2.5rem;
    font-weight: bolder;
    text-align: center;
    color: rgb(112, 112, 112);
    margin-top: 0.5rem;
}






/*    SEARCH BAR     */

.search-bar {
    position: absolute;
    top: 20rem;
    left: 0;
    right: 0;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 3rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.search-bar-admin {
    margin-left: auto;
    margin-right: auto;
    margin-bottom: -3rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.search-input {
    font-size: 1.25rem;
    width: 20rem;
    height: 2rem;
    margin-bottom: 1.25rem;
}

.search-btn {
    background-color: #56c1ef;
    color: #ffffff;
    padding: 0.5rem 1.5rem 0.5rem 1.7rem;
    transition: all .2s;
    font-size: 1.15rem;
    font-weight: bolder;
    border-radius: 5px;
    cursor: pointer;
    border: none;
    margin-top: 1.3rem;
    margin-left: 4rem;
    margin-bottom: 1.3rem;
}

.search-btn:hover {
    background-color: #29b2ec;
}







/*   DASHBOARD  USER MANAGEMENT   */

/*  Table  */

table {
    margin-top: 5rem;
}

table tr th {
    padding: 1rem 4rem;
    background-color: #b3b2b2;
    font-weight: bolder;
    color: white;
    font-size: 1.25rem;
}

.data-cell {
    text-align: center;
    color: #0077CC;
    padding: 0.5rem 0;
    background-color: #e2e2e2;
}

.addUser {
    display: block;
    margin-left: auto;
    margin-right: auto;
    font-size: 1rem;
    text-align: center;
    margin-top: 1rem;
    background-color: #2ecc71;
    width: 5rem;
    padding: 0.5rem 0;
    color: white;
    border-radius: 5px;
}







/*    COOKIE BANNER    */

.cookie-container {
    z-index: 999999;
    position: fixed;
    bottom: 1rem;
    right: 1rem;
    text-align: left;
    background-color: rgb(73, 73, 73);
    width: 20rem;
    padding: 2rem 0.5rem 1rem 0.5rem;
    color: rgb(132, 132, 132);
    font-weight: bolder;
    font-size: 1rem;
    border-radius: 10px;
    animation: slideInFromRight 4s ease-out forwards;
}

@keyframes slideInFromRight {
    0% {
        transform: translateX(200%);
    }

    100% {
        transform: translateX(0);
    }
}

.cookie-title {
    font-size: 1.25rem;
    font-weight: bolder;
    color: white;
    margin-bottom: 1rem;
    margin-left: 1rem;
}

.cookie-text {
    color: white;
    margin-left: 1rem;
}

.cookie-link {
    color: rgb(255, 218, 149);
    font-size: 1.1rem;
}

.cookieBtn {
    box-shadow: none;
    border: none;
    background-color: #48c9b0;
    color: #ffffff;
    outline: none;
    transition: all .5s;
    padding: 0.5rem 1.25rem;
    font-size: 1.15rem;
    border-radius: 5px;
    margin: auto;
    margin-top: 2rem;
    margin-bottom: 1rem;
    display: inherit;
    cursor: pointer;
    -webkit-font-smoothing: subpixel-antialiased;
}

.cookieBtn:hover {
    background-color: #1ABC9C;
}





/*    POST MANAGEMENT  PAGE    */

/*    HOME  PAGE    */



.image-container {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.image-column {
    transition: all 0.2s ease-in-out;
    position: relative;
    flex-grow: 1;
    flex-shrink: 1;
    flex-basis: auto;
    /*flex: 1 1 auto;*/
    height: 300px;
}

.image-column:hover {
    filter: brightness(90%);
}

.img {
    object-fit: cover;
    width: 100%;
    height: 100%;
    vertical-align: middle;
    filter: brightness(60%);
    border-radius: 5px;
    margin-bottom: 0.5rem;
}

.overlay {
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    color: rgb(255, 255, 255);
    font-size: 1.5rem;
    font-weight: bolder;
    /* center overlay text */
    opacity: 0;
    cursor: zoom-in;
    transition: all ease-in-out 0.2s;
    background-color: rgba(0, 0, 0, 0.3);
    height: 99%;
    border-radius: 10px;
}

.overlay:hover {
    opacity: 1;
}

.overlay1 {
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    color: rgb(255, 255, 255);
    font-size: 1.5rem;
    font-weight: bolder;
    /* center overlay text */
    opacity: 1;
    cursor: zoom-in;
    transition: all ease-in-out 0.2s;
    background-color: rgba(0, 0, 0, 0.01);
    height: 99%;
    border-radius: 10px;
}

.title {
    position: absolute;
    bottom: 2.5rem;
    left: 1rem;
    font-size: 1.5rem;
}

.author {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    font-size: 0.85rem;
    font-weight: 100;
}

.feature-title1 {
    font-size: 0.85rem;
    text-align: start;
    color: rgb(222, 222, 222);
    white-space: nowrap;
}

.feature-name1 {
    color: white;
}



/*   BLOG   */

.readMoreBtnContainer {
    margin-top: -3rem;
}

.readMoreBtn {
    box-shadow: none;
    border: none;
    background-color: #48c9b0;
    color: #ffffff;
    outline: none;
    transition: all .5s;
    padding: 0.5rem 1.25rem;
    font-size: 1.15rem;
    border-radius: 5px;
    margin: auto;
    display: inherit;
    cursor: pointer;
    -webkit-font-smoothing: subpixel-antialiased;
}

.readMoreBtn:hover {
    background-color: #1ABC9C;
}

.feature-name2 {
    font-size: 1rem;
    color: rgb(144, 144, 144);
    font-weight: bold;
}

.feature-logo1 {
    color: rgb(255, 255, 255);
    font-size: 0.85rem;
    margin-left: 1%;
    background-color: rgb(255, 153, 20);
    padding: 0 0.1rem;
    border-radius: 2px;
}

.feature-logo2 {
    color: rgb(255, 255, 255);
    font-size: 1rem;
    margin-left: 1%;
    background-color: rgb(255, 153, 20);
    padding: 0 0.1rem;
    border-radius: 2px;
}

.views {
    position: absolute;
    top: 1rem;
    right: 5.5rem;
    font-size: 0.85rem;
    font-weight: 100;
}

.views-icon {
    position: absolute;
    top: 0.75rem;
    right: 3.75rem;
    width: 1.5rem;
    height: 1.5rem;
}

.downloads {
    position: absolute;
    top: 1rem;
    right: 2rem;
    font-size: 0.85rem;
    font-weight: 100;
}

.downloads-icon {
    position: absolute;
    top: 0.9rem;
    right: 0.5rem;
    width: 1.25rem;
    height: 1.25rem;
}

.home-categories-title {
    text-align: center;
    margin-top: 4.5rem;
    margin-bottom: -2rem;
    color: #939393;
    font-size: 2rem;
}

/*  pagination  */

.pagination-container {
    margin-top: 4rem;
}

.page-navigation {
    padding: 1rem 0 1rem 0;
    background-color: rgb(250, 250, 250);
}

.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
}

.page-item {
    padding: 0.5rem;
    background-color: #56c1ef;
    font-size: 1.15rem;
    font-weight: bolder;
    margin-right: 0.5rem;
    border-radius: 7px;
}

.page-item:hover {
    background-color: #29b2ec;
}

.page-link {
    text-decoration: none;
    color: white;
}

.active {
    background-color: rgb(255, 157, 0);
}






.image-container .image-column .overlay .user-icon-index-page {
    position: absolute;
    bottom: 0.68rem;
    left: 1rem;
    width: 1.75rem;
    height: 1.75rem;
}


.moj-edie-post-edit {
    position: absolute;
    text-align: center;
    text-decoration: none;
    background-color: #56c1ef;
    color: #ffffff;
    padding: 0.5rem 1.5rem 0.5rem 1.7rem;
    transition: all .2s;
    font-size: 1.15rem;
    border-radius: 5px;
    cursor: pointer;
    top: 3rem;
    left: 1rem;
}

.moj-edie-post-edit:hover {
    box-shadow: inset 0 0 0 0.2rem white;
}

.moj-edie-post-delete {
    position: absolute;
    text-align: center;
    text-decoration: none;
    background-color: rgb(253, 133, 133);
    color: #ffffff;
    transition: all .2s;
    padding: 0.5rem 1rem 0.5rem 1rem;
    font-size: 1.15rem;
    border-radius: 5px;
    cursor: pointer;
    top: 6rem;
    left: 1rem;
}

.moj-edie-post-delete:hover {
    box-shadow: inset 0 0 0 0.2rem white;
}






/*    SINGLE IMAGE VIEW   */


.single-image-view {
    display: flex;
    justify-content: center;
    align-items: center;
}


.single-image-view img {
    width: 65%;
    height: auto;
    padding: 1rem;
    background-color: #f3f3f3;
}

.image-view-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 3rem;
    margin-bottom: 3rem;
}

.title-image-view {
    font-size: 2rem;
    font-weight: bolder;
    color: #939393;
    margin-right: 1rem;
}

.image-view-container img {
    width: 2rem;
    height: 2rem;
    margin-right: 0.5rem;
    margin-left: 1rem;
}

.author-image-view {
    font-size: 1.25rem;
    font-weight: bolder;
    color: #939393;
    margin-left: 1rem;
}

.download {
    margin-top: 2rem;
    margin-bottom: 4rem;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    background-color: rgb(250, 250, 250);
}

.download .download-link {
    text-align: center;
    font-weight: bold;
    width: 12rem;
    text-decoration: none;
    background-color: #56c1ef;
    color: #ffffff;
    transition: all .5s;
    padding: 0.5rem 0 0.5rem 0;
    font-size: 1.15rem;
    border-radius: 5px;
    cursor: pointer;
    margin-top: 1rem;
    margin-bottom: 1rem;
}

.download .download-link:hover {
    background-color: #29b2ec;
}

.views-single-view {
    font-size: 1rem;
    font-weight: bolder;
    color: #939393;
    margin-left: 1rem;
}

.downloads-single-view {
    font-size: 1rem;
    font-weight: bolder;
    color: #939393;
    margin-left: 1rem;
}






/*    Categories  Page  */


/*    CATEGORIES   */

.categories-link {
    text-align: center;
    width: 6.5rem;
    text-decoration: none;
    background-color: rgb(255, 145, 0);
    color: #ffffff;
    transition: all .5s;
    padding: 0.5rem 0 0.5rem 1rem;
    font-size: 1.15rem;
    border-radius: 5px;
    display: inherit;
    cursor: pointer;
    margin-top: 1rem;
    margin-bottom: 1rem;
}

.categories-link:hover {
    background-color: rgb(242, 137, 0);
}



.category-container {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}


.category-image-container {
    position: relative;
    flex-grow: 1;
    flex-shrink: 1;
    flex-basis: auto;
    /*flex: 1 1 auto;*/
    height: 150px;
}


.category-image {
    object-fit: cover;
    width: 100%;
    height: 100%;
    vertical-align: middle;
    filter: brightness(60%);
    border-radius: 5px;
    margin-bottom: 0.5rem;
}

.category-image:hover {
    filter: brightness(80%);
}

.category-info {
    position: absolute;
    left: 1rem;
    bottom: 1rem;
    font-size: 1.5rem;
    font-weight: bolder;
    color: white;
}

.header-portfolio .header-portfolio-h3 {
    margin-top: 2rem;
    margin-bottom: 5rem;
    text-align: center;
    background-color: rgb(250, 250, 250);
    padding: 1.5rem 1.5rem;
    font-size: 2.5rem;
    color: #939393;
}






/*     ABOUT US PAGE     */

.about-container {
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 40rem;
}

.about-header-text {
    font-size: 1.8rem;
    font-weight: bolder;
    margin-top: 4rem;
    color: #6a6a6a;
}

.about-header-text1 {
    font-size: 1.3rem;
    font-weight: bolder;
    margin-top: 4rem;
    color: #6a6a6a;
}

.about-text {
    font-size: 1.3rem;
    font-weight:500;
    text-align: center;
    margin: 5rem 5rem 5rem 5rem;
    color: #949494;
}

.about-text1 {
    font-size: 1.3rem;
    font-weight:500;
    text-align: center;
    margin: 1rem 5rem 5rem 5rem;
    color: #949494;
}

.about-span {
    color: #0396ff;
    text-decoration: none;
}

.cookie-policy-point {
    font-weight: 700;
}



/*   BUTTON SCROLL TOP   */

.btn-scroll-top {
    z-index: 99999;
    display: none;
    position: fixed;
    right: 1rem;
    bottom: 0.25rem;
    width: 4rem;
    height: 3rem;
    border-radius: 11.5px;
    border: 0.2rem solid white;
    font-size: 1.5rem;
    font-weight: bolder;
    color: white;
    background-image: linear-gradient(to right, rgb(233, 120, 21), rgb(152, 72, 3));
    cursor: pointer;
    margin-top: 2rem;
    margin-bottom: 1.5rem;
}




/*     FAQs     */

.faq-link {
    color: #0396ff;
    text-decoration: none;
}







/*   FOOTER   */

.footer-container {
    background-color: rgb(250, 250, 250);
}

.footer-links-container {
    padding: 2rem 0 0 0;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    margin-top: 5rem;
}

.footer-pages-header {
    color: #939393;
    font-size: 1.25rem;
    font-weight: bolder;
    margin-bottom: 1rem;
}

.footer-pages-p {
    margin-bottom: 0.25rem;
}

.footer-pages-links {
    color: #b3b2b2;
    font-size: 1rem;
    text-decoration: none;
}

.footer-pages-links:hover {
    color: #939393;
}

.logo-text-footer1 {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: -2.3rem;
    margin-top: 2rem;
    margin-bottom: 2rem;
}



.foot {
    border-top: 0.3rem solid white;
    width: 100%;
    padding: 1rem 0;
    margin-top: 2rem;
}

.footer {
    text-align: center;
    color: rgb(143, 143, 143);
    font-size: 0.85rem;
}

.footer1 {
    text-align: center;
    color: rgb(143, 143, 143);
    font-size: 0.85rem;
}

.footer-img {
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 2rem;
    height: 2rem;
}






/*  MEDIA  QUERIES  */


/*   LARGE  (DESKTOPS)  */


@media only screen and (min-width: 1680px) {

    /*    HEADER     */


    .header-image {
        width: 98vw;
        height: 25rem;
    }

    .header-container {
        top: 11rem;
        padding: 0 3rem 0 3rem;
    }

    .header-title {
        font-size: 2.5vw;
    }

    .subheader-title {
        font-size: 1.25vw;
    }

    .feature-title {
        top: 28rem;
        left: 4rem;
        font-size: 1vw;
    }
}


/*    MEDIUM LARGE  (SMALL SCREEN + WIDE TABLETS */


@media only screen and (max-width: 1024px) {


    /*    SEARCH BAR     */

    .search-bar-admin {
        margin-left: auto;
        margin-right: auto;
        margin-bottom: -3rem;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .search-input {
        font-size: 1.1rem;
        width: 16rem;
    }

    .search-btn {
        padding: 0.3rem 1.2rem 0.3rem 1.4rem;
        font-size: 1.10rem;
        font-weight: bold;
        margin-left: 3rem;
    }


    /*  HOME TITLE   */

    .home-categories-title {
        margin-top: 4rem;
        font-size: 1.8rem;
    }


    /*    CATEGORIES TAGS  */

    .category-tag-container {
        padding: 5rem 5rem 0 5rem;
    }

    .category-tag {
        font-size: 1.1rem;
    }


    /*    CATEGORIES  LINK  */

    .categories-link {
        width: 6.2rem;
        padding: 0.4rem 0 0.5rem 0.9rem;
        font-size: 1.1rem;
    }

    .categories-link:hover {
        background-color: rgb(242, 137, 0);
    }




    /*     CREATE IMAGE PAGE    */


    .img-create {
        width: 60%;
    }


    /*   BLOG    */

    .header-portfolio .header-portfolio-h3 {
        margin-top: 2rem;
        margin-bottom: 5rem;
        padding: 1.25rem 1.25rem;
        font-size: 2rem;
    }


    /*     ABOUT US PAGE     */

    .about-header-text {
        font-size: 1.6rem;
        margin-top: 3rem;
    }

    .about-text {
        font-size: 1.2rem;
    }

    .about-text1 {
        font-size: 1.2rem;
    }


    /*    SINGLE IMAGE VIEW   */


    .single-image-view img {
        width: 60%;
    }

    .title-image-view {
        font-size: 1.75rem;
    }




}

/*   MEDIUM  (TABLETS) */


@media only screen and (max-width: 960px) {}



/*    MEDIUM SMALL  (TABLETS + WIDE MOBILES)  */


@media only screen and (max-width: 768px) {

    /*  Navbar  */

    .navbar-logo-text {
        display: flex;
    }


    .navbar-links {
        position: absolute;
        top: 6rem;
        left: 1%;
        right: 1%;
        flex-direction: column;
        width: 98%;
        height:26rem;
        justify-content: center;
        background: rgb(250, 250, 250);
        border-radius: 5px;
        margin-left: 90rem;
        transition: all 1s;
        z-index: 1;
    }

    .hamburger {
        display: block;
        position: absolute;
        top: 1.4rem;
        right: 2.4rem;
        background-color: rgb(250, 250, 250);
        padding: 0.5rem 0.5rem;
    }

    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .bar:nth-child(1) {
        transform: translateY(9.5px) rotate(45deg);
    }

    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-9.5px) rotate(-45deg);
    }

    .navbar-links.active {
        margin-left: 0;
        transition: all 0.5s;
    }

    .navbar-links li {
        margin: 1.2rem auto;
    }

    .a {
        font-size: 1.5rem;
    }

    .a:hover {
        font-size: 1.5rem;
    }


    /*    HEADER     */


    .header-image {
        width: 94vw;
        height:26rem;
    }

    .header-container {
        top: 13rem;
        padding: 0 2rem 0 2rem;
    }

    .header-title {
        font-size: 1.5rem;
    }

    .subheader-title {
        font-size: 1rem;
    }

    .feature-title {
        top: 29.25rem;
        left: 2.5rem;
        font-size: 1.45vw;
    }

    .feature-logo {
        font-size: 1.45vw;
    }


    /*    SEARCH BAR     */

    .search-bar {
        top: 20rem;
    }

    .search-bar-admin {
        margin-left: auto;
        margin-right: auto;
        margin-bottom: -3rem;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .search-input {
        font-size: 1rem;
        width: 12rem;
        height: 1.65rem;
    }

    .search-btn {
        padding: 0.3rem 1.2rem 0.3rem 1.4rem;
        font-size: 0.85rem;
        margin-left: 1rem;
    }


    /*  HOME TITLE   */

    .home-categories-title {
        margin-top: 3rem;
        font-size: 1.5rem;
    }


    /*    CATEGORIES TAGS  */

    .category-tag-container {
        padding: 4rem 2rem 0 2rem;
    }

    .category-tag {
        font-size: 0.85rem;
    }


    /*    CATEGORIES  LINK  */

    .categories-link {
        width: 5.8rem;
        padding: 0.4rem 0 0.5rem 0.9rem;
        font-size: 1rem;
    }

    .categories-link:hover {
        background-color: rgb(242, 137, 0);
    }




    /*     LOGOUT     */

    .logout-container {
        margin-top: 2rem;
        margin-right: 1rem;
        margin-bottom: 2rem;
    }

    .profile-logout-image {
        width: 1.5rem;
        height: 1.5rem;
        margin-right: 0.5rem;
    }

    .logout-user {
        font-size: 1rem;
        margin-right: 0.5rem;
    }

    .logout {
        width: 4rem;
        font-size: 0.85rem;
        padding: 0.35rem 0;
    }




    /*   Dashboard links   */

    .display {
        margin-top: 4rem;
        font-size: 2rem;
        margin-bottom: 3rem;
    }

    .dashboard-link-dashboard {
        width: 10rem;
        font-size: 1rem;
    }

    .dashboardLinks {
        margin-bottom: 2rem;
    }

    .dashboard-link-user {
        margin-left: 2.3rem;
        margin-right: 1rem;
        width: 4rem;
        font-size: 1rem;
    }

    .dashboard-link-post {
        margin-left: 1rem;
        margin-right: 1rem;
        width: 4rem;
        font-size: 1rem;
    }

    .dashboard-link-log {
        margin-left: 1rem;
        margin-right: 2rem;
        width: 4rem;
        font-size: 1rem;
    }



    /*    COUNT   */

    .count-container {
        padding: 1rem 0 1rem 0;
    }

    .count-text {
        font-size: 1rem;
    }

    .count-image-photo {
        width: 2.75rem;
        height: 2rem;
    }

    .count-image {
        width: 2rem;
        height: 2rem;
    }

    .number {
        font-size: 1.5rem;
    }


    /*     ABOUT US PAGE     */

    .about-container {
        display: block;
        margin-left: auto;
        margin-right: auto;
        width: 25rem;
    }

    .about-header-text {
        font-size: 1.35rem;
        margin-top: 3rem;
    }

    .about-header-text1 {
        font-size: 1.3rem;
        font-weight: bolder;
        margin-top: 3rem;
    }

    .about-text {
        font-size: 1.15rem;
        margin: 3rem 2rem 3rem 2rem;
    }

    .about-text1 {
        font-size: 1.15rem;
        margin: 1rem 2rem 3rem 2rem;
    }



    /*  BLOG   */

    .readMoreBtnContainer {
        margin-top: -1rem;
    }




    /*    SINGLE IMAGE VIEW   */


    .single-image-view img {
        width: 60%;
    }

    .title-image-view {
        font-size: 1.5rem;
    }


    /*    HOME  PAGE    */

    .title {
        position: absolute;
        bottom: 2.5rem;
        left: 1rem;
        font-size: 1.25rem;
    }



    /*  pagination  */

    .pagination-container {
        margin-top: 3rem;
    }

    .page-item {
        padding: 0.35rem 0.5rem;
        font-size: 1rem;
    }



    /*    SINGLE IMAGE VIEW   */


    .single-image-view img {
        width: 70%;
    }




    /*   FOOTER   */

    .footer-links-container {
        margin-top: 4rem;
    }

    .footer {
        font-size: 0.85rem;
    }

    .footer1 {
        font-size: 0.85rem;
    }

}


/*   SMALL  (MOBILE PHONES) */


@media only screen and (max-width: 480px) {

    /*  NAVBAR   */

    .logo {
        width: 2.25rem;
        height: 2rem;
    }

    .navbar-links {
        width: 98%;
        height:20rem;
    }

    .navbar-text {
        font-size: 1.5rem;
        margin-left: 5%;
    }

    .navbar-text-hive {
        font-size: 1.5rem;
        margin-left: 1.5%;
        padding: 0 0.2rem;
    }

    .navbar {
        padding: 0;
    }

    .navbar-links li {
        margin: 1.2rem auto;
    }

    .a {
        font-size: 1.25rem;
    }

    .a:hover {
        font-size: 1.25rem;
    }



    /*    HEADER     */


    .header-image {
        width: 93vw;
        height:20rem;
    }

    .header-container {
        top: 11rem;
        padding: 0 1.5rem 0 1.5rem;
    }

    .header-title {
        font-size: 1.25rem;
    }

    .subheader-title {
        font-size: 0.9rem;
    }

    .feature-title {
        top: 24rem;
        left: 2rem;
        font-size: 1.75vw;
    }

    .feature-logo {
        font-size: 1.75vw;
    }



    /*    SEARCH BAR     */

    .search-bar {
        top: 17.5rem;
    }

    .search-bar-admin {
        margin-left: auto;
        margin-right: auto;
        margin-bottom: -3rem;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .search-input {
        font-size: 1rem;
        width: 12rem;
        height: 1.65rem;
    }

    .search-btn {
        padding: 0.3rem 1.2rem 0.3rem 1.4rem;
        font-size: 0.85rem;
        margin-left: 1rem;
    }



    /*     LOGIN  AND SIGN UP    */

    .form-container {
        width: 300px;
    }

    h3 {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
        margin-top: 1.5rem;
    }

    .btn-login {
        padding: 0.5rem 1rem;
        font-size: 1rem;
    }

    .btn-sign {
        padding: 0.5rem 1rem;
        font-size: 1rem;
    }

    .forgot-password {
        font-size: 0.85rem;
    }



    .login-link {
        width: 5rem;
        padding: 0.5rem 0 0.5rem 1.1rem;
        font-size: 1rem;
        margin-top: 0.5rem;
        margin-bottom: 0.5rem;
    }



    /*     CREATE IMAGE PAGE    */


    .img-create {
        width: 70%;
    }

    .edit-delete {
        margin-bottom: 3rem;
    }

    .edit-btn {
        padding: 0.5rem 1.1rem 0.5rem 1.1rem;
        font-size: 1rem;
        margin-right: 2rem;
    }

    .delete-btn {
        padding: 0.5rem 1rem 0.5rem 1rem;
        font-size: 1rem;
    }

    .create-image-title {
        font-size: 1.25rem;
    }



    /*   Dashboard links   */

    .display {
        font-size: 1.5rem;
    }



    /*  HOME TITLE   */

    .home-categories-title {
        font-size: 1.35rem;
    }


    /*    CATEGORIES TAGS  */

    .category-tag-container {
        padding: 5rem 1rem 0 1rem;
    }

    .category-tag {
        font-size: 0.85rem;
    }

    .sign-text {
        font-size: 0.85rem;
    }


    /*    CATEGORIES  LINK  */

    .categories-link {
        width: 5.8rem;
        padding: 0.4rem 0 0.5rem 0.9rem;
        font-size: 1rem;
    }

    .categories-link:hover {
        background-color: rgb(242, 137, 0);
    }




    /*    POST MANAGEMENT PAGE    */

    .moj-edie-post-edit {
        font-size: 1rem;
    }

    .moj-edie-post-edit:hover {
        box-shadow: inset 0 0 0 1.5rem white;
    }

    .moj-edie-post-delete {
        font-size: 1rem;
    }

    .moj-edie-post-delete:hover {
        box-shadow: inset 0 0 0 1.5rem white;
    }



    /*    COUNT   */

    .count-text {
        font-size: 0.85rem;
    }

    .count-image-photo {
        width: 2rem;
        height: 1.5rem;
    }

    .count-image {
        width: 1.5rem;
        height: 1.5rem;
    }

    .number {
        font-size: 1rem;
    }


    /*   BLOG    */

    .header-portfolio .header-portfolio-h3 {

        margin-bottom: 3rem;
        padding: 1rem 1rem;
        font-size: 1.5rem;
    }

    .readMoreBtn {
        padding: 0.4rem 0.85rem;
        font-size: 1rem;
    }

    .feature-name2 {
        font-size: 0.85rem;
    }

    .feature-logo2 {
        font-size: 0.85rem;
    }





    /*     ABOUT US PAGE     */

    .about-container {
        width: 20rem;
    }

    .about-header-text {
        font-size: 1.15rem;
        margin-top: 3rem;
    }

    .about-header-text1 {
        font-size: 1.15rem;
        font-weight: bolder;
        margin-top: 3rem;
    }

    .about-text {
        font-size: 1rem;
        margin: 3rem 2rem 3rem 2rem;
    }

    .about-text1 {
        font-size: 1rem;
        margin: 1rem 2rem 3rem 2rem;
    }



    /*    SINGLE IMAGE VIEW   */

    .views-single-view {
        font-size: 0.85rem;
    }

    .downloads-single-view {
        font-size: 0.85rem;
    }


    .single-image-view img {
        width: 90%;
    }

    .title-image-view {
        font-size: 1.25rem;
    }

    .author-image-view {
        font-size: 1rem;
    }

    .download {
        margin-bottom: 3rem;
    }

    .download .download-link {
        width: 9rem;
        text-decoration: none;
        padding: 0.4rem 0 0.4rem 0;
        font-size: 1rem;
        border-radius: 5px;
        cursor: pointer;
        margin-top: 0.75rem;
        margin-bottom: 0.75rem;
    }

    .download .download-link:hover {
        background-color: #29b2ec;
    }




    /*    COOKIE BANNER    */

    .cookie-container {
        width: 18rem;
        padding: 2rem 0.5rem 1rem 0.5rem;
    }

    .cookie-title {
        font-size: 1.25rem;
    }

    .cookie-link {
        font-size: 1rem;
    }

    .cookieBtn {
        padding: 0.5rem 1rem;
        font-size: 1rem;
    }




    /*   FOOTER   */

    .footer-pages-header {
        color: #939393;
        font-size: 1.15rem;
        font-weight: bolder;
        margin-bottom: 0.85rem;
    }

    .footer-pages-p {
        margin-bottom: 0.15rem;
    }

    .footer-pages-links {
        color: #b3b2b2;
        font-size: 0.95rem;
        text-decoration: none;
    }

    .footer-pages-links:hover {
        color: #939393;
    }

    .footer {
        font-size: 0.75rem;
    }

    .footer1 {
        font-size: 0.75rem;
    }


}



/*    MINI    */


@media only screen and (max-width: 380px) {

    /*  NAVBAR   */

    .logo {
        width: 2.25rem;
        height: 2rem;
    }
    
        /*  Header   */

    .header-container {
        top: 11rem;
        padding: 0 1rem 0 1rem;
    }

    .header-title {
        font-size: 1rem;
    }
    
    .search-input {
        width: 10rem;
    }

    .subheader-title {
        font-size: 0.8rem;
    }

    /*     LOGIN  AND SIGN UP    */

    .form-container {
        width: 250px;
    }

    h3 {
        font-size: 1.35rem;
    }

    .form-input {
        font-size: 0.85rem;
        height: 2rem;
    }

    .error {
        font-size: 0.85rem;
        width: 17rem;
    }


    /*   Dashboard links   */

    .dashboard-link-user {
        margin-right: 0.5rem;
        width: 3.2rem;
        font-size: 0.85rem;
        padding: 0.3rem 0;
    }

    .dashboard-link-post {
        padding: 0.3rem 0;
        margin-left: 0.5rem;
        margin-right: 0.5rem;
        width: 3.2rem;
        font-size: 0.85rem;
    }

    .dashboard-link-log {
        padding: 0.3rem 0;
        margin-left: 0.5rem;
        width: 3rem;
        font-size: 0.85rem;
    }



    /*     ABOUT US PAGE     */

    .about-container {
        width: 15rem;
    }


    /*   SINGLE VIEW   */

    .single-image-view img {
        width: 90%;
    }


    /*    COOKIE BANNER    */

    .cookie-container {
        width: 16rem;
    }

    .cookie-title {
        font-size: 1.15rem;
    }

    .cookie-link {
        font-size: 1rem;
    }

    .cookieBtn {
        padding: 0.5rem 1rem;
        font-size: 1rem;
    }


    /*   FOOTER   */

    .footer {
        font-size: 0.75rem;
    }

    .footer1 {
        font-size: 0.75rem;
    }

}