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

body {
  max-width: 1920px;
  margin: 0 auto;
  font-size: 18px;
  font-family: "source-sans-pro", sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
  color: #001336;
}

body .hero header {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  line-height: 1;
  padding: 30px 100px 0;
  position: relative;
  z-index: 1;
}

body .hero header .logo {
  line-height: 0;
}

body .hero header nav {
  flex-grow: 1;
}

body .hero header nav.mobile-show {
  text-align: right;
}

body .hero header nav.mobile-show > ul li a {
  font-weight: 400;
}

body .hero header nav .mobile-menu {
  display: none;
  cursor: pointer;
}

body .hero header nav .mobile-menu div {
  border-radius: 50px;
  width: 30px;
  height: 4px;
  background: #28a2ab;
  margin-bottom: 6px;
  margin-left: 60px;
}

body .hero header nav > ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  max-width: 100%;
  margin: 0;
}

body .hero header nav > ul li {
  max-width: 100%;
  margin: 0;
}

body .hero header nav > ul li a {
  color: #002366;
  padding: 12px 20px;
  font-weight: 700;
  text-decoration: none;
}

body .hero header nav > ul li a:hover {
  color: #54cad3;
}

body .hero header nav.mobile-show {
  background: #002366;
  position: absolute;
  top: -25px;
  right: 0;
  width: 100%;
  padding-top: 60px;
  padding-bottom: 30px;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.75);
  transition: all 0.3s;
}

body .hero header nav.mobile-show .mobile-menu {
  filter: contrast(0%);
  margin: 0 20px 20px 20px;
}

body .hero header nav.mobile-show .mobile-menu div {
  transition: all 0.2s ease-in;
}

body .hero header nav.mobile-show .mobile-menu div:nth-child(1) {
  transform: translateY(5px) rotate(45deg);
}

body .hero header nav.mobile-show .mobile-menu div:nth-child(2) {
  opacity: 0;
}

body .hero header nav.mobile-show .mobile-menu div:nth-child(3) {
  transform: translateY(-15px) rotate(-45deg);
}

body .hero header nav.mobile-show > ul {
  display: block;
}

body .hero header nav.mobile-show > ul > li {
  padding: 0;
}

body .hero header nav.mobile-show > ul > li > a {
  display: block;
  color: #ffffff;
  border-radius: 0;
  padding-top: 20px;
  padding-bottom: 20px;
}

body .hero header .call a {
  font-size: 36px;
  font-weight: 700;
  color: #54cad3;
  text-decoration: none;
}

body .hero > img {
  margin-top: -200px;
  width: 100%;
  height: auto;
}

body section,
body .section {
  padding: 100px;
}

body section.main-content,
body .section.main-content {
  padding: 50px 0;
}

body section.main-content .container,
body .section.main-content .container {
  padding: 100px;
  display: flex;
  gap: 120px;
  margin: auto;
  align-items: center;
}

body section.main-content .container > div:first-child,
body .section.main-content .container > div:first-child {
  width: 40%;
}

body section.main-content .container + .container,
body .section.main-content .container + .container {
  padding-top: 0;
  flex-direction: row-reverse;
}

body section.main-content .container .gallery,
body .section.main-content .container .gallery {
  display: flex;
  flex-wrap: wrap;
  width: 50%;
}

body section.main-content .container .gallery img,
body .section.main-content .container .gallery img {
  width: 50%;
  margin-top: 0;
}

body section.main-content .container .video-container,
body .section.main-content .container .video-container {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 56.25%;
  margin-bottom: 30px;
}

body section.main-content .container .video-container iframe,
body .section.main-content .container .video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

body section.main-content .sub-content,
body .section.main-content .sub-content {
  background: rgba(84, 202, 211, 0.15);
  padding: 60px;
  margin-bottom: 30px;
  max-width: 900px;
}

body section.main-content .small-list li,
body .section.main-content .small-list li {
  list-style: disc;
  margin-left: 20px;
}

body section.service-list,
body .section.service-list {
  background: #d7e8f7;
  padding-left: 10px;
  padding-right: 10px;
}

body section.service-list h2,
body .section.service-list h2 {
  text-align: center;
  margin-bottom: 60px;
}

body section.service-list ul,
body .section.service-list ul {
  display: grid;
  grid-gap: 10px;
  grid-template-columns: repeat(5, 1fr);
  max-width: 100%;
}

body section.service-list ul li,
body .section.service-list ul li {
  position: relative;
  margin-bottom: 0;
}

body section.service-list ul li img,
body .section.service-list ul li img {
  display: block;
  width: 100%;
  height: auto;
  filter: grayscale(100%) contrast(90%);
  transition: .7s all ease-in-out;
}

body section.service-list ul li:hover img,
body .section.service-list ul li:hover img {
  filter: none;
}

body section.service-list ul li:hover a,
body .section.service-list ul li:hover a {
  color: #001336;
  text-shadow: none;
  filter: drop-shadow(0 0 3px white) drop-shadow(0 0 5px white);
}

body section.service-list ul li h3,
body .section.service-list ul li h3 {
  margin-bottom: 0;
}

body section.service-list ul li h3::before,
body .section.service-list ul li h3::before {
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  background: #002f73;
  mix-blend-mode: multiply;
  position: absolute;
  top: 0;
  left: 0;
  transition: .7s all ease-in-out;
}

body section.service-list ul li h3:hover::before,
body .section.service-list ul li h3:hover::before {
  background: rgba(0, 0, 0, 0.25);
  mix-blend-mode: normal;
}

body section.service-list ul li h3 a,
body .section.service-list ul li h3 a {
  padding: 10px 20px;
  color: #54cad3;
  font-size: 36px;
  text-align: center;
  font-weight: bold;
  filter: drop-shadow(0 0 5px #001336) drop-shadow(0 0 10px #001336);
  text-decoration: none;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  position: absolute;
  top: 0;
  justify-content: center;
}

body section.testimonials,
body .section.testimonials {
  background: #002366 url("../images/quotes.png") no-repeat 7% 100px;
  background-size: 8%;
  padding: 0 0 0 19%;
  overflow: hidden;
}

body section.testimonials .container,
body .section.testimonials .container {
  background: #ffffff;
  padding: 100px 100px 100px 60px;
  display: flex;
  gap: 60px;
}

body section.testimonials .container > div,
body .section.testimonials .container > div {
  width: 53%;
}

body section.testimonials .container > div + div,
body .section.testimonials .container > div + div {
  width: 47%;
}

body section.testimonials .container > div img,
body .section.testimonials .container > div img {
  width: 100%;
  height: auto;
  max-width: 800px;
}

body section.testimonials .container .testimonial-list,
body .section.testimonials .container .testimonial-list {
  display: flex;
}

body section.testimonials .container .testimonial-list blockquote,
body .section.testimonials .container .testimonial-list blockquote {
  font-size: 24px;
  line-height: 1.3;
}

body section.testimonials .container .testimonial-list blockquote cite,
body .section.testimonials .container .testimonial-list blockquote cite {
  display: block;
  margin-top: 30px;
}

body section#contact-form,
body .section#contact-form {
  background: #d7e8f7;
  text-align: left;
  color: #001336;
  padding: 0;
}

body section#contact-form .container,
body .section#contact-form .container {
  display: flex;
}

body section#contact-form .container > div,
body .section#contact-form .container > div {
  padding: 100px;
  padding-right: 30px;
}

body section#contact-form .container > div:first-child,
body .section#contact-form .container > div:first-child {
  background: url(../images/paper-plane.jpg) calc(100% - 100px) calc(100% - 50px) no-repeat;
  padding-bottom: 300px;
}

body section#contact-form .container > div:last-child,
body .section#contact-form .container > div:last-child {
  width: 50%;
  background: rgba(40, 162, 171, 0.15);
  padding-right: 100px;
  padding-left: 30px;
}

body section#contact-form .container > div:last-child form .form-group,
body .section#contact-form .container > div:last-child form .form-group {
  display: flex;
  margin-bottom: 20px;
}

body section#contact-form .container > div:last-child form .form-group label,
body .section#contact-form .container > div:last-child form .form-group label {
  width: 100px;
}

body section#contact-form .container > div:last-child form .form-group input,
body section#contact-form .container > div:last-child form .form-group textarea,
body .section#contact-form .container > div:last-child form .form-group input,
body .section#contact-form .container > div:last-child form .form-group textarea {
  border: none;
  padding: 15px 10px;
  width: 100%;
  border-radius: 5px;
  flex: 1;
  font-size: 18px;
  font-family: "source-sans-pro", sans-serif;
  color: #28a2ab;
}

body section#contact-form .container > div:last-child form .submit,
body .section#contact-form .container > div:last-child form .submit {
  padding-left: 100px;
}

body section#contact-form .container > div:last-child form .btn,
body .section#contact-form .container > div:last-child form .btn {
  border: none;
  font-size: 18px;
  font-family: "source-sans-pro", sans-serif;
}

body section#contact-form .container > div:last-child form .error,
body .section#contact-form .container > div:last-child form .error {
  background: none;
  margin-bottom: 0;
  padding: 0;
}

body section#contact-form .container > div:last-child form .error div,
body .section#contact-form .container > div:last-child form .error div {
  display: none;
  margin-bottom: 10px;
  background: #f64110;
  padding: 10px;
}

body section#contact-form .container > div:last-child form .error div p,
body .section#contact-form .container > div:last-child form .error div p {
  margin-bottom: 0;
}

body section#contact-form .container > div .status-box,
body .section#contact-form .container > div .status-box {
  color: white;
  padding: 10px;
  margin-bottom: 30px;
}

body section#contact-form .container > div .status-box.error,
body .section#contact-form .container > div .status-box.error {
  background: #f64110;
}

body section#contact-form .container > div .status-box.success,
body .section#contact-form .container > div .status-box.success {
  background: #398506;
}

body section#contact-form .container > div .status-box p,
body .section#contact-form .container > div .status-box p {
  margin-bottom: 0;
}

body section img,
body .section img {
  max-width: 100%;
  height: auto;
}

body .banner {
  background: #001336;
  text-align: center;
  color: rgba(255, 255, 255, 0.85);
  margin: 0 auto;
  padding-left: 15px;
  padding-right: 15px;
}

body .banner .container {
  max-width: 800px;
  margin: 0 auto;
}

body .banner *:last-child {
  margin-bottom: 0;
}

body footer {
  display: flex;
  justify-content: flex-end;
  background: #002366;
  color: rgba(255, 255, 255, 0.85);
  padding-left: 50px;
}

body footer .container {
  display: flex;
  gap: 100px;
}

body footer .container > div {
  justify-items: flex-end;
}

body footer .container .content {
  display: flex;
  flex-wrap: wrap;
  align-content: center;
}

body footer .container .content section {
  padding: 0;
  flex: 1;
}

body footer .container .content section.contact-info {
  max-width: 300px;
}

body footer .container .content section.contact-info > div {
  display: flex;
  margin-bottom: 60px;
}

body footer .container .content section.contact-info h2 {
  margin-bottom: 60px;
}

body footer .container .content section.hours {
  margin-top: 20px;
  max-width: 500px;
}

body footer .container .content section.hours > div {
  border: 3px solid #ffffff;
  padding-left: 60px;
  padding-right: 60px;
}

body footer .container .content section.hours > div h2 {
  text-align: center;
  position: relative;
  top: -23px;
  margin-bottom: 10px;
}

body footer .container .content section.hours > div h2 span {
  display: inline-block;
  background: #002366;
  padding: 0 5px;
}

body footer .container .content section.hours > div ul {
  padding: 0 10px;
  margin: 0 auto;
  max-width: 250px;
}

body footer .container .content section.hours > div li {
  display: flex;
  gap: 30px;
  margin-bottom: 10px;
}

body footer .container .content section.hours > div li span {
  display: inline-block;
  width: 50%;
}

body footer .container .content section.hours > div li span:first-child {
  font-weight: 700;
}

body footer .container .content section.hours > div p {
  padding: 0 10px 30px;
  margin: 30px auto 0;
  max-width: 250px;
}

body footer .container .content section .fa-solid {
  color: #54cad3;
  margin-right: 20px;
  font-size: 24px;
}

body footer .container .content section h2 {
  text-transform: uppercase;
}

body footer .container .map {
  line-height: 0;
}

body footer .container .map img {
  display: block;
  max-width: 800px;
}

body footer .container a {
  color: #54cad3;
  text-decoration: none;
  font-weight: 400;
}

body footer .container a:hover {
  color: rgba(255, 255, 255, 0.85);
}

body p,
body ul,
body li,
body iframe {
  margin-bottom: 30px;
  max-width: 900px;
}

body h1 {
  font-size: 36px;
  line-height: 1.1;
  background: #002366;
  padding: 50px 15px;
  text-align: center;
  color: #ffffff;
  font-size: 42px;
}

body h2 {
  font-size: 36px;
  line-height: 1.1;
  margin-bottom: 30px;
}

body h3 {
  font-size: 36px;
  line-height: 1.1;
  font-size: 24px;
  margin-bottom: 30px;
}

body ul {
  list-style: none;
}

body .btn {
  padding: 16px 60px;
  line-height: 1;
  font-weight: 700;
  color: white;
  background: #54cad3;
  border-radius: 7px;
  display: inline-block;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  position: relative;
}

body .btn:hover {
  background: #28a2ab;
  color: #ffffff;
}

body a {
  color: #28a2ab;
  font-weight: 700;
}

body a:hover {
  color: #54cad3;
}

body a,
body .btn {
  transition: .2s all ease-in-out;
}

body .fa-brands {
  font-size: 30px;
}

body strong {
  font-weight: 700;
}

body .hidden {
  display: none;
}

body .nowrap,
body .phone {
  white-space: nowrap;
}

body .break {
  overflow-wrap: break-word;
  display: inline-block;
  line-height: 1;
}

body .fullwidth {
  width: 100%;
  height: auto;
}

body.home section.main-content,
body.home .section.main-content {
  padding: 0;
}

body.home section.main-content .container > div:first-child,
body.home .section.main-content .container > div:first-child {
  width: auto;
}

body.home h1 {
  background: none;
  padding: 0;
  text-align: left;
  color: #001336;
  font-size: 36px;
  margin-bottom: 30px;
}

body.about section.main-content .container {
  max-width: 1400px;
  display: block;
}

body.about section.main-content .container > div {
  display: flex;
  gap: 30px;
  align-items: center;
  flex-direction: row-reverse;
}

body.about section.main-content .container > div + div {
  margin-top: 60px;
}

body.about section.main-content .container > div img {
  max-width: 400px;
}

@media screen and (max-width: 1700px) {
  body footer {
    padding: 100px 15px;
    margin: 0 auto;
  }
  body footer .container {
    align-items: center;
  }
  body footer .container .content section.contact-info h2 {
    font-size: 27px;
  }
  body footer .container .content section.hours > div h2 {
    font-size: 27px;
    top: -17px;
  }
  body footer .container .map {
    width: 50%;
  }
  body footer .container .map img {
    width: 100%;
    height: auto;
  }
}

@media screen and (max-width: 1600px) {
  body footer {
    display: block;
  }
  body footer .container {
    justify-content: center;
  }
  body footer .container .content {
    display: block;
  }
  body footer .container .content section.contact-info {
    max-width: 100%;
    margin-bottom: 60px;
  }
  body footer .container .content section.contact-info h2 {
    margin-bottom: 30px;
  }
  body footer .container .content section.contact-info > div {
    margin-bottom: 30px;
  }
}

@media screen and (max-width: 1400px) {
  body .hero > img {
    margin-top: -100px;
  }
  body section.main-content .container,
  body section.main-content .container + .container {
    flex-direction: column-reverse;
    gap: 50px;
  }
  body section.main-content .container > div:first-child,
  body section.main-content .container + .container > div:first-child {
    width: auto;
  }
  body section.main-content .container .gallery,
  body section.main-content .container + .container .gallery {
    width: 100%;
    max-width: 900px;
  }
  body.home section.main-content .container {
    gap: 100px;
  }
  body.about section.main-content .container > div {
    display: block;
    gap: 30px;
    align-items: center;
    flex-direction: row-reverse;
  }
  body.about section.main-content .container > div + div {
    margin-top: 60px;
  }
  body.about section.main-content .container > div img {
    max-width: 400px;
  }
}

@media screen and (max-width: 1300px) {
  body .hero header nav {
    position: absolute;
    top: 30px;
    right: 100px;
  }
  body .hero header nav .mobile-menu {
    display: inline-block;
  }
  body .hero header nav ul {
    display: none;
  }
  body .hero header .call {
    flex-grow: 1;
    text-align: right;
  }
  body section.service-list ul li h3 a {
    font-size: 27px;
  }
  body section.testimonials .container {
    flex-wrap: wrap;
  }
  body section.testimonials .container > div {
    width: 100%;
  }
  body section.testimonials .container > div + div {
    width: 100%;
  }
  body section#contact-form .container > div:first-child {
    background-position-x: calc(100% - 20px);
  }
}

@media screen and (max-width: 1100px) {
  body .hero header {
    padding-left: 15px;
    padding-right: 15px;
  }
  body .hero header nav {
    right: 15px;
  }
  body .hero > img {
    width: 120%;
    position: relative;
    left: -11%;
    display: block;
  }
  body section.main-content .sub-content {
    padding: 30px;
  }
  body section.service-list ul {
    grid-template-columns: repeat(3, 1fr);
  }
  body section#contact-form .container {
    display: block;
  }
  body section#contact-form .container > div {
    padding-right: 100px;
  }
  body section#contact-form .container > div:first-child {
    background: none;
    padding-bottom: 0;
  }
  body section#contact-form .container > div:last-child {
    width: 100%;
    padding: 50px 100px 100px;
  }
  body footer .container {
    flex-wrap: wrap;
  }
  body footer .container .content section.contact-info {
    text-align: center;
    margin-bottom: 100px;
  }
  body footer .container .content section.contact-info > div {
    flex-wrap: wrap;
  }
  body footer .container .content section.contact-info > div > * {
    width: 100%;
    margin: 0;
  }
  body footer .container .content section.hours {
    margin: 0 auto;
  }
  body footer .container .map {
    width: 100%;
    display: flex;
    justify-content: center;
  }
  body.home .hero {
    overflow: hidden;
  }
}

@media screen and (max-width: 900px) {
  body .hero header .logo img {
    width: 150px;
    height: auto;
  }
  body section.main-content {
    padding-top: 20px;
  }
  body section.main-content .container {
    padding-left: 15px;
    padding-right: 15px;
  }
  body section.service-list {
    padding-top: 50px;
    padding-bottom: 50px;
  }
  body section.service-list h2 {
    margin-bottom: 30px;
  }
  body section.testimonials {
    background-position-y: 50px;
  }
  body section.testimonials .container {
    padding: 50px 15px;
  }
  body section.testimonials .container h2 {
    font-size: 27px;
  }
  body section.testimonials .container .testimonial-list blockquote {
    font-size: 18px;
  }
  body section#contact-form .container > div:first-child, body section#contact-form .container > div:last-child {
    padding-left: 15px;
    padding-right: 15px;
  }
  body section#contact-form .container > div:first-child form .form-group, body section#contact-form .container > div:last-child form .form-group {
    display: block;
  }
  body section#contact-form .container > div:first-child form .submit, body section#contact-form .container > div:last-child form .submit {
    padding-left: 0;
  }
  body section#contact-form .container > div:first-child {
    padding-top: 50px;
  }
  body section#contact-form .container > div:last-child {
    padding-top: 30px;
    padding-bottom: 50px;
  }
  body .banner {
    padding-top: 50px;
    padding-bottom: 50px;
  }
  body h1 {
    padding-top: 20px;
    padding-bottom: 20px;
  }
}

@media screen and (max-width: 700px) {
  body .hero > img {
    margin-top: -50px;
  }
  body section.main-content .container.services {
    flex-direction: column;
    gap: 30px;
    padding-top: 15px;
    padding-bottom: 0;
  }
  body section.service-list ul {
    grid-template-columns: repeat(2, 1fr);
  }
  body section.service-list ul li:last-child {
    grid-column: auto / span 2;
  }
  body section.service-list h2 {
    font-size: 27px;
  }
  body .banner h2 {
    font-size: 27px;
  }
}

@media screen and (max-width: 500px) {
  body .hero > img {
    margin-top: -20px;
  }
  body .hero header {
    align-items: end;
  }
  body .hero header .call a {
    font-size: 27px;
  }
  body section.main-content .container {
    padding-top: 50px;
    padding-bottom: 50px;
    gap: 50px;
  }
  body section.service-list ul li h3 a {
    font-size: 18px;
  }
  body footer .container .content section.hours {
    width: 100%;
  }
  body footer .container .content section.hours > div {
    padding-left: 15px;
    padding-right: 15px;
  }
  body .btn {
    width: 100%;
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -195%, 0);
    transform: translate3d(0, -195%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.animate__fadeInDown {
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
}

/*@keyframes slideUp {
	0% {
	  bottom: -50%; }
	50% {
	  right: -50%; }
	100% {
	  right: 0; }
}*/
@keyframes flow {
  0% {
    margin-left: -200px;
  }
  100% {
    margin-left: calc(100% + 200px);
  }
}

@keyframes glow {
  0% {
    text-shadow: 0 0 5px #002366, 0 0 10px #002366, 0 0 20px #002366 0 40px #002366 0 80px #002366;
  }
  50% {
    text-shadow: 0 0 10px #00d4ff, 0 0 20px #00d4ff, 0 0 40px #00d4ff, 0 0 80px #00d4ff, 0 0 160px #00d4ff;
  }
  100% {
    text-shadow: 0 0 5px #002366, 0 0 10px #002366, 0 0 20px #002366, 0 0 40px #002366, 0 0 80px #002366;
  }
}

@keyframes pulse {
  0% {
    background: #002366;
  }
  100% {
    background: rgba(0, 35, 102, 0);
  }
}

@supports (-webkit-touch-callout: none) {
  body.home .hero,
  body .hero,
  body .section.banner {
    background-attachment: scroll;
  }
}
