@charset "UTF-8";
.btn {
  border-radius: 15px;
  padding: 18px 20px 16px 20px;
  border: 3px solid;
  font-weight: 600;
  font-size: 17px;
  line-height: 16px;
  text-transform: uppercase;
}
.btn:focus {
  box-shadow: none;
}

@media screen and (min-width: 992px) {
  .btn-md {
    padding: 0.5rem 2rem;
    font-size: calc(1.255rem + 0.06vw);
  }
}
@media screen and (min-width: 992px) and (min-width: 1200px) {
  .btn-md {
    font-size: 1.3rem;
  }
}

@media screen and (min-width: 992px) {
  .btn-lg {
    padding: 1rem 5rem;
    font-size: calc(1.275rem + 0.3vw);
  }
}
@media screen and (min-width: 992px) and (min-width: 1200px) {
  .btn-lg {
    font-size: 1.5rem;
  }
}

.btn-outline-primary {
  background-color: transparent;
  border: 1px solid #28b2ec;
  color: #28b2ec;
}
.btn-outline-primary:hover {
  background-color: #28b2ec;
  color: #fff;
}

.btn-outline-black {
  background-color: transparent;
  border: 1px solid #000;
  color: #000;
}
.btn-outline-black:hover {
  background-color: #000;
  color: #fff;
}

.btn-outline-dark-grey {
  background-color: transparent;
  border: 1px solid #d2d4d4;
  color: #d2d4d4;
}
.btn-outline-dark-grey:hover {
  background-color: #d2d4d4;
  color: #fff;
}

.btn-outline-grey {
  background-color: transparent;
  border: 1px solid #f7f3f2;
  color: #f7f3f2;
}
.btn-outline-grey:hover {
  background-color: #f7f3f2;
  color: #fff;
}

.btn-outline-white {
  background-color: transparent;
  border: 1px solid #fff;
  color: #fff;
}
.btn-outline-white:hover {
  background-color: #fff;
  color: #fff;
}

.btn-outline-dark-blue {
  background-color: transparent;
  border: 1px solid #208ebc;
  color: #208ebc;
}
.btn-outline-dark-blue:hover {
  background-color: #208ebc;
  color: #fff;
}

.btn-outline-light-blue {
  background-color: transparent;
  border: 1px solid #dae4f0;
  color: #dae4f0;
}
.btn-outline-light-blue:hover {
  background-color: #dae4f0;
  color: #fff;
}

.btn-outline-yellow {
  background-color: transparent;
  border: 1px solid #f5bd46;
  color: #f5bd46;
}
.btn-outline-yellow:hover {
  background-color: #f5bd46;
  color: #fff;
}

.btn-outline-navy {
  background-color: transparent;
  border: 1px solid #667491;
  color: #667491;
}
.btn-outline-navy:hover {
  background-color: #667491;
  color: #fff;
}

.btn-outline-purple {
  background-color: transparent;
  border: 1px solid #162535;
  color: #162535;
}
.btn-outline-purple:hover {
  background-color: #162535;
  color: #fff;
}

.btn-primary {
  background-color: #28b2ec;
  border: 1px solid #28b2ec;
  color: #fff;
}
.btn-primary:hover, .btn-primary:active, .btn-primary:focus, .btn-primary:disabled {
  background-color: #1297cf;
  color: #fff;
  border: 1px solid #1297cf;
}
.btn-primary:focus, .btn-primary:focus-visible {
  box-shadow: 0 0 0 0.25rem rgba(40, 178, 236, 0.5);
}

.btn-black {
  background-color: #000;
  border: 1px solid #000;
  color: #fff;
}
.btn-black:hover, .btn-black:active, .btn-black:focus, .btn-black:disabled {
  background-color: black;
  color: #fff;
  border: 1px solid black;
}
.btn-black:focus, .btn-black:focus-visible {
  box-shadow: 0 0 0 0.25rem rgba(0, 0, 0, 0.5);
}

.btn-dark-grey {
  background-color: #d2d4d4;
  border: 1px solid #d2d4d4;
  color: #fff;
}
.btn-dark-grey:hover, .btn-dark-grey:active, .btn-dark-grey:focus, .btn-dark-grey:disabled {
  background-color: #b8bbbb;
  color: #fff;
  border: 1px solid #b8bbbb;
}
.btn-dark-grey:focus, .btn-dark-grey:focus-visible {
  box-shadow: 0 0 0 0.25rem rgba(210, 212, 212, 0.5);
}

.btn-grey {
  background-color: #f7f3f2;
  border: 1px solid #f7f3f2;
  color: #fff;
}
.btn-grey:hover, .btn-grey:active, .btn-grey:focus, .btn-grey:disabled {
  background-color: #e4d6d2;
  color: #fff;
  border: 1px solid #e4d6d2;
}
.btn-grey:focus, .btn-grey:focus-visible {
  box-shadow: 0 0 0 0.25rem rgba(247, 243, 242, 0.5);
}

.btn-white {
  background-color: #fff;
  border: 1px solid #fff;
  color: #fff;
}
.btn-white:hover, .btn-white:active, .btn-white:focus, .btn-white:disabled {
  background-color: #e6e6e6;
  color: #fff;
  border: 1px solid #e6e6e6;
}
.btn-white:focus, .btn-white:focus-visible {
  box-shadow: 0 0 0 0.25rem rgba(255, 255, 255, 0.5);
}

.btn-dark-blue {
  background-color: #208ebc;
  border: 1px solid #208ebc;
  color: #fff;
}
.btn-dark-blue:hover, .btn-dark-blue:active, .btn-dark-blue:focus, .btn-dark-blue:disabled {
  background-color: #196d90;
  color: #fff;
  border: 1px solid #196d90;
}
.btn-dark-blue:focus, .btn-dark-blue:focus-visible {
  box-shadow: 0 0 0 0.25rem rgba(32, 142, 188, 0.5);
}

.btn-light-blue {
  background-color: #dae4f0;
  border: 1px solid #dae4f0;
  color: #fff;
}
.btn-light-blue:hover, .btn-light-blue:active, .btn-light-blue:focus, .btn-light-blue:disabled {
  background-color: #b6cae1;
  color: #fff;
  border: 1px solid #b6cae1;
}
.btn-light-blue:focus, .btn-light-blue:focus-visible {
  box-shadow: 0 0 0 0.25rem rgba(218, 228, 240, 0.5);
}

.btn-yellow {
  background-color: #f5bd46;
  border: 1px solid #f5bd46;
  color: #fff;
}
.btn-yellow:hover, .btn-yellow:active, .btn-yellow:focus, .btn-yellow:disabled {
  background-color: #f2ac16;
  color: #fff;
  border: 1px solid #f2ac16;
}
.btn-yellow:focus, .btn-yellow:focus-visible {
  box-shadow: 0 0 0 0.25rem rgba(245, 189, 70, 0.5);
}

.btn-navy {
  background-color: #667491;
  border: 1px solid #667491;
  color: #fff;
}
.btn-navy:hover, .btn-navy:active, .btn-navy:focus, .btn-navy:disabled {
  background-color: #515c73;
  color: #fff;
  border: 1px solid #515c73;
}
.btn-navy:focus, .btn-navy:focus-visible {
  box-shadow: 0 0 0 0.25rem rgba(102, 116, 145, 0.5);
}

.btn-purple {
  background-color: #162535;
  border: 1px solid #162535;
  color: #fff;
}
.btn-purple:hover, .btn-purple:active, .btn-purple:focus, .btn-purple:disabled {
  background-color: #070c11;
  color: #fff;
  border: 1px solid #070c11;
}
.btn-purple:focus, .btn-purple:focus-visible {
  box-shadow: 0 0 0 0.25rem rgba(22, 37, 53, 0.5);
}

.btn-primary {
  background: linear-gradient(to right, #28b2ec, #208ebc);
  color: #fff;
  /* Ensures text is readable */
  border: none;
  cursor: pointer;
  /* Pointer on hover */
  transition: background 1s ease;
  /* Smooth hover effect */
}

/* Optional: add hover effect */
.btn-primary:hover {
  background: linear-gradient(to right, #208ebc, #28b2ec);
  border: none;
}

.btn-yellow {
  background: linear-gradient(to right, #f5bd46, #dcaa3f);
  color: #162535;
  border: none;
  cursor: pointer;
  /* Pointer on hover */
  transition: background 1s ease;
  /* Smooth hover effect */
}

.btn-yellow:hover {
  background: linear-gradient(to right, #dcaa3f, #f5bd46);
  border: none;
  color: #162535;
}

.btn-sm {
  padding: 15px 20px 13px 20px;
  font-size: 15px;
  line-height: 14px;
}

.btn-text {
  padding: 0;
  color: #28b2ec;
  border: none;
  font-size: 14px;
  line-height: 13px;
}
.btn-text i {
  vertical-align: middle;
}

.text-primary {
  color: #28b2ec !important;
}
.text-primary a {
  color: #28b2ec;
  font-weight: 500;
}
.text-primary a:hover {
  color: #1297cf;
}

.text-black {
  color: #000 !important;
}
.text-black a {
  color: #000;
  font-weight: 500;
}
.text-black a:hover {
  color: black;
}

.text-dark-grey {
  color: #d2d4d4 !important;
}
.text-dark-grey a {
  color: #d2d4d4;
  font-weight: 500;
}
.text-dark-grey a:hover {
  color: #b8bbbb;
}

.text-grey {
  color: #f7f3f2 !important;
}
.text-grey a {
  color: #f7f3f2;
  font-weight: 500;
}
.text-grey a:hover {
  color: #e4d6d2;
}

.text-white {
  color: #fff !important;
}
.text-white a {
  color: #fff;
  font-weight: 500;
}
.text-white a:hover {
  color: #e6e6e6;
}

.text-dark-blue {
  color: #208ebc !important;
}
.text-dark-blue a {
  color: #208ebc;
  font-weight: 500;
}
.text-dark-blue a:hover {
  color: #196d90;
}

.text-light-blue {
  color: #dae4f0 !important;
}
.text-light-blue a {
  color: #dae4f0;
  font-weight: 500;
}
.text-light-blue a:hover {
  color: #b6cae1;
}

.text-yellow {
  color: #f5bd46 !important;
}
.text-yellow a {
  color: #f5bd46;
  font-weight: 500;
}
.text-yellow a:hover {
  color: #f2ac16;
}

.text-navy {
  color: #667491 !important;
}
.text-navy a {
  color: #667491;
  font-weight: 500;
}
.text-navy a:hover {
  color: #515c73;
}

.text-purple {
  color: #162535 !important;
}
.text-purple a {
  color: #162535;
  font-weight: 500;
}
.text-purple a:hover {
  color: #070c11;
}

.bg-primary {
  background-color: #28b2ec;
}

.bg-black {
  background-color: #000;
}

.bg-dark-grey {
  background-color: #d2d4d4;
}

.bg-grey {
  background-color: #f7f3f2;
}

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

.bg-dark-blue {
  background-color: #208ebc;
}

.bg-light-blue {
  background-color: #dae4f0;
}

.bg-yellow {
  background-color: #f5bd46;
}

.bg-navy {
  background-color: #667491;
}

.bg-purple {
  background-color: #162535;
}

.map {
  min-height: 500px;
  width: 100%;
}

label {
  font-size: 1rem;
  font-weight: 500;
}
label.form-check-label {
  font-weight: 400;
}

form p {
  margin: 0;
}

input.wpcf7-form-control.wpcf7-text.wpcf7-validates-as-required {
  height: 45px;
  width: 100%;
  margin-bottom: 0.8rem;
  border: 1px solid #162535;
  font-size: 17px;
  padding-left: 17px;
  color: #000;
  border-radius: 13px;
  font-family: "Jost", sans-serif;
}

textarea {
  height: 180px;
  width: 100%;
  margin-bottom: 0.8rem;
  border: 1px solid #162535;
  font-size: 17px;
  padding-left: 17px;
  padding-top: 17px;
  color: #000;
  border-radius: 13px;
  font-family: "Jost", sans-serif;
}

input:focus, textarea:focus {
  outline: none;
}

::-webkit-input-placeholder {
  /* Edge */
  color: #000;
}

:-ms-input-placeholder {
  /* Internet Explorer 10-11 */
  color: #000;
}

::placeholder {
  color: #000;
}

input[type=submit] {
  margin-top: 1.2rem;
  padding: 0;
  width: 30%;
  background-color: #162535;
  color: #fff;
  font-family: "Jost", sans-serif;
  font-size: 18px;
  height: 45px;
  border-radius: 13px;
  padding-top: 0.5rem;
}

#newsletterSection input {
  box-shadow: none;
  border: none;
  height: 45px;
  width: 67%;
  display: inline-block;
  padding-left: 14px;
  font-size: 14px;
  border-radius: 6px;
  font-family: "Jost", sans-serif;
  padding-top: 5px;
}
@media screen and (max-width: 450px) {
  #newsletterSection input {
    width: 100%;
  }
}
#newsletterSection button {
  box-shadow: none;
  border: none;
  height: 45px;
  padding: 0;
  width: 30%;
  font-size: 14px;
  border-radius: 6px;
  margin-left: 5px;
  background: linear-gradient(to right, #f5bd46, #dcaa3f);
  color: #162535;
  font-weight: 800;
  font-family: "Jost", sans-serif;
  letter-spacing: 0.5px;
  transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
  padding-top: 0.3rem;
}
@media screen and (max-width: 450px) {
  #newsletterSection button {
    width: 100%;
    margin-top: 1rem;
    margin-left: 0;
  }
}
#newsletterSection button i {
  transition: transform 0.3s ease;
}
#newsletterSection button:hover {
  color: #162535;
  background: linear-gradient(to right, #dcaa3f, #f5bd46);
}
#newsletterSection button:hover i {
  transform: translateX(4px);
}

.form-control,
.form-check-input[type=checkbox] {
  border-radius: 0;
  border: 1px solid #d2d4d4;
}

.form-check .wpcf7-list-item {
  margin: 0;
  display: inline;
}

span.wpcf7-not-valid-tip {
  font-size: 0.9rem;
}

.wpcf7-list-item {
  width: 100%;
  position: relative;
  display: inline;
  margin: 0 !important;
}
.wpcf7-list-item input[type=checkbox] {
  width: auto;
  opacity: 0.00000001;
  position: absolute;
  left: 0;
  margin-left: 8px;
  margin-top: 14px;
}
.wpcf7-list-item input[type=checkbox]:checked ~ .wpcf7-list-item-label::before {
  color: #fff;
}
.wpcf7-list-item input[type=checkbox]:checked ~ .wpcf7-list-item-label::after {
  transform: rotate(-45deg) scale(1);
}
.wpcf7-list-item input[type=checkbox]:focus + label::before {
  outline: 0;
}
.wpcf7-list-item label {
  position: relative;
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  padding-left: 35px;
  margin-bottom: 1rem;
  font-weight: 400;
  cursor: pointer;
  vertical-align: sub;
  font-family: inherit;
  font-size: 0.875rem;
  font-weight: 300;
}
.wpcf7-list-item label:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  margin: 4px 4px 4px 0;
  width: 22px;
  height: 22px;
  transition: transform 0.28s ease;
  border-radius: 0px;
  border: 1px solid #fff;
  background-color: #fff;
}
.wpcf7-list-item .wpcf7-list-item-label:after {
  content: "";
  display: block;
  width: 10px;
  height: 5px;
  border-bottom: 2px solid #000;
  border-left: 2px solid #000;
  transform: rotate(-45deg) scale(0);
  transition: transform ease 0.25s;
  will-change: transform;
  position: absolute;
  top: 12px;
  left: 6px;
}
.wpcf7-list-item .wpcf7-list-item-label span {
  font-weight: 500;
  font-size: 12px;
  color: #000;
}
.wpcf7-list-item .wpcf7-list-item-label span a {
  color: #000;
  text-decoration: underline;
}
.wpcf7-list-item .wpcf7-list-item-label span a:hover {
  text-decoration: underline;
}

.wpcf7 form.sent .wpcf7-response-output {
  padding: 1rem;
  border: 0;
  text-align: center;
  font-size: 1.4em;
}

/* Sub Menu
––––––––––––––––––––––––––––––––––––––––––––––––––  */
header ul.sub-menu {
  z-index: 9999999999;
  position: absolute;
  background-color: #28b2ec;
  margin-left: 0px !important;
  margin-top: 0px;
  display: none;
  text-align: left;
  border-radius: 6px;
}

header ul.sub-menu li {
  display: block !important;
  margin: 0;
  line-height: 0px !important;
  padding: 0;
  margin-left: 0 !important;
}

header ul.sub-menu li:hover {
  background-color: #208ebc;
  color: #fff !important;
  border-bottom: none;
}

header ul.sub-menu li:first-child:hover {
  border-radius: 6px 6px 0 0 !important;
}

header ul.sub-menu li:last-child:hover {
  border-radius: 0 0 6px 6px !important;
}

header ul.sub-menu li:hover a {
  color: #fff !important;
  border-bottom: none;
}

header ul.sub-menu li.current-menu-item a {
  border-bottom: none;
  background-color: #208ebc;
  color: #fff;
}

header ul.sub-menu li.current-menu-item:first-child a {
  border-radius: 6px 6px 0 0 !important;
}

header ul.sub-menu li.current-menu-item:last-child a {
  border-radius: 0 0 6px 6px !important;
}

header ul.sub-menu li a {
  color: #fff;
  width: 100%;
  display: block;
  padding: 0 1.5rem !important;
  line-height: 45px;
}

header ul.sub-menu li a:before {
  height: 0px;
}

header nav ul li:hover > ul {
  display: block;
  border-bottom: none;
}

header .site-header ul.menu ul li.current-menu-item > a {
  color: inherit;
  border-bottom: none;
}

header li.menu-item.menu-item-type-post_type.menu-item-object-page.current-menu-item.page_item.page-item-17.current_page_item.menu-item-has-children.menu-item-28 ul.sub-menu li a {
  color: #fff !important;
}

.offcanvas-body nav ul li ul.sub-menu {
  display: none;
  /* hide initially */
  margin-top: 1rem;
  padding-left: 0rem;
}

.offcanvas-body nav ul li.open > ul.sub-menu {
  display: block;
  /* show when parent li has 'open' class */
}

.offcanvas-body nav ul li {
  position: relative;
}
.offcanvas-body nav ul li ul.sub-menu li {
  margin-bottom: 1rem;
  text-align: center;
}
.offcanvas-body nav ul li ul.sub-menu li a {
  font-size: 17px;
  color: #fff;
}
.offcanvas-body nav ul li ul.sub-menu li a:hover {
  color: #162535;
}
.offcanvas-body nav ul li.menu-item-has-children > a::after {
  content: "\f078";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  margin-left: 1rem;
  font-size: 1.3rem;
  display: inline-block;
  transition: transform 0.3s ease;
  vertical-align: middle;
}
.offcanvas-body nav ul li.open > a::after {
  transform: rotate(180deg);
}

.offcanvas-end {
  border-left: none;
  z-index: 99999;
  width: 60%;
  background-color: #28b2ec;
}
@media screen and (max-width: 600px) {
  .offcanvas-end {
    width: 100%;
  }
}
.offcanvas-end .offcanvas-header {
  padding: 3rem 5rem 5rem 5rem;
}
@media screen and (max-width: 600px) {
  .offcanvas-end .offcanvas-header {
    padding: 1.5rem 3rem 5rem 3rem;
  }
}
.offcanvas-end .offcanvas-header .logo img {
  width: 80px;
}
.offcanvas-end .offcanvas-header button {
  border: none;
  background-color: transparent;
  padding: 0;
}
.offcanvas-end .offcanvas-header button i {
  color: #fff;
  vertical-align: middle;
  font-size: 25px;
}
.offcanvas-end .offcanvas-body {
  padding: 0 5rem;
}
@media screen and (max-width: 600px) {
  .offcanvas-end .offcanvas-body {
    padding: 0 3rem;
  }
}
.offcanvas-end .offcanvas-body nav {
  display: block !important;
}
.offcanvas-end .offcanvas-body nav ul {
  margin: 0;
  padding: 0;
}
.offcanvas-end .offcanvas-body nav ul li {
  margin-bottom: 1.5rem;
  list-style: none;
  text-align: center;
}
.offcanvas-end .offcanvas-body nav ul li:last-child {
  margin-bottom: 0;
}
.offcanvas-end .offcanvas-body nav ul li a {
  margin: 0;
  font-size: 17px;
  color: #fff;
  font-family: "Jost", sans-serif;
}
@media screen and (max-width: 1199px) {
  .offcanvas-end .offcanvas-body nav ul li a {
    font-size: 13px;
  }
}
.offcanvas-end .offcanvas-body nav ul li a:hover {
  color: #162535;
}
.offcanvas-end .offcanvas-body nav ul .current-menu-item a {
  color: #162535;
}

header .headerTop {
  overflow: auto;
  padding: 0.7rem 0;
  background-color: #dae4f0;
}
@media screen and (max-width: 767px) {
  header .headerTop {
    text-align: center;
  }
}
header .headerTop p {
  font-size: 14px;
  line-height: 19px;
  margin-top: 0.4rem;
  color: #667491;
}
@media screen and (max-width: 991px) {
  header .headerTop p {
    font-size: 13px;
    line-height: 18px;
  }
}
header .headerTop p span {
  font-size: 16px;
  color: #b2b9c8;
}
@media screen and (max-width: 991px) {
  header .headerTop p span {
    font-size: 15px;
  }
}
header .headerTop p .bold {
  font-weight: 800;
}
header .headerTop .flags {
  margin-left: auto;
}
header .headerBottom {
  padding: 1.5rem 0;
  background-color: #fff;
}
header .logo {
  margin-bottom: -8rem;
  position: relative;
  z-index: 9;
}
header .logo img {
  width: 150px;
}
header .right {
  margin-left: auto;
}
header .right .burgerMenu {
  display: none;
}
@media screen and (max-width: 991px) {
  header .right .burgerMenu {
    display: inline-block;
    margin-left: 30px;
  }
}
@media screen and (max-width: 440px) {
  header .right .burgerMenu {
    margin-left: 3px;
  }
}
header .right .burgerMenu button {
  border: none;
  background-color: transparent;
  padding: 0;
}
header .right .burgerMenu button i {
  color: #208ebc;
  vertical-align: middle;
  font-size: 25px;
}
header .right .book, header .right .socialMedia {
  display: inline-block;
  margin-left: 20px;
}
@media screen and (max-width: 1199px) {
  header .right .book, header .right .socialMedia {
    margin-left: 10px;
  }
}
@media screen and (max-width: 403px) {
  header .right .book, header .right .socialMedia {
    display: none;
  }
}
@media screen and (max-width: 991px) {
  header .right .socialMedia {
    margin-left: 0;
  }
}
header .right .socialMedia p {
  line-height: normal;
}
header .right .socialMedia i {
  font-size: 18px;
  width: fit-content;
  vertical-align: middle;
}
header .right .socialMedia i:hover {
  color: #208ebc !important;
}
header .nav .menu-item-has-children > a::after {
  content: "\f078";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  margin-left: 5px;
}
header nav {
  display: inline-block !important;
}
@media screen and (max-width: 991px) {
  header nav {
    display: none !important;
  }
}
header nav ul {
  margin: 0;
  padding: 0;
}
header nav ul li {
  display: inline-block;
  margin-left: 25px;
  line-height: 50px;
}
@media screen and (max-width: 1199px) {
  header nav ul li {
    margin-left: 13px;
  }
}
header nav ul li:first-child {
  margin-left: 0;
}
header nav ul a {
  margin: 0;
  font-size: 17px;
  color: #162535;
  font-family: "Jost", sans-serif;
  font-weight: 500;
}
@media screen and (max-width: 1199px) {
  header nav ul a {
    font-size: 13px;
  }
}
header nav ul a:hover {
  color: #208ebc;
}
header nav ul .current-menu-item a {
  color: #208ebc;
}

footer {
  padding: 6rem 0 5rem 0;
}
@media screen and (max-width: 1399px) {
  footer .container {
    max-width: 1175px;
  }
}
@media screen and (max-width: 1199px) {
  footer .container {
    max-width: 960px;
  }
}
@media screen and (max-width: 991px) {
  footer {
    text-align: center;
  }
}
footer .footerLogo img {
  width: 150px;
}
footer .width {
  width: 90%;
}
@media screen and (max-width: 991px) {
  footer .width {
    width: 100%;
  }
}
footer a:hover {
  color: #28b2ec;
}
footer h4, footer p, footer a {
  color: #fff;
}
@media screen and (max-width: 991px) {
  footer nav {
    display: block !important;
  }
}
footer nav ul {
  margin: 0;
  padding: 0;
}
@media screen and (max-width: 991px) {
  footer nav ul {
    display: block !important;
  }
}
footer nav ul li {
  margin-bottom: 1.5rem;
  list-style: none;
}
footer nav ul li:last-child {
  margin-bottom: 0;
}
footer nav ul li a {
  margin: 0;
  font-size: 17px;
  color: #fff;
  font-family: "Jost", sans-serif;
  font-weight: 500;
}
footer nav ul li a:hover {
  color: #28b2ec;
}
footer nav ul .current-menu-item a {
  color: #28b2ec;
}
footer .socialmedia a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  /* Circle width */
  height: 40px;
  /* Circle height */
  border-radius: 50%;
  /* Makes it a circle */
  background: linear-gradient(to right, #28b2ec, #208ebc);
  color: #fff;
  /* Icon color */
  text-decoration: none;
  font-size: 18px;
  /* Icon size */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  margin-right: 7px;
  /* Space between icons */
}
footer .socialmedia a:hover {
  transform: scale(1.1);
  /* Slight zoom on hover */
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}
footer .bottom {
  border-top: 1px solid #223041;
  padding-top: 4rem;
  margin-top: 5rem;
}
footer .bottom .right {
  margin-left: auto;
}
footer .bottom .copyText p {
  font-size: 14px;
  line-height: 17px;
  color: #fff;
}

body {
  font-family: "Jost", sans-serif;
  font-size: 17px;
  line-height: 24px;
  color: #000;
  letter-spacing: 0.5px;
  font-weight: 400;
}
@media screen and (max-width: 450px) {
  body {
    font-size: 15px;
    line-height: 22px;
  }
}

p,
a {
  font-family: inherit;
  line-height: inherit;
}

a {
  color: #000;
  text-decoration: none;
  transition: color ease 0.3s;
}
a:hover {
  color: #1297cf;
}

b,
strong {
  font-weight: 700;
}

h1,
.h1 {
  font-family: "Jost", sans-serif;
  font-weight: 600;
  font-size: 53px;
  line-height: 58px;
  color: #162535;
  letter-spacing: 0;
}
@media screen and (max-width: 450px) {
  h1,
.h1 {
    font-size: 43px;
    line-height: 48px;
  }
}

h2,
.h2 {
  font-family: "Jost", sans-serif;
  font-weight: 600;
  font-size: 40px;
  line-height: 45px;
  color: #162535;
  letter-spacing: 0;
}
@media screen and (max-width: 450px) {
  h2,
.h2 {
    font-size: 30px;
    line-height: 35px;
  }
}

h3,
.h3 {
  font-family: "Jost", sans-serif;
  font-weight: 600;
  font-size: 35px;
  line-height: 40px;
  color: #162535;
  letter-spacing: 0;
}
@media screen and (max-width: 450px) {
  h3,
.h3 {
    font-size: 28px;
    line-height: 32px;
  }
}

h4,
.h4 {
  font-family: "Jost", sans-serif;
  font-weight: 600;
  font-size: 28px;
  line-height: 32px;
  color: #162535;
  letter-spacing: 0;
}
@media screen and (max-width: 450px) {
  h4,
.h4 {
    font-size: 25px;
    line-height: 30px;
  }
}

h5,
.h5 {
  font-family: "Jost", sans-serif;
  font-weight: 600;
  font-size: 25px;
  line-height: 30px;
  color: #162535;
  letter-spacing: 0;
}
@media screen and (max-width: 450px) {
  h5,
.h5 {
    font-size: 20px;
    line-height: 25px;
  }
}

h6,
.h6 {
  font-family: "Jost", sans-serif;
  font-weight: 600;
  font-size: 20px;
  line-height: 25px;
  color: #162535;
  letter-spacing: 0;
}
@media screen and (max-width: 450px) {
  h6,
.h6 {
    font-size: 17px;
    line-height: 22px;
  }
}

p {
  font-family: "Jost", sans-serif;
  font-size: 17px;
  line-height: 24px;
  color: #000;
  letter-spacing: 0.5px;
  font-weight: 400;
}
@media screen and (max-width: 450px) {
  p {
    font-size: 15px;
    line-height: 22px;
  }
}

#generic-content,
.normalise {
  overflow-x: hidden;
}
#generic-content h1,
#generic-content h2,
#generic-content h3,
#generic-content h4,
#generic-content h5,
#generic-content h6,
.normalise h1,
.normalise h2,
.normalise h3,
.normalise h4,
.normalise h5,
.normalise h6 {
  font-size: calc(1.275rem + 0.3vw);
  line-height: calc(1.275rem + 0.3vw);
  color: #28b2ec;
  margin-bottom: 1rem;
  margin-top: 2rem;
  font-weight: 500;
}
@media (min-width: 1200px) {
  #generic-content h1,
#generic-content h2,
#generic-content h3,
#generic-content h4,
#generic-content h5,
#generic-content h6,
.normalise h1,
.normalise h2,
.normalise h3,
.normalise h4,
.normalise h5,
.normalise h6 {
    font-size: 1.5rem;
  }
}
@media (min-width: 1200px) {
  #generic-content h1,
#generic-content h2,
#generic-content h3,
#generic-content h4,
#generic-content h5,
#generic-content h6,
.normalise h1,
.normalise h2,
.normalise h3,
.normalise h4,
.normalise h5,
.normalise h6 {
    line-height: 1.5rem;
  }
}
#generic-content p,
.normalise p {
  text-overflow: ellipsis;
  overflow: hidden;
}
#generic-content table,
.normalise table {
  width: 100%;
}
#generic-content table tbody,
#generic-content table td,
#generic-content table tfoot,
#generic-content table th,
#generic-content table thead,
#generic-content table tr,
.normalise table tbody,
.normalise table td,
.normalise table tfoot,
.normalise table th,
.normalise table thead,
.normalise table tr {
  border: 1px solid #d2d4d4;
  padding: 0.5rem 0.5rem;
}
#generic-content ul li,
.normalise ul li {
  margin-bottom: 0.5rem;
}
#generic-content blockquote,
.normalise blockquote {
  background: #d2d4d4;
  padding: 1rem 2rem;
  font-style: italic;
  border-left: 3px solid #28b2ec;
  font-size: 1rem;
  line-height: 1rem;
}
#generic-content *:last-child,
.normalise *:last-child {
  margin-bottom: 0;
}
@media screen and (max-width: 768px) {
  #generic-content iframe,
.normalise iframe {
    width: calc(100vw - 60px);
  }
}

.font-weight-thin {
  font-weight: 100 !important;
}

.font-weight-extra-light {
  font-weight: 200 !important;
}

.font-weight-light {
  font-weight: 300 !important;
}

.font-weight-regular {
  font-weight: 400 !important;
}

.font-weight-medium {
  font-weight: 500 !important;
}

.font-weight-semi-bold {
  font-weight: 600 !important;
}

.font-weight-bold {
  font-weight: 700 !important;
}

.font-weight-extra-bold {
  font-weight: 800 !important;
}

.font-weight-black {
  font-weight: 900 !important;
}

.footerBottom {
  position: fixed;
  bottom: 0%;
  right: 2%;
  width: fit-content;
  z-index: 99;
}
.footerBottom .btn {
  border-radius: 10px 10px 0 0;
  padding: 16px 20px 11px 20px;
  font-size: 15px;
  line-height: 14px;
}

.page-hero-wrapper {
  position: relative;
}

.page-hero-wrapper::after {
  content: "";
  position: absolute;
  top: 290px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 520px;
  background: url(/wp-content/uploads/2026/04/banner-bg-img.png) no-repeat center;
  background-size: cover;
  z-index: 1;
  pointer-events: none;
  opacity: 0.9;
}
@media screen and (max-width: 991px) {
  .page-hero-wrapper::after {
    display: none;
  }
}

.page-hero-wrapper :is(h1, h2, h3, h4, h5, h6, p, ul li, .text, .box, .img-fluid, .newsArticlePost, iframe, .dates) {
  position: relative;
  z-index: 2;
}

.grecaptcha-badge {
  visibility: hidden !important;
}

.page-id-23 .grecaptcha-badge {
  visibility: visible !important;
  bottom: 100px !important;
}

#singleBlog #subBanner img {
  aspect-ratio: 16/6;
  object-fit: cover;
}

@media screen and (min-width: 1500px) {
  .container {
    width: 100%;
    max-width: 1440px !important;
    margin: 0 auto;
  }

  .bgBannerImg {
    top: 12.2% !important;
  }

  .page-hero-wrapper::after {
    top: 394px;
    height: 725px;
  }
}
body {
  background-color: #f7f3f2;
}

.bgBannerImg {
  position: absolute;
  top: 11%;
  left: 0;
  width: 100%;
  background: url(/wp-content/uploads/2026/03/banner-bg-img-1.png) no-repeat;
  background-size: cover;
  height: 530px;
  overflow: hidden;
  opacity: 1;
  z-index: 1;
}
@media screen and (max-width: 1299px) {
  .bgBannerImg {
    top: 9%;
  }
}
@media screen and (max-width: 1199px) {
  .bgBannerImg {
    top: 8%;
  }
}
@media screen and (max-width: 991px) {
  .bgBannerImg {
    display: none;
  }
}

section {
  position: relative;
  overflow: hidden;
}
section#banner {
  position: relative;
}
@media screen and (max-width: 991px) {
  section#banner img {
    aspect-ratio: 16/14;
    object-fit: cover;
  }
}
@media screen and (max-width: 767px) {
  section#banner img {
    aspect-ratio: 16/19;
    object-fit: cover;
  }
}
@media screen and (max-width: 575px) {
  section#banner img {
    aspect-ratio: 16/24;
    object-fit: cover;
  }
}
@media screen and (max-width: 460px) {
  section#banner img {
    aspect-ratio: 16/27;
    object-fit: cover;
  }
}
@media screen and (max-width: 345px) {
  section#banner img {
    aspect-ratio: 16/30;
    object-fit: cover;
  }
}
section#banner .after {
  position: absolute;
  bottom: 0%;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
}
section#banner .bannerText {
  position: absolute;
  top: 20%;
  left: 0;
  width: 100%;
  text-align: center;
}
@media screen and (max-width: 991px) {
  section#banner .bannerText {
    top: 8%;
  }
}
@media screen and (max-width: 767px) {
  section#banner .bannerText {
    top: 5%;
  }
}
section#banner .bannerText .text h1, section#banner .bannerText .text p, section#banner .bannerText .text h5 {
  color: #fff;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.7);
}
section#banner .bannerText .text h1 {
  margin-bottom: 1.5rem;
}
section#banner .bannerText .text h5 {
  width: 70%;
  margin: 0 auto;
  margin-bottom: 1.5rem;
  font-weight: 400;
}
@media screen and (max-width: 991px) {
  section#banner .bannerText .text h5 {
    width: 100%;
  }
}
section#banner .bannerText .text p {
  width: 55%;
  margin: 0 auto;
}
@media screen and (max-width: 991px) {
  section#banner .bannerText .text p {
    width: 100%;
  }
}
section#banner .bannerText .bannerButtons {
  width: 32%;
  margin: 0 auto;
}
@media screen and (max-width: 1399px) {
  section#banner .bannerText .bannerButtons {
    width: 40%;
  }
}
@media screen and (max-width: 1199px) {
  section#banner .bannerText .bannerButtons {
    width: 55%;
  }
}
@media screen and (max-width: 991px) {
  section#banner .bannerText .bannerButtons {
    width: 70%;
  }
}
@media screen and (max-width: 767px) {
  section#banner .bannerText .bannerButtons {
    width: 100%;
  }
}
@media screen and (max-width: 460px) {
  section#banner .bannerText .bannerButtons .mobButton {
    display: none;
  }
}
section#banner .bannerText .bannerButtons .btn {
  display: block;
  padding: 18px 5px 16px 5px;
}
section#banner .accreds {
  position: absolute;
  bottom: 5%;
  left: 0;
  width: 100%;
  z-index: 9;
}
@media screen and (max-width: 460px) {
  section#banner .accreds {
    bottom: 3%;
  }
}
@media screen and (max-width: 330px) {
  section#banner .accreds {
    display: none;
  }
}
section#banner .accreds .box {
  padding: 2.5rem 0;
  border-radius: 20px;
  box-shadow: 0 8px 12px -6px rgba(0, 0, 0, 0.25);
}
section#banner .accreds p {
  font-size: 18px;
  line-height: 23px;
}
section#banner .accreds p .last {
  margin-right: 0;
}
@media screen and (max-width: 1399px) {
  section#banner .accreds p {
    font-size: 16px;
    line-height: 21px;
  }
}
@media screen and (max-width: 1199px) {
  section#banner .accreds p {
    font-size: 15px;
    line-height: 20px;
  }
}
section#banner .accreds p span {
  margin-right: 60px;
}
@media screen and (max-width: 1399px) {
  section#banner .accreds p span {
    margin-right: 30px;
  }
}
@media screen and (max-width: 1199px) {
  section#banner .accreds p span {
    margin-right: 15px;
  }
}
@media screen and (max-width: 991px) {
  section#banner .accreds p span {
    margin-right: 0px;
    display: block;
    margin-bottom: 1rem;
  }
  section#banner .accreds p span:last-child {
    margin-bottom: 0;
  }
}
section#banner .accreds p span i {
  font-size: 22px;
  vertical-align: middle;
}
section#reviews {
  padding: 8rem 0;
}
@media screen and (max-width: 991px) {
  section#reviews {
    padding: 4rem 0;
  }
}
section#reviews .heading {
  position: relative;
  z-index: 9;
}
section#reviews .heading p {
  width: 45%;
  margin: 0 auto;
}
@media screen and (max-width: 991px) {
  section#reviews .heading p {
    width: 100%;
  }
}
section#reviews .googleReviews {
  position: relative;
  z-index: 9;
}
section#homeServices {
  padding: 8rem 0 5rem 0;
}
@media screen and (max-width: 991px) {
  section#homeServices {
    padding: 4rem 0 2rem 0;
  }
}
section#homeServices .raduis {
  border-radius: 13px;
  box-shadow: 0 8px 12px -6px rgba(0, 0, 0, 0.25);
  display: flex;
  flex-direction: column;
  height: 100%;
}
section#homeServices .raduis img {
  border-radius: 13px 13px 0 0;
}
section#homeServices .raduis .box {
  padding: 3rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
section#homeSecondSection {
  padding: 8rem 0;
}
@media screen and (max-width: 991px) {
  section#homeSecondSection {
    padding: 4rem 0;
  }
}
section#homeSecondSection iframe {
  border-radius: 13px;
}
section#whySection {
  padding: 8rem 0;
}
@media screen and (max-width: 991px) {
  section#whySection {
    padding: 4rem 0;
  }
}
section#whySection .Buttons {
  width: 60%;
}
@media screen and (max-width: 1399px) {
  section#whySection .Buttons {
    width: 100%;
  }
}
section#whySection .Buttons .btn {
  width: 100%;
}
section#whySection .box {
  border-radius: 13px;
  box-shadow: 0 8px 12px -6px rgba(0, 0, 0, 0.25);
  padding: 4rem;
}
@media screen and (max-width: 1399px) {
  section#whySection .box {
    padding: 2rem;
  }
}
section#whySection .box .stars {
  margin-bottom: 2rem;
}
section#whySection .box .stars i {
  color: #f5bd46;
  font-size: 25px;
  margin-right: 6px;
}
section#whySection .box .testimonial p {
  font-size: 20px;
  line-height: 30px;
  font-style: italic;
}
@media screen and (max-width: 500px) {
  section#whySection .box .testimonial p {
    font-size: 17px;
    line-height: 25px;
  }
}
section#whySection .box h6 {
  margin-top: 2.5rem;
  color: #28b2ec;
}
section#reasonsSection {
  padding: 0;
}
section#reasonsSection .heading p {
  width: 65%;
  margin: 0 auto;
  margin-bottom: 0 !important;
}
@media screen and (max-width: 991px) {
  section#reasonsSection .heading p {
    width: 100%;
  }
}
section#reasonsSection .col-lg-3 {
  display: flex;
}
section#reasonsSection .box {
  border-radius: 13px;
  box-shadow: 0 8px 12px -6px rgba(0, 0, 0, 0.25);
  padding: 3.5rem;
  display: flex;
  flex-direction: column;
  width: 100%;
}
@media screen and (max-width: 991px) {
  section#reasonsSection .box {
    padding: 2rem;
  }
}
section#reasonsSection .box p {
  margin-bottom: 0 !important;
}
section#locationsHome {
  padding: 8rem 0;
}
@media screen and (max-width: 991px) {
  section#locationsHome {
    padding: 4rem 0 0rem 0;
  }
}
section#locationsHome .box {
  border-radius: 13px;
  box-shadow: 0 8px 12px -6px rgba(0, 0, 0, 0.25);
  padding: 3.5rem;
}
@media screen and (max-width: 991px) {
  section#locationsHome .box {
    padding: 1.5rem;
  }
}
section#schoolLogos {
  position: relative;
  padding: 11rem 0;
  bottom: 0%;
  left: 0;
  width: 100%;
  overflow: hidden;
  margin-top: -8rem;
}
@media screen and (max-width: 991px) {
  section#schoolLogos {
    padding: 4rem 0;
    margin-top: 0rem;
  }
}
section#schoolLogos .heading p {
  width: 45%;
  margin: 0 auto;
}
@media screen and (max-width: 991px) {
  section#schoolLogos .heading p {
    width: 100%;
  }
}
section#schoolLogos .container {
  position: relative;
  margin-bottom: -5rem;
}
@media screen and (max-width: 991px) {
  section#schoolLogos .container {
    margin-bottom: 0;
  }
}
section#schoolLogos::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url(/wp-content/uploads/2026/03/banner-bg-img-1.png) no-repeat;
  background-size: cover;
  opacity: 0.9;
  z-index: 0;
}
@media screen and (max-width: 600px) {
  section#schoolLogos::before {
    display: none;
  }
}
section#newsletterSection {
  padding: 5rem 0;
  background: linear-gradient(to right, #28b2ec, #208ebc);
}
@media screen and (max-width: 991px) {
  section#newsletterSection {
    padding: 4rem 0;
  }
}
section#newsletterSection .heading p {
  width: 55%;
  margin: 0 auto;
}
@media screen and (max-width: 991px) {
  section#newsletterSection .heading p {
    width: 100%;
  }
}
section#newsletterSection .formFooter {
  width: 40%;
  margin: 0 auto;
  display: block;
}
@media screen and (max-width: 1399px) {
  section#newsletterSection .formFooter {
    width: 60%;
  }
}
@media screen and (max-width: 991px) {
  section#newsletterSection .formFooter {
    width: 100%;
  }
}
section#subBanner {
  position: relative;
}
section#subBanner .after {
  position: absolute;
  bottom: 0%;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
}
@media screen and (max-width: 767px) {
  section#subBanner img {
    aspect-ratio: 16/14;
    object-fit: cover;
  }
}
@media screen and (max-width: 550px) {
  section#subBanner img {
    aspect-ratio: 16/17;
    object-fit: cover;
  }
}
@media screen and (max-width: 380px) {
  section#subBanner img {
    aspect-ratio: 16/21;
    object-fit: cover;
  }
}
section#subBanner .bannerText {
  position: absolute;
  top: 25%;
  left: 0;
  width: 100%;
  text-align: center;
}
@media screen and (max-width: 991px) {
  section#subBanner .bannerText {
    top: 20%;
  }
}
@media screen and (max-width: 767px) {
  section#subBanner .bannerText {
    top: 10%;
  }
}
@media screen and (max-width: 550px) {
  section#subBanner .bannerText {
    top: 5%;
  }
}
section#subBanner .bannerText h1 {
  width: 60%;
  margin: 0 auto;
  display: block;
}
@media screen and (max-width: 991px) {
  section#subBanner .bannerText h1 {
    width: 100%;
  }
}
section#subBanner .bannerText .text {
  width: 50%;
  margin: 0 auto;
  display: block;
}
@media screen and (max-width: 991px) {
  section#subBanner .bannerText .text {
    width: 100%;
  }
}
section#subBanner .bannerText .text h1 {
  margin-bottom: 1rem;
  color: #fff;
}
section#subBanner .bannerText .text p {
  color: #fff;
  margin: 0;
}
section#holidayWhy {
  padding: 8rem 0 6rem 0;
}
@media screen and (max-width: 991px) {
  section#holidayWhy {
    padding: 4rem 0 2rem 0;
  }
}
section#holidayWhy .why .col-lg-4.col-md-6 {
  display: flex;
}
section#holidayWhy .why .box {
  border-radius: 13px;
  box-shadow: 0 8px 12px -6px rgba(0, 0, 0, 0.25);
  padding: 3.5rem;
  display: flex;
  flex-direction: column;
  width: 100%;
}
section#holidayWhy .why .box p {
  margin: 0;
}
@media screen and (max-width: 991px) {
  section#holidayWhy .why .box {
    padding: 1.5rem;
  }
}
section#holidayTypical {
  padding: 8rem 0;
}
@media screen and (max-width: 991px) {
  section#holidayTypical {
    padding: 4rem 0;
  }
}
section#holidayTypical img {
  border-radius: 20px;
}
section#holidayDatesPricing {
  padding: 8rem 0;
}
@media screen and (max-width: 991px) {
  section#holidayDatesPricing {
    padding: 4rem 0 1rem 0;
  }
}
section#holidayDatesPricing .heading p {
  width: 45%;
  margin: 0 auto;
}
@media screen and (max-width: 991px) {
  section#holidayDatesPricing .heading p {
    width: 100%;
  }
}
section#holidayDatesPricing .dates .col-lg-6 {
  display: flex;
  flex-direction: column;
}
section#holidayDatesPricing .dates .terms {
  flex: 1;
  display: flex;
  align-items: center;
}
section#holidayDatesPricing .dates h4 {
  background-color: #28b2ec;
  padding: 2rem 2.5rem 1.5rem 2.5rem;
  border-radius: 10px 10px 0 0;
  color: #fff;
}
section#holidayDatesPricing .dates .box {
  border-radius: 13px;
  box-shadow: 0 8px 12px -6px rgba(0, 0, 0, 0.25);
  padding: 3.5rem;
}
section#holidayDatesPricing .dates .terms {
  padding: 1.5rem 2.5rem;
  background-color: #dae4f0;
  border-bottom: 1px solid #fff;
}
section#holidayDatesPricing .dates .terms b, section#holidayDatesPricing .dates .terms strong {
  font-weight: 900;
}
section#holidayDatesPricing .dates .terms .right {
  margin-left: auto;
}
section#holidayDatesPricing .dates .terms:last-child {
  border-radius: 0px 0px 10px 10px;
  border-bottom: none;
}
section#faqsSection {
  padding: 8rem 0;
}
@media screen and (max-width: 991px) {
  section#faqsSection {
    padding: 4rem 0;
  }
}
section#faqsSection .faqs .faq {
  background-color: #208ebc;
  padding: 2rem 3rem;
  border-bottom: 1px solid #dae4f0;
  cursor: pointer;
}
@media screen and (max-width: 1199px) {
  section#faqsSection .faqs .faq h6 {
    font-size: 17px;
    line-height: 22px;
  }
}
@media screen and (max-width: 991px) {
  section#faqsSection .faqs .faq {
    padding: 1rem;
  }
}
section#faqsSection .faqs .faq .right {
  margin-left: auto;
  padding-left: 15px;
}
section#faqsSection .faqs .faq:first-child {
  border-radius: 20px 20px 0 0;
}
@media screen and (max-width: 767px) {
  section#faqsSection .faqs .faq:first-child {
    border-radius: 10px 10px 0 0;
  }
}
section#faqsSection .faqs .faq:last-child {
  border-radius: 0 0 20px 20px;
}
@media screen and (max-width: 767px) {
  section#faqsSection .faqs .faq:last-child {
    border-radius: 0 0 10px 10px;
  }
}
section#faqsSection .faqs .faq h6, section#faqsSection .faqs .faq p, section#faqsSection .faqs .faq a, section#faqsSection .faqs .faq ul li {
  color: #fff;
}
section#aboutHaf {
  padding: 8rem 0;
}
@media screen and (max-width: 991px) {
  section#aboutHaf {
    padding: 4rem 0;
  }
}
section#aboutHaf img {
  border-radius: 13px;
}
section#aboutHaf ul {
  margin: 0;
  padding: 0;
  padding-left: 17px;
  margin-bottom: 1.5rem;
}
section#aboutHaf ul li {
  list-style-position: outside;
  margin-bottom: 0.5rem;
}
section#hafProgamme {
  padding: 8rem 0;
}
@media screen and (max-width: 991px) {
  section#hafProgamme {
    padding: 4rem 0;
  }
}
section#hafProgamme .heading p {
  width: 48%;
  margin: 0 auto;
}
@media screen and (max-width: 991px) {
  section#hafProgamme .heading p {
    width: 100%;
  }
}
section#hafProgamme .progamme .btn {
  width: 100%;
  display: block;
  padding: 15px 5px 13px 5px;
}
section#hafProgamme .progamme .box {
  padding: 3rem;
  border-radius: 13px;
  box-shadow: 0 8px 12px -6px rgba(0, 0, 0, 0.25);
}
@media screen and (max-width: 991px) {
  section#hafProgamme .progamme .box {
    padding: 1.5rem;
  }
}
section#eatingResources {
  padding: 8rem 0;
}
@media screen and (max-width: 991px) {
  section#eatingResources {
    padding: 4rem 0;
  }
}
section#eatingResources .heading p {
  width: 40%;
  margin: 0 auto;
}
@media screen and (max-width: 991px) {
  section#eatingResources .heading p {
    width: 100%;
  }
}
section#eatingResources .companies img {
  width: 50%;
  margin: 0 auto;
  display: block;
}
section#mealsSection {
  padding: 8rem 0 6rem 0;
}
@media screen and (max-width: 991px) {
  section#mealsSection {
    padding: 4rem 0 2rem 0;
  }
}
section#mealsSection .heading p {
  width: 40%;
  margin: 0 auto;
}
@media screen and (max-width: 991px) {
  section#mealsSection .heading p {
    width: 100%;
  }
}
section#mealsSection .meals img {
  border-radius: 13px 13px 0 0;
  aspect-ratio: 16/10;
  object-fit: cover;
}
section#mealsSection .meals .box {
  padding: 3rem;
  border-radius: 0 0 13px 13px;
  box-shadow: 0 8px 12px -6px rgba(0, 0, 0, 0.25);
}
@media screen and (max-width: 991px) {
  section#mealsSection .meals .box {
    padding: 1.5rem;
  }
}
section#gamesSection {
  padding: 8rem 0;
}
@media screen and (max-width: 991px) {
  section#gamesSection {
    padding: 4rem 0;
  }
}
section#gamesSection .heading p {
  width: 40%;
  margin: 0 auto;
}
@media screen and (max-width: 991px) {
  section#gamesSection .heading p {
    width: 100%;
  }
}
section#gamesSection .games img {
  width: 90%;
  margin: 0 auto;
  display: block;
}
section#adviceSectionHaf {
  padding: 8rem 0;
}
@media screen and (max-width: 991px) {
  section#adviceSectionHaf {
    padding: 4rem 0;
  }
}
section#adviceSectionHaf h3 {
  margin-bottom: 2rem;
}
section#adviceSectionHaf .bexleyLogo img {
  width: 40%;
}
@media screen and (max-width: 550px) {
  section#adviceSectionHaf .bexleyLogo img {
    width: 55%;
  }
}
section#ourSchoolClubs {
  padding: 8rem 0;
}
@media screen and (max-width: 991px) {
  section#ourSchoolClubs {
    padding: 4rem 0;
  }
}
section#ourSchoolClubs .heading {
  margin-bottom: 6rem;
}
section#ourSchoolClubs .heading p {
  width: 50%;
  margin: 0 auto;
}
@media screen and (max-width: 991px) {
  section#ourSchoolClubs .heading p {
    width: 100%;
  }
}
section#ourSchoolClubs .ourClubs .row {
  align-items: stretch !important;
}
section#ourSchoolClubs .ourClubs .col-lg-4 {
  display: flex;
}
section#ourSchoolClubs .ourClubs .col-lg-4 img {
  height: 100%;
  object-fit: cover;
}
section#ourSchoolClubs .ourClubs .col-lg-8 {
  display: flex;
  align-items: center;
}
section#ourSchoolClubs .ourClubs .padding {
  width: 100%;
}
section#ourSchoolClubs .ourClubs img {
  border-radius: 13px 0 0 13px;
}
section#ourSchoolClubs .ourClubs .box {
  margin-bottom: 5rem;
}
section#ourSchoolClubs .ourClubs .box:last-child {
  margin-bottom: 0;
}
section#ourSchoolClubs .ourClubs .box .bg-grey {
  background-color: #f7f3f2;
  border-radius: 0 13px 13px 0;
}
section#ourSchoolClubs .ourClubs .box .padding {
  padding: 3rem 5rem;
}
section#ourSchoolClubs .ourClubs .box .padding p:last-child {
  margin-bottom: 0;
}
section#forSchools {
  padding: 8rem 0;
}
@media screen and (max-width: 991px) {
  section#forSchools {
    padding: 4rem 0;
  }
}
section#forSchools .box {
  padding: 3rem;
  border-radius: 13px;
  box-shadow: 0 8px 12px -6px rgba(0, 0, 0, 0.25);
}
@media screen and (max-width: 991px) {
  section#forSchools .box {
    padding: 1.5rem;
  }
}
section#forSchools ul {
  margin: 0;
  padding: 0;
  padding-left: 17px;
}
section#forSchools ul li {
  list-style-position: outside;
  margin-bottom: 0.5rem;
}
section#otherServices {
  padding: 8rem 0;
}
@media screen and (max-width: 991px) {
  section#otherServices {
    padding: 4rem 0;
  }
}
section#otherServices h2 {
  margin-top: 4rem;
}
section#otherServices h2:first-child {
  margin-top: 0;
}
section#birthdayPackage, section#developmentOne, section#tenWeekDevelopment, section#trackingFootball, section#footballLocation, section#sportExplore, section#buildingSkills, section#newVenues {
  padding: 8rem 0;
}
@media screen and (max-width: 991px) {
  section#birthdayPackage, section#developmentOne, section#tenWeekDevelopment, section#trackingFootball, section#footballLocation, section#sportExplore, section#buildingSkills, section#newVenues {
    padding: 4rem 0;
  }
}
section#newVenues h2 {
  margin-top: 5rem;
}
section#newVenues h2:first-child {
  margin-top: 0;
}
section#newVenues .box {
  padding: 3rem;
  border-radius: 13px;
  box-shadow: 0 8px 12px -6px rgba(0, 0, 0, 0.25);
}
@media screen and (max-width: 991px) {
  section#newVenues .box {
    padding: 1.5rem;
  }
}
section#developmentOne h3 {
  margin-bottom: 2rem;
}
section#developmentOne img {
  border-radius: 13px;
}
section#tenWeekDevelopment .heading p {
  width: 45%;
  margin: 0 auto;
}
@media screen and (max-width: 991px) {
  section#tenWeekDevelopment .heading p {
    width: 100%;
  }
}
section#tenWeekDevelopment .serviceSection .col {
  display: flex;
}
section#tenWeekDevelopment .serviceSection .box {
  display: flex;
  flex-direction: column;
  height: 100%;
  width: 100%;
}
section#tenWeekDevelopment .box {
  border-radius: 13px;
  box-shadow: 0 8px 12px -6px rgba(0, 0, 0, 0.25);
  padding: 3.5rem;
}
section#tenWeekDevelopment .box p {
  margin: 0 !important;
}
section#trackingFootball .heading p {
  width: 45%;
  margin: 0 auto;
  margin-bottom: 1rem;
}
@media screen and (max-width: 991px) {
  section#trackingFootball .heading p {
    width: 100%;
  }
}
section#trackingFootball .table table {
  width: 100%;
}
section#trackingFootball .table table thead tr th {
  background-color: #28b2ec;
  color: #fff;
  padding: 1.5rem 2rem;
  text-align: left;
  font-size: 20px;
  line-height: 25px;
  font-family: "Jost", sans-serif;
  font-weight: 400;
  border-right: 1px solid #cccccc;
}
section#trackingFootball .table table thead tr th:first-child {
  border-radius: 10px 0 0 0;
}
section#trackingFootball .table table thead tr th:last-child {
  border-radius: 0 10px 0 0;
  border-right: none;
}
section#trackingFootball .table table tbody tr:last-child {
  border-bottom: none !important;
}
section#trackingFootball .table table tbody tr:last-child td {
  border-bottom: none !important;
}
section#trackingFootball .table table tbody tr td {
  color: #162535;
  padding: 1.5rem 2rem;
  text-align: left;
  font-size: 15px;
  line-height: 20px;
  font-family: "Jost", sans-serif;
  font-weight: 400;
  border: 1px solid #cccccc;
  border-left: none;
  background-color: #dae4f0;
}
section#trackingFootball .table table tbody tr td:last-child {
  border-right: none;
}
section#footballLocation .box {
  border-radius: 13px;
  box-shadow: 0 8px 12px -6px rgba(0, 0, 0, 0.25);
  padding: 3.5rem;
}
section#footballLocation iframe {
  border-radius: 13px;
}
section#sportExplore img {
  border-radius: 13px;
}
section#tutorSectionOne {
  padding: 8rem 0;
}
@media screen and (max-width: 991px) {
  section#tutorSectionOne {
    padding: 4rem 0;
  }
}
section#tutorSectionOne h4 {
  margin-top: 3rem;
  margin-bottom: 1rem;
}
section#tutorSectionOne ul {
  margin: 0;
  padding: 0;
  padding-left: 17px;
  margin-bottom: 1.5rem;
}
section#tutorSectionOne ul li {
  list-style-position: outside;
  margin-bottom: 0.5rem;
}
section#tutorSectionOne img {
  border-radius: 13px;
}
section#currentlocation {
  padding: 8rem 0;
}
@media screen and (max-width: 991px) {
  section#currentlocation {
    padding: 4rem 0;
  }
}
section#currentlocation .box {
  border-radius: 13px;
  box-shadow: 0 8px 12px -6px rgba(0, 0, 0, 0.25);
  padding: 4rem;
}
@media screen and (max-width: 991px) {
  section#currentlocation .box {
    padding: 2rem;
  }
}
section#currentlocation .box img {
  width: 70%;
  margin: 0 auto;
  display: block;
}
section#currentlocation .box .text p {
  color: #fff;
  text-align: center;
}
section#aboutSection {
  padding: 8rem 0;
}
@media screen and (max-width: 991px) {
  section#aboutSection {
    padding: 4rem 0;
  }
}
section#aboutSection img {
  border-radius: 13px;
}
section#teamSection {
  padding: 8rem 0 3rem 0;
}
@media screen and (max-width: 991px) {
  section#teamSection {
    padding: 4rem 0 2rem 0;
  }
}
section#teamSection img {
  border-radius: 100%;
  border: 7px solid #28b2ec;
}
section#teamSection .heading p {
  width: 45%;
  margin: 0 auto;
  margin-bottom: 1rem;
}
@media screen and (max-width: 991px) {
  section#teamSection .heading p {
    width: 100%;
  }
}
section#blogs {
  padding: 8rem 0 6rem 0;
}
@media screen and (max-width: 991px) {
  section#blogs {
    padding: 4rem 0 3rem 0;
  }
}
section#blogs img {
  border-radius: 13px 13px 0 0;
  aspect-ratio: 12/7;
  object-fit: cover;
  border: 3px solid #dae4f0;
}
section#blogs .newsArticlePost {
  display: flex;
  flex-direction: column;
}
section#blogs .newsArticlePost .box {
  display: flex;
  flex-direction: column;
  flex: 1;
  /* makes all boxes equal height */
}
section#blogs .newsArticlePost .entry-content {
  flex-grow: 1;
  /* pushes button to bottom */
}
section#blogs .box {
  border-radius: 0 0 13px 13px;
  box-shadow: 0 8px 12px -6px rgba(0, 0, 0, 0.25);
  padding: 2.5rem;
}
section#singleBlog {
  padding: 8rem 0;
}
@media screen and (max-width: 991px) {
  section#singleBlog {
    padding: 4rem 0;
  }
}
section#singleBlog .content img {
  border-radius: 13px;
  width: 100%;
  margin-bottom: 3rem;
}
section#singleBlog .content h2 {
  font-size: 30px;
  line-height: 35px;
  margin-top: 4rem;
  margin-bottom: 1.5rem;
}
section#singleBlog .content h2:first-child {
  margin-top: 0;
}
section#singleBlog .content ul {
  margin: 0;
  padding: 0;
  padding-left: 17px;
  margin-bottom: 1.5rem;
}
section#singleBlog .content ul li {
  list-style-position: outside;
  margin-bottom: 0.5rem;
}
section#singleBlog .booking {
  border-radius: 13px;
  box-shadow: 0 8px 12px -6px rgba(0, 0, 0, 0.25);
  padding: 3rem;
}
@media screen and (max-width: 991px) {
  section#singleBlog .booking {
    padding: 1.5rem;
  }
}
section#singleBlog .recentBlogs img {
  border-radius: 13px 13px 0 0;
  aspect-ratio: 12/7;
  object-fit: cover;
  border: 3px solid #dae4f0;
}
section#singleBlog .recentBlogs .box {
  border-radius: 0 0 13px 13px;
  box-shadow: 0 8px 12px -6px rgba(0, 0, 0, 0.25);
  padding: 2.5rem;
}
section#contact {
  padding: 8rem 0;
}
@media screen and (max-width: 991px) {
  section#contact {
    padding: 4rem 0;
  }
}
section#contact .socialmedia i {
  font-size: 18px;
}
section#contact .box {
  border-radius: 13px;
  box-shadow: 0 8px 12px -6px rgba(0, 0, 0, 0.25);
  padding: 2.5rem;
}
section#contact .box .text p {
  color: #fff;
}
section#subBannerTerms {
  position: relative;
}
section#subBannerTerms .after {
  position: absolute;
  bottom: 0%;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
}
section#subBannerTerms .bannerText {
  position: absolute;
  bottom: 10%;
  left: 0;
  width: 100%;
}
section#subBannerTerms .bannerText h1 {
  color: #fff;
}
section#areaSection {
  padding: 8rem 0;
}
@media screen and (max-width: 991px) {
  section#areaSection {
    padding: 4rem 0;
  }
}
section#termsSection {
  padding: 8rem 0;
}
@media screen and (max-width: 991px) {
  section#termsSection {
    padding: 4rem 0;
  }
}
section#termsSection h2 {
  font-size: 28px;
  line-height: 32px;
  margin-top: 4rem;
}
section#termsSection h2:first-child {
  margin-top: 0;
}
section#termsSection ul {
  margin: 0;
  padding: 0;
  padding-left: 17px;
  margin-bottom: 1.5rem;
}
section#termsSection ul li {
  list-style-position: outside;
  margin-bottom: 0.5rem;
}
section#thankyouSection {
  padding: 10rem 0;
}
section#thankyouSection h2 {
  font-size: 40px;
  line-height: 45px;
}
section#thankyouSection p {
  font-size: 18px;
  line-height: 26px;
}

.page-template-template-terms #schoolLogos, .page-template-template-area #schoolLogos {
  display: none;
}

.page-id-6 #schoolLogos {
  background-color: #f7f3f2 !important;
}

body.error404 {
  min-height: 800px;
  height: 100vh;
  background: url("/wp-content/html5blank-stable/img/404-bg.jpeg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position-x: center;
  background-position-y: center;
}
@media screen and (min-width: 992px) {
  body.error404 {
    background-position-x: right;
  }
}
body.error404 .error-404 {
  padding-top: 14rem;
}
body.error404 .error-404 h1 {
  font-size: calc(2.625rem + 16.5vw);
  line-height: calc(2.625rem + 16.5vw);
  font-weight: 900;
}
@media (min-width: 1200px) {
  body.error404 .error-404 h1 {
    font-size: 15rem;
  }
}
@media (min-width: 1200px) {
  body.error404 .error-404 h1 {
    line-height: 15rem;
  }
}

body {
  position: relative;
}
body.modal-open {
  overflow: hidden;
  padding-right: 0px;
}

@media (min-width: 1500px) {
  .container,
.container-sm,
.container-md,
.container-lg,
.container-xl,
.container-xxl {
    max-width: 1450px;
  }
}
@media (min-width: 1800px) {
  .container,
.container-sm,
.container-md,
.container-lg,
.container-xl,
.container-xxl {
    max-width: 1700px;
  }
}

ul {
  list-style-position: inside;
  padding-left: 0rem;
}

.noselect {
  -webkit-touch-callout: none;
  /* iOS Safari */
  -webkit-user-select: none;
  /* Safari */
  -khtml-user-select: none;
  /* Konqueror HTML */
  -moz-user-select: none;
  /* Old versions of Firefox */
  -ms-user-select: none;
  /* Internet Explorer/Edge */
  user-select: none;
  /* Non-prefixed version, currently
                                  supported by Chrome, Edge, Opera and Firefox */
}

.img-fluid {
  image-rendering: -moz-crisp-edges;
  /* Firefox */
  image-rendering: -o-crisp-edges;
  /* Opera */
  image-rendering: -webkit-optimize-contrast;
  /* Webkit (non-standard naming) */
  image-rendering: crisp-edges;
  -ms-interpolation-mode: nearest-neighbor;
  /* IE (non-standard property) */
}

.spill-container-left {
  margin-left: calc(-1 * (100vw - 100%) / 2);
}

.spill-container-right {
  margin-right: calc(-1 * (100vw - 100%) / 2);
}

@media screen and (min-width: 576px) {
  .spill-container-sm-left {
    margin-left: calc(-1 * (100vw - 100%) / 2);
  }

  .spill-container-sm-right {
    margin-right: calc(-1 * (100vw - 100%) / 2);
  }
}
@media screen and (min-width: 768px) {
  .spill-container-md-left {
    margin-left: calc(-1 * (100vw - 100%) / 2);
  }

  .spill-container-md-right {
    margin-right: calc(-1 * (100vw - 100%) / 2);
  }
}
@media screen and (min-width: 992px) {
  .spill-container-lg-left {
    margin-left: calc(-1 * (100vw - 100%) / 2);
  }

  .spill-container-lg-right {
    margin-right: calc(-1 * (100vw - 100%) / 2);
  }
}
@media screen and (min-width: 1200px) {
  .spill-container-xl-left {
    margin-left: calc(-1 * (100vw - 100%) / 2);
  }

  .spill-container-xl-right {
    margin-right: calc(-1 * (100vw - 100%) / 2);
  }
}
@media screen and (min-width: 1400px) {
  .spill-container-xxl-left {
    margin-left: calc(-1 * (100vw - 100%) / 2);
  }

  .spill-container-xxl-right {
    margin-right: calc(-1 * (100vw - 100%) / 2);
  }
}
@media screen and (min-width: 1800px) {
  .spill-container-xxxl-left {
    margin-left: calc(-1 * (100vw - 100%) / 2);
  }

  .spill-container-xxxl-right {
    margin-right: calc(-1 * (100vw - 100%) / 2);
  }
}
.img-fill {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
  background: #28b2ec !important;
}

.owl-theme .owl-dots .owl-dot span {
  background: transparent !important;
  border: 1px solid #fff !important;
}

.owl-carousel .owl-dots {
  position: absolute;
  bottom: 10%;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (min-width: 992px) {
  .owl-carousel .owl-dots span {
    width: 15px;
    height: 15px;
    margin-left: 10px;
    margin-right: 10px;
    border: 2px solid #fff !important;
  }
}

/*# sourceMappingURL=style.css.map */
