/* MAIN CONTENT CONTAINER */

.main-content {
    position: relative;
    height: 100vh;
    width: 100%;
    padding-block: 60px;
    background-image: url("/resource/home/images/bg7.jpg");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

/* MAIN CONTENT WELCOME TITLE */
.main-content .welcome {
    text-align: center;
    pointer-events: none;
    margin-top: 90px;
}

.main-content .welcome span {
    color: #fff;
    display: block;
    font-size: 5em;
    font-weight: 600;
    /* color: #242424; */
    color: white;
    letter-spacing: 4px;
    margin-bottom: 8px;
    position: relative;
    animation: title1 3s 1;
}
.main-content .welcome h3 {
    color: #fff;
    display: block;
    font-size: 2em;
    background: linear-gradient(135deg, rgb(14, 85, 217) 40%, rgb(0, 204, 255) 60%);
    background-color: white;
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    animation: title2 3s 1;
}

/* MAIN CONTENT WELCOME ANIMATION */
@keyframes title1 {
    0% {
        letter-spacing: 4px;
        margin-bottom: -6vh;
        opacity: 0%;
    }
    30% {
        margin-bottom: -6vh;
        opacity: 30%;
    }
    40% {
        letter-spacing: 24px;
    }
    50% {
        opacity: 100%;
    }
    100% {
        letter-spacing: 4px;
        margin-bottom: 8px;
    }
}

@keyframes title2 {
    0% {
        opacity: 0;
    }
    45% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

/* QUICK PROFILE TITLE */

#mini-cont {
    position: absolute;
    bottom: 1.2em;
    left: 1.2em;
    /* font-size: 2em; */
}
#mini-btn {
    position: relative;
    height: 9vh;
    aspect-ratio: 1;
    border: none;
    z-index: 3;

    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2.5em;
    color: var(--dark-matte-blue);
    border-radius: 5px;
    background-color: rgba(239,235,248,0);
    cursor: pointer;
}
#mini-plus {
    position: absolute;
    left: 0;
    bottom: 0;
    height: 100%;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 5px;
    background-color: rgba(239,235,248,1);
    z-index: 2;
}
#mini-plus:hover {
    background-color: rgba(209,205,218,1);
}
#mini-plus:active {
    background-color: rgba(169,165,178,1);
}
#mini-plus #mini-img {
    height: 6vh;
    aspect-ratio: 1;
    transition: .2s ease;
    transform: rotate(0deg);
    -o-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
}
#mini-plus #mini-img.rotate {
    transform: rotate(135deg);
    -o-transform: rotate(135deg);
    -ms-transform: rotate(135deg);
    -moz-transform: rotate(135deg);
    -webkit-transform: rotate(135deg);
}

.mini-box {
    z-index: 1;
}

#mini-txt {
    position: absolute;
    left: 0;
    bottom: 0;
    background: url("/resource/global_images/socialmedia/iconmonstr-id-card-25-240(1).png") no-repeat center / 6vh;
    background-color: rgba(54, 94, 216, 0.144) ;
    backdrop-filter: blur(5px);
    height: 9vh;
    border-radius: 5px;
    aspect-ratio: 1;
    transition: .2s ease;

    display: flex;
    justify-content: center;
    align-items: center;

    font-family: 'Poppins';
}
#mini-txt:hover {
    background-color: rgba(35, 84, 230, 0.6) ;
    border-radius: 5px 0 0 5px;
}
#mini-txt.open {
    bottom: 120%;
}
#mini-scl {
    position: absolute;
    bottom: 0;
    left: 0;
    background: url("/resource/global_images/socialmedia/iconmonstr-link-1-240.png") no-repeat center / 6vh;
    background-color: rgba(255, 0, 0, 0.144);
    backdrop-filter: blur(5px);
    height: 9vh;
    border-radius: 5px;
    aspect-ratio: 1;
    transition: .2s ease, left .2s ease .2s;
}
#mini-scl a {
	aspect-ratio: 4/3;
}
#mini-scl:hover {
    background-color: rgba(255, 0, 0, 0.6);
    border-radius: 0 0 5px 5px;
}
#mini-scl.open {
    left: 120%;
}

#mini-scl:hover .miniScl {
    visibility: visible;
    opacity: 1;
}
#mini-txt:hover .miniTxt {
    visibility: visible;
    opacity: 1;
}

.miniChild {
    position: absolute;
    background: white;
    opacity: 0;
    visibility: hidden;
    padding: .5rem;
    transition: .2s ease;
}
.miniChild.miniScl {
    bottom: 100%;
    width: 100%;
    height: max-content;
    border-radius: 5px 5px 0 0;
    overflow: hidden;
    
    background: none;
    display: flex;
    padding: 0;
    /* padding-block: 1rem; */
    /* gap: 1em; */
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
/* .miniChild.miniScl  {
    width: 70px;
    width: 100%;
    background: tomato;
} */
.miniScl a {
    width: 100%;
    background-color: rgb(255,255,255,.5);
    display: grid;
    place-items: center;
    padding: 1rem;
    transition: background-color .2s ease;
}
.miniScl a:hover {
    background-color: rgb(180,180,180,.4);
}
.miniScl img {
    width: 20px;
}
.miniChild.miniTxt {
    left: 100%;
    height: 100%;
    width: max-content;
    border-radius: 0 5px 5px 0;
    
    padding-inline-end: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-weight: 600;
    color: var(--dark-matte-blue);
}
