:root {
  --nav-bg-colour: #fff;
  --bg-colour: #fff;
  --btn-colour: #fff;
  --btn-arrow-primary-colour: #fff;
  --btn-arrow-secondary-colour: #000;
}

body * {
  box-sizing: border-box;
}

body {
  padding: 0px;
  margin: 0px;
}

.dark-mode {
  --bg-colour: #000;
}

.flex {
  display: flex;
}

.fd-col {
  flex-direction: column;
}

.fd-row {
  flex-direction: row;
}

.jc-sb {
  justify-content: space-between;
}

nav {
  background: var(--nav-bg-colour);
  padding: 30px;
}

nav img {
  max-width: 150px;
}

@media (min-width: 768px) {
  nav img {
    max-width: 250px;
  }
}

@media (min-width: 1366px) {
  nav img {
    max-width: 300px;
  }
}

.container {
  position: relative;
  min-height: 100vh;
}

.grad {
  background: rgb(0, 0, 0);
  background: linear-gradient(0deg, rgb(255, 255, 255) 0%, rgb(0, 0, 0) 100%);
  content: "";
  width: 100%;
  height: 25px;
  opacity: 0.06;
}

@media (min-width: 768px) {
  .grad {
    height: 50px;
  }
}

@media (min-width: 1680px) {
  .grad {
    height: 100px;
  }
}

body:not(.mobile-video) video {
  -o-object-fit: cover;
     object-fit: cover;
}

video {
  width: 100%;
  max-height: 100%;
  aspect-ratio: 16/9;
}

.two-col {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  padding: 0px 30px 20px 30px;
  flex-direction: column;
}

@media (min-width: 768px) {
  .two-col {
    padding: 0px 90px 40px 90px;
  }
}

@media (min-width: 1366px) {
  .two-col {
    padding: 60px 120px;
    flex-direction: row;
  }
}

.two-col .block {
  flex: 1 1 100%;
  position: relative;
}

@media (min-width: 768px) {
  .two-col .block {
    flex: 1 1 50%;
  }
}

.frontend .btn {
  display: flex;
  padding: 13px 18px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 7px;
  text-decoration: none;
  font-weight: bold;
  position: relative;
}

.frontend .btn:hover {
  opacity: 0.7;
  transition: 400ms ease all;
}

.frontend .btn:before {
  width: 10px;
  height: 17px;
  position: absolute;
  content: "";
  right: 30px;
}

.frontend .btn.fit-content {
  width: -moz-fit-content;
  width: fit-content;
}

.frontend .btn.primary {
  background: #019FC4;
  color: var(--btn-colour);
}

.frontend .btn.primary use {
  stroke: var(--btn-arrow-primary-colour);
}

.frontend .btn.secondary {
  background: transparent;
  color: #000;
}

.frontend .btn.secondary use {
  stroke: var(--btn-arrow-secondary-colour);
}

.frontend .align-center {
  align-items: center;
}

.textural h1 {
  position: relative;
  text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  margin: 20px 0px 20px;
  padding-bottom: 20px;
  font-family: Canto;
  font-size: 25px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}

@media (min-width: 768px) {
  .textural h1 {
    font-size: 30px;
    margin: 30px 0px 35px;
    padding-bottom: 35px;
  }
}

@media (min-width: 1366px) {
  .textural h1 {
    font-size: 46px;
    margin: 40px 0px 50px;
    padding-bottom: 50px;
  }
}

.textural h1:after {
  content: "";
  position: absolute;
  bottom: 0px;
  width: 40px;
  height: 5px;
  background: #000;
  left: 0px;
}

.textural p {
  font-family: Inter;
  font-size: 14px;
  font-style: normal;
  font-weight: 300;
  line-height: 150%;
  /* 27px */
  position: relative;
}

@media (min-width: 768px) {
  .textural p {
    font-size: 16px;
  }
}

@media (min-width: 1366px) {
  .textural p {
    max-width: 85%;
  }
}

@media (min-width: 1680px) {
  .textural p {
    max-width: 70%;
    font-size: 18px;
  }
}

.textural p:last-of-type {
  padding-bottom: 30px;
}

@media (min-width: 768px) {
  .textural p:last-of-type {
    padding-bottom: 50px;
  }
}

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

@media (min-width: 968px) {
  .links {
    width: 60%;
  }
}

@media (min-width: 1366px) {
  .links {
    width: 80%;
  }
}

@media (min-width: 1688px) {
  .links {
    width: 60%;
  }
}

.links a {
  flex: 1 1 50%;
}

.video-container {
  position: relative;
}

.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 50px;
  color: white;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 50%;
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: opacity 0.3s ease;
}

.play-button.hidden {
  opacity: 0;
  pointer-events: none;
  /* Prevent interaction when hidden */
}

.splide__arrows {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 1;
  width: 100%;
  transform: translate(-50%, -50%);
  justify-content: space-between;
  display: flex;
  pointer-events: none;
}

.splide__arrows button {
  pointer-events: all;
  background: none;
  cursor: pointer;
  border: none;
}

.splide__arrows svg {
  height: 30px;
}

.splide__arrows .splide__arrow--prev {
  transform: rotateZ(180deg);
}

.splide__pagination {
  display: none;
}

.splide video {
  border-radius: 20px;
}

.splide.open,
.splide.open .splide__track {
  position: fixed;
  height: calc(100vh - 100px);
  top: 50px;
  bottom: 50px;
  left: 50px;
  right: 50px;
}

.splide.open .close,
.splide.open .splide__track .close {
  display: flex;
}

.close {
  cursor: pointer;
  display: none;
  position: absolute;
  justify-content: center;
  align-items: center;
  background: rgb(1, 159, 196);
  top: 25px;
  right: 25px;
  color: #fff;
  font-size: 30px;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  z-index: 10;
}

.close svg {
  width: 23px;
  height: 24px;
}

.pulse:after {
  position: absolute;
  top: 0;
  left: 0;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background-color: rgba(1, 159, 196, 0.8);
  /* Light transparent red */
  animation: pulse-animation 2s infinite;
  content: "";
}

@keyframes pulse-animation {
  0% {
    transform: scale(0.8);
    opacity: 1;
  }

  70% {
    transform: scale(2);
    opacity: 0;
  }

  100% {
    transform: scale(2);
    opacity: 0;
  }
}

.logo-container {
  max-width: 300px;
  /* Set a specific width for the container */
  max-height: 150px;
  /* Set a specific height for the container */
  overflow: hidden;
  /* Ensure that any overflow is hidden */
  display: flex;
  /* Use flex to center the logo */
  justify-content: center;
  align-items: center;
}

.company-logo {
  width: 100%;
  height: 100%;
}

@media only screen and (max-width: 768px) {
  .company-logo {
    margin: 40px 0px;
  }
}

.page-actions {
  position: absolute;
  top: 0px;
  right: 0px;
  display: flex;
  gap: 10px;
  justify-content: flex-end;
  align-items: center;
  width: 600px;
  max-width: 90%;
}

.card-actions {
  position: absolute;
  top: 7px;
  right: 10px;
}

@media only screen and (max-width: 1600px) {
  .card-actions {
    position: relative;
    top: 0px;
    margin-bottom: 20px;
  }
}

.form-control {
  display: flex;
  flex-direction: column;
  margin: 0px -10px;
}

@media only screen and (min-width: 768px) {
  .form-control {
    flex-direction: row;
  }
}

.form-control .form-element {
  flex: 1;
  display: flex;
  flex-direction: column;
  margin: 10px;
}

.form-control .alert {
  color: red;
  margin-top: 10px;
}

.form-control textarea {
  min-height: 100px;
}

@media only screen and (min-width: 768px) {
  .form-control textarea {
    min-height: 200px;
  }
}

.form-control input,
.form-control textarea {
  border: 2px solid #D0D0D0;
  border-radius: 5px;
  padding: 15px 20px;
}

.form-control .submit {
  font-size: 15px;
  color: #fff;
  width: -moz-fit-content;
  width: fit-content;
  flex: 0;
  padding: 10px 20px;
  border: none;
  border-radius: 15px;
  cursor: pointer;
}

.form-container {
  max-width: 900px;
  margin: 0px auto;
  width: 100%;
}

.modal-container {
  display: flex;
  opacity: 0;
  visibility: hidden;
  z-index: 40;
  position: fixed;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(35, 31, 32, 0.2);
  -webkit-backdrop-filter: blur(27px);
          backdrop-filter: blur(27px);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition: opacity 0.5s ease-in-out, visibility 0.5s;
}

.modal-container.open {
  opacity: 1;
  visibility: visible;
}

.modal-bg {
  position: absolute;
  top: 5%;
  left: 50%;
  transform: translate(-50%, 0%);
  width: 90%;
  height: 90%;
  border: 5px solid #D0D0D0;
  overflow-y: scroll;
  padding: 5vh 5vw;
  border-radius: 7px;
  background: #F3F3F3;
  box-shadow: 0px 4px 94px 0px rgba(0, 0, 0, 0.25);
}

@media only screen and (min-width: 768px) {
  .modal-bg {
    padding: 10vh 10vw;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
}

@media only screen and (min-width: 1366px) {
  .modal-bg {
    width: 60%;
    height: auto;
  }
}

.modal-bg .close {
  display: flex;
}

.modal-bg form {
  padding: 0px 10px;
}

.modal-bg h2 {
  position: relative;
  font-family: Canto;
  font-size: 25px;
  font-weight: 600;
  padding: 0px 0px 40px 0px;
}

@media only screen and (min-width: 768px) {
  .modal-bg h2 {
    font-size: 46px;
  }
}

.modal-bg h2:after {
  content: "";
  position: absolute;
  bottom: 0px;
  width: 40px;
  height: 5px;
  background: #000;
  left: 0px;
}

.modal-bg p {
  padding: 0px;
  /* Body Copy */
  font-family: Inter;
  font-size: 13px;
  font-weight: 300;
  line-height: 150%;
}

@media only screen and (min-width: 768px) {
  .modal-bg p {
    font-size: 18px;
  }
}

.modal-bg .content:not(.active) {
  display: none;
}

