*{margin: 0;padding: 0}

html{
    scroll-behavior: smooth;
    }

body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    height: 100%;
}

header {
    background: rgba(0,0,0,.6);
    color: #fff;
    padding: 20px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
}

#logo{padding: 6px 20px 0 20px;}
header nav{padding: 0 20px;}

header nav ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
}

header nav ul li {
    margin: 0 15px;
    position: relative; /* Required for positioning the pseudo-element */
}

header nav ul li a {
    color: #fff !important;
    text-decoration: none !important;
    position: relative; /* Required for positioning the pseudo-element */
    padding: 5px 0;
    display: inline-block;
}

header nav ul li a::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: orange;
    visibility: hidden;
    transform: scaleX(0);
    transition: all 0.3s ease-in-out;
}

header nav ul li a:hover::after {
    visibility: visible;
    transform: scaleX(1);
}

.banner-slider {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.title, .title2{
    color: #fff;
    position: relative;
    display: inline-block;
    width: 100%;
}

.title::after{
    content: "";
    display: block;
    width: 60px;
    height: 2px;
    background-color: orange;
    position: absolute;
    left: 50%;
    transform: translate(-50%);
    bottom: -6px;
}

.title2::after{
    content: "";
    display: block;
    width: 60px;
    height: 2px;
    background-color: orange;
    position: absolute;
    left: 0;
    bottom: -6px;
}

.slides {
    display: flex;
    transition: transform 0.5s ease-in-out;
    height: 100%; /* Ensure the slides take the full height */
}

.slide {
    min-width: 100%;
    height: 100%; /* Ensure each slide takes the full height */
    background-size: cover;
    background-position: center;
}

.prev, .next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 10px;
    cursor: pointer;
    z-index: 1001;
}

.prev {left: 10px;}
.next {right: 10px;}

#mgallery, #mresume {
    margin-top: -68px;
    height: 68px;
    width: 100%;
}

#gallery, #resume article {
    color: #fff;
    text-align: center;
    padding: 60px 0;
}

#gallery {background: #111;}
#resume {
    background: url(./images/jinx-profile-final-1.jpg);
    background-attachment: fixed;
    background-size: cover;
}

#resume > article{
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    line-height: 24px;
}

.uk-modal-dialog{width: 80vw !important;}
button{border: 0 !important;cursor:pointer;}

.img{width: 100%;margin: 10px auto;}
.imgportrait{width: 30%;margin: 10px auto;}
.imgsize{width:300px;height:170px;border:0;margin:5px}

.gal{
    display: flex;
    justify-content: center;
    max-width: 1366px;
    flex-wrap: wrap;
    margin: 40px auto;
}

.avatar {
    width: 150px;
    height: 150px;
    border-radius: 200px;
    background: url('./images/avatar.jpg');background-size: cover;
    margin: 30px auto 
}

.ctt, b, a.glink, a.glink:hover, a.glink:visited {
    color: orange !important;}

.name{
    font-size: 22px;
    text-transform: uppercase;
    color: orange;
}

.social{padding: 30px 0 0 0;}

.fab, .fa-brands, .fa-copyright{
    width: 48px;
    height: 36px;
    font-size: 22px;
    padding: 12px 0 0 0;
    border-radius: 100px;
    color: #fff;
    background-color: #111;
}

.fab:hover, .fa-brands:hover, .fa-copyright:hover {background: #fff;color: #000}

footer {
    text-align: center;
    padding: 20px 0;
    background: #000;
    color: #fff;
    font-size: 12px;
}

.anc{
    position: absolute;
    top:0;
    left: 0;
}

#menuicon, #mobile {display: none;}

#menuicon {
    position: fixed;
    top: 10px;
    right: 10px;
    background: rgba(0,0,0, 0.7);
    color: #fff;
    z-index: 4;
    width: 52px;
    padding: 15px 0;
    text-align: center;
    border-radius: 100px;
    font-size: 18px;
}

.is-nav-selected{
    border: 2px solid orange;
}

/* Responsive Styles */
@media (max-width: 768px) {
    #menuicon {display: block;}
    #web {display: none;}
    #mobile {position: fixed;top: 0;width: 100%;background: #000}
    #mobile ul li {display: block;text-align: left;padding: 10px 0;}
    header {background: none;position: absolute;}
    #mgallery, #mresume {
        margin-top: 0px;
        height: 0px;
        width: 100%;
    }

    #logo{color: orange;text-shadow: 1px 1px 1px #000;}
    .lg{color: orange !important;text-transform: uppercase;}

    .rsm{
        max-width: 80vw;
        margin: 0 auto;
    }
    header nav ul {
        flex-direction: column;
        text-align: center;
    }

    .banner-slider {
        height: 400px;
    }

    .slides {
        height: 400px;
    }

    .slide {
        height: 400px;
    }
}
