html, body {
    margin:0;
    padding:0;

    /* animation */
    scroll-behavior: smooth;
    scroll-padding-top: 110px;
}

body {
    font-family: "Poppins", serif;
}

.bg-color {
    background-color: #000;
}

/* nav bar */
.navbar {
    background-color: #fff;
    /* background-image: linear-gradient(to bottom,white,rgba(255, 255, 255, 0.5)); */
    height:auto;
  }

.navbar-collapse {
  background-color: #fff;
}

.logoprop {
    padding-top: 1rem;
    height: 5rem;
}

.linksprop {
    padding: 0 2rem;
    font-size: 1.3rem;
    font-weight: 600;
}

.linksprop a {
    transition: all 0.4s;
}
.linksprop a:hover{
    transform: scale(1.2);
}

/* Hero image style */
.heroImg {
    height: 80vh;
    background-image: url('../images/Hero Banner_1.jpg');
    background-size: cover;
    background-position: center;
  
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items:flex-start;
}

/* Tell your story text style */
.heroText {
    color: #fff;
    font-family: 'Brush Script MT';
    font-size: 4rem;
    width:100%;
    margin: 0;
    margin-left: 55%;
    margin-top: 10vh;
}

/* Button */
.buttonStyle {
    /* remove underline */
    text-decoration: none;

    /* Button Style */
    font-family: Arial, sans-serif;
    font-weight: 900;
    font-size: 20px;
    color:#000;
    background-color: #fff;
  
    /* button box size */
    padding-top: 8px;
    padding-bottom: 8px;
    padding-left: 50px;
    padding-right: 50px;
  
    /* round coner */
    border-radius: 3px;

    margin:0;
    margin-left: 80%;

    /* hover transition */
    transition: all 0.4s;
  }
  
  /* Style More Hover */
  .buttonStyle:hover {
    color:#fff;
    background-color: grey;
  }


/* Article Style */
.articleStyle {
    margin-top: 5vh;
    text-align: center;
    font-size: 64px;

    /* hover transition */
    transition: all 0.4s;
  }

  .articleh1 {
    color:#fff;
    font-size: 4rem;
    font-weight: 600;
  }
  
  .articleh3 {
    color:#fff;
    font-size: 16px;
    font-weight: 100;
  }

/* Project gallery */
.proj-gallery {
    margin-top: 10vh;
    width: 100%;
    height: 70%;
    /* justify-content: space-evenly; */

}

.proj-row {
    display: flex;
    width: 100%;
    height: 40%;

    /* vertical margin */
    margin: 1rem 0;
    justify-content: center;
    flex-wrap: wrap;
}

.proj-box {
    width: 40%;
    height: 100%;
    margin: 1rem;

    border-radius: 8px;
    
    /* text position*/
    display: flex;
    justify-content: center;
    align-items: end;

    /* text style */
    color: #fff;
    text-decoration: none;

    /* size for boxes image */
    background-size: cover;
    background-position: center;
    
    /* hover transition */
    transition: all 0.4s;
    
}

#box1 {
    background-image: url('../images/Design Thumbnail.jpg');
}

#box1:hover {
    /* hover scale */
    transform: scale(1.05);
}

#box2 {
    background-image: url('../images/Video Thumbnail.jpg');
}

#box2:hover {
    /* hover scale */
    transform: scale(1.05);
}

#box3 {
    background-image: url('../images/Brand Design Thumbnail.jpg');
}

#box3:hover {
    /* hover scale */
    transform: scale(1.05);
}

/* View all works section */
.proj-View {
    display:flex;
    justify-content: center;
    align-items: flex-end;
    margin: 3rem 0;
    /* hover transition */
    transition: all 0.4s;
}

.proj-View:hover {
    transform: scale(0.9);
}
  
.proj-View a {
    text-decoration: none;
    font-weight: 400;
    font-size: 1.5em;
    color:#fff;
  }

  /* Clients Section */
.secClient {
    margin-top: 3vh;
    margin-bottom: 10vh;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
    gap: 3vw;
  }
  
.styleClientText {
    text-align: center;
    font-size: 64px;
    color:#fff;
    padding-top: 10vh;
  }
  
  /* footer */
  footer{
    background: #000;
    
  }

  .footerContainer {
    width: 100%;
    margin: 0;
    display: flex;
    justify-content: space-between;
    padding-bottom: 3vh;
  }
  
  .footer-content1 {
    padding-left: 1em;
  }
  
  .footer-content2 {
    list-style-type: none;
  }

  .footer-content2 h4 {
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    list-style-type: none;
  }

  /* .footer ul {
    padding:0;
  } */
  
  .footer-list {
    text-align: left;
    list-style-type: none;
    padding-top: 2vh;
  }
  
  .footer-list a {
    text-decoration: none;
    color: #fff;
    font-size: 16;
    font-weight: 100;
    text-align: left;
  }

  .footer-content3 h4 {
    color: #fff;
    text-align: end;
    margin-top: 1.5vh;
    margin-right: 2em;
  }
  
  .footer-content3 p {
    color: #fff;
    text-align: end;
    margin-right: 3rem;
  }
  
  .social-icons {
    text-align: end;
    margin-right: 2.8rem;
  }
  

  .social-icons li {
    display: inline-block;
    padding: 1px;
  }
  
  .social-icons a {
    padding: 3px;
  }
  