/* Import font */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap');

/* Class styles */

/* Style */
body, h1, h2, h3, h4, h5, h6, p {
  font-family: "Poppins", serif;
  margin: 0;
  padding: 0; 
}

.bg1 {
    background-color: black;
  }

/* top nav bar style */
.top-nav-bar {
  height: 64px;
  background-color: #fff;
  display: block;
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
}

.navStyle {
list-style-type: none;
font-weight: 400;
margin: 0;
padding: 0;
height: 64px;
overflow: hidden;
background-color: #fff;
}

.navStyleli {
float: left;
}

.navStyleli a {
display: block;
color: black;
font-size: 18px;
text-align: center;
height: 64px;
padding: 21px;
text-decoration: none;
}

.navStyle li a:hover {
color:#fff;
background-color: #111;
}

.lanIcon {
    float:right;
    padding-top:20px;
}

/* Hero image style */
.heroImg {
  height: 100vh;
  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;
}

.heroText {
  color: #fff;
  font-family: 'Brush Script MT';
  font-size: 4rem;
  margin:0;
  margin-left: 15%;
  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: 20%;
}

/* Style The More Hover */
.buttonStyle:hover {
  color:#fff;
  background-color: grey;
}

/* Article Style */
.articleStyle {
  text-align: center;
  font-size: 64px;
}

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

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


/* Projects section */
.projContainer {
  margin-top: 10vh;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1em;

}

.projView {
  display:flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1em;
}

/* View all works section */
.projView 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 h4 {
  color: #fff;
  font-size: 16px;
  font-weight: 600;
}

.footer-content2 a {
  color:#fff;
  text-decoration: none;
  font-weight: 600;
}

.footer-list {
  text-align: left;
}

.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: 1em;
  margin-right: 2em;
}

.footer-content3 p {
  color: #fff;
  text-align: end;
  margin-right: 2.5em;
}

.social-icons {
  text-align: end;
  margin-right: 2em;
}
    
.social-icons li {
  display: inline-block;
  padding: 1px;
}

.social-icons a {
  padding: 3px;
}



