@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");
body {
  overflow-x: hidden;
}

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

h1, h2, h3, h4, h5, h6, p.serif {
  font-family: "bryant-web", sans-serif;
  font-weight: 600;
  font-style: normal;
  color: #47321F;
}

p {
  margin-bottom: 30px;
  font-size: 18px;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
}
p:last-child {
  margin-bottom: 0;
}

ul li {
  font-size: 18px;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
}

a {
  font-size: 18px;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
}

h1 {
  font-size: 60px;
}
@media all and (max-width: 992px) {
  h1 {
    font-size: 50px;
  }
}
@media all and (max-width: 767px) {
  h1 {
    font-size: 40px;
  }
}
@media all and (max-width: 600px) {
  h1 {
    font-size: 32px;
  }
}

h2 {
  font-size: 45px;
}
@media all and (max-width: 992px) {
  h2 {
    font-size: 40px;
  }
}
@media all and (max-width: 767px) {
  h2 {
    font-size: 35px;
  }
}

h3 {
  font-size: 30px;
}

h4 {
  font-size: 25px;
}

h5 {
  font-size: 20px;
}

h6 {
  font-size: 18px;
}

input[type=text],
input,
input[type=search],
input[type=email],
input[type=tel],
input[type=submit],
textarea {
  -webkit-appearance: none;
  -webkit-border-radius: 0px;
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  border-radius: 0px;
}

input[type=radio] {
  -webkit-appearance: radio;
}

input[type=checkbox] {
  -webkit-appearance: checkbox;
}

.blue {
  color: #92B93A;
}

.orange {
  color: #F48E01;
}

.section-padding {
  padding: 5%;
}

.sec-padding {
  padding: 8% 5%;
}

.orangeBtn {
  background-color: #F48E01;
  border-radius: 30px;
  padding: 15px 40px;
  color: #ffffff;
  display: inline-block;
}
.orangeBtn:hover {
  color: #ffffff;
  background-color: #92B93A;
  text-decoration: none;
}
@media all and (max-width: 992px) {
  .orangeBtn {
    padding: 10px 30px;
  }
}

.two-col {
  display: grid;
  grid-template-columns: 48% 48%;
  justify-content: space-between;
}
@media all and (max-width: 992px) {
  .two-col {
    grid-template-columns: 100%;
    row-gap: 20px;
  }
}

.fixedButton {
  position: fixed;
  top: 30%;
  right: 0;
  display: flex;
  row-gap: 15px;
  flex-direction: column;
  z-index: 99;
}
.fixedButton a {
  background-color: #F48E01;
  padding: 10px 20px 10px 30px;
  color: #ffffff;
  border-radius: 30px 0 0 30px;
  text-align: center;
}
.fixedButton a:hover {
  text-decoration: none;
  background-color: #92B93A;
  color: #ffffff;
}
@media all and (max-width: 992px) {
  .fixedButton {
    row-gap: 10px;
  }
  .fixedButton a {
    font-size: 16px;
    padding: 8px 10px 8px 15px;
  }
}
@media all and (max-width: 767px) {
  .fixedButton {
    row-gap: 5px;
    display: none;
  }
  .fixedButton a {
    font-size: 14px;
    padding: 5px 5px 5px 15px;
  }
}

.header {
  padding: 40px 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 999;
  transition: all 0.3s ease 0.1s;
}
.header.homeHeader {
  background-color: #ffffff;
}
.header.darkHeader {
  background-color: #ffffff;
  padding: 20px 5%;
}
.header.darkHeader .logo .logo-img {
  width: 220px;
}
@media all and (max-width: 1280px) {
  .header.darkHeader .logo .logo-img {
    width: 180px;
  }
}
.header::before {
  display: none;
}
.header::after {
  display: none;
}
.header .logo .logo-img {
  width: 280px;
  transition: all 0.3s ease 0.1s;
}
@media all and (max-width: 1280px) {
  .header .logo .logo-img {
    width: 220px;
  }
}
.header .menu div#burger {
  height: 40px;
  width: 40px;
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 99999;
  border: 2px solid #92B93A;
  cursor: pointer;
  padding: 7px;
  position: relative;
}
.header .menu div#burger span {
  height: 2px;
  width: 100%;
  background-color: #92B93A;
  display: block;
  margin-bottom: 7px;
  transition: all 1s ease 0.1s;
  z-index: 99999;
}
.header .menu div#burger span:last-child {
  margin-bottom: 0;
}
.header .menu div#burger.open span {
  opacity: 0;
  visibility: hidden;
  position: relative;
  background-color: #333333;
}
.header .menu div#burger.open span:first-child {
  top: 1px;
  margin-bottom: 0;
  opacity: 1;
  visibility: visible;
  transform: rotate(45deg);
}
.header .menu div#burger.open span:last-child {
  margin-bottom: 0;
  opacity: 1;
  visibility: visible;
  transform: rotate(315deg);
  top: -1px;
}
@media all and (max-width: 992px) {
  .header .menu div#burger {
    display: flex;
  }
}
.header .menu .nav {
  position: relative;
  display: block;
}
.header .menu .nav .mob {
  display: none;
}
.header .menu .nav .mobileLogo {
  display: none;
  text-align: center;
  width: 100%;
}
.header .menu .nav .mobileLogo img {
  max-width: 100%;
  width: 250px;
  margin: 0 auto;
}
.header .menu .nav .dropdown {
  position: absolute;
  display: none;
  align-items: center;
  justify-content: space-between;
  padding: 30px;
  background-color: #ffffff;
  top: 100%;
  box-shadow: 0px 0px 1px rgba(0, 0, 0, 0.32);
}
.header .menu .nav .dropdown .innerDrop {
  display: grid;
  grid-template-columns: 35% 60%;
  justify-content: space-between;
}
.header .menu .nav .dropdown .dropimage {
  position: relative;
}
.header .menu .nav .dropdown .dropimage a {
  text-decoration: none;
}
.header .menu .nav .dropdown .dropimage a h4 {
  color: #ffffff;
  position: absolute;
  top: 10px;
  left: 10px;
}
.header .menu .nav .dropdown .dropimage a .arrow {
  position: absolute;
  bottom: 10px;
  right: 10px;
  width: 50px;
}
.header .menu .nav .dropdown .dropimage a:hover {
  text-decoration: none;
}
.header .menu .nav .dropdown .dropMenu {
  display: flex;
  flex-direction: column;
}
.header .menu .nav .dropdown .dropMenu a {
  padding: 10px 50px 10px 0px;
  font-weight: 400;
  color: #000000;
  display: inline-block;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header .menu .nav .dropdown .dropMenu a::before {
  content: "";
  display: none;
  right: 0;
  height: 35px;
  width: 35px;
  background-image: url("../img/rightorange.svg");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  position: absolute;
}
.header .menu .nav .dropdown .dropMenu a:hover {
  text-decoration: none;
}
.header .menu .nav .dropdown .dropMenu a:hover::before {
  display: block;
}
.header .menu .nav ul {
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.header .menu .nav ul li {
  list-style: none;
}
.header .menu .nav ul li a {
  padding: 20px 20px;
  color: #000000;
  display: inline-block;
  font-weight: 500;
}
.header .menu .nav ul li a:hover {
  text-decoration: none;
}
@media all and (max-width: 1280px) {
  .header .menu .nav ul li a {
    padding: 20px 10px;
  }
}
.header .menu .nav ul li.menuBtn {
  margin-left: 10px;
}
.header .menu .nav ul li.menuBtn a {
  background-color: #F48E01;
  color: #ffffff;
  padding: 10px 30px;
  border-radius: 30px;
}
.header .menu .nav ul li.abtMenu .sub-menu li {
  width: 100%;
}
.header .menu .nav ul li.abtMenu .sub-menu li.current-menu-item a {
  font-weight: 400;
}
.header .menu .nav ul li.abtMenu .sub-menu li.current-menu-item a::before {
  display: none;
}
.header .menu .nav ul li .sub-menu {
  position: absolute;
  display: none;
  flex-direction: column;
  align-items: flex-start;
  padding: 15px 30px;
  background-color: #ffffff;
  top: 100%;
  box-shadow: 0px 0px 1px rgba(0, 0, 0, 0.32);
}
.header .menu .nav ul li .sub-menu.show {
  display: flex;
}
.header .menu .nav ul li .sub-menu h4 {
  display: none;
}
.header .menu .nav ul li .sub-menu li {
  width: 100%;
}
.header .menu .nav ul li .sub-menu li.current-menu-item a {
  font-weight: 600;
}
.header .menu .nav ul li .sub-menu li.current-menu-item a::before {
  display: block;
}
.header .menu .nav ul li .sub-menu li a {
  padding: 10px 50px 10px 0px;
  font-weight: 400;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header .menu .nav ul li .sub-menu li a::before {
  content: "";
  display: none;
  right: 0;
  height: 35px;
  width: 35px;
  background-image: url("../img/rightorange.svg");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  position: absolute;
}
.header .menu .nav ul li .sub-menu li a:hover::before {
  display: block;
}
@media all and (max-width: 992px) {
  .header .menu .nav {
    transform: translateX(100%);
    position: fixed;
    background-color: #ffffff;
    width: 90%;
    height: 100%;
    z-index: 999;
    top: 0;
    right: 0;
    transition: all 0.5s ease 0.1s;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    align-items: center;
    justify-content: center;
  }
  .header .menu .nav.show {
    transform: translateX(0);
  }
  .header .menu .nav .mobileLogo {
    display: block;
    margin-bottom: 30px;
  }
  .header .menu .nav .desk {
    display: none;
  }
  .header .menu .nav .mob {
    display: block;
    width: 100%;
  }
  .header .menu .nav ul {
    flex-direction: column;
    align-items: flex-start;
    padding: 20px;
    justify-content: center;
    width: 100%;
    row-gap: 20px;
  }
  .header .menu .nav ul li {
    padding: 0px;
  }
  .header .menu .nav ul li a {
    color: #000000;
    padding: 0;
    width: 100%;
  }
  .header .menu .nav ul li.menuBtn {
    margin-left: 0px;
  }
  .header .menu .nav ul li .sub-menu {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    flex-direction: column;
    top: 0;
    position: fixed;
    background-color: #ffffff;
    left: 0;
    transform: translateX(100%);
    transition: all 0.3s ease 0.1s;
  }
  .header .menu .nav ul li .sub-menu .goBack {
    cursor: pointer;
    color: #000000;
    width: 100%;
    margin-bottom: 0;
  }
  .header .menu .nav ul li .sub-menu h4 {
    color: #ffffff;
    width: 100%;
  }
  .header .menu .nav ul li .sub-menu li a {
    padding: 0 50px 0 0;
  }
  .header .menu .nav ul li .sub-menu.show {
    transform: translateX(0%);
  }
}

.borderBox {
  padding: 10%;
  border-radius: 30px;
  border: 2px solid #000000;
  position: relative;
}
.borderBox::before {
  content: "";
  width: 70px;
  height: 70px;
  background: url("../img/q.png"), #ffffff;
  background-size: 20px;
  position: absolute;
  background-position: center;
  background-repeat: no-repeat;
  left: -35px;
  top: -35px;
}
.borderBox::after {
  content: "";
  width: 70px;
  height: 70px;
  background: url("../img/q.png"), #ffffff;
  background-size: 20px;
  position: absolute;
  background-position: center;
  background-repeat: no-repeat;
  right: -35px;
  bottom: -35px;
  transform: rotate(180deg);
}
@media all and (max-width: 992px) {
  .borderBox::before {
    width: 60px;
    height: 60px;
    left: -30px;
    top: -30px;
  }
  .borderBox::after {
    width: 60px;
    height: 60px;
    right: -30px;
    bottom: -30px;
  }
}
@media all and (max-width: 767px) {
  .borderBox {
    padding: 8% 5%;
  }
}

.ctaSec {
  position: relative;
}
.ctaSec .imgBack {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  left: 0;
  top: 0;
  z-index: -1;
}
.ctaSec h2 {
  color: #ffffff;
  margin-bottom: 30px;
}

.footer {
  padding: 5% 5% 40px;
}
.footer .main-footer {
  margin-bottom: 5%;
}
.footer .footer-col {
  display: grid;
  grid-template-columns: 40% 50%;
  justify-content: space-between;
}
.footer .footer-col .inner-col {
  display: grid;
  justify-content: space-between;
  grid-template-columns: 48% 48%;
}
.footer .footer-col .logosec img {
  margin-bottom: 30px;
  width: 250px;
}
.footer .footer-col .logosec p {
  width: 500px;
  font-size: 22px;
  max-width: 100%;
  font-weight: 500;
}
.footer .footer-col ul {
  margin: 0;
  padding: 0;
}
.footer .footer-col ul li {
  list-style: none;
}
.footer .footer-col ul li a {
  margin-bottom: 5px;
  display: inline-block;
}
.footer .footer-col .first .det, .footer .footer-col .second .det {
  margin-bottom: 30px;
}
.footer .footer-col .first .det:last-child, .footer .footer-col .second .det:last-child {
  margin-bottom: 0;
}
.footer .footer-col .first .serif, .footer .footer-col .second .serif {
  margin-bottom: 0;
  color: #92B93A;
}
.footer .footer-col .first a, .footer .footer-col .second a {
  color: #000000;
  word-wrap: break-word;
}
.footer .footer-col .second {
  display: flex;
  height: 100%;
  justify-content: space-between;
  flex-direction: column;
}
.footer .copySec .two-col {
  display: flex;
  justify-content: space-between;
}
.footer .copySec p {
  opacity: 0.4;
  font-size: 16px;
  margin-bottom: 0;
}
.footer .copySec p:last-child {
  text-align: right;
}
.footer .copySec p a {
  color: #000;
}
@media all and (max-width: 1500px) {
  .footer .footer-col {
    grid-template-columns: 40% 55%;
  }
  .footer .footer-col .logosec img {
    margin-bottom: 30px;
    width: 200px;
  }
  .footer .footer-col .logosec p {
    font-size: 20px;
  }
  .footer .footer-col .inner-col {
    grid-template-columns: 60% 35%;
  }
  .footer .footer-col .first .det, .footer .footer-col .second .det {
    margin-bottom: 20px;
  }
}
@media all and (max-width: 1280px) {
  .footer .footer-col {
    grid-template-columns: 30% 65%;
  }
  .footer .footer-col .logosec img {
    margin-bottom: 30px;
    width: 200px;
  }
  .footer .footer-col .logosec p {
    font-size: 20px;
  }
  .footer .footer-col .first .det, .footer .footer-col .second .det {
    margin-bottom: 20px;
  }
}
@media all and (max-width: 992px) {
  .footer .footer-col {
    grid-template-columns: 100%;
    grid-gap: 30px;
  }
  .footer .copySec .two-col {
    flex-direction: column;
    gap: 0;
  }
  .footer .copySec p:last-child {
    margin-bottom: 0px;
    text-align: left;
  }
}
@media all and (max-width: 767px) {
  .footer .footer-col .inner-col {
    grid-template-columns: 100%;
    grid-gap: 30px;
  }
}

.contentSec {
  position: relative;
}
.contentSec .eclips {
  position: absolute;
  bottom: 5%;
  right: 0;
  max-width: 20%;
  width: 200px;
  transform: rotate(180deg);
  z-index: -9;
}
.contentSec .contentBox {
  width: 1200px;
  max-width: 100%;
}

/*
  SASS file for Wrappers Only
*/
.main-wrap {
  max-width: 1500px;
  margin: 0 auto;
}

.med-wrap {
  max-width: 1200px;
  margin: 0 auto;
}

.sm-wrap {
  max-width: 960px;
  margin: 0 auto;
}

.xs-wrap {
  max-width: 750px;
  margin: 0 auto;
}

.footer-wrap {
  max-width: 800px;
  margin: 0 auto;
  padding: 50px 20px;
}

/*
    SASS File for Gravity Forms CSS Override
*/
.gform_wrapper .gform_body .gform_fields .gfield input, .gform_wrapper .gform_body .gform_fields .gfield textarea, .gform_wrapper .gform_body .gform_fields .gfield select {
  border-bottom: 1px solid gray;
  font-size: 17px !important;
  padding: 15px 0 !important;
}
.gform_wrapper .gform_body .gform_fields .gfield input:focus, .gform_wrapper .gform_body .gform_fields .gfield textarea:focus, .gform_wrapper .gform_body .gform_fields .gfield select:focus {
  outline: none;
}
.gform_wrapper .gform_body .gform_fields .gfield textarea {
  padding: 15px !important;
}
.gform_wrapper .gform_body .gform_fields .gfield label {
  font-weight: 400;
}
@media all and (max-width: 767px) {
  .gform_wrapper .gform_body .gform_fields .gfield select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    padding: 15px 10px !important;
    background-color: transparent;
  }
}
.gform_wrapper .gform_footer {
  text-align: center;
}
.gform_wrapper .gform_footer .gform_button {
  padding: 10px 50px !important;
}

section.thank-you {
  text-align: center;
}
section.thank-you h1 {
  margin-bottom: 30px;
}
section.thank-you h5 {
  color: black;
  margin-bottom: 30px;
}

.select2-results__options, .select2-selection--single .select2-selection__rendered {
  font-size: 17px;
}

.select2-selection--single .select2-selection__rendered {
  padding: 10px !important;
}

.select2 {
  width: 100% !important;
}

.select2-container--default .select2-selection--single {
  height: 100% !important;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
  top: 0 !important;
  right: 15px !important;
  height: 100% !important;
}

.select2-container--default .select2-results__option--highlighted[aria-selected] {
  background-color: red;
  color: #fff;
}

.select2-container--default .select2-selection--single {
  border-radius: 0 !important;
}

.select2-selection .select2-selection__rendered {
  color: #7a7a7a !important;
}

.slide-in-bottom {
  -webkit-animation: slide-in-bottom cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.5s both;
  animation: slide-in-bottom cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.5s both;
}

.fade-in {
  -webkit-animation: fade-in 1s cubic-bezier(0.39, 0.575, 0.565, 1) 0.3s both;
  animation: fade-in 1s cubic-bezier(0.39, 0.575, 0.565, 1) 0.3s both;
}

.fade-in-bottom {
  -webkit-animation: fade-in-bottom 0.6s cubic-bezier(0.39, 0.575, 0.565, 1) both;
  animation: fade-in-bottom 0.6s cubic-bezier(0.39, 0.575, 0.565, 1) both;
  visibility: visible;
}

.fade-in-right {
  -webkit-animation: fade-in-right 0.6s cubic-bezier(0.39, 0.575, 0.565, 1) both;
  animation: fade-in-right 0.6s cubic-bezier(0.39, 0.575, 0.565, 1) both;
  visibility: visible;
}

.fade-in-left {
  -webkit-animation: fade-in-left 0.6s cubic-bezier(0.39, 0.575, 0.565, 1) both;
  animation: fade-in-left 0.6s cubic-bezier(0.39, 0.575, 0.565, 1) both;
  visibility: visible;
}

.fade-in-top {
  -webkit-animation: fade-in-top 0.6s cubic-bezier(0.39, 0.575, 0.565, 1) both;
  animation: fade-in-top 0.6s cubic-bezier(0.39, 0.575, 0.565, 1) both;
  visibility: visible;
}

.slide-in-top {
  -webkit-animation: slide-in-top 0.75s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
  animation: slide-in-top 0.75s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}

.animate-half {
  animation-delay: 0.5s;
}

.animate-first {
  animation-delay: 1s;
}

.animate-first-half {
  animation-delay: 1.5s;
}

.animate-second {
  animation-delay: 2s;
}

.animate-second-half {
  animation-delay: 2.5s;
}

.animate-third {
  animation-delay: 3s;
}

.animate-third-half {
  animation-delay: 3.5s;
}

.animate-fourth {
  animation-delay: 4s;
}

.animate-fourth-half {
  animation-delay: 4.5s;
}

.animate-fifth {
  animation-delay: 5s;
}

.animate-fifth-half {
  animation-delay: 5.5s;
}

/* ----------------------------------------------
 * Generated by Animista on 2020-5-13 11:49:36
 * Licensed under FreeBSD License.
 * See http://animista.net/license for more info. 
 * w: http://animista.net, t: @cssanimista
 * ---------------------------------------------- */
/**
 * ----------------------------------------
 * animation slide-in-bottom
 * ----------------------------------------
 */
@-webkit-keyframes slide-in-bottom {
  0% {
    -webkit-transform: translateY(1000px);
    transform: translateY(1000px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes slide-in-bottom {
  0% {
    -webkit-transform: translateY(1000px);
    transform: translateY(1000px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
  }
}
/**
 * ----------------------------------------
 * animation fade-in
 * ----------------------------------------
 */
@-webkit-keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/**
 * ----------------------------------------
 * animation fade-in-right
 * ----------------------------------------
 */
@-webkit-keyframes fade-in-right {
  0% {
    -webkit-transform: translateX(50px);
    transform: translateX(50px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 1;
  }
}
@keyframes fade-in-right {
  0% {
    -webkit-transform: translateX(50px);
    transform: translateX(50px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 1;
  }
}
/**
 * ----------------------------------------
 * animation fade-in-bottom
 * ----------------------------------------
 */
@-webkit-keyframes fade-in-bottom {
  0% {
    -webkit-transform: translateY(50px);
    transform: translateY(50px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes fade-in-bottom {
  0% {
    -webkit-transform: translateY(50px);
    transform: translateY(50px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
  }
}
/**
 * ----------------------------------------
 * animation fade-in-left
 * ----------------------------------------
 */
@-webkit-keyframes fade-in-left {
  0% {
    -webkit-transform: translateX(-50px);
    transform: translateX(-50px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 1;
  }
}
@keyframes fade-in-left {
  0% {
    -webkit-transform: translateX(-50px);
    transform: translateX(-50px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 1;
  }
}
/**
 * ----------------------------------------
 * animation fade-in-top
 * ----------------------------------------
 */
@-webkit-keyframes fade-in-top {
  0% {
    -webkit-transform: translateY(-50px);
    transform: translateY(-50px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes fade-in-top {
  0% {
    -webkit-transform: translateY(-50px);
    transform: translateY(-50px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
  }
}
/**
 * ----------------------------------------
 * animation slide-in-top
 * ----------------------------------------
 */
@-webkit-keyframes slide-in-top {
  0% {
    -webkit-transform: translateY(-1000px);
    transform: translateY(-1000px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes slide-in-top {
  0% {
    -webkit-transform: translateY(-1000px);
    transform: translateY(-1000px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
  }
}
@-webkit-keyframes pulsate {
  0% {
    -webkit-transform: scale(0.1, 0.1);
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(1.2, 1.2);
    opacity: 0;
  }
}
@keyframes pulsate {
  0% {
    -webkit-transform: scale(0.1, 0.1);
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(1.2, 1.2);
    opacity: 0;
  }
}
/*
    SASS File for Banners Only
*/
section.banner-general.banner-container {
  height: 450px;
  transition: 0.3s;
}
section.banner-general.banner-container .overlay {
  background-color: rgba(0, 0, 0, 0.3);
  transition: 0.3s;
  width: 100%;
  height: 100%;
}
section.banner-general.banner-container .overlay .text-container {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 35%;
}
section.banner-general.banner-container .overlay .text-container .title {
  color: white;
}

.bannerSec {
  position: relative;
  min-height: 700px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.bannerSec .background {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: -1;
  object-fit: cover;
}
.bannerSec .textBox {
  width: 700px;
  row-gap: 20px;
  max-width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.bannerSec .textBox h1 {
  line-height: 1;
}
@media all and (max-width: 1500px) {
  .bannerSec {
    min-height: 600px;
  }
}
@media all and (max-width: 992px) {
  .bannerSec {
    min-height: 500px;
  }
}
@media all and (max-width: 767px) {
  .bannerSec {
    justify-content: flex-end;
  }
  .bannerSec .background {
    object-position: 60% 0;
  }
}
@media all and (max-width: 500px) {
  .bannerSec {
    justify-content: flex-end;
  }
  .bannerSec .background {
    object-position: 70% 0;
  }
}

.aboutSec {
  overflow: hidden;
  position: relative;
}
.aboutSec .circle {
  position: absolute;
  bottom: 5%;
  right: 5%;
  width: 120px;
  z-index: -1;
}
@media all and (max-width: 1400px) {
  .aboutSec .circle {
    right: 1%;
    bottom: 1%;
  }
}
.aboutSec .eclips {
  position: absolute;
  left: 0;
  bottom: 5%;
  max-width: 30%;
  width: 150px;
  z-index: -1;
}
.aboutSec h2 {
  margin-bottom: 20px;
}
.aboutSec p a {
  text-decoration: underline;
  color: inherit;
}
.aboutSec .btns {
  display: flex;
  flex-wrap: wrap;
  margin-top: 20px;
  column-gap: 20px;
  row-gap: 20px;
}
.aboutSec .btns a {
  border-radius: 30px;
  padding: 15px 40px;
}
.aboutSec .btns a:nth-child(2n+1) {
  color: #ffffff;
  border: 1px solid #F48E01;
  background-color: #F48E01;
}
.aboutSec .btns a:nth-child(2n) {
  color: #92B93A;
  border: 1px solid #92B93A;
}
.aboutSec .btns a:hover {
  color: #ffffff;
  background-color: #92B93A;
  text-decoration: none;
}
.aboutSec .btns a:hover:nth-child(2n+1) {
  border: 1px solid #92B93A;
}
@media all and (max-width: 992px) {
  .aboutSec .btns a {
    padding: 10px 30px;
  }
}
.aboutSec .sliderOutter {
  overflow: visible;
  position: relative;
  margin-top: 5%;
}
.aboutSec .sliderOutter .arrows {
  position: absolute;
  display: flex;
  flex-direction: column;
  row-gap: 10px;
  top: 40%;
  left: -25px;
  z-index: 99;
}
.aboutSec .sliderOutter .arrows div {
  cursor: pointer;
  width: 50px;
  height: 50px;
}
.aboutSec .sliderOutter .galSlider {
  width: 100%;
}
.aboutSec .sliderOutter .galSlider .textBox {
  padding: 100px;
  border-radius: 30px;
  overflow: hidden;
  margin-right: 30px;
  background-color: #E1E1E1;
}
.aboutSec .sliderOutter .galSlider .textBox h3 {
  color: #92B93A;
}
.aboutSec .sliderOutter .galSlider .imgBox {
  aspect-ratio: 1.4/1;
  margin-right: 20px;
  border-radius: 30px;
  overflow: hidden;
}
.aboutSec .sliderOutter .galSlider .imgBox img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.aboutSec .sliderOutter .galSlider1 {
  width: 80%;
  overflow: visible;
}
.aboutSec .sliderOutter .galSlider1 .slick-list {
  overflow: visible;
}
.aboutSec .sliderOutter .galSlider1 .slick-list .slick-track {
  display: flex;
}
.aboutSec .sliderOutter .galSlider1 .textBox {
  padding: 100px;
  border-radius: 30px;
  overflow: hidden;
  margin-right: 30px;
  background-color: #def3f7;
}
.aboutSec .sliderOutter .galSlider1 .textBox h3 {
  color: #92B93A;
}
.aboutSec .sliderOutter .galSlider1 .imgBox {
  height: inherit !important;
  margin-right: 20px;
  border-radius: 30px;
  overflow: hidden;
}
.aboutSec .sliderOutter .galSlider1 .imgBox img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media all and (max-width: 767px) {
  .aboutSec .sliderOutter .arrows {
    left: -20px;
    top: 35%;
  }
  .aboutSec .sliderOutter .arrows div {
    cursor: pointer;
    width: 40px;
    height: 40px;
  }
  .aboutSec .sliderOutter .galSlider {
    width: 100%;
  }
}

.testimonialSec .testimonialsCol {
  display: grid;
  align-items: center;
  grid-template-columns: 30% 65%;
  justify-content: space-between;
}
.testimonialSec .testimonialsCol .headBox h2 span {
  display: block;
}
.testimonialSec .testimonialsCol .headBox .arrowsT {
  margin-top: 30px;
  display: flex;
  column-gap: 10px;
}
.testimonialSec .testimonialsCol .headBox .arrowsT div {
  width: 50px;
}
.testimonialSec .testimonialsCol .testimonialSlider .slick-list .slick-track {
  display: flex;
}
.testimonialSec .testimonialsCol .testimonialSlider .review {
  height: inherit;
  padding: 35px;
}
.testimonialSec .testimonialsCol .testimonialSlider .review .stars {
  margin-bottom: 20px;
  display: flex;
  width: 100%;
  justify-content: flex-end;
}
.testimonialSec .testimonialsCol .testimonialSlider .review .stars img {
  max-width: 120px;
  width: 100%;
}
.testimonialSec .testimonialsCol .testimonialSlider .review .borderBox {
  height: 100%;
}
.testimonialSec .testimonialsCol .testimonialSlider .review .borderBox .name {
  margin-bottom: 0;
  font-weight: 500;
}
@media all and (max-width: 1500px) {
  .testimonialSec .testimonialsCol {
    grid-template-columns: 25% 70%;
  }
  .testimonialSec .testimonialsCol .testimonialSlider .review {
    padding: 25px;
  }
}
@media all and (max-width: 1280px) {
  .testimonialSec .testimonialsCol {
    grid-template-columns: 100%;
    gap: 20px;
  }
  .testimonialSec .testimonialsCol .headBox {
    text-align: center;
  }
  .testimonialSec .testimonialsCol .headBox .arrowsT {
    align-items: center;
    justify-content: center;
    width: 100%;
    margin: 30px auto 0;
  }
}
@media all and (max-width: 992px) {
  .testimonialSec .testimonialsCol .testimonialSlider .review {
    padding: 20px;
  }
}

.whatweOffer {
  padding-top: 0;
}
.whatweOffer .two-col {
  align-items: center;
}
.whatweOffer .two-col .imgBox {
  border-radius: 30px;
  overflow: hidden;
}

.whyWestpark {
  background-color: #EBEBEB;
}
.whyWestpark .whyPoints {
  display: grid;
  grid-template-columns: 46% 46%;
  justify-content: space-between;
  row-gap: 20px;
  margin-top: 50px;
}
.whyWestpark .whyPoints .point {
  display: flex;
  justify-content: space-between;
}
.whyWestpark .whyPoints .point .icon {
  border-radius: 50%;
  padding: 15px;
  width: 80px;
  display: block;
  height: 80px;
  background-color: #F48E01;
}
.whyWestpark .whyPoints .point .icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.whyWestpark .whyPoints .point .copy {
  width: calc(100% - 110px);
  text-align: left;
}
.whyWestpark .whyPoints .point .copy .head {
  margin-bottom: 0;
  margin-top: 20px;
  font-weight: 600;
}
@media all and (max-width: 992px) {
  .whyWestpark .whyPoints {
    grid-template-columns: 100%;
  }
}

.gradBack {
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.02) 0%, rgba(0, 0, 0, 0) 50%);
}

.ourProcess {
  padding: 5%;
}
.ourProcess.cusPad .processSlider {
  margin-top: 0;
}
.ourProcess.sec-padding {
  padding: 8% 5%;
}
.ourProcess .processSlider {
  margin-top: 5%;
}
.ourProcess .processSlider .process {
  margin-right: 40px;
}
.ourProcess .processSlider .process .imgbox {
  border-radius: 30px;
  overflow: hidden;
  margin-bottom: 30px;
}
.ourProcess .processSlider .process .headingBox .inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.ourProcess .processSlider .process .headingBox .inner .serif {
  font-size: 22px;
  opacity: 0.8;
  margin-bottom: 0;
}
.ourProcess .processSlider .process .headingBox .inner img {
  width: 50px;
}
.ourProcess .processSlider .process .copy {
  margin-top: 30px;
  padding-top: 30px;
  border-top: 2px solid rgba(0, 0, 0, 0.2);
}
@media all and (max-width: 992px) {
  .ourProcess .processSlider .process {
    margin: 0 15px;
  }
}

.outterBanner {
  padding: 0 40px;
}
.outterBanner.blogBanner .text {
  width: 900px;
  max-width: 100%;
}
.outterBanner.blogBanner .text p {
  max-width: 100%;
}
.outterBanner.blogBanner .text a {
  text-decoration: none;
}
.outterBanner.blogBanner .text a:hover {
  text-decoration: none;
}
.outterBanner.blogBanner .text .btmBlg {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.outterBanner.blogBanner .text .btmBlg img {
  width: 50px;
  height: 50px;
  position: relative;
}
.outterBanner .innerBanner {
  min-height: 550px;
  position: relative;
  border-radius: 30px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.outterBanner .innerBanner img {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: -1;
  object-fit: cover;
}
.outterBanner .innerBanner h2 {
  color: #ffffff;
}
.outterBanner .innerBanner p {
  margin-top: 30px;
  max-width: 600px;
  width: 100%;
  color: #ffffff;
}
@media all and (max-width: 1500px) {
  .outterBanner .innerBanner {
    min-height: 450px;
  }
}
@media all and (max-width: 767px) {
  .outterBanner {
    padding: 0 20px;
  }
  .outterBanner .innerBanner {
    min-height: 350px;
  }
  .outterBanner .innerBanner h2 {
    margin-bottom: 10px;
  }
}

.ourStory .copy {
  margin: 20px 0 5% 0;
  column-gap: 10%;
  column-count: 2;
}
.ourStory .imgsCol {
  display: grid;
  grid-template-columns: 48% 48%;
  justify-content: space-between;
  position: relative;
}
.ourStory .imgsCol .img {
  border-radius: 30px;
}
.ourStory .imgsCol .circle {
  height: 100%;
  display: flex;
  align-items: center;
  margin: 0 auto;
  left: 0;
  max-width: 200px;
  right: 0;
  width: 100%;
  position: absolute;
}
@media all and (max-width: 992px) {
  .ourStory .copy {
    column-count: 1;
  }
  .ourStory .imgsCol {
    grid-template-columns: 100%;
    row-gap: 30px;
  }
  .ourStory .imgsCol .circle {
    max-width: 150px;
  }
}

.ourMission {
  padding-top: 0;
  padding-bottom: 0;
}
.ourMission .two-col {
  margin-top: 5%;
  align-items: center;
}

.ourPedagogy h2 {
  margin-bottom: 20px;
}
.ourPedagogy .faqS .faq {
  border-bottom: 2px solid rgba(0, 0, 0, 0.15);
}
.ourPedagogy .faqS .faq:first-child {
  border-top: 2px solid rgba(0, 0, 0, 0.15);
}
.ourPedagogy .faqS .faq .quest {
  padding: 30px 0;
  padding-right: 40px;
  position: relative;
  cursor: pointer;
  display: flex;
  width: 100%;
  align-items: center;
}
.ourPedagogy .faqS .faq .quest.open::before {
  content: "-";
}
.ourPedagogy .faqS .faq .quest::before {
  position: absolute;
  content: "+";
  color: #F48E01;
  right: 0;
  font-size: 20px;
}
.ourPedagogy .faqS .faq .quest .serif {
  font-size: 22px;
}
.ourPedagogy .faqS .faq .ans {
  display: none;
  padding-bottom: 30px;
}

.qutoeBox .borderBox .colT {
  display: grid;
  grid-template-columns: 50% 35%;
  justify-content: space-between;
  align-items: center;
}
.qutoeBox .borderBox .colT .imgBox .imgB {
  border-radius: 30px;
}
.qutoeBox .borderBox .colT .imgBox .imgB img {
  width: 100%;
}
@media all and (max-width: 992px) {
  .qutoeBox .borderBox .colT {
    grid-template-columns: 100%;
    row-gap: 20px;
  }
}

.currDetails {
  position: relative;
}
.currDetails h2 {
  margin-bottom: 30px;
}
.currDetails .eclips {
  position: absolute;
  bottom: -5%;
  right: 0;
  max-width: 20%;
  width: 100px;
  transform: rotate(180deg);
  z-index: -9;
}

.enrichmentSec {
  padding: 0% 5% 5%;
}
.enrichmentSec h3 {
  margin-bottom: 30px;
}

.coreDevelopment {
  padding-top: 0;
  padding-bottom: 0;
}
.coreDevelopment.sec-padding {
  padding-top: 8%;
  padding-bottom: 8%;
}
.coreDevelopment .colSec {
  display: grid;
  margin-top: 30px;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 30px;
}
.coreDevelopment .colSec .point img {
  margin-bottom: 20px;
}
.coreDevelopment .colSec .point:last-child {
  margin-bottom: 0;
}
.coreDevelopment .colSec .point p {
  margin-bottom: 0;
}
.coreDevelopment .colSec .point p.serif {
  margin-bottom: 5px;
  font-size: 26px;
  font-weight: bolder;
}
@media all and (max-width: 992px) {
  .coreDevelopment .colSec {
    grid-template-columns: 100%;
  }
  .coreDevelopment .colSec .point p.serif {
    font-size: 24px;
  }
}

.ourCurriculum .colSec {
  display: grid;
  margin-top: 30px;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 30px;
}
.ourCurriculum .colSec .point img {
  margin-bottom: 20px;
}
.ourCurriculum .colSec .point:last-child {
  margin-bottom: 0;
}
.ourCurriculum .colSec .point p {
  margin-bottom: 0;
}
.ourCurriculum .colSec .point p.serif {
  margin-bottom: 5px;
  font-size: 22px;
  font-weight: bolder;
}
@media all and (max-width: 992px) {
  .ourCurriculum .colSec {
    grid-template-columns: 100%;
  }
}

.parentEngag .copy p {
  margin-bottom: 0;
}
.parentEngag .innerWrap {
  margin-top: 5%;
}
.parentEngag .innerWrap .pointsBox {
  row-gap: 100px;
}
.parentEngag .innerWrap .pointsBox .point {
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: space-between;
}
.parentEngag .innerWrap .pointsBox .point p {
  margin-bottom: 0;
}
.parentEngag .innerWrap .pointsBox .point p.serif {
  font-size: 22px;
}
.parentEngag .innerWrap .pointsBox .point .imgBox {
  border-radius: 30px;
  overflow: hidden;
  margin-top: 40px;
}
.parentEngag .innerWrap .btmCopy {
  padding-top: 20px;
  position: relative;
  margin-top: 5%;
}
.parentEngag .innerWrap .btmCopy::before {
  position: absolute;
  height: 2px;
  width: 400px;
  max-width: 30%;
  top: 0;
  left: 0;
  background-color: #82CC37;
  content: "";
}
@media all and (max-width: 992px) {
  .parentEngag .innerWrap .pointsBox {
    row-gap: 40px;
  }
  .parentEngag .innerWrap .pointsBox .point .imgBox {
    margin-top: 20px;
  }
}

.faqSecc .headBox {
  display: grid;
  grid-template-columns: 15% 70%;
  justify-content: space-between;
  margin-bottom: 50px;
}
.faqSecc .faqS .faq {
  border-bottom: 2px solid rgba(0, 0, 0, 0.15);
}
.faqSecc .faqS .faq .quest {
  padding: 30px 0;
  padding-right: 40px;
  position: relative;
  cursor: pointer;
  display: flex;
  width: 100%;
  align-items: center;
}
.faqSecc .faqS .faq .quest.open::before {
  content: "-";
}
.faqSecc .faqS .faq .quest::before {
  position: absolute;
  content: "+";
  color: #F48E01;
  right: 0;
  font-size: 20px;
}
.faqSecc .faqS .faq .quest .serif {
  font-size: 22px;
}
.faqSecc .faqS .faq .ans {
  display: none;
  padding-bottom: 30px;
}

.contactDets {
  position: relative;
  padding: 5% 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.contactDets .details {
  padding: 40px;
  background-color: #A4DBE5;
  position: absolute;
  width: 500px;
  z-index: 3;
  left: 5%;
  max-width: 90%;
}
.contactDets .details h3 {
  margin-bottom: 30px;
}
.contactDets .details .detail {
  display: flex;
  gap: 20px;
  justify-content: space-between;
  margin-bottom: 30px;
}
.contactDets .details .detail .icon {
  width: 40px;
}
.contactDets .details .detail .det {
  width: calc(100% - 70px);
}
.contactDets .details .detail .det p {
  margin-bottom: 0;
}
.contactDets .details .detail .det p.head {
  font-size: 16px;
  margin-bottom: 5px;
}
.contactDets .details .detail .det a {
  color: #000000;
  text-decoration: underline;
}
.contactDets .mapSec {
  height: 650px;
  position: relative;
}
.contactDets .mapSec iframe {
  position: absolute;
  width: 100%;
  height: 100%;
}
@media all and (max-width: 992px) {
  .contactDets .details {
    width: 100%;
    position: relative;
    padding: 5%;
    left: 0;
    max-width: 100%;
  }
  .contactDets .mapSec {
    height: 500px;
  }
}

.btnSec {
  padding: 0 5%;
  display: flex;
  align-items: center;
  gap: 30px;
  width: 100%;
  justify-content: center;
}
@media all and (max-width: 992px) {
  .btnSec {
    flex-direction: column;
    gap: 10px;
  }
}

.contForm .form {
  margin-top: 50px;
}
.contForm .form .gform_wrapper .gform_body .gfield input, .contForm .form .gform_wrapper .gform_body .gfield textarea {
  background-color: #A4DBE5;
  border-radius: 20px;
  padding: 15px !important;
  border: none !important;
}
.contForm .form .gform_wrapper .gform_footer .gform_button {
  background-color: #F48E01;
  border-radius: 30px;
  padding: 15px 40px;
  color: #ffffff;
  font-size: 18px;
  display: inline-block;
  border: none;
}
.contForm .form .gform_wrapper .gform_footer .gform_button:hover {
  color: #ffffff;
  background-color: #92B93A;
  text-decoration: none;
}
@media all and (max-width: 992px) {
  .contForm .form .gform_wrapper .gform_footer .gform_button {
    padding: 10px 30px;
  }
}
@media all and (max-width: 992px) {
  .contForm .form {
    margin-top: 20px;
  }
}

.contactDeMap {
  padding-top: 0;
}
.contactDeMap .two-col {
  display: grid;
  grid-template-columns: 30% 65%;
  align-items: center;
  justify-content: space-between;
}
.contactDeMap .two-col .details h3 {
  margin-bottom: 30px;
}
.contactDeMap .two-col .details .detail {
  display: flex;
  gap: 20px;
  justify-content: space-between;
  margin-bottom: 30px;
}
.contactDeMap .two-col .details .detail .icon {
  width: 40px;
}
.contactDeMap .two-col .details .detail .det {
  width: calc(100% - 70px);
}
.contactDeMap .two-col .details .detail .det p {
  margin-bottom: 0;
}
.contactDeMap .two-col .details .detail .det p.head {
  font-size: 16px;
  margin-bottom: 5px;
}
.contactDeMap .two-col .details .detail .det a {
  color: #000000;
  text-decoration: underline;
}
.contactDeMap .two-col .mapSec {
  height: 650px;
  position: relative;
}
.contactDeMap .two-col .mapSec iframe {
  position: absolute;
  width: 100%;
  height: 100%;
}
@media all and (max-width: 992px) {
  .contactDeMap .two-col {
    grid-template-columns: 100%;
    gap: 30px;
  }
  .contactDeMap .two-col .mapSec {
    height: 500px;
  }
}

.testimonialsBox .testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.testimonialsBox .testimonials .review {
  height: inherit;
  padding: 35px;
}
.testimonialsBox .testimonials .review .stars {
  margin-bottom: 20px;
  display: flex;
  width: 100%;
  justify-content: flex-end;
}
.testimonialsBox .testimonials .review .stars img {
  max-width: 120px;
  width: 100%;
}
.testimonialsBox .testimonials .review .borderBox {
  height: 100%;
}
.testimonialsBox .testimonials .review .borderBox .name {
  margin-bottom: 0;
  font-weight: 500;
}
@media all and (max-width: 1500px) {
  .testimonialsBox .testimonials .review {
    padding: 25px;
  }
}
@media all and (max-width: 992px) {
  .testimonialsBox .testimonials {
    grid-template-columns: repeat(2, 1fr);
  }
  .testimonialsBox .testimonials .review {
    padding: 20px;
  }
}
@media all and (max-width: 767px) {
  .testimonialsBox .testimonials {
    margin-top: 30px;
    grid-template-columns: 100%;
    gap: 30px;
  }
  .testimonialsBox .testimonials .review {
    padding: 10px;
  }
}

.galleryBox .viewMore {
  display: none;
  color: #F48E01;
  text-align: center;
  width: 100%;
}
@media all and (max-width: 500px) {
  .galleryBox .viewMore {
    display: block;
  }
  .galleryBox .viewMore.hide {
    display: none;
  }
}
.galleryBox .tabBar {
  width: 100%;
  display: flex;
  margin: 30px 0;
  justify-content: flex-start;
  column-gap: 10px;
}
.galleryBox .tabBar .name {
  padding: 5px;
  text-align: center;
}
.galleryBox .tabBar .name p {
  color: #F48E01;
  min-width: 150px;
  border: 1px solid #F48E01;
  padding: 10px 20px;
  cursor: pointer;
  display: inline-block;
  position: relative;
  border-radius: 30px;
}
.galleryBox .tabBar .name p.active {
  background-color: #F48E01;
  color: #ffffff;
}
.galleryBox .tabBar .name p:hover {
  background-color: #F48E01;
  color: #ffffff;
}
@media all and (max-width: 500px) {
  .galleryBox .tabBar .name {
    padding: 0;
  }
  .galleryBox .tabBar .name p {
    display: none;
  }
  .galleryBox .tabBar .name p.active {
    display: inline-block;
  }
  .galleryBox .tabBar .name p.active::before {
    display: none;
  }
  .galleryBox .tabBar .name.show {
    padding: 5px;
  }
}
@media all and (max-width: 500px) {
  .galleryBox .tabBar {
    margin: 50px 0 20px;
  }
}
.galleryBox .galleryBox .gallery_images {
  column-count: 3;
  column-gap: 20px;
  display: none;
}
.galleryBox .galleryBox .gallery_images.show {
  display: block;
}
.galleryBox .galleryBox .gallery_images img {
  width: 100%;
  margin-bottom: 20px;
}
@media all and (max-width: 767px) {
  .galleryBox .galleryBox .gallery_images {
    column-count: 2;
    column-gap: 20px;
  }
}
@media all and (max-width: 500px) {
  .galleryBox .tabBar {
    flex-wrap: wrap;
  }
  .galleryBox .tabBar .name {
    width: 100%;
  }
  .galleryBox .tabBar .name p {
    width: 100%;
  }
  .galleryBox .galleryBox .gallery_images {
    column-count: 1;
    column-gap: 0px;
  }
}

.registerBox h2 {
  margin-bottom: 20px;
}
.registerBox .formBox .gravity-theme .serif {
  margin-top: 3%;
  font-size: 22px;
}
.registerBox .formBox .gravity-theme p a {
  color: #F48E01;
}
.registerBox .formBox .gravity-theme input {
  border: none;
  font-size: 18px;
  font-family: "Montserrat", sans-serif;
}
.registerBox .formBox .gravity-theme .ginput_container_date {
  width: 100%;
}
.registerBox .formBox .gravity-theme .ginput_container_date input {
  width: 100%;
}
.registerBox .formBox .gravity-theme div#input_2_13 {
  display: flex;
  column-gap: 10px;
}
.registerBox .formBox .gravity-theme .gfield_label {
  font-weight: 400;
}
.registerBox .formBox .gravity-theme .gform_footer input {
  background-color: #F48E01;
  color: #ffffff;
  border-radius: 30px;
  border: none;
  font-size: 18px;
  font-family: "Montserrat", sans-serif;
}

.book-a-tour .registerBox .formBox .gravity-theme .gform_footer {
  text-align: right;
  justify-content: flex-end;
}

.aboutCareers {
  position: relative;
  padding-bottom: 0;
}
.aboutCareers .circle {
  position: absolute;
  left: 60%;
  z-index: -2;
  max-width: 100px;
}
.aboutCareers .eclips {
  max-width: 15%;
}
.aboutCareers .two-col {
  align-items: center;
}

.applyNow .gravity-theme .serif {
  margin-top: 3%;
  font-size: 22px;
}
.applyNow .gravity-theme p a {
  color: #F48E01;
}
.applyNow .gravity-theme input, .applyNow .gravity-theme select {
  border: none;
  font-size: 18px;
  font-family: "Montserrat", sans-serif;
}
.applyNow .gravity-theme .ginput_container_date {
  width: 100%;
}
.applyNow .gravity-theme .ginput_container_date input {
  width: 100%;
}
.applyNow .gravity-theme .gform_drop_area button {
  background-color: #F48E01;
  color: #ffffff;
  border-radius: 30px;
  border: none;
  padding: 10px 30px;
  text-transform: capitalize;
  font-size: 18px;
  font-family: "Montserrat", sans-serif;
}
.applyNow .gravity-theme .gform_footer input {
  background-color: #F48E01;
  color: #ffffff;
  border-radius: 30px;
  border: none;
  font-size: 18px;
  font-family: "Montserrat", sans-serif;
}

.tuitionText p a {
  color: #F48E01;
}

.financialSupport {
  background-color: #EBEBEB;
}
.financialSupport h2 {
  text-align: center;
  margin-bottom: 5%;
}
.financialSupport .two-col h4 {
  margin-bottom: 20px;
}
.financialSupport .two-col .btnBox {
  margin-top: 30px;
  display: block;
}
.financialSupport .two-col .btnBox a {
  display: inline-block;
}

.tuitionBox {
  padding-top: 0;
}
.tuitionBox .box h3 {
  margin-bottom: 30px;
}
.tuitionBox .box .tuition {
  margin-bottom: 30px;
  border: 2px solid #92B93A;
  border-radius: 30px;
  overflow: hidden;
  padding: 40px;
}
.tuitionBox .box .tuition.orangeBorder {
  border: 2px solid #F48E01;
}
.tuitionBox .box .tuition .two-col {
  padding: 20px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}
.tuitionBox .box .tuition .two-col p {
  margin-bottom: 0;
}
.tuitionBox .box .tuition .two-col p.serif {
  font-size: 22px;
}
.tuitionBox .box .tuition .two-col p:last-child {
  text-align: right;
}
@media all and (max-width: 992px) {
  .tuitionBox .box .tuition .two-col {
    grid-template-columns: 48% 48%;
  }
}

.aboutProg {
  position: relative;
}
.aboutProg .eclips {
  position: absolute;
  bottom: -5%;
  right: 0;
  max-width: 30%;
  width: 150px;
  transform: rotate(180deg);
  z-index: -9;
}
.aboutProg .headingBox {
  width: 100%;
  max-width: 680px;
}
.aboutProg .headingBox h2 {
  margin-bottom: 30px;
}
.aboutProg .two-col {
  align-items: center;
}
.aboutProg .two-col .imgBox {
  border-radius: 30px;
  overflow: hidden;
}

.secSec {
  padding-top: 0;
  position: relative;
}
.secSec.blogs {
  padding-top: 5%;
  padding-bottom: 0;
}
.secSec.blogs .circle {
  top: 5%;
}
@media all and (max-width: 992px) {
  .secSec.blogs .circle {
    display: none;
  }
}
.secSec .circle {
  position: absolute;
  z-index: -1;
  left: 5%;
  top: -130px;
  width: 100px;
}
.secSec h2 {
  margin-bottom: 20px;
}

.sliderSec {
  overflow: hidden;
}
.sliderSec .headingBox {
  display: flex;
  justify-content: space-between;
}
.sliderSec .headingBox .arrows {
  display: flex;
  column-gap: 10px;
  z-index: 99;
}
.sliderSec .headingBox .arrows div {
  cursor: pointer;
  width: 50px;
  height: 50px;
}
@media all and (max-width: 767px) {
  .sliderSec .headingBox {
    flex-direction: column;
  }
}
.sliderSec .programSlider {
  width: 140%;
  margin-top: 5%;
}
.sliderSec .programSlider .slick-list .slick-track {
  display: flex;
}
.sliderSec .programSlider .textBox {
  padding: 100px;
  border-radius: 30px;
  overflow: hidden;
  margin-right: 30px;
  background-color: #E1E1E1;
}
.sliderSec .programSlider .textBox h3 {
  color: #92B93A;
}
.sliderSec .programSlider .imgBox {
  height: inherit !important;
  margin-right: 20px;
  border-radius: 30px;
  overflow: hidden;
}
.sliderSec .programSlider .imgBox img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media all and (max-width: 767px) {
  .sliderSec .programSlider {
    width: 100%;
  }
}

.corePrograms h2 {
  margin-bottom: 30px;
}
.corePrograms .colSec {
  grid-template-columns: repeat(2, 1fr);
  display: grid;
  column-gap: 50px;
  row-gap: 80px;
}
.corePrograms .colSec .point {
  display: flex;
  height: 100%;
  flex-direction: column;
  justify-content: space-between;
}
.corePrograms .colSec .point .serif {
  margin-bottom: 0px;
  font-weight: bolder;
  font-size: 26px;
}
.corePrograms .colSec .point img {
  margin-top: 30px;
}
@media all and (max-width: 992px) {
  .corePrograms .colSec {
    grid-template-columns: 100%;
    row-gap: 50px;
  }
  .corePrograms .colSec .point .serif {
    font-size: 24px;
  }
}
.corePrograms .btmText {
  padding-top: 20px;
  margin-top: 5%;
  position: relative;
}
.corePrograms .btmText::before {
  position: absolute;
  max-width: 100%;
  width: 300px;
  height: 2px;
  left: 0;
  top: 0;
  content: "";
  background-color: #82CC37;
}

.allBlogs.ourStory h2 {
  margin-bottom: 30px;
}
.allBlogs h2 {
  margin-bottom: 50px;
}
.allBlogs .blogsBox {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 50px;
}
.allBlogs .blogsBox .blog .blog-img {
  border-radius: 30px;
  overflow: hidden;
  margin-bottom: 30px;
}
.allBlogs .blogsBox .blog .blog-content a {
  color: #000000;
  text-decoration: none;
}
.allBlogs .blogsBox .blog .blog-content a h3 {
  font-size: 22px;
}
.allBlogs .blogsBox .blog .blog-content h3 {
  font-size: 22px;
}
.allBlogs .blogsBox .blog .blog-content .btmBlg {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.allBlogs .blogsBox .blog .blog-content .btmBlg p {
  margin-bottom: 0;
}
.allBlogs .blogsBox .blog .blog-content .btmBlg img {
  width: 50px;
}
@media all and (max-width: 992px) {
  .allBlogs .blogsBox {
    grid-template-columns: 100%;
  }
}

.singleBlog .wp-block-columns {
  align-items: center !important;
  gap: 7rem;
}

.shareSec {
  padding-top: 0;
}
.shareSec .innerShare {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 20px;
  border-top: 2px solid rgba(0, 0, 0, 0.2);
}
.shareSec .innerShare p {
  margin-bottom: 0;
  font-size: 22px;
}
@media all and (max-width: 992px) {
  .shareSec .innerShare {
    flex-direction: column;
  }
}

.viewNext {
  padding-top: 0;
}
.viewNext h2 {
  margin-bottom: 30px;
}
.viewNext .blog .blog-img {
  border-radius: 30px;
  overflow: hidden;
  margin-bottom: 30px;
}
.viewNext .blog .blog-content a {
  color: #000000;
  text-decoration: none;
}
.viewNext .blog .blog-content a h3 {
  font-size: 22px;
}
.viewNext .blog .blog-content .btmBlg {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.viewNext .blog .blog-content .btmBlg p {
  margin-bottom: 0;
}
.viewNext .blog .blog-content .btmBlg img {
  width: 50px;
}

.howtoApply h2 {
  margin-bottom: 30px;
}
.howtoApply .apply {
  display: grid;
  grid-template-columns: 45% 50%;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 30px;
}
@media all and (max-width: 992px) {
  .howtoApply .apply {
    grid-template-columns: 100%;
    gap: 10px;
  }
}

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