:root {
  --background-color: #f8fafc;
  --cookie-background: #0f172a;
  --text-color: #0f172a;
  --text-color-white: #ffffff;
  --text-color-dark-white: #94a3b8;

  --off-white: #f8fafc;

  --link-color: inherit;
  --link-hover-color: #e27f13;

  --main-color: #e27f13;
  --secondary-color: #004751;
  --secondary-color-transparent: rgb(0 71 81 / 0.76);
  --accent-teal: #00a896;

  --small-header-color: #004751;

  --form-color: var(--secondary-color);
  --form-color-focus: var(--main-color);

  --mid-page-color: #004751;

  --navigation-icon-color: var(--main-color);
  --font-heading: 'Montserrat', sans-serif;
  --font-body: 'Inter', sans-serif;
}

/* General */

html {
  height: 100%;
  width: 100vw;
  margin: 0;
  scroll-behavior: smooth;
  scroll-padding-top: 130px;
}

em {
  font-style: normal;
}

body {
  height: 100%;
  width: 100vw;
  display: flex;
  flex-direction: column;
  background: var(--background-color);
  color: var(--text-color);
  font-family: var(--font-body);
  margin: 0;
  line-height: 1.6;
}

a {
  /*text-decoration: none;*/
  color: var(--link-color);
  transition: color 100ms ease-out, text-decoration 100ms ease-out;
  -webkit-transition: color 100ms ease-out, text-decoration 100ms ease-out;
}

a:hover {
  color: var(--link-hover-color);
  text-decoration: underline;
}

a:focus {
  color: var(--link-hover-color);
  text-decoration: underline;
}

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  line-height: 1.2;
}

h1 {
  color: var(--secondary-color);
  font-weight: 700;
  font-size: 48px;
  margin-bottom: 24px;
}

h2 {
  color: var(--main-color);
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 30px;
}

span.no-break {
  white-space: nowrap;
}

.content {
  width: 60%;
  max-width: 1500px;
  margin: 0 auto;
}

#site-content {
  flex: 1 0 auto;
  margin: 40px 0 150px 0;
}

/* Background Color Blocks */

.colored-block {
  color: var(--text-color-white);
  padding: 40px 0 60px;
}

.colored-block h2 {
  margin-top: 0;
}

.colored-block.secondary {
  background: var(--mid-page-color);
  color: var(--text-color-white);
}

.colored-block.primary {
  background: var(--main-color);
}

.colored-block.primary h2 {
  color: var(--secondary-color);
}

/* Header */

header.small {
  /*height:60px;*/
  /*min-height: 60px;*/
  min-height: 140px;
  height: 100px;
  max-height: 100px;
  background: var(--secondary-color);
  padding: 0;
}

header.small .top-bar {
  width: 100%;
  max-width: 100vw;
  position: fixed;
  padding: 10px 0;
}

header.small .top-bar .content nav {
  display: none;
}

.company {
  display: flex;
  align-items: center;
  width: 100%;
  max-width: 1500px;
  margin: 0 auto;
  padding: 0 20px;
}

.company .logo-link {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: var(--off-white);
}

/*header.small .company .logo-link .logo img {*/
/*  width: 40px;*/
/*  height: 40px;*/
/*}*/

.company .logo-link .name {
  font-size: 20px;
  color: var(--off-white);
  margin-left: 15px;
  width: min-intrinsic;
  width: -webkit-min-content;
  width: -moz-min-content;
  width: min-content;
  display: table-caption;
  display: -ms-grid;
  -ms-grid-columns: min-content;
}

header.small .nav-button {
  font-size: 14px;
}

header {
  position: relative;
  background: var(--secondary-color);
  height: 80vh;
  min-height: 600px;
  width: 100%;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  z-index: 1; /* Add z-index to create a stacking context */
}

.hero-bg-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0, 71, 81, 0.8), rgba(0, 71, 81, 0.4));
  z-index: 1;
}

header > .content {
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 2;
}

#hero-canvas-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1; /* Place behind other content within the header */
  pointer-events: none;
}

#hero-canvas-container canvas {
  display: block;
  width: 100%;
  height: 100%;
}

header .top-bar {
  width: 100%;
  max-width: 100vw;
  padding: 15px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: all 0.3s ease;
  background: transparent;
}

header .top-bar.scrolled {
  background: rgba(0, 71, 81, 0.9);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 10px 0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

header .top-bar .content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 60%;
  max-width: 1500px;
  margin: 0 auto;
}

header .top-bar nav {
  display: flex;
  align-items: center;
  gap: 30px;
}

.nav-button {
  color: var(--off-white);
  text-decoration: none !important;
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  opacity: 0.8;
  position: relative;
  padding: 5px 0;
}

.nav-button::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--main-color);
  transition: width 0.3s ease;
}

.nav-button:hover, .nav-button.active {
  color: var(--off-white);
  opacity: 1;
}

.nav-button:hover::after, .nav-button.active::after {
  width: 100%;
}

.lang-toggle {
  display: flex;
  gap: 8px;
  margin-right: 10px;
  background: rgba(255, 255, 255, 0.1);
  padding: 4px;
  border-radius: 20px;
}

.lang-toggle .nav-button {
  padding: 4px 10px;
  font-size: 12px;
  border-radius: 16px;
  opacity: 0.6;
}

.lang-toggle .nav-button::after {
  display: none;
}

.lang-toggle .nav-button.active {
  background: var(--main-color);
  color: var(--off-white);
  opacity: 1;
}

.lang-toggle .nav-button:hover {
  opacity: 1;
}

#nav-icon {
  width: 30px;
  height: 22px;
  position: relative;
  margin-left: 15px;
  transform: rotate(0deg);
  transition: .5s ease-in-out;
  cursor: pointer;
  display: none;
  z-index: 1100; /* Ensure it stays above the menu when open */
}

#nav-icon span {
  display: block;
  position: absolute;
  height: 3px;
  width: 100%;
  background: var(--off-white);
  border-radius: 9px;
  opacity: 1;
  left: 0;
  transform: rotate(0deg);
  transition: .25s ease-in-out;
}

#nav-icon span:nth-child(1) { top: 0px; }
#nav-icon span:nth-child(2), #nav-icon span:nth-child(3) { top: 9px; }
#nav-icon span:nth-child(4) { top: 18px; }

#nav-icon.open span:nth-child(1) { top: 9px; width: 0%; left: 50%; }
#nav-icon.open span:nth-child(2) { transform: rotate(45deg); }
#nav-icon.open span:nth-child(3) { transform: rotate(-45deg); }
#nav-icon.open span:nth-child(4) { top: 9px; width: 0%; left: 50%; }

header .hero-content {
  position: relative;
  z-index: 1; /* Ensure content is above canvas */
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 0 50px;
  margin-top: 130px; /* Push below fixed top-bar */
}

header .hero-text {
  text-align: center;
  max-width: 900px;
  color: var(--text-color-white);
  padding: 0 20px;
}

header .hero-text h1 {
  color: var(--text-color-white);
  font-size: 64px;
  line-height: 1.1;
  margin-bottom: 24px;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

#hero-rotating-text {
  display: inline-block;
  transition: opacity 0.5s ease-in-out, transform 0.5s ease-in-out;
}

.hero-text-fade {
  opacity: 0;
  transform: translateY(10px);
}

header .hero-text .subtitle {
  font-size: 24px;
  margin-bottom: 40px;
  color: var(--text-color-dark-white);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.hero-buttons {
  position: absolute;
  z-index: 10;
  bottom: 20px;
  width: 100%;
  display: flex;
  gap: 20px;
  justify-content: center;
}

.btn {
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: all 300ms ease;
  font-size: 18px;
}

.btn.primary {
  background: var(--main-color);
  color: var(--off-white);
}

.btn.primary:hover {
  background: #ff9933;
  transform: translateY(-2px);
  text-decoration: none;
}

.btn.secondary {
  background: var(--off-white);
  color: var(--secondary-color);
  border: 2px solid var(--off-white);
}

.btn.secondary:hover {
  background: var(--off-white);
  color: var(--secondary-color);
  transform: translateY(-2px);
  text-decoration: none;
}

/* Business Points */

.points-slider-container {
  position: relative;
  display: flex;
  align-items: center;
  margin: 50px 0;
}

#points {
  scroll-margin-top: 100px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  padding: 10px 0;
  width: 100%;
}

#points::-webkit-scrollbar {
  display: none; /* Chrome, Safari and Opera */
}

#points .point-card {
  min-width: 350px;
  flex: 1 1 300px;
  max-width: 450px;
  background: var(--off-white);
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 300ms ease;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  box-sizing: border-box;
}

.points-slider-container .slider-btn {
  display: none;
}

@media all and (max-width: 1200px) {
  #points .point-card {
    min-width: 300px;
    max-width: 100%;

    /*max-width: 400px;*/
  }
}

@media all and (max-width: 1100px) {
  #points .point-card {
    /*min-width: calc(50% - 15px);*/
    /*max-width: calc(50% - 15px);*/
    max-width: 100%;
  }
}

@media all and (max-width: 600px) {
  #points .point-card {
    min-width: 100%;
    max-width: 100%;
  }
}

#points .point-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

#points .point-card .point-header {
  display: flex;
  align-items: center;
  justify-content: space-around;
  width: 100%;
  margin-bottom: 24px;
}

#points .point-card .icon {
  color: var(--main-color);
  /*margin-bottom: 24px;*/
  background: #fff7ed;
  padding: 15px;
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
}

#points .point-card .icon img {
  width: 40px;
  height: 40px;
  object-fit: contain;
  filter: invert(18%) sepia(87%) saturate(618%) hue-rotate(148deg) brightness(93%) contrast(106%);
}

#points .point-card .title {
  flex: 1;
  text-align: center;
  font-size: 24px;
  font-weight: 700;
  color: var(--secondary-color);
  margin-bottom: 16px;
}


#points .point-card .text .info {
  font-size: 16px;
  color: #475569;
  line-height: 1.6;
}

/* About and Team */

#about {
  scroll-margin-top: 60px;
  margin: 20px 0 50px;
}

#team {
  margin-bottom: 20px;
}

#team .member {
  display: flex;
  flex-direction: row;
  gap: 40px;
  align-items: center;
  background: rgba(255, 255, 255, 0.05);
  padding: 30px;
  border-radius: 20px;
  max-width: 100%;
}

#team .member .info {
  flex: 1;
  margin: 0;
}

#team .member .avatar img {
  border: 4px solid var(--main-color);
  width: 180px;
  height: 180px;
  object-fit: cover;
  border-radius: 50%;
  transition: all 400ms ease;
}

#team .member:hover .avatar img {
  transform: scale(1.05);
  border-color: var(--off-white);
}

/* Portfolio */

#portfolio {
  scroll-margin-top: 60px;
  margin: 20px 0 50px;
}

#portfolio .projects-container {
  position: relative;
  display: flex;
  align-items: center;
}

#portfolio .projects {
  display: flex;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  -ms-overflow-style: none; /* IE and Edge */
  scrollbar-width: none; /* Firefox */
  gap: 20px;
  padding: 10px 0;
}

#portfolio .projects::-webkit-scrollbar {
  display: none; /* Chrome, Safari and Opera */
}

#portfolio .projects .project {
  min-width: calc((100% - 40px) / 3);
  max-width: calc((100% - 40px) / 3);
  scroll-snap-align: start;
  flex: 0 0 auto;
  margin: 0;
  transition: color 200ms;
}

.slider-btn {
  background: rgba(255, 255, 255, 0.2);
  border: none;
  color: var(--secondary-color);
  font-size: 24px;
  cursor: pointer;
  padding: 10px;
  z-index: 10;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 200ms;
  position: absolute;
}

.slider-btn:hover {
  background: rgba(255, 255, 255, 0.4);
}

.slider-btn.prev {
  left: -50px;
}

.slider-btn.next {
  right: -50px;
}

@media all and (max-width: 1100px) {
  #portfolio .projects .project {
    min-width: calc((100% - 20px) / 2);
    max-width: calc((100% - 20px) / 2);
  }
  .slider-btn.prev { left: -30px; }
  .slider-btn.next { right: -30px; }
}

@media all and (max-width: 600px) {
  #portfolio .projects .project {
    min-width: 100%;
    max-width: 100%;
  }
  .slider-btn {
    /*display: none;*/
    position: absolute;
    bottom: -80px;
    transform: translateY(-50%);
  }
  .slider-btn.prev { left: 10px; }
  .slider-btn.next { right: 10px; }
}

/* Slider Dots and Timer */
.slider-controls {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 20px;
  gap: 15px;
}

.slider-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.slider-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: background 300ms, transform 300ms;
}

.slider-dot.active {
  background: var(--secondary-color-transparent);
  transform: scale(1.2);
}

.slider-timer {
  width: 200px;
  height: 4px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 2px;
  overflow: hidden;
  position: relative;
}

.timer-progress {
  height: 100%;
  width: 0;
  background: var(--secondary-color-transparent);
  transition: width 100ms linear;
}

@media all and (max-width: 600px) {
  .slider-controls {
    margin-top: 40px;
  }
}


#portfolio .projects .project .picture {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  aspect-ratio: 16 / 9;
  background: #f1f5f9;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transition: all 500ms ease;
}

#portfolio .projects .project .picture .blurred-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-size: cover;
  background-position: center;
  filter: blur(15px) brightness(0.8);
  z-index: 0;
}

#portfolio .projects .project .picture img,
#portfolio .projects .project .picture video {
  position: relative;
  width: 100%;
  height: 100%;
  object-fit: contain; /* Default */
  transition: all 500ms ease;
  /*filter: brightness(0.8);*/
}

/* Image fitting options */
#portfolio .projects .project .picture.fit img,
#portfolio .projects .project .picture.fit video {
  object-fit: contain;
}

#portfolio .projects .project .picture.cover img,
#portfolio .projects .project .picture.cover video {
  object-fit: cover;
}

#portfolio .projects .project .picture.extend img,
#portfolio .projects .project .picture.extend video {
  object-fit: contain;
}

.picture .bg {
  position: absolute;
  width: 100%;
  height: 100%;
  background-size: cover;
  transform: scale(1.1);
}

/* Background blur options */
#portfolio .projects .project .picture.blur-resized .blurred-bg {
  background-size: cover;
  transform: scale(1.1);
}

#portfolio .projects .project .picture.blur-extrude .blurred-bg {
  background-size: 150% 150%;
  transform: scale(1.2);
}

#portfolio .projects .project:hover .picture {
  /*transform: scale(1.05);*/
  box-shadow: 0 12px 24px rgba(0,0,0,0.15);
  transform: translateY(-10px);
}

#portfolio .projects .project .name {
  font-size: 24px;
  font-weight: 700;
  margin: 20px 0 10px;
  color: var(--secondary-color);
}

#portfolio .projects .project .info {
  font-size: 15px;
  color: #334155;
  line-height: 1.5;
}

/* Contact */

#contact {
  scroll-margin-top: 30px;
  display: table;
  width: 100%;
  margin: 50px 0;
}

#contact .contact-info {
  display: flex;
  width: 100%;
  align-content: center;
  justify-content: center;
  flex-wrap: wrap;
}

#contact .field {
  margin: 10px 10px 10px 0;
  max-width: 100%;
}

#contact .contact-info .field {
  flex-grow: 1;
  flex-shrink: 0.1;
  min-width: 45%;
  align-self: center;
  justify-self: center;
}

#contact .contact-info .field input {
  width: 100%;
  padding: 12px 16px;
  border-radius: 8px;
  border: 1px solid #e2e8f0;
  background: var(--off-white);
  font-family: inherit;
  transition: all 200ms ease;
  box-sizing: border-box;
}

#contact .contact-info .field input:focus {
  border-color: var(--main-color);
  outline: none;
  box-shadow: 0 0 0 3px rgba(226, 127, 19, 0.1);
}

#contact textarea {
  width: 100%;
  padding: 12px 16px;
  border-radius: 8px;
  border: 1px solid #e2e8f0;
  background: var(--off-white);
  min-height: 150px;
  font-family: inherit;
  transition: all 200ms ease;
  box-sizing: border-box;
  resize: vertical;
}

#contact textarea:focus {
  border-color: var(--main-color);
  outline: none;
  box-shadow: 0 0 0 3px rgba(226, 127, 19, 0.1);
}

#contact .submit input {
  background: var(--main-color);
  color: var(--off-white);
  border: none;
  padding: 14px 40px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 18px;
  cursor: pointer;
  transition: all 300ms ease;
  width: auto;
}

#contact .submit input:hover {
  background: #ff9933;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(226, 127, 19, 0.2);
}

#contact .submit input:disabled {
  background: #ccc;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

/* Footer */
footer.footer {
  flex-shrink: 0;

}

footer {
  padding-top: 30px;
  color: var(--text-color-white);
  background: var(--secondary-color);
}

footer .content {
  display: flex;
  margin-bottom: 30px;
  justify-content: space-evenly;
}

footer .content .foot-col {
  flex: 1 0 auto;
  margin: 20px 10px;
}

footer .content .foot-col.logo {
  margin-right: 30px;
  flex: 1;
}

footer .content .foot-col.logo img {
  max-width: 100px;
  -webkit-transition: transform 300ms ease-in;
  transition: transform 300ms ease-in;
}

footer:hover .content .foot-col.logo img,
footer .content .foot-col.logo a:hover img,
footer .content .foot-col.logo a:focus img {
  max-width: 100px;
  transform: scale(1.1);
  -webkit-transform: scale(1.1);
}

footer .content .foot-col h4 {
  margin: 0 auto 10px auto;
}

footer a {
  background: none;
  color: var(--text-color-white);
}

footer .copyright {
  background: #003944;
  font-size: 14px;
  color: var(--text-color-dark-white);
  padding: 2px 0;
  font-weight: lighter;
  text-align: center;
}

/* Cookie Pop-Up */

#cookie-consent {
  padding: 30px 0;
  width: 100%;
  position: fixed;
  min-height: 100px;
  bottom: 0;
  background: var(--cookie-background);
  color: var(--text-color-white);
  text-align: center;
}

#cookie-consent .options {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  min-height: 100px;
  align-content: center;
  justify-content: center;
}

#cookie-consent .options .button {
  margin: 30px;
  width: 200px;
  height: 50px;
  line-height: 50px;
  background: var(--main-color);
  cursor: pointer;
  border-radius: 50px;
  transition: background 100ms ease-out;
}

#cookie-consent .options .button.reject {
  width: 100px;
  margin-top: 40px;
  height: 30px;
  line-height: 30px;
  background: none;
}

#cookie-consent .options .button.accept:hover {
  background: #307537;
}

#cookie-consent .options .button.reject:hover {
  background: #8a1c0a;
}

#cookie-consent .options .button.info:hover {
  background: #003944;
}

/* Screen width < 1100px */

@media all and (max-width: 1100px) {
  .content {
    width: 90%;
  }

  header {
    background-size: cover;
  }

  header .top-bar {
    padding: 15px 0;
    background: rgba(0, 71, 81, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
  }

  header .top-bar .content {
    width: 90%;
  }

  header .top-bar nav {
    gap: 15px;
    margin-left: auto;
    display: none; /* Hide standard nav on mobile */
  }

  #nav-icon {
    display: block;
    z-index: 1100;
  }

  #menu.open {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 71, 81, 0.98);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 1050;
    padding-top: 0;
    animation: fadeIn 0.3s ease;
  }

  @keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
  }

  #menu.open .nav-button {
    display: block;
    font-size: 24px;
    padding: 20px;
    opacity: 0;
    transform: translateY(20px);
    animation: slideUp 0.4s ease forwards;
  }

  #menu.open .nav-button:nth-child(2) { animation-delay: 0.1s; }
  #menu.open .nav-button:nth-child(3) { animation-delay: 0.2s; }
  #menu.open .nav-button:nth-child(4) { animation-delay: 0.3s; }
  #menu.open .nav-button:nth-child(5) { animation-delay: 0.4s; }

  @keyframes slideUp {
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  #menu.open .lang-toggle {
    margin-bottom: 40px;
    background: rgba(255, 255, 255, 0.1);
    padding: 8px;
    border: none;
    width: auto;
    animation: fadeIn 0.4s ease forwards;
  }

#menu.open .lang-toggle .nav-button:nth-child(n) {
    font-size: 14px;
    padding: 8px 20px;
    animation: none;
    opacity: 0.6;
    transform: none;
  }

  #menu.open .lang-toggle .nav-button.active {
    opacity: 1;
  }
}

/* Screen width < 700px */

@media all and (max-width: 700px) {
  header {
    background-size: cover;
  }

  #hero-rotating-text {
    font-size: 36px;
  }

  body {
    min-width: 100%;
  }

  footer .content {
    flex-direction: column;
  }

  footer .content .foot-col {
    flex-grow: 1;
  }

  #team .member {
    flex-direction: column;
    align-items: center;
  }

  .btn {
    font-size: 20px;
    padding: 8px 16px;
  }
}

/* Screen width < 600px */

@media all and (max-width: 600px) {
  h1 {
    font-size: 30px;
  }

  .content {
    min-width: 90%;
  }

  header .top-bar .name {
    display: none;
  }

  header .info-box {
    width: 100%;
  }

  header .info-box .info {
    margin: 0 auto;
  }

  #contact .field {
    width: 100%;
  }

  #contact .submit input {
    width: 100%;
  }
}

/* Screen width < 400px */

@media all and (max-width: 400px) {
  header {
    background-size: cover;
    height: 400px;
  }

  .btn {
    font-size: 16px;
    padding: 6px 12px;
    text-align: center;
  }

  #contact {
    display: initial;
  }

  #contact .field.captcha {
    transform: scale(0.7);
    -webkit-transform: scale(0.7);
  }
}

@media all and (max-width: 300px) {
  #points .point .icon {
    display: none;
  }
}

#form-response {
  margin-top: 15px;
  padding: 10px;
  border-radius: 4px;
  display: none;
  font-weight: 500;
}

#form-response.success {
  display: block;
  background-color: rgba(76, 175, 80, 0.1);
  color: #4caf50;
  border: 1px solid #4caf50;
}

#form-response.error {
  display: block;
  background-color: rgba(244, 67, 54, 0.1);
  color: #f44336;
  border: 1px solid #f44336;
}
