@font-face {
  font-family: f;
  src: url("/media/fonts/Montserrat-VariableFont_wght.ttf");
}
p {
  font-size: 15px;
}

a {
  font-size: 15px;
  text-decoration: none;
  color: white;
  font-family: f;
  user-select: text;
}

.main-slogan {
  color: white;
  text-align: center;
  font-size: 20px;
  font-weight: 400;
  margin-top: -35px;
  margin-bottom: 60px;
}

.main-h1 {
  color: #ffffff;
  text-align: center;
  font-size: 3.3rem;
  text-align: center;
  font-weight: 700;
  margin-top: 50px;
}

.main-h2 {
  color: #ffffff;
  font-weight: 500;
  text-align: left;
  font-size: 42px;
}

.main-p {
  color: #ffffff;
  text-align: left;
  font-size: 24px;
  font-weight: 500;
  line-height: 40px;
  margin: 0;
  color: white;
}

.main-h6 {
  color: #00171f;
  text-align: left;
  font-size: 25px;
  font-weight: 500;
}

.main-a {
  color: #00171f;
  font-weight: 700;
  font-size: 24px;
  font-family: f;
  font-display: swap;
  text-decoration: underline;
  cursor: pointer;
  user-select: text;
  margin: 0 2px;
}

.main-btn {
  background: #00171f;
  margin-top: 20px;
  display: flex;
  justify-content: center;
  margin: 0 auto;
  margin-top: 40px;
  border-radius: 100px;
  padding: 15px 40px;
  align-items: center;
  outline: none;
  border: none;
  background-color: transparent;
}
.main-btn p {
  font-size: 30px;
  padding-top: 0px;
  text-wrap: nowrap;
  font-family: f;
  color: #ffffff;
}

.main-video {
  width: 100%;
  height: 500px;
}

.content {
  max-width: 1200px;
  width: 95%;
  min-height: 100%;
  height: auto;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  margin-top: 72px;
  z-index: 2;
  padding: 70px 0;
}

.btn-1, .btn-2 {
  border-radius: 60px;
  box-shadow: 0 0 2px rgba(255, 255, 255, 0.7) inset, 0px 0px 15px 0px rgba(0, 0, 0, 0);
  background: linear-gradient(175deg, rgba(255, 255, 255, 0.35) -94.09%, rgba(255, 255, 255, 0) 154.53%);
  backdrop-filter: blur(21px);
  -webkit-backdrop-filter: blur(21px);
  font-size: 14px !important;
  font-weight: 500;
  padding: 10px 20px;
  transition: all 0.15s ease-in-out;
  letter-spacing: 0.5px;
  height: 20px;
  position: relative;
  align-items: center;
  display: flex;
  width: auto;
  cursor: pointer;
  text-align: center;
  justify-content: center;
  color: white;
}
.btn-1 svg, .btn-2 svg {
  width: 16px;
  height: 16px;
  margin-right: 5px;
  padding-top: 3px;
}
.btn-1:hover, .btn-2:hover {
  box-shadow: 0 0 2px rgba(255, 255, 255, 0.7) inset, 0px 0px 15px 0px rgba(0, 0, 0, 0), 0 0 20px rgba(255, 255, 255, 0.127);
}

.btn-2 {
  max-width: 150px;
  left: 50%;
  transform: translateX(-50%);
}

.main-picture {
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  border: 10px solid rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(27px);
  -webkit-backdrop-filter: blur(27px);
  width: auto;
  max-width: 1000px;
}
.main-picture div {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #007ea7;
  overflow: hidden;
  padding: 0;
  background: #00171f;
}
.main-picture div img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  margin: 0;
  padding: 0;
  transition: 0.4s ease-out;
  transform: scale(1);
}
.main-picture:hover img {
  transform: scale(1.03);
  opacity: 0.9;
}

.main-picture.small {
  padding: 23px;
}

.main-picture.big {
  padding: 24px;
}

.main-iframe {
  display: flex;
  justify-content: center;
  margin: 0 auto;
  border: 10px solid rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(27px);
  -webkit-backdrop-filter: blur(27px);
  border-radius: 20px;
  overflow: hidden;
  position: relative;
}

.main-list {
  width: 100%;
  height: auto;
  display: flex;
  flex-wrap: wrap;
  position: relative;
  margin-bottom: 30px;
  justify-content: center;
}
.main-list .main-picture {
  width: 95%;
  max-width: 360px;
  max-height: 210px;
  min-height: 210px;
  height: 210px;
  margin: 10px;
  cursor: pointer;
}

.loader-anim {
  width: 60px;
  aspect-ratio: 2;
  --_g: no-repeat radial-gradient(circle closest-side,rgba(255, 255, 255, 0.404) 90%,#0000);
  background: var(--_g) 0% 50%, var(--_g) 50% 50%, var(--_g) 100% 50%;
  background-size: calc(100%/3) 50%;
  animation: l3 1s infinite linear;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.5);
  z-index: 1;
}

@keyframes l3 {
  20% {
    background-position: 0% 0%, 50% 50%, 100% 50%;
  }
  40% {
    background-position: 0% 100%, 50% 0%, 100% 50%;
  }
  60% {
    background-position: 0% 50%, 50% 100%, 100% 0%;
  }
  80% {
    background-position: 0% 50%, 50% 50%, 100% 100%;
  }
}
body {
  user-select: none;
  width: 100%;
  left: 0;
  top: 0;
}

#page-loader {
  position: fixed;
  width: 100%;
  height: 100vh;
  background: linear-gradient(180deg, rgba(0, 51, 87, 0.75), rgba(0, 125, 167, 0.75), rgba(0, 164, 230, 0.75) 100%, #007ea7, #003459);
  backdrop-filter: blur(8px);
  z-index: 9999999999999;
}
#page-loader div {
  width: 200px;
}

header {
  display: flex;
  align-items: center;
  z-index: 999;
  position: fixed;
  width: 100%;
  display: flex;
  color: white;
  height: 72px;
  top: 0;
}
header .header-bg {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  transition: opacity 0.2s ease-out;
  background: #00171fd4;
  border-bottom: 1px solid rgba(255, 255, 255, 0.413);
  backdrop-filter: blur(44px);
  opacity: 0;
}
header .desktop-nav {
  display: flex;
  justify-content: space-between;
  width: 100%;
  padding: 20px;
  width: 100%;
  margin-left: 0%;
  left: 50%;
  transform: translateX(-50%);
  position: relative;
  max-width: 1200px;
  display: flex;
  align-items: center;
}
header .desktop-nav #desktop-nav-logo img {
  height: 42px;
  margin-top: 2px;
}
header .desktop-nav a {
  color: white;
  text-decoration: none;
  font-size: 15px !important;
  font-weight: 400;
  letter-spacing: 0.5px;
  text-wrap: nowrap;
}
header .mobile-nav {
  width: 100%;
  position: absolute;
  top: 0;
  padding: 0px;
  display: none;
  justify-content: space-between;
  top: 50%;
  transform: translateY(-50%);
}
header .mobile-nav img {
  height: 45px;
  margin-left: 20px;
}
header .mobile-nav svg {
  position: absolute;
  left: 100%;
  transform: translateX(-100%);
  margin-left: -20px;
  height: 45px;
  width: 45px;
  cursor: pointer;
}
header #mobile-menu {
  position: fixed;
  width: 100%;
  height: 0;
  top: 0;
  background: url("../media/images/mobile-decoration.png"), linear-gradient(180deg, #003459, #007ea7, #00a8e8 100%, #007ea7, #003459);
  padding: 0px;
  background-repeat: no-repeat;
  background-size: 100%;
  justify-content: center;
  overflow: hidden;
  visibility: hidden;
}
header #mobile-menu #mobile-menu-anim {
  opacity: 0;
  visibility: hidden;
}
header #mobile-menu #close-btn {
  position: absolute;
  left: 100%;
  top: 20px;
  transform: translateX(-100%) scale(0.9);
  margin-left: -20px;
  width: 45px;
  height: 45px;
  cursor: pointer;
}
header #mobile-menu img {
  width: 100%;
  margin-bottom: 50px;
  max-width: 300px;
  margin-top: 80px;
}
header #mobile-menu a {
  width: 60%;
  text-align: center;
  display: flex;
  justify-content: center;
  left: 50%;
  position: relative;
  transform: translateX(-50%);
  max-width: 300px;
  font-size: 30px;
}
header #mobile-menu .btn-1 {
  transform: translateX(-50%) scale(1.2);
  margin-top: 20px;
}
header #mobile-menu #social-media {
  width: 100%;
  height: auto;
  display: flex;
  justify-content: center;
  margin-top: 20px;
  width: 300px;
  left: 50%;
  position: absolute;
  transform: translateX(-50%) translateY(-100%) scale(0.9);
  padding: 0;
  top: 100%;
  margin-top: -40px;
}
header #mobile-menu #social-media a {
  transform: none;
  left: 0;
}
header #mobile-menu #social-media img {
  width: 60px;
  cursor: pointer;
  border: 1px solid white;
  margin: 0 5px;
  border-radius: 12px;
  margin: 0;
  padding: 0;
  left: 0;
  background: #d7f2fd9b;
}
header #mobile-menu #social-media img:hover {
  filter: brightness(1.1);
}
header #mobile-menu #social-media .main-picture {
  padding: 0;
}
header #mobile-menu #social-media .main-picture div {
  width: 50px;
  background: transparent;
  padding: 0;
  border-radius: 0px;
}
header #mobile-menu #social-media .main-picture div img {
  width: 100%;
}

footer {
  width: 100%;
  height: auto;
  position: absolute;
  margin-top: -72px;
  box-shadow: 0 0 100px #003459;
  background: #003459;
  z-index: 2;
  max-width: 100vw;
  padding-bottom: 30px;
}
footer #lottie-waves {
  width: 100%;
  height: 100%;
  position: absolute;
  overflow: hidden;
}
footer #footerFishingLottie {
  transform: translateX(-100%) rotateY(180deg) rotate(-1deg);
  width: 500px;
  position: absolute;
  left: 98%;
  top: -70%;
  z-index: 99;
}
footer #fishLottie {
  transform: translateX(-100%) rotateY(180deg) rotate(-1deg);
  width: 500px;
  position: absolute;
  left: 32%;
  top: -15%;
  z-index: 99;
}
footer #footerWavesLottie {
  transform: translateX(-100%) rotateY(180deg) rotate(-1deg);
  width: 500px;
  position: absolute;
  left: 93%;
  top: -15%;
  z-index: 99;
  opacity: 1;
}
footer #footerWavesLottie:nth-child(2) {
  left: 23%;
  top: -5%;
}
footer #footerWavesLottie:nth-child(3) {
  left: 32%;
  top: -55%;
}
footer #footer-content {
  background: #003459;
  height: 100%;
  position: relative;
  width: 95%;
  max-width: 500px;
  z-index: 99;
  left: 50%;
  transform: translateX(-50%);
}
footer .main-h1 {
  margin-bottom: 30px;
  transform: scale(0.9);
  text-wrap: nowrap;
  width: 109%;
  position: relative;
  margin-left: -20px;
}
footer .main-h1 span {
  color: #00a8e8;
  font-size: 20px;
  margin-left: 0px;
  transform: translateX(-100%);
  margin-top: 55px;
  position: absolute;
}
footer .main-p {
  text-align: center;
  opacity: 1;
  font-size: 20px;
}
footer #mailLink {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
footer .main-a {
  text-align: center;
  color: #00a8e8;
  position: relative;
  padding: 0;
  margin: 0;
}
footer #company-address {
  line-height: 30px;
  margin-top: 20px;
}
footer #social-media {
  width: 100%;
  height: auto;
  display: flex;
  justify-content: center;
  margin-top: 20px;
}
footer #social-media img {
  width: 40px;
  cursor: pointer;
  border: 2px solid #00a6e89b;
  margin: 0 5px;
  border-radius: 12px;
}
footer #social-media img:hover {
  filter: brightness(1.1);
}
footer #social-media .main-picture {
  padding: 0;
}
footer #social-media .main-picture div {
  width: 50px;
  background: transparent;
  padding: 0;
  border-radius: 0px;
}
footer #social-media .main-picture div img {
  width: 100%;
}

main {
  width: 100%;
  min-height: 100vh;
  height: auto;
  position: relative;
  background: linear-gradient(180deg, #003459, #007ea7, #00a8e8 100%, #007ea7, #003459);
  top: -72px;
  overflow: hidden;
  padding-bottom: 80px;
}
main #page-grid, main #end-page-grid {
  width: 100vw;
  min-width: 1200px;
  height: 100vh;
  overflow: hidden;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}
main #page-grid #page-grid-img, main #end-page-grid #page-grid-img {
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  position: absolute;
  background: url("/media/images/bg-grid-hero-m.svg");
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: center top;
  top: 20px;
}
main #end-page-grid {
  transform: translateX(-50%) translateY(-100%) rotateX(180deg);
  top: 105%;
}
main #home-content {
  width: 100%;
  height: auto;
}
main #home-content #small-home-info {
  color: white;
  height: auto;
  width: 95%;
  max-width: 800px;
  left: 50%;
  position: relative;
  transform: translateX(-50%);
  margin-top: 0px;
}
main #home-content #small-home-info h1 {
  font-size: 3.3rem;
  text-align: center;
  font-weight: 700;
}
main #home-content #small-home-info #shi-p {
  font-size: 2rem;
  text-align: center;
  font-weight: 400;
  margin-top: -20px;
}
main #home-content #small-home-info #small-home-info-btns {
  position: absolute;
  display: flex;
  justify-content: center;
  width: 100%;
}
main #home-content #small-home-info a {
  height: 25px;
  margin: 0px 0px;
}
main #home-content #small-home-info .btn-1 {
  width: 95%;
  max-width: 230px;
}
main #home-content #home-focus-work {
  margin-top: 150px;
  position: relative;
}
main #home-content #home-focus-work #xl-focus-work, main #home-content #home-focus-work #s-focus-work-1, main #home-content #home-focus-work #s-focus-work-2, main #home-content #home-focus-work #s-focus-work-3, main #home-content #home-focus-work #s-focus-work-4 {
  border-radius: 38px;
  overflow: hidden;
  position: relative;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.1) 3.25%, rgba(255, 255, 255, 0.15) 96.75%);
  border: 1px solid rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(27px);
  -webkit-backdrop-filter: blur(27px);
  padding: 24px;
  width: 80%;
  max-width: 1000px;
  left: 50%;
  transform: translateX(-50%);
}
main #home-content #home-focus-work #xl-focus-work div, main #home-content #home-focus-work #s-focus-work-1 div, main #home-content #home-focus-work #s-focus-work-2 div, main #home-content #home-focus-work #s-focus-work-3 div, main #home-content #home-focus-work #s-focus-work-4 div {
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
  padding: 0;
}
main #home-content #home-focus-work #xl-focus-work div img, main #home-content #home-focus-work #s-focus-work-1 div img, main #home-content #home-focus-work #s-focus-work-2 div img, main #home-content #home-focus-work #s-focus-work-3 div img, main #home-content #home-focus-work #s-focus-work-4 div img {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  transition: 1s ease-out;
  transform: scale(1.06);
}
main #home-content #home-focus-work #xl-focus-work div img {
  object-fit: cover;
  display: block;
  transform: scale(1);
}
main #home-content #home-focus-work #s-focus-work-1 {
  position: absolute;
  max-width: 300px;
  transform: translateY(-80%) translateX(-50%) rotate(20deg);
  left: 0;
  top: auto;
}
main #home-content #home-focus-work #s-focus-work-2 {
  position: absolute;
  max-width: 300px;
  transform: translateY(-50%) translateX(-50%) rotate(-20deg);
  left: 100%;
  top: auto;
}
main #home-content #home-focus-work #s-focus-work-3 {
  position: absolute;
  max-width: 300px;
  transform: translateY(-50%) translateX(-50%) rotate(-20deg);
  left: -5%;
  top: 90%;
}
main #home-content #home-focus-work #s-focus-work-4 {
  position: absolute;
  max-width: 300px;
  transform: translateY(-50%) translateX(-50%) rotate(20deg);
  left: 105%;
  top: 85%;
}
main #home-content #home-services {
  width: 100%;
  height: auto;
  display: flex;
  justify-content: center;
  position: relative;
  margin-top: 100px;
  flex-wrap: wrap;
}
main #home-content #home-services .home-service {
  width: 95%;
  max-width: 300px;
  border-radius: 30px;
  overflow: hidden;
  position: relative;
  background: linear-gradient(180deg, #0034596a 3.25%, #003459e6 96.75%);
  backdrop-filter: blur(27px);
  -webkit-backdrop-filter: blur(27px);
  padding: 24px;
  height: auto;
  min-height: 0;
  color: white;
  cursor: pointer;
  transition: 0.2s ease-out;
  margin: 20px;
  border: 1px solid rgba(255, 255, 255, 0.836);
  box-shadow: 0 0 2px rgba(255, 255, 255, 0.7) inset, 0px 0px 15px 0px rgba(0, 0, 0, 0);
}
main #home-content #home-services .home-service svg {
  border-radius: 100px;
  background: linear-gradient(180deg, #0034596a 3.25%, #003459e6 96.75%);
  backdrop-filter: blur(27px);
  -webkit-backdrop-filter: blur(27px);
  padding: 10px;
  width: 30px;
  height: 30px;
  position: absolute;
  top: 0;
  left: 100%;
  margin: 24px -24px;
  transform: translateX(-100%) rotate(-45deg);
  transition: 0.2s ease-out all, 0s border;
}
main #home-content #home-services .home-service h3 {
  margin: 0;
  margin-top: 5px;
}
main #home-content #home-services .home-service p {
  width: 90%;
}
main #home-content #home-services .home-service:hover {
  filter: brightness(1.1);
  transform: translateY(-10px);
  box-shadow: 0 0 2px rgba(255, 255, 255, 0.7) inset, 0px 0px 15px 0px rgba(0, 0, 0, 0), 0 0 30px rgba(255, 255, 255, 0.486), 0 0 10px rgba(255, 255, 255, 0.486);
}
main #home-content #home-services .home-service:hover svg {
  transform: translateX(-100%) rotate(0deg);
  background: #00a8e8;
  border: 2px solid white;
}
main #home-content #home-services .main-h1 {
  font-size: 45px;
  color: #ffffff;
  text-shadow: 2px 5px 0 rgba(0, 0, 0, 0.184);
  letter-spacing: 0.5px;
}
main #home-content #home-portfolio {
  width: 100%;
  height: auto;
  margin-top: 20px;
}
main #home-content #home-portfolio #home-portfolio-list {
  width: 100%;
  height: auto;
  display: flex;
  flex-wrap: wrap;
  position: relative;
  margin-bottom: 30px;
  justify-content: center;
}
main #home-content #home-portfolio #home-portfolio-list .main-picture {
  width: 30%;
  margin: 10px;
}
main #home-content #home-portfolio .btn-1 {
  width: 95%;
  max-width: 150px;
  left: 50%;
  transform: translateX(-50%);
}
main #work-content #work-portfolio {
  width: 100%;
  height: auto;
  margin-top: 20px;
}
main #work-content #work-portfolio #work-portfolio-list {
  width: 100%;
  height: auto;
  display: flex;
  flex-wrap: wrap;
  position: relative;
  margin-bottom: 30px;
  justify-content: center;
}
main #work-content #work-portfolio #work-portfolio-list .main-picture {
  width: 30%;
  margin: 10px;
  cursor: pointer;
}
main #work-content #work-portfolio .btn-1 {
  width: 95%;
  max-width: 150px;
  left: 50%;
  transform: translateX(-50%);
}
main #work-content #page-numbers {
  display: flex;
  justify-content: center;
}
main #work-content #page-numbers .pn-btn {
  border-radius: 10px;
  box-shadow: 0 0 2px rgba(255, 255, 255, 0.7) inset, 0px 0px 15px 0px rgba(0, 0, 0, 0);
  background: linear-gradient(175deg, rgba(255, 255, 255, 0.35) -94.09%, rgba(255, 255, 255, 0) 154.53%);
  backdrop-filter: blur(21px);
  -webkit-backdrop-filter: blur(21px);
  text-align: center;
  transition: all 0.15s ease-in-out;
  letter-spacing: 0.5px;
  position: relative;
  align-items: center;
  margin: 0 5px;
  cursor: pointer;
}
main #work-content #page-numbers .pn-btn:hover {
  box-shadow: 0 0 2px rgba(255, 255, 255, 0.7) inset, 0px 0px 15px 0px rgba(0, 0, 0, 0), 0 0 20px rgba(255, 255, 255, 0.127);
}
main #work-content #page-numbers .page-number {
  width: 40px;
  text-align: center;
  padding: 10px 0px;
  font-size: 14px !important;
  font-weight: 500;
}
main #work-content #page-numbers .page-number p {
  color: #e0eaf7;
  font-size: 20px;
  padding: 0 0px;
  font-weight: 500;
  margin: 0;
}
main #work-content #page-numbers .page-number p:hover {
  opacity: 0.8;
}
main #work-content #page-numbers .page-number .cantSelect {
  cursor: default;
}
main #work-content #page-numbers .page-number .cantSelect:hover {
  opacity: 1;
}
main #work-content #page-numbers .page-number:nth-child(1) p {
  border: none;
}
main #project-content #iframe-content {
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  margin: 0;
  position: relative;
}
main #project-content #iframe-content .lds-ring {
  color: green;
}
main #project-content #iframe-content #iframe-avail {
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(30deg, #00171f, #003459, #007ea7);
  backdrop-filter: blur(3px);
  line-height: 30px;
  font-size: 20px;
  text-align: center;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-shadow: 1px 2px 0 rgba(0, 0, 0, 0.066);
  font-family: f;
  display: none;
  z-index: 99;
}
main #project-content #iframe-content iframe {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 2;
}
main #project-content #keywords {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  justify-content: center;
  max-width: 800px;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  margin-top: -20px;
}
main #project-content #keywords a {
  margin: 5px;
}
main #project-content #project-description {
  width: 95%;
  max-width: 850px;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  padding: 0;
  margin-top: 20px;
}
main #project-content #project-description a {
  font-size: 18px;
  margin-right: 5px;
  text-decoration: none;
  color: #00171f;
}
main #project-content h3 {
  text-shadow: 2px 4px 0 rgba(0, 0, 0, 0.184);
  letter-spacing: 0.5px;
}
main #service-content li span {
  color: #003459;
  font-weight: bold;
}
main #service-content #service-inv {
  color: #00171f;
  font-weight: bold;
}
main #service-content .btn-1 {
  width: 200px;
}
main #contact-content #contact-form {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
}
main #contact-content #contact-form label {
  margin-top: 10px;
  font-size: 1rem;
  color: white;
  font-family: f;
  font-weight: 500;
}
main #contact-content #contact-form input, main #contact-content #contact-form textarea {
  padding: 0.5em;
  font-size: 1rem;
  border: 1px solid #ccc;
  border-radius: 4px;
  margin-top: 0.3em;
  width: 100%;
  box-sizing: border-box;
  color: #00171f;
}
main #contact-content #contact-form input:focus, main #contact-content #contact-form textarea:focus {
  border-color: #007bff;
  outline: none;
}
main #contact-content #contact-form .btn-1 {
  margin-top: 20px;
}
main #contact-content .main-p {
  margin-top: 20px;
  font-size: 15px;
  letter-spacing: 0.5px;
  line-height: 25px;
  text-align: center;
}
main #contact-content .main-p a {
  color: #003459;
  font-weight: 700;
  font-size: 15px;
}
main #contact-content #submit-notes, main #contact-content #success-msg {
  max-width: 100%;
  min-height: 30px;
  height: auto;
  background: #ef5350;
  border: 2px solid rgba(139, 0, 0, 0.36);
  border-radius: 4px;
  margin-top: 10px;
  margin-bottom: -10px;
  padding: 5px 20px;
  color: white;
  display: flex;
  align-items: center;
}
main #contact-content #submit-notes svg, main #contact-content #success-msg svg {
  margin-right: 3px;
  width: 16px;
  height: 16px;
  color: darkred;
  opacity: 0.9;
  top: 2px;
  position: relative;
}
main #contact-content #submit-notes p, main #contact-content #success-msg p {
  font-size: 17px;
  padding: 0;
  margin: 0;
  margin-top: -2px;
}
main #contact-content #to-show {
  max-width: 500px;
  position: relative;
  left: 50%;
  width: 95%;
  transform: translateX(-50%);
}
main #contact-content #to-show .btn-1 {
  margin-top: 25px;
}
main #contact-content #success-msg {
  background: #4caf50;
  border: 2px solid green;
  padding: 15px 20px;
  border-radius: 10px;
}
main #contact-content #success-msg p {
  font-size: 20px;
}
main #contact-content #success-msg svg {
  color: darkgreen;
  width: 20px;
  height: 20px;
}
main #about-us-content .main-p span {
  color: #003459;
  font-weight: 700;
  text-shadow: 1px 2px 0 rgba(0, 0, 0, 0);
}
main #about-us-content .main-p a {
  color: #00171f;
  font-weight: 700;
}
main #about-us-content .btn-1 {
  width: 95%;
  max-width: 250px;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  margin-top: 50px;
  margin-bottom: 0;
}

@media (max-width: 800px) {
  main #logo {
    width: 70px;
  }
  main .comingSoon h1 {
    font-size: 45px;
    text-wrap: nowrap;
  }
  main .comingSoon h2 {
    font-size: 29px;
  }
  main #page-grid, main #end-page-grid {
    min-width: 0;
    min-width: 100%;
    height: 100vh;
    overflow: hidden;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
  }
  main #page-grid #page-grid-img, main #end-page-grid #page-grid-img {
    width: 100%;
    height: 100%;
    left: 0;
    top: 70px;
    z-index: 99;
    position: re;
    background: url("/media/images/mobile-decoration.png");
    background-size: 110%;
    background-repeat: no-repeat;
    background-position: center top;
  }
  main #end-page-grid {
    transform: translateX(-50%) translateY(-100%) rotateX(180deg);
    top: 110%;
  }
}
.mouse-follower {
  z-index: 10;
}
.mouse-follower span {
  z-index: 10;
  opacity: 1;
  top: -10px;
  left: -10px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  position: fixed;
  transition: 100ms ease-in-out;
  pointer-events: none;
}
.mouse-follower .cursor-outline {
  height: 30px;
  width: 30px;
  border: 1px solid #ffffff;
}
.mouse-follower .cursor-dot {
  height: 6px;
  width: 6px;
  background: #ffffff;
}
.mouse-follower.hide-cursor span {
  border-color: transparent;
  background: transparent;
}

@keyframes logoAnimation {
  0% {
    transform: rotate(0deg) scale(1);
  }
  50% {
    transform: rotate(360deg) scale(1.1);
  }
  70% {
    transform: rotate(360deg) scale(1);
  }
  100% {
    transform: rotate(360deg) scale(1);
    /* Idle state */
  }
}
@keyframes gradientAnimation {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
@media (max-width: 1100px) {
  footer #footerFishingLottie {
    width: 400px;
    top: -220px;
  }
}
@media (max-width: 900px) {
  .mouse-follower {
    display: none;
  }

  main {
    padding-bottom: 0;
  }
  main #home-content .focusImgScrollEvent {
    display: none;
  }
  main #home-content #small-home-info h1 {
    font-size: 50px;
    line-height: 55px;
  }
  main #home-content #small-home-info #shi-p {
    font-size: 30px;
  }
  main #home-content #home-focus-work {
    margin-bottom: -30px;
  }
  main #home-content #home-focus-work #xl-focus-work {
    width: 85%;
    padding: 15px;
    border-radius: 32px;
  }

  header {
    position: absolute;
  }
  header .desktop-nav {
    display: none;
  }
  header .mobile-nav {
    display: flex;
  }
  header #mobile-menu {
    visibility: visible;
  }
  header #mobile-menu #mobile-menu-anim {
    visibility: visible;
  }

  footer lottie-player {
    display: none;
  }
  footer .main-h1 span {
    margin-top: 32px;
  }

  .main-h1 {
    font-size: 2.7rem;
    line-height: 2.7rem;
    margin-bottom: 40px;
  }

  .main-p {
    color: #ffffff;
    text-align: left;
    font-size: 22px;
    font-weight: 500;
    line-height: 36px;
    margin: 0;
    color: white;
  }
}

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