/**
* Website Name: 
* Website URL: 
* Author: saifu567@gmail.com
*/

/*Fonts--------------*/

@import url("https://fonts.googleapis.com/css2?family=Prata&family=Cardo&family=Poppins:wght@300;400;500;600&display=swap");
/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
:root {
  --blue: #243e8c;
  --yellow: #fff100;
  --font-default: "Poppins", sans-serif;
  --font-heading: "Poppins", serif;
  --font-heading-2: "Poppins", serif;
}

.bg-blue {
  background-color: var(--blue);
}
.bg-yellow {
  background-color: var(--yellow);
}
.color-blue {
  color: var(--blue);
}
.color-black {
  color: #000;
}
.font-default {
  font-family: var(--font-default) !important;
}
.font-2 {
  font-family: var(--font-heading) !important;
}
.font-3 {
  font-family: var(--font-heading-2) !important;
}

body {
  font-family: "Poppins", sans-serif;
  color: #000;
  font-size: 14px;
  overflow-x: hidden;
}

a {
  color: #082743;
}

a:hover {
  color: #39535d;
  text-decoration: none;
}
.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Poppins", serif;
  font-weight: bold;
}
.h2,
h2 {
  font-size: 45px;
  line-height: 45px;
}
.section h3 {
  font-size: 23px;
  font-family: var(--font-default);
}
.bg-dark-blue {
  background-color: #082743;
}
.bg-green {
  background-color: #4ead95;
}
.bg-grey {
  background-color: #efefef;
}
.btn-rounded-blue {
  font-size: 16px;
  padding: 10px 24px;
  background: #3b3b9b;
  color: #fff;
  transition: 0.3s;
  border-radius: 50px;
}
.text-sm {
  font-size: 16px;
  line-height: 23px;
}
.text-md {
  font-size: 18px;
  line-height: 25px;
}
.text-lg {
  font-size: 27px;
}
.text-xl {
  font-size: 1.5rem;
}
.font-light {
  font-weight: 400;
}
.font-semi-bold {
  font-weight: 600 !important;
}
.btn-brdr-white {
  font-size: 13px;
  padding: 5px 20px;
  border: 2px solid #fff;
  color: #fff;
  transition: 0.3s;
  text-transform: uppercase;
  border-radius: 0;
  letter-spacing: 1px;
}
.btn-brdr-white:hover {
  background-color: #1d3853;
  border: 2px solid #1d3853;
  color: #fff;
}
.btn-submit {
  font-weight: 500;
  font-size: 17px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 8px 15px;
  border-radius: 0;
  transition: 0.5s;
  color: #000;
  background-color: #fff100;
  text-transform: uppercase;
  text-align: left;
  min-width: 100%;
  position: relative;
}
.btn-submit > i {
  position: absolute;
  right: 15px;
  top: 13px;
  transition: 0.5s;
}
.btn-submit:hover {
  background-color: #000;
  color: #fff;
}
.h-underline {
  font-size: 1.6rem;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  letter-spacing: 1px;
  margin-bottom: 3rem;
}
.h-underline::after {
  content: "";
  width: 40px;
  background-color: #fff;
  height: 1px;
  display: block;
  margin: 13px auto;
}
.btn-more {
  font-size: 16px;
  background-color: var(--blue);
  color: #fff;
  border-radius: 20px;
  padding: 9px 60px 9px 25px;
  position: relative;
  transition: 0.5s;
}
.btn-more > i {
  position: absolute;
  right: 20px;
  top: 13px;
  transition: 0.5s;
}
.btn-more:hover {
  color: #000;
  background-color: var(--yellow);
  padding-left: 27px;
}
.btn-more:hover > i {
  right: 15px;
}

.water-mark-bg {
  background-image: url("../images/water-mark-2.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top right;
}
.sec-uniform {
  min-height: 700px;
}
@media (max-width: 767px) {
  .container {
    padding-left: 22px;
    padding-right: 22px;
  }
}
/*--------------------------------------------------------------
# 5 Column Grid
--------------------------------------------------------------*/

.col-2dot4,
.col-sm-2dot4,
.col-md-2dot4,
.col-lg-2dot4,
.col-xl-2dot4 {
  position: relative;
  width: 100%;
  min-height: 1px;
  padding-right: 15px;
  padding-left: 15px;
}
.col-2dot4 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 20%;
  flex: 0 0 20%;
  max-width: 20%;
}
@media (min-width: 540px) {
  .col-sm-2dot4 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 20%;
    flex: 0 0 20%;
    max-width: 20%;
  }
}
@media (min-width: 720px) {
  .col-md-2dot4 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 20%;
    flex: 0 0 20%;
    max-width: 20%;
  }
}
@media (min-width: 960px) {
  .col-lg-2dot4 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 20%;
    flex: 0 0 20%;
    max-width: 20%;
  }
}
@media (min-width: 1140px) {
  .col-xl-2dot4 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 20%;
    flex: 0 0 20%;
    max-width: 20%;
  }
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
.header-top {
  font-size: 12px;
  font-weight: 600;
  padding-right: 40px;
}
.header-top .gaq-btn {
  font-size: 12px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 6px 14px;
  border-radius: 50px;
  transition: 0.5s;
  border: 3px solid #000;
  color: #000;
  font-weight: 500;
}
.header-top .gaq-btn > i {
  font-size: 17px;
  vertical-align: bottom;
  margin-left: 8px;
}
.header-top .h-btn {
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 8px 25px;
  border-radius: 50px;
  transition: 0.5s;
  color: #fff;
  background-color: #243e8c;
  vertical-align: baseline;
}
.header-top .h-btn:hover {
  background-color: var(--yellow);
  color: #000;
}
.header-top .h-btn > i {
  font-size: 20px;
  vertical-align: bottom;
  margin-left: 8px;
}
.whtsapp-icon {
  font-size: 20px;
  background-color: #1e398d;
  width: 43px;
  height: 43px;
  display: inline-flex;
  border-radius: 50px;
  align-items: center;
  justify-content: center;
  color: #fff;
}

.navbar-nav.main-nav > li {
  margin: 0.5rem 0.14rem;
  font-size: 30px;
  border-bottom: 1px solid #d5cf3c;
}
.navbar-nav.main-nav > li > .nav-link {
  font-weight: 500;
  color: #333;
  transition: 0.3s;
  padding-left: 1rem;
  padding-right: 1rem;
}
.navbar-nav.main-nav > li > .nav-link:hover {
  color: var(--blue);
}
.logo {
  width: 148px;
}
.main-header .navbar-toggler {
  border: 0;
  display: none !important;
}
.main-nav .dropdown-menu {
  background-color: transparent;
  border: 0;
}

.drop-close {
  z-index: 99;
  position: absolute;
  right: 0;
  top: 0;
}
.drop-close::before {
  font-family: "Font Awesome 5 Free";
  content: "\f00d";
  display: inline-block;
  margin-right: 20px;
  margin-top: 20px;
  vertical-align: middle;
  font-weight: 900;
  font-size: 20px;
}
.main-nav .dropdown-toggle::after {
  float: right;
  margin-top: 15px;
}

.navbar-nav.main-nav {
  /*background-color: rgb(255,241,0, 0.7);*/
}

#menu-wrapper {
  overflow: hidden;
  max-width: 100%;
  cursor: pointer;
}

#menu-wrapper #hamburger-menu {
  position: absolute;
  width: 25px;
  height: 20px;
  margin: 15px;
  /*right: 32px;*/
  right: 25px;
  top: 32px;
  z-index: 2;
}
#menu-wrapper #hamburger-menu::before {
  background-color: #fff100;
  content: "";
  padding: 10px;
  width: 40px;
  height: 100%;
  position: absolute;
  left: 50%;
  top: 50%;
  height: 40px;
  transform: translate(-50%, -50%);
  border-radius: 37px;
}

#menu-wrapper #hamburger-menu span {
  opacity: 1;
  right: 0;
  display: block;
  width: 100%;
  height: 2px;
  border-radius: 10px;
  color: black;
  background-color: black;
  position: absolute;
  transform: rotate(0deg);
  transition: 0.4s ease-in-out;
}

#menu-wrapper #hamburger-menu span:nth-child(1) {
  top: 0;
}
#menu-wrapper #hamburger-menu span:nth-child(2) {
  top: 9px;
}
#menu-wrapper #hamburger-menu span:nth-child(3) {
  top: 18px;
}
#menu-wrapper #hamburger-menu.open span:nth-child(1) {
  transform: translateY(9px) rotate(135deg);
}
#menu-wrapper #hamburger-menu.open span:nth-child(2) {
  opacity: 0;
  transform: translateX(-60px);
}
#menu-wrapper #hamburger-menu.open span:nth-child(3) {
  transform: translateY(-9px) rotate(-135deg);
}

#menu-container .menu-list .menu-submenu {
  padding-top: 20px;
  padding-bottom: 20px;
  padding-left: 20px;
  list-style: none;
}
#menu-container .menu-list {
  padding-left: 0;
  display: block;
  position: fixed;
  width: 100%;
  max-width: 450px;
  height: 100%;
  background: rgb(255, 241, 0, 0.9);
  box-shadow: rgba(100, 100, 100, 0.2) 6px 2px 10px;
  z-index: 1;
  overflow-y: auto;
  overflow-x: hidden;
  /*right: -100%;*/
  right: 0;
  transform: translateX(100%);
  top: 0;
  padding: 100px 30px;
  border-bottom: 1px solid #d5cf3c;
  list-style: none;
  transition: transform 0.4s ease-in-out;
}
#menu-container .menu-list.active {
  transform: translateX(0);
}

#menu-container .menu-list li.accordion-toggle,
#menu-container .menu-list .menu-login {
  font-size: 25px;
  padding: 20px;
  border-top: 1px solid #d5cf3c;
}
#menu-container .menu-list li:first-of-type {
  border-top: 0;
}

.accordion-toggle,
.accordion-content {
  cursor: pointer;
  font-size: 16px;
  position: relative;
  letter-spacing: 1px;
}

.accordion-content {
  display: none;
}

.accordion-toggle a:before,
.accordion-toggle a:after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  right: 30px;
  width: 15px;
  height: 2px;
  margin-top: -1px;
  background-color: #5a5858;
  transform-origin: 50% 50%;
  transition: all 0.3s ease-out;
}

.accordion-toggle a:before {
  transform: rotate(-90deg);
  opacity: 1;
  z-index: 2;
}

.accordion-toggle.active-tab {
  background: transparent;
  transition: all 0.3s ease;
}
.accordion-toggle a.active:before {
  transform: rotate(0deg);
  background: #000 !important;
}

.accordion-toggle a.active:after {
  transform: rotate(180deg);
  background: #000 !important;
  opacity: 0;
}

.no-dropdown.accordion-toggle a:before,
.no-dropdown.accordion-toggle a:after {
  display: none !important;
}

.main-header.fixed-top {
  position: fixed;
  background-color: #fff;
  box-shadow: rgba(0, 0, 0, 0.35) 3px 3px 3px;
  padding: 0px 0;
}
.main-header.fixed-top .logo img {
  height: 55px;
}

@media (min-width: 1024px) {
  .navbar-nav.main-nav {
  }
  .main-header {
    position: absolute;
    z-index: 2;
    width: 100%;
    padding: 30px 0;
    transition: all ease 0.5s;
  }

  .main-header .navbar {
    padding: 0.5rem 50px;
  }
  .main-header .navbar-collapse {
    flex-basis: auto;
    width: 400px;
    padding: 30px;
    background-color: rgb(255, 241, 0, 0.9);
    position: absolute;
    right: -400px;
    top: -30px;
    margin-top: 0;
    z-index: 5;
    transition: all 0.5s ease-in-out;
  }
  .main-header .navbar-collapse.show {
    right: 0;
  }
  .main-header.fixed-top #menu-wrapper #hamburger-menu {
    margin: 0;
    right: 40px;
  }
  .main-header.fixed-top .header-top {
    padding-top: 10px;
  }
}
@media (max-width: 1199px) {
  .main-header {
    position: fixed;
    z-index: 2;
    width: 100%;
    transition: all ease 0.5s;
    /*background-color: #FFF;*/
  }
  .logo {
    width: 70px;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .header-top {
    padding-right: 65px;
  }
}
@media (max-width: 645px) {
  .logo {
    width: 50px;
  }
  .whtsapp-icon {
    width: 30px;
    height: 30px;
    font-size: 15px;
  }
  .header-top .h-btn {
    padding: 5px 15px;
    font-size: 12px;
  }
  #menu-wrapper #hamburger-menu {
    right: 7px;
    top: 19px;
  }
  .main-header.fixed-top #menu-wrapper #hamburger-menu {
    margin: 8px;
  }
  .main-header.fixed-top {
    padding: 0;
  }
}

/*--------------------------------------------------------------
# Main carousel
--------------------------------------------------------------*/

.carousel-main .carousel-indicators {
  bottom: 5%;
}
.carousel-main .carousel-indicators li {
  background-color: #a7a7a7;
}
.carousel-main .carousel-inner {
  /*height: 35vh;*/
}
.carousel-main .carousel-caption {
  right: inherit;
  bottom: 20%;
  text-align: left;
}
.carousel-main .carousel-caption h2 {
  font-size: 12px;
  line-height: 1;
  font-weight: normal;
}
.carousel-main .carousel-caption p {
  font-size: 11px;
  text-transform: uppercase;
  line-height: 1;
}
.carousel-main .carousel-caption .caption-wrap {
  background-image: url("../images/blue-shape-1.png");
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 120px;
  height: 127px;
  padding-left: 20px;
  padding-top: 10px;
}
.carousel-main .carousel-caption .yellow-shape {
  background-image: url("../images/yellow-shape-1.png");
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  right: 0;
  bottom: 0;
  width: 37px;
  height: 45px;
}
.carousel-main video {
  width: 100%;
}

/**
 * Change animation duration
 */
.animated {
  -webkit-animation-duration: 1.5s;
  animation-duration: 1.5s;
}

@-webkit-keyframes fadeInRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100px, 0, 0);
    transform: translate3d(100px, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100px, 0, 0);
    transform: translate3d(100px, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

.fadeInRight {
  -webkit-animation-name: fadeInRight;
  animation-name: fadeInRight;
}

@media (min-width: 1500px) {
  .carousel-main .carousel-inner {
    /*height: 100vh;*/
  }
  .carousel-main .carousel-caption .caption-wrap {
    width: 450px;
    height: 477px;
    padding-left: 90px;
  }
  .carousel-main .carousel-caption h2 {
    font-size: 44px;
  }
  .carousel-main .carousel-caption p {
    font-size: 29px;
  }
  .carousel-main .carousel-caption .yellow-shape {
    width: 87px;
    height: 95px;
  }
}
/*@media (min-width: 1024px) and (max-width: 1399px){
.carousel-main .carousel-caption{
    bottom: 20px;
  }
}*/

@media (min-width: 1024px) and (max-width: 1499px) {
  .carousel-main .carousel-caption .caption-wrap {
    width: 290px;
    height: 307px;
    padding-left: 50px;
  }
  .carousel-main .carousel-caption {
    top: 110px;
    bottom: inherit;
    left: 8%;
  }
  .carousel-main .carousel-caption h2 {
    font-size: 30px;
  }
  .carousel-main .carousel-caption p {
    font-size: 20px;
  }
  .carousel-main .carousel-caption .yellow-shape {
    width: 67px;
    height: 72px;
  }
}
@media (min-width: 1200px) and (max-width: 1499px) {
  .carousel-main .carousel-caption {
    left: 20%;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .carousel-main .carousel-caption .caption-wrap {
    width: 225px;
    height: 240px;
    padding-left: 45px;
  }
  .carousel-main .carousel-caption {
    top: 80px;
    bottom: inherit;
    left: 8%;
  }
  .carousel-main .carousel-caption h2 {
    font-size: 25px;
  }
  .carousel-main .carousel-caption p {
    font-size: 17px;
  }
  .carousel-main .carousel-caption .yellow-shape {
    width: 52px;
    height: 57px;
  }
}
@media (max-width: 767px) {
  .carousel-main .carousel-caption .caption-wrap {
    width: 225px;
    height: 240px;
    padding-left: 45px;
  }
  .carousel-main .carousel-caption {
    top: 45px;
    bottom: inherit;
    left: 8%;
  }
  .carousel-main .carousel-caption h2 {
    font-size: 25px;
  }
  .carousel-main .carousel-caption p {
    font-size: 17px;
  }
  .carousel-main .carousel-caption .yellow-shape {
    width: 52px;
    height: 57px;
  }
}

/*--------------------------------------------------------------
# Skew
--------------------------------------------------------------*/

.angle {
  margin-top: -6vw;
}
.angle.top-left {
  clip-path: polygon(0 4vw, 100% 0, 100% 100%, 0 100%);
}
.angle.top-right {
  clip-path: polygon(0 0, 100% 4vw, 100% 100%, 0 100%);
}
.angle.last {
  clip-path: polygon(0 0, 100% 8vw, 100% 100%, 0 100%);
}
.angle.first {
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 calc(100% - 4vw));
  margin-top: 0;
}
/*.angle{
  margin: 0 -50px;
  -webkit-transform-origin: left center;
  -moz-transform-origin: left center;
  -o-transform-origin: left center;
  -ms-transform-origin: left center;
  transform-origin: left center;
  overflow: hidden;
}

.angle:nth-child(odd)::before{
  
  -webkit-transform: skewY(5deg);
  -moz-transform:    skewY(5deg);
  -ms-transform:     skewY(5deg);
  -o-transform:      skewY(5deg);
  transform:         skewY(5deg);
  -webkit-backface-visibility: hidden;
  margin-top: -250px;
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.angle:nth-child(even)::before{
  
  -webkit-transform: skewY(-5deg);
  -moz-transform:    skewY(-5deg);
  -ms-transform:     skewY(-5deg);
  -o-transform:      skewY(-5deg);
  transform:         skewY(-5deg);
  -webkit-backface-visibility: hidden;
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.angle:first-child{
  margin-top: 0px;
}
.content{
  height: 100%;
}*/

/*.angle:nth-child(odd) .content{
  -webkit-transform: skewY(-5deg);
  -moz-transform:    skewY(-5deg);
  -ms-transform:     skewY(-5deg);
  -o-transform:      skewY(-5deg);
  transform:         skewY(-5deg);
  -webkit-backface-visibility: hidden;
  padding: 130px 0 250px 0;
  position: relative;
  height: 100%;
  top:-2em;
}
.angle:nth-child(even) .content{
  -webkit-transform: skewY(5deg);
  -moz-transform:    skewY(5deg);
  -ms-transform:     skewY(5deg);
  -o-transform:      skewY(5deg);
  transform:         skewY(5deg);
  -webkit-backface-visibility: hidden;
  padding: 130px 0 200px 0;
  position: relative;
  height: 100%;
  top:-2em;
  margin-bottom:0em;
}*/

/*.final article{
  width: 100%;
  -webkit-transform: skewY(5deg);
  -moz-transform:    skewY(5deg);
  -ms-transform:     skewY(5deg);
  -o-transform:      skewY(5deg);
  transform:         skewY(5deg);
  -webkit-backface-visibility: hidden;
}
.finalfinal{
  background: blue;
  height: 1em;
  padding: 3.8em;
  margin-top: -7.7em;
  width: 100%;
}*/

/*--------------------------------------------------------------
# Section
--------------------------------------------------------------*/

.py-section {
  padding: 160px 0;
}
.spotlight {
  width: 100%;
  /*height: 100vh;
    background: url(../images/spotlight-bg.jpg) top center;
    background-size: cover;*/
  position: relative;
}
@media (min-width: 1024px) {
  .spotlight {
    background-attachment: fixed;
  }
}

.section h2,
.section .h2 {
  margin-bottom: 1.5rem;
  padding-bottom: 43px;
  position: relative;
}
.head-underline {
  position: relative;
  padding-bottom: 23px;
}
.section h2::after,
.head-underline::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 212px;
  height: 1px;
  background-color: var(--blue);
}
.section.text-white h2::after {
  background-color: #fff;
}
.section h2.no-underline::after {
  display: none;
}
.section h2,
.section .h2,
.section h3,
.section .h3 {
  font-weight: 500;
  margin-bottom: 1.5rem;
}

/*--------------------------------------------------------------
# How it works
--------------------------------------------------------------*/
.howitworks-list {
  margin-left: -8px;
  margin-right: -8px;
}
.howitworks-list > [class*="col-"] {
  padding-left: 8px;
  padding-right: 8px;
}
.howitworks-list-item .icon-box {
  background: #10266b;
  padding: 15px;
  border-radius: 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  height: 300px;
  padding-top: 71px;
  transition: all 0.6s ease-in-out;
  margin-bottom: 20px;
}
.howitworks-list-item .icon-box:hover,
.howitworks-list-item.active .icon-box {
  background: var(--yellow);
  color: var(--blue);
}
.howitworks-list-item .icon-box:hover {
  margin-top: -10px;
}

.howitworks-list-item .icon-box .icon {
  width: 100%;
  /*display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;*/
  text-align: center;
  border-radius: 20px;
  color: #000;
}
.howitworks-list-item .icon-box .icon > img {
  width: 90px;
  filter: brightness(0) invert(1);
  transition: all 0.5s ease-in-out;
}
.howitworks-list-item .icon-box:hover .icon > img,
.howitworks-list-item.active .icon-box .icon > img {
  filter: brightness(0) invert(0);
}

.howitworks-list-item .icon-box .icon i {
  color: #2dc997;
  font-size: 24px;
}

.howitworks-list-item .icon-box .title {
  font-weight: 300;
  margin-bottom: 12px;
  font-size: 17px;
  padding-top: 64px;
  font-family: "Poppins", sans-serif;
  width: 80%;
}

.howitworks-list-item .icon-box .title a {
  color: #fff;
}
.howitworks-list-item .icon-box:hover .title a,
.howitworks-list-item.active .icon-box .title a {
  color: var(--blue);
}

.howitworks-list-item .icon-box .description {
  font-size: 12px;
  color: #8a8a8a;
  font-weight: bold;
  margin-bottom: 26px;
}

@media (max-width: 645px) {
  .howitworks-list-item .icon-box {
    height: 150px;
    padding-top: 15px;
  }
  .howitworks-list-item .icon-box .title {
    padding-top: 15px;
  }
  .howitworks-list-item .icon-box .icon > img {
    width: 50px;
  }
}

/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
.bottom-pic {
  bottom: -160px;
}
.about {
  background-color: #212c39;
  color: #fff;
}
@media (min-width: 1024px) {
  .bottom-pic {
    position: absolute;
  }
}
@media (max-width: 1023px) {
  .bottom-pic {
    position: relative;
  }
}
@media (max-width: 645px) {
  .about-main .btn-more {
    margin-bottom: 6rem;
  }
}

.p-message {
  background-image: url("../images/p-message-water-mark.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  background-color: #fff;
  overflow: hidden;
}

/*--------------------------------------------------------------
# Facilities Home
--------------------------------------------------------------*/
/* Effect  */

.icon-rounded {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  margin: 10px 0 10px 0;
}

.icon-round-hover {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  overflow: hidden;
  transition: all 0.4s ease-in-out;
  transform: scale(1);
}

.icon-round {
  background-color: rgba(255, 255, 255, 0.3);
  overflow: hidden;
  transition: all 0.4s ease-in-out;
}

.icon-round:hover {
  background-color: rgba(255, 255, 255, 0.5);
}

.slider-wrapper .slide-navigation__txt li span.active {
  background: #243e8c;
  transform: scale(1);
  opacity: 1;
}

.slider-wrapper {
  position: relative;
  max-width: 100%;
  /*min-width: 480px;*/
  background: #fff;
  margin: 0 auto;
  overflow: hidden;
}
.slider-wrapper:after {
  /*background-color: rgba(0, 0, 0, 0.37);*/
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  z-index: 1;
  left: 0;
  top: 0;
}
.slider-wrapper .slider {
  position: relative;
  height: 100vh;
  padding: 0 0;
}
.slider-wrapper .slider::after {
  content: "";
  display: table;
  clear: both;
}
.slider-wrapper .slider .slide-wrapper {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
}
.slider-wrapper .slide-navigation__squares,
.slider-wrapper .slide-navigation__txt {
  width: 100%;
  position: absolute;
  float: left;
  overflow: hidden;
  bottom: 70px;
  z-index: 10;
}
.slider-wrapper .slide-navigation__squares::after,
.slider-wrapper .slide-navigation__txt::after {
  content: "";
  display: table;
  clear: both;
}
.slider-wrapper .slide-navigation__txt {
  display: block;
  /*height: 100%;*/
}
.slider-wrapper .slide-navigation__txt::after {
  content: "";
  display: table;
  clear: both;
}
.slider-wrapper .slide-navigation__txt ul {
  margin: 0;
  list-style: none;
  padding: 0;
  /*position: absolute;*/
  display: table-cell;
  width: 100%;
}
.slider-wrapper .slide-navigation__txt ul::after {
  content: "";
  display: table;
  clear: both;
}
.slider-wrapper .slide-navigation__txt li {
  text-transform: uppercase;
  letter-spacing: 0.2rem;
  margin: 0 1.2rem;
  position: relative;
  display: inline-block;
  font-size: 1.2rem;
  font-weight: 600;
  color: #a1a5b8;
}
.slider-wrapper .slide-navigation__txt li span {
  cursor: pointer;
  transition: all 0.5s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  background-color: #fff100;
}
.slider-wrapper .slide-navigation__txt li span.active {
  /*transform: scale(1.1, 1.1);*/
}
.slider-wrapper .slide-navigation__txt li span img {
  /*opacity: 0.6;*/
  width: 83px;
}
.slider-wrapper .slide-navigation__txt li span.active img {
  filter: invert(1);
  opacity: 1;
}
.slider-wrapper .slide-navigation__squares {
  display: none;
  height: 100%;
}
.slider-wrapper .slide-navigation__squares .squares-wrapper {
  position: absolute;
  margin-left: calc(50% - 0.4rem);
  bottom: 5rem;
  height: 4.6rem;
  overflow: hidden;
}
.slider-wrapper .slide-navigation__squares .squares-slider {
  position: relative;
  display: block;
  margin-top: -2.5rem;
  transform: translateY(-2.5rem);
}
.slider-wrapper .slide-navigation__squares .square {
  width: 0.6rem;
  height: 0.6rem;
  display: block;
  margin: 1.3rem 0;
  background: #a1a5b8;
}
.slider-wrapper .slide-navigation__squares .square.red {
  background: #e34d67;
}
.slider-wrapper .slides-container {
  position: relative;
  width: 100%;
  float: left;
  height: 100%;
}
.slider-wrapper .slide {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  overflow: hidden;
}
.slider-wrapper .slide img {
  width: 100%;
  display: block;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  position: absolute;
  left: 0;
  top: 0;
}
.slider-wrapper .slide .slide-content {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  padding: 10rem 0;
  z-index: 99;
}
.slider-wrapper .slide .slide-content h2 {
  text-transform: uppercase;
  color: white;
  margin: 0;
  position: relative;
}
.slider-wrapper .slide .slide-content h3 {
  color: #fff;
  font-size: 35px;
  max-width: 80%;
  margin: 0;
  line-height: 1;
  position: relative;
  margin-top: 4rem;
}
.slider-wrapper .slide .slide-txt {
  position: relative;
  display: block;
  width: 100;
  margin-top: 3rem;
}
.slider-wrapper .slide .slide-txt::after {
  content: "";
  display: table;
  clear: both;
}
.slider-wrapper .slide .slide-txt p {
  margin: 0;
  max-width: 33%;
  color: #fff;
  font-size: 18px;
  line-height: 1.4;
  float: left;
}
/*.slider-wrapper .slide .slide-txt button {
  display: block;
  float: right;
  width: 18rem;
  text-align: center;
  background: transparent;
  background-color: transparent;
  border: 0.28rem solid #E34D67;
  text-transform: uppercase;
  padding: 0.8rem 0.5rem;
  font-size: 1.5rem;
  color: #E34D67;
  font-weight: 600;
  letter-spacing: 0.2rem;
  outline: none;
  overflow: hidden;
}*/

@media (max-width: 1199px) {
  .slider-wrapper .slide-navigation__txt {
    max-width: 93%;
    overflow-x: auto;
    white-space: nowrap;
    width: auto;
  }
  .slider-wrapper .slide .slide-content {
    padding: 4rem 2rem;
  }
  .slider-wrapper .slide .slide-txt p {
    max-width: 85%;
  }
}

/*--------------------------------------------------------------
# Impact
--------------------------------------------------------------*/

.impact .counters span {
  /*font-size: 73px;*/
  font-size: 60px;
  line-height: 1.3;
  display: block;
  color: #000;
  font-weight: bold;
}

.impact .box {
  padding: 50px 20px;
  margin-bottom: 30px;
  text-align: center;
  height: 197px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  transition: all 0.5s ease-in-out;
  background-color: #fff;
}
.impact .box:hover {
}

.impact .icon {
  transition: 0.2s;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  width: 72px;
  height: 72px;
}

.impact .icon a {
  display: inline-block;
}

.impact .icon i {
  color: #fff;
  font-size: 24px;
  margin-bottom: 10px;
}

.impact .title {
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 15px;
  text-transform: uppercase;
}

.impact .title a {
  color: #111;
}

.impact .description {
  font-size: 14px;
  line-height: 18px;
  color: #252525;
  margin-bottom: 0;
}
@media (max-width: 1299px) {
  .impact .counters span {
    font-size: 40px;
  }
}
@media (max-width: 645px) {
  .impact .box {
    padding: 25px 21px;
    margin-bottom: 20px;
    height: 177px;
  }
  .impact .counters span {
    font-size: 20px;
  }
  .impact .counters {
    margin-left: -10px;
    margin-right: -10px;
  }
  .impact .counters > [class*="col-"] {
    padding-left: 10px;
    padding-right: 10px;
  }
}

/*--------------------------------------------------------------
# Latest Events
--------------------------------------------------------------*/

.events .box {
  margin-bottom: 20px;
  overflow: hidden;
}

.events .box .box-img {
  position: relative;
  overflow: hidden;
}
.events .box .box-img > img {
  transition: all 0.3s ease-in-out;
}
.events .box:hover .box-img > img {
  transform: scale(1.03);
}

.events .box .box-info h4 {
  font-weight: 500;
  margin: 30px 0 30px 0;
  font-size: 18px;
  font-family: var(--font-default);
}

.events .box .box-info span {
  display: block;
  font-size: 19px;
  font-weight: 400;
  margin-bottom: 15px;
  color: #ffb81c;
}
.events .box .box-info span i {
  margin-right: 13px;
  vertical-align: text-bottom;
}
.events .box .box-info span i img {
  width: 31px;
}

.events .box .box-info p {
  font-style: italic;
  font-size: 14px;
  line-height: 26px;
  color: #666;
}
/*--------------------------------------------------------------
# Our Team
--------------------------------------------------------------*/

.team .member {
  margin-bottom: 30px;
  overflow: hidden;
  text-align: center;
}

.team .member .member-img {
  position: relative;
  overflow: hidden;
}

.team .member .member-info h4 {
  font-weight: 700;
  margin: 30px 0 0 0;
  font-size: 16px;
  font-family: var(--font-default);
  text-transform: uppercase;
  color: #002776;
}

.team .member .member-info span {
  display: block;
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 15px;
  color: #002776;
  font-weight: 700;
}

.team .member .member-info p {
  font-style: italic;
  font-size: 14px;
  line-height: 26px;
  color: #666;
}

/*--------------------------------------------------------------
# FAQ
--------------------------------------------------------------*/

.faq .card {
  border: 0;
}
.faq .card .card-header {
  padding: 0;
  margin-bottom: 0;
  border-top: 1px solid #bebebe;
  border-bottom: 0;
  background-color: transparent;
}
.faq .card .card-header .btn-header-link {
  display: block;
  text-align: left;
  color: #0a2d93;
  padding: 20px 0;
  font-size: 22px;
  font-weight: 600;
}
.faq .card .card-header .btn-header-link:focus {
  box-shadow: none;
}
.faq .card .card-header .btn-header-link:after {
  content: "\f077";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  float: right;
}

.faq .card .card-header .btn-header-link.collapsed {
}

.faq .card .card-header .btn-header-link.collapsed:after {
  content: "\f078";
}

.faq .card .collapsing {
  border-top: 1px solid #bebebe;
  line-height: 23px;
}

.faq .card .collapse {
  border: 0;
  border-top: 1px solid #bebebe;
}

.faq .card .collapse.show {
  line-height: 23px;
  color: #050505;
  font-size: 16px;
}
.faq .card .card-body {
  padding: 20px 0;
}

/*--------------------------------------------------------------
# Testimonials
--------------------------------------------------------------*/
.testimonials .quote-wrap {
  border-bottom: 1px solid #bcbcbc;
  padding-bottom: 80px;
  padding-top: 80px;
}
.testimonials .quote-wrap:last-child {
  border-bottom: 0;
}
.testimonials .quote h3 {
  color: #002776;
  font-size: 22px;
  font-family: var(--font-heading-2);
  margin-bottom: 30px;
  text-transform: inherit;
}
.testimonials .quote p {
  font-size: 16px;
  margin-bottom: 30px;
}
.testimonials .quote .author {
  font-size: 21px;
  font-weight: 800;
  color: #0a2d93;
}
.testimonials .quote .auth-type {
  font-size: 15px;
  color: #555555;
}

/*--------------------------------------------------------------
# Gallery
--------------------------------------------------------------*/

.gallery .gallery-item {
  background: #1e4356;
  overflow: hidden;
  min-height: 200px;
  position: relative;
  border-radius: 4px;
  margin: 0 0 30px 0;
}

.gallery .gallery-item img {
  transition: all 0.3s ease-in-out;
}

.gallery .gallery-item .gallery-info {
  opacity: 0;
  position: absolute;
  transition: all 0.3s linear;
  text-align: center;
  top: 10%;
  left: 0;
  right: 0;
}

.gallery .gallery-item .gallery-info h3 {
  font-size: 22px;
}

.gallery .gallery-item .gallery-info h3 a {
  color: #fff;
  font-weight: bold;
}

.gallery .gallery-item .gallery-info a i {
  color: rgba(255, 255, 255, 0.6);
  font-size: 28px;
  transition: 0.3s;
}

.gallery .gallery-item .gallery-info a i:hover {
  color: white;
}

.gallery .gallery-item:hover img {
  opacity: 0.6;
  transform: scale(1.1);
}

.gallery .gallery-item:hover .gallery-info {
  opacity: 1;
  top: calc(50% - 30px);
}

/*--------------------------------------------------------------
# Forms
--------------------------------------------------------------*/
.contact-form .form-control {
  border-radius: 0;
  color: #fff;
  font-size: 12px;
  border: 0;
  padding: 1.5rem 1.35rem;
  height: calc(1.5em + 1.25rem + 2px);
  font-weight: 500;
  background-color: #354d99;
  font-family: var(--font-default);
}
.contact-form textarea.form-control {
  border-radius: 24px;
  resize: none;
  height: auto;
}
.contact-form select.form-control {
  height: 48px;
  padding: 0 1.35rem;
}
.contact-form .form-control::placeholder {
  color: #7289ce;
  opacity: 1;
}
.contact-form .form-control:focus {
  box-shadow: 0 0 0 0.05rem rgba(0, 123, 255, 0.25);
}

.contact-form .form-group {
  margin-bottom: 1.5rem;
}
.contact-form label,
.contact-form .h6 {
  font-size: 14px;
  font-weight: 500;
}
.contact-form label.custom-control-label {
  font-size: 12px;
  padding-top: 4px;
  margin-bottom: 9px;
}
.contact-icon {
  background-color: #082743;
  color: #fff;
  font-size: 2.5rem;
  width: 80px;
  height: 80px;
  line-height: 80px;
  border-radius: 50px;
}
.help-block.with-errors ul,
.help-block.with-errors ul li {
  font-size: 12px;
  padding: 0;
  margin: 0;
  color: #dc3545;
}

/*--------------------------------------------------------------
# Inner Page
--------------------------------------------------------------*/
.side-img {
  padding: 0 60px;
}
.inner-page .section h3 {
  font-size: 30px;
  text-transform: inherit;
}
.sub-link .howitworks-list-item .icon-box {
  height: 215px;
  padding: 0;
  padding-top: 25px;
}
.sub-link .howitworks-list-item .icon-box .title {
  padding-top: 25px;
}

@media (max-width: 645px) {
  .sub-link .howitworks-list-item {
    display: flex;
    flex-direction: column;
    height: 100%;
  }
  .sub-link .howitworks-list-item .icon-box {
    height: 100%;
  }
}

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact {
  background-color: #1e4973;
}
.contact .whatsapp-btn {
  font-size: 34px;
  letter-spacing: 1px;
  transition: 0.5s;
  color: #fff;
  font-weight: bold;
}
.contact .whatsapp-btn > i {
  font-size: 40px;
  vertical-align: text-bottom;
}

/*--------------------------------------------------------------
# Inner Banner
--------------------------------------------------------------*/
.inner-banner {
  position: relative;
}
.inner-banner .banner-img {
  padding-bottom: 75%;
  position: relative;
}
.inner-banner .banner-img img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (min-width: 1024px) {
  .inner-banner .banner-img {
    padding-bottom: 35%;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .inner-banner {
    min-height: 300px;
  }
  .inner-banner .title {
    display: none;
  }
}
@media (min-width: 300px) and (max-width: 767px) {
  .inner-banner {
    min-height: 150px;
  }
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/

.footer-main {
  padding: 160px 0;
  background-color: #243e8c;
  background-image: url("../images/footer-water-mark.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top right;
}
.footer-main .social-links-footer h4 {
  font-family: var(--font-default);
  font-size: 19px;
  font-weight: 500;
  margin-bottom: 47px;
}

.footer-main .social-links-footer a {
  font-size: 34px;
  display: inline-block;
  background: #fff;
  color: #142e79;
  line-height: 1;
  padding: 18px 0;
  margin-right: 0;
  border-radius: 50%;
  text-align: center;
  width: 69px;
  height: 69px;
  transition: 0.3s;
  margin-right: 8px;
}

.footer-main .social-links-footer a:hover {
  background: #3594f2;
  color: #fff;
  text-decoration: none;
}

.footer-main .copyright {
  font-size: 12px;
  margin-top: 10px;
}
.footer-main .footer-logo-img {
  padding: 2px;
}

.footer-c-section .desc {
  font-size: 12px;
}
.btn-footer {
  font-size: 16px;
  background-color: var(--yellow);
  color: var(--blue);
  border-radius: 20px;
  padding: 9px 60px 9px 25px;
  position: relative;
  transition: 0.5s;
}
.btn-footer > i {
  position: absolute;
  right: 20px;
  top: 13px;
  transition: 0.5s;
}
.btn-footer:hover {
  color: #fff;
  background-color: #1b337f;
}
.btn-footer:hover > i {
  right: 22px;
}

.footer-address {
  font-size: 15px;
}
.footer-links a {
  color: #fff;
}
.footer-links a:hover {
  text-decoration: underline;
}
.footer-nav > ul > li {
  font-size: 26px;
  position: relative;
  padding: 5px 0;
}
.footer-nav > ul > li > a {
  color: #fff;
  transition: 0.4s;
  display: block;
}
.footer-nav > ul > li > a:hover {
  color: var(--yellow);
}
.footer-nav > ul > li ul {
  margin-bottom: 13px;
}
.footer-nav > ul > li ul > li {
  line-height: 1;
}
.footer-nav > ul > li ul > li > a {
  color: #fff;
  font-size: 13px;
}

.footer-nav > ul > li.sub-menu > a::after {
  content: "";
  /*
    border-right: 0.1em solid white;
    border-top: 0.1em solid white;
    transform: rotate(135deg);
    */
  margin-right: 0.5em;
  position: absolute;
  top: 17px;
  margin-left: 18px;
  right: 10px;
  width: 0.4em;
  height: 0.4em;
  transition: all ease 0.5s;
}
.footer-nav > ul > li.sub-menu > a[aria-expanded="true"]::after {
  content: "";
  transform: rotate(-45deg);
}
@media (min-width: 992px) and (max-width: 1199px) {
  .footer-main .social-links-footer a {
    width: 59px;
    height: 59px;
    font-size: 32px;
    padding: 14px 0;
  }
}
@media (min-width: 1200px) {
  .footer-nav > ul {
    width: 50%;
  }
}
@media (max-width: 645px) {
  /*.footer-main .social-links-footer a {
		font-size: 24px;
		padding: 14px 0;
		width: 49px;
		height: 49px;
	}
  .footer-links{
    display: block;
  }*/
}

/*--------------------------------------------------------------
# Media Queries
--------------------------------------------------------------*/
/*@media (max-width: 645px) {
.container, .container-fluid, .container-lg, .container-md, .container-sm, .container-xl{
  padding-left: 25px;
  padding-right: 25px;
}
}*/

@media (min-width: 1200px) {
  .container,
  .container-lg,
  .container-md,
  .container-sm,
  .container-xl {
    max-width: 1410px;
  }
}

/*--------------------------------------------------------------
# Photo Gallery
--------------------------------------------------------------*/
.gallery-list .venobox {
  overflow: hidden;
  display: block;
}
.gallery-list .venobox img {
  width: 100%;
  transition: transform 0.8s ease-in-out;
}
.gallery-list .venobox:hover img {
  transform: scale(1.1) rotate(4deg);
}
.gallery-list {
  margin-left: -3px;
  margin-right: -3px;
}
.gallery-list [class*="col-"] {
  padding: 3px;
}
@media (max-width: 645px) {
  .gallery-list {
    margin-left: 0;
    margin-right: 0;
  }
}

/*--------------------------------------------------------------
# Left Image card
--------------------------------------------------------------*/
.left-side-card .icon-box {
  background: #fff;
  background-size: cover;
  padding: 0 0 30px 0;
}

.left-side-card .icon-box .icon {
  float: left;
  width: 120px;
  height: 120px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
}

.left-side-card .icon-box .title {
  margin-left: 180px;
  font-weight: 600;
  margin-bottom: 0;
  font-size: 31px;
  font-family: var(--font-default);
}

.left-side-card .icon-box .title a {
  color: #111;
}

.left-side-card .icon-box .description {
  margin-left: 180px;
  line-height: 29px;
  font-size: 20px;
}

.left-side-card.contact .icon-box .description {
  font-weight: 500;
}
.left-side-card.admission .icon-box .description {
  font-size: 16px;
}

@media (max-width: 546px) {
  .left-side-card .icon-box .description {
    margin-left: 80px;
    font-size: 16px;
    line-height: 24px;
  }
  .left-side-card .icon-box .icon {
    width: 60px;
    height: 60px;
  }
  .left-side-card .icon-box .title {
    margin-left: 80px;
    font-size: 20px;
  }
}

/*--------------------------------------------------------------
# List Content
--------------------------------------------------------------*/

.list-content h4 {
  font-size: 31px;
  font-family: var(--font-default);
}
.list-content p {
  font-size: 16px;
}
.list-content ul {
  list-style: none;
  padding-left: 20px;
}
.list-content li:before {
  content: "\f054";
  font-family: "Font Awesome 5 Free";
  vertical-align: middle;
  font-weight: 900;
  margin-left: -1.05rem;
  padding-right: 0.5rem;
}
ul.list-check li:before {
  content: "\f00c";
}

/*--------------------------------------------------------------
Table with rounded corners
--------------------------------------------------------------*/

/* top-left border-radius */
.table-radius tr:first-child th:first-child {
  border-top-left-radius: 20px;
}

/* top-right border-radius */
.table-radius tr:first-child th:last-child {
  border-top-right-radius: 20px;
}

/* bottom-left border-radius */
.table-radius tr:last-child td:first-child {
  border-bottom-left-radius: 20px;
}

/* bottom-right border-radius */
.table-radius tr:last-child td:last-child {
  border-bottom-right-radius: 20px;
}
.table-radius .thead-dark th {
  background-color: var(--blue);
}
.table-radius tr td {
  background: #eeeeee;
}

/*--------------------------------------------------------------
Media Gallery
--------------------------------------------------------------*/

.gallery-container {
  padding: 0;
  margin-left: -2px;
  margin-right: -2px;
  overflow: hidden;
}
.gallery-container li {
  list-style: none;
  padding: 2px;
}
.gallery-container > [class*="col-"] {
  padding-left: 2px;
  padding-right: 2px;
}
.gallery-filter {
  margin-bottom: 60px;
}
.gallery-filter .control {
  border-radius: 50px;
  border: 3px solid #002776;
  min-width: 230px;
  background-color: #fff;
  padding: 7px 20px;
  font-size: 23px;
  text-transform: uppercase;
  color: #002776;
  margin-right: 33px;
  transition: 0.4s ease;
}

.gallery-filter .control:hover,
.gallery-filter .mixitup-control-active {
  background-color: #002776;
  color: #fff;
}
.gallery-container li a {
  overflow: hidden;
  display: block;
}

.gallery-container li img {
  width: 100%;
  transition: transform 0.8s ease-in-out;
}
.gallery-list li:hover img {
  transform: scale(1.1) rotate(4deg);
}
.fancybox-thumbs__list a::before {
  border-color: #002776;
}
.fancybox-progress {
  background-color: #002776;
}

@media (max-width: 1399px) {
  .gallery-filter .control {
    margin-right: 10px;
    min-width: 200px;
  }
}
@media (max-width: 1199px) {
  .gallery-filter .control {
    font-size: 18px;
    min-width: 120px;
    margin-right: 10px;
  }
}

@media (max-width: 767px) {
  .gallery-filter {
    max-width: 100%;
    overflow-x: auto;
    white-space: nowrap;
  }
}

/*--------------------------------------------------------------
# Facilities
--------------------------------------------------------------*/
.facilities-inner .content-wrap {
  border-bottom: 1px solid #dadada;
  padding-bottom: 30px;
  padding-top: 30px;
}
.facilities-inner .content-wrap:last-child {
  border-bottom: 0;
}
.facilities-inner .content {
  padding: 15% 15%;
}
.facilities-inner .content h3 {
  color: #002776;
  font-size: 31px;
  margin-bottom: 30px;
  text-transform: inherit;
  font-weight: 500;
}
.facilities-inner .content p {
  font-size: 27px;
  margin-bottom: 30px;
  color: #002776;
}
.facilities-inner .content-wrap.content-right {
  flex-direction: row-reverse !important;
}
.facilities-inner .content-wrap.content-left .content {
  text-align: right;
}
.facilities-inner .img-wrap {
  position: relative;
  transition: all 0.6s ease;
}
.facilities-inner .img-wrap .icon {
  position: absolute;
  right: 115px;
  bottom: 0;
  transition: transform 0.3s;
}
.facilities-inner .img-wrap .facilities-img {
  transition: transform 0.3s;
}
.facilities-inner .img-wrap:hover .icon {
  transform: translateX(-25%);
}
.facilities-inner .img-wrap:hover .facilities-img {
  transform: rotate(2deg);
}

.facilities-inner .content-wrap.content-left .img-wrap {
  text-align: right;
}
.facilities-inner .content-wrap.content-left .img-wrap .icon {
  left: 115px;
}
.facilities-inner .img-wrap:hover .facilities-img {
  transform: rotate(-2deg);
}
.facilities-inner .content-wrap.content-left .img-wrap:hover .icon {
  transform: translateX(25%);
}

@media (max-width: 1023px) {
  .facilities-inner .content {
    padding: 15% 5%;
  }
  .facilities-inner .facilities-img {
    margin: auto;
    display: block;
  }
}

@media (max-width: 767px) {
  .facilities-inner .img-wrap .icon {
    right: 5px;
    bottom: -30px;
  }
  .facilities-inner .content-wrap.content-left .img-wrap .icon {
    left: 5px;
  }

  .facilities-inner .content-wrap {
    padding-bottom: 60px;
  }
}

/*--------------------------------------------------------------
# Contact Modal
--------------------------------------------------------------*/

.contact-modal .modal-content {
  background-color: #1e398d;
  color: #fff;
  border-radius: 0;
}
.contact-modal .close {
  color: #fff;
  opacity: 1;
  font-size: 4rem;
  font-weight: 300;
}
.contact-modal .modal-body {
  padding: 0 3rem 3rem;
}
.contact-modal .modal-header {
  padding: 1rem 1.5rem;
}

/*Pre Loader-------*/

.no-scroll-y {
  overflow-y: hidden;
}

/* Preloader */
.ctn-preloader {
  align-items: center;
  cursor: none;
  display: flex;
  height: 100%;
  justify-content: center;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 900;
  background-color: var(--blue);
}

.ctn-preloader .animation-preloader {
  position: absolute;
  z-index: 100;
}

/* Spinner cargando */
.ctn-preloader .animation-preloader .spinner {
  animation: spinner 1s infinite linear;
  border-radius: 50%;
  border: 3px solid rgba(0, 0, 0, 0.2);
  border-top-color: #000000; /* No se identa por orden alfabetico para que no lo sobre-escriba */
  height: 9em;
  margin: 0 auto 3.5em auto;
  width: 9em;
}

/* Texto cargando */
/*
.ctn-preloader .animation-preloader .txt-loading {
  font: bold 5em;
  text-align: center;
  user-select: none;
}

.ctn-preloader .animation-preloader .txt-loading .letters-loading:before {
  animation: letters-loading 4s infinite;
  color: #000000;
  content: attr(data-text-preloader);
  left: 0;
  opacity: 0;
  position: absolute;
  top: 0;
  transform: rotateY(-90deg);
}


.ctn-preloader .animation-preloader .txt-loading .letters-loading {
  color: rgba(0, 0, 0, 0.2);
  position: relative;
}


.ctn-preloader .animation-preloader .txt-loading .letters-loading:nth-child(2):before {
  animation-delay: 0.2s;
}

.ctn-preloader .animation-preloader .txt-loading .letters-loading:nth-child(3):before {
  animation-delay: 0.4s;
}

.ctn-preloader .animation-preloader .txt-loading .letters-loading:nth-child(4):before {
  animation-delay: 0.6s;
}

.ctn-preloader .animation-preloader .txt-loading .letters-loading:nth-child(5):before {
  animation-delay: 0.8s;
}

.ctn-preloader .animation-preloader .txt-loading .letters-loading:nth-child(6):before {
  animation-delay: 1s;
}

.ctn-preloader .animation-preloader .txt-loading .letters-loading:nth-child(7):before {
  animation-delay: 1.2s;
}
*/

.ctn-preloader .loader-section {
  background-color: #fff100;
  height: 100%;
  position: fixed;
  top: 0;
  width: calc(100% + 1px);
  /*clip-path: polygon(0 4vw,100% 0,100% 100%,0 100%);*/
}

.ctn-preloader .loader-section.section-left {
  left: 0;
}

.ctn-preloader .loader-section.section-right {
  right: 0;
}

/* Efecto de fade en la animación de cargando */
.loaded .animation-preloader {
  opacity: 0;
  transition: 0.3s ease-out;
}

/* Efecto de cortina */
.loaded .loader-section.section-left {
  transform: translateX(-100%);
  transition: 0.7s 0.3s all cubic-bezier(0.1, 0.1, 0.1, 1);
  border-radius: 50%;
  /*clip-path: polygon(0 8vw,100% 0,100% 100%,0 100%);*/
  /*transform: scale(1.1);*/
}

.loaded .loader-section.section-right {
  transform: translateY(100%);
  transition: 0.7s 0.3s all cubic-bezier(0.1, 0.1, 0.1, 1);
  border-radius: 50%;
  /*clip-path: polygon(0 8vw,100% 0,100% 100%,0 100%);*/
  /*transform: scale(1.1);*/
}

/* Animación del preloader */
@keyframes spinner {
  to {
    transform: rotateZ(360deg);
  }
}

/* Animación de las letras cargando del preloader */
@keyframes letters-loading {
  0%,
  75%,
  100% {
    opacity: 0;
    transform: rotateY(-90deg);
  }

  25%,
  50% {
    opacity: 1;
    transform: rotateY(0deg);
  }
}

/* Tamaño de portatil hacia atras (portatil, tablet, celular) */
@media screen and (max-width: 767px) {
  /* Preloader */
  /* Spinner cargando */
  .ctn-preloader .animation-preloader .spinner {
    height: 8em;
    width: 8em;
  }

  /* Texto cargando */
  .ctn-preloader .animation-preloader .txt-loading {
    font: bold 3.5em;
  }
}

@media screen and (max-width: 500px) {
  /* Prelaoder */
  /* Spinner cargando */
  .ctn-preloader .animation-preloader .spinner {
    height: 7em;
    width: 7em;
  }

  /* Texto cargando */
  .ctn-preloader .animation-preloader .txt-loading {
    font: bold 2em;
  }
}

.centered {
  width: 400px;
  height: 600px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  /*background:var(--yellow);*/
  /*filter: blur(10px) contrast(20);*/
}
.blob-1,
.blob-2 {
  width: 70px;
  height: 70px;
  position: absolute;
  background: #fff;
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.blob-1 {
  left: 20%;
  animation: osc-l 2.5s ease infinite;
}
.blob-2 {
  left: 80%;
  animation: osc-r 2.5s ease infinite;
  background: #243e8c;
}
@keyframes osc-l {
  0% {
    left: 20%;
  }
  50% {
    left: 50%;
  }
  100% {
    left: 20%;
  }
}
@keyframes osc-r {
  0% {
    left: 80%;
  }
  50% {
    left: 50%;
  }
  100% {
    left: 80%;
  }
}

.ena {
  /*width:148px;*/
  transition: all 0.5s ease-out;
}
.logo-loader {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 99;
  width: 100px;
}

/*.loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  min-height: 100vh;
  background: rgba(255, 241, 0, 1);
  overflow: hidden;
  transform: translateX(-100%);
  -webkit-animation: slide 2s ease infinite alternate;
          animation: slide 2s ease infinite alternate;
          z-index: 101;
}
.loader::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1000;
  color: #fff;
}

@-webkit-keyframes slide {
  0% {
    transform: translateX(-100%);
  }
  50% {
    transform: translateX(0%);
  }
  0% {
    transform: translateX(100%);
  }
}

@keyframes slide {
  0% {
    transform: translateX(-100%);
  }
  50% {
    transform: translateX(0%);
  }
  0% {
    transform: translateX(100%);
  }
}*/

.vbox-close {
  font-size: 47px;
  right: 20px;
}
.table p {
  margin-bottom: 0;
}

/* 
14/05/2022 NEW MODULES
 */
.career-main h2 {
  color: #243e8c;
  padding: 0 0 35px;
  position: relative;
  font-size: 44px;
}
.career-main h2:after {
  background-color: #243e8c;
  width: 215px;
  height: 1px;
  content: "";
  position: absolute;
  bottom: 15px;
  left: 0px;
}
.career-main p {
  color: #243e8c;
  font-size: 20px;
}
.career-main h3 {
  color: #243e8c;
  padding: 0 0 10px;
  font-size: 35px;
}

.table-wrap {
  position: relative;
  overflow: auto;
}
.table-wrap table {
  min-width: 768px;
  width: 100%;
}
.table-wrap th {
  background-color: #243e8c;
  padding: 15px 25px;
  color: #ffffff;
  font-size: 24px;
  border: 0.5px solid #ffffff;
  font-weight: 600;
}
.table-wrap td {
  background-color: #e2e2e2;
  padding: 15px 25px;
  color: #243e8c; 
  font-size: 24px;
  font-weight: normal;
  border: 0.5px solid #ffffff;
}

.table-wrap .btn {
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 4px 15px;
  border-radius: 50px;
  transition: 0.5s;
  color: #fff;
  background-color: #243e8c;
  vertical-align: baseline;
}
.table-wrap .btn:hover {
  color: #000000;
  background-color: var(--yellow);
}

.career-main .job-content {
  display: block;
  padding: 17px 0;
  border-top: 1px solid #243e8c;
  border-bottom: 1px solid #243e8c;
}

.career-main .job-content li {
  display: inline-flex;
  margin-right: 20px;
  width: 18%;
}
.career-main .job-content li p {
  font-size: 20px;
  font-weight: normal;
  margin: 0;
  color: #243e8c;
}
.career-main .job-content li strong {
  font-size: 20px;
  color: #243e8c;
  font-weight: 600;
}
.career-main .apply-now-wrap {
  background-color: #243e8c;
  padding: 35px;
  border-radius: 20px;
}
.career-main .apply-now-wrap h2 {
  color: #ffffff;
  font-size: 52px;
  margin: 0 0 30px;
  border: none;
  padding: 0;
}
.career-main .apply-now-wrap h2:after {
  display: none;
}

.apply-now-wrap p {
  color: #ffffff;
}
.contact-form.apply-now-wrap .form-row {
  margin-top: 50px;
}
.contact-form.apply-now-wrap label {
  color: #ffffff;
}

.contact-form.apply-now-wrap .form-control {
  border-radius: 25px;
}

.contact-form.apply-now-wrap input[type="file"] {
  padding: 8px 8px 8px 10px;
  position: relative;
  height: 48px;
  line-height: 30px;
}
.contact-form.apply-now-wrap input[type="file"]::-ms-browse {
  border: none;
  padding: 0.2em 0.4em;
  border-radius: 20px;
  background-color: #d7d7d7;
  position: absolute;
  right: 5px;
  top: 7px;
}

.contact-form.apply-now-wrap input[type="file"]::-webkit-file-upload-button {
  border: none;
  padding: 0.2em 0.4em;
  border-radius: 20px;
  background-color: #d7d7d7;
  transition: 1s;
  position: absolute;
  right: 5px;
  top: 7px;
}

.career-main .contact-form.apply-now-wrap input[type="file"]::file-selector-button {
  border: none;
  padding: 0.2em 0.4em;
  border-radius: 20px;
  background-color: #d7d7d7;
  transition: 1s;
  position: absolute;
  right: 5px;
  top: 7px;
}

.contact-form.apply-now-wrap input[type="file"]::-ms-browse:hover {
  background-color: #fff659;
  border: none;
}

.contact-form.apply-now-wrap
  input[type="file"]::-webkit-file-upload-button:hover {
  background-color: #fff659;
  border: none;
}

.contact-form.apply-now-wrap input[type="file"]::file-selector-button:hover {
  background-color: #fff659;
  border: none;
}

.career-main .btn-group {
  padding-top: 25px;
}

.contact-form.apply-now-wrap .btn-submit {
  border-radius: 55px !important;
  text-align: center;
  text-transform: none;
}

.apply-bx h3 {
  font-size: 28px;
  padding: 0px;
  margin: 30px 0 10px;
}
@media (max-width: 1299px) {
  .job-content li {
    display: inline-flex;
    margin-right: 0px;
    width: 44%;
  }
  .apply-now-wrap h2 {
    color: #ffffff;
    font-size: 42px;
    margin: 0 0 20px;
  }
}
@media (max-width: 991px) {
  .pl-5,
  .px-5 {
    padding-left: 15px !important;
  }
  .apply-now-wrap h2 {
    color: #ffffff;
    font-size: 35px;
    margin: 0 0 20px;
  }
}

@media (max-width: 767px) {
  .career-main h2 {
    padding: 0 0 20px;
    font-size: 30px;
  }
  .job-content li {
    margin-right: 0px;
    width: 100%;
  }
  .career-main h3 {
    font-size: 25px;
  }
}
/* ENDS */
