@import url("https://fonts.googleapis.com/css2?family=Sen:wght@400..800&display=swap");
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');

@font-face {
  font-family: "font";
  src: url(../font/super_mindset/Super\ Mindset.ttf);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

p {
  margin: 0;
}

a,
button,
input,
textarea {
  outline: 0;
  transition: all 0.5s ease;
}

a {
  text-decoration: none !important;
  font-family: "Sen", sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Sen", sans-serif;
  font-weight: 400;
  font-style: normal;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "font";
  font-weight: bold;
}

header,
.banner,
.section,
.h2,
.para,
.flexbox,
footer {
  width: 100%;
  float: left;
}

nav {
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 1000;
  width: 100%;
  padding: 5px 0;
  background: #063b47;
}

nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-size: 38px;
  font-weight: bold;
  font-family: "font";
  color: #fff;
}

.menu {
  display: flex;
  gap: 25px;
}

.menu a {
  cursor: pointer;
  border: 0;
  text-align: center;
  font-size: 15px;
  transition: all 0.5s ease;
  color: #fff;
  display: flex;
  padding: 10px 0;
  align-items: center;
  justify-content: center;
}

.menu-btn {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 22px;
  cursor: pointer;
  z-index: 3;
}

.menu-btn span {
  height: 3px;
  width: 100%;
  background: #fff;
  border-radius: 2px;
  transition: 0.4s;
}

/* Cross Icon Animation */
.menu-btn.open span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.menu-btn.open span:nth-child(2) {
  opacity: 0;
}

.menu-btn.open span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* Mobile */
@media (max-width: 768px) {
  .menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 220px;
    height: 100%;
    background: #063b47;
    flex-direction: column;
    padding-top: 70px;
    transition: 0.3s;
    margin-right: 0;
    padding-right: 10px;
    align-items: flex-start;
  }

  .menu a {
    padding: 5px 20px;
    font-size: 14px;
  }

  .menu.active {
    right: 0;
  }

  .logo {
    font-size: 25px;
    margin: 10px 0;
  }

  .menu-btn {
    display: flex;
  }

  .dropdown-content {
    left: -100px;
    min-width: 300px;
  }
}

.container {
  width: 100%;
  max-width: 1300px;
  padding: 0 15px;
}

.banner {
  background: linear-gradient(rgba(0, 0, 0, .3)), url(../img/banner.jpg) center;
  background-size: cover;
  padding: 20px 0 20px 0;
  position: relative;
  color: #fff;
}

.contentt {
  width: 100%;
  float: left;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.plane {
  width: 900px;
  max-width: 100%;
  margin-top: -200px;
  margin-bottom: 20px;
}

.banner .container {
  min-height: 250px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
}

.inner-banner .container {
  min-height: 200px;
}


.banner h1 {
  font-size: 38px;
  margin: 0 0 10px;
}

h1 span {
  font-weight: 400;
  font-size: 27px;
}

.banner p {
  font-size: 15px;
  line-height: 24px;
}

.section {
  padding: 20px 0;
  position: relative;
}

.section .container {
  position: relative;
  z-index: 2;
}

.h2 {
  font-size: 30px;
  margin: 0 0 10px;
  font-weight: 800;
}

h4 {
  width: 100%;
  float: left;
  margin-bottom: 10px;
  font-size: 22px;
}

.para {
  font-size: 14px;
  line-height: 23px;
  margin: 0 0 20px;
}

.para:last-child {
  margin: 0;
}

.flexbox {
  display: flex;
  align-items: center;
  margin: 0 0 20px;
}

.flexbox:last-child {
  margin: 0;
}

.flexbox>p,
.flexbody {
  flex: 1;
}


.flexbox>p:first-child,
.flexbody:first-child {
  padding: 0 30px 0 0;
}

.flexbox>p:last-child,
.flexbody:last-child {
  padding: 0 0 0 30px;
}

.flexbox>img {
  width: 100%;
  max-width: 30%;
}

.section1::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(6, 59, 71, .1);
}

.img-box {
  width: 32%;
  float: left;
  position: relative;
  margin-bottom: 20px;
}

.img-box img {
  width: 100%;
  float: left;
}

.box2 {
  background: #063b47;
  color: #fff;
  border-radius: 20px;
  border: 4px solid #FFF;
}

.gop .cards {
  width: 32%;
}



.cards {
  width: 24%;
  float: left;
  height: 300px;
  display: flex;
  flex-direction: column-reverse;
  position: relative;
  transition: 0.5s;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: rgba(14, 30, 37, 0.12) 0px 2px 4px 0px, rgba(14, 30, 37, 0.32) 0px 2px 16px 0px;
}

.cards img {
  width: 100%;
  position: absolute;
  height: 100%;
  float: left;
  object-fit: cover;
  z-index: -1;
  border-radius: 20px;
  border: 4px solid #fff;
}

.content {
  width: 100%;
  padding: 20px;
  height: 100%;
  background-color: rgba(0, 0, 0, .4);
  color: #fff;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.7s ease;
}

.cards:hover .content {
  opacity: 1;
  visibility: visible;
}

.icon {
  width: 100%;
  float: left;
  display: flex;
  justify-content: flex-end;
  margin-bottom: -20px;
  position: relative;
  z-index: 2;
}

.icon strong {
  font-size: 30px;
  width: 50px;
  margin-right: 20px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 4px solid #063b47;
  background-color: #fff;
  color: #063b47;
}

.box {
  width: 19%;
  float: left;
  background-color: #063b47;
  color: #fff;
  padding: 15px;
  border-radius: 20px;
}

.section3 {
  background-color: #063b47;
  color: #fff;
  margin-top: -100px;
  padding-top: 140px;
}

.section2 {
  background-color: #063b47;
  color: #fff;
  margin-top: -100px;
  padding-top: 150px;
}

/* Overlay content */



.content h3 {
  margin-bottom: 5px;
}

.content button {
  margin-top: 10px;
  padding: 8px 15px;
  border: none;
  border-radius: 20px;
  background: blue;
  color: white;
  cursor: pointer;
}


.flexbox2 {
  padding: 20px 20px 20px 20px;
}

.image {
  width: 30%;
  float: left;
  position: relative;
  display: flex;
  justify-content: space-between;
}

.image img {
  width: 49%;
}

.img-trans {
  transform: translateY(60px);
}

.progress-container {
  width: 100%;
  float: left;
}

.progress-box {
  margin-bottom: 30px;
}

.top {
  display: flex;
  justify-content: space-between;
  margin-bottom: 8px;
  font-weight: 600;
}

.bar {
  width: 100%;
  height: 6px;
  background: #ddd;
  border-radius: 10px;
  overflow: hidden;
}

.fill {
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, #063b47, #063b47);
  border-radius: 10px;
  transition: width 1.5s ease;
}

/* From Uiverse.io by levxyca */
.btn-cu {
  font-size: 15px;
  color: #fff;
  padding: 15px 35px;
  border-radius: 10px;
  width: auto;
  float: left;
  border: 2px solid #fff;
  background: #063b47;
  box-shadow: 3px 3px #fff;
  cursor: pointer;
}

.btn-cu:hover {
  box-shadow: none;
  transform: translate(3px, 3px);
}


.center {
  width: 100%;
  float: left;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  flex-direction: column;
  margin: 0 0 20px;
}

.center:last-child {
  margin: 0 !important;
}

.flexgroup {
  width: 100%;
  float: left;
  display: flex;
  justify-content: center;
  gap: 10px 1%;
  margin: 0 0 20px;
  flex-wrap: wrap;
}

.flexgroup>img {
  width: 49%;
}

.flexgroup:last-child {
  margin: 0;
}

.flexgroupbox {
  width: 24%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 15px;
  position: relative;
  overflow: hidden;
  overflow: hidden;
}

.clr-box {
  background-color: #fff;
  color: #000;
  padding: 10px;
  width: 100%;
  border-radius: 20px;
  display: flex;
  transition: 0.6s;
}

.clr-box h2 {
  background-color: #063b47;
  color: #fff;
  border-radius: 0 0 20px 20px;
  padding: 10px;
  margin-top: -20px;
}

.flexbox-new {
  width: 100%;
  float: left;
  display: flex;
  margin: 0 0 15px;
}

.flex-new:last-child {
  margin: 0;
}

.flexbody-new {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-left: 10px;
}

.flexbox-new>img {
  width: 40%;
}

.flexgroup>i {
  color: #fff;
  font-size: 30px;
  margin-right: 15px;
}

.b-b {
  border: 1px solid rgba(0, 0, 0, 0.1);
}

.icon-box {
  width: 100%;
  float: left;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: 0 0 15px;
}

.icon-box img {
  width: 60px;
  max-width: 100%;
}

.flex {
  width: 32%;
  background-color: #063b47;
  color: #fff;
  border-radius: 20px;
}

.group {
  width: 30%;
}

.bod {
  padding-left: 20px;
}

.flex-new {
  width: 49%;
}

.flexgroupbox>img {
  width: 100%;
  margin: 0 0 15px;
}

.flexgroupbox h4 {
  font-size: 20px;
}

.img {
  width: 50%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}

.img img {
  width: 49%;
}

.flex h3 {
  font-size: 20px;
  margin: 0 0 15px;
}

.img2 {
  height: 450px !important;
  object-fit: cover;
}

.formsection {
  background: url(../img/img7.jpg) no-repeat center;
  background-size: cover;
  color: #fff;
  text-align: center;
  font-size: 16px;
  font-weight: 400;
}

.formsection:before {
  content: "";
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(10px);
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
}

.formsection .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 3;
}

.formsection .para {
  text-align: center;
  font-size: 28px;
  line-height: 1.5;
}

.formbox {
  width: 100%;
  float: left;
  max-width: 700px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.formfield {
  width: 100%;
  height: 50px;
  margin: 0 0 10px;
  padding: 0 10px;
  border: none;
  background: #fff;
  border: solid 1px #333;
  color: #000;
  font-size: 15px;
}

.textarea-cu {
  width: 100%;
  height: 100px;
  margin: 0 0 10px;
  padding: 10px;
  border: none;
  background: #fff;
  border: solid 1px #333;
  color: #000;
  font-size: 15px;
}

.formfield::placeholder,
.textarea-cu::placeholder {
  color: #333;
}

.formbutton {
  width: 100%;
  float: left;
  height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  border: none;
  background: #063b47;
  color: #fff;
  cursor: pointer;
  outline: 0 !important;
}

footer {
  background: #063b47;
  text-align: center;
  padding: 20px 0;
  color: #fff;
}

footer .container {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
}

.footerlinks {
  flex: 1;
  display: flex;
  justify-content: center;
  width: 100%;
  align-items: center;
  margin: 0 0 15px;
}

.form-w {
  width: 100%;
}

.footerlinks a {
  font-size: 14px;
  color: #ffffff;
  margin: 0 6px;
}

.footerlinks a:hover {
  text-decoration: underline !important;
}

.copyrights {
  font-size: 14px;
  color: #fff;
}

.text-white {
  font-size: 14px;
  margin: 0 0 10px;
}

.cookiesection {
  width: 100%;
  float: left;
  min-height: calc(100vh - 126px);
  padding: 40px 0;
}

.cookiesection h2 {
  font-size: 22px;
  font-weight: 600;
}

.cookiesection p {
  font-size: 14px;
  line-height: 20px;
}

.cookiesection p strong {
  font-weight: 600;
}

.cookiesection p .bolder {
  display: block;
  margin: 30px 0 10px;
  font-weight: 600;
  font-size: 16px;
  text-align: center;
}

.backbutton {
  float: left;
  display: inline-flex;
  align-items: center;
  margin: 30px 0 20px;
  padding: 6px 8px;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 600;
  color: var(--blue-dark) !important;
  border: solid 1px var(--blue-dark);
}

.backbutton img {
  width: 15px;
  margin: 0 5px 0 0;
  transition: all 0.3s ease;
}

.backbutton:hover {
  background: var(--blue-dark);
  color: #fff !important;
}

.backbutton:hover img {
  filter: saturate(0) brightness(10);
}

.alert {
  background: rgba(0, 0, 0, 0.9) !important;
  color: #ffffff !important;
  position: fixed !important;
  bottom: 0px;
  margin-bottom: 0 !important;
  left: 0;
  border-radius: 0;
  text-align: center;
  width: 40%;
  margin: auto;
  padding: 10px !important;
  display: flex;
  justify-content: center;
  border-radius: 0 !important;
  flex-wrap: wrap;
  align-items: center;
}

.alert-dismissible {
  z-index: +3;
}

.alert-close {
  border: 1px solid transparent;
  border-radius: 4px;
  background: #063b47;
  color: white;
  padding: 0px !important;
  width: 3rem;
  height: 2rem;
  font-size: 14px;
}

.hide {
  display: none;
}

span {
  font-weight: bold;
}

.alert p {
  font-size: 14px;
  margin: 0 0 10px !important;
}

.hide {
  display: none;
}

.m-t {
  margin-top: 20px;
}

@media (max-width: 800px) {
  .banner h1 {
    font-size: 28px;
  }

  .h2 {
    font-size: 20px;
  }

  .para {
    font-size: 14px;
  }

  .flexbox {
    flex-direction: column;
  }

  .flexbox>img {
    max-width: 100%;
    order: 1;
    margin: 0 0 15px;
    height: auto;
  }

  .flexbody,
  .flexbox>.para {
    padding: 0 !important;
    order: 2;
  }

  footer .container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .flexgroupbox {
    width: 100%;
  }

  .card.active {
    flex: 24;
  }

  .formfield {
    width: 100%;
  }

  .formbutton {
    width: 100%;
  }

  .footerlinks {
    justify-content: center;
    margin: 10px 0;
    gap: 15px;
    flex-wrap: wrap;
  }

  .banner>img {
    height: 126px;
  }

  .alert {
    width: 100%;
  }

  .plane {
    margin-top: -126px;
  }

  .img2 {
    height: auto !important;
  }

  .match-card {
    width: 100%;
  }

  .banner .container {
    min-height: 150px;
  }

  .btn-cu {
    padding: 15px;
  }

  .image {
    width: 100%;
    margin: 0 0 85px;
  }

  .flexbox-new {
    flex-direction: column;
  }

  .flexbox-new>img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    margin: 0 0 15px;
  }

  .banner .flexbox img {
    max-width: 100%;
    height: 100%;
  }

  .img-box {
    width: 90%;
  }

  .img1 {
    right: -40px;
  }

  .cards {
    width: 100% !important;
  }

  .content {
    margin: -30px 0 0 0;
  }

  .group {
    width: 100%;
  }

  .bod {
    padding-top: 20px !important;
  }

  .box {
    width: 49%;
  }

  .group2 {
    display: none;
  }

  .clr {
    width: 100% !important;
  }
}

.marquee-bar {
  width: 100%;
  float: left;
  background: #063b47;
  overflow: hidden;
  padding: 18px 0;
}

.marquee-track {
  width: 100%;
  float: left;
  display: flex;
  gap: 20px;
  width: max-content;
  animation: marquee 18s linear infinite;
}

.marquee-item {
  width: 200px;
  float: left;
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.marquee-item img {
  width: 100%;
  float: left;
  height: 100%;
  margin: 0;
  background-color: transparent;
  border: 1px solid #fff;
  border-radius: 10px;
}

.clr {
  background-color: #fff;
  border-radius: 20px 20px 0 0;
  width: 55%;
  float: left;
  padding: 20px;
}