:root {
  /* --primary-light: #51abcf; */
  --primary: #e01204;
  --color: #666666;
  --primary-dark: #F4F4F4;
  --secondary: #4d5fc3;
  --bglight: #f3f3f3;
  /* --bgdark: #242728; */
}

/* Text utilities */
.text-primary {
  color: var(--primary);
}

.text-color{
  color: var(--color)
}

.text-primary-light {
  color: var(--primary-light);
}

.text-primary-dark {
  color: var(--primary-dark);
}

.text-secondary {
  color: var(--secondary);
}

.text-bgdark {
  color: var(--bgdark);
}

/* Background utilities */
.bg-primary {
  background-color: var(--primary);
}

.bg-primary-light {
  background-color: var(--primary-light);
}

.bg-primary-dark {
  background-color: var(--primary-dark);
}

.bg-secondary {
  background-color: var(--secondary);
}

.bg-bglight {
  background-color: var(--bglight);
}
.bg-bgdark {
  background-color: var(--bgdark);
}

/* Global styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  width: 100%;
  font-family: "Roboto Condensed", sans-serif;
  color: #000000;
  background-color: white;
}

/*  |-------------------------
      Custom Classes
    |-----------------------------
*/

.condensed {
  font-family: "Roboto", sans-serif;
}

.contain2 {
  max-width: 100%;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  align-items: center;
}

/* my contain sizes */
@media (min-width: 100px) {
  .contain {
    max-width: 1920px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding-left: 16px;
    padding-right: 16px;
  }
  .paddingy {
    padding-top: 25px;
    padding-bottom: 25px;
  }
  .marginy {
    margin-top: 25px;
    margin-bottom: 25px;
  }
  .text-manually-hero {
    font-size: 55px;
  }
}

@media (min-width: 768px) {
  .contain {
    max-width: 1600px;
    width: 90%;
    margin-left: auto;
    margin-right: auto;
    padding-left: 16px;
    padding-right: 16px;
  }
  .paddingy {
    padding-top: 30px;
    padding-bottom: 30px;
  }
  .marginy {
    margin-top: 30px;
    margin-bottom: 30px;
  }
  .text-manually-hero {
    font-size: 60px;
  }
}

@media (min-width: 1024px) {
  .contain {
    max-width: 1600px;
    width: 90%;
    margin-left: auto;
    margin-right: auto;
    align-items: center;
    padding-left: 0px;
    padding-right: 0px;
  }
  .paddingy {
    padding-top: 50px;
    padding-bottom: 50px;
  }
  .marginy {
    margin-top: 50px;
    margin-bottom: 50px;
  }
  .text-manually-hero {
    font-size: 70px;
  }
}

@media (min-width: 1280px) {
  .contain {
    max-width: 1600px;
    width: 85%;
    margin-left: auto;
    margin-right: auto;
    align-items: center;
    padding-left: 0px;
    padding-right: 0px;
  }
  .paddingy {
    padding-top: 50px;
    padding-bottom: 50px;
  }
  .marginy {
    margin-top: 50px;
    margin-bottom: 50px;
  }
  .text-manually-hero {
    font-size: 85px;
  }
}

@media (min-width: 1536px) {
  .contain {
    max-width: 1600px;
    width: 83%;
    margin-left: auto;
    margin-right: auto;
    align-items: center;
    padding-left: 0px;
    padding-right: 0px;
  }
  .paddingy {
    padding-top: 60px;
    padding-bottom: 60px;
  }
  .marginy {
    margin-top: 60px;
    margin-bottom: 60px;
  }
  .text-manually-hero {
    font-size: 100px;
  }
}

/* Reset Swiper default arrow styles */
.swiper-button-prev,
.swiper-button-next {
  position: static !important;
  width: auto !important;
  height: auto !important;
  margin: 0 !important;
  color: inherit !important;
}

/* Hide the default pseudo arrows */
.swiper-button-prev::after,
.swiper-button-next::after {
  display: none !important;
  content: "" !important;
}

/* footer underline dropdown */
.link-funderline {
  position: relative;
  display: inline-block;
  transition: transform 0.3s ease-in-out;
}
.link-funderline::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background-color: currentColor;
  transition: width 0.3s ease-in-out;
  color: #ffffff;
}
.link-funderline:hover::after {
  width: 100%;
}



.font-Rubik {
  font-family: 'Rubik', sans-serif;
}