* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

body,
html {
  width: 100%;
  height: 100%;
}

body {
    overflow-x: hidden !important;
    overflow-y: visible !important;
    padding-right: 0 !important;
}

ul {
  padding-left: 0;
  margin-bottom: 0;
  list-style-type: none;
}

a {
  text-decoration: none;
  color: #fff;
  transition: all ease 0.2s;
}

a:hover {
  color: #fa9308;
}

.btn {
  background-color: #f25a07;
  color: #fff;
  padding: 12px 70px;
  border-radius: 144px;
  transition: all ease 0.2s;
  font-weight: 400;
  font-size: 20px;
}

.btn:hover {
  background-color: #fff;
  color: #000;
}

.header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  transition: all ease .2s;
}

.header.fixed {
  position: fixed;
  top: 0;
  width: 100%;
  background-color: #000;
  z-index: 999;
}

.header .row {
  align-items: center;
}

.header .logo img {
  width: 100%;
}

.header .nav {
  justify-content: center;
  padding: 20px 0px;
  background-color: #06131445;
  border-radius: 144px;
  width: 90%;
  margin: 0 auto;
  border: 1px solid #292a36;
  text-align: center;
}

.header .nav ul {
  width: 100%;
}

.header .nav ul li {
  display: inline-block;
  margin: 0 50px 0 0;
}

.header .nav ul li:last-child {
  margin: 0;
}

.header .nav ul li a {
  color: #fff;
  transition: all ease 0.2s;
}

.header .nav ul li a:hover {
  color: #fa9308;
}

.header .header-number .btn img {
  width: 25px;
}

.header .header-number .btn {
  color: #fff;
  padding: 20px 42px;
  border-radius: 144px;
  background-color: #f25a07;
  border: 1px solid #292a36;
  font-size: 1rem;
}

.header .header-number .btn:hover {
  background-color: #ffffff52;
  color: #fff;
}

.banner {
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  padding: 200px 0 150px;
  background: linear-gradient(150deg, rgba(2,9,42,1) 14%, rgba(27,65,158,1) 58%, rgba(30,128,230,1) 100%);
}

.banner .content {
  padding-right: 100px;
}

.banner .content h1 {
  color: #fff;
  font-size: 70px;
  line-height: 1.1;
}

.banner .content p {
  color: #fff;
  margin: 20px 0;
}

.banner .content ul {
  margin-bottom: 20px;
}

.banner .content ul li {
  color: #fff;
  display: inline-block;    
  width: 49%;
    margin: 0 0px 0 0;
}

.banner .content ul li i {
  color: #f25a07;
}

.banner .content span {
  display: block;
  margin: 20px 0;
}

.banner .image {
  position: relative;
}

.banner .image .main-img {
  width: 540px;
  margin: 0 auto;
  border-radius: 12px;
}

.banner .image .img1 {
  position: absolute;
  top: 32%;
  left: -12%;
  width: 220px;
}

.banner .image .img2 {
  position: absolute;
  top: 4%;
  right: 11%;
  width: 90px;
}

.banner .image .img3 {
  position: absolute;
  bottom: -5%;
  left: 12%;
  width: 120px;
}

.banner .image .img4 {
  position: absolute;
  bottom: 8%;
  right: -8%;
  width: 240px;
}

.banner .bg {
  width: 100%;
  margin: 100px 0 0;
}

.banner .banner-bottom-img {
  margin-top: 0px;
  margin-bottom: -410px;
}

.banner .banner-bottom-img .img {
  padding: 110px;
}

.banner .banner-bottom-img .img .img2 {
  position: absolute;
  width: 300px;
  box-shadow: none;
  bottom: 30%;
  right: 2%;
}

.banner .banner-bottom-img img {
  width: 100%;
  padding-bottom: 0;
  box-shadow: 0px 60px 70px -50px rgb(0 0 0 / 40%);
}

.banner .content h1 span {
    color: #f25a07;
    margin: 0;
}


@media only screen and (max-width: 1366px) {
  .header .nav ul li {
    margin: 0 20px 0 0;
  }

  .header .header-number .btn {
    padding: 20px 29px;
  }

  .banner .content {
    padding-right: 30px;
  }
}

@media only screen and (max-width: 500px) {
  .header .row {
    position: relative;
  }

  .header .row .col-lg-2,
  .header .row .col-lg-7 {
    width: 50%;
  }

  .header .mobile-none {
    display: none;
  }

  .header .nav {
    position: absolute;
    top: 0;
    left: 200%;
    width: 100%;
    height: 100vh;
    background-color: #fff;
    border-radius: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all ease 0.3s;
    display: none;
  }

  .header .nav.active {
    left: 0;
  }

  .header .nav ul li {
    display: block;
    margin: 20px 0;
  }

  .header .nav ul li a {
    color: #000;
    border-bottom: 1px solid #000;
    padding-bottom: 10px;
    font-size: 22px;
  }

  .menu-open {
    display: block;
    text-align: end;
  }

  .menu-open a {
    font-size: 25px;
  }

  .menu-close a {
    position: absolute;
    color: #000;
    font-size: 30px;
    top: 0;
    right: 4%;
  }

  .banner {
    padding: 100px 0 150px;
  }

  .banner .content h1 {
    color: #fff;
    font-size: 38px;
  }

  .banner .content span img {
    width: 100%;
  }

  .banner .image .main-img {
    width: 100%;
  }

  .banner .image .img1 {
    display: none;
  }

  .banner .image .img2 {
    display: none;
  }

  .banner .image .img3 {
    display: none;
  }

  .banner .image .img4 {
    display: none;
  }

  .menu-close {
    display: block;
  }

  .banner .bg {
    display: none;
  }

  .banner .banner-bottom-img .img {
    padding: 20px 20px 200px;
  }

  .banner .banner-bottom-img .img .img2 {
    width: 130px;
    top: 29%;
    right: 1%;
  }
  .banner .content ul li {
    color: #fff;
    display: inline-block;
    margin: 0 3px 0 0;
    font-size: 13px;
   }
   .header .menu-open .btn {
    font-size: 14px;
    padding: 10px 20px;
    }
    #home .image {
        display: none;
    }
}