html {
    scroll-behavior: smooth;
}

body {
    box-sizing: border-box;
    letter-spacing: .0245rem;
    font-family: "neue-haas-unica", sans-serif;
    font-weight: 700;
    font-style: normal;
    background-color: rgb(245, 245, 245);
}

body a {
    text-decoration: none;
}

body img {
    display: block;
}

header {
    z-index: 99;
    border-bottom: rgb(45, 45, 45) solid .1rem;
    background-color: rgb(245, 245, 245);
    position: sticky;
    top: 0;
}

.content {
    display: flex;
    justify-content: space-between;
    padding: .375rem .5rem;
}

#intro {
    display: flex;
    gap: 1.1rem;
}

#time {
    font-family: "neue-haas-unica", sans-serif;
    font-weight: 300;
    font-style: normal;
}

/* ------------ HEADER END ----------- */

.section {
    background-color: rgb(245, 245, 245);
    border-bottom: rgb(45, 45, 45) solid .1rem;
}

.me {
    width: 30%;
    margin-top: 5rem;
    margin-left: 5rem;
}

.callme {
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.callme a {
    font-family: "neue-haas-unica", sans-serif;
    font-weight: 500;
    font-style: normal;
}

/* ------------ Image Styling ----------- */

.slider-wrapper {
    position: relative;
    overflow: hidden;
    margin-left: auto;
    margin-right: auto;
    width: 61.8%;
    height: auto;
}

.slider {
    display: flex;
    transition: transform 0.2s ease-in-out;
}

.slider img, 
.slider video, 
.single-wrapper img,
.single-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.single-image {
    width: 100%;
}

.slider-wrapper::before,
.slider-wrapper::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    width: 50%;
    z-index: 98;
}

.slider-wrapper::before {
    left: 0;
    cursor: w-resize;
}

.slider-wrapper::after {
    right: 0;
    cursor: e-resize;
}

.single-wrapper, .end-poster {
    display: flex;
    margin-left: auto;
    margin-right: auto;
    width: 61.8%;
    padding-bottom: .5rem;
    gap: .5rem;
}

.end-poster {
    padding-bottom: 0;
}

/* ------------ Text Styling ----------- */

.title-area {
    width: 100%;
    background-color: rgb(245, 245, 245);
    border-top: rgb(45, 45, 45) solid .1rem;
    display: flex;
    justify-content: center;
    z-index: 89;
}

.text-wrapper {
    padding: .375rem;
}

.caption-area {
    position: absolute;
    opacity: 0;
    font-size: 0.8rem;
    line-height: 1.3;
    width: 30%;
    padding-left: .675rem;
    padding-top: .675rem;
    color: coral;
    z-index: 78;
    transition: opacity 0.35s;
    font-family: "neue-haas-unica", sans-serif;
    font-weight: 300;
    font-style: normal;
}

#Catagory {
    font-family: "neue-haas-unica", sans-serif;
    font-weight: 500;
    font-style: normal;
}

.section:hover .caption-area {
    opacity: 1;
}

/* ------------ 480px ----------- */

@media (max-width: 480px) {
    body {
        font-size: .75rem;
    }

    .content {
        padding: .3rem .6rem;
    }

    #intro {
        gap: .7rem;
    }

    .text-wrapper {
        padding: .2rem;
    }

    .caption-area {
        display: none;
    }

    .slider-wrapper, 
    .single-wrapper, 
    .end-poster {
        width: 100%;
    }

    .title-area {
        border-top: rgb(45, 45, 45) solid .08rem;
    }

    header, .section {
        border-bottom: rgb(45, 45, 45) solid .08rem;
    }

    .me {
        width: 60%;
        margin-top: 2.5rem;
        margin-left: 2.5rem;
    }

    .callme {
        margin-bottom: 1.35rem;
        line-height: 1.35;
    }

    #threeb {
        display: none !important;
    }
}

@media (min-width: 481px) and (max-width: 1024px) {
    body {
        font-size: .9rem;
    }

    .content {
        padding: .175rem .55rem;
    }

    #intro {
        gap: .7rem;
    }

    .text-wrapper {
        padding: .175rem;
    }

    .caption-area {
        display: none;
    }

    .slider-wrapper, 
    .single-wrapper, 
    .end-poster {
        width: 80%;
    }

    .title-area {
        border-top: rgb(45, 45, 45) solid .08rem;
    }

    header, .section {
        border-bottom: rgb(45, 45, 45) solid .08rem;
    }

    .me {
        width: 60%;
        margin-top: 2.5rem;
        margin-left: 2.5rem;
    }

    .callme {
        margin-bottom: 1.35rem;
        line-height: 1.35;
    }

    #threeb {
        display: none !important;
    }

}