@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@100&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Jura:wght@700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Rajdhani:wght@500&family=Roboto:wght@100&display=swap');
@import url('https://fonts.googleapis.com/css?family=Poppins:400,500,600,700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Ubuntu&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans:wght@600&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@900&display=swap');
:root{
    


    --pink:#bb6890;
}

*{
    margin:0; padding:0;
    box-sizing: border-box;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    outline: none; border:none;
    text-decoration: none;

    transition: .2s linear;
}
h1{
    text-transform: uppercase;
    font-size: 15px;
}
html{
    font-size: 62.5%;
    scroll-behavior: smooth;
    scroll-padding-top: 6rem;
    overflow-x: hidden;
}




::-webkit-scrollbar{
    width: 10px;

}

::-webkit-scrollbar-track{
    background: rgb(82, 82, 82);
}
::-webkit-scrollbar-thumb{
   background: #CE4D51;
   border-radius: 5px;
}
section{
    padding:2rem 9%;
}
.heading{
    text-align: center;
    font-size: 5rem;
    color:#333;
    padding:1rem;
    margin:2rem 0;
    font-family: 'Rajdhani', sans-serif;

}

.heading span{
    color:#95250d;
    font-family: 'Rajdhani', sans-serif;
}




header{
    position: fixed;
    top:0; left:0; right:0;
    background: #ffffff;
    padding:2rem 9%;
    display: flex;
    height: 75px;
    align-items: center;
    justify-content: space-between;
    z-index: 1000;
    
}

 header .logo{
    margin-top: 5px;
    
}





.checkbtn{
  font-size: 30px;
  color: black;
  float: right;
  line-height: 80px;
  margin-right: 40px;
  cursor: pointer;
  display: none;
}
#check{
  display: none;
}
nav ul{
    float: right;
    margin-right: 20px;
  }
  nav ul li{
    display: inline-block;
    line-height: 80px;
    margin: 0 5px;
  }
  nav ul li a{
    color: black;
    font-size: 15px;
    padding: 7px 13px;
    border-radius: 3px;
    text-transform: uppercase;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-weight: 500;
  }
  @media (max-width: 1074px){
    nav ul li a{
        font-size: 15px;
        
    }
  }

  @media (max-width: 1150px){
    .checkbtn{
      display: block;
    }
    ul{
      position: fixed;
      width: 100%;
      height: 100vh;
      background: #CE4D51;
      top: 80px;
      left: -100%;
      text-align: center;
      transition: all .5s;
    }
    nav ul li{
      display: block;
      margin: 50px 0;
      line-height: 30px;
    }
    nav ul li a{
      font-size: 20px;
    }

    #check:checked ~ ul{
      left: 0;
    }
  }

input{
    display: none;
}

.container-work{
    width: 100%;
    text-align: center;
}

.work{
    margin-top: 150px;
    padding: 0;
    box-sizing: border-box;
}


.work  h1{
    text-align: center;
    font-size: 50px;
    position: relative;
    margin: 40px 0;
    font-family: 'Roboto', sans-serif;
}

.work h1::before{
    content: "";
    position: absolute;
    width: 100px;
    height: 3px;
    background-color: #CE4D51;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    animation: animate 4s linear infinite;
}

@keyframes animate{
    0%{
        width: 100px;
    }
    50%{
        width: 200px;

    }

    100%{
        width: 100px;
    }

}

.top-content{
    background-color: #fff;
    width: 90%;
    margin: 0 auto 20px auto;
    height: 60px;
    display: flex;
    align-items: center;
    
}

.work h3{
    height: 100%;
    background-color: #fff;
    line-height: 60px;
    padding: 0 50px;
    color: #fff;
}

.gallery {
    display: flex;
    padding: 2px;
    transition: 0.3s;
  }
 
  .gallery__column {
    display: flex;
    flex-direction: column;
    width: 25%;
  }
  .gallery__link {
    margin: 2px;
    overflow: hidden;
  }

  .gallery__link:hover .gallery__caption {
    opacity: 1;
  }
  .gallery__thumb {
    position: relative;
  }
  .gallery__image {
    display: block;
    width: 100%;
    transition: 0.3s;
  }
  .gallery__image:hover {
    transform: scale(1.1);
  }
  .gallery__caption {
    position: absolute;
    bottom: 0;
    left: 0;
    padding: 25px 15px 15px;
    width: 100%;
    font-family: 'Raleway', sans-serif;
    font-size: 16px;
    color: white;
    opacity: 0;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.5) 0%, rgba(255, 255, 255, 0) 100%);
    transition: 0.3s;
  }
  


