@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Rubik:wght@300;400;500;600;700&display=swap");
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

.fullheight {
  height: calc(var(--vh, 1vh) * 100);
}

.hero {
  min-height: 100vh;
  width: 100vw;
  min-height: -webkit-fill-available;
  height: calc(var(--vh, 1vh) * 100);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 10vw;
  color: #072037;
  background: linear-gradient(to right, rgba(7, 32, 55, 0.9), rgba(7, 32, 55, 0.3)), url("../img/background.jpg") center top;
  background-size: cover;
}

.hero .mobile-only {
  display: none;
}

.hero .left-side {
  padding-right: 2rem;
  display: block;
  width: fit-content;
}

.hero .left-side .hero-title h1 {
  font-family: 'Rubik', sans-serif;
  font-weight: 700;
  font-size: 3rem;
  text-transform: uppercase;
  text-align: start;
  color: #fff;
}

.hero .left-side .name-text {
  display: flex;
  color: #fff;
}

.hero .left-side .name-text .red {
  color: #008B7D;
}

.hero .left-side .hero-text {
  display: flex;
  color: #fff;
}

.hero .left-side .hero-text .job, .hero .left-side .hero-text .space {
  padding: 10px 10px 0 0;
}

.hero .left-side .hero-text .pointer {
  display: flex;
  align-items: center;
  padding-right: 1rem;
}

.hero .left-side .btn {
  margin-top: 1rem;
  background-color: #008B7D;
  padding: 1rem;
  border-radius: 10px;
  color: #fff;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.1);
}

.hero .left-side .btn:hover {
  background: #005e55;
  color: #fff;
}

.hero .right-side .hero-img img {
  height: 300px;
}

@media screen and (max-width: 768px) {
  .hero .hero-title h1 {
    font-size: 35px !important;
  }
  .hero .hero-img {
    text-align: center;
  }
  .hero .hero-img img {
    height: 200px !important;
  }
  .hero .btn {
    font-size: 14px;
  }
}

@media screen and (max-width: 425px) {
  .hero {
    display: flex;
  }
  .hero .hero-img {
    display: none;
    padding-top: 1rem;
  }
}

@media screen and (max-width: 375px) {
  .hero .hero-title h1 {
    font-size: 30px !important;
  }
  .hero-img {
    text-align: center;
  }
  .hero-img img {
    height: 200px !important;
  }
  .btn {
    font-size: 12px !important;
  }
}

@media screen and (max-width: 320px) {
  .hero .hero-title h1 {
    font-size: 25px !important;
  }
  .hero .btn {
    font-size: 10px !important;
  }
}

.main-header {
  position: fixed;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 65px;
  width: 100vw;
  padding: 0 10vw;
  color: #fff;
  z-index: 2;
  transition: .4s ease-out;
}

.main-header .logo img {
  width: 130px;
}

.main-header a {
  text-decoration: none;
  color: inherit;
  text-transform: uppercase;
}

.main-header .nav-links {
  display: flex;
  list-style: none;
  align-items: center;
}

.main-header .nav-links .active {
  color: #008B7D;
  font-weight: 600;
}

.main-header .nav-links .nav-link {
  transition: opacity 0.4s ease-in-out, transform 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.main-header .nav-links .nav-link:nth-of-type(2) {
  transition-delay: .8s;
}

.main-header .nav-links .nav-link:nth-of-type(3) {
  transition-delay: .9s;
}

.main-header .nav-links .nav-link:nth-of-type(4) {
  transition-delay: 1s;
}

.main-header .nav-links .nav-link a {
  margin: .2rem;
  padding: 1rem .5rem;
}

.main-header .nav-links .nav-link a:hover {
  color: #008B7D;
  border-bottom: 3px solid #008B7D;
}

.main-header .menu-icon {
  position: relative;
  padding: 26px 10px;
  cursor: pointer;
  z-index: 1;
  display: none;
}

.main-header .menu-icon__line {
  display: block;
  position: relative;
  background: #008B7D;
  height: 2px;
  width: 20px;
  border-radius: 4px;
  transition: background .8s ease;
}

.main-header .menu-icon__line::before, .main-header .menu-icon__line::after {
  content: '';
  position: absolute;
  height: 100%;
  width: 100%;
  border-radius: 4px;
  background: #008B7D;
  transition: background .8s ease;
}

.main-header .menu-icon__line::before {
  transform: translateY(-5px);
}

.main-header .menu-icon__line::after {
  transform: translateY(5px);
}

.main-header .menu-btn {
  position: absolute;
  top: -100px;
}

.main-header .menu-btn:focus ~ .menu-icon .menu-icon__line::before {
  transform: translateY(-7px);
}

.main-header .menu-btn:focus ~ .menu-icon .menu-icon__line::after {
  transform: translateY(7px);
}

.main-header.scrolled {
  height: 60px;
  background-color: #072037;
  color: #fff;
  box-shadow: 0 3px 5px rgba(57, 63, 72, 0.3);
}

.main-header.scrolled img {
  width: 130px;
}

.main-header.scrolled .menu-icon__line, .main-header.scrolled .menu-icon__line::before, .main-header.scrolled .menu-icon__line::after {
  background: #008B7D;
}

@media screen and (max-width: 425px) {
  .logo img {
    width: 100px !important;
  }
}

@media screen and (max-width: 375px) {
  .logo img {
    width: 75px !important;
  }
}

@keyframes pulse {
  from {
    box-shadow: 0 0 0 0px rgba(255, 255, 255, 0.6);
    background: rgba(255, 255, 255, 0.6);
  }
  to {
    box-shadow: 0 0 0 0px rgba(255, 255, 255, 0);
    background: rgba(255, 255, 255, 0);
  }
}

@keyframes openTop {
  0% {
    transform: translateY(-5px) rotate(0deg);
  }
  50% {
    transform: translateY(0px) rotate(0deg);
  }
  100% {
    transform: translateY(0px) rotate(90deg);
  }
}

@keyframes closedTop {
  0% {
    transform: translateY(-5px) rotate(0deg);
  }
  50% {
    transform: translateY(0px) rotate(0deg);
  }
  100% {
    transform: translateY(0px) rotate(90deg);
  }
}

@keyframes openMid {
  50% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(45deg);
  }
}

@keyframes closedMid {
  50% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(45deg);
  }
}

@keyframes openBtm {
  0% {
    transform: translateY(5px) rotate(0deg);
  }
  50% {
    transform: translateY(0px) rotate(0deg);
  }
  100% {
    transform: translateY(0px) rotate(90deg);
  }
}

@keyframes closedBtm {
  0% {
    transform: translateY(5px) rotate(0deg);
  }
  50% {
    transform: translateY(0px) rotate(0deg);
  }
  100% {
    transform: translateY(0px) rotate(90deg);
  }
}

@keyframes slideInUp {
  0% {
    opacity: 0;
    transform: translateY(50%);
  }
  100% {
    opacity: 1;
    transform: none;
  }
}

@keyframes slideInDown {
  0% {
    opacity: 0;
    transform: translateY(-50%);
  }
  100% {
    opacity: 1;
    transform: none;
  }
}

@keyframes slideInleft {
  0% {
    opacity: 0;
    transform: translateX(50%);
  }
  100% {
    opacity: 1;
    transform: none;
  }
}

@keyframes slideInRight {
  0% {
    opacity: 0;
    transform: translateX(-50%);
  }
  100% {
    opacity: 1;
    transform: none;
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes zoomIn {
  0% {
    opacity: 0;
    transform: scale(0.5);
  }
  100% {
    opacity: 1;
    transform: none;
  }
}

@keyframes zoomReverseIn {
  0% {
    opacity: 0;
    transform: scale(1.5);
  }
  100% {
    opacity: 1;
    transform: none;
  }
}

@keyframes flipInY {
  0% {
    opacity: 0;
    transform: rotateY(90deg);
  }
  100% {
    opacity: 1;
    transform: none;
  }
}

[data-animation] {
  opacity: 0;
  animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  animation-fill-mode: both;
  animation-duration: 1s;
}

.animations-disabled, .animations-disabled [data-animation] {
  animation: none !important;
  opacity: 1 !important;
}

.slideInUp {
  animation-name: slideInUp;
}

.slideInDown {
  animation-name: slideInDown;
}

.slideInLeft {
  animation-name: slideInleft;
}

.slideInRight {
  animation-name: slideInRight;
}

.fadeIn {
  animation-name: fadeIn;
}

.fadeOut {
  animation-name: fadeIn;
  animation-direction: reverse;
}

.zoomIn {
  animation-name: zoomIn;
}

.zoomOut {
  animation-name: zoomIn;
  animation-direction: reverse;
}

.zoomReverseIn {
  animation-name: zoomReverseIn;
}

.zoomReverseOut {
  animation-name: zoomReverseIn;
  animation-direction: reverse;
}

.flipInY {
  animation-name: flipInY;
}

.flipOutY {
  animation-name: flipInY;
  animation-direction: reverse;
}

#footer {
  width: 100vw;
  padding: 1rem 0;
  background-color: #072037;
  margin-top: 2rem;
}

#footer .container {
  max-width: 1170px;
  margin: auto;
}

#footer .container .logo {
  display: flex;
  justify-content: center;
  padding: 1rem 0 0 0;
}

#footer .container .copyright {
  text-align: center;
  color: #fff;
  font-size: 10px;
}

#footer .container a {
  text-decoration: none;
  color: inherit;
  text-transform: uppercase;
}

#footer .container .quick-links {
  padding: 1rem 0;
  display: flex;
  list-style: none;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 12px;
}

#footer .container .quick-links .quick-link {
  transition: opacity 0.4s ease-in-out, transform 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

#footer .container .quick-links .quick-link:nth-of-type(2) {
  transition-delay: .8s;
}

#footer .container .quick-links .quick-link:nth-of-type(3) {
  transition-delay: .9s;
}

#footer .container .quick-links .quick-link:nth-of-type(4) {
  transition-delay: 1s;
}

#footer .container .quick-links .quick-link a {
  margin: .2rem;
  padding: 1rem .5rem;
}

#footer .container .quick-links .quick-link a:hover {
  color: #008B7D;
  border-bottom: 3px solid #008B7D;
}

#footer .container .row {
  margin: 0 auto;
  display: flex;
  justify-content: center;
}

#footer .container .row .footer-col {
  padding: 1rem 0;
}

#footer .container .row .footer-col p {
  color: #fff;
}

#footer .container .row .footer-col .footer-socials {
  display: flex;
  align-items: center;
  justify-content: center;
}

#footer .container .row .footer-col .footer-socials i {
  color: #fff;
  height: 60px;
  width: 60px;
  background-color: #03121f;
  margin: 0 10px 10px 0;
  text-align: center;
  line-height: 60px;
  border-radius: 50%;
  transition: all 0.5s ease;
}

#footer .container .row .footer-col .footer-socials i:hover {
  color: #fff;
  background-color: #008B7D;
}

@media screen and (max-width: 425px) {
  .footer-socials {
    display: block !important;
    margin: 2rem !important;
    text-align: center !important;
  }
}

@media screen and (max-width: 768px) {
  .main-header .menu-icon {
    display: block;
  }
  .main-header .menu-icon__line {
    animation: closedMid 0.8s backwards;
    animation-direction: reverse;
  }
  .main-header .menu-icon__line::before {
    animation: closedTop 0.8s backwards;
    animation-direction: reverse;
  }
  .main-header .menu-icon__line::after {
    animation: closedBtm 0.8s backwards;
    animation-direction: reverse;
  }
  .main-header .nav-links {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;
    padding: 10rem 0;
    width: 100vw;
    height: 100vh;
    font-size: 2rem;
    color: #008B7D;
    background: #072037;
    transition: opacity .8s .5s;
    clip-path: 1s .5s;
    clip-path: circle(200px at top right);
  }
  .main-header .nav-links .nav-link {
    opacity: 0;
    transform: translateX(100%);
    width: 100%;
    text-align: center;
  }
  .main-header .nav-links .nav-link a {
    display: block;
    padding: 2rem 0;
  }
  .main-header .menu-btn:checked ~ .nav-links {
    opacity: 1;
    clip-path: circle(100% at center);
  }
  .main-header .menu-btn:checked ~ .nav-links .nav-link {
    opacity: 1;
    transform: translateX(0);
    transition: opacity 0.4s ease-in-out, transform 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  }
  .main-header .menu-btn:checked ~ .nav-links .nav-link:nth-of-type(1) {
    transition-delay: .7s;
  }
  .main-header .menu-btn:checked ~ .nav-links .nav-link:nth-of-type(2) {
    transition-delay: .8s;
  }
  .main-header .menu-btn:checked ~ .nav-links .nav-link:nth-of-type(3) {
    transition-delay: .9s;
  }
  .main-header .menu-btn:checked ~ .nav-links .nav-link:nth-of-type(4) {
    transition-delay: 1s;
  }
  .main-header .menu-btn:checked ~ .menu-icon {
    border-radius: 50%;
    animation: pulse 1s;
  }
  .main-header .menu-btn:checked ~ .menu-icon .menu-icon__line {
    background: #008B7D;
    animation: openMid 0.8s forwards;
  }
  .main-header .menu-btn:checked ~ .menu-icon .menu-icon__line::before {
    background: #008B7D;
    animation: openTop 0.8s forwards;
  }
  .main-header .menu-btn:checked ~ .menu-icon .menu-icon__line::after {
    background: #008B7D;
    animation: openBtm 0.8s forwards;
  }
}

@media screen and (max-width: 320px) {
  .title h3 {
    font-size: 1rem;
  }
  .nav-link a {
    padding: 1rem 0 !important;
  }
}

#about {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 10%;
}

#about .about-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

#about .about-banner .slogan {
  font-family: 'Rubik', sans-serif;
  font-weight: 700;
  font-size: 1.3rem;
  text-transform: uppercase;
  text-align: start;
  border-radius: 20px 0;
  color: #072037;
}

#about .about-banner .about-img img {
  height: 300px;
}

#about .jobs {
  width: 80vw;
  margin: 2rem auto 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  grid-gap: 1rem;
}

#about .jobs .jobs__job {
  position: relative;
  border-bottom: 5px solid #008B7D;
  overflow: hidden;
  cursor: pointer;
  border-radius: 10px;
  transition: transform .5s ease;
  box-shadow: 0 3px 5px rgba(57, 63, 72, 0.3);
}

#about .jobs .jobs__job::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 0;
  height: 100%;
  width: 100%;
  background: #008B7D;
  opacity: 0;
  transition: all 0.5s ease-in-out;
}

#about .jobs .jobs__job:hover::after {
  top: 0;
  opacity: 0.9;
}

#about .jobs .jobs__job:hover .cards-btn {
  opacity: 1;
}

#about .jobs .cards-btns {
  position: absolute;
  top: 0;
  height: 100%;
  width: 100%;
  z-index: 1;
  display: flex;
  align-items: center;
  text-align: center;
  align-content: center;
  justify-content: center;
}

#about .jobs .cards-btn {
  opacity: 0;
  color: #fff;
  transition: all 0.5s ease-in-out;
}

#about .jobs .cards-btn:hover {
  color: #000;
}

#about .jobs h3, #about .jobs h5, #about .jobs p {
  color: #fff;
}

#about .jobs__job {
  background: #072037;
  padding: 0.5rem;
  border-bottom: 5px solid #008B7D;
}

#about .jobs__job h2, #about .jobs__job h3 {
  margin: 0.5rem 0;
}

#about .jobs__job h6 {
  margin: 0.3rem 0;
}

@media screen and (max-width: 768px) {
  .about-banner .slogan h1 {
    font-size: 20px !important;
  }
  .about-banner .about-img img {
    height: 200px !important;
  }
}

@media screen and (max-width: 425px) {
  .about-banner {
    display: block !important;
  }
  .about-banner .slogan h1 {
    font-size: 25px !important;
  }
  .about-banner .about-img {
    text-align: center;
  }
}

@media screen and (max-width: 375px) {
  .about-banner .slogan h1 {
    font-size: 20px !important;
  }
  .about-banner .about-img img {
    height: 170px !important;
  }
}

@media screen and (max-width: 320px) {
  .about-banner .about-img img {
    height: 150px !important;
  }
}

#diensten {
  display: block;
  margin-top: 10%;
  padding-top: .3rem;
}

#diensten .diensten-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

#diensten .diensten-banner .slogan {
  font-family: 'Rubik', sans-serif;
  font-weight: 700;
  font-size: 1.3rem;
  text-transform: uppercase;
  text-align: start;
  border-radius: 20px 0;
  color: #072037;
  padding-bottom: 3rem;
}

#diensten .diensten-banner .diensten-img img {
  height: 300px;
}

#diensten .diensten-banner .mobile-only img {
  display: none;
}

#diensten .row {
  display: flex;
  justify-content: space-between;
}

#diensten .row .col {
  display: block;
}

#diensten .row .col .service, #diensten .row .col .diensten-img {
  display: flex;
  align-items: center;
  padding-bottom: .8rem;
}

#diensten .row .col .service i, #diensten .row .col .diensten-img i {
  color: #008B7D;
  padding-right: .5rem;
}

#diensten .row .col .service img, #diensten .row .col .diensten-img img {
  height: 300px;
}

@media screen and (max-width: 425px) {
  .diensten-banner {
    display: block !important;
  }
  .diensten-banner .slogan h1 {
    font-size: 25px !important;
  }
  .diensten-banner .mobile-only img {
    display: block !important;
    text-align: center;
    height: 200px;
  }
  .diensten-img img {
    display: none !important;
  }
  .row {
    display: block !important;
  }
}

#projects {
  display: block;
  margin-top: 10%;
  padding-top: .3rem;
}

#projects .projects-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

#projects .projects-banner .slogan {
  font-family: 'Rubik', sans-serif;
  font-weight: 700;
  font-size: 1.3rem;
  text-transform: uppercase;
  text-align: start;
  border-radius: 20px 0;
  color: #072037;
}

#projects .projects-banner .project-img img {
  height: 300px;
}

#projects .cards {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-gap: 1rem;
}

#projects .cards .newscard {
  position: relative;
  padding: 1rem;
  background-color: #072037;
  height: 100%;
  cursor: pointer;
  box-shadow: 0 3px 5px rgba(57, 63, 72, 0.3);
  text-align: center;
  border-radius: 10px;
}

#projects .cards .newscard .item {
  position: relative;
  border-bottom: 5px solid #008B7D;
  overflow: hidden;
  cursor: pointer;
}

#projects .cards .newscard .item img {
  width: 100%;
}

#projects .cards .newscard .item::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 0;
  height: 100%;
  width: 100%;
  background: #008B7D;
  opacity: 0;
  transition: all 0.5s ease-in-out;
}

#projects .cards .newscard .item:hover::after {
  top: 0;
  opacity: 0.9;
}

#projects .cards .newscard .item:hover .cards-btn {
  opacity: 1;
}

#projects .cards .newscard .cards-btns {
  position: absolute;
  top: 0;
  height: 100%;
  width: 100%;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-items: center;
  text-align: center;
  align-content: center;
}

#projects .cards .newscard .cards-btn {
  opacity: 0;
  color: #fff;
  transition: all 0.5s ease-in-out;
}

#projects .cards .newscard .cards-btn:hover {
  color: #000;
}

#projects .cards .sub-header {
  text-align: start;
}

#projects .cards .summary {
  font-size: 14px;
  font-weight: 500;
  color: #fff;
  text-align: start;
}

#projects .btn {
  color: #008B7D;
  cursor: pointer;
  font-weight: 700;
}

#projects .btn:hover {
  transform: scale(1.2);
}

@media (min-width: 900px) {
  .cards {
    grid-template-columns: repeat(3, 1fr) !important;
  }
}

@media (min-width: 766px) {
  .cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (max-width: 768px) {
  .projects-banner .slogan h1 {
    font-size: 20px !important;
  }
  .projects-banner .project-img img {
    height: 200px !important;
  }
  .projects-banner .newscard img {
    width: 250px !important;
  }
}

@media screen and (max-width: 425px) {
  .projects-banner {
    display: block !important;
  }
  .projects-banner .slogan h1 {
    font-size: 20px !important;
  }
  .projects-banner .project-img {
    text-align: center;
  }
}

@media screen and (max-width: 375px) {
  .projects-banner .slogan h1 {
    font-size: 20px !important;
  }
  .projects-banner .project-img img {
    height: 170px !important;
  }
}

@media screen and (max-width: 320px) {
  .project-img img {
    height: 150px !important;
  }
  .project-img .newscard img {
    width: 200px !important;
  }
}

#contact {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 10%;
}

#contact .contact-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

#contact .contact-banner .slogan {
  font-family: 'Rubik', sans-serif;
  font-weight: 700;
  font-size: 2rem;
  text-transform: uppercase;
  text-align: start;
  border-radius: 20px 0;
  color: #072037;
}

#contact .contact-banner .contact-img img {
  height: 300px;
}

#contact .message-box {
  background-color: #072037;
  height: fit-content;
  padding: 2rem;
  border-radius: 10px;
  transition: transform .5s ease;
  box-shadow: 0 3px 5px rgba(57, 63, 72, 0.3);
}

#contact .message-box .input-box {
  height: 50px;
  width: 100%;
  margin: 12px 0;
}

#contact .message-box .input-box input, #contact .message-box .input-box textarea {
  height: 100%;
  width: 100%;
  border: none;
  outline: none;
  font-size: 16px;
  background: #F0F1F8;
  border-radius: 6px;
  padding: 0 15px;
  resize: none;
}

#contact .message-box .input-box textarea {
  padding-top: 15px;
}

#contact .message-box .radio-btns {
  color: #fff;
  font-size: 16px;
}

#contact .message-box label {
  color: #fff;
}

#contact .message-box .messagebox {
  min-height: 110px;
}

#contact .message-box button[type="submit"] {
  display: inline-block;
  color: #fff;
  font-size: 18px;
  width: 100%;
  outline: none;
  border: none;
  padding: 1rem;
  border-radius: 10px;
  background: #008B7D;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.1);
}

#contact .message-box button[type="submit"]:hover {
  background: #005e55;
  color: #fff;
}

#contact .message-box .contact-socials {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 1rem;
}

#contact .message-box .contact-socials i {
  color: #fff;
  height: 60px;
  width: 60px;
  background-color: #03121f;
  margin: 0 10px 10px 0;
  text-align: center;
  line-height: 60px;
  border-radius: 50%;
  transition: all 0.5s ease;
}

#contact .message-box .contact-socials i:hover {
  color: #fff;
  background-color: #008B7D;
}

@media screen and (max-width: 768px) {
  .contact-banner .slogan h1 {
    font-size: 20px !important;
  }
  .contact-banner .contact-img img {
    height: 200px !important;
  }
}

@media screen and (max-width: 600px) {
  .contact-wrapper {
    padding: 2rem 0 !important;
  }
  .contact-wrapper .content {
    flex-direction: column-reverse;
  }
  .contact-wrapper .content .left-side {
    width: 100% !important;
    flex-direction: row;
    margin-top: 40px;
    justify-content: center;
    flex-wrap: wrap;
  }
  .contact-wrapper .content .left-side::before {
    display: none;
  }
  .contact-wrapper .content .right-side {
    margin-left: 0 !important;
  }
}

@media screen and (max-width: 425px) {
  .contact-banner {
    display: block !important;
  }
  .contact-banner .slogan h1 {
    font-size: 25px !important;
  }
  .contact-banner .contact-img {
    text-align: center;
  }
  .contact-socials {
    display: block !important;
    text-align: center !important;
  }
}

@media screen and (max-width: 375px) {
  .contact-banner .slogan h1 {
    font-size: 20px !important;
  }
  .contact-banner .contact-img img {
    height: 170px !important;
  }
}

@media screen and (max-width: 320px) {
  .contact-banner .contact-img img {
    height: 120px !important;
  }
}

#thanks {
  min-height: 100vh;
  width: 100vw;
  min-height: -webkit-fill-available;
  height: calc(var(--vh, 1vh) * 100);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 10vw;
  color: #072037;
  background: linear-gradient(to right, rgba(7, 32, 55, 0.9), rgba(7, 32, 55, 0.3)), url("../img/background.jpg") center top;
  background-size: cover;
}

#thanks .wrapper {
  padding: 2rem;
  height: 100%;
  background-color: #072037;
  box-shadow: 0 3px 5px rgba(57, 63, 72, 0.3);
  border-radius: 10px;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

#thanks .wrapper .sub-header {
  text-align: start;
}

#thanks .wrapper p {
  color: #fff;
}

#thanks .wrapper button {
  color: #fff;
  font-size: 18px;
  outline: none;
  border: none;
  padding: 1rem;
  border-radius: 6px;
  background: #008B7D;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.1);
}

#thanks .wrapper button:hover {
  background: #005e55;
}

body {
  min-height: 100vh;
  /* mobile viewport bug fix */
  min-height: -webkit-fill-available;
  font-family: 'Montserrat', sans-serif;
  background-color: #fff;
}

a {
  text-decoration: none;
}

.text-container {
  width: 80%;
  margin: 2rem auto;
}

.text-container p {
  margin: 1rem 0;
}

.text-container .text-secondary {
  color: #008B7D;
}

.text-container .header {
  font-size: 30px;
  font-weight: 700;
  color: #072037;
  margin-bottom: 35px;
  position: relative;
}

.text-container .header::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: -10px;
  background-color: #008B7D;
  height: 4px;
  box-sizing: border-box;
  width: 50px;
  border-radius: 10px;
}

.text-container .sub-header {
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 35px;
  position: relative;
}

.text-container .sub-header::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: -10px;
  background-color: #008B7D;
  height: 4px;
  box-sizing: border-box;
  width: 50px;
  border-radius: 10px;
}
/*# sourceMappingURL=main.css.map */