:root {
  --primary-color: #F17B1B;
  --yellow-color: #F8D33E;
  --primary-color-rgb: 248, 139, 62;
  --secondary-color: #7D3DD1;
  --secondary-color-rgb: 125, 61, 209;
  --black: #000;
  --white: #fff;
  --grey: #707070;
  --light-grey: #CACACA;
}

* {
  -webkit-font-smoothing: antialiased;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  overflow-x: hidden;
  width: 100dvw;
}

html,
body {
  margin: 0;
  padding: 0;
  height: 100%;
  font-family: "Archivo", sans-serif;
  line-height: 1.5;
  color: #2e2e2e;
}

video {
  line-height: 0;
  width: 100%;
  display: block;
}

img {
  max-width: 100%;
}

button {
  border: 0;
}

.btn {
  padding: 15px 28px;
  font-size: 14px;
  border-radius: 54px;
  line-height: 1.5;
  font-weight: 400;
  text-wrap: nowrap;
  vertical-align: middle;
  display: inline-block;
  letter-spacing: 1.5px;
  text-transform: capitalize;
  transition: all .5s linear;
  cursor: pointer;
  span{
    text-transform: lowercase;
  }
  .icon {
    transition: all .5s linear;
  }
}

.btn-dark {
  background: var(--black);
  border: 1px solid var(--black);
  color: #D9D9D9;
}

.btn-dark:hover {
  background: transparent;
  color: var(--black);
}

.btn-grey {
  background: var(--light-grey);
  border: 1px solid var(--light-grey);
  color: #D9D9D9;
}

.btn-grey:hover {
  background: transparent;
  color: var(--light-grey);
}

/* Solid Buttons */
.btn-primary {
  background: var(--primary-color);
  border: 1px solid var(--primary-color);
  color: #fff;

}


.btn-primary:hover {
  background: var(--white);
  border-color: var(--white);
  color: var(--black);
  box-shadow: 0 10px 20px rgba(117, 117, 117, 0.2);

  .icon {
    filter: invert() brightness(100);
  }

}

/* Secondary Solid */
.btn-secondary {
  background: var(--secondary-color);
  border: 1px solid var(--secondary-color);
  color: #D9D9D9;

  span {
    filter: brightness(100);
  }
}

.btn-secondary:hover {
  background: transparent;
  color: var(--secondary-color);

  span {
    filter: none;
  }
}

/* Outline Buttons */
.btn-primary-outline {
  background: transparent;
  border: 1px solid var(--primary-color);
  color: var(--primary-color);
}

.btn-primary-outline:hover {
  background: var(--primary-color);
  color: #fff;
}

.btn-secondary-outline {
  background: transparent;
  border: 1px solid var(--secondary-color);
  color: var(--secondary-color);
}

.btn-secondary-outline:hover {
  background: var(--secondary-color);
  color: #fff;
}

.btn-light-outline {
  background: transparent;
  border: 1px solid var(--white);
  color: var(--white);
}

.btn-light-outline:hover {
  background: var(--white);
  color: var(--black);
}

.btn-dark-outline {
  background: transparent;
  border: 1px solid var(--black);
  color: var(--black);
}

.btn-dark-outline:hover {
  background: var(--black);
  color: var(--white);
}



.btn-sm {
  font-weight: 500;
  font-size: 14px;
  padding: 10px 20px;
  box-shadow: 2px 14px 17px 0px rgba(238, 28, 37, 0.13);
}

.btn-lg {
  font-weight: 400;
  letter-spacing: -0.78;
  font-size: 26px;
  padding: 24px 46px;
}

.btn-primary.btn-lg {
  box-shadow: 20px 20px 30px 0px rgba(238, 28, 37, 0.20);
}

button:focus-visible {
  outline: 0px solid transparent !important;
  outline: -webkit-focus-ring-color auto 1px !important;
}

.icon {
  background-repeat: no-repeat;
  background-position: center;
  display: inline-block;
  vertical-align: middle;
  background-size: 100%;
}

.icon-arrow-right {
  width: 16px;
  height: 16px;
  aspect-ratio: 1/1;
  background-image: url('data:image/svg+xml,<svg width="11" height="8" viewBox="0 0 11 8" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M10.3536 4.35355C10.5488 4.15829 10.5488 3.84171 10.3536 3.64645L7.17157 0.464466C6.97631 0.269204 6.65973 0.269204 6.46447 0.464466C6.2692 0.659728 6.2692 0.976311 6.46447 1.17157L9.29289 4L6.46447 6.82843C6.2692 7.02369 6.2692 7.34027 6.46447 7.53553C6.65973 7.7308 6.97631 7.7308 7.17157 7.53553L10.3536 4.35355ZM0 4V4.5H10V4V3.5H0V4Z" fill="white"/></svg>');
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  height: auto;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.swiper-nav {
  display: flex;
  gap: 20px;
  position: relative;
  width: 120px;
}

.swiper-button-prev,
.swiper-button-next {
  width: 50px;
  height: 50px;
  left: 0;
  right: 0;
  top: 0;
  margin: 0;
  position: relative;
  background: transparent;
  color: #fff;
  cursor: pointer;
  font-size: 0;
  border-color: transparent;
  transition: all 0.3s;
  background-repeat: no-repeat;

  &:after {
    font-size: 1rem;
  }

  &:before {
    content: "";
    border: 1px solid var(--white);
    border-radius: 50%;
    inset: 1px;
    position: absolute;
  }


}
.swiper-button-next.swiper-button-disabled, .swiper-button-prev.swiper-button-disabled {
    opacity: .25;
}
/* SVG Circle */
.circle-border {
  position: absolute;
  inset: 0;
  /* transform: rotate(-90deg); */
  z-index: 1;
}

.circle-border circle {
  stroke-dasharray: 360;
  /* approx: 2πr = 2*3.14*28 */
  stroke-dashoffset: 360;
  transition: stroke-dashoffset 1s ease;
}
@media (min-width: 1300px) {
/* On Hover - Stroke Draw Effect */
.swiper-button-prev:hover .circle-border circle ,
.swiper-button-next:hover .circle-border circle {
  stroke-dashoffset: 0;
}
}
.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 1rem;
}

@media (min-width: 768px) {
  .container {
    max-width: 100%;
  }
}

@media (min-width: 992px) {
  .container {
    max-width: 940px;
  }
}
@media (min-width: 1180px) {
  .container {
    max-width: 1120px; }
}

@media (min-width: 1300px) {
  .container {
    max-width: 1280px;
  }
  .btn {
  padding: 12px 43px;
  }
}

@media (min-width: 1500px) {
  .container {
    max-width: 1440px;
  }
}

@media (min-width: 1800px) {
  .container {
    max-width: 1720px;
  }
}

@media (min-width: 992px) and (max-width: 1300px) {
  .btn {
    padding: 12px 20px;
  }

  .btn-sm {
    padding: 8px 16px;
  }
}

@keyframes zoomInOut {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.1);
    /* Adjust zoom level */
  }
}