footer {
  position: relative;
}
footer .upper-footer, footer .lower-footer {
  position: relative;
  z-index: 1;
}
footer .upper-footer {
  background-color: #fff;
  padding: 15px 0px;
  box-shadow: 0px 0px 7px 1px rgba(0, 0, 0, 0.3215686275);
  z-index: 2;
}
footer .upper-footer .container.flex {
  align-items: center;
  justify-content: space-between;
}
footer .upper-footer .container.flex .colA {
  display: flex;
  align-items: center;
  justify-content: center;
}
footer .upper-footer .container.flex .colA .contact {
  display: flex;
  gap: 4px;
}
footer .upper-footer .container.flex .colA .contact:not(:last-child) {
  border-right: 1px solid #D0CFCF;
  padding-right: 25px;
}
footer .upper-footer .container.flex .colA .contact:not(:first-child) {
  padding-left: 15px;
}
footer .upper-footer .container.flex .colA .contact svg {
  width: 40px;
}
footer .upper-footer .container.flex .colA .contact .contact-details h6, footer .upper-footer .container.flex .colA .contact .contact-details a {
  color: #000;
}
footer .upper-footer .container.flex .colB ul {
  display: flex;
  gap: 10px;
}
footer .upper-footer .container.flex .colB ul li a.pay-fee {
  padding: 10px 12px;
  position: relative;
  overflow: hidden;
  z-index: 1;
}
footer .upper-footer .container.flex .colB ul li a.pay-fee::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: transparent;
  z-index: -2;
}
footer .upper-footer .container.flex .colB ul li a.pay-fee::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 100%;
  background-color: var(--elementhover);
  transition: all 0.3s;
  z-index: -1;
}
footer .upper-footer .container.flex .colB ul li a.pay-fee:hover::before {
  width: 100%;
}
footer .upper-footer .container.flex .colB ul li a.pay-fee::after {
  background-color: #4459C5;
  border-radius: 25px;
}
footer .upper-footer .container.flex .colB ul li a.pay-fee::before {
  border-radius: 25px;
}
footer .upper-footer .container.flex .colB ul li.hasDropdown {
  position: relative;
}
footer .upper-footer .container.flex .colB ul li.hasDropdown::before {
  content: "";
  background-image: url(../../icon/dark-down.svg);
  background-repeat: no-repeat;
  background-position-y: 50%;
  background-position-x: 92%;
  background-size: var(--arrowsize) auto;
  position: absolute;
  right: 4%;
  top: 9%;
  width: 20px;
  height: 20px;
  z-index: 3;
}
footer .upper-footer .container.flex .colB ul li.hasDropdown:hover::before {
  transform: rotate(180deg);
  transition: 0.5s ease;
}
footer .upper-footer .container.flex .colB ul li.hasDropdown:hover .dropdown-menu {
  opacity: 1;
  transform: scale3d(1, 1, 1);
}
footer .upper-footer .container.flex .colB ul li.hasDropdown a {
  padding: 6px 30px 6px 10px;
  color: #000;
  border-color: #000;
  transition: 0.3s ease;
  position: relative;
  overflow: hidden;
  z-index: 1;
}
footer .upper-footer .container.flex .colB ul li.hasDropdown a:hover {
  border-color: var(--elementhover);
}
footer .upper-footer .container.flex .colB ul li.hasDropdown a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: transparent;
  z-index: -2;
}
footer .upper-footer .container.flex .colB ul li.hasDropdown a::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 100%;
  background-color: var(--elementhover);
  transition: all 0.3s;
  z-index: -1;
}
footer .upper-footer .container.flex .colB ul li.hasDropdown a:hover::before {
  width: 100%;
}
footer .upper-footer .container.flex .colB ul li.hasDropdown a::after {
  border-radius: 25px;
}
footer .upper-footer .container.flex .colB ul li.hasDropdown a::before {
  border-radius: 25px;
}
footer .upper-footer .container.flex .colB ul li.hasDropdown .dropdown-menu {
  --triangle: 10px;
  position: absolute;
  top: calc(100% + var(--triangle));
  left: 50%;
  translate: -50% 0;
  transform: perspective(2000px) translate3d(0px, 0px, 50px) rotateX(-90deg) scale3d(0.86, 0.75, 1) translateY(50px);
  transform-origin: top;
  transition: 0.4s ease;
  opacity: 0;
  width: 100%;
  min-width: 185px;
  z-index: 6;
}
footer .upper-footer .container.flex .colB ul li.hasDropdown .dropdown-menu::before {
  content: "";
  display: block;
  position: absolute;
  bottom: calc(100% - var(--triangle) / 2);
  left: 50%;
  translate: -50% 0;
  width: var(--triangle);
  height: var(--triangle);
  background: #fff;
  transform: rotate(45deg);
  z-index: -1;
}
footer .upper-footer .container.flex .colB ul li.hasDropdown .dropdown-menu ul {
  display: block;
  background: #fff;
  padding: 12px 10px;
  box-shadow: rgba(0, 0, 0, 0.01) -2px 6px 2px 3px;
  border-radius: 5px;
  text-align: left;
  white-space: nowrap;
}
footer .upper-footer .container.flex .colB ul li.hasDropdown .dropdown-menu ul li {
  padding: 0;
  display: block;
  color: #000;
}
footer .upper-footer .container.flex .colB ul li.hasDropdown .dropdown-menu ul li:not(:last-child) {
  margin-bottom: 2px;
}
footer .upper-footer .container.flex .colB ul li.hasDropdown .dropdown-menu ul li a {
  font-size: 13px;
  display: block;
  color: var(--black);
  padding: 5px;
  border-radius: 5px;
  overflow: hidden;
  position: relative;
  overflow: hidden;
  z-index: 1;
  position: relative;
  overflow: hidden;
  z-index: 1;
}
footer .upper-footer .container.flex .colB ul li.hasDropdown .dropdown-menu ul li a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: transparent;
  z-index: -2;
}
footer .upper-footer .container.flex .colB ul li.hasDropdown .dropdown-menu ul li a::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 100%;
  background-color: var(--elementhover);
  transition: all 0.3s;
  z-index: -1;
}
footer .upper-footer .container.flex .colB ul li.hasDropdown .dropdown-menu ul li a:hover::before {
  width: 100%;
}
footer .upper-footer .container.flex .colB ul li.hasDropdown .dropdown-menu ul li a::before {
  border-radius: 5px;
}
footer .upper-footer .container.flex .colB ul li.hasDropdown .dropdown-menu ul li a::after {
  border-radius: 5px;
}
footer .upper-footer .container.flex .colB ul li.hasDropdown .dropdown-menu ul li a:hover {
  color: #fff;
}
footer .lower-footer {
  background-color: #040635;
  padding: 40px 0;
}
footer .lower-footer .container .flex .colA, footer .lower-footer .container .flex .colB, footer .lower-footer .container .flex .colC, footer .lower-footer .container .flex .colD {
  flex: 1;
  padding-right: 40px;
}
footer .lower-footer .container .flex .colA .colD, footer .lower-footer .container .flex .colB .colD, footer .lower-footer .container .flex .colC .colD, footer .lower-footer .container .flex .colD .colD {
  padding: 0 0 0 40px;
}
footer .lower-footer .container .flex .colA h5, footer .lower-footer .container .flex .colB h5, footer .lower-footer .container .flex .colC h5, footer .lower-footer .container .flex .colD h5 {
  color: #fff;
  padding-bottom: 20px;
  font-weight: 400;
}
footer .lower-footer .container .flex .colA ul li, footer .lower-footer .container .flex .colB ul li, footer .lower-footer .container .flex .colC ul li, footer .lower-footer .container .flex .colD ul li {
  padding: 5px 0;
}
footer .lower-footer .container .flex .colA ul li a, footer .lower-footer .container .flex .colB ul li a, footer .lower-footer .container .flex .colC ul li a, footer .lower-footer .container .flex .colD ul li a {
  color: rgba(255, 255, 255, 0.6980392157);
  font-weight: 400;
  font-size: 14px;
}
footer .lower-footer .container .flex .colC .form {
  --theme: #fff;
  --color: #fff;
}
footer .lower-footer .container .flex .colC .form .form-group input.valid ~ label {
  color: rgba(255, 255, 255, 0.6980392157);
}
footer .lower-footer .container .flex .colC .form .form-group input:focus ~ label {
  color: rgba(255, 255, 255, 0.6980392157);
}
footer .lower-footer .container .flex .colC .theme-btn {
  transition: 0.5s ease;
  top: 50px;
  font-family: "Poppins", serif;
  font-weight: 500;
  font-size: 16px;
  color: #000;
  padding: 6px 15px;
  border-radius: 25px;
  position: relative;
  overflow: hidden;
  z-index: 1;
}
footer .lower-footer .container .flex .colC .theme-btn::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--white);
  border-radius: 25px;
  z-index: -2;
}
footer .lower-footer .container .flex .colC .theme-btn::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 100%;
  background-color: var(--elementhover);
  transition: all 0.3s;
  border-radius: 25px;
  z-index: -1;
}
footer .lower-footer .container .flex .colC .theme-btn:hover::before {
  width: 100%;
}
footer .lower-footer .container .flex .colC .theme-btn:hover {
  transition: 0.5s ease;
  color: #fff;
}
footer .lower-footer .container .flex .colD a:not(.theme-btn) {
  display: inline-block;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6980392157);
}
footer .lower-footer .container .flex .colD a.theme-btn {
  transition: 0.5s ease;
  top: 25px;
  font-family: "Poppins", serif;
  font-weight: 500;
  font-size: 16px;
  color: #000;
  padding: 6px 15px;
  border-radius: 25px;
  position: relative;
  overflow: hidden;
  z-index: 1;
}
footer .lower-footer .container .flex .colD a.theme-btn::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--white);
  border-radius: 25px;
  z-index: -2;
}
footer .lower-footer .container .flex .colD a.theme-btn::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 100%;
  background-color: var(--elementhover);
  transition: all 0.3s;
  border-radius: 25px;
  z-index: -1;
}
footer .lower-footer .container .flex .colD a.theme-btn:hover::before {
  width: 100%;
}
footer .lower-footer .container .flex .colD a.theme-btn:hover {
  transition: 0.5s ease;
  color: #fff;
}
footer .lower-footer .container .flex .colD .social-icons ul {
  display: flex;
  padding-top: 45px;
  align-items: center;
  gap: 7px;
}
footer .lower-footer .last-footer {
  padding-top: 40px;
}
footer .lower-footer .last-footer .last-list {
  border-bottom: 1px solid rgba(255, 255, 255, 0.3019607843);
  border-top: 1px solid rgba(255, 255, 255, 0.3019607843);
}
footer .lower-footer .last-footer .last-list li.hasDropdown {
  flex: 1;
  position: relative;
  padding: 10px 5px 10px 20px;
  border-right: 1px solid rgba(255, 255, 255, 0.3019607843);
  align-self: stretch;
}
footer .lower-footer .last-footer .last-list li.hasDropdown .plus-ico {
  position: absolute;
  right: 16px;
  top: 14px;
  --sizeplus: 17px;
  height: var(--sizeplus);
  width: var(--sizeplus);
}
footer .lower-footer .last-footer .last-list li.hasDropdown .plus-ico.active::before {
  transform: rotate(0deg);
  opacity: 0;
}
footer .lower-footer .last-footer .last-list li.hasDropdown .plus-ico::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 2px;
  width: 100%;
  background: #fff;
  transition: 0.5s ease;
  transform: rotate(90deg);
}
footer .lower-footer .last-footer .last-list li.hasDropdown .plus-ico::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 2px;
  width: 100%;
  background: #fff;
  transition: 0.5s ease;
}
footer .lower-footer .last-footer .last-list li.hasDropdown .footer-dropdown-menu {
  display: none;
}
footer .lower-footer .last-footer .last-list li.hasDropdown .footer-dropdown-menu ul {
  padding-top: 5px;
}
footer .lower-footer .last-footer .last-list li.hasDropdown .footer-dropdown-menu ul li a {
  color: rgba(255, 255, 255, 0.6980392157);
  font-weight: 400;
  font-size: 13px;
}
footer .lower-footer .end-details .flex {
  justify-content: center;
  align-items: center;
  padding-top: 20px;
  gap: 20px;
}
footer .lower-footer .end-details .flex p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
}
footer .lower-footer .end-details .flex p span img {
  width: 55px;
  padding-left: 10px;
}
footer .lower-footer .end-details .flex ul {
  display: flex;
  align-items: center;
  justify-content: centergap;
  gap: 10px;
}
footer .lower-footer .end-details .flex ul li {
  padding-right: 10px;
}
footer .lower-footer .end-details .flex ul li:first-child {
  border-right: 1px solid rgba(255, 255, 255, 0.6);
}
footer .lower-footer .end-details .flex ul li a {
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
}

.kid-enquire {
  position: fixed;
  bottom: 0;
  right: 0;
  z-index: 4;
}
@media (max-width: 675px) {
  .kid-enquire {
    bottom: 9%;
  }
}
.kid-enquire .kid-image {
  width: 130px;
  position: relative;
}
@media (max-width: 991px) {
  .kid-enquire .kid-image {
    width: 100px;
  }
}
.kid-enquire .kid-image img {
  width: 100%;
}
.kid-enquire .kid-image .enquire-banner {
  background: #fff;
  color: #000;
  padding: 8px 12px 12px;
  width: 200px;
  position: absolute;
  right: calc(100% - 22px);
  top: -35px;
  border-radius: 10px;
}
@media (max-width: 991px) {
  .kid-enquire .kid-image .enquire-banner {
    width: 170px;
    right: calc(100% - 16px);
  }
}
.kid-enquire .kid-image .enquire-banner::before {
  content: "";
  display: inline-block;
  margin: 0 5px;
  vertical-align: middle;
  width: 30px;
  height: 60px;
  border-right: solid 30px rgb(255, 255, 255);
  border-bottom: solid 30px transparent;
  border-top: solid 30px transparent;
  position: absolute;
  transform: rotate(180deg);
  right: -16px;
  bottom: 11%;
  z-index: -1;
}
.kid-enquire .kid-image .enquire-banner h3 {
  font-size: 20px;
  line-height: 16px;
  padding-bottom: 10px;
}
@media (max-width: 991px) {
  .kid-enquire .kid-image .enquire-banner h3 {
    font-size: 16px;
    padding-bottom: 5px;
  }
}
.kid-enquire .kid-image .enquire-banner p {
  font-size: 13px;
  line-height: 16px;
}
.kid-enquire .kid-image .enquire-banner button.kid-btn {
  background: #1BB6F0;
  color: #fff;
  border-radius: 5px;
  padding: 4px 8px;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 13px;
  line-height: 16px;
  margin-top: 10px;
  transition: 0.5s ease;
}
.kid-enquire .kid-image .enquire-banner button.kid-btn:hover {
  background: #FBC740;
  color: #000;
}

.footer-strip {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 5;
  background: var(--prime);
  display: none;
}
@media (max-width: 675px) {
  .footer-strip {
    display: block;
  }
}
.footer-strip ul {
  display: flex;
  flex-wrap: wrap;
}
.footer-strip ul li {
  flex: 1;
}
.footer-strip ul li:not(:last-child) {
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}
.footer-strip ul li a {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px;
  gap: 5px;
  color: var(--white);
  font-size: 14px;
  height: var(--footerstrip);
}
.footer-strip ul li a svg {
  width: 20px;
  height: 20px;
}
.footer-strip ul li a svg[stroke] {
  stroke: var(--white);
}
.footer-strip ul li a svg[fill] {
  fill: var(--white);
}
.footer-strip ul li a svg path[stroke] {
  stroke: var(--white);
}
.footer-strip ul li a svg path[fill] {
  fill: var(--white);
}

.setMargin-left {
  padding-left: 79px !important;
}/*# sourceMappingURL=footer.css.map */