@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@100;300;400;500;600&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
  cursor: url(/image/holoball\ spec.cur), auto;
}

body {
  background: #ffffff;
}

.header .header-2 {
  background: #ff9328;
  position: fixed;
  z-index: 22;
  width: 100%;
  height: 74px;
  display: flex;
  align-items: center;
}

.header .header-2 .navbar {
  text-align: center;
}
.header .header-2 .navbar img{
  width: 120px;
  height: auto;
  margin-bottom: -15px;
}
.header .header-2 .navbar a {
  color: #fff;
  display: inline-block;
  /* padding: 10px 10px; */
  font-size: 17px;
  text-decoration: none;
  padding: 29px;
  margin-left: 0px;
  transition: all .5s ease;
}
.header .header-2 .navbar a:first-child {
  float: left;
  margin-left: 100px;
  margin-right: 500px;
  font-size: 22px;
}
.header .header-2 .navbar a:nth-child(n + 2):hover {
  background: hsl(12, 93%, 58%);
}

.header .header-2.active {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
}

.mobile-navbar {
  text-align: center;
  background: #ff9328;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  display: none;
}

.mobile-navbar a {
  font-size: 25px;
  padding: 20px;
  color: #fff;
  text-decoration: none;
}

.mobile-navbar a:hover {
  background: hsl(12, 93%, 58%);
}
.cards_wrap {
  padding: 100px 9%;
  width: 100%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.cards_wrap .card {
  width: 33%;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 10px;
  border: 1px solid #c5c4c4;
  margin: 10px 0;
  text-decoration: none;
}

.cards_wrap .card:hover {
  border: 1px solid #444;
}

.cards_wrap .card .card-img img {
  height: 150px;
  width: 150px;
  overflow: hidden;
  transition: transform .3s ease;
}
.cards_wrap .card:hover .card-img img {
  transform: scale(0.9);
}
.cards_wrap .card .card-text h3 {
  font-size: 20px;
  color: #444;
}

.cards_wrap .card .card-text p {
  color: #666;
  font-size: 14px;
  padding: 5px 0;
  line-height: 20px;
}

.heading{
  text-align: center;
  margin-bottom: 20px;
  position: relative;
}

.heading::before{
  content: '';
  position: absolute;
  top:50%; left:0;
  transform: translateY(-50%);
  width: 100%;
  height:0.1px;
  background: rgba(0, 0, 0, 0.1);
  z-index: -1;
}

.heading span{
  font-size: 30px;
  padding:5px 20px;
  color:#444;
  background: #fff;
  border:1px solid rgba(0,0,0,.1);
}
.footer .box-container{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap:15px;
  padding: 0 120px;
  background-color: white;
}

.footer .box-container .box h3{
  font-size: 22px;
  color:#444;
  padding:10px 0;
}

.footer .box-container .box a{
  display: block;
  font-size: 14px;
  color:#666;
  padding:10px 0;
  text-decoration: none; 
}

.footer .box-container .box a i{
  color:#ff9328;
  padding-right: 5px;
 
}

.footer .box-container .box a:hover i{
  padding-right: 20px;
  transition: .4s ease-in-out;
}

.footer .box-container .box iframe{
  width:100%;
}

.footer .share{
  padding:10px 0;
  text-align: center;
}

.footer .share a{
  height: 50px;
  width: 50px;
  line-height: 50px;
  font-size: 20px;
  color:#fff;
  background:#ff9328;
  margin:0 3px;
  border-radius: 50%; 
  text-decoration: none;
}

.footer .share a:hover{
  background:#444;
}

.footer .credit{
  border-top: 1px solid rgba(0,0,0,.1);
  margin-top: 20px;
  padding:0 10px;
  padding-top: 25px;
  font-size: 20px;
  color:#666;
  text-align: center;
}
.footer .credit span a{
  color:#ff9328; 
  text-decoration: inherit;
}


@media (max-width: 1400px) {
  .header .header-2 .navbar a:first-child {
    float: left;
    margin-left: 100px;
    margin-right: 350px;
  }
}
@media (max-width: 1250px) {
  .header .header-2 .navbar a:first-child {
    float: left;
    margin-left: 50px;
    margin-right: 50px;
  }
}

@media (max-width: 991px) {
  html {
    font-size: 55%;
  }

  section {
    padding: 3rem 2rem;
  }
  .popup {
    width: 70%;
  }
}

@media screen and (max-width: 1024px) {
  .header .header-2 {
    display: none;
  }
  .mobile-navbar {
    display: block;
  }
  .cards_wrap .card {
    width: 33%;
    margin-bottom: 8px;
  }
}

@media screen and (max-width: 768px) {
  .header .header-2 {
    display: none;
  }
  .mobile-navbar {
    display: block;
  }
  .cards_wrap .card {
    width: 50%; 
  } 
  .footer .box-container{
    padding: 0 30px;
  }
}


@media screen and (max-width: 800px) {
  .header .header-2 {
    display: none;
  }
  .mobile-navbar {
    display: block;
  }
  .cards_wrap {
    padding: 100px 9%;
  }
  .cards_wrap .card{
    width: 100%;
  }
  .cards_wrap .card .card-img img {
    height: 100px;
    width: 100px;
  }
  .cards_wrap .card .card-text h3 {
    font-size: 14px;
    color: #444;
  }
  
  .cards_wrap .card .card-text p {
    color: #666;
    font-size: 10px;
    padding: 5px 0;
    line-height: 20px;
  }
  .footer .box-container{
    padding: 0 30px;
  }
  
}
