@import url("BricolageGrotesque.css");
:root {
  --eb-blue: #a9f5ff;
  --eb-green: #b8ffa9;
  --eb-yellow: #fff8a9;
  --eb-orange: #ffcb9d;
  --eb-pink: #fec3ff;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  height: 100vh;
  background-color: var(--eb-blue);
}

body.index,
body.contact {
  background-color: var(--eb-blue);
}
body.index header a,
body.contact header a {
  color: var(--eb-blue);
}

body.photos {
  background-color: var(--eb-yellow);
}
body.photos header a {
  color: var(--eb-yellow);
}

body.videos {
  background-color: var(--eb-pink);
}
body.videos header a {
  color: var(--eb-pink);
}

body.graphisme {
  background-color: var(--eb-green);
}
body.graphisme header a {
  color: var(--eb-green);
}

body.pro {
  background-color: var(--eb-orange);
}
body.pro header a {
  color: var(--eb-orange);
}

div.overlay {
  background-color: black;
  width: 100vw;
  height: 100vh;
  position: absolute;
  top: 0;
  animation: sweepTopOverlay1 0.65s cubic-bezier(0.165, 0.84, 0.44, 1);
  animation-delay: 1s;
  animation-fill-mode: forwards;
  overflow: hidden;
  z-index: 999;
}
div.overlay p {
  position: absolute;
  color: white;
  font-size: 4rem;
  width: 100vw;
  margin: 0 auto;
  font-family: "Bricolage Grotesque";
  font-weight: bold;
  position: absolute;
  top: 50vh;
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
          clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
  visibility: hidden;
}
div.overlay.active {
  animation: sweepTopOverlay2 0.75s cubic-bezier(0.165, 0.84, 0.44, 1);
}
div.overlay.active p {
  visibility: hidden;
}

header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 4rem;
  padding: 2rem 4rem;
  width: 100vw;
  position: relative;
  background-color: black;
}
header .header-left-container a {
  color: var(--eb-blue);
  font-family: "Bricolage Grotesque";
  text-decoration: none;
  font-size: 1.5rem;
}
header ul {
  list-style-type: none;
  display: flex;
  gap: 2rem;
}
header ul li {
  padding: 1rem;
}
header ul li a {
  color: var(--eb-blue);
  font-family: "Bricolage Grotesque";
  text-decoration: none;
  font-size: 1.5rem;
  font-weight: 700;
}
header ul li a i {
  display: none !important;
}
header ul li a span {
  display: block;
}

body.index section.index-section1 {
  height: calc(100vh - 128px);
  display: flex;
  flex-direction: row;
}
body.index section.index-section1 div.index-section1-texts {
  width: 50vw;
  display: flex;
  justify-content: center;
  flex-direction: column;
  gap: 2rem;
  height: calc(100vh - 128px);
  margin-left: 2rem;
}
body.index section.index-section1 div.index-section1-texts h1 {
  font-size: 6rem;
  width: 100vw;
  font-family: "Bricolage Grotesque";
  font-weight: bold;
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
          clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
  visibility: hidden;
}
body.index section.index-section1 div.index-section1-texts p {
  font-size: 1.25rem;
  width: 100vw;
  font-family: "Bricolage Grotesque";
  font-weight: normal;
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
          clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
  visibility: hidden;
}
body.index section.index-section1 div.index-section1-texts a.link {
  padding: 1rem 2rem;
  text-decoration: none;
  font-family: "Bricolage Grotesque";
  font-size: 1.5rem;
  border-radius: 5px;
  color: black;
  width: -moz-max-content;
  width: max-content;
  transition: all 0.25s cubic-bezier(0.165, 0.84, 0.44, 1);
  display: flex;
  gap: 0.5rem;
  align-items: center;
  border: 1px solid black;
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
          clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
  visibility: hidden;
}
body.index section.index-section1 div.index-section1-texts a.link:hover {
  background-color: black;
  color: var(--eb-blue);
}
body.index section.index-section1 div.index-section1-texts span.warning {
  font-size: 1rem;
  color: white;
  visibility: hidden;
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
          clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
  font-family: "Bricolage Grotesque";
  border: solid 1px #d23535;
  background-color: rgba(210, 53, 53, 0.5176470588);
  border-radius: 0.5rem;
  padding: 0.5rem 1rem;
  width: -moz-max-content;
  width: max-content;
}
body.index section.index-section1 div.index-section1-images {
  width: 50vw;
  display: flex;
  align-items: flex-end;
  margin-bottom: -1px;
}
body.index section.index-section1 div.index-section1-images img {
  width: 95%;
}
body.index section.index-section2 {
  display: flex;
  justify-content: space-between;
  height: 4rem;
  width: 100vw;
  background-color: black;
  position: absolute;
  bottom: 0;
  margin-inline: auto;
  -webkit-mask-image: linear-gradient(to right, rgb(0, 0, 0), rgb(0, 0, 0) 20%, rgb(0, 0, 0) 80%, rgb(0, 0, 0));
          mask-image: linear-gradient(to right, rgb(0, 0, 0), rgb(0, 0, 0) 20%, rgb(0, 0, 0) 80%, rgb(0, 0, 0));
}
body.index section.index-section2 .wrapper {
  height: 100%;
  display: flex;
  align-items: center;
}
body.index section.index-section2 .item {
  width: 400px;
  height: -moz-max-content;
  height: max-content;
  position: absolute;
  left: 100%;
  animation-name: scrollLeft;
  animation-duration: 30s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
  display: flex;
  justify-content: center;
  align-items: center;
}
body.index section.index-section2 .item p {
  color: var(--eb-blue);
  font-family: "Bricolage Grotesque";
  font-size: 1.5rem;
  font-weight: bold;
  padding: 1rem;
  text-transform: uppercase;
  font-style: italic;
}
body.index section.index-section2 .item.item1 {
  animation-delay: -25.7142857143s;
}
body.index section.index-section2 .item.item2 {
  animation-delay: -21.4285714286s;
}
body.index section.index-section2 .item.item3 {
  animation-delay: -17.1428571429s;
}
body.index section.index-section2 .item.item4 {
  animation-delay: -12.8571428571s;
}
body.index section.index-section2 .item.item5 {
  animation-delay: -8.5714285714s;
}
body.index section.index-section2 .item.item6 {
  animation-delay: -4.2857142857s;
}
body.index section.index-section2 .item.item7 {
  animation-delay: 0s;
}

body.photos {
  max-height: 100vh;
}
body.photos ::-webkit-scrollbar {
  -webkit-appearance: none;
  width: 4px;
}
body.photos ::-webkit-scrollbar-thumb {
  padding-top: 4px;
  position: absolute;
  top: 4px;
  border-radius: 8px;
  background-color: rgba(0, 0, 0, 0.5);
  box-shadow: 0 0 1px rgba(255, 255, 255, 0.5);
}
body.photos ::-webkit-scrollbar-thumb:hover {
  background-color: rgba(0, 0, 0, 0.7);
  cursor: ew-resize;
}
body.photos main {
  height: calc(100vh - 128px);
}
body.photos .gallery-photos {
  display: flex;
  flex-direction: column;
  height: calc(100vh - 80px);
  margin-left: 1rem;
  margin-right: 1rem;
  overflow-x: scroll;
  overflow-y: hidden;
  white-space: nowrap;
  scroll-behavior: smooth;
}
body.photos .gallery-photos .gallery-row1,
body.photos .gallery-photos .gallery-row2 {
  display: flex;
  margin-top: 1rem;
  gap: 2rem;
  height: calc(50% - 1.5rem);
}
body.photos .gallery-photos .gallery-row1 .gallery-row1-image,
body.photos .gallery-photos .gallery-row1 .gallery-row2-image,
body.photos .gallery-photos .gallery-row2 .gallery-row1-image,
body.photos .gallery-photos .gallery-row2 .gallery-row2-image {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
          clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
}
body.photos .gallery-photos .gallery-row1 .gallery-row1-image img,
body.photos .gallery-photos .gallery-row1 .gallery-row2-image img,
body.photos .gallery-photos .gallery-row2 .gallery-row1-image img,
body.photos .gallery-photos .gallery-row2 .gallery-row2-image img {
  height: 100%;
  visibility: hidden;
}
body.photos .gallery-photos .gallery-row1 .gallery-row1-image img:hover,
body.photos .gallery-photos .gallery-row1 .gallery-row2-image img:hover,
body.photos .gallery-photos .gallery-row2 .gallery-row1-image img:hover,
body.photos .gallery-photos .gallery-row2 .gallery-row2-image img:hover {
  cursor: pointer;
}
body.photos .photo-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease-in-out;
  z-index: 1000;
}
body.photos .photo-overlay.show {
  opacity: 1;
  visibility: visible;
}
body.photos .photo-overlay.hide {
  opacity: 0;
  visibility: hidden;
}
body.photos .photo-overlay-content {
  display: flex;
  align-items: center;
  width: 90%;
  padding: 20px;
  height: 90%;
  border-radius: 10px;
  position: relative;
  gap: 2rem;
  transform: scale(0.95);
  transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
  font-family: "Bricolage Grotesque";
}
.show body.photos .photo-overlay-content {
  transform: scale(1);
  opacity: 1;
}
.hide body.photos .photo-overlay-content {
  transform: scale(0.95);
  opacity: 0;
}
body.photos .photo-overlay-image {
  display: flex;
  align-items: center;
  max-width: 50%;
}
body.photos .photo-overlay-image img {
  max-width: 90%;
}
body.photos .photo-overlay-info {
  flex: 1;
  padding: 20px;
  color: white;
}
body.photos .photo-overlay-info h2.photo-title {
  font-size: 3rem;
  margin-bottom: 1rem;
}
body.photos .photo-overlay-info p.photo-description {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}
body.photos .photo-overlay-info ul {
  list-style: none;
  padding: 0;
}
body.photos .photo-overlay-info .close-text {
  margin-top: 2rem;
  color: rgba(255, 255, 255, 0.5);
}
body.photos .hidden {
  opacity: 0;
  visibility: hidden;
}

body.graphisme {
  max-height: 100vh;
}
body.graphisme div.content {
  height: calc(100vh - 128px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
body.graphisme div.content h3 {
  font-size: 2rem;
  margin-bottom: 1rem;
  font-family: "Bricolage Grotesque";
}

body.videos {
  max-height: 100vh;
}
body.videos ::-webkit-scrollbar {
  -webkit-appearance: none;
  width: 4px;
}
body.videos ::-webkit-scrollbar-thumb {
  padding-top: 4px;
  position: absolute;
  top: 4px;
  border-radius: 8px;
  background-color: rgba(0, 0, 0, 0.5);
  box-shadow: 0 0 1px rgba(255, 255, 255, 0.5);
}
body.videos ::-webkit-scrollbar-thumb:hover {
  background-color: rgba(0, 0, 0, 0.7);
  cursor: ew-resize;
}
body.videos main {
  height: calc(100vh - 128px);
}
body.videos .gallery-videos {
  display: flex;
  flex-direction: column;
  height: calc(100vh - 80px);
  margin-left: 1rem;
  margin-right: 1rem;
  overflow-x: scroll;
  overflow-y: hidden;
  white-space: nowrap;
  scroll-behavior: smooth;
}
body.videos .gallery-videos .gallery-row1,
body.videos .gallery-videos .gallery-row2 {
  display: flex;
  margin-top: 1rem;
  gap: 2rem;
  height: calc(50% - 1.5rem);
}
body.videos .gallery-videos .gallery-row1 .gallery-row1-video,
body.videos .gallery-videos .gallery-row1 .gallery-row2-video,
body.videos .gallery-videos .gallery-row2 .gallery-row1-video,
body.videos .gallery-videos .gallery-row2 .gallery-row2-video {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
          clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
}
body.videos .gallery-videos .gallery-row1 .gallery-row1-video img,
body.videos .gallery-videos .gallery-row1 .gallery-row2-video img,
body.videos .gallery-videos .gallery-row2 .gallery-row1-video img,
body.videos .gallery-videos .gallery-row2 .gallery-row2-video img {
  height: 100%;
  visibility: hidden;
}
body.videos .gallery-videos .gallery-row1 .gallery-row1-video img:hover,
body.videos .gallery-videos .gallery-row1 .gallery-row2-video img:hover,
body.videos .gallery-videos .gallery-row2 .gallery-row1-video img:hover,
body.videos .gallery-videos .gallery-row2 .gallery-row2-video img:hover {
  cursor: pointer;
}
body.videos .video-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease-in-out;
  z-index: 1000;
  overflow-y: scroll;
}
body.videos .video-overlay ::-webkit-scrollbar {
  -webkit-appearance: none;
  width: 4px;
}
body.videos .video-overlay ::-webkit-scrollbar-thumb {
  padding-right: 4px;
  position: absolute;
  right: 4px;
  border-radius: 8px;
  background-color: rgba(255, 255, 255, 0.5);
  box-shadow: 0 0 1px rgba(255, 255, 255, 0.5);
}
body.videos .video-overlay ::-webkit-scrollbar-thumb:hover {
  background-color: rgba(255, 255, 255, 0.7);
}
body.videos .video-overlay.show {
  opacity: 1;
  visibility: visible;
}
body.videos .video-overlay.hide {
  opacity: 0;
  visibility: hidden;
}
body.videos .video-overlay-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 90%;
  padding: 20px;
  height: 90%;
  border-radius: 10px;
  position: relative;
  gap: 2rem;
  transform: scale(0.95);
  transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
  font-family: "Bricolage Grotesque";
}
.show body.videos .video-overlay-content {
  transform: scale(1);
  opacity: 1;
}
.hide body.videos .video-overlay-content {
  transform: scale(0.95);
  opacity: 0;
}
body.videos .video-overlay-video {
  display: flex;
  align-items: center;
  max-width: 50%;
}
body.videos .video-overlay-video iframe {
  max-width: 90%;
}
body.videos .video-overlay-info {
  flex: 1;
  padding: 20px;
  color: white;
}
body.videos .video-overlay-info h2.video-title {
  font-size: 3rem;
  margin-bottom: 1rem;
}
body.videos .video-overlay-info p.video-description {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}
body.videos .video-overlay-info ul {
  list-style: none;
  padding: 0;
}
body.videos .video-overlay-info .close-text {
  margin-top: 2rem;
  color: rgba(255, 255, 255, 0.5);
}
body.videos .hidden {
  opacity: 0;
  visibility: hidden;
}

body.contact {
  max-height: 100vh;
}
body.contact .contact-container {
  display: flex;
  justify-content: center;
  height: calc(100vh - 64px);
}
body.contact .contact-container div.contact-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  gap: 1rem;
  width: 50%;
  padding-left: 2rem;
}
body.contact .contact-container div.contact-left h1 {
  font-size: 3rem;
  font-family: "Bricolage Grotesque";
  margin-top: 1rem;
}
body.contact .contact-container div.contact-left hr {
  width: 80%;
  border: solid 1px black;
}
body.contact .contact-container div.contact-left .contact-btns {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1rem;
}
body.contact .contact-container div.contact-left a.contact-btn {
  padding: 1rem 2rem;
  text-decoration: none;
  font-family: "Bricolage Grotesque";
  font-size: 1.5rem;
  border-radius: 5px;
  color: black;
  width: -moz-max-content;
  width: max-content;
  transition: all 0.25s cubic-bezier(0.165, 0.84, 0.44, 1);
  display: flex;
  gap: 0.5rem;
  align-items: center;
}
body.contact .contact-container div.contact-left a.contact-btn:hover {
  background-color: black;
  color: var(--eb-blue);
}
body.contact .contact-container div.contact-left a.contact-btn.cv-btn {
  background-color: black;
  color: var(--eb-blue);
  font-weight: bolder;
}
body.contact .contact-container div.contact-right {
  width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-right: 2rem;
}
body.contact .contact-container div.contact-right h2 {
  font-size: 2rem;
  font-family: "Bricolage Grotesque";
  margin-bottom: 2rem;
}
body.contact .contact-container div.contact-right form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
body.contact .contact-container div.contact-right form div {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
body.contact .contact-container div.contact-right form div label {
  font-family: "Bricolage Grotesque";
  font-size: 1.25rem;
}
body.contact .contact-container div.contact-right form div input,
body.contact .contact-container div.contact-right form div textarea {
  padding: 0.5rem;
  font-family: "Bricolage Grotesque";
  font-size: 1rem;
  border: 1px solid rgba(0, 0, 0, 0.5);
  border-radius: 5px;
  background-color: rgba(255, 255, 255, 0.25);
  resize: none;
}
body.contact .contact-container div.contact-right form div button[type=submit] {
  background-color: black;
  color: var(--eb-blue);
  font-family: "Bricolage Grotesque";
  font-size: 1.25rem;
  padding: 1rem;
  border-radius: 5px;
  transition: all 0.25s cubic-bezier(0.165, 0.84, 0.44, 1);
  border: none;
}
body.contact .contact-container div.contact-right form div button[type=submit]:hover {
  cursor: pointer;
}
body.contact div.content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
body.contact div.content h3 {
  font-size: 2rem;
  margin-bottom: 1rem;
  font-family: "Bricolage Grotesque";
}
body.contact div.content a.omniscope-logo {
  position: absolute;
  bottom: 0;
  right: 0;
  font-size: 16px;
  color: black;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  align-items: flex-end;
  text-align: right;
  width: -moz-max-content;
  width: max-content;
}
body.contact div.content a.omniscope-logo span {
  margin-right: 0.25rem;
  font-family: "Bricolage Grotesque";
  font-size: 10px;
}

body.pro {
  max-height: 100vh;
}
body.pro h1 {
  padding: 4rem 0;
  font-size: 3rem;
  font-family: "Bricolage Grotesque";
}
body.pro div.content {
  height: calc(100vh - 128px);
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow-y: scroll;
}
body.pro div.content .pro-row {
  width: 80%;
  display: flex;
  flex-direction: column;
  margin-top: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid black;
}
body.pro div.content .pro-row * {
  font-family: "Bricolage Grotesque";
}
body.pro div.content .pro-row h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  margin-top: 1rem;
}
body.pro div.content .pro-row p {
  margin-top: 1rem;
}
body.pro div.content .pro-row a {
  padding: 1rem 2rem;
  text-decoration: none;
  font-size: 1.25rem;
  border-radius: 5px;
  color: black;
  width: -moz-max-content;
  width: max-content;
  transition: all 0.25s cubic-bezier(0.165, 0.84, 0.44, 1);
  display: flex;
  gap: 0.5rem;
  align-items: center;
  margin-top: 2rem;
  border: 1px solid black;
}
body.pro div.content .pro-row a:hover {
  background-color: black;
  color: var(--eb-orange);
}
body.pro div.content .pro-row iframe, body.pro div.content .pro-row audio {
  margin-top: 1rem;
  border-radius: 1rem;
  border: solid 1px black;
}
body.pro div.content .pro-row audio {
  border-radius: 16rem;
}

@keyframes sweepTopOverlay1 {
  0% {
    height: 100vh;
  }
  100% {
    height: 0;
  }
}
@keyframes sweepTopOverlay2 {
  0% {
    height: 0;
    bottom: 0;
  }
  100% {
    height: 100vh;
  }
}
@keyframes scrollLeft {
  to {
    left: -200px;
  }
}
@media screen and (max-width: 768px) {
  header {
    padding: 1rem;
  }
  header .header-left-container a {
    font-size: 1.25rem;
  }
  header ul {
    gap: 0.5rem;
  }
  header ul li a {
    font-size: 1.25rem;
  }
  header ul li a span {
    display: none;
  }
  header ul li a i {
    display: block !important;
  }
  body.index {
    height: 100dvh;
  }
  body.index section.index-section1 {
    flex-direction: column;
    justify-content: space-between;
  }
  body.index section.index-section1 div.index-section1-texts {
    width: 100%;
    margin-left: 0;
    padding: 1rem;
    height: -moz-max-content;
    height: max-content;
  }
  body.index section.index-section1 div.index-section1-texts h1 {
    font-size: 3rem;
  }
  body.index section.index-section1 div.index-section1-texts p {
    font-size: 1rem;
  }
  body.index section.index-section1 div.index-section1-texts a.link {
    font-size: 1.25rem;
  }
  body.index section.index-section1 div.index-section1-texts span.warning {
    font-size: 0.75rem;
  }
  body.index section.index-section1 div.index-section1-images {
    width: 100%;
    margin-top: -16rem;
  }
  body.index section.index-section1 div.index-section1-images img {
    width: 100%;
  }
  body.index section.index-section2 {
    display: none;
  }
  body.photos {
    background-color: var(--eb-yellow);
  }
  body.photos main {
    height: -moz-max-content;
    height: max-content;
  }
  body.photos .gallery-photos {
    height: -moz-max-content;
    height: max-content;
    overflow-y: scroll;
  }
  body.photos .gallery-photos .gallery-row1, body.photos .gallery-photos .gallery-row2 {
    width: 100%;
    background-color: var(--eb-yellow);
    flex-direction: column;
  }
  body.photos .photo-overlay {
    flex-direction: column;
    height: 100vh;
    overflow-y: scroll;
  }
  body.photos .photo-overlay-content {
    flex-direction: column;
  }
  body.photos .photo-overlay-image {
    max-width: 100%;
  }
  body.photos .photo-overlay-info h2.photo-title {
    font-size: 2rem;
  }
  body.photos .photo-overlay-info p.photo-description {
    font-size: 1rem;
  }
  body.contact {
    max-height: unset;
    height: -moz-max-content;
    height: max-content;
  }
  body.contact .contact-container {
    flex-direction: column;
  }
  body.contact .contact-container div.contact-left {
    width: 100%;
    padding: 1rem;
    padding-top: 3rem;
  }
  body.contact .contact-container div.contact-left h1 {
    font-size: 2rem;
  }
  body.contact .contact-container div.contact-left hr {
    width: 100%;
  }
  body.contact .contact-container div.contact-left .contact-btns {
    gap: 0.5rem;
  }
  body.contact .contact-container div.contact-left a.contact-btn {
    font-size: 1rem;
  }
  body.contact .contact-container div.contact-right {
    width: 100%;
    padding: 1rem;
  }
  body.contact .contact-container div.contact-right h2 {
    font-size: 1.5rem;
  }
  body.contact .contact-container div.contact-right form div label {
    font-size: 1rem;
  }
  body.contact .contact-container div.contact-right form div input,
  body.contact .contact-container div.contact-right form div textarea {
    font-size: 0.75rem;
  }
  body.contact .contact-container div.contact-right form div button[type=submit] {
    font-size: 1rem;
  }
  body.contact div.content h3 {
    font-size: 1.5rem;
  }
  body.contact div.content a.omniscope-logo {
    font-size: 12px;
    position: absolute;
    bottom: 0;
    right: 0;
  }
  body.contact div.content a.omniscope-logo span {
    font-size: 8px;
  }
}/*# sourceMappingURL=styles.css.map */