@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@100;300;400;500;600&display=swap");
body {
  background-color: #f1f1f1;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
  cursor: url(/image/holoball\ spec.cur), auto;
}
html::-webkit-scrollbar {
  width: 10px;
}

html::-webkit-scrollbar-track {
  background: transparent;
}

html::-webkit-scrollbar-thumb {
  background: #444;
}

body {
  background-color: #fff;
}
.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;
  font-size: 17px;
  text-decoration: none;
  padding: 29px;
  transition: all 0.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%);
}

.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;
}

section {
  padding: 100px 140px;
}
.mobile-navbar a:hover {
  background: hsl(12, 93%, 58%);
}

.row:after {
  content: "";
  display: table;
  clear: both;
}

.left-column {
  float: left;
  width: 75%;
}

.right-column {
  width: 25%;
  float: right;
  padding-left: 20px;
}
a {
  color: inherit;
  text-decoration: inherit;
}
.card {
  padding: 20px;
  background-color: #f7f7f7;
  margin-top: 20px;
}

.card img {
  width: 100%;
  max-width: 100%;
  max-height: 50vh;
  overflow: hidden;
}

.right-column .card img {
  margin-bottom: 10px;
}
h3 {
  font-size: 20px;
  font-weight: 700;
}
p {
  padding: 5px 0;
  color: #666;
  font-size: 14px;
  line-height: 20px;
  text-align: justify;
}
ul {
  margin-left: 20px;
  font-size: 25px;
  font-weight: 700;
  color: #ff9328;
}

.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;
}

.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;
}

.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%; 
}

.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{
  color:#ff9328;
}
/*responsive */
@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 (max-width: 960px) {
  .header .header-2 {
    display: none;
  }
  .mobile-navbar {
    display: block;
  }
}

@media (max-width: 800px) {
  section {
    padding: 120px 20px;
  }
  .left-column,
  .right-column {
    width: 100%;
    padding: 0px;
  }
  section {
    padding: 70px 20px;
  }
  html{
    font-size: 50%;
}
}

@media (max-width: 540px) {
  html{
    font-size: 50%;
  }
  .header .header-2 {
    display: none;
  }
  .mobile-navbar {
    display: block;
  }
  section {
    padding: 70px 20px;
  }
  h3{
    font-size: 14px;
  }
  .footer .box-container .box iframe{
    width:100%;
}
}
