/* Font imports and base styles */
@font-face {
  font-family: "Bubbleboy";
  src: url("../fonts/BUBBLEBO.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Bubbleboy2";
  src: url("../fonts/BubbleBoy2.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

* {
  box-sizing: border-box;
}

body {
  padding: 0px;
  font-family: "Bubbleboy";
}

:root {
  --primary: #187216;
  --accent: #D5662B;
  --secondary: #1A90D2;
  --textPrimary: #00000099;
  --textSecondary: #8e8e8e;
  --background: #FFF8F4;
  --btn_background: #1C6C96;
  --surface: #9addff;
}

.primary {
  color: var(--primary);
}

.textPrimary {
  color: var(--textPrimary);
}

.centerd {
  text-align: center;
}

.font_height_16 {
  line-height: 16px;
}

.font_height_20 {
  line-height: 20px;
}


.font_height_24 {
  line-height: 24px;
}

.font_height_32 {
  line-height: 32px;
}

.font_height_36 {
  line-height: 36px;
}

.containedButton {
  font-family: 'Bubbleboy2';
  padding: 14px 48px;
  width: 75%;
  background-color: #1C6C96;
  height: 86px;
  color: white;
  border: none;
  border-radius: 12px;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 28px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.small_btn {
  font-family: 'Bubbleboy2';
  padding: 0px;
  height: 52px;
  width: 100%;
  font-size: 18px;
  height: 56px;
  text-transform: capitalize;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}


@media only screen and (max-width: 992px) {
  .containedButton {
    font-size: 20px;
    height: 64px;
    padding: 12px 24px;
    width: 100%;
  }

  .small_btn {
    font-size: 14px;
    height: 48px;
  }
}

/* Typo Theme */
h1 {
  font-family: 'Bubbleboy';
  font-size: 64px;
  font-weight: 400;
  text-transform: uppercase;
  margin: 0px;
}

h2 {
  font-family: 'Bubbleboy';
  font-size: 56px;
  font-weight: 400;
  text-transform: uppercase;
  margin: 0px;
}

h3 {
  font-family: 'Bubbleboy';
  font-size: 48px;
  font-weight: 400;
  text-transform: uppercase;
  margin: 0px;
}

h4 {
  font-family: 'Bubbleboy2';
  font-size: 32px;
  font-weight: 400;
  text-transform: capitalize;
  margin: 0px;
}

h5 {
  font-family: 'Bubbleboy2';
  text-transform: capitalize;
  font-size: 24px;
  font-weight: 400;
  margin: 0px;
}

h6 {
  font-family: 'Bubbleboy2';
  font-size: 20px;
  font-weight: 400;
  text-transform: capitalize;
  margin: 0px;
}

p {
  font-family: 'Bubbleboy2';
  font-size: 16px;
  font-weight: 400;
  text-transform: capitalize;
  margin: 0px;
}

.body1 {
  font-family: 'Bubbleboy2';
  font-size: 16px;
  font-weight: 300;
  text-transform: capitalize;
}

.body2 {
  font-family: 'Bubbleboy2';
  font-size: 14px;
  font-weight: 300;
  text-transform: capitalize;
}

.subtitle1 {
  font-family: 'Bubbleboy2';
  font-size: 16px;
  font-weight: 500;
  color: "#6b6b6b";
  text-transform: capitalize;
}

.subtitle2 {
  font-family: 'Bubbleboy2';
  font-size: 14px;
  font-weight: 500;
  color: "#1a90d2";
  text-transform: capitalize;
}

.caption {
  font-family: 'Bubbleboy2';
  font-size: 12px;
  font-weight: 400px;
  text-transform: capitalize;
}



@media only screen and (max-width: 768px) {
  h1 {
    font-size: 46px;
    font-weight: 400px;
    margin: 0px;
  }

  h2 {
    font-size: 28px;
    font-weight: 400px;
    margin: 0px;
  }

  h3 {
    font-size: 24px;
    font-weight: 400px;
    margin: 0px;
  }

  h4 {
    font-size: 20px;
    font-weight: 400px;
    margin: 0px;
  }

  h6 {
    font-size: 12px;
    font-weight: 400px;
    line-height: 32px;
    margin: 0px;
  }

  .body1 {
    font-size: 12px;
    font-weight: 400px,
  }

  .body2 {
    font-size: 11px;
    font-weight: 400px;
  }

  .subtitle1 {
    font-size: 14px;
    font-weight: 400px;
    color: "#6b6b6b";
  }

  .subtitle2 {
    font-size: 12px;
    font-weight: 400px;
    color: "#1a90d2";
  }
}



button {
  font-size: 16px;
  font-weight: 500px;
  margin: 0px;
}