@import url('https://fonts.googleapis.com/css?family=Poppins:200,300,400,500,600,700,800,900&display=swap');

*
{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins',San-Serif;
    color: #111111;
    scroll-behavior: smooth;
}

section
{
    padding: 100px;
}


.banner
{

 position: relative;
 min-height: auto;
 background: url(images/banner.jpg);
 background-size: cover;
 background-position: right;
 display: flex;
 justify-content: space-between;
 align-items: center;

}

.banner h2
{

    font-size: 1em;
    color: #ffffff;
    font-weight: 700;
    line-height: 1.2em;
}

.banner h3
{

    font-size: 3em;
    color: azure;
    font-weight: 700;
    line-height: 1.2em;
}
.button
{
    position: relative;
    background: #2196f3;
    color: #f7f7f7;
    display: inline-block;
    margin-top: 20px;
    padding: 10px 30px;
    font-size: 18px;
    text-decoration: none;
    letter-spacing: 0.5px;
    font-weight: 500;

}




header
{

    position:fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 40px 100px;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: 0.5s;
}

header.logos
{
    color: #f7f7f7;
    font-size: 24px;
    text-transform:uppercase;
    text-decoration:none;
    font-weight: 700;
    letter-spacing: 2px;
}

header ul
{

    position: relative;
    display: flex;

}

header ul li
{
 position: relative;
 list-style: none;

}

header ul li a
{
    position: relative;
    display: inline-block;
    margin: 0 15px;
    color: #ffffff;
    text-decoration: none;
}


header.sticky
{
    padding: 30px 0;
    background: #222222;
}


header.sticky.logo
{
    color: #111111;

}



header.sticky ul li a
{
    color: #111111;

}

.heading
{
    width: 100%;
    text-align: center;
    margin-bottom: 30px;
    color: #ffffff;

}
.content
{
    display: flex;
    justify-content: space-between;

}

.contentbox h3
{
    font-size: 24px;
    margin-bottom: 10px;
    text-justify: inter-word;

}

.w50
{

    max-width: 40%;
}

img
{
    max-width: 50%;
}


.services
{
    background: #929292;

}

.heading.white
{
    color: #f7f7f7;
}

.services.content
{

    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    flex-direction: row;
}

.services.content.servicebx
{

    padding: 40px 20px;
    background: #222222;
    color: #ffffff;
    max-width: 340px;
    margin: 40px;
    text-align: justify;
    transition: 0.5s;
}

.services.content.servicebx:hover
{
    background-color: #2196f3;

}

.services.content.servicebx img
{
    max-width: 80px;
    filter: invert;

}

.services.content.servicebx h2
{
    font-size: 20px;
    font-weight: 600;
    
}
.works.content
{
    display:flex;
    padding-left: 50;
    justify-content: space-around;
    flex-wrap: wrap;
    width: 30;

}

.works.content.workbx
{
    width: 20%;
    padding: 20px;
    box-sizing: border-box;

}

.works.content.workbx img
{
    max-width: 40%;
    border-image-width: 10%;

}

web

.testimonial
{
    background: #a8a5a5;

}

.testimonial.content
{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;


}

.testimonial.content.testimonialbox
{

    max-width: calc(50%-40%);
    padding: 60px 40px;
    margin: 20px;
    background: #2196f3;
}

.testimonial.content.testimonialbox p
{
    color: #f7f7f7;
    font-style: italic;
    font-size: 16px;
    font-weight: 300;

}

.testimonial.content.testimonialbox h3
{
    margin-top: 40px;
    text-align: end;
    color: #f7f7f7;
    line-height: 1em;
    font-size: 20px;
    font-weight: 300;
}

.testimonial.content.testimonialbox:hover{

    background-color: #f7f7f7;
}

.icon-bar {
    position: fixed;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
  }
  
  /* Style the icon bar links */
  .icon-bar a {
    display: block;
    text-align: center;
    padding: 16px;
    transition: all 0.3s ease;
    color: white;
    font-size: 20px;
  }
  
  .icon-bar a:hover {
    background-color: #f7f7f7;
  }
  
  .facebook {
    background: #3B5998;
    color: white;
  }
  
  .twitter {
    background: #55ACEE;
    color: white;
  }
  
  .google {
    background: #dd4b39;
    color: white;
  }
  
  .linkedin {
    background: #007bb5;
    color: white;
  }
  
  .youtube {
    background: #bb0000;
    color: white;
  }

  .footer {
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    background-color: #111111;
    color: white;
    text-align: center;
  }

  .footer p {
color: #f7f7f7;  

}