@import url('https://fonts.googleapis.com/css2?family=Titillium+Web:wght@300;400;600;700&display=swap');

::-webkit-scrollbar {
  width: 10px;
  background: transparent;
}

/* Track */
::-webkit-scrollbar-track {
  background: transparent;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: #1e1e1e80;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #555;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Titillium Web', sans-serif;
  scroll-behavior: smooth;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  width: 100%;
  height: 100px;
  background-color: #1f1f1f;
  z-index: 1;
}

.navbar h1 {
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;  
  color: white;
  width: fit-content;
  font-size: 28px;
  font-weight: 700;
  text-align: center;
}

.navbar ul {
  display: flex;
  justify-content: flex-end;
  width: fit-content;
}

.navbar ul li {
  display: inline;
}

.brand {
  display: flex;
  align-items: center;
  width: fit-content;
  text-decoration: none;
  color: #ffffff;
}
.brand:hover{
  color: #FFFF00;
}

.brand img {
  width: 75px;
  height: 75px;
}

.contact-tag {
  height: 27px;
  width: 27px;
  margin: 0 15px;
  cursor: pointer;
}
.contact-tag:hover {
  filter: invert(18%) sepia(94%) saturate(4980%) hue-rotate(360deg)
    brightness(90%) contrast(130%);
}

.navbar .link {
  display: none;
  margin-right: 5%;
  height: 27px;
  width: 27px;
  background: url(../assets/link-bold.svg) no-repeat;
  background-position: center;
  background-size: contain;
  border: none;
  outline: none;
}

.email{
  font-size: 24px;
  font-weight: 700;
  background: none;
  border: none;
  outline: none;
  color: black;
}

#contact-modal {
  position: fixed;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  background-color: white;
  border-radius: 25px;
  width: 150px;
  height: 40%;
}

#contact-modal button {
  position: absolute;
  top: 2%;
  right: 5%;
  font-size: 24px;
  font-weight: 700;
  background: none;
  border: none;
  outline: none;
  color: black;
  cursor: pointer;
}

#contact-modal ul {
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  align-items: center;
  border: 1px solid black;
  width: 100%;
  height: 100%;
  list-style: none;
}

#contact-modal ul li {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 12px;
}

#contact-modal ul li a img {
  width: 30px;
  height: 30px;
  filter: brightness(0);
}

#contact-modal ul li p{
  font-weight: 700;
  font-size: 14px;
}

/* LOADER */
.loader-container {
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  top: 0;
  height: 100vh;
  width: 100%;
  background-color: white;
  z-index: 101;
}

.spinner {
  position: relative;
  width: 24.6px;
  height: 24.6px;
}

.spinner div {
  animation: spinner-4t3wzl 1.875s infinite backwards;
  background-color: #bab600;
  border-radius: 50%;
  height: 100%;
  position: absolute;
  width: 100%;
}

.spinner div:nth-child(1) {
  animation-delay: 0.15s;
  background-color: rgba(186, 182, 0, 0.9);
}

.spinner div:nth-child(2) {
  animation-delay: 0.3s;
  background-color: rgba(186, 182, 0, 0.8);
}

.spinner div:nth-child(3) {
  animation-delay: 0.45s;
  background-color: rgba(186, 182, 0, 0.7);
}

.spinner div:nth-child(4) {
  animation-delay: 0.6s;
  background-color: rgba(186, 182, 0, 0.6);
}

.spinner div:nth-child(5) {
  animation-delay: 0.75s;
  background-color: rgba(186, 182, 0, 0.5);
}

@keyframes spinner-4t3wzl {
  0% {
    transform: rotate(0deg) translateY(-200%);
  }

  60%,
  100% {
    transform: rotate(360deg) translateY(-200%);
  }
}

@media screen and (max-width: 749px) and (min-width: 500px) {
  .navbar h1 {
    font-size: 18px;
  }

  .navbar h3 {
    font-size: 12px;
  }
}

@media screen and (max-width: 500px) {
  .brand{
    width: 10%;
  }
  .brand img {
    width: 60px;
    height: 60px;
  }

  .contact-tag {
    display: none;
    height: 15px;
    width: 15px;
  }
  .navbar .link{
    display: block;
  }
  .navbar h1 {
    font-size: 22px;
  }

  .navbar h3 {
    font-size: 12px;
  }

  .navbar button {
    display: block;
  }
}

/* FOOTER SECTION */
.footer{
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 10vh  ;
  border: 1px solid black;
  background-color: #1f1f1f;
  padding: 0 1%;
}
.contacts{
  display: flex;
  align-items: center;
  width: 50%;
}
.contacts ul{
  display: flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  height: 100%;
}
.contacts ul li{
  display: inline;
  text-decoration: none;
}
.contacts ul li button{
  border: none;
  background: none;
  outline: none;
  cursor: pointer;
}
.contacts img{
  margin: 0 5px;
  height: 15px;
  width: 15px;
}
.contacts img:hover{
  filter: invert(18%) sepia(94%) saturate(4980%) hue-rotate(360deg)
  brightness(90%) contrast(130%);
}
.contacts h1{
  font-size: 12px;
  color: white;
  font-weight: 700;
}

.plug{
  display: flex;
  align-items: center;
  justify-content: flex-end;
  height: 100%;
  width: 50%;
}
.plug h6{
  color: white;
}
.plug h6 a{
  color: #FFFF00;
  cursor: pointer;
  text-decoration: none;
}
.plug h6 a:hover{
  color: #bab600;
}