/*!*************************************************************************************************************************************************************!*\
  !*** css ./node_modules/@symfony/webpack-encore/node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[1].oneOf[1].use[1]!./assets/styles/origin_styles.css ***!
  \*************************************************************************************************************************************************************/
.origin_navbar {
  position: sticky;
  z-index: 2;
  top: 0;
  display: flex;
  justify-content: space-around;
  width: 100vw;
  height: 40px;
}
.origin_navbar .burgerIcon {
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 30px;
  left: 10px;
  visibility: hidden;
  display: none;
  width: 100%;
}
.origin_navbar .burgerIcon img {
  height: 30px;
  width: 30px;
}
.origin_navbar .burgerIcon img:hover {
  border: solid #DAE3F3 2px;
  border-radius: 25px;
  justify-content: center;
  align-items: center;
  width: 30px;
  cursor: pointer;
}
.origin_navbar .menu {
  width: 100vw;
  height: 40px;
  display: flex;
  justify-content: space-around;
  font-size: 18px;
}
.origin_navbar .menu a {
  color: white;
}
.origin_navbar .menu div {
  display: flex;
  align-self: center;
  flex-direction: row;
  gap: 5dvh;
  margin: 10px;
  font-family: "Orbitron", sans-serif;
  font-family: "Russo One", sans-serif;
}
.origin_navbar .menu div .nav-left {
  justify-content: space-around;
  padding-left: 50px;
}
.origin_navbar .menu div .title {
  display: flex;
  justify-content: center;
  width: 80px;
  cursor: pointer;
}
.origin_navbar .menu div .home {
  width: 10px;
}
.origin_navbar .menu div .home img {
  height: 30px;
}
.origin_navbar .menu div .home img:hover {
  height: 35px;
}
.origin_navbar .menu div .title:hover {
  font-size: 20px;
}

.origin-name-card {
  position: relative;
  color: white;
  width: 100vw;
  height: 500px;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.origin-name-card .origin-nojump {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 0;
}
.origin-name-card .origin-bg-img {
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  width: 100vw;
  z-index: -1;
}
.origin-name-card .origin-bg-img .origin-bannerImg {
  min-width: 120vw;
  height: 150vh;
  animation: shadefilter 5s infinite alternate ease;
}
.origin-name-card .origin-front-card {
  position: relative;
  z-index: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100vw;
}
.origin-name-card .origin-front-card .origin-name-title {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: start;
  font-family: "Jost", sans-serif;
  padding-left: 10%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 80%;
  height: 80%;
}
.origin-name-card .origin-front-card .origin-name-title h1 {
  font-size: 4rem;
}
.origin-name-card .origin-front-card .origin-name-title .origin-name {
  display: flex;
  justify-content: flex-start;
  width: 100%;
  font-style: italic;
  font-size: 2rem;
}
.origin-name-card .origin-front-card .origin-span-top, .origin-name-card .origin-front-card .origin-span-bot {
  width: 80%;
  height: 100px;
  -webkit-clip-path: polygon(1% 0%, 0% 10%, 0% 95%, 1.5% 20%, 2.25% 10%, 50% 10%, 50.5% 7%, 50.5% 3%, 50% 0%);
          clip-path: polygon(1% 0%, 0% 10%, 0% 95%, 1.5% 20%, 2.25% 10%, 50% 10%, 50.5% 7%, 50.5% 3%, 50% 0%);
  overflow: hidden;
}
.origin-name-card .origin-front-card .origin-span-top:after {
  content: "";
  transform: translateX(100%);
  width: 100%;
  height: 220px;
  position: absolute;
  z-index: 1;
  animation: slide 2s infinite;
  top: 0;
  background: -webkit-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.8) 50%, rgba(128, 186, 232, 0) 99%, rgba(125, 185, 232, 0) 100%);
}
.origin-name-card .origin-front-card .origin-span-bot {
  transform: rotate(180deg);
}
.origin-name-card .origin-front-card .origin-span-bot:after {
  content: "";
  transform: translateX(100%);
  width: 100%;
  height: 220px;
  position: absolute;
  z-index: 1;
  animation: slide 2s infinite;
  animation-delay: 3s;
  background: -webkit-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.8) 50%, rgba(128, 186, 232, 0) 99%, rgba(125, 185, 232, 0) 100%);
}

@keyframes slide {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(100%);
  }
}
@keyframes shadefilter {
  0% {
    filter: brightness(40%);
  }
  100% {
    filter: brightness(10%);
  }
}
.origin_contactForm {
  display: flex;
  width: 35vw;
  min-width: 300px;
  flex-direction: column;
  gap: 10px;
  padding: 20px 10px 20px 10px;
  border-radius: 5px;
  border-right: solid 3px;
}
.origin_contactForm input {
  font-size: 1.1rem;
  border-radius: 3px;
}
.origin_contactForm #email, .origin_contactForm #subject {
  height: 30px;
}
.origin_contactForm textarea {
  font-size: 1.1rem;
  font-family: "Roboto", sans-serif;
  border-radius: 3px;
  min-height: 100px;
  padding: 5px;
}
.origin_contactForm input[type=submit] {
  width: 200px;
  align-self: center;
  background-color: rgb(222, 222, 222);
  color: rgb(0, 0, 0);
}
.origin_contactForm input[type=submit]:active {
  background-color: #072A5D;
}

.details h2 {
  margin-top: 25px;
  width: 90vw;
  font-family: black;
  font-size: xx-large;
  border: solid 1px black;
  border-left: solid 5px;
  border-bottom: none;
  border-right: none;
  border-radius: 10px;
  padding: 10px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  text-align: center;
}

@media (orientation: portrait) or (max-width: 1100px) {
  .origin_navbar {
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .origin_navbar .burgerIcon {
    display: flex;
    visibility: visible;
    z-index: 4;
  }
  .origin_navbar .menu {
    position: absolute;
    top: 30px;
    width: 100vw;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: auto;
    display: none;
  }
  .origin_navbar .menu .nav-left, .origin_navbar .menu .nav-right {
    width: 100vw;
    flex-direction: column;
    justify-content: center;
  }
  .origin_navbar .menu .nav-left .title, .origin_navbar .menu .nav-right .title {
    border-bottom: #DAE3F3 solid 1px;
    height: 30px;
  }
  .origin_navbar .menu .nav-left .home, .origin_navbar .menu .nav-right .home {
    border: none;
  }
  .origin_navbar .menu .nav-right {
    margin-top: 5dvh;
  }
  .origin_navbar .display {
    display: flex;
    flex-direction: column;
  }
  .origin_navbar .menuHomepage {
    visibility: hidden;
    position: absolute;
    display: flex;
    flex-direction: column;
    height: 100%;
    top: 0;
    width: 15%;
    z-index: 2;
    left: -500px;
  }
  .origin-name-card {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .origin-name-card .origin-bg-img {
    animation: movebg 8s infinite alternate;
  }
  .origin-name-card h1 {
    font-size: 2rem;
  }
  .origin-name-card .origin-name {
    font-style: italic;
    font-size: 1rem;
  }
}
@media (orientation: portrait) or (max-width: 1100px) {
  .scribble_navbar {
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: space-around;
  }
  .scribble_navbar .sm-navbar {
    padding: "0px 20px 0 20px";
    display: flex;
    flex-direction: row;
    justify-content: space-between;
  }
  .scribble_navbar .sm-navbar .burgerIcon {
    align-self: center;
    width: 30px;
    height: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 2px;
    gap: 2px;
    visibility: visible;
    z-index: 8;
    border-radius: 5px;
    transition: 0.5s;
  }
  .scribble_navbar .sm-navbar .burgerIcon span {
    width: 100%;
    height: 3px;
    background-color: black;
  }
  .scribble_navbar .sm-navbar .burgerIcon:hover {
    border: white 2px solid;
    cursor: pointer;
  }
  .scribble_navbar .sm-navbar .sm-logo {
    display: block;
    visibility: visible;
    right: 50px;
    top: 50px;
  }
  .scribble_navbar .sm-navbar .sm-logo div {
    position: relative;
    width: auto;
  }
  .scribble_navbar .sm-navbar .sm-logo div .logoImg {
    max-height: 100px;
  }
  .scribble_navbar .sm-navbar .sm-logo div .icon {
    position: absolute;
  }
  .scribble_navbar .sm-navbar .bgrToCross {
    position: relative;
    gap: 0;
    transition: 0.5s;
  }
  .scribble_navbar .sm-navbar .bgrToCross .s-1 {
    position: absolute;
    animation: upperRotate 0.2s forwards ease-in;
  }
  .scribble_navbar .sm-navbar .bgrToCross .s-2 {
    visibility: hidden;
    display: none;
  }
  .scribble_navbar .sm-navbar .bgrToCross .s-3 {
    position: absolute;
    animation: lowerRotate 0.2s forwards ease-in;
  }
  .scribble_navbar .sm-menu {
    position: fixed;
    top: 0;
    left: 0;
    padding-top: 10dvh;
    z-index: 4;
    width: 70vw;
    display: flex;
    align-items: center;
    text-align: left;
    height: 100dvh;
    visibility: visible;
    transition: 1s;
  }
  .scribble_navbar .sm-menu .sm-tabs {
    display: flex;
    flex-direction: column;
  }
  .scribble_navbar .sm-menu div {
    gap: 10dvh;
  }
  .scribble_navbar .sm-menu .nav-left, .scribble_navbar .sm-menu .nav-right {
    width: 80%;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    padding: 0;
  }
  .scribble_navbar .sm-menu .nav-left .title, .scribble_navbar .sm-menu .nav-right .title {
    justify-self: start;
    width: 100%;
    font-size: 1.5rem;
    height: 30px;
  }
  .scribble_navbar .sm-menu .nav-left .title:hover, .scribble_navbar .sm-menu .nav-right .title:hover {
    text-decoration: none;
    font-size: 1.5rem;
  }
  .scribble_navbar .sm-menu .nav-left .home, .scribble_navbar .sm-menu .nav-right .home {
    border: none;
  }
  .scribble_navbar .sm-menu .nav-left {
    justify-content: flex-end;
    margin-bottom: 10dvh;
  }
  .scribble_navbar .sm-menu .nav-right {
    justify-content: flex-start;
  }
  .scribble_navbar .sm-menu div {
    align-self: auto;
  }
  .scribble_navbar .sm-noshow {
    left: -1100px;
    visibility: hidden;
  }
  .scribble_navbar .display {
    display: flex;
    flex-direction: column;
  }
  .preview {
    width: 100px;
    height: auto;
  }
  .container .contact .contactLinks .links .networks {
    font-size: 0.4em;
  }
  .logo {
    visibility: hidden;
    display: none;
  }
  .font-size_resp {
    font-size: 8dvw;
  }
}/*# sourceMappingURL=origin_styles.css.map */

/*# sourceMappingURL=data:application/json;charset=utf-8;base64,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QUNJO0VDU3RCO0VEUGtCO0lBQ0k7RUNTdEI7RURMVTtJQUNJO0lBQ0E7SUFnQkE7RUNMZDtFRFZjO0lBQ0k7SUFDQTtFQ1lsQjtFRFZjO0lBQ0k7SUFDQTtFQ1lsQjtFRFZjO0lBQ0k7SUFDQTtFQ1lsQjtFREpNO0lBQ0k7SUFDQTtJQUNBO0lBQ0E7SUFDQTtJQUNBO0lBQ0E7SUFDQTtJQUNBO0lBQ0E7SUFDQTtJQUlBO0VDTVY7RURMVTtJQUNJO0lBQ0E7RUNPZDtFRExVO0lBQ0k7RUNPZDtFRExVO0lBQ0k7SUFDQTtJQUNBO0lBQ0E7SUFjQTtFQ05kO0VEUGM7SUFDSTtJQUNBO0lBQ0E7SUFDQTtFQ1NsQjtFRFBjO0lBQ0k7SUFDQTtFQ1NsQjtFRFBjO0lBQ0k7RUNTbEI7RURMVTtJQUNJO0lBQ0E7RUNPZDtFRExVO0lBQ0k7RUNPZDtFRExVO0lBQ0k7RUNPZDtFREhNO0lBQ0k7SUFDQTtFQ0tWO0VESE07SUFDSTtJQUNBO0VDS1Y7RURGRTtJQUNJO0lBQ0E7RUNJTjtFREZFO0lBQ1E7RUNJVjtFREZFO0lBQ0k7SUFDQTtFQ0lOO0VERkU7SUFDSTtFQ0lOO0FBQ0YsOEMiLCJzb3VyY2VzIjpbIndlYnBhY2s6Ly8vLi9hc3NldHMvc3R5bGVzL29yaWdpbl9zdHlsZXMuc2NzcyIsIndlYnBhY2s6Ly8vLi9hc3NldHMvc3R5bGVzL29yaWdpbl9zdHlsZXMuY3NzIl0sIm5hbWVzIjpbXSwic291cmNlUm9vdCI6IiJ9*/