:root {
  --primary: rgb(0, 35, 149);
  --primary: #002395;
  --primary: hsl(226, 100%, 29%);
  --primary-o5: rgba(0, 35, 149, 0.501);
  --primary-dark: hsl(226, 100%, 19%);
  --primary-dark: rgb(0, 23, 97);
  --primary-light: hsl(226, 99%, 40%);

  --color1: #f2e6a9;
  --color1: rgb(242, 230, 169);

  --red: #800020;
  --red-light: hsl(345, 100%, 49%);
  --red-dark: hsl(345, 100%, 15%);

  --maroon: rgba(128, 0, 0, 1);

  --white: #ffffff;
  --white-dark: #E0E0E0;


  --green: #00a651;
  --green: rgb(0, 166, 81);
  --green-light: rgb(144, 238, 144);

  --table: rgba(100, 100, 255, 0.1);
  --table-odd: rgba(80, 80, 200, 0.3);

}


html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;

}

body {
  font-family: 'Montserrat';
  /* overflow-x: hidden; */
  /* position: relative; */
}



::-webkit-scrollbar {
  width: 15px;
}

::-webkit-scrollbar-track {
  background-color: rgba(0, 0, 150, 0.1);
  box-shadow: inset 0 0 5px grey;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
}

::-webkit-scrollbar-thumb {
  background-color: rgba(128, 0, 0, 1);
  ;
  outline: 1px solid var(--white-dark);
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
  background-color: rgb(52, 1, 1);
  ;
}





/**************************************************
*            PAGES
**************************************************/







/* index page */

.index__picture_wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 100vh;
  z-index: 10;
}

.index__header {
  /* background-color: var(--color1); */
  
  background-color: var(--green-light);
  padding: 10px 0;
  display: flex;
  justify-content: space-between;

  > div {
    > h1 {
      > .none {
        display: none;
      }

    }
  }
}

.index__header_icongroup {
  margin-right: 20px;
}

.index__header_icons {
  width: 40px;
  /* height: 120px; */
  /* object-fit: cover; */
}

@media screen and (max-width: 950px) {
  .index__header>div>img:nth-child(2) {
    display: none;
  }
}

@media screen and (max-width: 600px) {
  .index__header>div>img:nth-child(1) {
    display: none;
  }

  .index__header_ccimage {
    display: block !important;
    
  }
}

.index__header_ccimage {
  width: 120px;
  margin: auto;
  display: block;
}

.index__header_ccimage+h1 {
  text-align: center;
  font-size: 1.1rem;
  margin-top: 5px;
}

.index_topnav {
  width: 100%;
  z-index: 100;
  position: relative;
}

.index__hero {
  background-color: var(--green-light);
  /* background: linear-gradient(rgba(242, 230, 169, 0.5), rgba(242, 230, 169, 0.5)), url(../images/school-2.jpg); */
  /* background: linear-gradient(rgba(144, 238, 144, 0.5), rgba(144, 238, 144, 0.5)), url(../images/school-2.jpg); */
  /* background: linear-gradient(rgba(143, 248, 185, 0.8), rgba(255, 255, 255, 0.8)), url(../images/school-2.jpg); */
  background: linear-gradient(rgba(143, 248, 185, 0.8), rgba(255, 255, 255, 0.8)), url(../images/gallery_outside003.webp);
  background-attachment: fixed;
  background-position: 50% 35%;
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
  /* min-height: 100vh; */
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  column-gap: -50px;
  padding-block: 100px;
  padding-inline: 20px;
  row-gap: 50px;
  
  @media screen and (width <= 640px ) {
    background: linear-gradient(rgba(143, 248, 185, 0.8), rgba(255, 255, 255, 0.8)), url(../images/school-1_640.jpg);
    
  }

  
  
  > .text {
    /* background-color: yellow; */
    /* max-width: 600px; */

    > p {
      font-weight: 500;
      font-size: 1.2rem;
      max-width: 550px;
      font-weight: 600;
      color: rgb(104, 103, 103);
      /* text-align: center;   */
    }
    
    > h2 {
      max-width: 500px;
      font-weight: 600;
      font-size: clamp(3rem, 2.6rem + 1.6vw, 4rem);
      letter-spacing: -3px;
      color: rgba(0, 0, 0, 0.4);
      color: rgb(65, 65, 65);
    }

    > .index__join {
      margin-top: 50px;
      display: inline-block;
      text-decoration: none;
      font-size: 1.1rem;
      font-weight: 500;
      background-color: rgba(255, 255, 255, 0.9);
      padding: 10px 30px;
      border: 3px solid black;
      cursor: pointer;
      z-index: 10;
      border-radius: 10px;
      -webkit-border-radius: 10px;
      -moz-border-radius: 10px;
      -ms-border-radius: 10px;
      -o-border-radius: 10px;
    }
  }

  > .image {
    /* padding-inline: 20px; */
    > img {

      width: 80%;
      max-width: 300px;
    }
  }
}



.index__join:hover {
  background-color: var(--white-dark);
  color: var(--red-light) !important;
  font-weight: 600;
}


.index__reserve {
  position: absolute;
  color: transparent;
}

.index_welcome {
  padding: 100px 20px;
  overflow-x: hidden;
  position: relative;
  z-index: 1000;
}


.index_welcome h3 {
  /* padding-top: 30px; */
  font-size: 3rem;
  /* margin-bottom: 50px; */
  text-align: center;
}

.index__welcome_wrapper {
  justify-content: space-around;
  display: flex;

}

.index_welcome__img {
  flex: 0 0 45%;
}

.index_welcome__text {
  flex: 0 0 45%;
  position: relative;
}

.index_welcome__text>div {
  overflow-y: hidden;
}

.index_welcome__img {
  position: relative;
}

.index_welcome_headmistress {
  width: 100%;
  max-height: 400px;
  object-fit: cover;
  object-position: 50% 0%;
}

.index_welcome_heart {
  position: absolute;
  top: -50px;
  left: 300px;
  opacity: 0.4;
  z-index: -1;
  width: 200px;
  transform: rotate(30deg);
  -webkit-transform: rotate(30deg);
  -moz-transform: rotate(30deg);
  -ms-transform: rotate(30deg);
  -o-transform: rotate(30deg);
  animation: heartFloat 4s infinite ease-in-out;
  -webkit-animation: heartFloat 4s infinite ease-in-out;
}

@keyframes heartFloat {

  0%,
  100% {
    transform: translateY(0) translateX(0) rotate(0deg);
    -webkit-transform: translateY(0) translateX(0) rotate(0deg);
    -moz-transform: translateY(0) translateX(0) rotate(0deg);
    -ms-transform: translateY(0) translateX(0) rotate(0deg);
    -o-transform: translateY(0) translateX(0) rotate(0deg);
  }

  50% {
    transform: translateY(-50px) translateX(20px) rotate(20deg);
    -webkit-transform: translateY(-50px) translateX(20px) rotate(20deg);
    -moz-transform: translateY(-50px) translateX(20px) rotate(20deg);
    -ms-transform: translateY(-50px) translateX(20px) rotate(20deg);
    -o-transform: translateY(-50px) translateX(20px) rotate(20deg);
  }
}

.index_welcome__text h4 {
  margin-top: 30px;
  font-size: 1.7rem;
  font-weight: 500;
  margin-bottom: 40px;
}

.index_welcome__text p {
  font-size: 1.3rem;
}




@media screen and (max-width: 900px) {
  .index__welcome_wrapper {
    flex-direction: column;
  }

  .index_welcome__img {
    margin: auto;
    flex: 1 1 80%;
    /* width: 80%; */
    height: 200px;
    padding-top: 50px;
  }

  .index_welcome_headmistress {
    /* max-width: 500px; */
    width: 100%;
    object-fit: cover;
    height: 400px;
  }

  .index_welcome_heart {
    left: 200px;
  }
}

.index__subjects {
  background-color: var(--color1);
  background: linear-gradient(rgba(242, 230, 169, 0.5), rgba(242, 230, 169, 0.5)), url(../images/index_subjects.jpeg);
  
  
  padding: 50px 0;
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-size: cover;
  
  overflow: hidden;
  
  @media screen and (width < 640px) {
    background: linear-gradient(rgba(242, 230, 169, 0.5), rgba(242, 230, 169, 0.5)), url(../images/index_subjects_640.jpeg);
    
  }
}

.index__subjects>h2 {
  font-family: 'Comic Neue', cursive;
  font-weight: 700;
  font-size: 2.5rem;
  font-size: clamp(1rem, 0.4828rem + 2.069vw, 2.5rem);
  text-transform: uppercase;
  padding-top: 30px;
  text-align: center;
  margin-bottom: 100px;

  --b: 6px;
  /* control the border thickness */
  --w: 50vw;
  /* control the width of the line*/
  --g: 15px;
  /* control the gap */
  /* --c: var(--maroon); */
  --c: #0B486B;

  width: fit-content;
  padding: 0 1em;
  line-height: 1.6em;
  border: 1px solid;
  color: #fff;
  background:
    conic-gradient(from 45deg at left, var(--c) 25%, #0000 0) 0,
    conic-gradient(from -135deg at right, var(--c) 25%, #0000 0) 100%;
  background-size: 51% 100%;
  background-origin: border-box;
  background-repeat: no-repeat;
  border-image:
    linear-gradient(#0000 calc(50% - var(--b)/2),
      var(--c) 0 calc(50% + var(--b)/2),
      #0000 0) 1/0 var(--w)/calc(var(--w) + var(--g));
  margin-inline: auto;

  
}

.index__subjects_wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  column-gap: 30px;
  row-gap: 30px;
  /* overflow: hidden; */

}

.index__subjects_card {
  flex: 0 0 300px;
  height: 350px;
  background-color: rgba(242, 230, 169, 0.8);
  position: relative;
  padding: 10px;
}

.index__subjects_card>img {
  position: absolute;
  top: -80px;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 200px;
  margin: auto;
  display: block;
  object-fit: cover;
  background-color: white;
  border: 10px solid var(--color1);
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
}

.index__subjects_card>h3 {
  text-align: center;
  text-transform: uppercase;
  margin-top: 130px;
  font-size: 1.3rem;
  font-family: 'Comic Neue', cursive;
}

.index__subjects_card>p {
  text-align: center;
  font-size: 1.1rem;
}

.index__subjects_btn {
  position: absolute;
  bottom: 50px;
  left: 50%;
  color: black;
  border: 2px solid black;
  text-decoration: none;
  padding: 6px 0px;
  width: 200px;
  text-align: center;
  background-color: var(--white);
  transform: translate(-50%);
  -webkit-transform: translate(-50%);
  -moz-transform: translate(-50%);
  -ms-transform: translate(-50%);
  -o-transform: translate(-50%);
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  transition: 0.6s;
  -webkit-transition: 0.6s;
  -moz-transition: 0.6s;
  -ms-transition: 0.6s;
  -o-transition: 0.6s;
}

.index__subjects_btn:hover,
.index__subjects_btn:focus {
  transition: 0.6s;
  background-color: var(--red);
  color: var(--white);
  -webkit-transition: 0.6s;
  -moz-transition: 0.6s;
  -ms-transition: 0.6s;
  -o-transition: 0.6s;
}

.index__cambrilearn {
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.8)), url(../images/cambrilearn.jpeg);
  background-repeat: none;
  background-size: cover;
  background-attachment: fixed;
  background-position: center;
  min-height: 100vh;
  padding-block: 100px;

  > h2 {
    text-align: center;
    font-weight: 500;
    /* padding-top: 50px; */
    font-size: 2.8rem;
    max-width: 800px;
    color: rgba(0, 0, 0, 0.4);
    margin: 0 auto;
    font-weight: 400;
  }

  > p {
    max-width: 800px;
    margin: 30px auto;
    line-height: 2.25rem;
    font-size: 1.4rem;
    padding-inline: 20px;
    font-weight: 500;
  }

  > .banner {
    width: 90%;
    margin: auto;
    display: block;
    max-width: 800px;
  }

  > .logo {
    width: 200px;
    margin: auto;
    display: block;
    transform-origin: bottom;
    animation: rocking 5s ease-in-out infinite alternate;
    -webkit-animation: rocking 5s ease-in-out infinite alternate;
    transform: translateY(0px);
    -webkit-transform: translateY(0px);
    -moz-transform: translateY(0px);
    -ms-transform: translateY(0px);
    -o-transform: translateY(0px);
}

}

@keyframes rocking {

  0% {
    transform: rotate(-20deg);
    -webkit-transform: rotate(-20deg);
    -moz-transform: rotate(-20deg);
    -ms-transform: rotate(-20deg);
    -o-transform: rotate(-20deg);
  }

  100% {
    transform: rotate(20deg);
    -webkit-transform: rotate(20deg);
    -moz-transform: rotate(20deg);
    -ms-transform: rotate(20deg);
    -o-transform: rotate(20deg);
  }
}






.index__life {
  background-color: var(--color1);
  background-color: lightgreen;
  padding: 50px 0 100px;
  overflow: hidden;
}

.index__life>img {
  height: 200px;
  width: 94%;
  object-fit: cover;
  object-position: 50% 80%;
  display: block;
  margin: 0 auto 30px;
  mask-image: linear-gradient(black 70%, transparent);
  -webkit-mask-image: linear-gradient(black 70%, transparent);
}

.index__life>h2 {
  font-family: 'Comic Neue', cursive;
  font-weight: 700;
  font-size: 2.5rem;
  font-size: clamp(1rem, 0.4828rem + 2.069vw, 2.5rem);
  text-transform: uppercase;
  padding-top: 30px;
  text-align: center;

  margin-top: 50px;
  margin-bottom: 150px;

  --b: 6px;
  /* control the border thickness */
  --w: 50vw;
  /* control the width of the line*/
  --g: 15px;
  /* control the gap */
  /* --c: var(--maroon); */
  --c: #0B486B;

  width: fit-content;
  padding: 0 1em;
  line-height: 1.6em;
  border: 1px solid;
  color: #fff;
  background:
    conic-gradient(from 45deg at left, var(--c) 25%, #0000 0) 0,
    conic-gradient(from -135deg at right, var(--c) 25%, #0000 0) 100%;
  background-size: 51% 100%;
  background-origin: border-box;
  background-repeat: no-repeat;
  border-image:
    linear-gradient(#0000 calc(50% - var(--b)/2),
      var(--c) 0 calc(50% + var(--b)/2),
      #0000 0) 1/0 var(--w)/calc(var(--w) + var(--g));
  margin-inline: auto;
}

.index__life_wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  column-gap: 30px;
  row-gap: 60px;
}

.index__life_card {
  flex: 0 0 300px;
  height: 250px;
  background-color: rgba(255, 255, 255, 0.4);
  position: relative;
  padding: 10px;
  border-top-right-radius: 20px;
  border-top-left-radius: 20px;
}

.index__life_card>img:nth-of-type(1) {
  position: absolute;
  top: -80px;
  left: 50%;
  padding: 10px;
  width: 120px;
  height: 120px;
  margin: auto;
  display: block;
  object-fit: cover;
  background-color: white;
  border: 6px solid var(--primary);
  /* border: 6px solid var(--maroon); */
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
}

.index__life_card>img:nth-of-type(2) {
  position: absolute;
  top: 150px;
  left: 120px;
  width: 70px;
  display: block;
  animation: rotatestar 3s linear infinite;
  -webkit-animation: rotatestar 3s linear infinite;
}

@keyframes rotatestar {
  100% {
    transform: rotate(360deg);
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
  }
}

.index__life_card>h3 {
  text-align: center;
  text-transform: uppercase;
  margin-top: 60px;
  font-size: 1.3rem;
  font-family: 'Comic Neue', cursive;
}

.index__life_card>p {
  text-align: center;
  font-size: 1.1rem;
}

.index__life_divider>img {
  display: block;
  margin: 50px auto 0;
  width: 60%;
  max-width: 500px;
}


.index__team {
  padding: 30px 0 100px;
  background-color: var(--color1);
  /* background: linear-gradient(rgba(242, 230, 169, 0.7), rgba(242, 230, 169, 0.7)), url(../images/teacher_group.jpeg); */
  background: linear-gradient(rgba(242, 230, 169, 0.9), rgba(242, 230, 169, 0.9)), url(../images/teamwork_info.jpeg);
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-size: cover;

  overflow: hidden;
}

.index__team h2 {
  text-align: center;
  font-size: 3rem;
  margin-bottom: 30px;
  font-family: "Comic Neue", cursive;

  > span {
    display: none;
  }
}

.index__team_wrapper {
  display: flex;
  justify-content: center;
  column-gap: 30px;
  flex-wrap: wrap;
  row-gap: 100px;
}

.index__team_card {
  background-color: rgba(255, 255, 255, 0.5);
  width: 300px;
  height: 300px;
  position: relative;
  border-radius: 20px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  -o-border-radius: 20px;
  overflow: hidden;
}

.index__team_card:hover .index__team_img {
  transform: scale(1.2);
  -webkit-transform: scale(1.2);
  -moz-transform: scale(1.2);
  -ms-transform: scale(1.2);
  -o-transform: scale(1.2);
  transition: 0.6s;
  -webkit-transition: 0.6s;
  -moz-transition: 0.6s;
  -ms-transition: 0.6s;
  -o-transition: 0.6s;
}

.index__team_img {
  cursor: pointer;
  width: 80%;
  position: absolute;
  top: 80px;
  filter: contrast(1.0) brightness(1.0);
  -webkit-filter: contrast(1.0) brightness(1.0);
  transition: 0.6s;
  -webkit-transition: 0.6s;
  -moz-transition: 0.6s;
  -ms-transition: 0.6s;
  -o-transition: 0.6s;
}

.index__team_heart {
  width: 80px;
  opacity: 0.5;
  /*height: 50px;
  */
  /*background-color: #3498db;
  */
  position: relative;
  top: -180px;
  left: 200px;
  animation: floatAnimation 3s infinite ease-in-out;
  -webkit-animation: floatAnimation 3s infinite ease-in-out;
}

@keyframes floatAnimation {

  0%,
  100% {
    transform: translateY(0);
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
  }

  50% {
    transform: translateY(-20px);
    -webkit-transform: translateY(-20px);
    -moz-transform: translateY(-20px);
    -ms-transform: translateY(-20px);
    -o-transform: translateY(-20px);
  }
}

.index__team_card>h3 {
  text-align: center;
  font-size: 1.8rem;
  font-weight: 700;
  font-family: "Comic Neue", cursive;
}

.index__team_card>p {
  text-align: center;
}

.index__team_card>div {
  height: 200px;
  background-color: yellow;
  background-color: pink;
  width: 100%;
}

.index__team_dialog {
  display: none;
  position: fixed;
  top: 0%;
  left: 0px;
  width: 100%;
  min-height: 100vh;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 1000;

  > .dialog-content {
    height: 0px;
    background-color: rgba(255, 255, 255, 0.8);
    padding: 20px;
    padding-top: 40px;
    max-width: 500px;
    width: 100%;
    margin-top: 20px;
    overflow-y: auto;
    /*margin-right: 10px; */
    /* height: fit-content; */
    position: relative;
    /* min-height: fit-content; */
    /* height: 100%; */
    /* max-height: 90vh; */
    top: 50%;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
}
  
  .close {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 30px;
    cursor: pointer;
  }
  
  .close:hover {
    color: #f00;
  }
}




.index__vision {
  width: 100%;
  min-height: 100vh;
  background: linear-gradient(rgba(220, 254, 255, 0.7), rgba(220, 254, 255, 0.7)), url(../images/working_together.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  padding-bottom: 100px;
  position: relative;
  
  @media screen and (width < 640px) {
    background: linear-gradient(rgba(220, 254, 255, 0.7), rgba(220, 254, 255, 0.7)), url(../images/working_together_640.jpg);
    
  }

  > h2 {
    padding: 20px 0;
    text-align: center;
    font-size: 3rem;
    font-weight: 700;
    background-color: rgba(177, 230, 246, 0.6);
    font-family: "Comic Neue", cursive;
    letter-spacing: 1px;
    border-top: 3px solid rgb(144, 166, 252);

    > span {
      display: none;
    }
  }

  > h3 {
    margin: 30px auto;
    text-align: center;
    font-size: 2rem;
    color: rgba(0, 0, 0, 0.7);
    max-width: 700px;
    width: 90%;
    font-weight: 400;
    /* font-family: "Comic Neue", cursive; */
  }
}





.index__vision_wrapper {
  display: flex;
  justify-content: center;
  column-gap: 30px;
  row-gap: 50px;
  width: 100%;
  flex-wrap: wrap;
  padding-bottom: 100px;
}

.index__vision_card {
  background-color: rgba(177, 230, 246, 0.6);
  width: 300px;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  position: relative;
  overflow: hidden;
}

.index__vision_card h3 {
  font-size: 1.8rem;
  text-align: center;
  padding: 10px;
  color: rgba(0, 0, 0, 0.7);
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  height: 100px;
  border-bottom: 2px solid rgba(137, 190, 206, 0.8);
}

.index__vision_card>div:nth-of-type(2) {
  background-color: rgba(177, 230, 246, 0.6);
  height: 250px;
}

.index__vision_card p {
  position: absolute;
  top: 120px;
  padding: 0 10px;
  font-size: 1.2rem;
}

.index__vision_card a {
  position: absolute;
  bottom: 50px;
  left: 50%;
  color: black;
  border: 2px solid black;
  text-decoration: none;
  padding: 6px 0px;
  width: 200px;
  text-align: center;
  background-color: var(--white);
  transform: translate(-50%);
  -webkit-transform: translate(-50%);
  -moz-transform: translate(-50%);
  -ms-transform: translate(-50%);
  -o-transform: translate(-50%);
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  transition: 0.6s;
  -webkit-transition: 0.6s;
  -moz-transition: 0.6s;
  -ms-transition: 0.6s;
  -o-transition: 0.6s;
}

.index__vision_card a:hover,
.index__vision_card a:focus {
  transition: 0.6s;
  background-color: var(--red);
  color: var(--white);
  -webkit-transition: 0.6s;
  -moz-transition: 0.6s;
  -ms-transition: 0.6s;
  -o-transition: 0.6s;
}

.index__vision_divider img {
  display: block;
  margin: 0 auto 0;
  width: 60%;
  max-width: 500px;
}

.index__vision_heart {
  position: absolute;
  bottom: 30px;
  left: 43%;
  opacity: 0.6;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  animation: pulsate-bck 0.9s ease-in-out infinite both;
  -webkit-animation: pulsate-bck 0.9s ease-in-out infinite both;
}

@keyframes pulsate-bck {
  0% {
    transform: scale(1.1);
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -o-transform: scale(1.1);
  }

  50% {
    transform: scale(0.9);
    -webkit-transform: scale(0.9);
    -moz-transform: scale(0.9);
    -ms-transform: scale(0.9);
    -o-transform: scale(0.9);
  }

  100% {
    transform: scale(1.1);
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -o-transform: scale(1.1);
  }
}



.index_testimonial {
  padding: 0px 0 50px;
  background-color: rgb(255, 255, 255);
  opacity: 0.8;
  background-image: linear-gradient(rgba(68, 77, 247, 0.2) 1px, transparent 1px), linear-gradient(to right, rgba(68, 77, 247, 0.2) 1px, #ffffff 1px);
  position: relative;
  background-size: 20px 20px;
  overflow: hidden;
}

.index__testimonial_image {
  display: block;
  /* margin: 0 auto 20px; */
  width: 100%;
  height: 200px;
  object-fit: cover;
  object-position: 50% 50%;
}

.index_testimonial h3 {
  font-weight: 600;
  text-align: center;
  font-size: 2.5rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  position: absolute;
  top: 70px;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  color: var(--white);
  text-shadow: 0 0 15px #b4325f, 0 0 30px #b4325f, 0 0 55px #b4325f;
  animation: glow 2s ease-in-out infinite;
  -webkit-animation: glow 2s ease-in-out infinite;
}

@keyframes glow {
  0% {
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.5), 0 0 20px rgba(255, 255, 255, 0.5), 0 0 30px rgba(255, 255, 255, 0.5);
    filter: brightness(1);
    -webkit-filter: brightness(1);
  }

  15% {
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.5), 0 0 20px rgba(255, 255, 255, 0.5), 0 0 30px rgba(255, 255, 255, 0.5);
    filter: brightness(1);
    -webkit-filter: brightness(1);
  }

  50% {
    box-shadow: 0 0 40px rgba(255, 255, 255, 0.8), 0 0 60px rgba(255, 255, 255, 0.8), 0 0 80px rgba(255, 255, 255, 0.8);
    filter: brightness(2);
    -webkit-filter: brightness(2);
  }

  85% {
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.5), 0 0 20px rgba(255, 255, 255, 0.5), 0 0 30px rgba(255, 255, 255, 0.5);
    filter: brightness(1);
    -webkit-filter: brightness(1);
  }

  100% {
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.5), 0 0 20px rgba(255, 255, 255, 0.5), 0 0 30px rgba(255, 255, 255, 0.5);
    filter: brightness(1);
  }
}

.index_testimonial .swiper {
  max-width: 900px;
  width: 100%;
  height: 400px;
  /* background-color: yellow; */
  /* margin: 10px 0; */

}

.index_testimonial .swiper-wrapper {
  position: relative;
}

.index_testimonial .swiper-slide {
  /* background-color: #ccc; */
  font-size: 1.3rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

.index_testimonial .swiper-slide>div>img {
  width: 200px;
  height: 200px;
  margin: auto;
  display: block;
  /* object-fit: cover; */
}

.index_testimonial .swiper-slide .testimonial {
  width: 80%;
  margin: auto;
}

.index_testimonial .swiper-slide .customer {
  width: 80%;
  margin: 20px auto 0;
  text-align: center;
  font-size: 1.0rem;
}

.index_testimonial_proudly {
  width: 350px;
  margin: auto;
  display: block;
}

.swiper-testimonial-bullet {
  margin-top: 30px;
}

@media screen and (max-width:650px) {
  .index_testimonial .swiper {
    height: 500px;
  }
}





.index_contact {
  background-color: var(--white-dark);

  background: linear-gradient(90deg, rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0.7)), url(../images/index_contact1.jpeg);
  padding: 100px 0px;
  /* padding-bottom: 60px; */
  background-repeat: none;
  background-size: cover;
  background-attachment: fixed;
  background-position: center;
  color: black;
  
  @media screen and (width < 640px) {
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0.7)), url(../images/index_contact1_640.jpeg);
    
  }

  > h2 {
    text-align: center;
    font-size: 2.0rem;
    font-weight: 500;
    font-family: 'Comic Neue', cursive;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 3rem;

    > span {
      display: none;
    }
  }
  
  > img {
    display: block;
    max-width: 200px;
    width: 80%;
    margin: 0px auto 80px;
    /* margin-bottom: 50px; */
  }
}



.index__contact_message {
  background-color: var(--green);
  color: black;
  text-align: center;
  font-size: 1.3rem;
  /* padding: 5px 0; */
}

.index_contact__main {
  display: flex;
}

.index_contact__main>div {
  flex: 1 1 50%;
}

.index_contact__text {
  display: flex;
  justify-content: center;
  width: 80%;
  font-size: 1.3rem;
}

.index_contact__text p {
  width: 80%;
  height: 100px;
}

.index_contact__fields {
  /* padding: 0 20px; */
  width: 100%;
  max-width: 500px;
}

.index_contact__fieldnames {
  display: flex;
  width: 100%;
  column-gap: 20px;
  margin-bottom: 10px;
  justify-content: center;
}

.index_contact__fieldnames>div {
  flex: 1 1 100%;
}

.index_contact__fieldnames>div input {
  display: block;
  font-size: 1.0rem;
  width: 100%;
  padding: 10px;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
}

.index_contact__email>input {
  display: block;
  display: block;
  font-size: 1.0rem;
  width: 100%;
  padding: 10px;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
}

.index_contact__textarea {
  margin-top: 40px;
}

.index_contact__textarea label {
  display: block;
}

.index_contact__textarea textarea {
  width: 100%;
  padding: 10px;
  font-size: 1.0rem;
  resize: none;
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
}

.index_contact__btn {
  font-size: 1.1rem;
  padding: 5px 30px;
  color: black;
  cursor: pointer;
  margin-top: 20px;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  transition: 0.6s;
  -webkit-transition: 0.6s;
  -moz-transition: 0.6s;
  -ms-transition: 0.6s;
  -o-transition: 0.6s;
  border: 3px solid black;
  background-color: transparent;
}

.index_contact__btn:hover,
.index_contact__btn:focus {
  background-color: var(--white);
  color: var(--red);
  font-weight: 600;
  transition: 0.6s;
  -webkit-transition: 0.6s;
  -moz-transition: 0.6s;
  -ms-transition: 0.6s;
  -o-transition: 0.6s;
}

@media screen and (max-width:1000px) {
  .index_contact__main {
    flex-direction: column;
  }

  .index_contact__text {
    margin-bottom: 30px;
  }

  .index_contact__fields {
    justify-content: center;
    max-width: none;
    padding: 0 20px;
  }

  .index_contact__text {
    margin: auto;
    margin-bottom: 30px;
  }

  .index_contact__btn {
    margin-left: 20px;
  }
}

@media screen and (max-width:550px) {
  .index_contact__fieldnames {
    flex-direction: column;
    row-gap: 20px;
  }
}




.index_footer {
  border-top: 2px solid black;
  background-color: #b5e2ef;
  background-color: var(--color1);
  background-color: #90ee90;
  padding-block: 30px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  column-gap: 100px;
  row-gap: 30px;
  /* align-items: center; */

  > .school {
    > img {
      width: 150px;
      display: block;
      margin: auto;
    }
    
    > h3 {
      text-align: center;
      font-size: 2rem;
      margin-top: 10px;
    }
    
    > p {
      font-size: 1.5rem;
      color: rgba(0, 0, 0, 0.4);
    }
  }
  
  > .address {
    > h3 {
      letter-spacing: 2px;
      margin-bottom: 20px;
    }

    > .index_footer__row {
      display: flex;
      align-items: center;
      padding: 5px;
      
      > div {
        > p {
        font-size: 1.0rem;
        margin-left: 20px;
        max-width: 200px;
        font-weight: 500;
        }
      }
      
      > .index_footer__phone {
        stroke-width: 1;
        width: 40px;
        height: 40px;
        fill: rgba(0, 0, 0, 0.4);
      }
      
      > .index_footer__location {
        stroke-width: 1;
        width: 40px;
        height: 40px;
        fill: rgba(0, 0, 0, 0.4);
      }
    }
  }
  
  > .admission {
    > h3 {
      letter-spacing: 2px;
      text-transform: uppercase;
      margin-bottom: 20px;
    }

    > .row {
      margin-bottom: 10px;

      > h4 {
        color: rgba(0, 0, 0, 0.4);
        font-weight: 500;
        font-size: 1.5rem;
        border-bottom: 1px solid rgba(0, 0, 0, 0.4);
        display: inline-block;
        padding-bottom: -3px;
      }

      > p {
        font-weight: 500;
        font-size: 1.0rem;
      }
    }
  }
}

.index_footer2 {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 60px;
  background-color: black;
  color: var(--white);

  > p {
    font-size: 0.6rem;
  }
}


.kids__button_wrapper {
  display: flex;
  justify-content: center;
  margin: 20px 0;
  column-gap: 20px;
  flex-wrap: wrap;
  row-gap: 10px;

}

.kids__newbtn {
  > abbr {
    > img {
      height: 70px;
      transition: 0.3s;
      -webkit-transition: 0.3s;
      -moz-transition: 0.3s;
      -ms-transition: 0.3s;
      -o-transition: 0.3s;
    }

    > img:hover {
      filter: invert(15%) sepia(61%) saturate(3267%) hue-rotate(346deg) brightness(99%) contrast(108%);
      -webkit-filter: invert(15%) sepia(61%) saturate(3267%) hue-rotate(346deg) brightness(99%) contrast(108%);
      transition: 0.3s;
      -webkit-transition: 0.3s;
      -moz-transition: 0.3s;
      -ms-transition: 0.3s;
      -o-transition: 0.3s;
    }
  }
}


.kids__table {
  overflow-x: auto;
  margin: 0px 20px 100px;

}

.kids__table_header {
  background-color: var(--primary);
  color: var(--white-dark);
  display: flex;
  margin: auto;
  font-weight: 500;
  padding: 10px 10px;
  font-size: 1.2rem;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  width: 1050px;
  column-gap: 20px;
}

.kids__table_body {
  display: flex;
  margin: auto;
  font-size: 1rem;
  padding: 5px 10px;
  width: 1050px;
  column-gap: 20px;
  background-color: var(--table);
}

.kids__table_body:nth-of-type(odd) {
  background-color: var(--table-odd);
}

.kids__table_header p:nth-child(1),
.kids__table_body p:nth-child(1) {
  flex: 0 0 150px;
}

.kids__table_header p:nth-child(2),
.kids__table_body p:nth-child(2) {
  flex: 0 0 110px;
}

.kids__table_header p:nth-child(3),
.kids__table_body p:nth-child(3) {
  flex: 0 0 150px;
  overflow-x: auto;
}

.kids__table_header p:nth-child(4),
.kids__table_body p:nth-child(4) {
  flex: 0 0 150px;
}

.kids__imgbtn {
  border: none;
  background-color: transparent;
  cursor: pointer;

  > abbr {

    > img {
      height: 30px;
      transition: 0.3s;
      -webkit-transition: 0.3s;
      -moz-transition: 0.3s;
      -ms-transition: 0.3s;
      -o-transition: 0.3s;
    }
    
    > img:hover {
      filter: invert(15%) sepia(61%) saturate(3267%) hue-rotate(346deg) brightness(99%) contrast(108%);
      -webkit-filter: invert(15%) sepia(61%) saturate(3267%) hue-rotate(346deg) brightness(99%) contrast(108%);
      transition: 0.3s;
      -webkit-transition: 0.3s;
      -moz-transition: 0.3s;
      -ms-transition: 0.3s;
      -o-transition: 0.3s;
    }
  }
}




.kidsAdd__form_wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 50px;
  padding-bottom: 50px;
}

.kidsAdd__form_wrapper form {
  background-color: rgba(0, 34, 147, 0.1);
  padding: 20px;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
}

.kidsAdd__form_wrapper form div {
  margin-bottom: 10px;
}

.kidsAdd__form_wrapper label {
  color: black;
  font-size: 0.9rem;
  display: block;
}

.kidsAdd__form_wrapper form div input[type='text'] {
  outline: none !important;
  border: none !important;
  font-size: 1rem;
  padding: 10px;
  width: 100%;
}

.kidsAdd__form_wrapper form select {
  font-size: 1.1rem;
}




.kidsAdd__error {
  background-color: var(--red);
  color: white;
  padding: 3px 20px;
  font-weight: 600;
  font-size: 1.3rem;
  text-align: center;
  margin: 20px auto 0;
  max-width: 350px;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
}



.kidsEdit__form_wrapper {
  margin-top: 50px;
  padding-bottom: 50px;
  max-width: 400px;
  width: 100%;
  margin: 50px auto 0px;
}

.kidsEdit__form_wrapper form {
  background-color: rgba(0, 34, 147, 0.1);
  padding: 20px;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
}

.kidsEdit__form_wrapper form div {
  display: flex;
  flex-direction: column;
  margin-bottom: 10px;
}

.kidsEdit__form_wrapper form div label {
  color: black;
  font-size: 0.9rem;
}

.kidsEdit__form_wrapper form div input[type='text'] {
  font-size: 1rem;
  padding: 10px;
  outline: none;
  border: none;
}

.kidsEdit__form_wrapper form div input[type='date'] {
  font-size: 1rem;
  padding: 10px;
  outline: none;
  border: none;
}

.kidsEdit__form_wrapper label {
  width: 150px;
  display: inline-block;
}


.kidsGallery__empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  
  
  > div {
    display: flex;
    margin-top: 10px;
    flex-direction: column;
    align-items: center;
    width: 300px;
    background-color: hsl(0, 0%, 95%);
    border-radius: 20px;
    padding: 10px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
    
    > img {
      height: 200px;
    }

    > h3 {
      font-weight: 500;
      margin: 5px 0;
      color: hsl(0, 0%, 10%);
    }
    
    > p {
      font-weight: 500;
      margin: 10px 0;
      color: hsl(0, 0%, 30%);
    }

  }
}

.kidsGallery__submit {
  background: #7004b8;
  background: linear-gradient(90deg, rgba(112, 4, 184, 1) 0%, rgba(171, 3, 3, 1) 80%);
  font-size: 1rem;
  margin-top: 20px;
  text-align: center;
  display: block;
  padding: 5px 20px;
  width: 100%;
  border: none;
  outline: none;
  color: white;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  transition: 0.6s;
  -webkit-transition: 0.6s;
  -moz-transition: 0.6s;
  -ms-transition: 0.6s;
  -o-transition: 0.6s;
}

.kidsGallery__submit:hover {
  filter: brightness(1.3);
  -webkit-filter: brightness(1.3);
  transition: 0.6s;
  -webkit-transition: 0.6s;
  -moz-transition: 0.6s;
  -ms-transition: 0.6s;
  -o-transition: 0.6s;
}


.kidsView__profile {
  display: flex;
  justify-content: center;
  padding: 30px 20px 20px 20px;
  column-gap: 30px;
  flex-wrap: wrap;
  background-color: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);

  & p {
    font-weight: 500;
    font-size: 1.3rem;
    max-width: 400px;
    position: relative;
  }



  & .kidsView__info {
    font-weight: 400;
    font-size: 1.1rem;
    /* position: absolute; */
    /* top: 2px; */
    /* left: 40px; */
  }
  
  & .kidsView__date {
    font-weight: 400;
    font-size: 1.1rem;
    position: absolute;
    right: 50px;
    top: 2px;
  }
}

.kidsView__profile > div {
  width: 90%;
  max-width: 450px;
  /* background: yellow; */
}

.kidsView__profile_batch {
 display: flex;
 align-items: center;

 > p:nth-child(1) {
  width: 150px;
 }
}

.kidsView__img_message {
  text-align: center;
  margin-top: 20px;
  font-size: 1.8rem;
  font-weight: 500;
}

.kidsView__gallery {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  column-gap: 20px;
  row-gap: 20px;
  padding: 50px 20px;
}

.kidsView__gallery_anchor {
  position: relative;
  color: black;
  text-align: center;
  text-decoration: none;
  border: 1px solid black;
  padding: 10px 5px 5px 5px;
  width: 100px;
  height: 100px;
  background-color: whitesmoke;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
}

.kidsView__gallery_wrapper {
  position: relative;  
}

/* .kidsView__gallery_wrapper form {
  display: none;
} */

.kidsView__gallery_wrapper:hover form {
  display: block;
}

.kidsView__gallery_wrapper:hover img {
  filter: brightness(0.5);
  -webkit-filter: brightness(0.5);
  transition: filter 0.6s;
  -webkit-transition: filter 0.6s;
  -moz-transition: filter 0.6s;
  -ms-transition: filter 0.6s;
  -o-transition: filter 0.6s;
}

.kidsView__gallery_wrapper>form {
  position: absolute;
  top: 5px;
  right: 5px;
}

.kidsView__gallery_wrapper button {
  color: var(--red);
  font-weight: 700;
  font-size: 1.5rem;
  outline: none;
  border: none;
  cursor: pointer;
  

}

.kidsView__gallery img {
  width: 300px;
  object-fit: cover;
  object-position: center;
  height: 250px;
  transition: filter 0.6s;
  -webkit-transition: filter 0.6s;
  -moz-transition: filter 0.6s;
  -ms-transition: filter 0.6s;
  -o-transition: filter 0.6s;
  border: 1px solid rgba(0, 0, 0, 0.3);
}

.kidsView__submit {
  text-align: center;
  padding: 1px 20px;
  color: white;
  font-size: 1.1rem;
  background-color: rgba(0, 128, 0, 0.6);
  display: block;
  margin: auto;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  transition: all 0.6s;
  -webkit-transition: all 0.6s;
  -moz-transition: all 0.6s;
  -ms-transition: all 0.6s;
  -o-transition: all 0.6s;
}

.kidsView__submit:focus,
.kidsView__submit:hover {
  background-color: rgba(0, 128, 0, 1);
  transition: all 0.6s;
  -webkit-transition: all 0.6s;
  -moz-transition: all 0.6s;
  -ms-transition: all 0.6s;
  -o-transition: all 0.6s;
}




/**************************************************
*            GALLERY
**************************************************/

.gallery__hero {
  background-color: var(--green-light);
  /* background: linear-gradient(rgba(242, 230, 169, 0.5), rgba(242, 230, 169, 0.5)), url(../images/gallery_bg-large.webp); */
  /* background: linear-gradient(rgba(144, 238, 144, 0.5), rgba(144, 238, 144, 0.5)), url(../images/gallery_bg-large.webp); */
  /* background: linear-gradient(rgba(143, 248, 185, 0.8), rgba(255, 255, 255, 0.8)), url(../images/gallery_bg-large.webp); */
  background: linear-gradient(rgba(143, 248, 185, 0.8), rgba(255, 255, 255, 0.8)), url(../images/gallery_bg-large.webp);
  background-attachment: fixed;
  background-position: 50% 0%;
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
  /* min-height: 100vh; */
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding-block: 50px;
  padding-inline: 20px;
  row-gap: 50px;
  
  @media screen and (width <= 640px ) {
    background: linear-gradient(rgba(143, 248, 185, 0.8), rgba(255, 255, 255, 0.8)), url(../images/gallery_bg-small.webp);
    
  }

  > .text > h2 {
    font-size: 2.5rem;
  }
}

.gallery__main {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  column-gap: 30px;
  row-gap: 30px;
  padding-block: 50px;
  padding-inline: 20px;

  > figure {
    width: 350px;
    height: 280px;

  }

  > img {
  
    object-fit: cover;
    object-position: 50% 50%;
    border: 1px solid rgba(0, 0, 0, 0.3);
    transition: filter 0.6s;
    -webkit-transition: filter 0.6s;
    -moz-transition: filter 0.6s;
    -ms-transition: filter 0.6s;
    -o-transition: filter 0.6s;
  }
}




/**************************************************
*            LOGIN
**************************************************/
.login__main {
  background-color: var(--white-dark);
}

.login__wrapper_backbtn {
  height: 30px;
  display: flex;
  align-items: center;
  transition: color 0.6s;
  -webkit-transition: color 0.6s;
  -moz-transition: color 0.6s;
  -ms-transition: color 0.6s;
  -o-transition: color 0.6s;
}

.login__backbtn {
  margin-left: 30px;
  cursor: pointer;
  text-decoration: none;
  color: black;
  font-weight: 500;
  transition: color 0.6s;
  -webkit-transition: color 0.6s;
  -moz-transition: color 0.6s;
  -ms-transition: color 0.6s;
  -o-transition: color 0.6s;
}

.login__backbtn:hover,
.login__backbtn:focus {
  color: rgb(247, 39, 39);
}

.login__wrapper {
  display: flex;
  justify-content: center;
}

.login__wrapper>div:nth-of-type(1) {
  flex: 0 0 300px;

}

@media screen and (max-width:600px) {
  .login__wrapper>div:nth-of-type(1) {
    display: none;
  }
}

.login__wrapper>div:nth-of-type(1) img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 0% 50%;
  animation: login 50s ease-in-out infinite;
  -webkit-animation: login 50s ease-in-out infinite;
}

@keyframes login {

  0%,
  100% {
    object-position: 0% 50%;
  }

  50% {
    object-position: 100% 50%;

  }
}

.login__wrapper>div:nth-of-type(2) {
  min-height: calc(100vh - (144px + 60px + 30px));
  flex: 1;
  padding-left: 30px;
  background: linear-gradient(to right, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.8)), url(../images/index_subjects.jpeg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.login__main form {
  padding-top: 80px;
  display: block;
}

.login__main label {
  display: block;
}

.login__main label {
  margin-top: 10px;
}

.login__main input[type="text"] {
  padding: 2px;
  font-size: 1.3rem;


}

.login__error-message {
  color: var(--maroon);
}

.login_btn {
  margin-top: 20px;
  outline: none;
  border: 3px solid var(--primary);
  background-color: var(--white);
  padding: 4px 25px;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  transition: 0.6s;
  -webkit-transition: 0.6s;
  -moz-transition: 0.6s;
  -ms-transition: 0.6s;
  -o-transition: 0.6s;
}

.login_btn:hover {
  background-color: var(--primary);
  color: var(--white);
  transition: 0.6s;
  -webkit-transition: 0.6s;
  -moz-transition: 0.6s;
  -ms-transition: 0.6s;
  -o-transition: 0.6s;
}



/**************************************************
*            RESTORE PAGE
**************************************************/
.restore__area {
  display: flex;
  flex-direction: column;
  align-items: center;
  
  
  > .restore__card {
    display: flex;
    margin-top: 10px;
    flex-direction: column;
    align-items: center;
    width: 300px;
    background-color: hsl(0, 0%, 95%);
    border-radius: 20px;
    padding: 10px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
    
    > img {
      height: 200px;
    }

    > h3 {
      font-weight: 500;
      margin: 5px 0;
      color: hsl(0, 0%, 10%);
    }
    
    > p {
      font-weight: 500;
      margin: 10px 0;
      color: hsl(0, 0%, 30%);
    }

  }
}

.restore__table {
  overflow-x: auto;
  margin: 50px 20px;

}

.restore__table_header {
  background-color: var(--primary);
  color: var(--white-dark);
  display: flex;
  font-weight: 500;
  padding: 10px 10px;
  font-size: 1.2rem;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  width: 600px;
  column-gap: 20px;
  margin: auto;
}

.restore__table_body {
  display: flex;
  font-size: 1rem;
  padding: 5px 10px;
  width: 600px;
  column-gap: 20px;
  background-color: var(--table);
  margin: auto;
}

.restore__table_body:nth-of-type(odd) {
  background-color: var(--table-odd);
}

.restore__table_header p:nth-child(1),
.restore__table_body p:nth-child(1) {
  flex: 0 0 50px;
}

.restore__table_header p:nth-child(2),
.restore__table_body p:nth-child(2) {
  flex: 0 0 110px;
}

.restore__table_header p:nth-child(3),
.restore__table_body p:nth-child(3) {
  flex: 0 0 150px;
  overflow-x: auto;
}

.restore__table_header p:nth-child(4),
.restore__table_body p:nth-child(4) {
  flex: 0 0 100px;
}

.restore__table_header p:nth-child(5),
.restore__table_body p:nth-child(5) {
  flex: 0 0 100px;
}

.restore__table_header p:nth-child(6),
.restore__table_body form:nth-child(6) {
  flex: 0 0 100px;
  margin-left: 20px;
}

.restore__btn {
  border: none;
  outline: none;
  background-color: transparent;
  cursor: pointer;

  > abbr {
    > img {
      height: 20px;
    }

  }
}


.staff__main {
  min-height: calc(100vh - (184px + 60px));
  min-height: calc(100vh - 60px);
}

.staff_topnav {
  width: 100%;
}

.staff__nav_wrapper {
  position: relative;
}

.staff__top h2 {
  background-color: var(--primary);
  color: var(--white-dark);
  text-align: center;
  font-weight: 500;
  height: 40px;
  padding: 5px 0;
}


.staff__table {
  overflow-x: auto;
  margin: 50px 20px;

}

.staff__empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  
  
  > div {
    display: flex;
    margin-top: 10px;
    flex-direction: column;
    align-items: center;
    width: 300px;
    background-color: hsl(0, 0%, 95%);
    padding: 10px;
    border-radius: 20px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
    
    >img {
      height: 100px;
    }

    > h3 {
      font-weight: 500;
      margin: 5px 0;
      color: hsl(0, 0%, 10%);
      font-size: 1rem;
    }
    
    > p {
      font-weight: 500;
      margin: 10px 0;
      color: hsl(0, 0%, 30%);
      font-size: 1rem;
    }

    
  }
}

.staff__table_header {
  background-color: var(--primary);
  color: var(--white-dark);
  display: flex;
  font-weight: 500;
  padding: 10px 10px;
  font-size: 1.2rem;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  width: 1200px;
  column-gap: 20px;
  margin: auto;
}

.staff__table_body {
  display: flex;
  font-size: 1rem;
  padding: 5px 10px;
  width: 1200px;
  column-gap: 20px;
  background-color: var(--table);
  margin: auto;
}

.staff__table_body:nth-of-type(odd) {
  background-color: var(--table-odd);
}

.staff__table_header p:nth-child(1),
.staff__table_body p:nth-child(1) {
  flex: 0 0 150px;
}

.staff__table_header p:nth-child(2),
.staff__table_body p:nth-child(2) {
  flex: 0 0 110px;
}

.staff__table_header p:nth-child(3),
.staff__table_body p:nth-child(3) {
  flex: 0 0 150px;
  overflow-x: auto;
}

.staff__table_header p:nth-child(4),
.staff__table_body p:nth-child(4) {
  flex: 0 0 450px;
}

.staff__table_header p:nth-child(5),
.staff__table_body p:nth-child(5) {
  flex: 0 0 100px;
}

.staff__table_header p:nth-child(6),
.staff__table_body form:nth-child(6) {
  flex: 0 0 100px;
  margin-left: 20px;
}

.staff__deletebtn {
  border: none;
  outline: none;
  background-color: transparent;
  cursor: pointer;
  
  >img{
    height: 20px;
  }
}


.staffNew__main {
  /* background: linear-gradient(to right, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.8)), url(../images/index_subjects.jpeg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  min-height: calc(100vh - (144px + 80px + 40px + 60px + 30px)); */
  padding-bottom: 30px;
}

.staffNew__main h3 {
  text-align: center;
  font-weight: 400;
  font-size: 1.5rem;
  position: relative;
  top: 20px;
}

.staffNew__form_wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 50px;
  padding-bottom: 50px;
}

.staffNew__form_wrapper form {
  background-color: rgba(0, 34, 147, 0.1);
  padding: 20px;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
}

.staffNew__form_wrapper form div {
  display: flex;
  flex-direction: column;
  margin-bottom: 10px;
}

.staffNew__form_wrapper form div label {
  color: black;
  font-size: 0.9rem;
}

.staffNew__form_wrapper form div input[type='text'] {
  font-size: 1rem;
  padding: 10px;
  outline: none;
  border: none;
}


.staffNew__form_wrapper label {
  width: 150px;
  display: inline-block;
}





.staffUsers__server {
  background-color: lightgreen;
  color: black;
  text-align: center;
  padding-block: 5px;
}

.staffUsers__newbtn {
  display: flex;
  justify-content: center;
  margin: 10px 0 -10px;
  > a {

    > abbr {
      img {
        height: 70px;
        transition: 0.3s;
        -webkit-transition: 0.3s;
        -moz-transition: 0.3s;
        -ms-transition: 0.3s;
        -o-transition: 0.3s;
      }

      > img:hover {
      filter: invert(15%) sepia(61%) saturate(3267%) hue-rotate(346deg) brightness(99%) contrast(108%);
      -webkit-filter: invert(15%) sepia(61%) saturate(3267%) hue-rotate(346deg) brightness(99%) contrast(108%);
      transition: 0.3s;
      -webkit-transition: 0.3s;
      -moz-transition: 0.3s;
      -ms-transition: 0.3s;
      -o-transition: 0.3s;
      }

    }
  }
}


.staffUsers__table {
  overflow-x: auto;
  margin: 0px 20px;

}

.staffUsers__table_header {
  background-color: var(--primary);
  color: var(--white-dark);
  display: flex;
  margin: 50px auto 0;
  font-weight: 500;
  padding: 10px 10px;
  font-size: 1.2rem;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  width: 850px;
  column-gap: 20px;
}

.staffUsers__table_body {
  display: flex;
  margin: auto;
  font-size: 1rem;
  padding: 5px 10px;
  width: 850px;
  column-gap: 20px;
  background-color: var(--table);
}

.staffUsers__table_body:nth-of-type(odd) {
  background-color: var(--table-odd);
}

.staffUsers__table_header p:nth-child(1),
.staffUsers__table_body p:nth-child(1) {
  flex: 0 0 150px;
}

.staffUsers__table_header p:nth-child(2),
.staffUsers__table_body p:nth-child(2) {
  flex: 0 0 110px;
}

.staffUsers__table_header p:nth-child(3),
.staffUsers__table_body p:nth-child(3) {
  flex: 0 0 150px;
  overflow-x: auto;
}

.staffUsers__table_header p:nth-child(4),
.staffUsers__table_body p:nth-child(4) {
  flex: 0 0 150px;
}

.staffUsers__table_header p:nth-child(5),
.staffUsers__table_body p:nth-child(5) {
  flex: 0 0 50px;
}

.staffUsers__table_header p:nth-child(6),
.staffUsers__table_body form:nth-child(6) {
  flex: 0 0 50px;
  margin-left: 0px;
}



.staffUsers__editbtn {
  text-decoration: none;
  color: black;
  background-color: white;
  padding: 3px 20px;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  transition: 0.6s;
  -webkit-transition: 0.6s;
  -moz-transition: 0.6s;
  -ms-transition: 0.6s;
  -o-transition: 0.6s;
}

.staffUsers__editbtn:hover,
.staffUsers__editbtn:focus {
  background-color: var(--blue);
  border: 2px solid black;
  color: white;
  background-color: var(--primary);
  transition: 0.6s;
  -webkit-transition: 0.6s;
  -moz-transition: 0.6s;
  -ms-transition: 0.6s;
  -o-transition: 0.6s;
}




/**************************************************
*            about sections
vision
guidelines
conduct
**************************************************/
.about__wrapper {
  display: flex;
  justify-content: center;
}

.about__wrapper>div:nth-of-type(1) {
  flex: 0 0 300px;

}

.about__wrapper>div:nth-of-type(2) {
  min-height: calc(100vh - (144px + 60px + 30px));
  flex: 1;
  padding-left: 30px;
  background: linear-gradient(to right, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.8)), url(../images/working_together.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

@media screen and (max-width:800px) {
  .about__wrapper>div:nth-of-type(1) {
    display: none;
  }
}

.about__wrapper>div:nth-of-type(1) img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 0% 50%;
  animation: login 50s ease-in-out infinite;
  -webkit-animation: login 50s ease-in-out infinite;
}

.about__text {
  padding-left: 20px;
  /* width: 100%; */
  /* max-width: 700px; */
  font-size: 1.2rem;
  padding-bottom: 50px;

}

.about__text>h2 {
  font-family: "Comic Neue", cursive;
  text-align: center;
  padding-top: 20px;
  padding-left: 20px;
  /* margin: 30px 0 0; */
  font-size: clamp(2.5rem, 2.3276rem + 0.6897vw, 3rem);
  text-transform: uppercase;
  max-width: 700px;
  margin: 0px auto 20px;
}

.about__text>h3 {
  font-family: "Comic Neue", cursive;
  text-align: center;
  padding: 0 20px;
  /* margin: 30px 0; */
  font-size: 1.6rem;
  text-transform: uppercase;
  max-width: 700px;
  width: 100%;
  margin: auto;
}

.about__text>h4 {
  font-family: "Comic Neue", cursive;
  text-align: center;
  padding-left: 20px;
  margin: 10px auto;
  font-size: 1.3rem;
  text-transform: uppercase;
  max-width: 700px;
}

.about__text>p {
  line-height: 30px;
  text-align: justify;
  max-width: 700px;
  width: 100%;
  padding: 0 20px;
  margin: auto;
  font-weight: 500;
  font-size: 1.5rem;
}

.about__text>p:nth-of-type(1) {
  margin-top: 20px;
}

.about__text>ul {
  list-style: none;
  text-align: justify;
  max-width: 700px;
  width: 100%;
  padding: 0 20px;
  margin: auto;
  font-weight: 400;
  font-size: 1.1rem;
}

.about__text>ul>li {
  line-height: 25px;
  margin: 3px 0;

}

.about__text>ul>li>span {
  font-weight: 500;
}







/**************************************************
*            MORE
**************************************************/
.more__wrapper {
  display: flex;
  justify-content: center;
}

.more__wrapper>div:nth-of-type(1) {
  flex: 0 0 300px;

}

.more__wrapper>div:nth-of-type(2) {
  min-height: calc(100vh - (144px + 60px + 30px));
  flex: 1;
  padding-left: 30px;
  background: linear-gradient(to right, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.8)), url(../images/index_subjects.jpeg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

@media screen and (max-width:800px) {
  .more__wrapper>div:nth-of-type(1) {
    display: none;
  }
}

.more__wrapper>div:nth-of-type(1) img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 0% 50%;
  animation: login 50s ease-in-out infinite;
  -webkit-animation: login 50s ease-in-out infinite;
}

.more__text {
  padding-left: 20px;
  /* width: 100%; */
  /* max-width: 700px; */
  font-size: 1.2rem;
  padding-bottom: 50px;

}

.more__text>h2 {
  font-family: "Comic Neue", cursive;
  text-align: center;
  padding-left: 20px;
  margin: 30px 0;
  font-size: clamp(2.5rem, 2.3276rem + 0.6897vw, 3rem);
  text-transform: uppercase;
}

.more__text>p {
  line-height: 30px;
  text-align: justify;
  max-width: 700px;
  width: 100%;
  padding: 0 20px;
  margin: auto;
  font-weight: 500;
  font-size: 1.5rem;
}






/**************************************************
*            COMPONENT
**************************************************/


#loading-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.5);
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
}

#loading-spinner {
  border: 8px solid #f3f3f3;
  border-top: 8px solid #3498db;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: spin 2s linear infinite;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  -webkit-animation: spin 2s linear infinite;
}


@keyframes spin {
  0% {
    transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
  }
}

#page-content {
  display: none;
}




.btnEffect1 {
  text-decoration: none;
  color: black;
  border: 3px solid var(--primary);
  background-color: transparent;
  padding: 5px 25px;
  /* display: inline-block; */
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  position: relative;
}

.btnEffect1::before {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
  height: 100%;
  width: 100%;
  transform: scaleY(0);
  background-color: var(--primary);
  transition: 0.6s ease-in-out;
  z-index: -1;
  -webkit-transition: 0.6s ease-in-out;
  -moz-transition: 0.6s ease-in-out;
  -ms-transition: 0.6s ease-in-out;
  -o-transition: 0.6s ease-in-out;
  -webkit-transform: scaleY(0);
  -moz-transform: scaleY(0);
  -ms-transform: scaleY(0);
  -o-transform: scaleY(0);
  transform-origin: bottom;
  transition-timing-function: cubic-bezier(0.5, 1.6, 0.4, 0.7);
}

.btnEffect1:hover::before,
.btnEffect1:focus::before {
  transform: scaleY(1);
  -webkit-transform: scaleY(1);
  -moz-transform: scaleY(1);
  -ms-transform: scaleY(1);
  -o-transform: scaleY(1);
}

.btnEffect1:focus,
.btnEffect1:hover {
  /* transform-origin: right; */
  color: var(--white);
  /* background-color: var(--primary-dark); */
}


.btnEffect2 {
  text-decoration: none;
  color: black;
  border: 3px solid var(--blue);
  background-color: transparent;
  padding: 2px 20px;
  /* display: inline-block; */
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  position: relative;
}

.btnEffect2::before {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
  height: 100%;
  width: 100%;
  transform: scaleY(0);
  background-color: var(--blue);
  transition: 0.6s ease-in-out;
  z-index: -1;
  -webkit-transition: 0.6s ease-in-out;
  -moz-transition: 0.6s ease-in-out;
  -ms-transition: 0.6s ease-in-out;
  -o-transition: 0.6s ease-in-out;
  -webkit-transform: scaleY(0);
  -moz-transform: scaleY(0);
  -ms-transform: scaleY(0);
  -o-transform: scaleY(0);
  transform-origin: bottom;
  transition-timing-function: cubic-bezier(0.5, 1.6, 0.4, 0.7);
}

.btnEffect2:focus::before,
.btnEffect2:hover::before {
  transform: scaleY(1);
  -webkit-transform: scaleY(1);
  -moz-transform: scaleY(1);
  -ms-transform: scaleY(1);
  -o-transform: scaleY(1);
}

.btnEffect2:focus,
.btnEffect2:hover {
  /* transform-origin: right; */
  color: var(--white);
}

.btnEffect3 {
  text-decoration: none;
  color: black;
  border: 3px solid var(--red-dark);
  background-color: transparent;
  padding: 2px 20px;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  position: relative;
}

.btnEffect3::before {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
  height: 100%;
  width: 100%;
  transform: scaleY(0);
  background-color: var(--red-dark);
  transition: 0.6s ease-in-out;
  z-index: -1;
  -webkit-transition: 0.6s ease-in-out;
  -moz-transition: 0.6s ease-in-out;
  -ms-transition: 0.6s ease-in-out;
  -o-transition: 0.6s ease-in-out;
  -webkit-transform: scaleY(0);
  -moz-transform: scaleY(0);
  -ms-transform: scaleY(0);
  -o-transform: scaleY(0);
  transform-origin: bottom;
  transition-timing-function: cubic-bezier(0.5, 1.6, 0.4, 0.7);
}

.btnEffect3:focus::before,
.btnEffect3:hover::before {
  transform: scaleY(1);
  -webkit-transform: scaleY(1);
  -moz-transform: scaleY(1);
  -ms-transform: scaleY(1);
  -o-transform: scaleY(1);
}

.btnEffect3:focus,
.btnEffect3:hover {
  /* transform-origin: right; */
  color: var(--white);
}

.btnEffect4 {
  margin: 10px 0;
  display: block;
  text-decoration: none;
  text-align: center;
  background-color: transparent;
  width: 100px;
  padding: 2px 10px;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  border: 3px solid var(--primary);
  position: relative;
}


.btnEffect4::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100%;
  width: 100%;
  transform: scaleX(0);
  background-color: var(--primary);
  transition: 0.6s ease-in-out;
  z-index: -1;
  -webkit-transition: 0.6s ease-in-out;
  -moz-transition: 0.6s ease-in-out;
  -ms-transition: 0.6s ease-in-out;
  -o-transition: 0.6s ease-in-out;
  -webkit-transform: scaleX(0);
  -moz-transform: scaleX(0);
  -ms-transform: scaleX(0);
  -o-transform: scaleX(0);
  transform-origin: right;
  transition-timing-function: cubic-bezier(0.5, 1.6, 0.4, 0.7);
}

.btnEffect4:hover::before {
  transform: scaleX(1);
  -webkit-transform: scaleX(1);
  -moz-transform: scaleX(1);
  -ms-transform: scaleX(1);
  -o-transform: scaleX(1);
}

.btnEffect4:hover {
  /* transform-origin: right; */
  color: var(--white);
}




.input-group {
  position: relative;
  margin-top: 15px;
}

.effect1 {
  border: none;
  outline: none;
  background-color: transparent;
  font-size: 1.1rem;
  /* width: 300px; */
  display: inline-block;
  /* width: 100%; */
  border: 2px solid #ccc;
  /* color: #ccc; */
  padding-left: 5px;
  padding: 5px 0 5px 5px;

}

.effect1+label {
  position: absolute;
  /* top: 50%; */
  top: 20px;
  background-color: white;

  left: 5px;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  font-size: 1.1rem;
  transition: 0.6s;
  -webkit-transition: 0.6s;
  -moz-transition: 0.6s;
  -ms-transition: 0.6s;
  -o-transition: 0.6s;
}

.effect1:focus {
  border-color: var(--primary);

}

.effect1:focus+label,
.effect1:not(:placeholder-shown)+label {
  font-size: 0.9rem;
  top: 0px;
  color: var(--primary);
  padding: 0 10px;
  margin-left: 10px;
}

.effect1:not(:placeholder-shown) {
  border-color: var(--primary);
}


.error-message {
  color: pink;
}



.footer {
  background-color: var(--primary);
  width: 100%;
  text-align: center;
  padding: 10px 0;
}

.footer h3 {
  color: var(--white-dark);
  font-weight: 400;
  font-size: 1.1rem;

}



.topnav {
  width: 100%;
  height: 80px;
  display: flex;
  justify-content: space-around;
  /* position: absolute; */
  align-items: center;
  font-size: 1.1rem;
  background-color: var(--white-dark);
  top: 30px;
}

.topnav_brand {
  display: flex;
  align-items: center;
  column-gap: 10px;
  cursor: pointer;
  text-decoration: none;
  font-weight: 700;
  color: black !important;
  font-size: 1.3rem;
  cursor: pointer;
}

.topnav_brand>img:nth-child(2) {
  width: 350px;
  /* filter: invert(33%) sepia(84%) saturate(6874%) hue-rotate(203deg) brightness(89%) contrast(99%);
  -webkit-filter: invert(33%) sepia(84%) saturate(6874%) hue-rotate(203deg) brightness(89%) contrast(99%); */
}

.topnav_brand>img:nth-child(1) {
  width: 100px;
  /* filter: invert(33%) sepia(84%) saturate(6874%) hue-rotate(203deg) brightness(89%) contrast(99%);
  -webkit-filter: invert(33%) sepia(84%) saturate(6874%) hue-rotate(203deg) brightness(89%) contrast(99%); */
}

.topnav__menu {
  position: absolute;
  /* height: 25px; */
  /* width: 25px; */
  right: 20px;
  top: 14px;
  display: none;
  flex-direction: column;
  row-gap: 5px;
  cursor: pointer;
  display: none;
}

.topnav__menu_bar {
  width: 25px;
  height: 5px;
  background-color: var(--primary);
  margin-bottom: 3px;

}

.topnav__items {
  list-style: none;
  display: flex;
  column-gap: 40px;
  align-items: center;
}

.topnav__items li a {
  transform-origin: left;
  transition: 0.6s;
  -webkit-transition: 0.6s;
  -moz-transition: 0.6s;
  -ms-transition: 0.6s;
  -o-transition: 0.6s;
  color: black;
  z-index: 1000;
}

.topnav__items li a:hover {
  transition: 0.6s;
  transform: scaleX(1.2);
  -webkit-transform: scaleX(1.2);
  -moz-transform: scaleX(1.2);
  -ms-transform: scaleX(1.2);
  -o-transform: scaleX(1.2);
  -webkit-transition: 0.6s;
  -moz-transition: 0.6s;
  -ms-transition: 0.6s;
  -o-transition: 0.6s;
}

.topnav__item {
  text-decoration: none;
  color: black;
  transform: scale(1);
  transition: 0.5s;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  display: inline-block;
}

.topnav__item:hover {
  transition: 0.5s;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
}

.topnav-active {
  display: block !important;
}

@media screen and (max-width: 1100px) {
  .topnav_brand>p {
    display: none;
  }

  .topnav__menu {
    display: block;
  }

  .topnav_main {
    width: 100%;
    left: 0;
    right: 0;
    top: 0;
    position: absolute;
  }

  .topnav__items {
    display: none;
    /* display: block; */
    /* margin: 50px 0; */
    padding: 20px 0 50px;
    text-align: center;
    width: 100%;
    justify-content: center;
    align-items: center;
    background-color: white;
  }

  .topnav__items li {
    /* background-color: white; */
    display: block;
    margin-top: 50px;
  }


}

@media screen and (max-width:600px) {
  .topnav_brand>img:nth-child(2) {
    display: none;
  }
}

.topnav__item2 {
  > abbr {
    > img {
      
      height: 50px;
      transition: 0.3s;
      -webkit-transition: 0.3s;
      -moz-transition: 0.3s;
      -ms-transition: 0.3s;
      -o-transition: 0.3s;
}
    > img:hover {
      filter: invert(15%) sepia(61%) saturate(3267%) hue-rotate(346deg) brightness(99%) contrast(108%);
      -webkit-filter: invert(15%) sepia(61%) saturate(3267%) hue-rotate(346deg) brightness(99%) contrast(108%);
      transition: 0.3s;
      -webkit-transition: 0.3s;
      -moz-transition: 0.3s;
      -ms-transition: 0.3s;
      -o-transition: 0.3s;
    }


  }
}



/**************************************************
*            UTLITY
**************************************************/
.absolute {
  position: absolute;
}

.aic {
  align-items: center;
}


.block {
  display: block;
}

.dib {
  display: inline-block;
}

.flex {
  display: flex;
}

.font-normal {
  font-weight: 400;
}

.justify-between {
  justify-content: space-between;
}

.justify-center {
  justify-content: center;
}

.justify-end {
  justify-content: end;
}

.mb20 {
  margin-bottom: 20px;
}

.mr20 {
  margin-right: 20px;
}

.mt10 {
  margin-top: 10px;
}

.mt20 {
  margin-top: 20px;
}

.mt40 {
  margin-top: 40px;
}

.mauto {
  margin-left: auto;
  margin-right: auto;
}

.overflow-x {
  overflow-x: auto;
}

.relative {
  position: relative;
}

.text-center {
  text-align: center;
}

.text-left {
  text-align: left;
}

.text-right {
  text-align: right;
}

.text-primary {
  color: var(--primary);
}

.w100 {
  width: 100%;
}