/** Shopify CDN: Minification failed

Line 244:0 Unexpected "}"

**/
/* Hero Section Styles */
:root{
    --page-width: 130rem;
    --grid-desktop-horizontal-spacing: 16px;
    --brand-primary: #2AB34C;
    --brand-primary-hover: #2CC452;
    --black: #1C1D1E;
    --black-hover: #0a0a0a;
    --button-tertiary: #f1f1f1;
    --button-tertiary-hover: #ffffff;
    --bs-border-radius: 1rem;
    --rem: 16;
      --grid-mobile-vertical-spacing: 40px;
}

/* Padding for all sides */
.p-6 {
    padding: 4rem; /* 64px */
  }
  
  .p-7 {
    padding: 5rem; /* 80px */
  }
  
  .p-8 {
    padding: 6rem; /* 96px */
  }
  
  /* Padding for top */
  .pt-6 {
    padding-top: 4rem; /* 64px */
  }
  
  .pt-7 {
    padding-top: 5rem; /* 80px */
  }
  
  .pt-8 {
    padding-top: 6rem; /* 96px */
  }
  
  /* Padding for bottom */
  .pb-6 {
    padding-bottom: 4rem; /* 64px */
  }
  
  .pb-7 {
    padding-bottom: 5rem; /* 80px */
  }
  
  .pb-8 {
    padding-bottom: 6rem; /* 96px */
  }
  
  /* Padding for left */
  .pl-6 {
    padding-left: 4rem; /* 64px */
  }
  
  .pl-7 {
    padding-left: 5rem; /* 80px */
  }
  
  .pl-8 {
    padding-left: 6rem; /* 96px */
  }
  
  /* Padding for right */
  .pr-6 {
    padding-right: 4rem; /* 64px */
  }
  
  .pr-7 {
    padding-right: 5rem; /* 80px */
  }
  
  .pr-8 {
    padding-right: 6rem; /* 96px */
  }
  
  /* Padding for vertical (top and bottom) */
  .py-6 {
    padding-top: 4rem; /* 64px */
    padding-bottom: 4rem; /* 64px */
  }
  
  .py-7 {
    padding-top: 5rem; /* 80px */
    padding-bottom: 5rem; /* 80px */
  }
  
  .py-8 {
    padding-top: 6rem; /* 96px */
    padding-bottom: 6rem; /* 96px */
  }
  
  /* Padding for horizontal (left and right) */
  .px-6 {
    padding-left: 4rem; /* 64px */
    padding-right: 4rem; /* 64px */
  }
  
  .px-7 {
    padding-left: 5rem; /* 80px */
    padding-right: 5rem; /* 80px */
  }
  
  .px-8 {
    padding-left: 6rem; /* 96px */
    padding-right: 6rem; /* 96px */
  }
  

.btn{
    --bs-btn-font-size: 16px;
}
.color-scheme-2{
    --gradient-background: #F4F4F4;
    --color-background: 255,255,255;
}

.multicolumn.color-scheme-2.background-primary .multicolumn-card{
    background: #fff;
}
.multicolumn-card-spacing{
    margin: 0px !important;
    padding: 0px !important;
}
.hero-section {
    display: flex;
    flex-wrap: wrap;
    min-height: 50vh;
  }
  
  .hero-section .left-col {
    flex: 1;
    background-color: #1C1D1E;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-end;
  }

  .left-col-content{
    max-width: 650px;
    width: 100%;
  }

.hero-section .btn-tertiary.btn-outline{
      border: 3px solid var(--button-tertiary);
    color: var(--button-tertiary);
    outline: 3px solid #1C1D1E;
    outline-offset: -2px;
}

@media screen and (max-width: 990px) {
.hero-section{
  flex-direction: column;
  column-direction: reverse;
}
  .hero-section .left-col {
    align-items: flex-start;
  }
  .hero-section .right-col{
    min-height: 300px;
  }
  .multicolumn .justify-content-between{
    flex-direction: column;
    align-items: flex-start !important;
  }
}
  
  .hero-section .right-col {
    flex: 1;
    background-size: cover;
    background-position: center;
    position: relative;
  }
  
  .hero-section .right-col::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3); /* Adjust overlay */
  }
  
  .hero-section h5 {
    color: var(--brand-primary);
    margin-bottom: 0px;
  }
  
  .hero-section h1 {
    margin-bottom: 20px;
    color: #fff;
    margin-top: 10px;
    line-height: 1.25;
  }
  
  .hero-section p {
    margin-bottom: 1.5rem;
    color: #fff;
    font-weight: 300;
  }

@media (max-width: 768px) {
  .hero-section p {
      margin-top: 1.5rem;
    }
  }
  
  .hero-section .button-group {
    display: flex;
    gap: 1rem;
  }

  .mt-5{
    margin-top: 1rem !important;
  }
  .hero-section .button-group {
    display: flex;
    gap: 1rem;
  }


  .btn {
    padding: 0.4rem 1.5rem;
    text-decoration: none;
    border-radius: 100px;
    transition: background-color 0.3s;
  }
  .image-with-text__content {
    padding: 2.5rem 2.5rem !important;
  }

}
  
  .btn {
    padding: 0.75rem 2.25rem;
    text-decoration: none;
    border-radius: 100px;
    transition: background-color 0.3s;
  }
  
  .btn-primary {
    background-color: var(--brand-primary);
    color: #fff;
    border-color: var(--brand-primary);
  }
  
  .btn-primary:hover {
    background-color: var(--brand-primary-hover);
    border-color: var(--brand-primary-hover);
  }
  
  .btn-secondary {
    background-color: var(--black);
    color: #fff;
    border-color: var(--black);
  }
  
  .btn-secondary:hover {
    background-color: var(--black-hover);
    border-color: var(--black-hover);
  }

  .btn-tertiary {
    background-color: var(--button-tertiary);
  }

  .btn-tertiary:hover {
    background-color: var(--button-tertiary-hover);
  }
  
  .btn-outline {
    background-color: transparent;
  }

  .btn-primary.btn-outline{
    border: 1px solid var(--brand-primary);
    color: var(--brand-primary);
  }

  .btn-primary.btn-outline:hover{
    color: #fff;
  }

  .btn-secondary.btn-outline{
    border: 1px solid var(--black);
    color: var(--black);
  }

  .btn-secondary.btn-outline:hover{
    color: #fff;
  }

  .btn-tertiary.btn-outline{
    border: 1px solid var(--button-tertiary);
    color: var(--button-tertiary);
  }

  .btn-tertiary.btn-outline:hover{
    color: #000;
  }

  .logo-carousel {
    padding: 2rem 0;
  }
  
  .swiper-container {
    width: 100%;
  }
  
  .swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    align-self: center;
  }
  
  .swiper-slide img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
  }
  
  .swiper-button-prev,
  .swiper-button-next {
    color: #333;
    transition: color 0.3s;
  }
  
  .swiper-button-prev:hover,
  .swiper-button-next:hover {
    color: #000;
  }
  

.bg-black-pearl {
    background-color: #1c1d1e !important;
}

.bg-white {
    background-color: #fff !important;
}

.bg-white-smoke {
    background-color: #f4f4f4 !important;
}

.bg-school-yellow {
    background-color: var(--brand-primary) !important;
}

.text-school-yellow {
    color: var(--brand-primary) !important;
}

.text-dark-gray {
    color: #a8a8a8 !important;
}

.nav-link{
    padding-left: 20px;
    padding-right: 20px;
}

.nav-tabs .nav-link.active, .nav-tabs .nav-item.show .nav-link {
    color: #1c1d1e;
    background-color: transparent;
    border-color: #1c1d1e;
    padding-left: 20px;
    padding-right: 20px;
}

.blog .title-wrapper-with-link{
    flex-direction: column;
    align-items: flex-start;
  }
  
  .text-silver {
    color: #bebebe !important;
  }
  
  .page-width-desktop{
    padding: 0px;
    max-width: 1320px;
    padding-right: calc(1.5rem / 2);
      padding-left: calc(1.5rem / 2);
  }
  
  .list-menu__item{
    color: #1C1D1E;
    font-weight: 500;
    padding-right: 0px;
    padding-left: 0px;
    padding-top: 0px;
    padding-bottom: 02px;
    margin-right: 20px;
    font-size: 1rem;
  }

.header.page-width{
    display: flex;
  justify-content: space-between;
}
@media (max-width: 1240px) {
  .header.page-width{
  justify-content: flex-start;
  }
  .header__icons{
    margin-left: auto;
  }
}

.header__inline-menu{
    
}
.list-menu--inline{
    justify-content: center;
    width: 100%;
}


.article-card-wrapper .card, .contains-card--article{
    border: 0px;
}
.button{
  font-size: 1.125em;
  background-color: var(--black);
  border: 1px solid var(--black);
      padding: 0.75rem 1.5rem;
    text-decoration: none;
    border-radius: 100px;
  min-width: 0px;
  min-height: 0px;
  font-weight: 400;
  line-height: 1.7;
  white-space: pre;
}
.button:after, .button:before{
  content: '';
}
.button:hover{
  color: #fff;
  background-color: var(--black-hover);
  border: 1px solid var(--black-hover);
}
.multicolumn .button{
    background-color: transparent;
    color: var(--black);
    font-size: 16px;
    padding: 0px;
    border: 0px;
    min-width: 0px;
    min-height: 0px;
    margin-top: 0px !important;
    width: auto;
}

.multicolumn .button:hover{
  border: 0px !important;
  color: var(--black-hover);
}

.multicolumn .button:hover:after, .multicolumn .button:before{
    box-shadow: none;
}

.button:after{
    box-shadow: none;
}
.multicolumn .button:after{
    box-shadow: none;
}
.color-scheme-3{
    background-color: #1C1D1E;
}
.color-scheme-3 h2{
    color: #fff;
}

.page-header{
    background-color: var(--black);
}

.page-header span{
  font-weight: 300 !important;
}

.page-header h1{
    color: #fff;
    font-size: 40px;
    font-weight: 300;
    margin-bottom: 0px;
}

@media (max-width: 768px) {
  .page-header h1{
    font-size: 32px;
    line-height: 38px;
  }
}

.page-header *{
    color: #fff;
}


.testimonials img{
  aspect-ratio: 1/1;
}

.multicolumn .title-wrapper-with-link{
  margin-bottom: 0px;
}

.multicolumn .justify-content-between{
  margin-bottom: 0px;
  align-items: flex-end;
}

.header__menu-item .icon-caret{
  right: 0px;
  margin-top: -2px;
}

summary.list-menu__item {
    padding-right: 24px !important;
}

.about-with-tabs i{
  font-size: 32px;
}

.blog.color-scheme-1 .article-card{
  background-color: #F4F4F4;
}

.header__icons{
      align-items: center;
  gap: 30px;
}

@media (max-width: 768px) {
  .footer__blocks-wrapper{
    flex-direction: column;
  }
  .footer-block__details-content{
    margin-bottom: 0px !important;
  }
  .footer-block__heading{
    margin-bottom: 1rem !important;
  }
  .footer__copyright{
    flex-direction: column;
  }
  .header__heading-link{
    padding-left: 0px;
    padding-right: 20px;
  }
}

.footer-block--menu ul{

}

.footer-block--menu ul a{
    font-size: 15px !important;
    font-weight: 400;
    padding: 4px 0 !important;
    line-height: 18px;
}

.page-contact .page-header{
  display: none;
}

.page-contact .hero-section  .left-col{
  background-color: #F4F4F4;
}

.page-contact .hero-section *{
  color: #000;
}

.header__icons .phone{
  display: none;
}

.header__icons{
    padding-right: 0px !important;
  }
@media screen and (min-width: 990px) {
  .header__icons .phone{
    display: block;
  }
  
}

.header__icons  .button{
  font-size: 14px;
}

@media (max-width: 768px) {
    .container, .container-sm, .container-md {
        max-width: 100%;
    }
    .metafield-rich_text_field{
      padding-left: 20px;
      padding-right: 20px;
    }
}

.about-width-tabs{
  padding-left: 20px;
  padding-right: 20px;
}

.multicolumn .button{
  white-space: normal;
}



@media screen and (min-width: 750px) and (max-width: 989px) {
    .multicolumn__title {
        padding-left: 0px !important;
        padding-right: 0px !important;
    }
}

.section-template--17621172125852__rich_text_r9Vizf-padding .metafield-rich_text_field p{
    margin-top: -150px;
      background: rgb(var(--color-background)) linear-gradient(rgba(var(--color-foreground), 0.04), rgba(var(--color-foreground), 0.04));
      padding: 2.5rem;
}

.background-hero-graphic{
  background-color: #000;
  background-size: cover;
  background-attachment: fixed;
  position: relative;
}
.background-hero-graphic .container{
  position: relative;
}
.background-hero-graphic-overlay {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #0000008a;
  pointer-events: none;
  backdrop-filter: grayscale(10) blur(3px) contrast(2);
}

body{
  font-weight: 300;
}

.container.custom-full-width{
  max-width: 100%;
}

.page-width--narrow{
  max-width: 800px;
}

table tr:first-of-type{
  background-color: var(--brand-primary);
  color: #fff;
}

table tr:first-of-type td{
  border-color: var(--brand-primary-hover);
}