/* colors */
:root {
  --light-color: #E5E5E5;
  --grey-color: #5B5B5B;
  --yellow-color: #F6BD20;
  --black-hover-color: #050401;
  --yellow-hover-color: #F6BD20;
}


*:before,
*:after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

/*Custom scrollbar*/

html::-webkit-scrollbar {
  width: 1vw;
}

html::-webkit-scrollbar-thumb {
  background-color: #444444;
  border-radius: 190px;
  height: 5px;
}

html::-webkit-scrollbar-thumb:hover {
  background-color: #777;

}

html::-webkit-scrollbar-track {
  background-color: #777676;


}

html::-webkit-scrollbar-track:hover {
  background-color: #555;
}

/* End of custom scrollbar */

html {
  width: 100%;
  height: 100%;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  overflow-x: hidden;
}

.wrapper {
  width: 100%;
  /* background: linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.3)), url(image/pic11.jpg); */
  background: linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.3)),url(image/wtr.jpg) no-repeat center center;
  height: 120vh;
  /* min-height: 120vh; */
  background-size: cover;
  position: relative;
  z-index: 1;

}

.desktop-nav {
  display: flex;
  overflow: hidden;
  justify-content: space-between;
  align-items: center;
  padding: 0px;
  box-sizing: border-box;
  height: 53px;
  width: 100%;
  z-index: 200;
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  /*transparent: 70vw;*/
}

.logo {
  width: 45px;
  height: 35px;
  padding-left:  50px;
  top: 10px;
}

.logo img {
  width: 110px;
  height: 35px;

}

.desktop-nav .menu-items {
  display: flex;
  list-style: none;
  padding-right: 90px;
}

.desktop-nav .menu-items li {
  margin: 0 11px;


}

.desktop-nav .menu-items li a {
  position: relative;
  text-decoration: none;
  color: white;
  text-align: center;
  width: 100%;
  height: 13px;
  top: 2px;
  font-family: 'Poppins', sans-serif;
  font-style: normal;
  font-weight: normal;
  font-size: 11px;
  margin: auto;
  padding: 10px;
  justify-content: space-around;
}

.desktop-nav .menu-items li a:hover {
  -webkit-text-fill-font: bold;
  -webkit-text-stroke-width: 0.6px;
  -webkit-text-stroke-font: bold;
}

.desktop-nav .menu-items li a.active {
  font-style: normal;
  font-size: 12px;
  font-weight: bold;
  color: #E7EA00;
}

.desktop-nav .menu-items li a:after {
  content: "";
  position: absolute;
  background-color: white;
  height: 2px;
  width: 0%;

  left: 50%;
  bottom: 3px;
  border-radius: 50px;
  justify-content: space-around;
  transition: 0.2s;
  transform: translateX(-50%);
}

.desktop-nav .menu-items li a:hover:after {
  width: 70%;
}

.hamburger {

   position: relative;
   display: none;
   width: 20px;
   cursor: pointer;

   appearance: none;
   background: none;
   outline: none;
   border: none;

}

.hamburger .bar, .hamburger:after, .hamburger:before {
  content: '';
  display: block;
  width: 100%;
  height: 2px;
  background-color: #E7EA00;
  margin: 4px 0px;

  transition: 0.3s;

}

.hamburger.is-active:before {
  transform: rotate(-45deg) translate(-3px, 6px);
}

.hamburger.is-active:after {
  transform: rotate(45deg) translate(-3px, -6px);
}

.hamburger.is-active .bar{
  opacity: 0;
}

.mobile-nav {
  position: fixed;

  right: 0;
  bottom: 100%;
  width: 45%;
  display: block;
  z-index: 98;
  padding-top: 4%;
  transition: 0.6s;
  border-radius: 0% 0% 0% 99%;
}

.mobile-nav.is-active {
  bottom: 60%;
}

.mobile-nav a {
  display: block;
  width: 100%;
  max-width: 200px;
  margin: 0 auto 5px;
  text-align: center;
  padding: 16px 15px;
  text-decoration: none;
  color: white;
  font-family: 'Poppins', sans-serif;
  font-style: normal;
  font-weight: bold;
  font-size: 12px;
  padding-left: 120px;


}



/* Hero Section */
.hero-container {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.hero-container .left p {
  /* position: absolute; */
  width: 490px;
  /* height: 130px; */
  padding-left: 110px;
  padding-top: 300px;
  font-family: 'Alegreya', serif;
  font-style: normal;
  font-weight: normal;
  font-size: 15px;
  color: #FFFFFF;
}

.btnyellow {
  position: absolute;
  width: 130px;
  height: 40px;
  left: 140px;
  top: 450px;
  border: 3px solid #E7EA00;
  box-sizing: border-box;
  border-radius: 15px;
  cursor: pointer;
  background: #E7EA00;
  text-decoration: none;
  text-align: center;
  line-height: 32px;
  font-family: 'Poppins', sans-serif;
  font-style: normal;
  font-weight: bold;
  font-size: 17px;
  color: #FFFFFF;
  transition: 0.5s;
  display: inline-block;

}

.btnyellow:after {
  content: '\00bb';
  position: absolute;
  opacity: 0;
  transition: 0.5s;
  top: 0;
  right: 10px;
}

.btnyellow:hover {
  padding-right: 8px;
}

.btnyellow:hover:after {
  opacity: 1;
  right: 5px;
}





/* Animation */

.logo {
  animation: fadeIn 1000ms forwards;
  opacity: 0;
  animation-delay: 500ms;
}

.desktop-nav {
  animation: fadeDown 1100ms forwards;
  opacity: 0;
  position: fixed;
  width: 100%
}

@keyframes fadeDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}


.hero-container .left p {
  animation: fadeIn 1100ms forwards;
  opacity: 0;
  animation-delay: 600ms;
}

@keyframes fadeIn {
  to {
    opacity: 1;
  }
}


.btnyellow {
  animation: fadeIn 1100ms forwards;
  opacity: 0;
  animation-delay: 800ms;
}

/* End of home section */

.about-section {
  width: 100%;
  /*background-image: linear-gradient(rgba(0, 0, 0, 0.37), rgba(0, 0, 0, 0.5)), url(./image/pic4.jpg) ;*/
  background: linear-gradient(rgba(0, 0, 0, 0.37), rgba(0, 0, 0, 0.5)), url(image/pic4.jpg) no-repeat center center;
  background-size: cover;
  height: 120vh;
  position: relative;
  z-index: 0;
}

.section-tittle {

  width: 280px;
  padding-left: 110px;
  padding-top: 130px;
  font-family: 'Poppins', sans-serif;
  font-style: normal;
  font-weight: bold;
  font-size: 22px;

  color: #FFFFFF;
}

.about-discription  {

  width: 680px;
  padding-left: 100px;
  padding-top: 50px;
  font-family: 'Alegreya', serif;
  font-style: normal;
  font-weight: normal;
  font-size: 15px;

  color: #FFFFFF;
}

/* End of About section */

.serv {
  width: 100%;
  background: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0)), url(image/blck.jpg) no-repeat center center;
  background-size: cover;
  height: 120vh;
  position: relative;
  z-index: 0;

  }

.service-tittle  {
  position: absolute;
  width: 300px;
  padding-left: 45%;
  top: 80px;
  font-family: 'Poppins', sans-serif;
  font-style: normal;
  font-weight: bold;
  font-size: 23px;
  color: #FFFFFF;
}

.iconl .licon img {
  position: absolute;
  width: 38px;
  height: 60px;
  left: 24%;
  top: 192px;
  font-size: 0.5rem;
  line-height: 20px;
}

.brand {
  position: absolute;
  width: 230px;
  height: 184px;
  left: 22%;
  top: 272px;
  font-family: 'Poppins', sans-serif;
  font-style: normal;
  font-weight: bold;
  font-size: 16px;
  line-height: 30px;
  color: #FFFFFF;
}

.sub-l {
  position: absolute;
  width: 342px;
  height: 184px;
  left: 11%;
  top: 319px;
  font-family: 'Alegreya', serif;
  font-style: normal;
  font-weight: normal;
  font-size: 13px;
  line-height: 20px;
  text-align: center;
  color: #FFFFFF;
}

.talk-left {
  position: absolute;
  width: 135px;
  height: 40px;
  left: 105px;
  top: 110px;
  border: 3px solid #F6BD20;
  box-sizing: border-box;
  border-radius: 15px;
  text-align: center;
  cursor: pointer;
  font-family: 'Poppins', sans-serif;
  font-style: normal;
  font-weight: bold;
  font-size: 17px;
  line-height: 32px;
  display: inline-block;
  transition: .3s ease background-color;
}

.talk-left a {
  text-decoration: none;
  color: #FFFFFF;
  transition: 0.5s;
}

.talk-left:hover {
  color: #FFFFFF;
  background-color: #F6BD00;
}

.iconr .ricon img {
  position: absolute;
  width: 38px;
  height: 60px;
  right: 26%;
  top: 190px;
  font-size: 0.5rem;
  line-height: 20px;
}

.interface {
  position: absolute;
  width: 233px;
  height: 184px;
  right: 17%;
  top: 272px;
  font-family: 'Poppins', sans-serif;
  font-style: normal;
  font-weight: bold;
  font-size: 16px;
  line-height: 30px;
  text-align: center;
  color: #FFFFFF;
}

.sub-r {
  position: absolute;
  width: 342px;
  height: 184px;
  right: 12%;
  top: 319px;
  font-family: 'Alegreya', serif;
  font-style: normal;
  font-weight: normal;
  font-size: 13px;
  line-height: 20px;
  text-align: center;
  color: #FFFFFF;
}

.talk-right {
  position: absolute;
  width: 135px;
  height: 40px;
  left: 105px;
  top: 110px;
  border: 3px solid #F6BD20;
  box-sizing: border-box;
  border-radius: 15px;
  text-align: center;
  cursor: pointer;
  font-family: 'Poppins', sans-serif;
  font-style: normal;
  font-weight: bold;
  font-size: 17px;
  line-height: 32px;
  display: inline-block;
  transition: .3s ease background-color;
}

.talk-right a {
  text-decoration: none;
  color: #FFFFFF;
  transition: 0.5s;
}

.talk-right:hover {
  color: #FFFFFF;
  background-color: #F6BD00;
}

/* End of service section*/

.proj {
  width: 100%;
  background: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0)), url(image/pic6.jpg) no-repeat center center;
  background-size: cover;
  height: 120vh;
  position: relative;
  z-index: 0;
}

.proj-tittle {
  position: absolute;
  width: 240px;
  height: 14px;
  left: 150px;
  top: 130px;
  font-family: 'Poppins', sans-serif;
  font-style: normal;
  font-weight: bold;
  font-size: 23px;
  line-height: 10px;
  color: #FFFFFF;
}

.big-btn {
  position: absolute;
  width: 200px;
  height: 240px;
  left: 145px;
  top: 180px;
  background: linear-gradient(180deg, rgba(196, 196, 196, 0) 0%, #F6BD20 121.48%);
}

.big-btn a{
  position: absolute;
  width: 130px;
  height: 184px;
  left: 7%;
  top: 210px;
  font-family: 'Poppins', sans-serif;
  font-style: normal;
  font-weight: bold;
  font-size: 17px;
  line-height: 25px;
  color: #FFFFFF;
  text-decoration: none;
  display: inline-block;
}

.sub-proj  {
  position: absolute;
  width: 220px;
  height: 175px;
  left: 145px;
  top: 70%;
  font-family: 'Alegreya', serif;
  font-style: normal;
  font-weight: normal;
  font-size: 12px;
  line-height: 15px;
  color: #FFFFFF;
}

/* Start of media query for a phone*/

@media screen and (max-width: 768px) {

  .menu-items li {
    display: none;
  }

.hamburger {

  display: block;

}


  .hero-container .left p {
    /*margin: 200px auto 5px auto;*/
    font-size: 1.4rem;
    padding-top: 150px;
    width: 75%;
    padding-left: 50px;
    position: absolute;

}
  .btnyellow{
    width: 30%;
    left: 50px;
    top: 650px;
    margin-left: 10px;
    position: absolute;
}

  .section-tittle {
    width: 70%;
    margin-left: 5px;
    position: inherit;
    padding-top: 90px;
  }

  .about-discription {
    margin: 20px auto 5px auto;
    font-size: 1.4rem;
    width: 80%;
    padding-top: 20px;
    padding-left: 5px;
  }

  .service-tittle  {
    width: 40%;
    padding-left: 160px;
    position: absolute;
    top: 90px;
  }

 .iconl .licon img {
    left: 190px;
 }

 .brand {
  padding-left: 80px;
 }

 .sub-l {

 }


 .talk-left {

 }


.iconr .ricon img  {
  left: 190px;
}

.interface{
  left: 90px;
}

.sub-r{

}

.talk-right {

}

.wrapr {
width: 40%;
padding-left: 420px;
position: absolute;
top: 320px;
}

.wrapr{}




.proj-tittle{
  width: 40%;
  left: 110px;
  position: absolute;
  top: 80px;
}

.big-btn{
  position: absolute;
  width: 120px;
  left: 100px;
  top: 100px;
}

.big-btn a{
  position: absolute;
  width: 140px;
  left: 5px;
  top: 210px;
  font-size: smaller;
}


.sub-proj {
   position: absolute;
   width: 140px;
   left: 100px;
   top: 360px;
   font-size: small;
 }

}


/* Start of media query for phone*/

/* Add bootstrap scrollspy for scroll and slide effect */
