html {
  scroll-behavior: smooth;
}

body {
  font-family: "Mulish", serif;
  color: #212D32;
  background-color: #F6FCFF;
  display: flex;
  flex-direction: column;
  margin: 0;
  min-height: 100vh;
}

#skoly-sidebar {
  display: none;
}

.mainWrapper {
  flex: 1;
  display: flex;
  align-items: flex-start;
  align-items: stretch;
}

main {
  width: 100%;
}

a {
    color: #000;
}


h1, h2, h3, h4, h5, h6, p, li, a {
  margin: 0;
}

h1 {
  font-size: clamp(30px, 6vw, 75px);
  font-style: normal;
  font-weight: 1000;
  line-height: 105%;
}
h1 span {
  font-size: 17px;
  font-weight: 500;
  letter-spacing: 3.06px;
  text-transform: uppercase;
}

h2 {
  font-size: clamp(25px, 6vw, 32px);
  font-weight: 900;
}

h3 {
  font-size: clamp(17px, 3vw, 20px);
  font-weight: 800;
}

p, li {
  font-size: 16px;
  line-height: 26px;
}

section {
  padding: 0;
}

.contentWidth {
  max-width: 1140px;
  margin: auto;
  padding: 40px 20px;
}
.contentWidth.w-100 {
  max-width: inherit;
  width: 100%;
}

header {
  width: 100%;
  position: absolute;
  height: 115px;
  z-index: 5;
}
header .homeLink {
  color: #FFFFFF;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  transition: text-decoration-color 0.3s;
  display: flex;
  gap: 10px;
  align-items: center;
}
header .homeLink:hover {
  text-decoration-color: rgba(255, 255, 255, 0);
}

.cover {
  padding-top: 115px;
  padding-bottom: 50px;
  color: #FFFFFF;
  background-image: url(../images/main/hpBg.webp);
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}
.cover.aboutBg {
  background-image: url(../images/main/aboutBg.webp);
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}
.cover h1 {
  z-index: 2;
  position: relative;
  text-align: center;
}
.cover .coverContent {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  z-index: 2;
  position: relative;
}
.cover .coverContent img {
  max-width: clamp(80px, 10vw, 140px);
}
.cover .coverContent p a {
  text-decoration: underline;
  text-decoration-thickness: 1px;
  transition: text-decoration-color 0.3s;
  color: #FFFFFF;
}
.cover .coverContent p a:hover {
  text-decoration-color: rgba(255, 255, 255, 0);
}
.cover.coverHP {
  padding: 200px 0 280px;
}

nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px;
  max-width: 1400px;
  margin: auto;
  position: relative;
}

.logo {
  z-index: 10;
}
.logo img {
  display: block;
  width: clamp(70px, 20vw, 81px);
}

.burger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: none;
  outline: none;
  cursor: pointer;
  margin-top: 5px;
  z-index: 10;
}
.burger span {
  display: block;
  width: 40px;
  height: 1px;
  margin-bottom: 10px;
  position: relative;
  z-index: 1;
  transform-origin: 0 0;
  transition: 0.4s;
  background-color: #FFFFFF;
}
.burger.is-active span:nth-child(1) {
  transform: translate(4.5px, 0px) rotate(40deg);
  background-color: #FFFFFF;
}
.burger.is-active span:nth-child(2) {
  opacity: 0;
  transform: translateX(-15px);
}
.burger.is-active span:nth-child(3) {
  transform: translate(3px, 3.5px) rotate(-40deg);
  background-color: #FFFFFF;
}

.menu {
  display: none;
}

.menu.active {
  z-index: 9;
  position: absolute;
  display: flex;
  justify-content: flex-start;
  flex-direction: column;
  align-items: flex-end;
  gap: 25px;
  margin: 0;
  background: var(--main-color);
  max-width: 400px;
  top: 0;
  right: 0;
  padding: 100px clamp(20px, 10vw, 50px);
  border-radius: 0 0 20px 20px;
  animation-name: animaceMenuA;
  animation-duration: 0.5s;
}
@keyframes animaceMenuA {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.menu.active li {
  list-style: none;
}
.menu.active li a {
  color: #FFFFFF;
  font-size: clamp(17px, 3vw, 20px);
  text-decoration: none;
  text-align: right;
  display: block;
  font-weight: 700;
}
.menu.active li a:hover {
  text-decoration-color: rgba(255, 255, 255, 0);
}

footer {
  background-color: #005A85;
  color: #FFFFFF;
}
footer .contentWidth {
  max-width: 1140px;
  padding: 40px 20px 0;
}
footer a {
  color: #FFFFFF;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  transition: text-decoration-color 0.3s;
}
footer a:hover {
  text-decoration-color: rgba(255, 255, 255, 0);
}
footer .container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
}
footer .wrapper {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
footer .wrapper h3 {
  letter-spacing: 0.16px;
  font-size: 16px;
  font-size: 800;
}
footer .wrapper p, footer .wrapper a {
  line-height: 20px;
  font-size: 14px;
  letter-spacing: 0.14px;
}
footer .wrapper a {
  display: flex;
  align-items: center;
  gap: 10px;
}
footer .socials {
  display: flex;
  gap: 10px;
  align-items: center;
}
footer .socials a {
  transition: transform 0.3s;
}
footer .socials a:hover {
  transform: scale(1.1);
}
footer .contactWrapper {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
footer .copy {
  border-top: 1px solid #E7F0F4;
  text-align: center;
  display: block;
  padding: 30px 20px;
  margin-top: 30px;
  font-weight: 700;
}
footer .copy p {
  font-size: 14px;
}
footer .copy.blue {
  border-color: #0D628B;
  color: #FFFFFF;
}

.footerMenu {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px 25px;
  margin: 0 0 80px 0;
  padding: 0;
}
.footerMenu li {
  list-style: none;
}
.footerMenu a {
  text-decoration: none;
  text-transform: uppercase;
  transition: opacity 0.3s;
}
.footerMenu a:hover {
  opacity: 0.7;
}

.pageNavigator {
  display: flex;
  gap: 20px;
  padding: 0;
  margin: 0;
  text-align: center;
  position: relative;
  z-index: 2;
  margin-top: -115px;
}
.pageNavigator li {
  width: 100%;
  list-style: none;
  background-color: red;
  border-radius: 10px;
  padding: 0 30px 30px 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.pageNavigator li img {
  margin-top: -40px;
}
.pageNavigator li.style-1 {
    background: linear-gradient(246deg, #C6DDBA 1.78%, #B3CEA4 100%);

}
.pageNavigator li.style-2 {
  background: linear-gradient(247deg, #FFC4B0 0%, #F9A78C 100%);
}
.pageNavigator li.style-3 {
  background: linear-gradient(248deg, #C3C5F7 0%, #9EA1DE 98.48%);
}
.pageNavigator li.style-4 {
  background: linear-gradient(248deg, #FFC74D 0%, #FFD476 98.48%);
}

.hpBanner {
  background-color: #FFFFFF;
  background-image: url(../images/main/bannerImg.webp);
  background-position: right;
  background-repeat: no-repeat;
  padding: clamp(20px, 4vw, 40px) clamp(20px, 4vw, 50px);
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}
.hpBanner h2, .hpBanner p {
  max-width: 640px;
}
.hpBanner .text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

.textImg img {
  max-width: 100%;
  display: block;
  border-radius: 20px;
  flex: 1;
  max-height: 450px;
}
.textImg .text {
  max-width: 500px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.textImg .pWrapper {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.textImg .content {
  display: flex;
  justify-content: space-evenly;
  gap: 40px;
}
.textImg a {
  text-decoration: underline;
  text-decoration-thickness: 1px;
  transition: text-decoration-color 0.3s;
  color: #212D32;
}
.textImg a:hover {
  text-decoration-color: rgba(255, 255, 255, 0);
}

.imgWrapper2 {
  display: flex;
  justify-content: space-evenly;
  flex-wrap: wrap;
  gap: 20px;
}
.imgWrapper2 br {
  display: none;
}
.imgWrapper2 img {
  width: clamp(115px, 15vw, 150px);
  border-radius: 0 !important;
  flex: none !important;
}

.contentSection .imgWrapper2 {
  gap: 30px 50px;
}
.contentSection .imgWrapper2 img {
  width: clamp(220px, 40vw, 350px);
}

.coverMenu {
  padding: 0;
  margin: 20px 0 0 0;
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
.coverMenu li {
  list-style: none;
}

.businessCard .content {
  display: flex;
  align-items: center;
  flex-direction: row !important;
  gap: 15px;
}
.businessCard .content img {
  border-radius: 50%;
}
.businessCard .name {
  gap: 0;
}

.menuChanging {
  display: flex;
}
.menuChanging button {
  background-color: transparent;
}
.menuChanging .menuItem {
  text-transform: uppercase;
  padding: 20px;
  letter-spacing: 0.28px;
  border-top: 0;
  border-left: 0;
  border-right: 0;
  border-bottom: 1px solid hsla(198, 20%, 16%, 0.05);
  font-weight: 600;
  font-size: 14px;
  width: 100%;
}


.page-template-about .imgWrapper2 img {
    width: clamp(115px, 15vw, 150px);
    border-radius: 0 !important;
    flex: none !important;
    height: 50px;
    filter: grayscale(1);
}

.page-template-about .square.d-flex.d-column.gap-20 h3 {
  color: #055a85
}
.page-template-about button.menuItem.active-btn {
    color: #fff;
}

.page-template-about .about-links .square {
    background-color: transparent;
    border: 1px dashed #005A85;
    box-shadow: none;
    border-radius: 10px;
    padding: clamp(20px, 4vw, 40px) clamp(20px, 4vw, 60px);
}

.tab-content.active {
    display: flex;
}

.tab-content {
    display: none;
    padding: 20px;
}

.page-template-about .about-links .square button.menuItem {
    text-transform: none !important;
}

.menuChanging .menuItem.active-btn {
  font-weight: 700;
  border-color: #212D32;
}
.menuChanging .menuItem span {
  max-width: -moz-max-content;
  max-width: max-content;
}

.square {
  background-color: #FFFFFF;
  box-shadow: 0px 0px 114px 0px rgba(152, 169, 178, 0.19);
  border-radius: 10px;
  padding: clamp(20px, 4vw, 40px) clamp(20px, 4vw, 60px);
}


.single.single-post img.attachment-post-thumbnail.size-post-thumbnail.wp-post-image {
    height: 400px;
    object-fit: cover;
    width: 100%;
    border-radius: 30px;
    margin: 27px 0;
}

.date-single {
    color: #055a85;
    font-weight: 300;
    letter-spacing: 1px;
    font-size: 13px;
    margin-top: 10px;
}

.back-link {
    font-size: 12px;
    margin-bottom: 23px;
    display: block;
    color: #055a85;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 32px;
}

.news-card__image {
    display: block;
    border-radius: 24px;
    overflow: hidden;
    margin-bottom: 12px;
}

.news-card__image img {
    display: block;
    width: 100%;
    height: 260px;
    object-fit: cover;
}

.news-card__title {
    margin: 0;
    font-size: 28px;
    line-height: 1.15;
    text-align: center;
    font-weight: 800;
}

.news-card__title a {
    color: #1f2a33;
    text-decoration: underline;    font-size: 19px;

}

.news-card__title a:hover {
    opacity: 0.8;
}

@media (max-width: 1024px) {
    .news-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 32px;
    }

    .news-card__title {
        font-size: 22px;
    }
}

@media (max-width: 767px) {
    .news-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .news-card__title {
        font-size: 20px;
    }
}

.single-width.contentWidth {
  max-width: 900px;
  margin: auto;
}

.contentWidth.single-width p {
    margin-bottom: 20px;
}

.contentSection {
  display: none;
  transition: opacity 0.3s;
  margin-top: 30px;
}
.contentSection :first-child {
  margin-top: 0;
}
.contentSection h3 {
  margin: 20px 0 10px;
}
.contentSection li {
  list-style: none;
  position: relative;
  margin-bottom: 10px;
}
.contentSection li::before {
  content: url(../images/icons/ulArrow.svg);
  position: absolute;
  left: -40px;
  line-height: 0;
  top: 5px;
}
.contentSection ul {
  padding-left: 40px;
  margin: 5px 0;
}
.contentSection a {
  text-decoration: underline;
  text-decoration-thickness: 1px;
  transition: text-decoration-color 0.3s;
  color: #212D32;
}
.contentSection a:hover {
  text-decoration-color: rgba(255, 255, 255, 0);
}

.contentSection.active {
  display: block;
  animation-name: contentAnimation;
  animation-duration: 1s;
}

.boxContainer {
  display: flex;
  gap: 20px;
}

.links .box {
  width: 100%;
  padding: 30px 20px;
  background-color: #FFFFFF;
  border-radius: 10px;
  box-shadow: 0px 0px 114px 0px rgba(152, 169, 178, 0.19);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  text-align: center;
}
.links .box p {
  letter-spacing: 2.88px;
}

@keyframes contentAnimation {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.textSection .content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.schoolsList {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  padding: 0;
  margin: 0;
}
.schoolsList li {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 10px;
}
.schoolsList a {
  font-weight: 500;
}

.gallerySlider .sliderWrapper {
  max-height: 220px;
  border-radius: 10px;
  overflow: hidden;
  margin: 0 5px;
  transition: opacity 0.3s;
}
.gallerySlider .sliderWrapper:hover {
  opacity: 0.75;
}
.gallerySlider img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.carousel__button {
  background-color: var(--main-color) !important;
  transition: opacity 0.3s !important;
  opacity: 0.75 !important;
}
.carousel__button:hover {
  opacity: 1 !important;
}

.fancybox__toolbar__items {
  display: flex;
  gap: 20px;
}

.fancybox__toolbar__items--left, .carousel__viewport {
  display: none;
}

.fancybox__container.is-closing .fancybox__image {
  display: none !important;
}

.fancybox__image {
  border-radius: 5px;
}

.fancybox {
  display: none;
  border-radius: 7px;
}

.documentsContainer .wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  background-color: #FFFFFF;
  box-shadow: 0px 0px 114px 0px rgba(152, 169, 178, 0.19);
  padding: clamp(20px, 4vw, 40px) clamp(20px, 4vw, 60px);
  border-radius: 10px;
}
.documentsContainer .documentsTitle {
  cursor: pointer;
}
.documentsContainer .documentsWrapper {
  padding-top: 20px;
  display: none;
}
.documentsContainer .documentsWrapper h3 {
  margin: 40px 0 20px;
}
.documentsContainer .documentsWrapper h3:first-child {
  margin-top: 0;
}
.documentsContainer .documentsWrapper .container {
  display: grid;
  gap: 20px;
  grid-template-columns: 1fr 1fr;
}
.documentsContainer .documentsWrapper .container br {
  display: none;
}
.documentsContainer .documentsWrapper a {
  display: flex;
  gap: 20px;
  align-items: center;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  transition: text-decoration-color 0.3s;
  color: #212D32;
}
.documentsContainer .documentsWrapper a br {
  display: none;
}
.documentsContainer .documentsWrapper a:hover {
  text-decoration-color: rgba(255, 255, 255, 0);
}




.contentWidth.about-links .menuChanging {
  display: flex;
}
.contentWidth.about-links .menuChanging button {
  background-color: transparent;
}
.contentWidth.about-links .menuChanging .menuItem {

  padding: 20px;
  letter-spacing: 0.28px;
  font-weight: 600;
  font-size: 18px;
  background: #fff;
  width: 100%;
  font-family: mulish;
}

.contentWidth.about-links .square.d-flex.d-column.gap-20 h3 {
    color: #055a85;
}

.contentWidth.about-links .menuChanging button:nth-child(1) {
    border-radius: 10px 0px 0px 10px;
    padding: 24px 30px;
}

.contentWidth.about-links .menuChanging button:nth-child(2) {
padding: 24px 30px;
    border-radius: 0 10px 10px 0;
}


.contentWidth.about-links .menuChanging {
    display: flex;
    max-width: 500px;
    margin: auto;
}

.contentWidth.about-links .menuChanging .menuItem.active-btn {
    font-weight: 700;
    border-color: none;
    padding: 24px 30px;
    background: #055a85;
}


.contentWidth.about-links .menuChanging .menuItem span {
  max-width: -moz-max-content;
  max-width: max-content;
}

.signpostNavigator {
  padding: 0;
  margin: 0;
  display: grid;
  gap: 40px;
  grid-template-columns: 1fr 1fr;
}
.signpostNavigator.lightBox li {
  background-image: none;
  background-color: #FFFFFF;
  box-shadow: 0px 0px 114px 0px rgba(152, 169, 178, 0.19);
}
.signpostNavigator li {
  background-image: url(../images/main/signpostBg.png);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  list-style: none;
  border-radius: 20px;
  color: #FFFFFF;
  text-align: center;
  padding: 40px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
.signpostNavigator li.style-1 {
  background-color: #815DCA;
}
.signpostNavigator li.style-2 {
  background-color: #1F945B;
}
.signpostNavigator li.style-3 {
  background-color: #B8619E;
}
.signpostNavigator li.style-4 {
  background-color: #E4702D;
}
.signpostNavigator li.style-5 {
  background-color: #0097B2;
}
.signpostNavigator li.style-6 {
  background-color: #24BD85;
}

.guide {
  display: flex;
  gap: 40px;
  justify-content: center;
  flex-wrap: wrap;
}
.guide img {
  height: clamp(140px, 20vw, 220px);
}

.documentsContainer .documentsTitle {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.documentsTitle .vertical {
  transition: all 0.5s ease-in-out;
  transform: rotate(-90deg);
}
.documentsTitle .horizontal {
  transition: all 0.5s ease-in-out;
  transform: rotate(-90deg);
  opacity: 1;
}

.documentsTitle.open {
  opacity: 1;
}
.documentsTitle.open .vertical {
  transition: all 0.5s ease-in-out;
  transform: rotate(90deg);
}
.documentsTitle.open .horizontal {
  transition: all 0.5s ease-in-out;
  transform: rotate(90deg);
  opacity: 0;
}

.icon {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.icon .horizontal {
  position: absolute;
  background-color: #212D32;
  width: 25px;
  height: 3px;
  border-radius: 5px;
}

.icon .vertical {
  position: absolute;
  background-color: #212D32;
  width: 3px;
  border-radius: 5px;
  height: 25px;
}

.questionnaire iframe {
  width: 100%;
}

input[type=radio] {
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  margin: 0;
  padding: 0;
  border: 1px solid #FFFFFF;
  cursor: pointer;
  transition: background-color 0.3s;
}
input[type=radio]:checked {
  background-color: #212D32;
}

input[type=text] {
  border-radius: 10px;
  padding: 20px;
  width: 100%;
  max-width: 400px;
  border: 1px solid #B4B9BB;
}

.slick-track {
  display: flex !important;
}

.slick-slide {
  height: inherit !important;
}

.slick-arrow.slick-prev {
  z-index: 1;
  left: 100px;
}
.slick-arrow.slick-next {
  right: 100px;
}

.slick-dots {
  bottom: 0;
  display: flex;
  justify-content: center;
  padding: 20px;
}
.slick-dots li {
  margin: 0;
}

.slick-dots li button:before {
  font-size: 15px;
}

.slick-dots li.slick-active button:before {
  opacity: 1;
  color: #FFFFFF;
}

.slick-dots li button:before {
  color: #FFFFFF;
}

.slick-arrow.slick-prev {
  left: -30px;
}
.slick-arrow.slick-prev:before {
  content: url(../images/icons/slickArrowL.svg);
}
.slick-arrow.slick-next {
  right: -30px;
}
.slick-arrow.slick-next:before {
  content: url(../images/icons/slickArrowR.svg);
}

.link {
  text-decoration: underline;
  text-decoration-thickness: 1px;
  transition: text-decoration-color 0.3s;
  color: #212D32;
}
.link:hover {
  text-decoration-color: rgba(255, 255, 255, 0);
}

.none {
  display: none;
}
.none.block {
  display: block;
}

.post-password-form {
  max-width: 1140px;
  padding: clamp(50px, 10vw, 100px) 20px;
  margin: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  text-align: center;
}
.post-password-form p {
  font-size: clamp(16px, 4vw, 20px);
  width: 100%;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
}
.post-password-form input {
  border-radius: 10px;
  padding: 10px 20px;
  width: 100%;
  max-width: 200px;
  border: 1px solid #B4B9BB;
}
.post-password-form input[type=submit] {
  display: table;
  padding: clamp(10px, 2vw, 15px) clamp(30px, 6vw, 40px);
  font-size: 16px;
  font-style: normal;
  font-weight: 800;
  line-height: normal;
  letter-spacing: 0.16px;
  text-align: center;
  max-width: -moz-max-content;
  max-width: max-content;
  border-radius: 50px;
  text-decoration: none !important;
  border: none;
  text-transform: uppercase;
  cursor: pointer;
  color: #FFFFFF;
  background-color: var(--main-color);
  transition: background-color 0.3s;
}
.post-password-form input[type=submit]:hover {
  background-color: #212D32;
}

.button {
  display: table;
  padding: clamp(10px, 2vw, 15px) clamp(30px, 6vw, 40px);
  font-size: 16px;
  font-style: normal;
  font-weight: 800;
  line-height: normal;
  letter-spacing: 0.16px;
  text-align: center;
  max-width: -moz-max-content;
  max-width: max-content;
  border-radius: 50px;
  text-decoration: none !important;
  border: none;
  text-transform: uppercase;
  cursor: pointer;
}
.button.primary {
  color: #FFFFFF;
  background-color: #005A85;
  transition: background-color 0.3s;
}
.button.primary:hover {
  background-color: #212D32;
}
.button.secondary {
  color: #212D32;
  background-color: #F6FCFF;
  transition: background-color 0.3s;
}
.button.secondary:hover {
  background-color: #A5B7BF;
}
.button.light {
  color: #212D32;
  background-color: #FFFFFF;
  transition: background-color 0.3s, color 0.3s;
}
.button.light:hover {
  color: #FFFFFF;
  background-color: #212D32;
}
.button.transparent {
  color: #FFFFFF;
  background-color: transparent;
  transition: background-color 0.3s, border-color 0.3s;
  border: 2px solid #FFFFFF;
}
.button.transparent:hover {
  color: #FFFFFF;
  background-color: #212D32;
  border-color: #212D32;
}
.button.dark {
  color: #FFFFFF;
  background-color: #212D32;
  transition: background-color 0.3s, color 0.3s;
  text-transform: inherit;
  font-size: 16px;
  font-weight: 700;
}
.button.dark:hover {
  background-color: #005A85;
}
.button.bg {
  color: #FFFFFF;
  background-color: var(--main-color);
  transition: background-color 0.3s, color 0.3s;
  text-transform: inherit;
  font-size: 16px;
  font-weight: 700;
  display: block;
}
.button.bg:disabled {
  opacity: 0 !important;
  cursor: unset !important;
  display: none;
}
.button.bg:hover {
  background-color: #005A85;
  color: #FFFFFF;
}
.button.main {
  color: #FFFFFF;
  background-color: var(--main-color);
  display: flex;
  align-items: center;
  gap: 10px;
  letter-spacing: 0.16px;
  transition: background-color 0.3s, opacity 0.3s;
  opacity: 1;
}
.button.main:hover {
  background-color: #212D32;
}
.button.main:disabled {
  opacity: 0.5;
  background-color: var(--main-color);
  cursor: not-allowed;
}

.font-p {
  font-family: "Mulish", serif !important;
}

.font-s {
  font-family: "Mulish", serif !important;
}

.f-22 {
  font-size: clamp(18px, 6vw, 22px);
}

.f-12 {
  font-size: 12px;
}

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

.fw-200 {
  font-weight: 200 !important;
}

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

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

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

.fw-600 {
  font-weight: 600 !important;
}

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

.fw-800 {
  font-weight: 800 !important;
}

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

.lh-0 {
  line-height: 0;
}

.tt-up {
  text-transform: uppercase !important;
}

.tt-in {
  text-transform: initial !important;
}

.tt-low {
  text-transform: lowercase !important;
}

.tt-cap {
  text-transform: capitalize !important;
}

.ta-l {
  text-align: left !important;
}

.ta-c {
  text-align: center !important;
}

.ta-r {
  text-align: right !important;
}

.ta-j {
  text-align: justify !important;
}

.w-100 {
  width: 100% !important;
}

.mw-100 {
  max-width: 100%;
}

.mw-1000 {
  max-width: 1000px;
  margin: auto;
  overflow: auto;
}
.mw-1000 .content {
  min-width: 1000px;
}

.h-100 {
  height: 100vh;
}

.h-100p {
  height: 100%;
}

.anchor {
  position: relative !important;
}

.absolute {
  position: absolute !important;
}

.hiden {
  overflow: hidden;
}

.d-flex {
  display: flex;
}

.flex-1 {
  flex: 1;
}

.wrap {
  flex-wrap: wrap;
}

.d-column {
  flex-direction: column;
}

.j-start {
  justify-content: flex-start;
}

.j-between {
  justify-content: space-between !important;
}

.j-around {
  justify-content: space-around;
}

.j-center {
  justify-content: center !important;
}

.j-end {
  justify-content: flex-end !important;
}

.a-start {
  align-items: flex-start;
}

.a-center {
  align-items: center;
}

.a-end {
  align-items: flex-end;
}

.gap-50 {
  gap: 50px;
}

.gap-40 {
  gap: 40px;
}

.gap-30 {
  gap: 30px;
}

.gap-20 {
  gap: 20px;
}

.gap-10 {
  gap: 10px;
}

.flex-column-start {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.flex-column-center {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.d-grid {
  display: grid;
}

.gtp-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}

.gtp-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.gtp-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.gtp-5 {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
}

.gtp-6 {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
}

.pt-0 {
  padding-top: 0 !important;
}

.pb-0 {
  padding-bottom: 0 !important;
}

.pl-0 {
  padding-left: 0;
}

.pr-0 {
  padding-right: 0;
}

.py-0 {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

.px-0 {
  padding-left: 0 !important;
  padding-right: 0 !important;
}

.mt-0 {
  margin-top: 0 !important;
}

.mt-40 {
  margin-top: 40px !important;
}

.mb-0 {
  margin-bottom: 0 !important;
}

.ml-0 {
  margin-left: 0;
}

.mr-0 {
  margin-right: 0;
}

.ml-a {
  margin-left: auto;
}

.mr-a {
  margin-right: auto;
}

.my-0 {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}

.mx-0 {
  margin-left: 0 !important;
  margin-right: 0 !important;
}

.mx-a {
  margin-left: auto !important;
  margin-right: auto !important;
}

.c-primary {
  color: #005A85 !important;
}

.c-secondary {
  color: #F6FCFF !important;
}

.c-ternary {
  color: #A5B7BF !important;
}

.c-light {
  color: #FFFFFF !important;
}

.c-dark {
  color: #212D32 !important;
}

.bg-primary {
  background: #005A85 !important;
}

.bg-secondary {
  background: #F6FCFF !important;
}

.bg-ternary {
  background: #A5B7BF !important;
}

.bg-light {
  background: #FFFFFF !important;
}

.bg-dark {
  background: #212D32 !important;
}

.bg-main-color {
  background-color: var(--main-color);
}

/* MEDIA */
@media (max-width: 1050px) {
  .cover.coverHP {
    padding: 100px 20px;
  }
  .pageNavigator {
    margin-top: 70px;
    flex-wrap: wrap;
    justify-content: center;
    gap: 70px 30px;
  }
  .pageNavigator li {
    max-width: 45%;
  }
  .hpBanner {
    background: #FFFFFF;
  }
}
@media (max-width: 950px) {
  .textImg .content {
    flex-direction: column;
  }
  .signpostNavigator {
    grid-template-columns: 1fr;
  }
  .documentsContainer .documentsWrapper .container {
    grid-template-columns: 1fr;
  }
  .textImg .text {
    max-width: 100%;
  }
  .menuChanging {
    flex-wrap: wrap;
  }
  .menuChanging br {
    display: none;
  }
  .menuChanging .menuItem {
    padding: 15px;
    border-top: 1px solid hsla(198, 20%, 16%, 0.05);
    border-bottom: 1px solid hsla(198, 20%, 16%, 0.05);
  }
  .schoolsList {
    grid-template-columns: 1fr;
  }
  .boxContainer {
    gap: 15px;
    flex-direction: column;
  }
  .boxContainer .box {
    gap: 10px;
  }
  footer .container {
    gap: 30px;
    flex-direction: column;
  }
  footer .wrapper {
    gap: 20px;
    align-items: flex-start;
  }
  .gallery .square {
    padding-left: 30px;
    padding-right: 30px;
  }
  .slick-arrow.slick-prev {
    left: -20px;
  }
  .slick-arrow.slick-next {
    right: -20px;
  }
  .gtp-2 {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 650px) {
  .pageNavigator {
    flex-direction: column;
  }
  .pageNavigator li {
    max-width: 100%;
  }
  .menu.active {
    width: 100%;
    max-width: 100%;
  }
}/*# sourceMappingURL=style.css.map */
