* {
   margin: 0;
   padding: 0;
   box-sizing: border-box;
   font-family: 'Nunito', sans-serif;
   color: white;
}

html {
   width: 100vw;
   height: 100%;
   overflow-x: hidden;
   overflow-y: hidden;
   pointer-events: none;
   user-select: none;
}

body {
   overflow-x: hidden;
   top: 0 !important;
}

.skiptranslate iframe {
   display: none !important;
}

.us {
   user-select: text;
}

#preloader {
   position: fixed;
   width: 100vw;
   height: 100%;
   z-index: 99999999999999999;
   user-select: none;
   pointer-events: none;
   background: #fff;
   display: flex;
   align-items: start;
   justify-content: center;
   filter: hue-rotate(360deg);
   opacity: 1;
   top: 0;
   scale: 1;
   overflow: hidden;
}

#loader {
   margin-top: 380px;
   position: fixed;
   width: 150px;
   height: 150px;
   background-size: 100%;
   transition: 1.2s;
   display: flex;
   align-items: center;
   justify-content: center;
}

#loader span {
   position: absolute;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
   transform: rotate(calc(18deg * var(--i)));
}

#loader span::before {
   content: '';
   position: absolute;
   top: 0;
   left: 0;
   width: 15px;
   height: 15px;
   border-radius: 50%;
   background: #1c99cb;
   box-shadow: 0 0 5px #1c99cb,
      0 0 10px #1c99cb,
      0 0 15px #1c99cb,
      0 0 20px #1c99cb,
      0 0 40px #1c99cb,
      0 0 60px #1c99cb,
      0 0 80px #1c99cb,
      0 0 100px #1c99cb;
   animation: loadanimate 2s linear infinite;
   animation-delay: calc(0.1s * var(--i));
}

@keyframes loadanimate {
   50% {
      transform: scale(1);
   }

   80%,
   100% {
      transform: scale(0);
   }
}

#loader img {
   width: 120px;
}

:root {
   --studentcolor1: #2A0869;
   --studentcolor2: #9130D8;
}

::-webkit-scrollbar {
   width: 0;
}

::selection {
   background-color: #3586FF;
   color: white;
}

.linkbutton {
   width: 135px;
   height: 40px;
   color: #fff;
   border-radius: 7px;
   padding: 7px 25px;
   font-family: 'Lato', sans-serif;
   font-weight: 500;
   background: transparent;
   cursor: pointer;
   transition: all 0.3s ease;
   position: relative;
   display: inline-block;
   box-shadow: inset -1px -1px 5px 0px rgba(255, 255, 255, .5),
      7px 7px 20px 0px rgba(0, 0, 0, .1),
      4px 4px 5px 0px rgba(0, 0, 0, .1);
   outline: none;
   text-decoration: none;
   font-size: 19px;

   background-color: #3586ff;
   background-image: linear-gradient(315deg, #6996da 0%, #3586ff 74%);
   border: none;
   z-index: 1;
}

.linkbutton::after {
   position: absolute;
   content: "";
   width: 100%;
   height: 0;
   bottom: 0;
   left: 0;
   z-index: -1;
   border-radius: 7px;
   background-color: #689eee;
   background-image: linear-gradient(315deg, #689eee 0%, #6cb0c9 74%);
   box-shadow:
      0 0 20px 0px #fff9,
      0 0 5px 0px #fff9,
      7px 7px 20px 0px #0002,
      4px 4px 5px 0px #0001;
   transition: all 0.3s ease;
}

.linkbutton:hover {
   color: #fff;
}

.linkbutton:hover:after {
   top: 0;
   height: 100%;
}

.linkbutton:active {
   top: 2px;
}

/*Translate*/
.goog-te-gadget-icon {
   border-radius: 50px;
}


.goog-te-gadget-simple {
   background-color: transparent !important;
   border: 0 !important;
   font-size: 10pt;
   font-weight: 800;
   display: inline-block;
   padding: 0 10px !important;
   cursor: pointer;
   zoom: 1;
   border-radius: 12px;
}

.goog-te-gadget-simple span {
   color: white !important;
   font-weight: 700;
}

.goog-te-gadget-simple span:nth-child(3) {
   display: none;
}

.translate {
   color: white;
   font-size: 16px;
   font-weight: bolder;
   position: relative;
   height: 30px;
   width: 90%;
   display: flex;
   align-items: center;
   justify-content: center;
   transition: 0.3s;
}

.translate:hover {
   background: rgba(255, 255, 255, 0.3);
   box-shadow: 0 0 5px white;
   border-radius: 100px;
}

/*Translate*/
nav {
   position: absolute;
   z-index: 2000;
   padding: 3px 1.5%;
   padding-left: 10%;
   width: 100%;
   transition: 0.3s;
   background: rgba(255, 255, 255, 0.15);
   box-shadow: 0 3px 20px -18px black;
}

.nav-anim {
   background: rgba(0, 0, 0, 0.4);
   position: fixed;
   padding: 4px 1%;
   padding-left: 5%;
}

nav .logo_img {
   margin-left: 50px;
}

nav img {
   height: 42px;
   transition: 0.3s;
}

.nav-wrapper {
   position: relative;
   display: flex;
   justify-content: space-between;
   align-items: center;
}

nav .menu ul {
   display: flex;
   justify-content: space-between;
   align-items: center;
   gap: 15px;
   flex-wrap: wrap;
   height: 15px;
}

nav .menu ul li {
   list-style-type: none;
}

#MenuBtn {
   display: none;
   font-size: 24px;
   color: white;
}

.hider {
   display: none;
   color: white;
   font-size: 24px;
}

.vh_line {
   background: white;
   height: 25px;
   width: 4px;
   border-radius: 15px;
   opacity: 1;
   margin: 0;
   padding: 0;
   margin-right: 15px;
   box-shadow: 0 0 5px black;
}

nav .menu .menu-link {
   color: white;
   font-size: 17px;
   position: relative;
   text-decoration: none;
   transition: 0.3s;
}

nav .menu .menu-link:hover {
   color: #22b5f0;
}

nav .menu .menu-link i {
   transition: 0.3s;
}

nav .menu .menu-link:hover i {
   color: #22b5f0;
}

nav .menu .menu-link::after {
   content: '';

   position: absolute;
   bottom: -1px;
   right: 0;
   left: 0;
   display: flex;
   justify-content: center;
   width: 0;
   height: 3px;
   background: white;
   margin: auto;
   border-radius: 10px;
   transition: 0.3s;
}

nav .menu .menu-link:hover::after {
   background: #22b5f0;
   width: 100%;
}

body {
   background-image: url(../img/tools/user-bg.jpeg);
   background-repeat: no-repeat;
   background-size: cover;
   background-position: center;
   height: 100vh;
   overflow: hidden;
}

body::after {
   content: '';
   width: 100%;
   height: 100%;
   position: absolute;
   top: 0;
   left: 0;
   right: 0;
   bottom: 0;
   background-color: rgba(0, 0, 0, 0.1);
   pointer-events: none;
   user-select: none;
}

.wrapper {
   width: 100%;
   height: 100vh;
   backdrop-filter: blur(25px);
}

.content {
   position: absolute;
   transform: translate(-50%, -50%);
   width: 950px;
   height: 85%;
   left: 50%;
   padding: 1%;
   background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), rgba(200, 200, 200, 0.2));
   border: 2px solid rgba(255, 255, 255, 0.2);
   border-radius: 20px;
   animation: contentanim 1.5s forwards ease-in-out;
   animation-delay: 0.7s;
   opacity: 0;
   overflow: hidden;
   will-change: transform;
   scroll-behavior: smooth;
}

@keyframes contentanim {
   0% {
      top: 30%;
      opacity: 0;
   }

   100% {
      top: 53%;
      opacity: 1;
   }
}

@keyframes contenttitle {
   0% {
      top: 1.8%;
      opacity: 0;
   }

   100% {
      top: 4%;
      opacity: 1;
   }
}

.details {
   min-height: 100%;
}

.verify {
   position: fixed;
   top: 160px;
   left: 80px;
   z-index: 1000000;
   animation: verify 1.2s forwards ease-in-out;
   animation-delay: 2.7s;
   opacity: 0;
   scale: 0;
   display: flex;
   flex-direction: column;
   align-items: center;
}

.verify img {
   width: 30px;
   height: 30px;
   min-width: 30px;
   min-height: 30px;
   max-width: 30px;
   max-height: 30px;
}

@keyframes verify {
   0% {
      scale: 0;
      top: 160px;
      opacity: 0;
   }

   100% {
      scale: 1;
      top: 180px;
      opacity: 1;
   }
}

.verify-about {
   opacity: 0;
   transition: 0.3s;
   position: absolute;
   top: -10px;
}

.verify-about p {
   width: max-content;
   padding: 5px 10px;
   background-color: rgba(255, 255, 255, 0.23);
   border: 3px solid rgba(255, 255, 255, 0.1);
   text-align: center;
   border-radius: 20px;
   position: absolute;
   top: 12px;
   left: 15px;
}

.verify img:hover~.verify-about {
   opacity: 1;
   top: 0;
}

.student img:hover~.verify .verify-about {
   opacity: 1;
   top: 0;
}

.student {
   position: relative;
   display: flex;
   align-items: center;
   justify-content: center;
   flex-direction: column;
}

.student img {
   position: absolute;
   width: 180px;
   height: 180px;
   border-radius: 50%;
   opacity: 0;
   top: -30px;
   left: 92px;
   transform: translate(-50%, 0);
   animation: studentimg 1.2s forwards ease-in-out;
   animation-delay: 2.2s;
   z-index: 20;
   object-position: center;
   object-fit: cover;
   transition: 0.4s;
}

@keyframes studentimg {
   0% {
      transform: translate(-50%, -12%);
      opacity: 0;
   }

   100% {
      transform: translate(-50%, 17%);
      opacity: 1;
   }
}

.student .bannerLogo {
   z-index: -10;
   position: absolute;
   width: 210px;
   height: 210px;
   border-radius: 50%;
   opacity: 0;
   top: -15px;
   left: -13px;
   filter: blur(15px);
   animation: studentbannerLogo 1.2s forwards ease-in-out;
   animation-delay: 2.7s;
   transform: scale(1);
}

@keyframes studentbannerLogo {
   0% {
      opacity: 0;
      scale: 0.8;
   }

   100% {
      opacity: 0.9;
      scale: 0.96;
   }
}

.student form {
   position: absolute;
   padding-top: 35%;
   top: 50%;
   left: 50%;
   transform: translate(-50%);
   opacity: 0;
   animation: studentform 1.5s forwards ease-in-out;
   animation-delay: 2.3s;
}

.form .alert {
   --bs-alert-margin-bottom: 0 !important;
   margin-bottom: 0 !important;
}

@keyframes studentform {
   0% {
      padding-top: 35%;
      opacity: 0;
   }

   100% {
      padding-top: 46%;
      opacity: 1;
   }
}

@media (max-width:1100px) {
   #MenuBtn {
      display: block;
   }

   nav .menu {
      display: none;
      position: fixed;
      top: 0;
      left: 100%;
      height: 100vh;
      width: 100vw;
      background: rgba(0, 0, 0, 0.3);
      transition: 0.4s;
      display: flex;
      align-items: center;
      justify-content: center;
      backdrop-filter: blur(3px);
   }

   nav .menu ul {
      width: 100%;
      height: 100%;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
   }

   .hider {
      display: flex;
   }

   nav {
      padding: 10px 4.5%;
   }

   .nav-anim {
      padding: 4px 4.5%;
   }
}

footer {
   position: fixed;
   left: 15px;
   bottom: -50px;
   animation: footer 1s forwards ease-in-out;
   animation-delay: 3.2s;
}

@keyframes footer {
   0% {
      bottom: -50px;
   }

   100% {
      bottom: -5px;
   }
}

.trinsyca {
   text-align: center;
   font-size: 16px;
   color: white;
}

.trinsyca g {
   opacity: 0.5;
}

.trinsyca a {
   color: #E4B063;
   font-size: 18px;
   letter-spacing: 1px;
   text-shadow: 0 0 10px #E4B063, 0 0 10px #E4B063, 0 0 10px #E4B063;
   opacity: 1;
   text-decoration: none;
   transition: all 0.2s ease-in-out;
}

.trinsyca a:hover {
   color: red;
   text-shadow: 0 0 10px red, 0 0 10px red, 0 0 10px red;
}

.trinsyca a:active {
   text-shadow: 0 0 10px red, 0 0 10px red, 0 0 10px red, 0 0 10px red, 0 0 10px red, 0 0 10px red;
}

.spayai {
   text-align: center;
   font-size: 16px;
   color: white;
}

.spayai g {
   opacity: 0.6;
}

.spayai a {
   color: #000;
   font-size: 18px;
   letter-spacing: 1px;
   text-shadow: 0 0 10px #000, 0 0 10px #000;
   opacity: 1;
   text-decoration: none;
   transition: all 0.2s ease-in-out;
}

.spayai a:hover {
   color: #000;
   text-shadow: 0 0 10px #000, 0 0 10px #000, 0 0 10px #000;
}

.spayai a:active {
   text-shadow: 0 0 10px #000, 0 0 10px #000, 0 0 10px #000, 0 0 10px #000;
}

.student-info {
   width: 100%;
   min-height: 100%;
}

.title {
   width: 77%;
   height: 0;
   position: absolute;
   top: -50px;
   left: 23%;
   animation: title 1.2s forwards ease-in-out;
   animation-delay: 2.8s;
   opacity: 0;
}

@keyframes title {
   0% {
      top: -25px;
      opacity: 0;
   }

   100% {
      top: 15px;
      opacity: 1;
   }
}

@keyframes opacity {
   0% {
      opacity: 0;
   }

   100% {
      opacity: 1;
   }
}

.title h2 {
   font-size: 24px;
   color: rgba(255, 255, 255, 0.6);
}

.title span {
   padding: 5px 14px 1px 6px;
   background-color: #59CE8F;
   color: white;
   border-radius: 0 0 0 15px;
   position: fixed;
   top: 10px;
   right: -30px;
   transform: translate(-50%, -50%);
   box-shadow: 30px -30px 0 30px #59CE8F;
   transition: 0.3s;
   font-size: 15px;
}

.other {
   margin-top: 220px;
   opacity: 0;
   animation: opacity 1.2s forwards ease-in-out;
   animation-delay: 3.4s;
   display: flex;
   width: 100%;
   height: 100%;
   position: relative;
}

.about {
   width: 75%;
   max-width: 75%;
   height: 73.5vh;
}

@media (max-height: 875px) {
   .about {
      height: 70vh;
   }
}

@media (max-height: 830px) {
   .about {
      height: 65vh;
   }
}

@media (max-height: 755px) {
   .about {
      height: 58vh;
   }
}

@media (max-height: 655px) {
   .about {
      height: 45vh;
   }
}

.about h4 {
   padding-left: 5px;
}

.about p {
   overflow: auto;
   max-height: 72%;
   padding-left: 5px;
}

.about p::-webkit-scrollbar {
   width: 0.4em;
   height: 0.4em;
   background-color: transparent;
}

.about p::-webkit-scrollbar-thumb {
   background-color: rgba(255, 255, 255, 0.6);
   display: none;
   border-radius: 200px;
   transform: rotate(180deg);
}

.about p:hover::-webkit-scrollbar-thumb {
   display: block;
}

.about a,
.about a * {
   color: #00A0F0;
   text-decoration: none;
   font-weight: bold;
}

.about a:hover {
   text-decoration: underline;
   color: #00A0F0;
}

.about a:active {
   opacity: 0.8;
}

.language {
   animation: language 1s forwards ease-in-out;
   animation-delay: 3.4s;
}

.language,
.languagemenu {
   position: fixed;
   bottom: 0;
   right: -100px;
   width: 205px;
   background: rgba(255, 255, 255, 0.2);
   border: 3px solid rgba(255, 255, 255, 0.15);
   border-radius: 25px;
   max-height: 68%;
   margin-bottom: 22px;
   padding: 6px;
   transition: 0.5s;
   display: flex;
   flex-direction: column;
   align-items: center;
   gap: 10px;
   overflow-y: auto;
   transform: translate(0);
}

.languagemenu {
   width: 50px;
   padding: 3px;
   opacity: 0;
   right: 20px;
   transform: translateX(50px);
   pointer-events: none;
}

@keyframes language {
   0% {
      right: -20px;
   }

   100% {
      right: 22px;
   }
}

.language a,
.languagemenu button {
   width: 100%;
   background-color: rgb(255, 255, 255, 0.2);
   border-radius: 20px;
   text-align: center;
   padding: 3px 2px;
   transition: 0.2s;
   margin: 0;
   border: 3px solid rgba(255, 255, 255, 0.3);
   outline: 0;
   text-decoration: none;
   color: white;
}

.language a:hover,
.languagemenu button:hover {
   background-color: rgba(255, 255, 255, 0.4);
}

.language a:active {
   transform: translateY(2px);
}

.languagemenu button:active {
   scale: 1.1;
}

.links {
   display: flex;
   gap: 5px;
}

.links a {
   width: 50%;
   background-color: rgba(255, 255, 255, 0.25);
   color: white;
   text-decoration: none;
   border-radius: 30px;
   padding: 5px 3px;
   text-transform: capitalize;
   border: 3px solid rgba(255, 255, 255, 0.1);
   transition: 0.13s;
   text-align: center;
   font-size: 18px;
}

.links .mycv {
   width: 80px;
}

.links a:hover {
   background-color: rgba(255, 255, 255, 0.35);
}

.links a:active {
   background-color: rgba(255, 255, 255, 0.4);
   border-radius: 10px;
}

.content-banner {
   width: 100%;
   height: 220px;
   position: absolute;
   top: -100px;
   opacity: 0;
   left: 0;
   object-fit: cover;
   object-position: center;
   border-radius: 20px;
   animation: content-banner 1.2s forwards ease-in-out;
   animation-delay: 1.8s;
   box-shadow: 0 0 10px black;
   z-index: -20;
}

.content-banner-transition {
   width: 100%;
   height: 220px;
   position: absolute;
   top: -100px;
   opacity: 0;
   left: 0;
   object-fit: cover;
   object-position: center;
   border-radius: 20px;
   background-color: rgba(0, 0, 0, 0.3);
   animation: content-banner 1.2s forwards ease-in-out;
   animation-delay: 1.8s;
   z-index: -15;
}

@keyframes content-banner {
   0% {
      top: -100px;
      opacity: 0;
   }

   100% {
      top: 0;
      opacity: 1;
   }
}

@media (max-width:1000px) {
   .content {
      width: 95%;
      transform: translate(-50%, -52%);
   }

   .title {
      width: 84%;
      left: 130px;
   }

   @keyframes title {
      0% {
         top: -25px;
         opacity: 0;
      }

      100% {
         top: 20px;
         opacity: 1;
      }
   }

   .student img {
      top: -18px;
      width: 120px;
      height: 120px;
      left: 60px;
   }

   .student .bannerLogo {
      width: 150px;
      height: 150px;
   }

   .verify {
      top: 0;
      left: 55px;
   }

   .verify img {
      width: 25px;
      height: 25px;
      min-width: 25px;
      min-height: 25px;
      max-width: 25px;
      max-height: 25px;
   }

   .verify-about p {
      top: 20px;
      left: -12px;
   }

   .links {
      position: absolute;
      width: 119%;
      bottom: -185px;
      left: -130px;
   }

   .language {
      width: 140px;
   }

   @keyframes verify {
      0% {
         scale: 0;
         top: 95px;
         opacity: 0;
      }

      100% {
         scale: 1;
         top: 115px;
         opacity: 1;
      }
   }

   .verify-about p {
      top: -11px;
      left: 77px;
   }

   .verify-about {
      top: 0;
      left: -15px;
   }

   .verify img:hover~.verify-about {
      opacity: 1;
      left: 0;
   }

   .student img:hover~.verify .verify-about {
      opacity: 1;
      left: 0;
   }
}

@media (max-width:700px) {
   .title {
      left: 120px;
   }

   .title h1 {
      font-size: 26px;
   }

   .title h2 {
      font-size: 18px;
   }

   .links {
      left: -120px;
   }

   .language {
      opacity: 0;
      transform: translateX(50px);
      pointer-events: none;
   }

   .languagemenu {
      opacity: 1;
      transform: translateX(0);
      pointer-events: all;
   }

   .links {
      flex-wrap: wrap;
   }

   .links a,
   .links .mycv {
      width: 49%;
      padding: 2px 3px;
   }

   .student img {
      top: -16px;
      width: 110px;
      height: 110px;
   }

   .student .bannerLogo {
      width: 140px;
      height: 140px;
   }

   .verify {
      left: 45px;
   }

   @keyframes verify {
      0% {
         scale: 0;
         top: 80px;
         opacity: 0;
      }

      100% {
         scale: 1;
         top: 100px;
         opacity: 1;
      }
   }

   .verify img {
      width: 25px;
      height: 25px;
      min-width: 25px;
      min-height: 25px;
      max-width: 25px;
      max-height: 25px;
   }

   .other {
      margin-top: 225px;
   }

   .about {
      width: 91vw;
   }
}