/* ------------------- */
/* STYLESHEET SECTIONS */
/* ------------------- */
/* 1__CSS Resets
   2__Layout helpers
   3__Header
   4__Main content
   5__Footer
   6__Bootstrap overrides
   7__Media queries
*/
@import url("https://fonts.googleapis.com/css2?family=Nunito+Sans:ital,opsz,wght@0,6..12,200..1000;1,6..12,200..1000&display=swap");
@font-face {
  font-family: Mifont;
  src: url("fonts/Mifont2-Regular.otf") format("opentype");
  font-weight: normal;
  font-style: normal;
}
:root {
  --colour-black: #111827;
  --colour-orange: #ec8460;
  --colour-orange-darker-1: #ce6d4b;
  --colour-orange-darker-2: #b25433;
  --colour-lightorange: #f5ba7b;
  --colour-yellow: #f3d467;
  --colour-green: #b7c665;
  --colour-green-darker-1: #99a74d;
  --colour-green-darker-2: #84923a;
  --colour-light-blue: #97cdc7;
  --colour-violet: #867cb6;
  --colour-violet-darker-1: #645999;
  --colour-primary: var(--colour-orange);
  --colour-primary-darker: var(--colour-orange-darker-1);
  --colour-primary-darker2: var(--colour-orange-darker-2);
  --colour-secondary: var(--colour-green);
  --colour-secondary-darker: var(--colour-green-darker-1);
  --colour-secondary-darker2: var(--colour-green-darker-2);
  --asr-50: 50%;
  --asr-65: 65%;
  --asr-70: 70%;
  --asr-75: 75%;
  --asr-100: 100%;
}

/* ------------------------ */
/* 1__CSS Resets            */
/* ------------------------ */
/* Limited CSS reset */
/* See normalize-4.1.1.css */
html, body, button, input, select, textarea {
  font-family: "Nunito Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

html {
  height: 100%;
  font-size: 19px; /* This is the base size the rem unit refers to */
}

body {
  position: relative;
  font-size: 1rem;
  line-height: 1.2;
  min-height: 100%;
  margin: 0;
  padding: 0;
  color: var(--colour-black);
  overflow-x: hidden;
}

/* ------------------ */
/* 2__Layout helpers  */
/* ------------------ */
.constrain-825w {
  position: relative;
  max-width: 825px;
  margin: 0 auto;
}

.constrain-1100w {
  position: relative;
  max-width: 1100px;
  width: 100%;
  margin: 0 auto;
}

.constrain-1600w {
  position: relative;
  max-width: 1600px;
  margin: 0 auto;
}

.frame-inline-block {
  display: inline-block;
  margin-right: 10px;
  margin-bottom: 10px;
}

.mobile-only-block,
.mobile-only-inline {
  display: none;
}

.desktop-only-block {
  display: block;
}

.desktop-only-inline {
  display: inline-block;
}

/* START object-fit:cover Fix for IE & IE Edge */
/* Note, requires JS to write the "compat-object-fit class to appropriate container element */
.compat-object-fit {
  background-size: cover;
  background-position: center center;
}

.compat-object-fit-x-left {
  background-size: cover;
  background-position-x: left;
}

.compat-object-fit-x-center {
  background-size: cover;
  background-position-x: center;
}

.compat-object-fit-x-right {
  background-size: cover;
  background-position-x: right;
}

.compat-object-fit-y-top {
  background-size: cover;
  background-position-y: top;
}

.compat-object-fit-y-center {
  background-size: cover;
  background-position-y: center;
}

.compat-object-fit-y-bottom {
  background-size: cover;
  background-position-y: bottom;
}

/* Hide the image if object fit is not supported in IE/Edge - opacity to 0 for the link area */
.compat-object-fit img {
  opacity: 0;
}

/* Responsive container for 16:9 video clips (eg Youtube). The video iframe should be a child of a div with a class of
  "video-container-16-9". If creating such a container is not possible because you don't have access to the HTML eg in
  a CMS content element, you can call the ICIT responsifyYoutubeClips() JavaScript function to do it programmatically.
*/
.video-container-16-9 {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 aspect ratio */
  height: 0;
  overflow: hidden;
  max-width: 100%;
}

.video-container-16-9 iframe,
.video-container-16-9 object,
.video-container-16-9 embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.no-text-wrap {
  white-space: nowrap;
}

/* ------------------------ */
/* 3__Header styles         */
/* ------------------------ */
#top-header {
  position: relative;
  min-height: 30vw;
  max-height: 450px;
  color: white;
  font-family: "Mifont", script;
}
@media (max-width: 930px) {
  #top-header {
    min-height: 35vw;
    max-height: 450px;
  }
}
@media (max-width: 680px) {
  #top-header {
    min-height: 250px;
    max-height: 450px;
  }
}
@media (max-width: 500px) {
  #top-header {
    min-height: 210px;
  }
}
#top-header .header-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 50px 0 50px;
  display: flex;
  max-height: 537px;
}
#top-header .header-bg img.hero-img {
  width: 100%;
  height: auto;
  position: absolute;
  bottom: 0;
  display: none;
}
#top-header .header-content {
  padding-block-start: 1.5em;
}
@media (max-width: 680px) {
  #top-header .header-content {
    padding-block-start: 1em;
  }
}
#top-header .header-content .header-grid {
  display: grid;
  grid-template-columns: 150px 1fr;
  grid-template-areas: "logo-box text-box";
  grid-gap: 40px 40px;
}
#top-header .header-content .header-grid .logo-box {
  grid-area: logo-box;
}
#top-header .header-content .header-grid .logo-box img {
  width: 100%;
  max-width: 100%;
  height: auto;
}
#top-header .header-content .header-grid .text-box {
  grid-area: text-box;
  display: flex;
  align-items: center;
  font-size: 3.2em;
  text-align: center;
  line-height: 1.1;
}
@media (max-width: 1180px) {
  #top-header .header-content .header-grid {
    grid-template-columns: 125px 1fr;
    grid-template-areas: "logo-box text-box";
    grid-gap: 20px 20px;
  }
  #top-header .header-content .header-grid .text-box {
    font-size: 2.8em;
  }
}
@media (max-width: 980px) {
  #top-header .header-content .header-grid {
    grid-template-columns: 120px 1fr;
    grid-template-areas: "logo-box text-box";
    grid-gap: 20px 20px;
  }
  #top-header .header-content .header-grid .text-box {
    font-size: 2.5em;
  }
}
@media (max-width: 500px) {
  #top-header .header-content .header-grid {
    grid-template-columns: 110px 1fr;
  }
  #top-header .header-content .header-grid .text-box {
    font-size: 1.8em;
  }
}

/* ------------------------ */
/* 4__Main Content          */
/* ------------------------ */
h1 {
  font-weight: 800;
  font-size: 3.3em;
  line-height: 1.1;
}

h2 {
  font-weight: 800;
  font-size: 2.5em;
  line-height: 1.1;
}

h3 {
  font-weight: 700;
  font-size: 1.35em;
}

h4 {
  font-weight: 700;
  font-size: 1.1em;
}

a,
a:visited {
  color: var(--colour-orange);
  text-decoration: none;
}

a:hover,
a:focus,
a:active {
  color: var(--colour-orange);
  text-decoration: underline;
}

.md-text {
  font-size: 1.25em;
}

ol li,
ul li {
  margin-bottom: 0.3em;
}

.full-bleed {
  position: relative;
  padding-block: 4em;
  color: white;
  background-image: linear-gradient(to right, var(--colour-orange), var(--colour-yellow));
  width: calc(100vw - 15px);
  left: 50%;
  margin-inline-start: calc(-50vw + 7.5px);
}
.full-bleed *:last-child {
  margin-block-end: 0;
}

#main {
  margin-block-start: 4em;
}

#main-video {
  margin-block: 3em;
}

#testimonials {
  margin-block: 4em;
}

#sec-two-col,
#sec-two-col-2 {
  margin-block: 4em;
}

#book-sections {
  margin-block: 4em;
}

.flexi-cards .card-grid .card-no-bs {
  box-shadow: none;
  border: 3px solid var(--colour-violet);
  border-radius: 1em;
  overflow: hidden;
  background-color: white;
}
.flexi-cards .card-grid .card-no-bs:hover {
  box-shadow: none;
}
.flexi-cards .card-grid .card-no-bs .card-body {
  padding: 1em;
  text-align: center;
}
.flexi-cards .card-grid .card-no-bs .card-body .card-title {
  font-weight: 800;
  color: var(--colour-violet-darker-1);
}

/* ------------------------ */
/* 5__Footer   */
/* ------------------------ */
footer {
  padding-block: 2em;
  background-color: #f2f2f2;
}
footer #footer-copyright {
  text-align: center;
}

/* ------------------------ */
/* 6__Bootstrap Overrides   */
/* ------------------------ */
.btn {
  padding: 1em 1.5em;
  font-size: 1em;
  line-height: 1;
}

.btn.btn-lg {
  padding: 1em 1.5em;
  font-size: 1.2em;
  font-weight: 800;
}

.btn.btn-small {
  padding: 0.6em 1em;
}

.btn.btn-center {
  position: relative;
  left: 50%;
  transform: translateX(-50%);
}

a.btn-primary,
.btn-primary {
  color: white;
  background-color: var(--colour-primary);
  border: 2px solid var(--colour-primary);
  border-radius: 0.35em;
  letter-spacing: 1px;
  font-weight: 600;
  text-decoration: none;
}
a.btn-primary:hover,
.btn-primary:hover {
  color: #fff;
  background-color: var(--colour-primary-darker);
  border: 2px solid var(--colour-primary-darker);
  text-decoration: none;
}
a.btn-primary:focus, a.btn-primary.focus,
.btn-primary:focus,
.btn-primary.focus {
  color: #fff;
  background-color: var(--colour-primary-darker2);
  outline: none;
  border: 2px solid var(--colour-primary-darker2);
  text-decoration: none;
}
a.btn-primary:not(:disabled):not(.disabled).active, a.btn-primary:not(:disabled):not(.disabled):active,
.btn-primary:not(:disabled):not(.disabled).active,
.btn-primary:not(:disabled):not(.disabled):active {
  color: #fff;
  background-color: var(--colour-primary-darker2);
  border: 2px solid var(--colour-primary-darker2);
}
a.btn-primary.focus, a.btn-primary:focus, a.btn-primary:not(:disabled):not(.disabled).active:focus, a.btn-primary:not(:disabled):not(.disabled):active:focus,
.btn-primary.focus,
.btn-primary:focus,
.btn-primary:not(:disabled):not(.disabled).active:focus,
.btn-primary:not(:disabled):not(.disabled):active:focus {
  box-shadow: none;
  border: 2px solid var(--colour-primary-darker2);
}

a.btn-secondary,
.btn-secondary {
  color: white;
  background-color: var(--colour-secondary);
  border: 2px solid var(--colour-secondary);
  border-radius: 0.35em;
  letter-spacing: 1px;
  font-weight: 600;
  text-decoration: none;
}
a.btn-secondary:hover,
.btn-secondary:hover {
  color: #fff;
  background-color: var(--colour-secondary-darker);
  border: 2px solid var(--colour-secondary-darker);
  text-decoration: none;
}
a.btn-secondary:focus, a.btn-secondary.focus,
.btn-secondary:focus,
.btn-secondary.focus {
  color: #fff;
  background-color: var(--colour-secondary-darker2);
  outline: none;
  border: 2px solid var(--colour-secondary-darker2);
  text-decoration: none;
}
a.btn-secondary:not(:disabled):not(.disabled).active, a.btn-secondary:not(:disabled):not(.disabled):active,
.btn-secondary:not(:disabled):not(.disabled).active,
.btn-secondary:not(:disabled):not(.disabled):active {
  color: #fff;
  background-color: var(--colour-secondary-darker2);
  border: 2px solid var(--colour-secondary-darker2);
}
a.btn-secondary.focus, a.btn-secondary:focus, a.btn-secondary:not(:disabled):not(.disabled).active:focus, a.btn-secondary:not(:disabled):not(.disabled):active:focus,
.btn-secondary.focus,
.btn-secondary:focus,
.btn-secondary:not(:disabled):not(.disabled).active:focus,
.btn-secondary:not(:disabled):not(.disabled):active:focus {
  box-shadow: none;
  border: 2px solid var(--colour-secondary-darker2);
}

/* ------------------ */
/* 7__Media queries   */
/* ------------------ */
@media (max-width: 768px) {
  body {
    font-size: 0.85em;
  }
  #main {
    margin-block-start: 2.5em;
  }
}
@media (max-width: 480px) {
  h1 {
    font-weight: 800;
    font-size: 2.6em;
    line-height: 1.1;
  }
  h2 {
    font-weight: 800;
    font-size: 2em;
    line-height: 1.1;
  }
  h3 {
    font-weight: 700;
    font-size: 1.35em;
  }
  h4 {
    font-weight: 700;
    font-size: 1.1em;
  }
}

/*# sourceMappingURL=keen-kids-landing-page.css.map */
