@import "services.css";
@import "new_brands.css";
@import "hero.css";
@import "work_with_us.css";
@import "slider.css";
@import "footer.css";
@import "navbar.css";
@import "what_we_do.css";
@import "who_we_are.css";
@import "contact.css";

:root {
  --blue: #003fb3;
  --light-blue: #00abe6;
  --orange: #f9b613;
  --orange_rgba: #f9b81398;
  --sunshine-yellow: #f9b81377;
  --sunshine-blue: #00ade659;
  --logo-orange:#E48C24;
  --logo-blue:#3564AD;
}

a {
  text-decoration: none;
  color: white;
}

.wrapper {
  max-width: 1280px;
  width: 100%;
  margin: auto;
  padding: 20px;
}

.wrapper_XL {
  padding: 0 10px;
  max-width: 1600px;
  width: 100%;
  margin: auto;
}

.flex_row {
  display: flex;
  flex-direction: row;
}

.flex_col {
  display: flex;
  flex-direction: column;
}

.heading-thin {
  font-size: 3rem;
  font-weight: 100;
}

.heading-bold {
  font-size: 3rem;
}

p {
  font-size: 1.1rem;
  font-weight: 100;
}

.m-2 {
  margin-top: 2vw;
  margin-bottom: 2vw;
}

.s_gap {
  padding: 50px 0;
}

.btn {
  background-color: transparent;
  padding: 0.7rem 3rem;
  border-radius: 50px;
  border: 2px rgb(0, 0, 0) solid;
  font-size: 1.2rem;
  transition: 200ms ease-in;

}


.btn:hover {
  background-color: var(--logo-orange);
  border: 2px var(--logo-orange) solid;
  color: white;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Bahnschrift";
  font-weight: normal;
  font-style: normal;

}

body {
  font-size: 10px;
}


@media screen and (min-width:1600px) {
  .wrapper {
    max-width: 1580px;
  }

  .heading-thin {
    font-size: 4rem;
  }

  .heading-bold {
    font-size: 4rem;
  }

  p {
    font-size: 1.2rem;
    font-weight: 100;
  }

  .m-2 {
    margin-top: 2vw;
    margin-bottom: 2vw;
  }


}

/* .heading-bold {
  animation: tracking-in-expand .7s cubic-bezier(.215, .61, .355, 1.000) both
} */

/* ----------------------------------------------
 * Generated by Animista on 2024-5-20 13:21:57
 * Licensed under FreeBSD License.
 * See http://animista.net/license for more info. 
 * w: http://animista.net, t: @cssanimista
 * ---------------------------------------------- */

@keyframes tracking-in-expand {
  0% {
    letter-spacing: -.5em;
    opacity: 0
  }

  40% {
    opacity: .6
  }

  100% {
    opacity: 1
  }
}

.loading{
  width: 100%;
  height: 100vh;
  display:flex;
  align-items: center;
  justify-content: center;
}
.loader {
  height: 50px;
  width: 50px;
  aspect-ratio: 1;
  display: grid;
  border: 4px solid #0000;
  border-radius: 50%;
  border-right-color: #25b09b;
  animation: l15 1s infinite linear;
}
.loader::before,
.loader::after {    
  content: "";
  grid-area: 1/1;
  margin: 2px;
  border: inherit;
  border-radius: 50%;
  animation: l15 2s infinite;
}
.loader::after {
  margin: 8px;
  animation-duration: 3s;
}
@keyframes l15{ 
  100%{transform: rotate(1turn)}
}

/* .lds-dual-ring {

  color: #1c4c5b
}
.lds-dual-ring,
.lds-dual-ring:after {
  box-sizing: border-box;
}
.lds-dual-ring {
  display: inline-block;
  width: 80px;
  height: 80px;
}
.lds-dual-ring:after {
  content: " ";
  display: block;
  width: 64px;
  height: 64px;
  margin: 8px;
  border-radius: 50%;
  border: 6.4px solid currentColor;
  border-color: currentColor transparent currentColor transparent;
  animation: lds-dual-ring 1.2s linear infinite;
}
@keyframes lds-dual-ring {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
} */