@import url("https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap");
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  text-decoration: none;
}

@font-face {
  font-family: ID-bold;
  src: url(./assets/IDGrotesk-Bold-BF652cb1b4740d2.ttf);
  font-weight: 700;
}

@font-face {
  font-family: ID-semibold;
  src: url(./assets/IDGrotesk-Semibold-BF652cb1b467d9d.ttf);
  font-weight: 400;
}

@font-face {
  font-family: ID-regular;
  src: url(./assets/IDGrotesk-Regular-BF652cb1b4787d7.ttf);
  font-weight: 400;
}

@font-face {
  font-family: ID-thin;
  src: url(./assets/IDGrotesk-Thin-BF652cb1b461e9c.ttf);
  font-weight: 100;
}

html,
body {
  font-family: "Open sans";
  font-weight: 600;
  background-color: #ffffff;
  height: 100%;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.home-page {
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
  /* min-height: 100%; */
}

/* NAVIGATION BAR */

.head {
  width: 100%;
  padding: 35px 8%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.navbar ul {
  display: flex;
  justify-content: space-between;
  list-style: none;
}

.navbar ul li a {
  padding: 0 15px;
  color: #032b44;
  transition: 0.5s ease;
}

.navbar ul li a:hover {
  color: #ffc107;
}

.logo img{
  width: 120px;
}

.main-close-sidebar-button, .main-menu-sidebar-button{
  display: none;
}

.hamburger-menu{
  display: none;
}

.sidebar{
  position: fixed;
  top: 0; 
  right: 0;
  height: 100vh;
  width: 90%;
  background: linear-gradient(rgba(0, 0, 0, 0.836), rgba(0, 0, 0, 0), rgba(0, 153, 248, 0.5)), 
  #032b44;
  box-shadow: -10px 0 10px rgba(0, 0, 0, 0.1);
  list-style: none;
  display: none;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  transition:  1s ;
  z-index: 99999;
}

.sidebar li{
  padding: 15px;
  font-family: ID-regular;
  font-weight: 300;
  font-size: 14px;
}
.sidebar a{
  width: 100%;
  color: #fff;
  font-size: 20px;
}

.sidebar.active {
  display: flex;
}

/**** HOME PAGE CONTENT-1 ****/
.home-content1 {
  display: flex;
  justify-content: center;
  width: 100%;
  height: 50%;
  margin: 0 auto;
  color: #032b44;
}

.textbox h1 {
  font-family: ID-bold;
  color: #000000;
  font-size: 48px;
  background-color: transparent;
}

.textbox h2 {
  font-family: ID-regular;
  font-size: 20px;
  font-weight: 400;
  color: #032b44;
}

.textbox p {
  font-family: ID-regular;
  font-size: 18px;
  font-weight: 400;
}

.span-1 {
  color: #032b44;
}

.span-2 {
  color: #ffc107;
}

.subtext {
  color: #032b44;
  font-size: 10px;
}

.home-paragraph {
  color: #032b44;
  font-size: 10px;
}

.btn-1 {
  font-family: ID-regular;
  cursor: pointer;
  background-color: #032b44;
  padding: 9px 25px;
  border-radius: 50px;
  color: white;
  font-size: 18px;
  border: 0;
  transition: 0.4s;
}

.btn-1:hover {
  transform: scale(0.5);
  background-color: #fff;
  border: 2px solid #032b44;
  color: #032b44;
  font-size: 16px;
}

.textbox,
.img-container {
  padding: 35px 8%;
  flex: 1;
}

.img-container {
  background-color: transparent;
  padding-left: 0;
}

.textbox {
  padding-right: 0;
}

.img-container1 img {
  width: 515px;
}

.img-container2 img {
  width: 255px;
}

.img-container1a img{
  display: none;
}

/**** HOME PAGE CONTENT-2 ****/
.home-content2 {
  background-color: #e4e4e4;
  width: 100%;
  height: 50%;
  margin: 0 auto;
  padding-top: 40px;
}
.home-content2 h2 {
  text-align: center;
  font-family: ID-bold;
  margin-bottom: -50px;
  color: #032b44;
  font-size: 37px;
  padding-top: 1.7%;
  padding-bottom: 0.2%;
}

.home-box2 {
  display: flex;
  justify-content: center;
  background-color: transparent;
  margin: 0 100px;
  padding-top: 40px;
}

.img-container3 img {
  width: 525px;
}

.break-on-mobile{
  display: none;
}

.register-btn1 {
  background-color: #ffc107;
  height: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  /* margin-top: 50px; */
}

.btn-2 {
  font-family: ID-regular;
  cursor: pointer;
  background-color: #032b44;
  color: white;
  padding: 9px 25px;
  border-radius: 50px;
  font-size: 18px;
  border: 0;
}

.btn-2:hover {
  transform: scale(0.9);
  background-color: transparent;
  border: 2px solid #032b44;
  color: #032b44;
  transition: 0.4s;
}

.img-container3,
.textbox2 {
  padding: 25px;
  flex: 1;
}

.textbox2 h3 {
  font-family: ID-bold;
  color: #032b44;
  font-size: 24px;
}

.textbox2 p {
  font-family: ID-regular;
  color: #032b44;
  font-size: 18px;
  font-weight: 500;
  text-align: justify;
  line-height: 1.5;
}

/**** HOME PAGE CONTENT-3 ****/
.home-content3 {
  width: 100%;
  height: 50%;
  margin: 0 auto;
}

.home-content3 img {
  width: 1065px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.home-content3 h2 {
  text-align: left;
  font-family: ID-bold;
  color: #032b44;
  font-size: 38px;
  padding-top: 1.2%;
  padding-bottom: 1.2%;
  padding: 35px 8%;
}

.home-content3 p {
  font-family: ID-regular;
  padding: 35px 8%;
  text-align: justify;
  font-size: 18px;
  font-weight: 400;
}

/* MEMBERSHIP BUTTON */

.register-btn2 {
  background-color: #032b44;
  height: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.btn-3 {
  cursor: pointer;
  background-color: #ffc107;
  color: #032b44;
  font-family: ID-regular;
  padding: 9px 25px;
  border-radius: 50px;
  font-size: 18px;
  border: 0;
  font-weight: 800;
}

.btn-3:hover {
  transform: scale(0.9);
  background-color: transparent;
  border: 2px solid #ffc107;
  color: #ffc107;
  transition: 0.4s;
}

/** HOME CONTENT4 - PREMIUM PRODUCTS **/
.home-content4 {
  width: 100%;
  height: 50%;
  margin: 0 auto;
  padding-bottom: 50px;
}

.home-content4 h2 {
  text-align: left;
  font-family: ID-bold;
  color: #032b44;
  font-size: 38px;
  padding: 35px 8%;
}

.img-box1 img {
  width: 318px;
}

.img-box2 img {
  width: 318px;
}

.img-box3 img {
  width: 318px;
}

.img-box {
  display: flex;
  justify-content: center;
  align-items: center;
  /* padding: 35px 8%; */
  margin-left: -45px;
}

.img-box1 {
  margin: 0 1.2%;
  background-color: #032b44;
  border-radius: 20px;
}

.img-box img {
  max-width: 100%;
  padding-top: 15px;
  padding-left: 10px;
  padding-right: 10px;
}

.img-box1 h3 {
  text-align: center;
  color: #ffffff;
  font-family: ID-bold;
  padding-top: 20px;
  padding-bottom: 20px;
}

/** FOOTER **/
footer {
  position: relative;
  top: 0;
  width: 100%;
  height: 600px;
  background-color: #032b44;
  color: #ffffff;
}

.top img {
  width: 100%;
  position: relative;
  bottom: 202;
}

.foot-details {
  margin-top: 4%;
  display: flex;
  justify-content: space-evenly;
  /* background-color: red; */
  align-items: flex-start;
}

.imgs {
  display: flex;
}

.imgs img {
  width: 38px;
  height: 38px;
  margin-right: 2%;
  margin-top: 5%;
}

.imgs p {
  margin-top: 4%;
}

.col-1 {
  line-height: 2;
  margin-left: -45px;
}

.google-map-a{
  display: none;
}

.google-map-b{
  display: none;
}

.google-map p {
  font-family: ID-regular;
  font-weight: 300;
  text-align: center;
  font-size: 23px;
}

.col-1 p {
  font-family: ID-regular;
  font-size: 24px;
  font-weight: 200;
  line-height: 1.8;
}

.span-4 {
  font-family: ID-bold;
  font-size: 24px;
}

.col-2 p {
  font-family: ID-regular;
  font-size: 24px;
}

.mobile-foot-logo{
  display: none;
}

.spark {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  margin-top: 2.5%;
}

.spark h1 {
  font-family: ID-bold;
  font-size: 90px;
}

.logo-foot img{
  width: 100px;
}

.footnote {
  margin-top: 1%;
}

.footnote p {
  text-align: center;
  font-family: ID-regular;
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 2px;
  /* background-color: black; */
}

/* ABOUT US PAGE */

.about-page {
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
}

.about-content1 {                       
  background: linear-gradient(to left, rgba(0, 0, 0, 0.596), rgb(0, 0, 0)), 
                        url('./assets/about1c 600x.png') no-repeat center center/cover; 
  height: 457px;
  margin: 0 auto;
}

.about1 {
  z-index: 1;
  color: #ffffff;
  padding-top: 4%;
  padding-left: 8%;
}

.about1 h1 {
  font-family: ID-bold;
  font-size: 80px;
  line-height: 1;
}

.about1 h2 {
  font-family: ID-regular;
  font-size: 20px;
  font-weight: 400;
  padding: 22px;
  padding-left: 0;
}

.btn-4 {
  width: 258px;
  cursor: pointer;
  background-color: #ffc107;
  color: #032b44;
  font-family: ID-regular;
  font-weight: 800;
  padding: 9px 25px;
  border-radius: 50px;
  font-size: 20px;
  border: 0;
}

.btn-4:hover {
  transform: scale(0.9);
  background-color: transparent;
  border: 2px solid #ffc107;
  color: #ffc107;
  transition: 0.4s;
}

/* ABOUT PAGE CONTENT-2 */
.about-content2 {
  display: flex;
  height: 377px;
  background-color: #fff;
  color: #000;
  margin: 0 auto;
  padding: 15px 8%;
}

.about2a {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  width: 900px;
  margin-right: 120px;
}

.about2a h2 {
  font-family: ID-bold;
  font-size: 40px;
  padding-top: 30px;
}

.about2b {
  display: flex;
  justify-content: center;
  align-items: center;
}

.about2b p {
  font-size: 20px;
  line-height: 1.5;
  font-weight: 400;
  text-align: justify;
  color: #032b44;
}

/* ABOUT PAGE CONTENT-3 */
.about-content3 {
  width: 100%;
  height: 50%;
  margin: 0 auto;
  background-color: #d9d9d9;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px;
}

.about3 {
  min-height: 600px;
  width: 95vw;
  background-color: #032b44;
  display: flex;
  justify-content: space-evenly;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
  border-radius: 34px;
  padding-top: 50px;
  padding-bottom: 50px;
  padding-left: 40px;
  padding-right: 40px;
}

.inner3a {
  background-color: #ffffff;
  width: 345px;
  height: 234px;
  border-radius: 20px;
  /* margin-left: 38px; */
}

.inner3b {
  background-color: #ffffff;
  width: 345px;
  height: 234px;
  border-radius: 20px;
  /* margin: 0 18px; */
}

.inner3c {
  background-color: #ffffff;
  width: 345px;
  height: 234px;
  border-radius: 20px;
  /* margin-right: -48px; */
}

.inner3d {
  background-color: #ffffff;
  width: 345px;
  height: 234px;
  border-radius: 20px;
  /* margin-left: 40px; */
}

.inner3e {
  background-color: #ffffff;
  width: 705px;
  height: 234px;
  border-radius: 20px;
  /* margin-left: 20px; */
}

/* INNER CONTENT OF ABOUT PAGE-CONTENT3 */
.inn-head {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  color: #032b44;
  height: 30%;
  padding-left: 7%;
  padding-top: 4%;
  /* background-color: pink; */
}

.inn-head h2 {
  font-family: ID-bold;
  font-size: 32px;
}

.inn-body {
  /* background-color: orangered; */
  height: 70%;
  display: flex;
  justify-content: flex-start;
  text-align: left;
  padding-left: 4%;
  color: #032b44;
}

.inn-body p {
  font-family: ID-regular;
  font-size: 22px;
  font-weight: 500;
  padding: 20px;
}

.circlea {
  width: 59px;
  height: 59px;
  background-color: #032b44;
  border-radius: 50%;
  margin-right: 10px;
}

.circleb {
  width: 59px;
  height: 59px;
  background-color: #ec0505;
  border-radius: 50%;
  margin-right: 10px;
}

.circlec {
  width: 59px;
  height: 59px;
  background-color: #ffc107;
  border-radius: 50%;
  margin-right: 10px;
}

.circled {
  width: 59px;
  height: 59px;
  background-color: #03bb37;
  border-radius: 50%;
  margin-right: 10px;
}

.circlee {
  width: 59px;
  height: 59px;
  background-color: #3000b7;
  border-radius: 10%;
  margin-right: 10px;
}

/* ABOUT PAGE CONTENT-4 */
.about-content4 {
  width: 100%;
  height: 50%;
  margin: 0 auto;
  margin-bottom: 50px;
  margin-top: 20px;
}

.about4-body {
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  background-color: #ffc107;
  width: 100%;
  /* padding: 25px 8%; */
  margin: 0 auto;
  padding-top: 70px;
  padding-bottom: 40px;
  padding-left: 40px;
  padding-right: 40px;
}

.about4-body img {
  width: 287.16px;
}

.about4 {
  height: 18%;
  text-align: left;
}

.about4 h2 {
  font-family: ID-bold;
  font-size: 38px;
  padding-top: 1.2%;
  padding-bottom: 1.2%;
  padding: 25px 8%;
}

.a4body-1 {
  margin: 0 10px;
  text-align: center;
  line-height: 1.2;
}

.a4body-1 h3 {
  font-family: ID-bold;
  font-size: 20px;
}

.a4body-1 p {
  font-family: ID-regular;
  font-weight: 300;
  font-size: 20px;
}

/* ABOUT PAGE CONTENT-5 */
.about-content5 {
  width: 100%;
  height: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  margin-bottom: 50px;
}

.about5a img {
  width: 750px;
  height: 475px;
}

.about5b {
  height: 475px;
  background-color: #e8e8e8;
  width: 409px;
  border-radius: 20px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 15px;
}

.about5b-text h2 {
  font-family: ID-bold;
  font-size: 40px;
  text-align: left;
  margin: 0 55px;
}

.about5b-text p {
  width: 70%;
  font-family: ID-regular;
  font-size: 23px;
  font-weight: 400;
  text-align: left;
  line-height: 1.5;
  /* background-color: #FFC107; */
  margin: 0 55px;
}

.btn-5 {
  cursor: pointer;
  background-color: #032b44;
  color: white;
  padding: 9px 25px;
  border-radius: 50px;
  font-family: ID-regular;
  font-size: 18px;
  border: 0;
  width: 200px;
}

.btn-5:hover {
  transform: scale(0.9);
  background-color: transparent;
  border: 2px solid #032b44;
  color: #032b44;
  transition: 0.4s;
}

/* CO-WORKSPACE PAGE */
.co-workspace-page {
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
}

.work-content1 {
  /* height: 50%; */
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  color: #ffffff;
}

.work-content1 img {
  max-width: 1065px;
  max-height: 454px;
  border-radius: 20px;
}

.work1 {
  position: absolute;
}

.work1a {
  max-width: 1200px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 200px;
  /* gap: 50%; */
}

.work1 h1 {
  font-family: ID-bold;
  font-size: 72px;
  margin: 0;
  line-height: 1.3;
  padding-top: 17%;
}

.btn-6 {
  cursor: pointer;
  background-color: #ffffff;
  color: #000000;
  padding: 10px 25px;
  border-radius: 50px;
  font-family: ID-regular;
  font-size: 18px;
  font-weight: 800;
  border: 0;
  position: relative;
  top: 150px;
  text-align: center;
}

.btn-6:hover {
  transform: scale(0.9);
  background-color: transparent;
  border: 2px solid #ffffff;
  color: #ffffff;
  transition: 0.4s;
}

.work-content2 {
  width: 80%;
  margin: 0 auto;
  line-height: 1.9;
  padding-top: 3%;
  padding-bottom: 3%;
}

.work-content2 h2 {
  font-family: ID-bold;
  font-size: 38px;
  color: #000000;
  margin-left: -25px;
}

.work-content2 li {
  font-family: ID-regular;
  font-size: 18px;
  color: #000000;
  font-weight: 300;
  margin-left: 10px;
}
/* CARDS */
.work-content3 {
  width: 100%;
  background-color: #eeeeed;
  margin: 0 auto;
  padding-bottom: 40px;
  color: #ffffff;
}

.work3-head h2 {
  font-family: ID-bold;
  font-size: 36px;
  padding: 2% 6.7%;
  color: #000000;
}

.work3-row {
  width: 80%;
  display: flex;
  justify-content: space-evenly;
  flex-flow: wrap;
  margin: 0 110px;
  margin-left: 50px;
}

.w3box-1a {
  background-color: #009dff;
  width: 287px;
  height: 445px;
  border-radius: 20px;
  transition: 0.3s;
  margin-bottom: 2%;
}

.w3box-1a:hover {
  transform: scale(1.05);
}

.w3box-1b {
  background-color: #ff2e60;
  width: 287px;
  height: 445px;
  border-radius: 20px;
  transition: 0.3s;
  margin-bottom: 2%;
}

.w3box-1b:hover {
  transform: scale(1.05);
}

.w3box-1c {
  background-color: #ffa800;
  width: 287px;
  height: 445px;
  border-radius: 20px;
  transition: 0.3s;
  margin-bottom: 2%;
}

.w3box-1c:hover {
  transform: scale(1.05);
}

.btn-7 {
  cursor: pointer;
  background-color: #ffffff;
  color: #009dff;
  padding: 9px 25px;
  border-radius: 50px;
  font-family: ID-bold;
  font-size: 15px;
  border: 0;
  width: 200px;
}

.btn-7:hover {
  transform: scale(0.9);
  background-color: transparent;
  border: 2px solid #ffffff;
  color: #ffffff;
  transition: 0.4s;
}

.btn-8 {
  cursor: pointer;
  background-color: #ffffff;
  color: #ff2e60;
  padding: 9px 25px;
  border-radius: 50px;
  font-family: ID-bold;
  font-size: 15px;
  border: 0;
  width: 200px;
}

.btn-8:hover {
  transform: scale(0.9);
  background-color: transparent;
  border: 2px solid #ffffff;
  color: #ffffff;
  transition: 0.4s;
}

.btn-9 {
  cursor: pointer;
  background-color: #ffffff;
  color: #ffa800;
  padding: 9px 25px;
  border-radius: 50px;
  font-family: ID-bold;
  font-size: 15px;
  border: 0;
  width: 200px;
}

.btn-9:hover {
  transform: scale(0.9);
  background-color: transparent;
  border: 2px solid #ffffff;
  color: #ffffff;
  transition: 0.4s;
}

.w3-head-a {
  margin-top: 10%;
  width: 100%;
  background-color: #ffffff;
  text-align: center;
  color: #009dff;
}

.w3-head-a h3 {
  font-family: ID-bold;
  font-size: 24px;
  line-height: 2;
}

.w3-head-b {
  margin-top: 10%;
  width: 100%;
  background-color: #ffffff;
  text-align: center;
  color: #ff2e60;
}

.w3-head-b h3 {
  font-family: ID-bold;
  font-size: 24px;
  line-height: 2;
}

.w3-head-c {
  margin-top: 10%;
  width: 100%;
  background-color: #ffffff;
  text-align: center;
  color: #ffa800;
}

.w3-head-c h3 {
  font-family: ID-bold;
  font-size: 24px;
  line-height: 2;
}

.w3-body-a {
  margin: 0 23px;
  margin-top: 20px;
  text-align: center;
  /* background-color: pink; */
}

.w3-body-a ul li {
  font-family: ID-regular;
  text-align: left;
  /* background-color: rebeccapurple; */
  line-height: 1.4;
  font-size: 15px;
  font-weight: 200;
  margin: 0 20px;
}

.w3-body-a p {
  /* background-color: purple; */
  line-height: 1;
  margin-top: 72%;
  font-family: ID-regular;
}

.w3-body-b {
  margin: 0 23px;
  margin-top: 20px;
  text-align: center;
  /* background-color: pink; */
}

.w3-body-b ul li {
  font-family: ID-regular;
  text-align: left;
  /* background-color: rebeccapurple; */
  line-height: 1.4;
  font-size: 15px;
  font-weight: 200;
  margin: 0 20px;
}

.w3-body-b p {
  /* background-color: purple; */
  line-height: 1;
  margin-top: 46%;
  font-family: ID-regular;
}

.w3-body-c {
  margin: 0 23px;
  margin-top: 20px;
  text-align: center;
  /* background-color: pink; */
}

.w3-body-c ul li {
  font-family: ID-regular;
  text-align: left;
  /* background-color: rebeccapurple; */
  line-height: 1.4;
  font-size: 15px;
  font-weight: 200;
  margin: 0 20px;
}

.w3-body-c p {
  /* background-color: purple; */
  line-height: 1;
  margin-top: 21%;
  font-family: ID-regular;
}

.span-w3a {
  text-decoration: line-through;
  text-decoration-thickness: 1px;
  font-family: ID-thin;
  font-size: 25px;
  font-weight: 10;
  letter-spacing: 0.1px;
  margin-right: 10px;
}

.span-w3c {
  letter-spacing: 0.1px;
  font-family: ID-bold;
  font-size: 25px;
}

.span-w3b {
  font-size: 12px;
  font-family: ID-regular;
  font-weight: 200;
}

/* ACADEMY PAGE */
.academy-page {
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
  overflow: hidden;
}

.academy-content1 {
  min-height: 460px;
  width: 85%;
  background-color: #ffc107;
  border-radius: 44px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
}

.academy-left{
  padding-left: 5%;
}

.academy-left h1 {
  font-family: ID-bold;
  font-size: 80px;
  color: #032b44;
  line-height: 1;
}

.academy-right {
  width: 500px;
}
.academy-right img {
  max-width: 800px;
  position: relative;
  right: 59.6%;
  top: 5px;
}

.academy-icons {
  display: flex;
  justify-content: space-evenly;
  /* background-color: rebeccapurple; */
  padding: 7% 0px 9%;
  width: 60%;
  text-align: center;
}

.icon3a img {
  width: 35px;
}

.icon3a p {
  font-family: ID-regular;
  font-size: 13px;
  font-weight: 200;
}

.btn-10 {
  font-family: ID-regular;
  cursor: pointer;
  background-color: #032b44;
  color: white;
  padding: 9px 25px;
  border-radius: 10px;
  font-size: 18px;
  border: 0;
}

.btn-10:hover {
  transform: scale(0.9);
  background-color: transparent;
  border: 2px solid #032b44;
  color: #032b44;
  transition: 0.4s;
}

.academy-content2 {
  width: 100%;
}

.academy-content2 h2 {
  font-family: ID-bold;
  font-size: 38px;
  color: #032b44;
  padding: 20px;
  padding-left: 100px;
}

.academy2 {
  display: flex;
  justify-content: space-evenly;
  gap: 1px;
  flex-wrap: wrap;
  margin-left: 5%;
  margin-right: 5%;
}

.course-box {
  width: 255px;
  height: 318px;
  background-color: #032b44;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  gap: 12%;
  justify-content: center;
  align-items: center;
}

.course-box img {
  width: 167px;
}

.btn-10a {
  font-family: ID-regular;
  cursor: pointer;
  background-color: #fff;
  color: #032b44;
  padding: 9px 25px;
  border-radius: 10px;
  font-size: 18px;
  border: 0;
}

.btn-10a:hover {
  /* transform: scale(0.9); */
  background-color: transparent;
  border: 2px solid #fff;
  color: #fff;
  transition: 0.4s;
}

.course-box-unique{
   margin-bottom: -19%;
}

.academy2a p {
  text-align: center;
  color: #032b44;
  font-family: ID-semibold;
  font-size: 20px;
  padding: 20px 0px;
}

/* ACADEMY CONTENT-3 */
.academy-content3 {
  width: 85%;
  margin: 0 auto;
  line-height: 1.5;
  padding-bottom: 5%;
}

.academy-content3 ul{
  padding-left: 2%;
}

/* CONTACT US PAGE */
.contact-page {
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
}

.form-container {
  max-width: 1080px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin: 0 auto;
  padding-bottom: 5%;
}

.contact-form {
  padding-top: 10px;
}

.contact-right {
  background-color: #032b44;
  max-width: 552px;
  width: 40%;
  line-height: 3;
  padding: 2%;
  color: #ffffff;
  border-radius: 30px;
  gap: 122px;
}

.contact-left {
  max-width: 320px;
}

.contact-input {
  max-width: 486.1px;
  width: 100%;
  outline: none;
  height: 45.29px;
  border-radius: 32.35px;
  background-color: transparent;
  border: 2px solid rgb(185, 168, 168);
  padding: 0.6rem 1.2rem;
  color: white;
  font-weight: 500;
  font-family: ID-regular;
  font-size: 0.95rem;
  transition: 0.3s;
}

.contact-input-a {
  max-width: 486.1px;
  width: 100%;
  border-radius: 4px;
  background-color: transparent;
  border: 2px solid rgb(185, 168, 168);
  border-radius: 22px;
  min-height: 150px;
  resize: none;
  overflow-y: auto;
  color: white;
  font-weight: 500;
  font-family: ID-regular;
  font-size: 0.95rem;
  padding: 0.8rem 1.2rem;
}

.input-container {
  position: relative;
  margin: 1rem 0;
}

.input-container label {
  position: absolute;
  top: 45%;
  left: 15px;
  transform: translateY(-50%);
  padding: 0 0.4rem;
  color: white;
  font-size: 0.9rem;
  font-weight: 400;
  pointer-events: none;
  z-index: 1000;
  transition: 0.5s;
}

.input-container label {
  top: 0.1rem;
  transform: translateY(0);
}

.input-container span{
  position: absolute;
  top: 0;
  left: 25px;
  transform: translateY(-50%);
  font-size: 0.8rem;
  padding: 0 0.4rem;
  color: transparent;
  pointer-events: none;
  z-index: 500;
}

.input-container span::before,
.input-container span::after{
  content: "";
  position: absolute;
  width: 10%;
  opacity: 0;
  transition: 0.3s;
  height: 15px;
  background-color: #032b44;
  top: 50%;
  transform: translateY(-50%);
}

.input-container span::before{
  left: 50%;
}

.input-container span::after{
  right: 50%;
}

.input-container.focus label{
  top: 0;
  transform: translateY(-50%);
  left: 25px;
  font-size: 0.8rem;
}

.input-container.focus span::before,
.input-container.focus span::after{
  width: 50%;
  opacity: 1;
}

.btn-11 {
  cursor: pointer;
  background-color: #ffc107;
  color: #032b44;
  font-family: ID-regular;
  padding: 9px 25px;
  border-radius: 50px;
  font-size: 18px;
  border: 0;
  font-weight: 800;
  width: 100%;
}

.btn-11:hover {
  transform: scale(0.9);
  background-color: transparent;
  border: 2px solid #ffc107;
  color: #ffc107;
  transition: 0.4s;
}

.contact-left h2{
  font-family: ID-bold;
  font-size: 48px;
}

.contact-left p{
  font-family: ID-regular;
  font-size: 18px;
  font-weight: 500;
  color: #032b44;
}

/* ADMISSION FORM PAGE */
.admission-page {
  max-width: 1380px;
  width: 100%;
  margin: 0 auto;
  height: 100%;
  /* background-color: green;  */
}

.admission-img{
  transform: rotate(270deg);
  overflow: hidden;
  position: relative;
  right: 635.9px;
  bottom: 90px;
}

.admission-img img{
  height: 100px;
}

.admission-content{
  display: flex;
  justify-content: space-evenly;
  position: relative;
  bottom: 70px;
}

.admission-left{
  /* background-color: purple; */
  margin-left: 100px;
  width: 400px;
  height: 500px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.admission-right{
  width: 500px;
  height: 500px;
  color: #000;
  padding: 0 50px;
  overflow: hidden;
}

.admission-left h1{
  font-family: ID-bold;
  font-size: 40px;
  color: #000;
  padding-right: 70px;
}

.admission-left p{
  font-family: ID-regular;
  font-size: 18px;
  color: #000;
  line-height: 1.5;
}

.admission-image{
  width: 720px;
  position: relative;
  bottom: 0px;
}

textarea{
  resize: none;
  padding: 5px;
}

.input-box{
  margin: 30px 0;
  position: relative;
  /* background-color: red; */
}

.input{
  width: 400px;
  border-radius: 32.35px;
  border: 2px solid #000;
  outline: none;
  padding-left: 10px;
  color: #000;
  font-size: 16px;
  font-weight: 500;
  font-family: ID-regular;
  height: 52px;
  background: transparent;
  padding: 0.6rem 1.2rem;
  transition: 0.3s ease;
}

.input-box label{
  position: absolute;
  top: 50%;
  left: 10px;
  padding-left: 10px;
  transform: translateY(-50%);
  font-size: 14px;
  font-weight: 400;
  color: #000;
  transition: 0.4s;
  pointer-events: none;
}

input:focus,
input:valid{
  border: 2px solid #ffc107;
}

.input-box .input:focus+label,
.input-box .input:valid+label{
  top: -5px;
  left: 10px;
  background: #fff;
  font-weight: 500;
  font-size: 12px;
  padding: 5px;
  
}

/* CO-WORKSPACE FORM PAGE */
.co-workspace-form-page{
  max-width: 1380px;
  width: 100%;
  margin: 0 auto;
  height: 100%;
  /* background-color: green;  */
}

.co-workspace-form-page-content{
  display: flex;
  justify-content: space-evenly;
  /* align-items: center; */
  position: relative;
  /* bottom: 70px; */
}

/* CONSTRUCTION PAGE */
.construction-img img{
  max-width: 400px;
}

.construction-body{
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0px 8%;
   
}

.construction-text{
  max-width: 500px;
}

.construction-text h1{
  font-family: ID-bold;
  font-size: 48px;
  color: #032b44;
}

.construction-text p{
  font-family: ID-regular;
  font-size: 18px;
  color: #000;
  line-height: 1.5;
  font-weight: 500;
}