@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;300;400;600;700&display=swap');

:root {
  --base-red: #ff0042;
  --base-blue: #012b7a;
}

body {
  font-family: 'Poppins', sans-serif;
  background: #fbfbfb;
}

.delay-05s {
  --animate-delay: 0.5s;
}
.delay-1s {
  --animate-delay: 5s;
}
/* EDITED */

header {
  width: 100%;
  height: 100vh;
  background: url(../images/main-bg.jpg);
  background-size: cover;
}

header .main-menu {
  display: flex;
  justify-content: flex-end;
}

header .main-menu ul {
  padding: 0;
  margin: 0;
  list-style: none;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  align-content: center;
  margin-top: 40px;
}

header .main-menu ul li {
  margin-left: 50px;
  font-size: 17.5px;
}

header .main-menu ul li a {
  font-weight: 500;
  color: #fff;
  text-decoration: none;
  display: inline-block;
  position: relative;
}

header .main-menu ul li a:after {
  content: '';
  position: absolute;
  width: 100%;
  transform: scaleX(0);
  height: 2px;
  bottom: 0;
  left: 0;
  top: 30px;
  background-color: #fff;
  transform-origin: bottom right;
  transition: transform 0.25s ease-out;
}

header .main-menu ul li a:hover:after {
  transform: scaleX(1);
  transform-origin: bottom left;
}

header .main-menu ul .form-redirect {
  background-color: var(--base-red);
  padding: 10px;
  border-radius: 5px;
  overflow: hidden;
  transition: 500ms ease all;
  position: relative;
}

header .main-menu ul .form-redirect:before {
  content: "";
  position: absolute;
  top: -40%;
  right: 110%;
  width: 30px;
  height: 200%;
  background: rgba(255, 255, 255, 0.3);
  transform: rotate(20deg);
}

header .main-menu ul .form-redirect:hover {
  background: #ee4466;
  transform: none;
}
header .main-menu ul .form-redirect:hover:before {
  right: -50%;
  transition: 1s ease all;
}

header .main-menu ul .form-redirect a:after {
  display: none;
}

header .main-title {
  margin-top: 150px;
  font-weight: bold;
  color: #fff;
  font-size: 75px;
  line-height: 80px;
  margin-bottom: 20px;
}

header .title-desc p{
  color: #fff;
  font-size: 19px;
  margin-bottom: 50px;
}

header .slider-button a {
  border: solid 1px #104ab7;
  padding: 10px 20px;
  border-radius: 20px;
  color: #fff;
  font-weight: 500;
  font-size: 15px;
  text-decoration: none;
}


.btn--animated {
  transition-property: color;
  transition-duration: 0.5s;
  position: relative;
  overflow: hidden;
  display: inline-block;
  z-index: 1;
}
.btn--animated.btn--border.btn--primary {
  border: 1px solid lightslategray;
}
.btn--animated:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--base-red);
  transform: scaleX(0);
  transform-origin: 0 50%;
  transition-property: transform;
  transition-duration: 0.5s;
  transition-timing-function: ease-out;
  z-index: -1;
}
.btn--animated:hover {
  color: white;
}
.btn--animated:hover:before {
  transform: scaleX(1);
  transition-timing-function: cubic-bezier(0.45, 1.64, 0.47, 0.66);
}

.hub-button:before {
  background: var(--base-blue);
}

#process {
  margin: 50px 0;
}

#process .process-box {
  display: flex;
  justify-content: center;
  align-items: center;
  align-content: center;
}

#process .process-box .box {
  width: 33.33333%;
  padding: 75px;
  background: #ededed;
  color: #fff;
  font-weight: bold;
  font-size: 25px;
  position: relative;
}

#process .process-box .box .number {
  position: absolute;
  font-size: 90px;
  margin-top: -55px;
  margin-left: -25px;
  color: rgb(255 255 255 / 8%);
}

#process .process-box .box .badge {
  position: absolute;
  color: #fff;
  right: 5px;
  top: 10px;
  font-size: 40px;
}

#process .process-box .box:nth-child(1) {
  background: #012b7a;
}

#process .process-box .box:nth-child(2) {
  background: #013089;
}

#process .process-box .box:nth-child(3) {
  background: #153e96;
}

#program {
  margin-top: 100px;
}

#program .program-title {
  color: var(--base-blue);
  font-size: 45px;
  line-height: 50px;
  font-weight: bold;
  margin-bottom: 70px;
}

#program p {
  color: #666666;
  font-size: 14.5px;
  margin-bottom: 100px;
}

#program a {
  background: var(--base-red);
  color: #fff;
  font-weight: bold;
  padding: 20px 40px;
  text-decoration: none;
  border-radius: 10px;
}

#program .numbers-area .numbers {
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  padding-left: 20px;
  padding-top: 30px;
  padding-right: 13px;
}

#program .numbers-area .numbers .number {
  background: #013089;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  align-content: center;
  font-weight: bold;
  color: #fff;
  font-size: 17px;
  margin-bottom: 20px;
}

#program .numbers-area .numbers .number-title {
  color: #333333;
  font-weight: 600;
  font-size: 20px;
  margin-bottom: 15px;
}

#program .numbers-area .numbers p {
  padding-bottom: 50px;
}

#program .numbers-area .secondary {
  margin-top: 50px;
}

#program .numbers-area .secondary .number {
  background: #eb3079;
}

#program .numbers-area .third {
  margin-top: -70px;
}

#program .numbers-area .third .number{
  background: #4b33ff;
}

#program .numbers-area .fourty {
  margin-top: -70px;
}

#program .numbers-area .fourty .number{
  background: #f7473e;
}

#facilities {
  margin-top: 100px;
  background: url(../images/facilities.png);
  background-size: cover;
  background-position: top;
  padding: 100px 0;
}

#facilities .facilities-title {
  color: var(--base-blue);
  font-size: 25px;
  font-weight: bold;
}

#facilities .facilities-sub-title {
  color: #404040;
  font-size: 14px;
}

#facilities .facilities-box-area {
  margin-top: 50px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  align-content: center;
  flex-wrap: wrap;
}

#facilities .facilities-box-area .facilities-box{
  width: 168.5px;
  height: 168.5px;
  margin-bottom: 10px;
  background: #fff;
  display: flex;
  justify-content: flex-start;
  align-items: flex-end;
  padding: 20px;
  o-transition: .5s;
  -ms-transition: .5s;
  -moz-transition: .5s;
  -webkit-transition: .5s;
  transition: .5s;
}

#facilities .facilities-box-area .facilities-box:hover {
  background: var(--base-blue);
  color: #fff;
}

#facilities .facilities-box-area .last-one {
  background-color: var(--base-red);
  justify-content: flex-end;
  align-items: flex-end;
  align-content: flex-end;
  text-align: right;
  color: #fff;
  font-weight: bold;
}

#info-area {
  background: #fefefe;
}

#info-area .info-area-bar {
  display: flex;
}

#info-area .info-area-bar .left-side {
  background: var(--base-blue);
  padding: 70px;
  width: 50%;
}

#info-area .info-area-bar .left-side h2{
  color: #cfe8ff;
  font-weight: bold;
  font-size: 19px;
  margin-bottom: 35px;
}

#info-area .info-area-bar .left-side h1{
  color: #fff;
  font-weight: bold;
  font-size: 45px;
  margin-bottom: 35px;
}

#info-area .info-area-bar .left-side p {
  color: #fff;
  font-size: 14px;
  line-height: 35px;
}

#info-area .info-area-bar .right-side {
  background: url(../images/info-1.jpg);
  background-size: cover;
  width: 50%;
}

#info-area .arrows {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin-top: 35px;
  cursor: pointer;
}

#info-area .arrows .arrow {
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  align-content: center;
  background: #f1f1f1;
}

#info-area .arrows .right-arrow {
  background: #134ab0;
  color: #fff;
}

#confirm {
  background: url(../images/confirm.jpg);
  background-size: cover;
  width: 100%;
  padding: 100px 0;
  margin: 100px 0;
}

#confirm .confirm-area {
  display: flex;
  justify-content: center;
  align-items: center;
  align-content: center;
  flex-direction: column;

}

#confirm .confirm-area h3 {
  color: #fff;
  font-weight: bold;
  font-size: 35px;
  text-align: center;
  margin-bottom: 25px;
}

#confirm .confirm-area a {
  background: var(--base-red);
  padding: 15px 35px;
  color: #fff;
  text-decoration: none;
  border-radius: 10px;
}

.about-page {
  background: url(../images/about-bread.jpg);
  background-position: center top;
  background-size: 100% auto;
  background-repeat: no-repeat;
  height: 100%;
}

.mentor-page {
  background: url(../images/mentor-bread.jpg);
}

.about-page .main-title {
  font-size: 110px;
}

#about-page {
  margin: 100px 0;
}

#about-page  .about-inner-area {
  background: #eeeded;
  padding: 75px;
}

#about-page h1 {
  margin-bottom: 25px;
  font-weight: bold;
}

#about-page p {
  font-size: 21px;
  font-weight: 300;
  line-height: 40px;
  margin-bottom: 25px;
}

#about-page img {
  margin: 25px 0;
}

.about-facilities {
  background: none !important;
}

.about-facilities .facilities-box {
  border: solid 1px #000;
  background: transparent;
}

.about-facilities .last-one {
  border-color: #fbfbfb;
}

#program-page {
  margin: 100px 0;
}

#program-page .program-page-title h1 {
  color: #012b7a;
  font-weight: bold;
}

#program-page .program-page-title p {
  font-weight: 300;
  color: #666666;
}

#program-page .program-box-area{
  display: flex;
  margin-top: 50px;
  flex-wrap: wrap;
}

#program-page .program-box-area .left-side{
  background: var(--base-blue);
  padding: 100px 80px;
  width: 50%;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-direction: column;
}

#program-page .program-box-area .left-side h2 {
  color: #fff;
  font-weight: bold;
  margin-bottom: 40px;
}

#program-page .program-box-area .left-side p {
  color: #fff;
  font-weight: 500;

}

#program-page .program-box-area .right-side{
  width: 50%;
}

#about-program {
  margin-top: 200px;
}

#about-program h3 {
  color: var(--base-blue);
  font-weight: bold;
}

#about-program .about-program-box-area {
  display: flex;
  justify-content: space-between;
}

#about-program .about-program-box-area .about-program-box {
  width: 32.3333%;
  border: solid 1px #b1b1b1;
  display: flex;
  justify-content: center;
  align-items: center;
  align-content: center;
  padding: 70px;
  flex-direction: column;
  text-align: center;
  margin-top: 20px;
}

#about-program .about-program-box-area .about-program-box .title {
  color: var(--base-blue);
  font-weight: bold;
  font-size: 22px;
  margin: 25px 0;
}

#mentors {
  margin: 100px 0;
}

#mentors .mentor-arena {
  background: #fff;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  margin-top: 30px;
}

#mentors .mentor-arena .mentor-image img {
  width: 100%;
}

#mentors .mentor-arena .mentor-name {
  padding: 15px 0;
  text-align: center;
  color: #2a2a2a;
  font-weight: bold;
  font-size: 19px;
}

#mentors .mentor-arena .mentor-title {
  color: #2a2a2a;
  font-weight: 300;
  text-align: center;
  font-size: 14px;
  padding-bottom: 15px;
}

#form-area {
  margin: 100px 0;
}

#form-area .form-title {
  width: 100%;
  padding: 25px;
  background: var(--base-blue);
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;

}

#form-area .second-title {
  margin-top: 50px;
  background: var(--base-red);
}

#form-area .form-title .left-side{
  font-size: 25px;
  font-weight: bold;
}

#form-area .form-input-area {
  background: #fff;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  padding: 25px;
  padding-bottom: 70px;
}

#form-area .form-input-area label {
  color: var(--base-blue);
  font-weight: 600;
  font-size: 17px;
  margin-bottom: 5px;
}

#form-area .form-input-area .form-group input,textarea {
  width: 100%;
  padding: 10px;
  border: none;
  border:solid 1px #c5c0ec;
  border-radius: 5px;
  color: #727272;
  font-size: 14px;
}

#form-area .form-input-area input:active {
  border-color: var(--base-color);
}

#form-area .form-input-area .form-group {
  margin-top: 30px;
}

#form-area .form-input-area .charNum {
  font-size: 13px;
  color: #727272;
}

#form-area .form-input-area img {
  width:100%;
  display:none;
  margin-bottom:30px;
}

.success {
  text-align: center;
}

.success h1 {
  font-weight: bold;
  color: var(--base-blue);
  line-height: 15px;
  font-size: 50px !important;
  margin-top: 20px;
}

.success h2 {
  font-weight: 300;
  font-size: 27px;
}

.success p {
  font-weight: 300;
  font-size: 20px !important;
  margin-top: 50px;
}

.success a {
  background: var(--base-red);
  padding: 10px 20px;
  border-radius: 15px;
  color: #fff;
  text-decoration: none;
}

.contact {

}

.contact h1 {
  color: #404040;
  font-size: 37px;
}

.contact-links {
  display: flex;
}

.contact-links a{
  font-weight: 300;
  color: #404040;
  font-size: 22px;
  margin-right: 50px;
  text-decoration: none;
}

.contact form {
  margin-top: 100px;
}

.contact form h3 {
  font-weight: 300;
  font-size: 27px;
}

.contact form h2 {
  font-weight: bold;
  font-size: 35px;
}

.contact form input,textarea {
  width: 100%;
  padding: 10px;
  border: solid 1px #cccccc;
  border-radius: 0;
  margin-top: 20px;
}

.contact form input::placeholder {
  color: #3c3c3c;
  opacity: 1;
  font-size: 15px;
}

.contact form textarea::placeholder {
  color: #3c3c3c;
  opacity: 1;
  font-size: 15px;
}

.contact button {
  padding: 20px 30px;
  background: var(--base-red);
  color: #fff;
  font-weight: bold;
  border: none;
  border-radius: 30px;
  margin-top: 25px;
}

.contact .contact-image {
  margin-top: 100px;
  display: flex;
  justify-content: flex-end;
}
/* Program Section */
#program-section {
  display: flex;
}

#program-section .program-button-area {
  display: flex;
  position: relative;
}

#program-section .program-button-area .left-side {
  width: 60%;
  padding: 50px;
  background: #e6e6e6;
  color: var(--base-blue);
  font-weight: bold;
  font-size: 25px;
}

#program-section .program-button-area .right-side {
  width: 40%;
  padding: 50px;
  background: var(--base-red);
  display: flex;
  justify-content: center;
  align-items: center;
  align-content: center;
  position: relative;
}
#program-section .program-button-area .right-side a{
  width: 100%;
  color: #fff;
  font-weight: bold;
  font-size: 37px;
  text-decoration: none;
  text-align: center;
}

#program-section .sep {
  position: absolute;
  left: 60%;
  top: 32%;
  z-index: 1;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 35px 0 35px 35px;
  border-color: transparent transparent transparent #e6e6e6;
}

.form-page-buttons .left-side {
  font-weight: 300 !important;
  font-size: 17px !important;
  color: #343434;
}

.form-page-buttons .left-side a{
  text-decoration: none;
  font-size: 36px;
  font-weight: bold;
  color: var(--base-blue);
}

.form-page-buttons .right-side button {
  font-size: 37px;
  font-weight: bold;
  color: #fff;
  background: transparent;
  border: none;
}

/* FOOTER */

#footer-menu {
  padding-top: 100px;
  padding-bottom: 20px;
  border-bottom: solid 1px #b1b1b1;
}

#footer-menu nav ul {
  list-style: none;
  display: flex;
  justify-content: space-between;
  font-size: 18px;
  padding: 10px;
}

#footer-menu nav ul li a {
  color: var(--base-blue);
  font-weight: bold;
  text-decoration: none;
}

footer {
  margin-top: 25px;
  margin-bottom: 35px;
}

footer .row {
  display: flex;
  justify-content: center;
  align-items: center;
  align-content: center;
}

footer .row .first-area {
  height: 50px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  align-content: center;
}

footer .row .first-area p {
  font-size: 17px;
  font-weight: 300;
  padding: 0;
  margin: 0;
}

footer .row .second-area {
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  align-content: center;
}

footer .row .second-area a {
  font-weight: 300;
  text-decoration: none;
  color: #000;
  margin: 0 13px;
}

footer .row .third-area {
  height: 50px;
  display: flex;
  justify-content: flex-end;
}

#mobile-menu {
    display: none;
}

@media (max-width: 576px) {
    #mobile-menu {
        display: block;
    }
body {
    overflow-x: hidden;
}
  header {
    height: 70vh;
  }
  .main-menu {
    display: none !important;
  }
  header .main-title {
    font-size: 32px;
    line-height: 40px;
    margin-top: 80px;
  }
  header .title-desc p {
    font-size: 12px;
    margin-bottom: 20px;
    flex-wrap: wrap;
  }
  header .slider-button a {
    font-size: 12px;
  }
  #process .process-box {
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: flex-start;
    align-content: flex-start;
    flex-direction: column;
    width: 100%;
    overflow: hidden;
  }
  #process .process-box .box {
    width: 100%;
  }
  #program .program-title {
    font-size: 35px;
    line-height: 40px;
    margin-bottom: 30px;
  }
  #program p {
    margin-bottom: 30px;
    line-height: 28px;
  }
  #program a {
    font-size: 12px;
    padding: 15px 25px;
  }
  .numbers-area {
    margin-top: 30px;
  }
  #program .numbers-area .third {
    margin-top: 0;
  }
  #program .numbers-area .secondary {
    margin-top: 0;
  }
  #program .numbers-area .fourty {
    margin-top: 0;
  }
  #program .numbers-area .numbers p {
    width: 100%;
  }
  #info-area .info-area-bar .right-side {
    display: none;
  }
  #info-area .info-area-bar .left-side {
    width: 98%;
  }
  #info-area .info-area-bar .left-side h1 {
    font-size: 25px;
  }
  #info-area .info-area-bar .left-side h2 {
    font-size: 12px;
    margin-bottom: 15px;
  }
  #info-area .info-area-bar .left-side p {
    font-size: 13px;
    line-height: 25px;
  }
  #info-area .arrows .arrow {
    width: 35px;
    height: 35px;
  }
  #confirm .confirm-area h3 {
    font-size: 25px;
  }
  #confirm .confirm-area a {
    font-size: 12px;
    font-weight: bold;
  }
  .about-page {
    background-size: cover;
  }
  .about-page .main-title {
    font-size: 50px;
  }
  #footer-menu nav ul {
    justify-content: center;
    flex-wrap: wrap;
  }
  #footer-menu nav ul li {
    margin: 0 10px;
  }
  #confirm {
    margin-bottom: 0;
  }
  
  #mobile-menu nav {
    background-color: transparent;
    width: 100%;
    height: 65px;
    position: absolute;
    top: 0;
  }
  
  
  #menuToggle {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-end;
    position: relative;
    z-index: 1;
    right: 25px;
    top: 25px;
    -webkit-user-select: none;
    user-select: none;
  }
  
  #menuToggle input
  {
    display: flex;
    width: 40px;
    height: 32px;
    position: absolute;
    cursor: pointer;
    opacity: 0;
    z-index: 2;
  }
  
  #menuToggle span
  {
    display: flex;
    width: 29px;
    height: 2px;
    margin-bottom: 5px;
    position: relative;
    background: #ffffff;
    border-radius: 3px;
    z-index: 1;
    transform-origin: 5px 0px;
    transition: transform 0.5s cubic-bezier(0.77,0.2,0.05,1.0),
                background 0.5s cubic-bezier(0.77,0.2,0.05,1.0),
                opacity 0.55s ease;
  }
  
  #menuToggle span:first-child
  {
    transform-origin: 0% 0%;
  }
  
  #menuToggle span:nth-last-child(2)
  {
    transform-origin: 0% 100%;
  }
  
  #menuToggle input:checked ~ span
  {
    opacity: 1;
    transform: rotate(45deg) translate(-3px, -1px);
    background: #fff;
  }
  #menuToggle input:checked ~ span:nth-last-child(3)
  {
    opacity: 0;
    transform: rotate(0deg) scale(0.2, 0.2);
  }
  
  #menuToggle input:checked ~ span:nth-last-child(2)
  {
    transform: rotate(-45deg) translate(0, -1px);
  }
  
  #menu
  {
    position: absolute;
    width: 100%;
    height: 70vh;
    margin: -21px 0 0 -50px;
    padding: 50px;
    list-style: none;
    text-align: center;
    padding-top: 160px;
    background: url(../images/main-bg.jpg);
    background-size: cover;
    -webkit-font-smoothing: antialiased;
    transform-origin: 0% 0%;
    transform: translate(6%, -107%);
    transition: transform 0.5s cubic-bezier(0.77,0.2,0.05,1.0);
  }
  
  #menu li
  {
    padding: 10px 0;
    transition-delay: 2s;
  }
  
  #menuToggle input:checked ~ ul
  {
    transform: translate(6%, -1%);
  }
  #menu li a {
    text-decoration: none;
    color: #fff;
    font-size: 17px;
  }
  .mobile-form-reditect {
    background-color: var(--base-red);
    padding: 7px 20px;
    border-radius: 10px;
  }
  .logo {
    z-index: 5;
    position: relative;
  }
  #about-page .about-inner-area {
    padding: 25px;
  }
  #about-page p {
    font-size: 15px;
    line-height: 25px;
  }
  #program-page .program-box-area .left-side {
    width: 100%;
  }
  #program-page .program-box-area .right-side {
    width: 100%;
  }
  #program-page .program-box-area .program-item:nth-of-type(1) {
    order:1;
  }
  #program-page .program-box-area .program-item:nth-of-type(2) {
    order:2;
  }
  #program-page .program-box-area .program-item:nth-of-type(3) {
    order:4;
  }
  #program-page .program-box-area .program-item:nth-of-type(4) {
    order:3;
  }
  #program-page .program-box-area .program-item:nth-of-type(5) {
    order:5;
  }
  #program-page .program-box-area .program-item:nth-of-type(6) {
    order:6;
  }
  #about-program .about-program-box-area {
    flex-wrap: wrap;
  }
  #about-program .about-program-box-area .about-program-box {
    width: 100%;
  }
  #program-section .program-button-area {
    flex-wrap: wrap;
  }
  #program-section .program-button-area .left-side {
    width: 100%;
  }
  #program-section .program-button-area .right-side {
    width: 100%;
  }
  #program-section .sep {
    transform: rotate(90deg);
    left: 46%;
    top: 50%;
  }
  .confirm-sep {
    top: 40% !important;
  }
  .form-page-buttons .left-side a {
    font-size: 20px;
  }
  .contact-links {
    flex-wrap: wrap;
  }
  footer .row .first-area {
    justify-content: center;
  }
  footer .row .third-area {
    justify-content: center;
  }

  
}


@media (min-width: 768px) {}

@media (min-width: 992px) {}


@media (min-width: 1200px) {
    .container {
        width: 1250px;
      }
}


@media (min-width: 1400px) {
    .container {
        width: 1250px;
      }
}
