@charset "UTF-8";
@keyframes rotate {
  from {
    transform: rotateX(0) rotateY(0);
  }
  to {
    transform: rotateX(360deg) rotateY(360deg);
  }
}
@keyframes formFadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes textGradient {
  0% {
    color: white;
  }
  100% {
    background-image: linear-gradient(45deg, rgb(0, 32, 91) 0%, rgb(186, 12, 47) 50%);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
  }
}
@keyframes textGradientReverse {
  0% {
    background-image: linear-gradient(45deg, rgb(0, 32, 91) 0%, rgb(186, 12, 47) 50%);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
  }
  100% {
    color: white;
  }
}
.accordeonActive {
  display: block !important;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background-color: #030304;
  color: white;
  font-size: 1.4rem;
  font-family: "kanit", sans-serif;
  cursor: url("../../cursor/Grey-Electric-Animated-cursor.png"), auto;
}

.web_container {
  width: 55%;
  margin: 0 auto;
  padding-top: 100px;
}
@media (max-width: 768px) {
  .web_container {
    width: 90%;
  }
}

.header {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  flex-wrap: nowrap;
  position: fixed;
  top: 20px;
  left: 0;
  right: 0;
  z-index: 100;
  width: 55%;
  min-height: 60px;
  margin: 0 auto;
  padding: 0 2rem;
  background: hsla(0, 0%, 100%, 0.12);
  backdrop-filter: blur(7.4px);
  -webkit-backdrop-filter: blur(7.4px);
  border: 1px solid hsla(0, 0%, 100%, 0.62);
  border-radius: 50px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease-in-out;
}
@media (max-width: 1024px) {
  .header {
    width: 70%;
  }
}
@media (max-width: 768px) {
  .header {
    width: 90%;
    top: 10px;
    padding: 10px;
  }
}
@media (max-width: 480px) {
  .header {
    width: 95%;
  }
}
.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row;
  flex-wrap: nowrap;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}
.header .title-container a {
  font-size: 2rem;
  font-weight: bold;
  color: white;
  text-decoration: none;
  cursor: url("../../../cursor/Grey-Electric-Animated-pointer.png"), auto;
  transition: color 0.3s ease-in-out;
  animation: textGradientReverse 0.3s ease forwards;
}
.header .title-container a:hover {
  animation: textGradient 0.3s ease forwards;
}
.header .main-navigation ul {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 2rem;
  list-style: none;
}
.header .main-navigation ul li a {
  font-size: 1.7rem;
  font-weight: bold;
  color: white;
  text-decoration: none;
  cursor: url("../../../cursor/Grey-Electric-Animated-pointer.png"), auto;
  animation: textGradientReverse 0.3s ease forwards;
  position: relative;
}
.header .main-navigation ul li a:hover {
  animation: textGradient 0.3s ease forwards;
}
.header .main-navigation ul li a .main-navigation-animation {
  transition: transform 0.3s ease-in-out;
  height: 2px;
  width: 100%;
  background: white;
  transform: scaleX(0);
  transform-origin: center;
}
.header .main-navigation ul li a:hover .main-navigation-animation {
  transform: scaleX(1);
}
@media (max-width: 768px) {
  .header .main-navigation {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    flex-wrap: nowrap;
    background: hsla(0, 0%, 100%, 0.12);
    backdrop-filter: blur(7.4px);
    -webkit-backdrop-filter: blur(7.4px);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    opacity: 0;
    visibility: hidden;
    transition: all 0.2s ease-in-out;
    z-index: 99;
  }
  .header .main-navigation.active {
    opacity: 1;
    visibility: visible;
  }
  .header .main-navigation ul {
    flex-direction: column;
    gap: 3rem;
  }
  .header .main-navigation ul li a {
    font-size: 2rem;
  }
  .header .main-navigation ul li a .main-navigation-animation {
    margin-top: 5px;
  }
}
.header .mobile-menu-toggle {
  display: none;
  cursor: url("../../../cursor/Grey-Electric-Animated-pointer.png"), auto;
  z-index: 100;
}
.header .mobile-menu-toggle span {
  transition: all 0.3s ease-in-out;
  display: block;
  width: 25px;
  height: 3px;
  background: white;
  margin: 5px 0;
}
@media (max-width: 768px) {
  .header .mobile-menu-toggle {
    display: block;
  }
  .header .mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  .header .mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
  }
  .header .mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
  }
}

.presentation {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-direction: row;
  flex-wrap: nowrap;
  padding: 100px 0;
}
.presentation .mainPresentation,
.presentation .graphicPresentation {
  width: 50%;
}
@media (max-width: 1204px) {
  .presentation .mainPresentation,
  .presentation .graphicPresentation {
    width: 100%;
    margin-bottom: 75px;
  }
}
.presentation .mainPresentation .presentation-name {
  text-transform: uppercase;
  margin: 0;
  background-image: linear-gradient(45deg, rgb(0, 32, 91) 0%, rgb(186, 12, 47) 50%);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}
@media (max-width: 768px) {
  .presentation .mainPresentation .presentation-name {
    text-align: center;
  }
}
.presentation .mainPresentation h2 {
  margin: 0;
  font-size: 1.6rem;
  color: white;
}
@media (max-width: 768px) {
  .presentation .mainPresentation h2 {
    text-align: center;
  }
}
.presentation .graphicPresentation .cube-scene {
  width: 200px;
  height: 200px;
  perspective: 800px;
  margin: 0 auto;
}
.presentation .graphicPresentation .cube-scene .cube {
  width: 100%;
  height: 100%;
  position: relative;
  transform-style: preserve-3d;
  animation: rotate 15s infinite linear;
}
.presentation .graphicPresentation .cube-scene .cube .cube-face {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  flex-wrap: nowrap;
  position: absolute;
  width: 200px;
  height: 200px;
  border: 2px solid black;
  font-size: 20px;
  font-weight: bold;
  color: red;
  background: rgba(255, 255, 255, 0.7);
  backface-visibility: visible;
  box-sizing: border-box;
}
.presentation .graphicPresentation .cube-scene .cube .cube-face-front {
  transform: rotateY(0deg) translateZ(100px);
}
.presentation .graphicPresentation .cube-scene .cube .cube-face-right {
  transform: rotateY(90deg) translateZ(100px);
}
.presentation .graphicPresentation .cube-scene .cube .cube-face-back {
  transform: rotateY(180deg) translateZ(100px);
}
.presentation .graphicPresentation .cube-scene .cube .cube-face-left {
  transform: rotateY(-90deg) translateZ(100px);
}
.presentation .graphicPresentation .cube-scene .cube .cube-face-top {
  transform: rotateX(90deg) translateZ(100px);
}
.presentation .graphicPresentation .cube-scene .cube .cube-face-bottom {
  transform: rotateX(-90deg) translateZ(100px);
}
@media (max-width: 1204px) {
  .presentation {
    flex-direction: column;
    padding: 0;
    text-align: center;
  }
}

.experiences {
  margin-bottom: 2rem;
}
.experiences h2 {
  text-align: center;
  background-image: linear-gradient(45deg, rgb(0, 32, 91) 0%, rgb(186, 12, 47) 50%);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}
.experiences .experiences-list .experiences-list-item {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  flex-wrap: nowrap;
  width: 100%;
}
.experiences .experiences-list .experiences-list-item .experiences-list-item-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row;
  flex-wrap: nowrap;
  width: 100%;
  margin: 1rem;
  padding: 1rem;
  border-radius: 5px;
  background: linear-gradient(45deg, rgb(0, 32, 91) 0%, rgb(186, 12, 47) 50%);
  cursor: url("../../../cursor/Grey-Electric-Animated-pointer.png"), auto;
  transition: all 0.3s ease-in-out;
}
.experiences .experiences-list .experiences-list-item .experiences-list-item-title h3 {
  margin: 0;
  color: white;
}
.experiences .experiences-list .experiences-list-item .experiences-list-item-title h3 span {
  font-size: 1.3rem;
}
.experiences .experiences-list .experiences-list-item .experiences-list-item-title .item-title-info {
  width: 50%;
  text-align: right;
}
.experiences .experiences-list .experiences-list-item .experiences-list-item-title .item-title-info .date {
  margin-right: 30%;
  color: white;
}
.experiences .experiences-list .experiences-list-item .experiences-list-item-title .item-title-info .accorderon-opening-state {
  margin-right: 1rem;
  color: white;
}
.experiences .experiences-list .experiences-list-item .experiences-list-item-content {
  max-height: 0;
  width: 100%;
  overflow: hidden;
  padding: 0 1.5rem;
  border-radius: 5px;
  transition: all 0.3s ease-in-out²;
}
.experiences .experiences-list .experiences-list-item .experiences-list-item-content.accordeonActive {
  max-height: 1000px;
  padding: 1.5rem 1rem;
  background-color: rgb(0, 32, 91);
}
.experiences .experiences-list .experiences-list-item .experiences-list-item-content .item-tag {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: row;
  flex-wrap: nowrap;
  margin: 1rem 0;
}
.experiences .experiences-list .experiences-list-item .experiences-list-item-content .item-tag .tag-btn {
  margin: 0 1rem 0 0;
  padding: 0.7rem 1.2rem;
  background: linear-gradient(45deg, rgb(0, 32, 91) 0%, rgb(186, 12, 47) 50%);
  border-radius: 15px;
  color: white;
}

.contact-container {
  width: 100%;
  max-width: 800px;
  margin: 2rem auto;
}

.contact-title {
  text-align: center;
  background-image: linear-gradient(45deg, rgb(0, 32, 91) 0%, rgb(186, 12, 47) 50%);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  margin-bottom: 2rem;
  font-size: 2.5rem;
}

.contact-form-wrapper {
  background: linear-gradient(135deg, #f5f7fa 0%, #ffffff 100%);
  border-radius: 12px;
  padding: 2rem;
  border: none;
  animation: formFadeIn 0.6s ease-out forwards;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  opacity: 0;
  transform: translateY(20px);
  animation: formFadeIn 0.5s ease-out forwards;
}
.form-group:nth-child(1) {
  animation-delay: 0.1s;
}
.form-group:nth-child(2) {
  animation-delay: 0.2s;
}
.form-group:nth-child(3) {
  animation-delay: 0.3s;
}
.form-group:nth-child(4) {
  animation-delay: 0.4s;
}

.form-label {
  font-size: 1.2rem;
  color: #34495e;
  font-weight: 500;
  margin-bottom: 0.3rem;
}
.form-label.required:after {
  content: " *";
  color: #e74c3c;
}

.form-input,
.form-textarea {
  padding: 0.8rem 1rem;
  border: 1px solid #bdc3c7;
  border-radius: 8px;
  font-size: 1rem;
  transition: all 0.3s ease;
  width: 100%;
  background-color: #f8f9fa;
  box-sizing: border-box;
}
.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: #3498db;
  box-shadow: 0 0 0 2px rgba(52, 152, 219, 0.2);
  background-color: #ffffff;
}

.form-textarea {
  min-height: 150px;
  resize: vertical;
  padding: 1rem;
}

.form-submit-btn {
  background: linear-gradient(45deg, rgb(0, 32, 91) 0%, rgb(186, 12, 47) 50%);
  color: white;
  border: none;
  padding: 1rem 2rem;
  font-size: 1rem;
  border-radius: 8px;
  cursor: url("../../../cursor/Grey-Electric-Animated-pointer.png"), auto;
  transition: all 0.3s ease;
  align-self: flex-start;
  margin-top: 1rem;
  font-weight: 600;
  letter-spacing: 0.5px;
}
.form-submit-btn:hover {
  background: linear-gradient(45deg, rgb(186, 12, 47) 0%, rgb(0, 32, 91) 50%);
  box-shadow: 0 5px 15px rgba(41, 128, 185, 0.4);
  transform: translateY(-2px);
}
.form-submit-btn:active {
  transform: translateY(0);
}

.form-errors {
  color: #e74c3c;
  font-size: 0.875rem;
  margin-top: 0.25rem;
}

.form-flash-success {
  background-color: #27ae60;
  color: white;
  padding: 0.6rem;
  text-align: center;
}

@media (max-width: 768px) {
  .contact-container {
    padding: 1rem;
    margin: 1rem auto;
  }
  .contact-form-wrapper {
    padding: 1.5rem;
  }
  .contact-title {
    font-size: 2rem;
    margin-bottom: 1.5rem;
  }
  .form-submit-btn {
    width: 100%;
    text-align: center;
  }
}

/*# sourceMappingURL=style.css.map */
