@font-face {
  font-family: 'proxima-nova';
  src: url('../fonts/ProximaNova-Regular.otf') format('woff');
}

@font-face {
  font-family: 'acumin-pro-extra-condensed';
  src: url('../fonts/fonnts.com-Acumin_Pro_ExtraCondensed.otf') format('woff');
}

* {
  margin: 0px;
  padding: 0px;
}

body {
  padding: 0px;
  margin: 0px;
  font-family: 'proxima-nova' !important;
}

a {
  text-decoration: none;
}

ul {
  margin: 0px;
  padding: 0px;
}


/* Header Section Style */

.header-section{
  width: 100%;
}

.header-section.sticky{
  position: sticky;
  top: -51px;
  /* overflow: hidden; */
  z-index: 9999;
  box-shadow: 0px 2px 6px #0000001a;
}

.header-topbar{
  padding: 10px 50px;
  background-image: linear-gradient(to bottom right, #1b9cd7b8, #005da3e6);
}

.header-topbar .row{
  justify-content: space-between;
  align-items: center;
}

.header-topbar-left ul{
  margin: 0px;
  padding: 0px;
  list-style: none;
}

.header-topbar-left ul li{
  position: relative;
  display: inline-flex;
  align-items: center;
  margin-left: 50px;
}

.header-topbar-left ul li::before{
  content: "";
  position: absolute;
  top: 3px;
  bottom: 2px;
  left: -28px;
  width: 1px;
  background-color: #ffffff4d;
}

.header-topbar-left ul li:first-child:before{
  display: none;
}

.header-topbar-left ul li:first-child{
  margin-left: 0px;
}

.header-topbar-left ul li a{
  color: #fff;
  font-size: 15px;
  text-transform: uppercase;
  font-weight: 600;
  transition: all 0.3s;
  letter-spacing: 1px;
}

.header-topbar-left ul li a::after{
  content: '';
  position: absolute;
  width: 0px;
  height: 2px;
  background-color: #fccf55;
  left: 0px;
  bottom: 0px;
  transition: all 0.4s;
}

.header-topbar-left ul li a:hover:after{
  width: 100%;
}

.header-topbar-left ul li a:hover{
  color: #fccf55;
}

.header-topbar-right{
  text-align: right;
}

.header-topbar-right > ul{
  padding: 0px;
  margin: 0px;
  list-style: none;
}

.header-topbar-right > ul > li{
  display: inline-flex;
  align-items: center;
  margin-left: 10px;
}

.header-topbar-right > ul > li:first-child{
  margin-left: 0px;
}

.header-topbar-right > ul > li > a{
  color: #fff;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1px solid #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 14px;
  transition: all 0.4s;
}

.header-topbar-right > ul > li > a:hover{
  background-color: #fff;
  color: #005da3;
}

.header-topbar-right > ul > li:first-child > a i{
  font-size: 12px;
}

.header-topbar-right ul li .login-btn{
  color: #fff;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1px solid #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 14px;
  transition: all 0.4s;
  outline: none;
  box-shadow: none;
  background-color: transparent;
}

.header-topbar-right ul li .login-btn:hover{
  background-color: #fff;
  color: #005da3;
}

.header-topbar-right ul li .login-btn i{
  font-size: 12px;
}

.header-topbar-right ul li.account-button-area{
  position: relative;
  cursor: pointer;
}

.header-topbar-right ul li .account-btn-list{
  position: absolute;
  top: 29px;
  left: 0px;
  background-color: #fff;
  border-bottom: 0px;
  display: none;
  z-index: 2;
  outline: none;
  transition: all .3s ease-in-out;
  min-width: 155px;
  box-shadow: 0px 1px 16px #0000001f;
  list-style: none;
  padding: 0px 0px;
  border-radius: 4px;
}

.header-topbar-right ul li.account-button-area:hover .account-btn-list{
  display: block;
}

.header-topbar-right ul li .account-btn-list li {
    margin-top: 5px;
}

.header-topbar-right ul li .account-btn-list li:last-child {
    margin-bottom: 5px;
}

.header-topbar-right ul li .account-btn-list li .account-btn-item{
  display: block;
  padding: 8px 15px;
  font-size: 15px;
  color: #475467;
  border: 0px;
  background-color: transparent;
  text-align: left;
  width: 100%;
  cursor: pointer;
  text-transform: uppercase;
  font-weight: 500;
  line-height: normal;
}

.header-topbar-right ul li .account-btn-list li .account-btn-item:hover{
  color: #005da3;
  background-color: #e5e5e5;
}

.header-topbar-right ul li .account-btn-list li .account-btn-item i{
  font-size: 12px;
  padding-right: 5px;
}

.header-menu-area{
  padding: 10px 50px;
  background-color: #f8f9fa;
}

.header-menu-area .row{
  justify-content: space-between;
  align-items: center;
}

.header-menu-area .col-headerLeft {
    flex: 0 0 auto !important;
    width: 100px !important;
}

.header-menu-area .col-headerRight {
    flex: 0 0 auto !important;
    width: calc(100% - 100px) !important;
}

.header-logo-area img{
  width: 70px;
  height: 70px;
}

.header-section.sticky .header-logo-area img {
    width: 55px;
    height: 55px;
}

.header-menu-area .menu-nav {
  margin: 0px;
  padding: 0px;
  text-align: right;
}

.header-menu-area .menu-nav li {
  display: inline-block;
  position: relative;
}

.header-menu-area .menu-nav li>a{
  color: #005da3;
  font-size: 24px;
  letter-spacing: 1px;
  padding: 16px 0px 8px 16px;
  text-decoration: none;
  display: inline-block;
  text-transform: uppercase;
  font-family: 'acumin-pro-extra-condensed' !important;
  line-height: normal;
  position: relative;
  transition: all .3s;
}

.header-menu-area .menu-nav li>a:hover {
  color: #fccf55;
}

.header-menu-area .menu-nav li:has(> ul.sub-menu)>a::after {
  content: "\f078";
  position: relative;
  right: 0px;
  top: -3px;
  text-align: center;
  display: inline-block;
  color: #005da3;
  transition: all 0.3s ease;
  background-position: bottom center;
  margin-left: 4px;
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  font-size: 11px;
}

.header-menu-area .menu-nav li:has(> ul.sub-menu)>a:hover:after {
  color: #fccf55;
}

.header-menu-area .menu-nav li>ul.sub-menu li:has(> ul.sub-menu)>a::after {
  content: "\f078";
  position: relative;
  right: -4px;
  top: -3px;
  text-align: center;
  display: inline-block;
  color: #005da3;
  transition: all 0.3s ease;
  background-position: bottom center;
  margin-left: 0px;
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  font-size: 11px;
}

.header-menu-area .menu-nav li>ul.sub-menu li:has(> ul.sub-menu)>a:hover:after {
  color: #fccf55;
}

.header-menu-area .menu-nav li .sub-menu {
  position: absolute;
  top: 50px;
  right: 0;
  background-color: #fff;
  border-bottom: 0px;
  border-top: 1px solid #f5f5f5;
  /* display: none; */
  z-index: 2;
  outline: none;
  min-width: 200px;
  box-shadow: 0px 1px 16px #0000001f;
  padding: 10px 0px;
   transition: 0.4s;
  transform: scaleY(0);
  min-width: 200px;
  box-shadow: 0px 1px 16px #0000001f;
  visibility: hidden;
  opacity: 0;
  transform-origin: top;
}

.header-menu-area .menu-nav li>ul.sub-menu li>ul.sub-menu {
  position: absolute;
  top: 0px;
  right: 95%;
  background-color: #fff;
  border-bottom: 0px;
  border-top: 1px solid #f5f5f5;
  /* display: none; */
  z-index: 1000;
  outline: none;
  transition: 0.4s;
  transform: scaleY(0);
  min-width: 200px;
  box-shadow: 0px 1px 16px #0000001f;
  visibility: hidden;
  opacity: 0;
  transform-origin: top;
}

.header-menu-area .menu-nav li:hover>ul.sub-menu {
  /* display: block; */
  padding: 10px 0px;
  margin: 0px;
  transform: scaleY(1);
  transition: all 0.5s ease;
  visibility: visible;
  opacity: 1;
}

.header-menu-area .menu-nav li>ul.sub-menu li:hover>ul.sub-menu {
  /* display: block; */
  padding: 10px 0px;
  margin: 0px;
  transform: scaleY(1);
  transition: all 0.5s ease;
  visibility: visible;
  opacity: 1;
}

.header-menu-area .menu-nav li .sub-menu li {
  display: block;
}

.header-menu-area .menu-nav li .sub-menu li a {
  color: #005da3;
  letter-spacing: 1px;
  text-align: center;
  text-transform: uppercase;
  z-index: 1000;
  padding: 8px 10px 8px;
  display: block;
  background-color: transparent;
  transition: all .3s;
}

.header-menu-area .menu-nav li .sub-menu li a:hover {
  background-color: #f8f9fa;
  color: #f7c641;
}

.mobile-menu-bar{
  display: none;
  text-align: right;
}

.mobile-menu-bar i{
  font-size: 25px;
  color: #005da3;
  cursor: pointer;
  padding: 6px 10px;
  border: 0 none;
  background-color: #fff;
  border-radius: 5px;
  box-shadow: 0px 0px 5px 3px #005da340;
  transition: 0.6s;
}

.mobile-menu-bar i:hover{
  box-shadow: 0px 0px 5px 3px #005da361;
}

.popup-mobile-menu {
  z-index: 9999;
  position: fixed;
  content: "";
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(0, 0, 0, 0.8);
  visibility: hidden;
  opacity: 0;
  transition: opacity .5s ease-out;
}

.popup-mobile-menu.active {
  visibility: visible;
  opacity: 1;
}

.popup-mobile-menu .inner {
  width: 340px;
  z-index: 999;
  position: absolute;
  background: #FFFFFF;
  box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.06);
  height: 100%;
  height: 100vh;
  display: flex;
  flex-direction: column;
  opacity: 0;
  left: -150px;
  transition: all .5s ease-out;
}

.popup-mobile-menu.active .inner {
  opacity: 1;
  left: 0;
  overflow-y: auto;
}

.popup-mobile-menu .inner .header-top {
  display: flex;
  border-bottom: 1px solid #005da32b;
  align-items: center;
  justify-content: space-between;
  padding: 10px 15px;
}

.popup-mobile-menu .inner .header-top .logo img{
  width: 50px;
}

.popup-mobile-menu .inner .header-top .close-menu .close-button {
  background: #fff;
  color: #005da3;
  font-size: 15px;
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
  box-shadow: 0px 0px 5px 3px #005da32e;
  padding: 0px;
  cursor: pointer;
  transition: 0.4s;
}

.popup-mobile-menu .inner .header-top .close-menu .close-button:hover{
  box-shadow: 0px 0px 5px 3px #005da361;
}

.popup-mobile-menu .menu-nav {
  list-style: none;
  margin: 0;
  padding: 15px 15px;
  flex: 1;
}

.popup-mobile-menu .menu-nav > li{
  list-style: none;
  border-bottom: 1px solid #005da32b;
  margin-bottom: 5px;
}

.popup-mobile-menu .menu-nav > li > a {
  font-size: 20px;
  text-transform: uppercase;
  font-family: 'acumin-pro-extra-condensed';
  display: block;
  color: #005da3;
  letter-spacing: 1px;
  position: relative;
}

.popup-mobile-menu .menu-nav li > a:hover {
  color: #fccf55;
}

.popup-mobile-menu .menu-nav li:has(> ul.sub-menu)>a::after {
  content: "\f078";
  position: absolute;
  right: 0px;
  top: 5px;
  text-align: center;
  display: inline-block;
  color: #005da3;
  transition: all 0.3s ease;
  background-position: bottom center;
  margin-left: 4px;
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  font-size: 11px;
  transform: rotate(-90deg);
}

/* .popup-mobile-menu .menu-nav li:has(> ul.sub-menu)>a:hover:after {
  color: #fccf55;
  transform: rotate(0deg);
} */

.popup-mobile-menu .menu-nav li.active:has(> ul.sub-menu)> a{
  color: #fccf55;
}

.popup-mobile-menu .menu-nav li:has(> ul.sub-menu)> a:hover:after {
  color: #fccf55;
}

.popup-mobile-menu .menu-nav li.active:has(> ul.sub-menu)> a::after {
  color: #fccf55;
  transform: rotate(0deg);
}

.popup-mobile-menu .menu-nav > li .sub-menu {
  border-bottom: 0px;
  /* display: none; */
  transition: all .3s ease-in-out;
  margin: 0px 0px 0px 8px;
  visibility: hidden;
  opacity: 0;
  transform-origin: top;
  transition: 0.4s;
  height: 0px;
}

/* .popup-mobile-menu .menu-nav li:hover>ul.sub-menu {
  display: block;
  padding: 0px 0px;
} */

.popup-mobile-menu .menu-nav li.active > .sub-menu {
  /* display: block; */
    transform: scaleY(1);
    transition: all 0.4s ease;
    visibility: visible;
    opacity: 1;
    height: auto;
}

.popup-mobile-menu .menu-nav > li ul.sub-menu li{
  list-style: none;
  border-top: 1px solid #005da32b;
  margin-bottom: 0px;
}

.popup-mobile-menu .menu-nav > li ul.sub-menu li > a {
  font-size: 20px;
  text-transform: uppercase;
  font-family: 'acumin-pro-extra-condensed';
  display: block;
  color: #005da3;
  letter-spacing: 1px;
  padding: 5px 0px 0px;
  position: relative;
}

.popup-mobile-menu .menu-nav > li ul.sub-menu li:has(> ul.sub-menu)>a::after{
  top: 10px;
}

.mobile-bottom-area{
  padding: 25px 0px 20px;
  border-top: 1px solid #005da32b;
  margin-top: 30px;
}

.mobile-bottom-link ul{
  padding: 0px 15px;
  list-style: none;
  text-align: center;
}

.mobile-bottom-link ul li a{
  text-align: center;
  text-transform: uppercase;
  font-weight: 600;
  transition: all 0.3s;
  letter-spacing: 1px;
  font-size: 15px;
  position: relative;
  color: #005da3;
  display: inline-block;
  padding-bottom: 10px;
}

.mobile-bottom-link ul li a:hover {
  color: #fccf55;
}

.mobile-bottom-link ul li a::after {
  content: '';
  position: absolute;
  width: 0px;
  height: 2px;
  background-color: #fccf55;
  left: 0px;
  bottom: 0px;
  transition: all 0.4s;
}

.mobile-bottom-link ul li a:hover:after {
  width: 100%;
}

.mobile-bottom-social-link{

}

.mobile-bottom-social-link > ul {
  padding: 15px 0px 0px;
  margin: 15px 0px 0px;
  list-style: none;
  text-align: center;
  border-top: 1px solid #d4e4ef;
}

.mobile-bottom-social-link > ul > li {
  display: inline-flex;
  align-items: center;
  margin-left: 10px;
}

.mobile-bottom-social-link > ul > li:first-child {
  margin-left: 0px;
}

.mobile-bottom-social-link > ul > li > a {
  color: #005da3;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1px solid #005da3;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 14px;
  transition: all 0.4s;
}

.mobile-bottom-social-link > ul > li:first-child > a i {
  font-size: 12px;
}

.mobile-bottom-social-link ul li .login-btn{
  color: #005da3;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1px solid #005da3;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 14px;
  transition: all 0.4s;
  outline: none;
  box-shadow: none;
  background-color: transparent;
}

.mobile-bottom-social-link ul li .login-btn:hover{
  background-color: #005da3;
  color: #fff;
}

.mobile-bottom-social-link ul li .login-btn i{
  font-size: 12px;
}

.mobile-bottom-social-link ul li.account-button-area{
  position: relative;
  cursor: pointer;
}

.mobile-bottom-social-link ul li .account-btn-list{
  position: absolute;
  bottom: 40px;
  left: -20px;
  background-color: #fff;
  border-bottom: 0px;
  display: none;
  z-index: 2;
  outline: none;
  transition: all .3s ease-in-out;
  min-width: 155px;
  box-shadow: 0px 1px 16px #0000001f;
  list-style: none;
  padding: 0px 0px;
  border-radius: 4px;
  text-align: left;
}

.mobile-bottom-social-link ul li .account-btn-list::before {
  content: '';
  position: absolute;
  bottom: -14px;
  left: 28px;
  border-top: 7px solid #ffffff;
  border-right: 7px solid #bad71b00;
  border-bottom: 7px solid #10e3d000;
  border-left: 7px solid #005aff00;
}

.mobile-bottom-social-link ul li.account-button-area:hover .account-btn-list{
  display: block;
}

.mobile-bottom-social-link ul li .account-btn-list li {
    margin-top: 5px;
}

.mobile-bottom-social-link ul li .account-btn-list li:last-child {
    margin-bottom: 5px;
}

.mobile-bottom-social-link ul li .account-btn-list li .account-btn-item{
  display: block;
  padding: 8px 15px;
  font-size: 15px;
  color: #475467;
  border: 0px;
  background-color: transparent;
  text-align: left;
  width: 100%;
  cursor: pointer;
  text-transform: uppercase;
  font-weight: 500;
  line-height: normal;
}

.mobile-bottom-social-link ul li .account-btn-list li .account-btn-item:hover{
  color: #005da3;
  background-color: #e5e5e5;
}

.mobile-bottom-social-link ul li .account-btn-list li .account-btn-item i{
  font-size: 12px;
  padding-right: 5px;
}


/* Login Section Style */

.login-section {
  background-image: url(../images/iStock-1364583477-small.jpg);
  background-position: 0 0;
  background-size: cover;
  padding-bottom: 170px;
  padding-top: 170px;
}

.login-area {
  backdrop-filter: blur(5px);
  background-color: #ffffffb3;
  height: 100%;
  width: 400px;
  box-shadow: 0 0 16px #00000045;
  padding: 15px 15px 15px;
  margin: 0 auto;
}

.login-area.forgottenPassword {
  width: 500px;
}

.login-area.forgottenPassword .alert-info {
  border-radius: 0px;
  padding: 10px 15px;
  font-size: 14px;
  line-height: 20px;
}

.login-area .login-logo {
  padding-bottom: 10px;
  padding-left: 0;
  padding-top: 10px;
  width: 100%;
  text-align: center;
  display: inline-block;
}

.login-area .login-logo img {
  width: 100px;
  height: 100px;
}

.login-area label {
  display: block;
  font-weight: 700;
  margin-bottom: 5px;
  font-size: 14px;
}

.login-area .form-control {
  border-radius: 0px;
  background-color: #fff;
  border: 0px;
  width: 100%;
  padding: 6px 12px;
}

.login-area .password-btn {
  background-color: transparent;
  color: #005da3;
  padding: 0px;
  border: 0px;
  font-size: 14px;
}

.login-area .forgot-btn {
  color: #005da3;
  font-size: 14px;
  text-align: left;
  display: inline-block;
  text-decoration: none;
}

.login-area .forgot-btn:hover {
  color: #1b9cd7;
}

.login-area .login-btn {
  background-color: #f7c641;
  color: #333;
  border: 0px;
  font-size: 16px;
  font-weight: 600;
  padding: 10px 15px 10px;
  margin-bottom: 15px;
  transition: all .3s;
}

.login-area .login-btn:hover {
  background-color: #f5821f;
  color: #fff;
}

.passwordArea{
    position: relative;
}

.passwordArea .form-control{
  padding-right: 25px;
}

.passwordArea .password-btn{
    position: absolute;
    right: 5px;
    top: 7px;
}

.error-message{
  color: #dc3545;
  font-size: 15px;
  margin: 0px 0px;
}

/* Banner section Style */

.banner-section {
  width: 100%;
  height: 390px;
  background-image: url(../images/banner.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}

.banner-leftSide {
  background-color: #f7c641;
  height: 100%;
  width: 50px;
  z-index: 100;
  justify-content: center;
  align-items: center;
  box-shadow: 5px 0 15px #0003;
  display: flex;
  left: 0;
  position: absolute;
  text-decoration: none;
  color: #005da3;
}

.find-a-school-link {
  letter-spacing: 2px;
  text-transform: uppercase;
  flex: none;
  font-family: 'acumin-pro-extra-condensed';
  font-size: 27px;
  font-weight: 600;
  margin-left: 10%;
  text-decoration: none;
  transform: rotate(-90deg);
  transition: all .3s;
}

.banner-leftSide:hover {
  background-color: #f5821f;
  -webkit-box-shadow: 3px 0 5px rgba(0, 0, 0, .2);
  box-shadow: 3px 0 5px #0003;
  color: #fff;
}

.banner-content {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0px;
  left: 0px;
  display: flex;
  align-items: center;
}

.banner-title {
  font-size: 85px;
  color: #ededed;
  text-shadow: 0 0 9px rgba(0, 0, 0, .45);
  text-transform: uppercase;
  width: 33%;
  font-weight: 600;
  font-family: 'acumin-pro-extra-condensed';
  margin-left: 100px;
  line-height: 79px;
  letter-spacing: 3px;
}

/* hy ASI Section Style */

.why-section {
  padding: 60px 0px 50px;
  width: 100%;
  display: block;
}

.why-section .why-content-section p {
  font-size: 18px;
  color: #333;
  text-align: center;
  margin: 0px auto 16px;
  /* width: 70%; */
}

/* Explore Section Style */

.explore-section {}

.explore-section h2.title {
  text-align: center;
  margin: 0px 0px 30px;
  text-transform: uppercase;
  color: #005da3;
  font-size: 35px;
  font-family: 'acumin-pro-extra-condensed';
  font-weight: 600;
}

.explore-item {
  background-size: cover;
  height: 220px;
  width: 100%;
  position: relative;
  margin-bottom: 30px;
  box-shadow: 0 10px 15px #00000038;
  background-position: center;
  transition: all 0.3s;
}

.explore-item:hover {
  box-shadow: 0 8px 15px #0000006e;
}

.explore-item a {
  text-decoration: none;
  width: 100%;
  height: 100%;
  display: block;
}

.explore-title-area {
  height: auto;
  opacity: .9;
  width: 100%;
  background-color: #1b9cd7;
  margin-top: auto;
  display: flex;
  align-items: center;
  padding: 5px 10px;
  position: absolute;
  bottom: 0px;
  left: 0px;
}

.explore-item.sup .explore-title-area {
  background-color: #f5821f;
}

.explore-item.bodyboard .explore-title-area {
  background-color: #c44045;
}

.explore-title-image img {
  width: 80px;
}

.explore-title-text h2 {
  color: #fff;
  font-size: 45px;
  opacity: 0.7;
  font-weight: 700;
  font-family: 'acumin-pro-extra-condensed';
  text-transform: uppercase;
  margin: 5px 0px 0px 5px;
}

/* Explore List Section Style */

.explore-list-section {
  width: 100%;
  padding: 60px 0px 50px;
}

.explore-list-area {
  width: 100%;
  border: 1px solid #b1b1b1;
  border-bottom: 0px;
}

.explore-list-item {
  width: 100%;
  display: flex;
}

.explore-list-image-area {
  flex: 0 0 auto;
  width: 32%;
  padding: 20px 20px;
  border-bottom: 1px solid #b1b1b1;
  border-right: 1px solid #b1b1b1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.explore-list-image-area img {
  object-fit: cover;
  max-height: 220px;
}

.explore-list-content-area {
  flex: 0 0 auto;
  width: calc(68% + 1px);
  padding: 20px 20px;
  border-bottom: 1px solid #b1b1b1;
}

.explore-list-content-area h4 {
  font-size: 24px;
  color: #333;
  margin: 0px auto 10px;
  font-weight: 700;
}

.explore-list-content-area p {
  font-size: 20px;
  color: #333;
  margin: 0px auto 5px;
}

.explore-list-content-area a {
  font-size: 20px;
  color: #005da3;
  margin: 0px auto 5px;
  display: block;
  text-decoration: underline;
  word-break: break-all;
}

/* Find School Section Style */

.find-school-section {
  width: 100%;
  padding: 50px 0px 100px;
}

.find-school-title {
  text-align: center;
}

.find-school-title h2 {
  text-transform: uppercase;
  color: #005da3;
  font-size: 40px;
  font-family: 'acumin-pro-extra-condensed';
  margin: 0px 0px 5px;
  font-weight: 600;
  text-align: center;
  letter-spacing: 1.5px;
}

.find-school-title p {
  font-size: 20px;
  color: #333;
  margin: 0px auto 20px;
  text-align: center;
}

.find-school-title a {
  display: inline-block;
  text-align: center;
  text-transform: uppercase;
  color: #fff;
  background-color: #1b9cd7;
  padding: 10px 15px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: 1px;
  transition: 0.2s;
}

.find-school-title a:hover {
  background-color: #005da3;
  color: #fff;
}

.school-map-area {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  width: 100%;
  height: 430px;
  margin-top: 50px;
}

/* Our Courses Section Style */

.course-section {
  background-position: 0 38%;
  background-size: auto 167%;
  background-repeat: no-repeat;
  padding-bottom: 100px;
  padding-top: 100px;
  width: 100%;
  height: auto;
  position: relative;
}

.section-type {
  position: absolute;
  bottom: 0px;
  right: 0px;
  z-index: 1;
}

.section-type h2 {
  display: block;
  font-family: 'acumin-pro-extra-condensed';
  font-size: 400px;
  margin-bottom: 0;
  opacity: .1;
  text-transform: uppercase;
  line-height: 210px;
  font-weight: 700;
}

.course-section-overlay {
  background-color: #0000;
  background-image: linear-gradient(90deg, #e6f2f894, #e6f2f8 61%);
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
}

.course-section .container {
  z-index: 999;
  position: relative;
}

.course-title-area h2 {
  font-family: 'acumin-pro-extra-condensed';
  text-transform: uppercase;
  font-weight: 600;
  font-size: 55px;
  line-height: 50px;
  color: #333;
  letter-spacing: 2px;
  margin: 10px 0px 10px;
}

.course-title-area p {
  font-size: 17px;
  color: #333;
  line-height: 25px;
  margin: 0px 0px 0px;
}

.course-slider-area {
  display: flex;
  width: 100%;
}

.course-slider-item {
  background-size: cover;
  height: 250px;
  width: 100%;
  width: 33.333%;
  position: relative;
  margin-bottom: 30px;
  box-shadow: 0 10px 15px #00000038;
  background-position: center;
  transition: all 0.3s;
  margin-right: 20px;
}

.course-slider-item:hover {
  box-shadow: 0 8px 15px #0000006e;
}

.course-slider-item a {
  text-decoration: none;
  width: 100%;
  height: 100%;
  display: block;
}

.course-slider-title-area {
  height: auto;
  opacity: .9;
  width: 100%;
  background-color: #1b9cd7;
  margin-top: auto;
  display: flex;
  align-items: center;
  padding: 5px 10px;
  position: absolute;
  bottom: 0px;
  left: 0px;
}

.course-slider-item.sup .course-slider-title-area {
  background-color: #f5821f;
}

.course-slider-item.bodyboard .course-slider-title-area {
  background-color: #c44045;
}

.course-slider-title-image img {
  width: 80px;
}

.course-slider-title-text h2 {
  color: #fff;
  font-size: 45px;
  opacity: 0.7;
  font-weight: 700;
  font-family: 'acumin-pro-extra-condensed';
  text-transform: uppercase;
  margin: 5px 0px 0px 5px;
}

.course-slider-name-area {
  width: 100%;
  height: 64px;
  background-color: #000000a6;
  padding: 12px 15px;
  display: flex;
  align-items: center;
}

.course-slider-name-area p {
  font-weight: 600;
  color: #fff;
  font-size: 15px;
  text-transform: uppercase;
  margin: 0px;
  line-height: 20px;
}

/* Latest News Section Style */

.latest-news-section {
  width: 100%;
  padding: 100px 0px 100px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 50% 100%;
  background-attachment: fixed;
}

.latest-news-title h2 {
  font-family: 'acumin-pro-extra-condensed';
  text-transform: uppercase;
  font-weight: 600;
  font-size: 55px;
  line-height: 50px;
  color: #fff;
  letter-spacing: 2px;
  margin: 10px 0px 10px;
  text-align: center;
  text-shadow: 0 0 9px #333;
}

.latest-news-title p {
  font-size: 19px;
  color: #fff;
  line-height: 25px;
  margin: 0px 0px 0px;
  text-align: center;
  font-weight: 500;
  text-shadow: 0 0 9px #333;
  margin-bottom: 50px;
}

.latest-news-item {
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 0 15px #0003;
  transition: 0.3s;
}

.latest-news-item a {
  text-decoration: none;
}

.latest-news-item:hover {
  box-shadow: 0 8px 15px #0000002e;
}

.latest-news-item .news-image-area {
  width: 100%;
  overflow: hidden;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
}

.latest-news-item .news-image-area img {
  width: 100%;
  height: 280px;
  max-width: 100%;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
}

.latest-news-item .news-content-area {
  padding: 30px 25px;
  min-height: 240px;
}

.latest-news-item .news-content-area h4 {
  font-size: 20px;
  color: #005da3;
  margin: 0px auto 10px;
  font-weight: 600;
  transition: 0.3s;
}

.latest-news-item a:hover .news-content-area h4 {
  color: #f7c641;
}

.latest-news-item .news-content-area p.post-title {
  font-size: 14px;
  color: #212529bf;
  margin: 0px auto 10px;
}

.latest-news-item .news-content-area p {
  font-size: 17px;
  color: #333;
  margin: 0px auto 10px;
}


/* Footer Section Style */

.footer-section {
  width: 100%;
  padding: 60px 0px 0px;
  border-top: 1px dashed #98a2b3;
}

.footer-content-area a img {
  width: 64px;
  height: 64px;
}

.footer-content-area p {
  font-size: 18px;
  color: #333;
  margin: 20px 0px 0px;
}

.footer-link-area ul {
  margin: 0px;
  padding: 0px;
}

.footer-link-area ul li {
  display: block;
}

.footer-link-area ul li a {
  font-size: 16px;
  color: #005da3;
  padding: 6px 0px 6px;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  transition: all .3s;
}

.footer-link-area ul li a:hover {
  color: #344054;
}

.footer-socialLink-area .social-item {
  width: 100%;
}

.footer-socialLink-area .social-item a {
  font-size: 16px;
  color: #005da3;
  padding: 6px 0px 6px;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  transition: all .3s;
}

.footer-socialLink-area .social-item a:hover {
  color: #344054;
}

.footer-socialLink-area .social-item a svg {
  color: #98a2b3;
  margin-right: 15px;
}

.footer-bottom-area {
  background-color: #0359a1;
  padding: 10px 0px 8px;
  margin-top: 60px;
}

.footer-bottom-left p {
  color: #fff;
  font-size: 14px;
  margin: 0px;
}

.footer-bottom-right ul {
  padding: 0px;
  margin: 0px;
  text-align: right;
}

.footer-bottom-right ul li {
  display: inline-block;
}

.footer-bottom-right ul li:first-child a{
  padding-left: 0px;
}

.footer-bottom-right ul li a {
  color: #fff;
  font-size: 14px;
  display: inline-block;
  padding: 0px 0px 0px 20px;
  text-decoration: none;
  transition: all .3s;
}

.footer-bottom-right ul li a:hover {
  color: #fccf55;
}



/* ------------about-page ------------*/

/* single-banner-section */
.single-page-banner-section {
	background-position: top center;
	background-size: cover;
	position: relative;
	z-index: 1;
	padding: 110px 0;
	text-align: center;
}

.single-page-banner-section::before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    content: "";
    width: 100%;
    height: 100%;
    background-color: rgb(4 4 4 / 29%);
}

.single-page-banner-description{
  position: relative;
}

.single-page-banner-description h1 {
	font-size: 70px;
	line-height: 80px;
	color: #fff;
	margin: 0 0 10px;
	font-weight: 800;
	position: relative;
	font-family: "acumin-pro-extra-condensed";
	text-transform: uppercase;
	text-shadow: 3px 3px 1px rgba(0,0,0,.3);
  letter-spacing: 1px;
}

.single-page-banner-description p{
  font-size: 16px;
  line-height: 25px;
  color: #fff;
  width: 35%;
  margin: 0px auto 0px;
}

.section-padding {
  padding: 60px 0;
}

.about-block p {
  font-size: 17px;
  color: rgb(51, 51, 51);
  line-height: 26px;
  padding-bottom: 8px;
  margin: 0;
}

.about-block h2 {
  color: #005da3;
  font-size: 30px;
  line-height: 30px;
  font-weight: 800;
  font-family: 'acumin-pro-extra-condensed';
  letter-spacing: 1.5px;
}

.about-block h3 {
	color: #000;
	font-size: 25px;
	line-height: 28px;
	font-weight: 600;
	border-bottom: 1px solid #33333342;
	padding-bottom: 8px;
	padding-top: 25px;
	margin: 0;
	display: flex;
	align-items: center;
  font-family: 'acumin-pro-extra-condensed';
  letter-spacing: 1.3px;
}
.about-block h4 {
  color: #000;
  font-size: 22px;
  line-height: 27px;
  font-weight: 600;
  font-family: 'acumin-pro-extra-condensed';
  letter-spacing: 1.2px;
}
.about-block h5 {
  color: #000;
  font-size: 20px;
  line-height: 25px;
  font-weight: 600;
  font-family: 'acumin-pro-extra-condensed';
  letter-spacing: 1px;
}
.about-block h6 {
	color: #005da3;
	font-size: 27px;
	line-height: 33px;
	font-weight: 800;
  font-family: 'acumin-pro-extra-condensed';
  letter-spacing: 1px;
}
.hdngBorder {
  width: 70px;
  height: 3px;
  background-color: #005da3;
  margin-bottom: 20px;
}

.about-block-left img {
  height: 400px;
  width: 97%;
  border-radius: 10px;
}

.about-block a {
 font-size: 18px;
  color: rgb(0, 93, 163);
  margin: 0px auto 5px;
  display: block;

}
.about-block a:hover {
  color: #f7c641;
    text-decoration: underline;
}


.about-block ul li {
	font-size: 18px;
	color: rgb(51, 51, 51);
	line-height: 24px;
	padding-bottom: 10px;
	margin: 0;
}

.about-block ul li a {
  color: rgb(0, 93, 163);
  display: inline-block;
}

.about-block ul {
  padding-left: 32px;
}

.about-block p a {
	color: rgb(0, 93, 163);
	display: inline-block;
	margin: 0;
}

.about-block img.inside-location-img {
  height: 150px;
}


/*---------- contact-page ------------------*/

.contact-block {
	display: flex;
	margin: 35px 0;
	align-items: center;
  border: 2px solid #e5eff791;
}
.contact-block:hover {
	border: 2px solid #70bef978;
}
.contact-block p {
	font-size: 18px;
	color: rgb(51, 51, 51);
	line-height: 28px;
	padding-bottom: 5px;
	margin: 0;
}
.contact-block p a {
	color: rgb(0, 93, 163);

}
.contact-block h2 {
	color: #000;
	font-size: 22px;
	line-height: 29px;
	font-weight: 600;
}
.cuntry-flax {
	width: 28%;
	margin-right: 20px;
	height: 100%;
}
.cuntry-flax img {
	border-radius: 10px;
	width: 100%;
	height: 250px;
	object-fit: cover;
  	box-shadow: 0 1px 2px 0 rgba(58, 57, 68, 0.2);
}
.contact-details{
  width: 72%;
}

/* ------------surf-wise-page------------------ */
.surf-wise-page-block .cuntry-flax {
	width: 60%;
}
.surf-wise-page-block .contact-block {
	background: #086aa70d;
	border-radius: 10px;
	padding: 16px;
	margin-bottom: 10px;
}

.surf-wise-page-block .surf-wise-learning-block .cuntry-flax {
  width: 30%;
}
.surf-wise-page-block .surf-wise-learning-block .cuntry-flax img {
	height: 240px;
}
.surf-wise-page-block .surf-wise-learning-block.surf-wise-learning-block-broken .contact-block {
	flex-wrap: wrap;
	padding: 10px;
  transition: 0.2s;
}
.surf-wise-page-block .surf-wise-learning-block.surf-wise-learning-block-broken .contact-block:hover {
	box-shadow: 0 2px 6px rgba(0, 0, 0, 0.11);
}
.surf-wise-page-block .surf-wise-learning-block.surf-wise-learning-block-broken .contact-block a {
	display: inline-block;
	text-align: center;
	text-transform: uppercase;
	color: #fff;
	background-color: #1b9cd7;
	padding: 0px 20px;
	font-size: 16px;
	font-weight: 600;
	text-decoration: none;
	letter-spacing: 1px;
	transition: 0.2s;
	line-height: 44px;
	margin-top: 8px;
  border-radius: 5px;
}
.surf-wise-page-block .surf-wise-learning-block.surf-wise-learning-block-broken .contact-block a:hover {
	background-color: #005da3;
}
.surf-wise-page-block .surf-wise-learning-block.surf-wise-learning-block-broken .cuntry-flax {
	width: 100%;
	margin: 0;
}
.surf-wise-page-block .surf-wise-learning-block.surf-wise-learning-block-broken .contact-details {
	width: 100%;
	margin: 25px 10px 10px 10px;
}
.flag img {
	width: 35px;
	height: 35px;
	border-radius: 50%;
	margin-right: 11px;
	border: 2px solid #0000001c;
}

/* New List Style */

.news-category-filter{
  width: 250px;
  margin-left: auto;
}

.news-category-filter label{
  width: 100%;
  padding: 0px 5px 5px;
  font-size: 16px;
  display: inline-block;
  color: #005da3;
  font-weight: 600;
}

.news-category-filter select{
  width: 100%;
  padding: 8px 5px;
  border-radius: 5px;
  color: #333;
  font-size: 15px;
  background-color: #086aa70a;
  border: 1px solid #ccc;
  cursor: pointer;
  outline: none;
  box-shadow: none;
}

.newsList-title{
  margin: 0px 0px 50px;
  border-bottom: 1px solid #33333342;
}

.newsList-title h2{
  color: #005da3;
  font-size: 32px;
  line-height: 30px;
  font-weight: 800;
  font-family: 'acumin-pro-extra-condensed';
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: -1px;
}

.newsList-title h2 span{
  display: inline-block;
  padding-bottom: 10px;
  padding-right: 5px;
  border-bottom: 3px solid #005da3;
}

.latest-news-item .news-image-area img{
  transform: scale(1);
  transition: all 1.5s ease-out;
}

.latest-news-item:hover .news-image-area img{
  transform: scale(1.1);
}

.section-details-padding{
  padding: 40px 0px;
}

.news-details-main-image{
  margin-bottom: 30px;
}

.news-details-main-image img{
  height: 400px;
  width: 100%;
  border-radius: 10px;
}

.news-details-top-title-area h2{
  color: #005da3;
  font-size: 35px;
  line-height: 40px;
  font-weight: 600;
  font-family: 'acumin-pro-extra-condensed';
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 15px;
}

.news-details-top-title-area p i{
  color: #666;
  font-size: 17px;
}

.news-details-top-title-area p span{
  color: #333;
  font-size: 14px;
  padding-left: 5px;
}

.find-school-filter-area{
     background-color: #1b9cd7;
    padding: 30px 30px;
    margin: 20px 0px 20px;
    border-top-right-radius: 0px;
    border-bottom-right-radius: 0px;
    min-height: 405px;
}

.find-school-filter-area ul{
  padding: 0px;
  display: flex;
  width: 100%;
  list-style: none;
  margin: 0px 0px 20px;
}

.find-school-filter-area ul li{
  width: 50%;
  padding: 0px;
  margin: 0px;
}

.find-school-filter-area ul li .find-school-btn{
  display: inline-block;
  text-align: center;
  text-transform: uppercase;
  color: #333;
  background-color: #fff;
  padding: 10px 15px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: 1px;
  transition: 0.2s;
  border: 0px;
  border-radius: 5px;
  width: 100%;
  border-radius: 0px;
}

.find-school-filter-area ul li .find-school-btn.active{
  background-color: #f5821f;
  color: #fff;
}


/* 30-05-2025 */

.v-toast{
    bottom: inherit!important;
    padding: 50px 30px!important;
}

.v-toast__item--success {
    background-color: #2bb95d!important;
}

.v-toast__item {
    min-height: 50px!important;
}

.v-toast__item .v-toast__text {
    padding: 10px 15px!important;
}

/* 13-06-2025 Custom Accordion Style*/

.content-accordion-area{

}

.content-accordion-area .content-accordion-item{
  background: #ffffff0a;
  border-radius: 10px;
  box-shadow: 0px 0px 12px 3px #0000002b;
  margin: 30px 0px 30px;
}

.content-accordion-item .content-accordion-item-title{
  position: relative;
  display: block;
  cursor: pointer;
  padding-right: 20px;
  text-decoration: none;
  background-color: #dfecf8;
  padding: 20px 20px 15px;
  border-radius: 10px;
  margin: 0px;
}

.content-accordion-item.active .content-accordion-item-title{
  border-bottom-left-radius: 0px;
  border-bottom-right-radius: 0px;
}

.accordion-header.content-accordion-item-title button{
  background: transparent;
  border: 0px;
  padding: 0px;
  border-radius: 0px;
  box-shadow: none;
  border-radius: 0px;
  color: #005da3;
  font-size: 30px;
  line-height: 30px;
  font-weight: 800;
  border: 0px;
  background: transparent;
  cursor: pointer;
  font-family: 'acumin-pro-extra-condensed';
  letter-spacing: 1.5px;
}

.content-accordion-item-title button::after{
  display: none;
}

.content-accordion-item .content-accordion-item-title::before{
  content: "\f054";
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  font-size: 16px;
  color: #0b67ad;
  position: absolute;
  top: 50%;
  display: block;
  transform: translateY(-50%);
  right: 18px;
  transition-duration: 0.3s;
}

.content-accordion-item.active .content-accordion-item-title::before{
  transform: translateY(-50%) rotate(90deg);
}

.content-accordion-item .content-accordion-text{
  padding: 20px 20px 20px;
  display: none;
  transition-duration: 0.3s;
}

.content-accordion-item.active .content-accordion-text{
  display: block;
  transition-duration: 0.3s;
}

.content-accordion-item.active .content-accordion-text .accordion-body{
  padding: 0px;
}

.accordionSpace{
  display: none;
}

.remove-accordion{
  display: none;
}

/* 13-06-2025 Custom Accordion Style End*/

/* 01-07-2025 Page Pagination */

.table-pagination {
    padding: 30px 0px 10px;
}

.table-pagination .Pagination {
    margin: 0px;
    padding: 0px;
    text-align: center;
    display: flex;
    justify-content: center;
}

.table-pagination .Pagination li:first-child {
    display: none;
}

.table-pagination .Pagination li:last-child {
    display: none;
}

.table-pagination .Pagination li {
    background-color: #f0f0f0;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: #333 !important;
    margin-left: 10px;
}

.table-pagination .Pagination li:hover:has(> .Control.Control-active) {
    background-color: #096cb7 !important;
    color: #fff !important;
    cursor: pointer;
}

.table-pagination .Pagination .PaginationControl:hover .Control.Control-active {
    color: #fff !important;
    fill: #fff !important;
    width: 20px;
    height: 20px;
}

.table-pagination .Pagination .PaginationControl {
    background-color: #f0f0f0;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: #212b36;
    margin-left: 10px;
}

.table-pagination .Pagination li .Page:hover {
    border: 0px;
    width: 100%;
    height: 100%;
    background-color: #096cb7 !important;
    color: #fff !important;
    border-radius: 50%;
    font-weight: 600;
    margin: 0px;
    padding: 0px;
    cursor: pointer;
}

.table-pagination .Pagination li .Page.Page-active {
    border: 0px;
    width: 100%;
    height: 100%;
    background-color: #096cb7 !important;
    color: #fff !important;
    border-radius: 50%;
    font-weight: 600;
    margin: 0px;
    padding: 0px;
}

/* End 01-07-2025 Page Pagination */


/* New Style Added 27-10-2025 */

.school-search-area .form-control{
  border-radius: 0px;
  outline: none;
  box-shadow: none;
}

.school-search-area .form-select{
  border-radius: 0px;
  outline: none;
  box-shadow: none;
}

.school-search-area{
  display: none;
}

.school-search-area.active{
  display: block;
}

.clear-btn{
  background: #bbbbbb;
  border: 0px;
  color: #fff;
  transition: 0.3s;
  border-radius: 0px;
}

.clear-btn:hover{
  background-color: #a7a7a7;
  color: #fff;
}

.find-map-area{
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
  min-height: 407px;
  margin-top: 20px;
}

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

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

.findSchool-title {
  margin: 0px 0px 20px;
  border-bottom: 1px solid #33333342;
}

.findSchool-title h2 {
  color: #005da3;
  font-size: 32px;
  line-height: 30px;
  font-weight: 800;
  font-family: 'acumin-pro-extra-condensed';
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: -1px;
}

.findSchool-title h2 span{
  display: inline-block;
  padding-bottom: 10px;
  padding-right: 5px;
  border-bottom: 3px solid #005da3;
}

.findSchool-text {
    font-size: 17px;
    color: #333;
    line-height: 26px;
    padding-bottom: 8px;
    margin: 0;
}

.find-school-result-section{
  background-color: #1b9cd71a;
  padding: 50px 0px;
}

.findSchool-resultTitle {
  margin: 0px 0px 30px;
  border-bottom: 1px solid #33333342;
}

.findSchool-resultTitle h2 {
  color: #005da3;
  font-size: 32px;
  line-height: 30px;
  font-weight: 800;
  font-family: 'acumin-pro-extra-condensed';
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: -1px;
}

.findSchool-resultTitle h2 span{
  display: inline-block;
  padding-bottom: 10px;
  padding-right: 5px;
  border-bottom: 3px solid #005da3;
}

.school-item{
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 0 15px #0003;
  transition: 0.3s;
  height: 100%;
}

.school-item:hover{
  box-shadow: 0 8px 15px #0000002e;
}

.school-title-area{
  background-color: #1b9cd7;
  color: #fff;
  height: auto;
  text-align: left;
  padding: 10px 15px 2px 15px;
  display: flex;
  width: 100%;
  align-items: center;
  min-height: 48px;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
}

.school-title-area.sup{
  background-color: #f5821f;
}

.school-title-area.bboard{
  background-color: #c44045;
}

.school-title-area h4{
  font-family: 'acumin-pro-extra-condensed' !important;
  font-size: 35px;
  line-height: 0;
  margin: 0px;
  padding: 0px;
  font-weight: 600;
  letter-spacing: 1px;
  display: block;
  text-transform: uppercase;
}

.schoolResult-area-image{
  width: 100%;
  overflow: hidden;
}

.schoolResult-area-image img{
  width: 100%;
  height: 220px;
  object-fit: cover;
  transform: scale(1);
  transition: all 1.5s ease-out;
}

.school-item:hover .schoolResult-area-image img{
  transform: scale(1.1);
}

.school-content-area{
  padding: 25px 20px;
  min-height: 180px;
}

.school-content-area h4{
  font-size: 20px;
  color: #005da3;
  margin: 0px 0px 15px;
  font-weight: 600;
  transition: 0.3s;
}

.school-item:hover .school-content-area h4{
  color: #f7c641;
}

.school-content-area ul{
  list-style: none;
}

.school-content-area ul li{
  font-size: 14px;
  color: #212529bf;
  margin: 0px 0px 8px;
  position: relative;
  padding-left: 20px;
  line-height: 18px;
}

.school-item:hover .school-content-area ul li{
  color: #2b5278bf
}

.school-content-area ul li:last-child{
  margin-bottom: 0px;
}

.school-content-area ul li::before{
  content: "\f3c5";
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  position: absolute;
  top: 50%;
  left: 0px;
  transform:translate(0px, -50%);
  font-size: 13px;
}

/*  */

.find-course-section{
  background-color: #1b9cd71a;
}

.findCourse-title {
  margin: 0px 0px 50px;
  border-bottom: 1px solid #33333342;
}

.findCourse-title h2 {
  color: #005da3;
  font-size: 32px;
  line-height: 30px;
  font-weight: 800;
  font-family: 'acumin-pro-extra-condensed';
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: -1px;
}

.findCourse-title h2 span{
  display: inline-block;
  padding-bottom: 10px;
  padding-right: 5px;
  border-bottom: 3px solid #005da3;
}

.findCourse-title h2 span.mainheading-subtitle{
    display: inline-block;
    padding-bottom: 8px;
    padding-right: 0;
    border-bottom: 0;
    color: #f5821f;
}

.course-filter-area{
  position: relative;
  padding: 30px 25px 10px 25px;
  border: 1px solid #ececec;
  border-radius: 15px;
  box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.05);
  background: #fff;
  position: sticky;
  top: 50px;
  height: 700px;
}

.filter-search-fild{
    position: relative;
    margin-bottom: 20px;
}

.filter-search-fild .form-control{
  height: 46px;
  padding: 14px 10px;
  outline: none;
  box-shadow: none;
}

.filter-search-fild .form-control:focus{
  border-color: #ececec;
  padding-top: 14px!important;
}

.filter-search-fild>.form-control:not(:placeholder-shown) {
  padding-top: 12px;
  padding-bottom: 10px;
  font-size: 15px;
  font-weight: 500;
}

.filter-search-fild label{
  top: 50%;
  transform: translateY(-50%);
  left: 9px;
  padding: 0;
  border: none;
  height: auto;
  font-size: calc(13px + 3 * (100vw - 320px) / 1600);
  color: #4a5568;
  transition: all .3s ease-in-out;
}

.filter-search-fild::after{
  content: "\f002";
  position: absolute;
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  right: 0;
  border-left: 1px solid #ddd;
  font-size: 15px;
  padding: 0 18px;
  height: 60%;
  display: flex;
  align-items: center;
  color: #4a5568;
}

.filter-search-fild>.form-control:focus~label, .filter-search-fild>.form-control:not(:placeholder-shown)~label, .filter-search-fild>.form-select~label {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: calc(14px + 4 * (100vw - 320px) / 1600);
  opacity: .95;
  top: -5px;
  left: 7px;
  height: 30px;
  background-color: #fff;
  padding: 0 5px;
  opacity: 1;
  transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem);
}

input[type="search"]::-webkit-search-cancel-button {
 appearance: none;
}

.filter-course-list-area{
  height: calc(100% - 80px);
  overflow: hidden;
  overflow-y: auto;
}

.filter-course-list-area::-webkit-scrollbar {
  width: 5px;
  height: 5px;
}

.filter-course-list-area::-webkit-scrollbar-track-piece {
  background-color: #dadde0;
}

.filter-course-list-area::-webkit-scrollbar-thumb:vertical {
  height: 20px;
  background-color: #898a8a;
}

.filter-course-item-area{
  margin-bottom: 30px;
}

.filter-course-title {
  margin: 0px 0px 20px;
  border-bottom: 1px solid #33333342;
}

.filter-course-title h4 {
  color: #333;
  font-size: 24px;
  line-height: 30px;
  font-weight: 800;
  font-family: 'acumin-pro-extra-condensed';
  letter-spacing: 1.5px;
  margin-bottom: -1px;
  text-transform: uppercase;
}

.filter-course-title h4 span{
  display: inline-block;
  padding-bottom: 3px;
  padding-right: 5px;
  border-bottom: 3px solid #005da3;
}

.filter-item-list{
  margin-bottom: 8px;
}

.filter-item-list .form-check-input{
  display: none;
}

.filter-item-list .form-check-label {
    position: relative;
    cursor: pointer;
    color: #6c757d;
    padding: 0;
    vertical-align: middle;
}

.filter-item-list .form-check-label::before {
    content: "";
    border: 2px solid #ced4da;
    height: 20px;
    width: 20px;
    margin: 0px 13px 0 0;
    display: inline-block;
    vertical-align: middle;
    border-radius: 2px;
}

.filter-item-list input[type=checkbox] + .form-check-label::after {
    content: "";
    width: 11px;
    position: absolute;
    top: 50%;
    left: 5px;
    opacity: 0;
    height: 6px;
    border-left: 2px solid #fff;
    border-bottom: 2px solid #fff;
    transform: translateY(-65%) rotate(-45deg);
}

.filter-item-list input[type=checkbox]:checked + .form-check-label::before {
    background-color: #005da3;
    border-color: #005da3;
}

.filter-item-list input[type=checkbox]:checked + .form-check-label::after {
    opacity: 1;
}

.filter-item-list .form-check-label span {
    vertical-align: middle;
}

.results-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.results-title {
  color: #005da3;
  font-size: 32px;
  line-height: 30px;
  font-weight: 800;
  font-family: 'acumin-pro-extra-condensed';
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 0px;
}

.course-short-selectArea select{
  padding: 7px 10px;
  cursor: pointer;
  color: #fff;
  background-color: #1b9cd7;
  border: 0px;
  font-size: 16px;
  border-radius: 6px;
  width: 180px;
  outline: none;
  box-shadow: none;
  appearance: none;
  background-image: url(../images/dropdown.png);
  background-repeat: no-repeat;
  background-position: right 0.7rem top 50%;
  background-size: 0.65rem auto;
  text-align: center;
}

.course-short-selectArea select:hover{
  color: #fff;
  background-color: #005da3;
}

.course-short-selectArea select option{
  background-color: #fff;
  color: #005da3;
  cursor: pointer;
}

.course-short-selectArea select option:hover{
  color: #f7c641;
}

.course-results-item{
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  margin-bottom: 1.5rem;
  border: none;
  overflow: hidden;
  transition: all 0.3s ease;
  position: relative;
  padding: 20px 25px;
}

.course-results-item.surf{
  border: 2px solid #1b9cd7;
}

.course-results-item.sup{
  border: 2px solid #f5821f;
}

.course-results-item.bboard{
  border: 2px solid #c44045;
}

.course-results-item:hover{
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.course-results-item-title{
  /* color: #005da3; */
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 15px;
}

.course-results-p{
  color: #005da3;
  font-size: smaller;
}

.course-results-item-desc{
  margin-bottom: 20px;
}

.course-results-item-desc p{
  font-size: 14px;
  line-height: 22px;
  color: #333;
  margin-bottom: 0px;
}

.course-results-item-footer a{
  margin-right: 10px;
}

/* .course-results-item-footer .btn-course-details{
  border: 2px solid #6c757d;
  color: #6c757d;
  padding: 7px 15px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.3s ease;
  display: inline-block;
}

.course-results-item-footer .btn-course-details:hover{
  background-color: #6c757d;
  border-color: #6c757d;
  color: #fff;
  transform: translateY(-1px);
} */

.course-results-item-footer .btn-course-details{
  border: 2px solid #cee5c0;
  color: #333;
  background-color: #cee5c0;
  padding: 7px 15px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.3s ease;
  display: inline-block;
}

.course-results-item-footer .btn-course-details:hover{
  background-color: #86bb67;
  border: 2px solid #86bb67;
  color: #fff;
  transform: translateY(-1px);
}

.course-results-item-footer .btn-event-details{
  border: 2px solid #b4d9f0;
  color: #333;
  background-color: #b4d9f0;
  padding: 7px 15px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.3s ease;
  display: inline-block;
}

.course-results-item-footer .btn-event-details:hover{
  background-color: #5796bd;
  border: 2px solid #5796bd;
  color: #fff;
  transform: translateY(-1px);
}

.course-results-item-footer .btn-enrol-options{
  background-color: #fccf55;
  border: 2px solid #fccf55;
  color: #333;
  padding: 7px 15px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.3s ease;
  display: inline-block;
}

.course-results-item-footer .btn-enrol-options:hover{
  background-color: #f5821f;
  border: 2px solid #f5821f;
  color: #fff;
  transform: translateY(-1px);
}

.course-type{
  color: #333;
  padding: 6px 14px 4px 14px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  background-color: #fff;
  display: inline-block;
  margin-bottom: 15px;
}

.course-type.workshop{
  color: #1b9cd7;
  background-color: #9be0ff4a;
}

.course-place-area ul{
  list-style: none;
  margin: 0px;
  padding: 0px;
}

.course-place-area ul li{
  display: inline-block;
  font-size: 15px;
  color: #555;
  padding-right: 35px;
  padding-bottom: 20px;
}

.course-place-area ul li:last-child{
  padding-right: 0px;
}

.course-place-area ul li i{
  padding-right: 7px;
  color: #879ea9;
}

.course-results-item-footer .course-amount{
  background-color: #fff;
  border: 2px solid #fff;
  color: #05835b;
  padding: 7px 15px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.3s ease;
  display: inline-block;
  margin-right: 20px;
  box-shadow: 0px 0px 8px 1px #00000040;
  text-align: center;
}

.course-results-item-footer .btnCourse{
  color: #5e5e5e;
  padding: 7px 15px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.3s ease;
  display: inline-block;
  margin-right: 25px;
  min-width: 105px;
  text-align: center;
  box-shadow: 0px 0px 8px 1px #00000040;
}

.course-results-item-footer .btnCourse.btn-courseInfo{
  background-color: #e8f5fb;
  border: 2px solid #e8f5fb;
}

.course-results-item-footer .btnCourse.btn-courseInfo:hover{
  background-color: #b0e6ff;
  border: 2px solid #b0e6ff;
  color: #333;
  transform: translateY(-1px);
}

.course-results-item-footer .btnCourse.btn-eventInfo{
  background-color: #e5ffe1;
  border: 2px solid #e5ffe1;
}

.course-results-item-footer .btnCourse.btn-eventInfo:hover{
  background-color: #c7f1c0;
  border: 2px solid #c7f1c0;
  color: #333;
  transform: translateY(-1px);
}

.course-results-item-footer .btnCourse.btn-enquire{
 background-color: #ffd6f1;
  border: 2px solid #ffd6f1;
}

.course-results-item-footer .btnCourse.btn-enquire:hover{
  background-color: #f7c1e4;
  border: 2px solid #f7c1e4;
  color: #333;
  transform: translateY(-1px);
}

.course-results-item-footer .btnCourse.btn-enrol{
  background-color: #fccf55;
  border: 2px solid #fccf55;
  margin-right: 0px;
}

.course-results-item-footer .btnCourse.btn-enrol:hover{
  background-color: #f5821f;
  border: 2px solid #f5821f;
  color: #333;
  transform: translateY(-1px);
}

/* 28-10-2025 Event Overview css */

/* .mainheading {
    font-family: acumin-pro-extra-condensed, sans-serif;
    font-size: 3em;
    font-weight: 600;
    line-height: 42px;
    text-transform: uppercase;
    color: #005da3;
    margin-bottom: 0;
} */

.findCourse-title h2.bboard{
  color: #c44045;
}

.findCourse-title h2.bboard span{
  border-bottom: 3px solid #c44045;
}

.findCourse-title h2.surf{
  color: #1b9cd7;
}

.findCourse-title h2.surf span{
  border-bottom: 3px solid #1b9cd7;
}

.findCourse-title h2.sup{
  color: #f5821f;
}

.findCourse-title h2.sup span{
  border-bottom: 3px solid #f5821f;
}


.titleSection {
    margin: 50px 0;
}
.subnav-listing {
    display: flex;
    margin: 30px 0;
}
.subnav-listing li {
    list-style: none;
    margin-right: 10px;
}

.subnav-listing li a {
    list-style: none;
    padding: 10px 15px;
    margin-right: 5px;
    border-radius: 6px;
    color: #005da3;
    display: inline-block;
    font-size: 16px;
    border: 2px solid #005da3;
    background: rgba(0,0,0,0);
}
.subnav-listing li a:hover {
    border: 2px solid #1b9cd7;
    color: #1b9cd7;
}
.mapOverview {
    padding: 40px 0;
}
.mapOverview h3 {
    color: #005da3;
    font-size: 24px;
    font-weight: 600;
    width: 100%;
    margin-bottom: 20px;
}
.mapOverview h4 {
    color: #005da3;
    font-size: 20px;
    margin-bottom: 15px;
    font-weight: 600;
}

.mapOverview.bboard h4{
  color: #c44045;
}

.mapOverview.surf h4{
  color: #1b9cd7;
}

.mapOverview.sup h4{
  color: #f5821f;
}

.overViewDetails p {
    padding-bottom: 0;
    font-size: 17px;
    color: #333;
    line-height: 26px;
    padding-bottom: 8px;
    margin: 0;
}

.overViewDetails p.location-list{
  font-size: 16px;
  color: #212529bf;
  display: flex;
  align-items: center;
}

.overViewDetails p.location-list svg{
  width: 16px;
  fill: #212529bf;
  margin-right: 5px;
}

.overViewDetails h5 img {
    width: 85px;
}
.overViewDetails h5 {
    font-family: acumin-pro-extra-condensed, sans-serif;
    font-size: 40px;
    font-weight: 600;
    line-height: .85;
    text-transform: uppercase;
    color: #005da3;
}

.mapOverview.bboard .overViewDetails h5{
  color: #c44045;
}

.mapOverview.surf .overViewDetails h5{
  color: #1b9cd7;
}

.mapOverview.sup .overViewDetails h5{
  color: #f5821f;
}
.overViewDetails ul li {
    list-style: none;
    padding-bottom: 0;
    font-size: 17px;
    color: #333;
    line-height: 18px;
    padding-bottom: 8px;
    margin: 0;
}
.overViewDetails {
    padding: 10px 20px;
    border: 1px solid #ccc;
    width: 100%;
    height: 200px;
    margin-bottom: 15px;
}
.listingContent h3 {
    color: #005da3;
    font-weight: 600;
    font-size: 32px;
    margin-bottom: 20px;
    font-family: 'acumin-pro-extra-condensed';
}
/* .listingContent h4 {
    color: #005da3;
    font-size: 22px;
    line-height: 27px;
    font-weight: 600;
    font-family: 'acumin-pro-extra-condensed';
    letter-spacing: 1.2px;
    border-bottom: 1px dashed #dee2e6;
    margin: 15px 0;
} */
.listingContent a {
    display: inline-block;
}
.listingContent {
    margin-bottom: 20px;
}
/* .evenListing{
background: #f4f4f4;
}
.oddlisting {
  background: #ffffff;
} */
.listingContent ul {
    margin-bottom: 20px;
}
/* .listingContent ul li {
    list-style: none;
} */
.subnav-listing {
    display: flex;
    margin: 30px 0;
    padding-left: 0 !important;
}
.listingContent h5 a {
    color: #005da3;
}
.listingContent h5 a:hover {
    color: #fccf55;
}
.pageLink {
    color: #005da3;
}
.pageLink:hover {
    color: #fccf55;
}
.listingContent p {
    font-size: 17px;
    color: #333;
    line-height: 26px;
    padding-bottom: 8px;
    margin: 0;
}
.page-btn {
    margin: 20px 0;
}
.page-btn a {
    text-transform: uppercase;
    background-color: #fccf55;
    border: 2px solid #fccf55;
    color: #333;
    padding: 7px 15px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}
.page-btn a:hover {
    background-color: #f5821f;
    border: 2px solid #f5821f;
    color: #fff;
}



/* 29-10-2025 Algarve Surf School start */


.bannerNextImage img {
    width: 100%;
    height: 455px;
    object-fit: cover;
}
.overViewDetails p a {
    color: #005da3;
}

.overViewDetails p a:hover{
    text-decoration: underline;
    color: #f7c641;
}

.overViewDetails p a svg{
  margin-right: 5px;
}

.facilities-box {
    display: flex;
    width: 100%;
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin: 30px 0;
}
.content-accordion-text ul {
    padding-left: 32px;
}
.content-accordion-text ul li {
    font-size: 18px;
    color: #333;
    line-height: 24px;
    padding-bottom: 10px;
    margin: 0;
}
.content-accordion-item-title {
    color: #005da3;
    font-size: 30px;
    line-height: 30px;
    font-weight: 800;
    font-family: 'acumin-pro-extra-condensed';
    letter-spacing: 1.8px;
    text-transform: uppercase;
}

/* 30-10-2025 Sup Enquiry Form Start */


.FormSectionTitle h2 {
    color: #f5821f;
    font-size: 32px;
    line-height: 30px;
    font-weight: 800;
    font-family: 'acumin-pro-extra-condensed';
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 0px;
    border-bottom: 1px solid #f5821f;
}

.FormSectionTitle h2 span {
    display: inline-block;
    padding-bottom: 10px;
    padding-right: 5px;
    border-bottom: 3px solid #f5821f;
}
.FormSectionTitle {
    margin: 50px 0 0;
}
.FormSectionTitle h4 {
    color: #333;
    font-size: 22px;
    line-height: 27px;
    font-weight: 600;
    font-family: 'acumin-pro-extra-condensed';
    letter-spacing: 1.2px;
    margin: 15px 0 0;
}
input[type=number] {
    -moz-appearance: textfield;
}
/* Chrome, Safari, Edge */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.supFormBox .form-control:focus {
    border-color: #f5821f;
    outline: 0;
    box-shadow: 0 0 0 0.25rem #f5831f50;
}
.supFormBox {
    padding: 30px;
    background: #fde0c66e;
    border-radius: 15px;
    margin: 20px 0 50px;
}
.formWraper {
    background: #f5821f1a;
}
.supFormBox .form-group label {
    font-size: 16px;
    /* font-family: 'acumin-pro-extra-condensed'; */
    margin-bottom: 10px;
}

.supFormBox .form-group input[type="text"],
.supFormBox .form-group input[type="tel"],
.supFormBox .form-group input[type="number"],
.supFormBox .form-group input[type="email"],
.supFormBox .form-group input[type="date"]
{
    width: 100%;
    height: 45px;
    border-radius: 0;
    border: 1px solid #f5821f;
}

.supFormBox .form-group input[type="checkbox"],
.supFormBox .form-group input[type="radio"]
 {
  border: 1px solid #f5821f;
}
.supFormBox .form-group h3 {
    font-size: 30px;
    font-family: 'acumin-pro-extra-condensed';
    margin: 20px 0;
    color: #f5821f;
}
.supFormBox .form-group textarea
{
    width: 100%;
    border-radius: 0;
    border: 1px solid #f5821f;
}

.supFormBox .formButton input[type="button"], .supFormBox .formButton input[type="submit"] {
    padding: 7px 15px;
    border-radius: 6px;
    transition: all 0.3s ease;
    display: inline-block;
    margin: 15px 0;
    color: #fff;
}
.supFormBox .formButton .cancel {
    border: 1px solid #bbbbbb;
    background: #bbbbbb;
}
.supFormBox .formButton .submit {
    background-color: #f5821f;
    border: 2px solid #f5821f;
}
.supFormBox .formButton .submit:hover {
    background-color: #fccf55;
    border: 2px solid #fccf55;
}
.supFormBox .form-check-input:checked {
    background-color: #f5821f;
    border-color: #f5821f;
}
.customWidth {
    width: 95%;
    margin: 0 auto;
}

.supFormBox form input.is-invalid {
    border: 2px solid  #f00 !important;
}
.supFormBox .form-control.is-invalid:focus {
    border-color: #f00;
    outline: 0;
    box-shadow: 0 0 0 0.25rem #f51f1f50;
}


