:root {
  --spacing-small: 10px;
  --spacing-medium: 20px;
  --spacing-medium-2: 40px;
  --spacing-large: 60px;
  --spacing-extra-large: 100px;
  --neg-spacing-large: -80px;
  --hero-height: 650px;
  /* colours */
  --primary: #79222E;
  /* dk red  */
  --secondary: #CF1F2E;
  /* lt red */
  --accent: #6FBE4A;
  /* green */
  --text: #000000;
  /* black */
  --light: #FFF3E1;
  /* tan */
  --light2: #FAC372;
  /* dk tan */
  /* fonts */
  --font1: 'brandon grotesque';
  --font2: 'Open Sans';
  --font3: 'Open Sans';
}
/* background colours */
.bg-primary {
  background-color: var(--primary);
}
.bg-secondary {
  background-color: var(--secondary);
}
.bg-accent {
  background-color: var(--accent);
}
.bg-light {
  background-color: var(--light);
}
.bg-light2 {
  background-color: var(--light2);
}
/* make icon boxes completely clickable */
.elementor-widget-icon-box a:after {
  content: "";
  display: block !important;
  position: absolute;
  inset: 0;
  z-index: 1;
}
.elementor-icon-box-icon {
  z-index: 2;
}
/* Text sizes - with CLAMP to make fluid */
/* body */
p {
  text-wrap: pretty;
  font-size: clamp(16px, 3vw, 20px);
  font-family: var(--font2);
}
/* body link text*/
p a {
  color: var(--accent);
}
p a:hover {
  color: var(--primary);
}
/* clip text to gradient */
.section-title h1 {
  font-size: clamp(4em, 8vw, 6em);
}
/* font-size: clamp(1.875rem, 1.25205rem + 2.62295vw, 3.875rem); */
h1,
.h1 {
  font-size: clamp(2.5em, 8vw, 4em);
  font-family: var(--font1);
  font-weight: 600;
  line-height: 1.1;
  color: var(--primary);
  padding-bottom: 36px;
}
.headline h1 {
  font-size: clamp(2em, 8vw, 3.5em);
  line-height: 1.3;
  font-family: var(--font2);
  font-weight: 500;
  color: var(--primary);
  text-align: center;
}
h2,
.h2 {
  font-size: clamp(2em, 6vw, 3em);
  font-family: var(--font1);
  font-style: normal;
  font-weight: 600;
  color: var(--accent);
  padding-bottom: var(--spacing-medium);
}
h3,
.h3 {
  font-size: clamp(1.3em, 4vw, 2.2em);
  font-family: var(--font1);
  font-weight: 600;
  color: var(--primary);
  padding-bottom: 0px;
  line-height: 1.3;
}
h4,
.h4 {
  font-size: clamp(1.2em, 4vw, 2em);
  font-family: var(--font1);
  font-weight: 600;
  color: var(--secondary);
  padding-bottom: 0px;
  line-height: 1.3;
}
h5,
.h5 {
  font-size: clamp(1.2em, 4vw, 2em);
  font-family: var(--font1);
  color: var(--dkblue);
  padding-bottom: 0px;
  line-height: 1.3;
}
h6,
.h6 {
  font-size: clamp(1.2em, 4vw, 2em);
  font-family: var(--font1);
  color: var(--secondary);
  padding-bottom: 0px;
  margin: 0;
}
/* text modifications */
.caps {
  text-transform: uppercase;
}
/* when you dont want to use a header but need consistent larger type */
.type-large {
  font-size: clamp(2.5em, 6vw, 4em);
}
.type-medium p {
  font-size: clamp(1.7em, 4vw, 2.5em);
}
.type-small p {
  font-size: clamp(0.8em, 4vw, 1em);
}
.photocaption p {
  font-size: 12px;
  margin: 0px;
}
.photocredit p {
  font-size: 12px;
  text-transform: uppercase;
}
.callout p {
  text-wrap: pretty;
  font-size: clamp(1rem, 1.25rem, 1.25rem);
  font-family: var(--font2);
  margin-top: var(--spacing-medium);
  margin-bottom: var(--spacing-medium);
  padding: var(--spacing-medium);
  border-radius: 20px;
  border: 6px solid var(--accent);
}
.text-container .footer-text {
  font-size: 14px;
}
/* for bullets */
/* for bullets - indent */
.elementor-widget-text-editor ul {
  margin-top: 0px;
  margin-bottom: 0px;
  display: inline-block;
  list-style: inside none;
  margin-left: 0px;
  text-indent: -20px;
  margin-bottom: 10px;
}
/* bullet */
.elementor-widget-text-editor ul li::before {
  font-family: var(--font1);
  font-weight: 900;
  content: "•";
  color: var(--primary);
  padding-right: 15px;
}
/* li */
.elementor-widget-text-editor ul li {
  font-family: var(--font2);
  font-size: clamp(1rem, 1.25rem, 1.25rem);
  padding-bottom: 10px;
  color: var(--primary);
}
/* red type  */
.dkred {
  color: var(--primary);
}
/* reverse type  */
.white h1,
.white h2,
.white h3,
.white h4,
.white p,
.elementor-widget-text-editor.white ul li {
  color: white;
}
.elementor-widget-text-editor.white ul > li::before {
  font-family: var(--font1);
  font-weight: 900;
  content: "•";
  color: #FFF;
  padding-right: 15px;
}
/* layout containers - classes applied in ele */
.header-logo {
  width: 600px;
  padding: 0px;
  padding-left: var(--spacing-large);
}
.menu {
  padding-top: var(--spacing-small);
  padding-bottom: var(--spacing-small);
  padding-left: var(--spacing-large);
  padding-right: var(--spacing-large);
}
.main-menu {
  letter-spacing: 5px;
}
.swiper-slide-contents {
  background: #FFFFFFAD;
  padding: var(--spacing-large);
  border-radius: 20px;
  background-position: bottom center;
  background-repeat: no-repeat;
  background-size: 100%;
  background-image: url('http://canadianaccreditation.ca/fresh/wp-content/uploads/2021/07/header-faded.png');
}
.elementor-slides .swiper-slide-inner .elementor-slide-heading {
  font-size: clamp(2.5em, 8vw, 4em);
  font-family: var(--font1);
  font-weight: 600;
  color: var(--primary);
  letter-spacing: 2px;
}
.elementor-slides .swiper-slide-inner .elementor-slide-description {
  font-size: clamp(1.3em, 4vw, 2.2em);
  font-family: var(--font2);
  font-weight: 600;
  color: var(--primary);
}
.ribbon {
  background-position: top right;
  background-repeat: no-repeat;
  background-size: 100%;
  background-image: url('http://canadianaccreditation.ca/fresh/wp-content/uploads/2021/07/rainbow-header.png');
}
.spacer {
  height: var(--spacing-extra-large);
}
/* CONTAINERS -------------------------*/
/* flex direction is set in ELE*/
.flex-100 {
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
  gap: 40px;
  padding: 0px;
  margin: 0px;
}
.flex-column {
  display: flex;
  flex-direction: column;
  justify-content: stretch;
  padding-left: var(--spacing-large);
  padding-right: var(--spacing-large);
}
/* WIDTHS  -------------------------*/
.width-25 {
  width: 25%;
}
.width-33 {
  width: 33%;
}
.width-50 {
  width: 50%;
}
.width-66 {
  width: 66%;
}
.width-75 {
  width: 75%;
}
/* Zero out padding -------------------------*/
.zero-pad-left {
  padding-left: 0px;
}
.zero-pad-right {
  padding-right: 0px;
}
.zero-pad-all {
  padding: 0px;
}
.flex-image {
  height: 150px;
  justify-content: center;
  overflow: hidden;
  background: white;
}
/* spacing classes to separate sections */
.top-medium-space {
  padding-top: var(--spacing-medium);
}
.bottom-medium-space {
  padding-bottom: var(--spacing-medium);
}
.top-large-space {
  padding-top: var(--spacing-large);
}
.bottom-large-space {
  padding-bottom: var(--spacing-large);
}
.right-medium-space {
  padding-right: var(--spacing-medium);
}
.left-medium-space {
  padding-left: var(--spacing-medium);
}
.right-medium-margin {
  margin-right: var(--spacing-medium);
}
.left-medium-margin {
  margin-left: var(--spacing-medium);
}
.right-large-margin {
  margin-right: var(--spacing-large);
}
.left-large-margin {
  margin-left: var(--spacing-large);
}
/* spacing classes to separate sections */
.rounded-20 {
  border-radius: 20px;
}
/* HERO -------------------------------*/
.hero {
  padding: 0px;
}
.hero-overlay {
  width: 42%;
  margin-top: var(--spacing-large);
  margin-bottom: var(--spacing-large);
  margin-right: var(--spacing-large);
}
/* FEATURE ICONS  ----------------*/
.image-icon img {
  width: 100%;
  height: 120px;
  object-fit: scale-down;
}
.icon-image .elementor-widget-image {
  height: 160px;
}
.icon-image .elementor-widget-image img {
  height: 100%;
  width: auto;
}
/* feature images */
.image-container {
  width: 100%;
  padding: 0px;
  overflow: hidden;
}
.image-container img {
  padding: 0px;
  object-fit: scale-down;
}
/* feature button ----------------------------*/
.button1 {
  font-family: var(--font1);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 28px;
}
/* feature button rounded ----------------------------*/
.button2 {
  font-family: var(--font1);
  font-weight: 700;
  text-transform: uppercase;
}
.button2 a {
  font-size: 20px;
  border-radius: 50px;
  background-color: var(--accent);
}
.button2 a:hover {
  background-color: var(--secondary);
}
/* large button home page  ----------------------------*/
.button-large {
  font-family: var(--font1);
  font-weight: 700;
  text-transform: uppercase;
}
.button-large a {
  font-size: 28px;
  padding-top: 20px;
  padding-bottom: 20px;
  padding-left: 40px;
  padding-right: 40px;
  border-radius: 50px;
}
/* testimonials ----------------------------*/
.testimonials .swiper-slide-active,
.testimonials .swiper-slide-next,
.testimonials .swiper-slide {
  background: var(--light);
  border-radius: 20px;
  padding-top: var(--spacing-large);
}
.testimonials .swiper-slide-active .elementor-testimonial__text,
.testimonials .swiper-slide-next .elementor-testimonial__text,
.testimonials .swiper-slide .elementor-testimonial__text {
  font-size: clamp(1em, 2vw, 1.4em);
  font-family: var(--font2);
  font-weight: 600;
  font-style: normal;
  color: var(--primary);
  margin-bottom: 20px;
}
.testimonials .swiper-slide-active .elementor-testimonial__footer,
.testimonials .swiper-slide-next .elementor-testimonial__footer,
.testimonials .swiper-slide .elementor-testimonial__footer {
  margin: 0px;
  font-family: var(--font1);
}
.testimonials .swiper-slide-active .elementor-testimonial__name,
.testimonials .swiper-slide-next .elementor-testimonial__name,
.testimonials .swiper-slide .elementor-testimonial__name {
  margin: 0px;
  font-family: var(--font1);
  font-style: normal;
  color: var(--primary);
}
.testimonials .swiper-slide-active .elementor-testimonial__title,
.testimonials .swiper-slide-next .elementor-testimonial__title,
.testimonials .swiper-slide .elementor-testimonial__title {
  font-family: var(--font1);
  margin: 0px;
  padding: 0px;
  font-style: normal;
  color: var(--primary);
}
/* ANIMATIONS - base*
Add class .animation-element to any element to be animated only in window/

/* Code to add 'in-view' class in elementor custom code 
JS to detect on page elements is in JS widget on the page 
*/
@keyframes entry-fade-up {
  0% {
    transform: translate(0px, 30px);
    opacity: 0;
  }
  100% {
    transform: translate(0px, 0px);
    opacity: 1;
  }
}
@keyframes entry-fade-down {
  0% {
    transform: translate(0px, -60px);
    opacity: 0;
  }
  100% {
    transform: translate(0px, 0px);
    opacity: 1;
  }
}
@keyframes entry-fade-right {
  0% {
    transform: translate(-60px, 0px);
    opacity: 0;
  }
  100% {
    transform: translate(0px, 0px);
    opacity: 1;
  }
}
@keyframes entry-fade-right-long {
  0% {
    transform: translate(-500px, 0px);
    opacity: 0;
  }
  100% {
    transform: translate(0px, 0px);
    opacity: 1;
  }
}
@keyframes entry-fade-right-map {
  0% {
    transform: translate(-60px, 0px);
    opacity: 0;
  }
  100% {
    transform: translate(0px, 0px);
    opacity: 1;
  }
}
@keyframes entry-fade-left {
  0% {
    transform: translate(60px, 0px);
    opacity: 0;
  }
  100% {
    transform: translate(0px, 0px);
    opacity: 1;
  }
}
@keyframes entry-fade-left-long {
  0% {
    transform: translate(500px, 0px);
    opacity: 0;
  }
  100% {
    transform: translate(0px, 0px);
    opacity: 1;
  }
}
@keyframes entry-fade-left-map {
  0% {
    transform: translate(60px, 0px);
    opacity: 0;
  }
  100% {
    transform: translate(0px, 0px);
    opacity: 1;
  }
}
@keyframes entry-fade-in {
  0% {
    transform: translate(0px, 20px);
    opacity: 0;
  }
  100% {
    transform: translate(0px, 0px);
    opacity: 1;
  }
}
@keyframes entry-default {
  0% {
    transform: translate(0px, 20px);
    opacity: 0;
  }
  100% {
    transform: translate(0px, 0px);
    opacity: 1;
  }
}
/* CALL animations. 
Add .animated-element class to element that will animate
Then add animation type to element. In ele css class: 
animation-element entry-fade-up
*/
/* The default entrance animation assigned to sections */
.entry-default.in-view {
  animation-name: entry-default;
  animation-duration: 1s;
  animation-iteration-count: 1;
  animation-timing-function: cubic-bezier(0.25, 0.1, 0.25, 1);
  animation-fill-mode: both;
  animation-delay: 00ms;
}
.entry-fade-up.in-view {
  animation-name: entry-fade-up;
  animation-duration: 1s;
  animation-iteration-count: 1;
  animation-timing-function: cubic-bezier(0.25, 0.1, 0.25, 1);
  animation-fill-mode: both;
  animation-delay: 500ms;
}
.entry-fade-down.in-view {
  animation-name: entry-fade-down;
  animation-duration: 1s;
  animation-iteration-count: 1;
  animation-timing-function: cubic-bezier(0.25, 0.1, 0.25, 1);
  animation-fill-mode: both;
  animation-delay: 500ms;
}
.entry-fade-right.in-view {
  animation-name: entry-fade-right;
  animation-duration: 1s;
  animation-iteration-count: 1;
  animation-timing-function: cubic-bezier(0.25, 0.1, 0.25, 1);
  animation-fill-mode: both;
  animation-delay: 200ms;
}
.entry-fade-right-long.in-view {
  animation-name: entry-fade-right;
  animation-duration: 2s;
  animation-iteration-count: 1;
  animation-timing-function: cubic-bezier(0.25, 0.1, 0.25, 1);
  animation-fill-mode: both;
  animation-delay: 500ms;
}
.entry-fade-right-500.in-view {
  animation-name: entry-fade-right;
  animation-duration: 1s;
  animation-iteration-count: 1;
  animation-timing-function: cubic-bezier(0.25, 0.1, 0.25, 1);
  animation-fill-mode: both;
  animation-delay: 500ms;
}
.entry-fade-left.in-view {
  animation-name: entry-fade-left;
  animation-duration: 1s;
  animation-iteration-count: 1;
  animation-timing-function: cubic-bezier(0.25, 0.1, 0.25, 1);
  animation-fill-mode: both;
  animation-delay: 500ms;
}
.entry-fade-left-long.in-view {
  animation-name: entry-fade-left;
  animation-duration: 2s;
  animation-iteration-count: 1;
  animation-timing-function: cubic-bezier(0.25, 0.1, 0.25, 1);
  animation-fill-mode: both;
  animation-delay: 500ms;
}
.entry-fade-left-1000.in-view {
  animation-name: entry-fade-left;
  animation-duration: 1s;
  animation-iteration-count: 1;
  animation-timing-function: cubic-bezier(0.25, 0.1, 0.25, 1);
  animation-fill-mode: both;
  animation-delay: 500ms;
}
.entry-fade-left-1000.in-view {
  animation-name: entry-fade-left;
  animation-duration: 1s;
  animation-iteration-count: 1;
  animation-timing-function: cubic-bezier(0.25, 0.1, 0.25, 1);
  animation-fill-mode: both;
  animation-delay: 1000ms;
}
.entry-fade-in.in-view {
  animation-name: entry-fade-in;
  animation-duration: 1s;
  animation-iteration-count: 1;
  animation-timing-function: ease-out;
  animation-fill-mode: both;
  animation-delay: 500ms;
}
.entry-fade-in-500.in-view {
  animation-name: entry-fade-in;
  animation-duration: 1s;
  animation-iteration-count: 1;
  animation-timing-function: cubic-bezier(0.25, 0.1, 0.25, 1);
  animation-fill-mode: both;
  animation-delay: 500ms;
}
.entry-fade-in-1000.in-view {
  animation-name: entry-fade-in;
  animation-duration: 1s;
  animation-iteration-count: 1;
  animation-timing-function: cubic-bezier(0.25, 0.1, 0.25, 1);
  animation-fill-mode: both;
  animation-delay: 1000ms;
}
@media (max-width: 1300px) {
  :root {
    /* add spacing to column containers for smaller screens */
    --spacing-small: 20px;
    --spacing-large: 20px;
    --spacing-medium-2: 0px;
    /* adjust left col spacing*/
    --spacing-extra-large: 60px;
    --neg-spacing-large: -40px;
    --hero-height: 500px;
    --spacing-extra-large: 100px;
  }
  .header-logo {
    width: 50%;
  }
  .menu {
    width: 50%;
  }
  .main-menu {
    letter-spacing: 2px;
  }
}
@media (max-width: 768px) {
  :root {
    --spacing-small: 10px;
    --spacing-medium: 20px;
    --spacing-medium-2: 40px;
    --spacing-large: 40px;
    --spacing-extra-large: 100px;
  }
  /* make all columns 100%  ------------*/
  .width-25,
  .width-33,
  .width-50,
  .width-66,
  .width-75 {
    width: 100%;
  }
  /* Restore padding in coluns  ------------*/
  .zero-pad-left {
    padding-left: var(--spacing-large);
  }
  .zero-pad-right {
    padding-right: var(--spacing-large);
  }
  /* remove padding on columns in highlight ----*/
  .highlight .flex-column {
    padding-left: 0px;
  }
  .highlight .flex-column {
    padding-right: 0px;
  }
}
@media (max-width: 900px) {
  .icon-image .elementor-widget-image {
    height: 100px;
  }
}
