*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    /* font-family: 'Bebas Neue', sans-serif; */
    font-family: 'Poppins', sans-serif;
    
}
body{
  background: var(--light-color);
}
:root{
    --transition: all 300ms ease-in-out;
    --dark-color: #000;
    --orange-color: #ff8000;
    --light-color: #f8f8ff;
}
html{
    font-size: 10px;
    scroll-behavior: smooth;
}
button, .btn{
    cursor: pointer;
    border: none;
    background: transparent;
}
ul{
    list-style-type: none;
}
a{
    text-decoration: none;
    color: var(--dark-color);
}
img{
    width: 100%;
    display: block;
}
.container{
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}
.vh-100{
    min-height: 100vh;
}
h1, h2, h3{
    margin-top: 0;
    line-height: 1.3;
    margin-bottom: 2rem;
    color: var(--dark-color);
}
.flex{
    display: flex;
    align-items: center;
    justify-content: center;
}
.py-7{
    padding: 7rem 0;
}
.grid{
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 1rem;
}
.lead{
    opacity: 0.8;
    padding: 1rem 0;
    font-size: 1.7rem;
    font-weight: 300;
    line-height: 1.8;
}
/* Navbar styles */
/* #navbar {
    background: white;
    color: rgb(13, 26, 38);
    position: fixed;
    top: 0;
    height: 60px;
    line-height: 60px;
    width: 100vw;
    z-index: 10;
  }
  */
  .nav-wrapper {
    margin-left: -10px;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #ffffff8e;
  }
 
  
 .nav-wrapper ul {
    display: flex;
    list-style: none;
    margin-top: -2px;
    align-items: center;
    justify-content: space-between;

  }
  
 .nav-wrapper li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #0000008e;
  }
  
 .nav-wrapper li a {
    color: #0000008e;
    display: block;
    font-size: .7em;
    font-weight: 700;
    height: 50px;
    letter-spacing: 1px;
    margin: 0 20px;
    padding: 0 4px;
    position: relative;
    text-decoration: underline;
    text-transform: uppercase;
  }
  
.nav-wrapper li a:hover{
  border-bottom: 1px solid #ffffff8e;
  color: rgb(0, 0, 0);
  
}

  /* ====================================
Navigation
==================================== */

.overlay-navigation {
    position: fixed;
    z-index: 99;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: hsla(0, 0%, 0%, 0.8);
    transform: translateY(-100%);
  }
  
  .overlay-slide-down {
    transition: all .4s ease-in-out;
    transform: translateY(0)
  }
  
  .overlay-slide-up {
    transition: all .8s ease-in-out;
    transform: translateY(-100%)
  }
  
  nav,
  nav ul {
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
  }
  
  nav ul {
    display: flex;
    list-style: none;
  }
  
  nav ul li {
    flex-basis: 20%;
    justify-content: center;
    align-items: center;
    height: 100%;
    overflow: hidden;
    transform: translateY(-100%);
  }
  
  nav li a {
    position: relative;
    top: 46%;
    color: var(--light-color);
    text-transform: uppercase;
    font-weight: 500;
    letter-spacing: 4px;
    text-decoration: none;
    display: block;
    text-align: center;
    font-size: 1.4rem;
  }
  
  nav li a:before {
    content: '';
    width: 70px;
    height: 2px;
    background-color: var(--light-color);
    position: absolute;
    top: 50%;
    left: 0;
    z-index: 100;
    transform: translateX(-100%);
    opacity: 0;
    transition: all .2s linear;
  }
  
  nav li a:after {
    content: attr(data-content);
    font-size: 1.3rem;
    transition: all .2s linear;
    opacity: 0;
    position: absolute;
    z-index: 100;
    color: var(--light-color);
    display: block;
    margin-right: auto;
    margin-left: auto;
    left: 0;
    right: 0;
    bottom: -50px;
    text-transform: none;
    font-size: 300;
    font-style: italic;
    letter-spacing: 0;
  }
  
  nav li a:hover:before {
    transform: translateX(0);
    opacity: 1;
  }
  
  nav li a:hover:after {
    transform: translateY(15px);
    opacity: 1;
  }
  
  nav li:nth-of-type(1){background-color: #131414}
  nav li:nth-of-type(2){background-color: #202424}
  nav li:nth-of-type(3){background-color: #2c3535}
  nav li:nth-of-type(4){background-color: #303f3f}
  nav li:nth-of-type(5){background-color: #385050}
  nav li:nth-of-type(6){background-color: #bad8b9}
  
  .slide-in-nav-item {
    animation: slide-in-nav-item 0.4s linear 1 .2s both;
  }
  
  .slide-in-nav-item-delay-1 {
    animation: slide-in-nav-item 0.4s linear 1 .4s both;
  }
  
  .slide-in-nav-item-delay-2 {
    animation: slide-in-nav-item 0.4s linear 1 .6s both;
  }
  
  .slide-in-nav-item-delay-3 {
    animation: slide-in-nav-item 0.4s linear 1 .8s both;
  }
  
  .slide-in-nav-item-delay-4 {
    animation: slide-in-nav-item 0.4s linear 1 1s both;
  }
  .slide-in-nav-item-delay-5 {
    animation: slide-in-nav-item 0.4s linear 1 .97s both;
  }
  
  .slide-in-nav-item-reverse {
    animation: slide-in-nav-item-reverse .3s linear 1 .6s both;
  }
  
  .slide-in-nav-item-delay-1-reverse {
    animation: slide-in-nav-item-reverse .3s linear 1 .5s both;
  }
  
  .slide-in-nav-item-delay-2-reverse {
    animation: slide-in-nav-item-reverse .3s linear 1 .4s both;
  }
  
  .slide-in-nav-item-delay-3-reverse {
    animation: slide-in-nav-item-reverse .3s linear 1 .3s both;
  }
  
  .slide-in-nav-item-delay-4-reverse {
    animation: slide-in-nav-item-reverse .3s linear 1 .2s both;
  }
  .slide-in-nav-item-delay-5-reverse {
    animation: slide-in-nav-item-reverse .3s linear 1 both;
  }
  
  
  /* ====================================
  Burger king
  ==================================== */
  
  .open-overlay {
    position: absolute;
    right: 5rem;
    top: 3.2rem;
    z-index: 100;
    width: 34px;
    display: block;
    cursor: pointer;
    /* border: 1px solid black;
    padding: 10px 30px; */
  }
  
  .open-overlay span {
    display: block;
    height: 3px;
    background-color: #000;
    cursor: pointer;
    margin-top: 8px;
  }
  
  .animate-top-bar {
    animation: animate-top-bar .6s linear 1 both
  }
  
  .animate-bottom-bar {
    animation: animate-bottom-bar .6s linear 1 both
  }
  
  .animate-middle-bar {
    animation: animate-middle-bar .6s linear 1 both
  }
  
  .animate-out-top-bar {
    animation: animate-out-top-bar .6s linear 1 both
  }
  
  .animate-out-bottom-bar {
    animation: animate-out-bottom-bar .6s linear 1 both
  }

  animate-out-middle-bar {
    animation: animate-out-middle-bar .6s linear 1 both
  }
  
  
  /* ====================================
  Animation keyframes
  ==================================== */
  
  @keyframes slide-in-nav-item {
    from {
      -webkit-transform: translateY(-100%);
      transform: translateY(-100%)
    }
    to {
      -webkit-transform: translateY(0);
      transform: translateY(0)
    }
  }
  
  @keyframes slide-in-nav-item-reverse {
    from {
      -webkit-transform: translateY(0);
      transform: translateY(0)
    }
    to {
      -webkit-transform: translateY(-100%);
      transform: translateY(-100%)
    }
  }
  
  @keyframes animate-top-bar {
    0% {
      background-color: var(--light-color);
    }
    50% {
      -webkit-transform: translateY(9px);
      transform: translateY(9px)
    }
    80% {
      -webkit-transform: translateY(5px);
      transform: translateY(5px);
      background-color: var(--light-color)
    }
    100% {
      -webkit-transform: translateY(0);
      transform: translateY(0);
      background-color: #29363B;
    }
  }
  
  @keyframes animate-bottom-bar {
    0% {
      background-color: var(--light-color);
    }
    50% {
      -webkit-transform: translateY(-9px);
      transform: translateY(-9px)
    }
    80% {
      -webkit-transform: translateY(-5px);
      transform: translateY(-5px);
      background-color: var(--light-color);
    }
    100% {
      -webkit-transform: translateY(0);
      transform: translateY(0);
      background-color: #29363B;
    }
  }
  
  @keyframes animate-middle-bar {
    0% {
      background-color: var(--light-color);
    }
    80% {
      background-color: var(--light-color);
    }
    100% {
      background-color: #29363B;
    }
  }
  
  @keyframes animate-out-top-bar {
    0% {
      background-color: #29363B
    }
    50% {
      -webkit-transform: translateY(9px);
      transform: translateY(9px)
    }
    80% {
      -webkit-transform: translateY(5px);
      transform: translateY(5px);
      background-color: #29363B
    }
    100% {
      -webkit-transform: translateY(0);
      transform: translateY(0);
      background-color: var(--light-color);
    }
  }
  
  @keyframes animate-out-bottom-bar {
    0% {
      background-color: #29363B
    }
    50% {
      -webkit-transform: translateY(-9px);
      transform: translateY(-9px)
    }
    80% {
      -webkit-transform: translateY(-5px);
      transform: translateY(-5px);
      background-color: #29363B;
    }
    100% {
      -webkit-transform: translateY(0);
      transform: translateY(0);
      background-color: var(--light-color);
    }
  }
  
  @keyframes animate-out-middle-bar {
    0% {
      background-color: #29363B
    }
    80% {
      background-color: #29363B;
    }
    100% {
      background-color: var(--light-color);
    }
  }
  
  .home a{
    font-family: "Work Sans", sans-serif;
    color: var(--light-color);
    font-weight: 300;
    font-size: 12px;
    text-transform: uppercase;
    text-decoration: none;
    position: absolute;
    z-index: 10;
    top:50px;
    left:50px;
    padding-bottom: 3px;
    border-bottom: 1px solid var(--light-color);
  }
  
  @media (max-width: 640px) {
    nav ul li a {
      font-size: 11px;
    }
    nav li a:after {
      font-size: 0.6rem;
    }
    .open-overlay {
      right: 1rem;
    }
    nav li a:before {
      width: 15px;
    }
  }
  

  @keyframes changewidth {
    from {
        width: 0%;
    }

    to {
        width: 100%;
    }
}
#dynamicContent {
    white-space: nowrap;
}
/* header */
.header-text{
  margin-top: 20%;
  font-size: 30px;
}
.header-text2{
  margin-bottom: 90px;
}
.header-text h1{
  font-size: 60px;
  margin-top: 20px;
  font-weight: 300;
}
.header-text2 p{
  font-family: 'Bebas Neue', sans-serif;
  font-weight: 500;
  font-size: 2.2rem;
  color: #29363b8e;
}
.header-text2{
  margin-top: 20%;
}
.header-text2 h2{
  font-size: 10rem;
  font-weight: 500;
  padding-bottom: 20px;
  padding-top: 10px;
  font-family: 'Poppins', sans-serif;
}
.header-content{
    padding-bottom: 4rem;
}
.header-content h1{
    font-size: 9.5rem;
    margin-bottom: 0;
    letter-spacing: 4px;
    color: var(--light-color);
}
.header-content h3{
    color: var(--light-color);
    font-weight: 300;
    font-size: 3.5rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-top: 1.5rem;
}
.social-links{
    display: flex;
    margin-top: 3.5rem;
}
.social-links .fab{
    font-size: 1.7em;
}
.social-links li a{
    width: 40px;
    height: 40px;
    background-color: var(--light-color);
    margin-right: 1rem;
    border-radius: .3rem;
    box-shadow: 0 0 6px 5px rgba(0, 0, 0, 0.2);
    transition: var(--transition);
}
.social-links li a:hover{
    opacity: 0.9;
}


/* about */
.about-left{
    margin-bottom: 4rem;
    height: 480px;
    overflow: hidden;
}
/* button down and title -reusable */
.btn-down{
    font-size: 3rem;
    display: inline-block;
    margin-top: 1rem;
    transition: var(--transition);
}
.btn-down:hover{
    opacity: 0.8;
    transform: translateY(5px);
}
.btn-down-white{
    color: var(--light-color);
}
.title{
    margin-bottom: 5rem;
}
.title h2{
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 600;
    position: relative;
}
.title h2::after{
    position: absolute;
    content: "";
    top: 120%;
    left: 0;
    width: 70px;
    height: 4px;
    background-color: var(--dark-color);
}

#about{
    padding: 80px 0;
    color: #ffffff8e;
    background: url('../images/skills-bg.png');
    background-color: #000;
}
.row{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.about-col-1{
    flex-basis: 35%;
}
.about-col-1 img{
    width: 100%;
}
.about-col-2{
    flex-basis: 60%;
    text-align: left;
}
.about-col-2 .para-fade{
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  font-size: 2.2rem;
  color: #ffffff8e;
}
.para-fade{
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  font-size: 2.2rem;
  color: #29363b8e;
}
.about-col-2 p{
    font-size: 1em;
    font-weight: 500;
    font-family: 'Poppins', sans-serif;
}
.sub-title{
    font-size: 6.9rem;
    font-weight: 500;
    color: #ffffff8e;
    font-family: 'Poppins', sans-serif;
}
.tab-titles{
    display: flex;
    margin: 20px 0 40px;
    font-size: 1.3rem;

}
.tab-links{
    margin-right: 50px;
    font-size: 1em;
    font-weight: 900;
    cursor: pointer;
    position: relative;
    font-family: 'Poppins', sans-serif;
}
.tab-links::after{
    content: '';
    width: 0;
    height: 2px;
    position: absolute;
    background: #29363B;
    left: 0;
    bottom: -6px;
    transition: .5s;
}
.tab-links.active-link::after{
    width: 100%;
}
.tab-contents ul li{
    list-style: none;
    font-family: 'Poppins', sans-serif;
    margin: 10px 0;
    font-size: 1em;
    font-weight: 500;
}
.tab-contents ul li span{
    font-size: 20px;
    font-weight: 500;
}
.tab-contents{
    display: none;
}
.tab-contents.active-tab{
    display: block;
}


/* Portfolio  */

  #image-track {
    display: flex;
    gap: 4vmin;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(0%, -50%); 
    user-select: none; /* -- Prevent image highlighting -- */
  }
  
  #image-track > .image {
    width: 40vmin;
    height: 56vmin;
    object-fit: cover;
    object-position: 100% center;
  }
  
  .swiper {
    width: 600px;
    height: 300px;
    padding-bottom: 2rem;
    cursor: pointer;
  }
  
  .swiper-slide img {
    height: 300px;
    width: 200px;
    max-width: 100%;
    object-fit: cover;
  }
  
  .swiper-scrollbar {
    margin-top: 3rem;
  }
  
  

  @media only screen and (max-width:600px){

    .sub-title{
        font-size: 40px;
    }
    .about-col-1,
    .about-col-2{
        flex-basis: 100%;
    }
    .about-col-1{
        margin-bottom: 30px;
    }
    .about-col-2{
        font-size: 12px;
    }
    .tab-links{
        font-size: 16px;
        margin-right: 20px;
    }}
    @media (max-width:700px){

      .header-text2{
          font-size: 16px;
          margin-top: 40%;
      }
      .header-text2 h2{
          font-size: 40px;
      }
  
      .header-text2 p{
          font-size: 15px;
      }
      .nav-wrapper li a{
        margin: 0 9px;
        font-size: .4em;
      }
    }