* {
  padding: 0;
  margin: 0;
  font-family: "Outfit", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  user-select: none;
}
/* ////////////////////// */
button {
  background-color: transparent;
  text-transform: uppercase;
  border-radius: 1em;
  padding: 0.1em 0.8em;
  border: 1px solid black;
}
::-webkit-scrollbar {
  width: 4px;
  height: 4px;
}

::-webkit-scrollbar-track {
  background: transparent;
}

::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.4);
  border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
  background: rgba(0, 0, 0, 0.674);
}
/* ////////////////////// */

.home video {
  top: 0;
  left: 0;
  z-index: -1;
}
nav ul li a {
  color: white !important;
  margin: 0 1em;
  position: relative;
}
nav ul li a::after {
  position: absolute;
  width: 100%;
  opacity: 0;
  height: 2px;
  bottom: 5px;
  left: 0;
  content: "";
  background-color: white;
  transition: 0.3s ease;
}
nav ul li a:hover::after {
  width: 0%;
  opacity: 1;
}
/* ---------------------------------------------- */
.article .left p {
  font-size: 2.3em;
  font-weight: 500;
}
.article .right {
  font-size: 15em;
}
@media screen and (min-width: 769px) and (max-width: 1300px) {
  .article .left p {
    font-size: 2.1em;
  }
  .article .right {
    font-size: 10em;
  }
}
@media screen and (min-width: 577px) and (max-width: 768px) {
  .article .left p {
    font-size: 1.8em;
  }
  .article .right {
    font-size: 8em;
  }
  .collapse {
    background-color: #000000;
    text-align: center;
  }
}
@media screen and (max-width: 576px) {
  .article .left p {
    font-size: 1.8em;
  }
  .article .right {
    font-size: 7em;
  }
  .collapse {
    background-color: #000000;
    text-align: center;
  }
}
/* ************************************ */
.client {
  max-width: 400px;
  padding: 1em;
  margin-right: 2em;
}
.client img {
  width: 140px;
}
.client:nth-child(4) img {
  width: 45px;
}
.client:nth-child(5) img {
  width: 220px;
}
.client hr {
  width: 40px;
  height: 3px;
  background-color: #000000;
  border-radius: 1em;
}
/* Spotlight */
.spotlight {
  background-color: rgb(37, 22, 6);
  color: #f9cdcd;
}
.spotlight button {
  border-color: #f9cdcd;
  color: #f9cdcd;
}
.spotlight .row div div h1 {
  font-size: 6em;
}
.spotlight .row div div p {
  font-size: 1.5em;
}
@media screen and (min-width: 769px) and (max-width: 1300px) {
  .spotlight .row div div h1 {
    font-size: 5em;
  }
}
@media screen and (min-width: 577px) and (max-width: 768px) {
  .spotlight .row div div h1 {
    font-size: 4em;
  }
}
@media screen and (max-width: 576px) {
  .spotlight .row div div h1 {
    font-size: 3em;
  }
}
/* ************ */
.section .row .item div div {
  flex-basis: 35%;
  cursor: pointer;
}
.section .row .item div i {
  transition: 0.3s ease;
  cursor: pointer;
}
.section .row .item div i:hover {
  transform: translateX(0.5em);
}
@media screen and (min-width: 577px) and (max-width: 768px) {
  .section .row .item div div {
    flex-basis: 100%;
  }
  .section .row .item div i {
    display: none;
  }
}
@media screen and (max-width: 576px) {
  .section .row .item div div {
    flex-basis: 100%;
  }
  .section .row .item div i {
    display: none;
  }
}
/* ///////// */
footer {
  background-color: rgb(37, 22, 6);
}
footer input {
  outline: 0;
  color: white;
  width: 95%;
}
footer input::placeholder {
  color: white;
}
footer div i {
  right: 0;
  font-size: 1.5em;
  bottom: 10px;
}

footer .container .row .bullet h3 {
  margin: 0;
  position: relative;
  margin-left: 0.8em !important;
}
footer .container .row .bullet h3::after {
  position: absolute;
  width: 10px;
  content: "";
  height: 10px;
  border-radius: 50%;
  background-color: white;
  top: 45%;
  transform: translateX(-50%);
  left: -14px;
}
.copyright {
  background-color: #1f1407;
}
