/*Imports*/

@import "tailwindcss";
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');

/*All*/

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Open Sans", sans-serif !important;
}

/*Header*/

nav.scrolled{
    margin: 0;
    background-color: rgba(38, 45, 56, 0.973) !important;
    box-shadow: 0 2px 4px rgb(27, 27, 27);
    transition: 1s;
}

/*Introduction*/

.mask {
    background: linear-gradient(109deg, rgba(0, 0, 0, 0.178) 15%, rgba(0, 0, 0, 0.671) 50%, rgba(0, 0, 0, 0.585) 85%);
}

.glassmorphism:hover {
    transform: scale(1.1);
    border-radius: 0%;
    transition: 1s;
    background-color: rgba(37, 35, 27, 0.484);
}

/*exp*/

.point {
    left: 1px;
    transform: translateX(-46%);
    border: 5px solid rgba(230, 244, 255, 0.822);
}

.technologies i {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    padding: 8px 14px;
    font-size: 20px;
    position: relative;
}

.technologies i::after {
    content: attr(data-tooltip);
    position: absolute;
    bottom: -20%;
    left: 90%;
    transform: translateX(-50%);
    background-color: #ffffff;
    color: #777777;
    padding: 4px 10px;
    border-radius: 50px;
    font-size: 12px;
    font-style: italic;
    font-family: "Open Sans", sans-serif;
    white-space: nowrap;
    opacity: 0;
    transition: opacity 0.2s ease-in-out;
    z-index: 10;
}

.technologies i:hover::after {
    opacity: 1;
}

/*technologies*/

.carousel-tech-icons {
    display: flex;
    overflow-x: hidden;
    scroll-behavior: auto;
    gap: 50px;
    padding: 20px 18px;
    max-width: 850px;
}

.carousel-tech-icons::-webkit-scrollbar {
    display: none;
}

/*icons*/

.box-i {
    flex: 0 0 auto;
    width: 90px;
    height: 120px;
    background: rgba(255, 255, 255, 0.697);
    border: 1.5px solid rgba(255, 255, 255, 0);
    border-radius: 5px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s;
}

.carousel-tech-icons i {
    font-size: 32px;
    cursor: pointer;
    flex-shrink: 0;
}
