@font-face {
  font-family: "mainbold";
  src: url('../fonts/blippo.woff');
}


@font-face {
  font-family: "main";
  src: url('../fonts/Rubik.woff2');
}


:root {
  --primary: #ffd742;
  --light: #dcdedd;
  --lightv: #aca7a3;
  --secondary: #c4262d;
  --primary-dark: #b69932;
  --primary-light: #f7e195;
  --dark: #231f20;
  --gray: #4b4b4d;
  --grayV: #87878ff6;

  --ff-title: "Roboto Condensed", 'Arial Narrow', 'sans-serif';
  --ff-base: "Roboto Condensed", 'Arial Narrow', 'sans-serif';

  --title-font: 2.8em;
  --main-font: 2.0rem;
  --mid-font: 1.5em;
  --normal-font: 1.2em;

  --fw-regular: 400;
  --fw-bold: 700;
  --fw-light: 300;


  --nav-height: 70px;

}

/*
  1. Use a more-intuitive box-sizing model.
*/
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  font-family: "main";
}


/*
  3. Allow percentage-based heights in the application
*/
html,
body {
  height: 100%;
}

/*
  Typographic tweaks!
  4. Add accessible line-height
  5. Improve text rendering
*/
body {
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

/*
  6. Improve media defaults
*/
img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
}


.main-font {
  font-family: "mainbold";
  font-size: var(--main-font);
}

.title-font {
  font-family: "mainbold";
  font-size: var(--title-font);
  color: var(--dark);
  text-transform: capitalize;
}


.mid-font {
  font-family: "mainbold";
  font-size: var(--mid-font);
  font-weight: var(--fw-light);
}

.reg-font {
  font-size: var(--normal-font);
  font-weight: var(--fw-regular);
  margin-left: 0px !important;
}



section {
  margin: 0px !important;
  padding: 30px 0px !important;
}

.line {
  height: 10px;
  border-radius: 5rem;
  border: 3px black solid;
  background-color: transparent;
  position: relative;
  isolation: isolate;
  z-index: 5;
}


.line::before {
  position: absolute;
  content: ' ';
  inset: 0px;
  border-radius: 5rem;
  z-index: -5;
  background: repeating-linear-gradient(45deg, var(--primary), var(--primary) 10px, black 10px, black 20px);
  animation: move 60s linear 0ms infinite
}

@keyframes move {
  0% {
    background-position: 0px;
  }

  100% {
    background-position: 100vw;
  }
}

.bttn {
  font-family: "mainbold" !important;
  display: inline-block;
  padding: .7rem 1.5rem;
  overflow: hidden;
  margin: 20px 20px 20px 0px;
  font-size: var(--mid-font);
  z-index: 1;
  color: var(--dark);
  border: 2px solid var(--primary-dark);
  border-radius: 6px;
  position: relative;
  transition: .9s all;
}

.bttn::before {
  position: absolute;
  content: "";
  background: var(--primary);
  width: 250%;
  height: 500px;
  z-index: -1;
  border-radius: 50%;
}

.bttn:before {
  top: 100%;
  left: 100%;
  transition: .7s all;
}

.bttn:hover::before {
  top: -100px;
  left: -100%;
}


.section-title {
  background-color: var(--primary);
  padding: 0.5em 5em;
  margin-bottom: 2rem;
  width: 100%;

}

.section-title h3 {
  color: white;
  animation-name: title;
  animation-duration: 1s;
}


.bg-section>img {
  width: 100%;
  min-height: 65vh;
  max-height: 80vh;
}

.bg-section>.title {
  padding-inline: 35px;
  display: flex;
  flex-direction: row;
  align-items: center;
  width: 100%;
  height: 90px;
  background-color: var(--primary);
}

.slash-ind {
  width: 15px;
  height: 45px;
  background-color: var(--dark);
  -webkit-clip-path: polygon(65% 0, 100% 0%, 35% 100%, 0% 100%);
  clip-path: polygon(65% 0, 100% 0%, 35% 100%, 0% 100%);
  margin-left: 0px;
}

@media only screen and (max-width: 600px) {
  section {
    margin: 30px 0px !important;
  }

  .logo-image img {
    width: 80px;
    margin-left: 15px;
  }

  :root {

    --title-font: 1.5em;
    --mid-font: 1.1em;
    --normal-font: 1.1em;
  }
}