@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@100;200;300;400;500;600;700;800;900&display=swap");
@keyframes slide-up {
  0% {
    transform: translateY(15px);
    opacity: 0;
  }
  100% {
    transform: translateY(0px);
    opacity: 1;
  }
}
@keyframes slide-down {
  0% {
    transform: translateY(-15px);
    opacity: 0;
  }
  100% {
    transform: translateY(0px);
    opacity: 1;
  }
}
body {
  font-family: "Montserrat";
}

.heading-1 {
  font-size: 3.125rem;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .heading-1 {
    font-size: 3.75rem;
  }
}

.heading-2 {
  font-size: 2.8125rem;
}
@media screen and (min-width: 768px) {
  .heading-2 {
    font-size: 3.125rem;
  }
}

.heading-3 {
  font-size: 1.875rem;
}
@media screen and (min-width: 768px) {
  .heading-3 {
    font-size: 2.1875rem;
  }
}

.heading-4 {
  font-size: 1.375rem;
}
@media screen and (min-width: 768px) {
  .heading-4 {
    font-size: 1.875rem;
  }
}

.heading-super {
  font-size: 6.75rem;
}
@media screen and (min-width: 768px) {
  .heading-super {
    font-size: 6rem;
  }
}

.subheadline {
  text-transform: uppercase;
  font-size: 0.75rem;
  margin-bottom: 0.75rem;
}
@media screen and (min-width: 768px) {
  .subheadline {
    font-size: 0.875rem;
  }
}

.paragraph-1 {
  font-size: 1.25rem;
}

.paragraph-2 {
  font-size: 1rem;
}

.fw-th {
  font-weight: 100 !important;
}

.fw-el {
  font-weight: 200 !important;
}

.fw-li {
  font-weight: 300 !important;
}

.fw-re {
  font-weight: 400 !important;
}

.fw-me {
  font-weight: 500 !important;
}

.fw-sb {
  font-weight: 600 !important;
}

.fw-bo {
  font-weight: 700 !important;
}

.fw-eb {
  font-weight: 800 !important;
}

.fw-bl {
  font-weight: 900 !important;
}

.link-inline {
  font-weight: bold;
}

.mb-low {
  margin-bottom: 1.25rem;
}

.mb-medium {
  margin-bottom: 2.5rem;
}

.mb-high {
  margin-bottom: 3.75rem;
}

.mt-low {
  margin-top: 1.25rem;
}

.mt-medium {
  margin-top: 2.5rem;
}

.mt-high {
  margin-top: 3.75rem;
}

.btn-stretch {
  padding: 8px 50px;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.16), 0 2px 10px 0 rgba(0, 0, 0, 0.12);
}

.service-item {
  padding: 2.5rem;
  box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.2) !important;
}
.service-item-icon {
  font-size: 3.75rem;
  color: #00b2ff;
}
.service-item-heading {
  font-weight: 700;
  text-transform: uppercase;
}
.service-item-description {
  margin: 2.8125rem 0;
}
.service-item-link {
  color: #00b2ff;
  font-weight: 700;
  display: none;
}

.card-glass {
  padding: 0;
  box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.2) !important;
  border-radius: 5px;
  position: relative;
  overflow: hidden;
}
.card-glass:hover .card-glass-text {
  bottom: 0;
}
.card-glass:hover .card-glass-text h3 {
  animation: slide-down 0.3s linear 0.6s forwards;
}
.card-glass:hover .card-glass-text h4 {
  animation: slide-down 0.3s linear 0.6s forwards;
}
.card-glass:hover .card-glass-text p {
  animation: slide-up 0.3s linear 0.3s forwards;
}
.card-glass-img {
  width: 100%;
}
.card-glass-text {
  position: absolute;
  width: 100%;
  height: 10rem;
  z-index: 10;
  bottom: -160px;
  color: #f2f2f2;
  backdrop-filter: blur(10px);
  padding: 1.25rem;
  box-shadow: 0 -10px 10px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom-radius: 5px;
  transition: all 0.4s;
  text-align: center;
}
.card-glass-text h3, .card-glass-text h4 {
  transform: translateY(-15px);
  text-transform: uppercase;
  opacity: 0;
}
.card-glass-text p {
  transform: translateY(15px);
  opacity: 0;
  font-size: 0.875rem;
  font-weight: 300;
}
.card-glass-text h3 {
  font-size: 1rem;
  font-weight: 400;
  margin: 0;
}
.card-glass-text h4 {
  font-size: 0.875rem;
  font-weight: 700;
  margin-bottom: 1.5625rem;
}

.parallax::after {
  content: " ";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  transform: translateZ(-1px) scale(1.5);
  z-index: -1;
  background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url("/images/cywall.jpg");
}

html {
  scroll-behavior: smooth;
  -webkit-scroll-behavior: smooth;
}

.masthead {
  height: 115vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background-image: url("/images/masthead-bg.jpg");
  background-position: right;
  background-size: cover;
  padding: 2.5rem;
}
@media screen and (min-width: 576px) {
  .masthead {
    align-items: center;
    text-align: center;
  }
}
@media screen and (min-width: 1200px) {
  .masthead {
    background-position: center;
  }
}
.masthead .btn {
  opacity: 0;
  animation: xslide-up 2s ease-in-out 1s forwards;
}
.masthead-heading {
  font-size: 2.5rem;
  opacity: 0;
  font-weight: 700;
  font-family: "Montserrat";
  margin-bottom: 1.25rem;
  letter-spacing: 4px;
  width: 50%;
  animation: xslide-up 2s ease-in-out forwards;
}
@media screen and (min-width: 576px) {
  .masthead-heading {
    letter-spacing: 8px;
    width: 100%;
  }
}
@media screen and (min-width: 768px) {
  .masthead-heading {
    margin: 0;
    font-size: 3rem;
  }
}
.masthead-subheading {
  font-size: 1rem;
  letter-spacing: 5px;
  text-transform: uppercase;
  margin-bottom: 2.5rem;
  opacity: 0;
  animation: xslide-up 2s ease-in-out 0.4s forwards;
}
@media screen and (min-width: 768px) {
  .masthead-subheading {
    font-size: 1.25rem;
  }
}

.headline-1 {
  padding: 7.5rem 1.25rem;
}
.headline-1-img {
  margin: 0 0 6.25rem;
}
@media screen and (min-width: 768px) {
  .headline-1-img {
    margin: 6.25rem 0 0;
  }
}
.headline-1-text p {
  line-height: 1.8;
}

.headline-2 {
  padding: 7.5rem 0;
}
@media screen and (min-width: 768px) {
  .headline-2 {
    justify-content: flex-end;
  }
}
.headline-2-text {
  background: #002d40;
  color: #f2f2f2;
  padding: 5rem 1.25rem;
  order: 2;
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 576px) {
  .headline-2-text {
    padding: 5rem 2.5rem;
  }
}
@media screen and (min-width: 768px) {
  .headline-2-text {
    order: unset;
    background: transparent;
    color: inherit;
  }
}
@media screen and (min-width: 992px) {
  .headline-2-text {
    order: unset;
    padding: 3.75rem 2.5rem;
    background: #002d40;
    color: #f2f2f2;
  }
}
@media screen and (min-width: 1200px) {
  .headline-2-text {
    padding: 5rem 2.5rem;
  }
}
.headline-2-text p {
  margin: 0;
}
.headline-2-img {
  padding: 0;
}
.headline-2-img img {
  width: 100%;
}

.banner {
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url("/images/cywall.jpg");
  padding: 7.5rem 1.25rem;
  background-position: center;
  position: relative;
  background-size: cover;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #f2f2f2;
}
.banner img {
  width: 80%;
  margin-bottom: 2.1875rem;
}
@media screen and (min-width: 768px) {
  .banner img {
    width: 400px;
  }
}
.banner h3 {
  margin-bottom: 1.5625rem;
  font-weight: 300;
  text-align: center;
}

.services {
  padding: 11.25rem 1.25rem;
}
@media screen and (min-width: 576px) {
  .services {
    padding: 11.25rem 2.5rem;
  }
}
.services .text {
  text-align: center;
  margin: auto;
  margin-bottom: 2.5rem;
}
.services .text h3 {
  margin: 0;
}
.services .text h2 {
  font-weight: 700;
  margin-bottom: 1.25rem;
}
@media screen and (min-width: 768px) {
  .services-container {
    padding: 0rem 8.125rem;
  }
}
@media screen and (min-width: 992px) {
  .services-container {
    padding: 0rem;
    align-items: stretch;
  }
}
.services-container > div {
  margin-bottom: 1.25rem;
}
@media screen and (min-width: 576px) {
  .services-container > div {
    padding: 0.9375rem;
  }
}
.services .btn {
  margin-top: 4.0625rem;
}

.showcase {
  background: #00b2ff;
  color: #f2f2f2;
  padding: 5rem 1.25rem;
  justify-content: center;
}
@media screen and (min-width: 768px) {
  .showcase {
    justify-content: initial;
    align-items: center;
  }
}
@media screen and (min-width: 992px) {
  .showcase {
    justify-content: initial;
    align-items: initial;
  }
}
.showcase-img {
  text-align: center;
}
.showcase-img img {
  width: 40%;
}
@media screen and (min-width: 768px) {
  .showcase-img img {
    width: 60%;
  }
}
@media screen and (min-width: 992px) {
  .showcase-img img {
    width: 40%;
  }
}
.showcase-text {
  margin-top: 2.5rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .showcase-text {
    text-align: left;
  }
}
.showcase-text h3 {
  font-weight: 700;
  margin-bottom: 2.5rem;
}
.showcase-text p {
  line-height: 1.8;
}
@media screen and (min-width: 992px) {
  .showcase-text p {
    width: 80%;
  }
}
.showcase-link {
  color: #f2f2f2;
  font-weight: 800;
  text-transform: uppercase;
}

.portfolio {
  padding: 7.5rem 1.25rem;
  text-align: center;
}
@media screen and (min-width: 992px) {
  .portfolio {
    padding: 7.5rem 5rem;
  }
}
.portfolio .heading-3 {
  margin-bottom: 5rem;
}
.portfolio .row {
  justify-content: space-around;
}
.portfolio-item {
  margin-bottom: 1.25rem;
}
.portfolio .btn {
  margin-top: 6.25rem;
}

.testimonials {
  text-align: center;
  padding: 7.5rem 0rem;
}
.testimonials-text {
  width: 80%;
  margin: 0 auto 5rem;
}
@media screen and (min-width: 768px) {
  .testimonials-text {
    width: 60%;
  }
}
.testimonials-quote {
  background-image: url("/images/map3.png");
  background-size: cover;
  background-position: center;
  padding: 5rem 1.25rem;
  text-align: left;
}
.testimonials-quote .row {
  justify-content: center;
}
@media screen and (min-width: 768px) {
  .testimonials-quote .row {
    flex-wrap: nowrap;
  }
}
.testimonials-quote [class*=col] {
  border-radius: 5px;
}
.testimonials-quote .text {
  box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.2) !important;
  padding: 7.5rem 2.5rem;
  line-height: 1.8;
  font-size: 1.25rem;
  position: relative;
}
@media screen and (min-width: 768px) {
  .testimonials-quote .text {
    transform: translate(1.25rem, 0.625rem);
  }
}
@media screen and (min-width: 992px) {
  .testimonials-quote .text {
    transform: translate(1.875rem, 1.875rem);
  }
}
@media screen and (min-width: 1200px) {
  .testimonials-quote .text {
    padding: 7.5rem;
  }
}
.testimonials-quote .text-description {
  font-style: italic;
}
@media screen and (min-width: 768px) {
  .testimonials-quote .text-description {
    width: 90%;
  }
}
.testimonials-quote .text-summary {
  border-left: 10px solid #1c1c1c;
  padding-left: 0.9375rem;
}
@media screen and (min-width: 576px) {
  .testimonials-quote .text-summary {
    transform: translateX(2.8125rem);
  }
}
.testimonials-quote .text-summary p {
  font-weight: 600;
  margin: 0;
}
.testimonials-quote .text-summary p:last-child {
  font-weight: 400;
  text-transform: uppercase;
}
.testimonials-quote .text [class*=quote] {
  width: 7.5rem;
  position: absolute;
}
.testimonials-quote .text .quote-left {
  left: 2.5rem;
  top: 1.25rem;
}
.testimonials-quote .text .quote-right {
  right: 2.5rem;
  bottom: 1.25rem;
}
.testimonials-quote .text .thumb {
  width: 5rem;
  border-radius: 50%;
  position: absolute;
  left: 1.875rem;
  bottom: 1.25rem;
}
@media screen and (min-width: 576px) {
  .testimonials-quote .text .thumb {
    bottom: 6.25rem;
    left: unset;
    right: 2.5rem;
    width: 6.25rem;
  }
}
@media screen and (min-width: 768px) {
  .testimonials-quote .text .thumb {
    display: none;
  }
}
.testimonials-quote .img img {
  width: 100%;
  border-radius: 5px;
  box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.2) !important;
  display: none;
}
@media screen and (min-width: 768px) {
  .testimonials-quote .img img {
    display: unset;
    transform: translate(-3.75rem, -3.75rem);
  }
}
@media screen and (min-width: 992px) {
  .testimonials-quote .img img {
    transform: translate(-1.875rem, -0.9375rem);
    width: 75%;
  }
}
.testimonials-link {
  transform: scale(0.8);
}
@media screen and (min-width: 576px) {
  .testimonials-link {
    transform: scale(1);
  }
}

.partners {
  padding: 15.625rem 0rem;
}
.partners-text {
  text-align: center;
  margin-bottom: 2.5rem;
}
.partners-slide {
  padding: 0.625rem 0rem;
  align-items: center;
}
.partners-slide [class*=col] {
  text-align: center;
  margin-bottom: 0.9375rem;
}
.partners-slide img {
  width: 80%;
}
@media screen and (min-width: 768px) {
  .partners-slide img {
    width: 68%;
  }
}

.sticker {
  padding: 2.5rem 1.25rem;
  background: #1c1c1c;
  color: #a6a6a6;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  text-align: center;
}
@media screen and (min-width: 992px) {
  .sticker {
    padding: 0.625rem 5rem;
    flex-direction: row;
    text-align: left;
  }
}
.sticker p {
  font-size: 2rem;
  font-weight: 300;
}
.sticker .cyaen {
  font-weight: 600;
}

.cyaen {
  color: #00b2ff;
}

footer {
  padding: 2.5rem 2.5rem 0.625rem;
  position: relative;
  color: #a6a6a6;
  background-image: linear-gradient(rgba(255, 255, 255, 0.025), rgba(255, 255, 255, 0.025)), url("/images/map3.png");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
@media screen and (min-width: 992px) {
  footer {
    display: flex;
    flex-direction: column;
  }
}
@media screen and (min-width: 768px) {
  footer {
    padding-top: 3.75rem;
  }
}
footer .copyright {
  text-align: center;
  padding-top: 2.5rem;
}
@media screen and (min-width: 992px) {
  footer .copyright {
    text-align: left;
  }
}
footer .copyright img {
  width: 11.25rem;
}
footer .copyright p {
  font-size: 0.75rem;
  margin-top: 5px;
  font-weight: 700;
}
footer .content {
  font-size: 0.875rem;
}
@media screen and (min-width: 992px) {
  footer .content {
    order: 2;
  }
}
footer .content-item {
  margin-bottom: 1.25rem;
}
footer .content-item h4 {
  text-transform: uppercase;
  font-weight: 600;
}
footer .content-item ul {
  list-style-type: none;
  padding: 0;
}
footer .content-item li {
  margin-bottom: 0.625rem;
}
footer .content-item a {
  color: inherit;
}
footer .content-item i {
  margin-right: 15px;
}

.void {
  height: 40vh;
}

.txt {
  border-right: 0.2rem solid #00b2ff;
  animation: type 0.5s infinite ease-in-out;
}

@keyframes type {
  from {
    border-right: 0.2rem solid #00b2ff;
  }
  to {
    border-right: 0.2rem solid transparent;
  }
}
.masthead.enquire {
  height: 80vh;
  background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("/images/telephone-black.jpg");
  background-position: center;
}
.masthead.enquire img {
  height: 250px;
  opacity: 0;
  animation: xslide-up 2s ease-in-out 0.4s forwards;
}
.masthead.enquire h1 {
  width: 100%;
}

.masthead.success {
  height: 80vh;
  background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("/images/success.jpg");
  background-position: center;
}
.masthead.success img {
  height: 250px;
  opacity: 0;
  animation: xslide-up 2s ease-in-out 0.4s forwards;
}
.masthead.success h1 {
  width: 100%;
}

.cyaen-form {
  padding: 1.25rem 0rem 11.25rem;
}
@media screen and (min-width: md) {
  .cyaen-form {
    padding: 1.25rem 0rem 11.25rem;
  }
}

main.enquire {
  padding: 1.25rem;
}
@media screen and (min-width: 576px) {
  main.enquire {
    padding: 2.5rem;
  }
}

main.success {
  padding: 7.5rem 1.25rem;
  color: #404040;
  text-align: center;
}
main.success img {
  height: 250px;
}
@media screen and (min-width: 576px) {
  main.success {
    padding: 7.5rem 2.5rem;
  }
}

.preloader1 {
  height: 100vh;
  width: 100vw;
  background: rgba(255, 255, 255, 0.98);
  display: none;
  opacity: 0;
  z-index: 700;
  position: fixed;
  bottom: 0;
  left: 0;
  transition: all 0.6s ease-in-out;
}

.preloader1.active {
  display: block;
  opacity: 1;
}

.preloader {
  height: 0vh;
  width: 100vw;
  display: flex;
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 800;
  display: none;
  overflow: hidden;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition: all 0.6s ease-in-out;
}

.preloader.active {
  display: flex;
  height: 60vh;
}

.preloader img {
  width: 10%;
  margin-bottom: 4rem;
}

#loading {
  opacity: 0;
  font-size: 1.5rem;
  animation: flash 2s ease-in-out infinite forwards;
}

@keyframes flash {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes xslide-in {
  from {
    opacity: 0;
    transform: translateX(500px);
  }
  to {
    opacity: 1;
    transform: translateX(0px);
  }
}
@keyframes xslide-up {
  from {
    opacity: 0;
    transform: translateY(500px);
  }
  to {
    opacity: 1;
    transform: translateX(0px);
  }
}

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