/* ==========================================================
   TAMPICO TRADING GMBH
   Relaunch tampico.de

   styles.css
   Bootstrap 5 Basis
   ========================================================== */


/* ==========================================================
   1. FONTS
   ========================================================== */

@font-face {
  font-family: "Roboto";
  src: url("../fonts/Roboto-Light.woff2") format("woff2");
  font-style: normal;
  font-weight: 300;
  font-display: swap;
}

@font-face {
  font-family: "Roboto";
  src: url("../fonts/Roboto-Regular.woff2") format("woff2");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Roboto";
  src: url("../fonts/Roboto-Medium.woff2") format("woff2");
  font-style: normal;
  font-weight: 500;
  font-display: swap;
}


/* ==========================================================
   2. ROOT / FARBEN
   ========================================================== */

:root {
  /* Tampico Grundfarben */
  --tampico-dark-green: #033328;
  --tampico-green: #07785e;
  --tampico-blue: #366873;
  --tampico-dark-blue: #14383c;

  --text-color: #333333;
  --white: #ffffff;
}


/* ==========================================================
   3. BASIS
   ========================================================== */

html {
  min-height: 100%;
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  margin: 0;

  display: flex;
  flex-direction: column;

  font-family: "Roboto", Arial, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;

  color: var(--text-color);
  background-color: var(--white);
}

main {
  flex: 1 0 auto;
}

a {
  color: inherit;
  text-decoration: none;
}

a:hover,
a:focus {
  color: inherit;
}


/* ==========================================================
   4. HEADER
   ========================================================== */

.site-header {
  position: relative;
  z-index: 100;

  width: 100%;

  background-color: var(--white);
}

.site-header .container {
  position: relative;
  max-width: 1300px;
}


/* ==========================================================
   5. HEADER-INNER
   Logo links / Sprachwahl rechts
   ========================================================== */

.header-inner {
  position: relative;

  display: flex;
  align-items: center;
  justify-content: space-between;

  min-height: 163px;
}


/* ==========================================================
   6. LOGO
   ========================================================== */

.navbar-brand {
  display: block;

  margin: 0;
  padding: 0;

  line-height: 1;
}

.site-logo {
  display: block;

  width: auto;
  height: 123px;

  object-fit: contain;
}


/* ==========================================================
   7. RECHTER HEADERBEREICH
   ========================================================== */

.header-right {
  align-self: stretch;

  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
}


/* ==========================================================
   8. SPRACHAUSWAHL
   ========================================================== */

.language-nav {
  padding-top: 14px;

  font-size: 16px;
  font-weight: 300;
  line-height: 1.2;

  color: var(--tampico-green);
  white-space: nowrap;
}

.language-nav a {
  color: var(--tampico-green);
}

.language-nav a:hover,
.language-nav a:focus {
  color: var(--tampico-green);
  text-decoration: underline;
}


/* ==========================================================
   9. HAUPTNAVIGATION
   ========================================================== */

.navbar {
  min-height: 44px;

  padding: 0;
}

.navbar .container-fluid {
  padding: 0;
}

.navbar-collapse {
  justify-content: flex-end;
}

.navbar-nav {
  align-items: center;

  padding: 0;
  margin: 0;

  gap: 42px !important;
}

.navbar-nav .nav-link {
  position: relative;

  padding: 8px 0 12px !important;

  font-size: 24px;
  font-weight: 300;
  line-height: 1.2;

  color: var(--tampico-green);

  transition: opacity 0.2s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link:focus {
  color: var(--tampico-green);
  opacity: 0.7;
}

.navbar-nav .nav-link.active {
  color: var(--tampico-green);
}

/* ==========================================================
   NAVIGATION – HOVER / ACTIVE / DROPDOWN
   ========================================================== */

/* Bootstrap Dropdown-Pfeil ausblenden */
.navbar-nav .dropdown-toggle::after {
  display: none;
}


/* Hauptnavigation – Balken für Hover und Active */
.navbar-nav > .nav-item > .nav-link::after {
  content: "";

  position: absolute;
  left: 0;
  bottom: 4px;

  width: 100%;
  height: 3px;

  background-color: #E8CFB3;

  transform: scaleX(0);
  transform-origin: left center;

  transition: transform 0.2s ease;
}


/* Hover / Focus / Active */
.navbar-nav > .nav-item > .nav-link:hover,
.navbar-nav > .nav-item > .nav-link:focus,
.navbar-nav > .nav-item > .nav-link.active,
.navbar-nav > .nav-item > .nav-link.show {
  color: #E8CFB3;
  opacity: 1;
}

.navbar-nav > .nav-item > .nav-link:hover::after,
.navbar-nav > .nav-item > .nav-link:focus::after,
.navbar-nav > .nav-item > .nav-link.active::after,
.navbar-nav > .nav-item > .nav-link.show::after {
  transform: scaleX(1);
}


/* ==========================================================
   DROPDOWN
   ========================================================== */

.dropdown-menu {
  min-width: 270px;

  margin-top: 0;
  padding: 10px 0;

  border: 0;
  border-radius: 0;

  background-color: rgba(255, 255, 255, 0.90);

  box-shadow: none;
}

/* Dropdown Links */
.dropdown-item {
  position: relative;

  padding: 8px 18px;

  font-family: "Roboto", Arial, sans-serif;
  font-size: 18px;
  font-weight: 300;
  line-height: 1.25;

  color: var(--tampico-green);

  background-color: transparent;

  transition:
    color 0.2s ease,
    background-color 0.2s ease;
}

/* Bootstrap-Hintergrund bei Hover entfernen */
.dropdown-item:hover,
.dropdown-item:focus,
.dropdown-item.active,
.dropdown-item:active {
  color: #E8CFB3;

  background-color: transparent;
}

/* Balken unter Dropdown-Eintrag */
.dropdown-item::after {
  content: "";

  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 3px;

  height: 2px;

  background-color: #E8CFB3;

  transform: scaleX(0);
  transform-origin: left center;

  transition: transform 0.2s ease;
}

.dropdown-item:hover::after,
.dropdown-item:focus::after,
.dropdown-item.active::after {
  transform: scaleX(1);
}


/* ==========================================================
   10. BURGER
   ========================================================== */

.navbar-toggler {
  margin-left: auto;

  padding: 6px;

  border: 0;
  border-radius: 0;

  box-shadow: none !important;
}

.navbar-toggler:hover,
.navbar-toggler:focus {
  box-shadow: none !important;
}

.navbar-toggler-icon {
  width: 30px;
  height: 30px;
}


/* ==========================================================
   11. HERO / CAROUSEL
   ========================================================== */

.hero-slider {
  width: 100%;
}

#tampicoCarousel {
  width: 100%;
}

.carousel-inner {
  width: 100%;
}

.carousel-item {
  position: relative;

  width: 100%;
  height: 475px;

  overflow: hidden;
}


/* ==========================================================
   12. SLIDER-BILDER
   ========================================================== */

.slider-image {
  display: block;

  width: 100%;
  height: 100%;

  object-fit: cover;
  object-position: center;
}


/* ==========================================================
   13. SLIDER-OVERLAY
   ========================================================== */

.carousel-item::after {
  content: "";

  position: absolute;
  z-index: 1;
  inset: 0;

  background:
    linear-gradient(
      to right,
      rgba(0, 0, 0, 0.14) 0%,
      rgba(0, 0, 0, 0.05) 50%,
      rgba(0, 0, 0, 0.02) 100%
    );

  pointer-events: none;
}


/* ==========================================================
   14. SLIDER-TEXT
   ========================================================== */

.carousel-caption {
  position: absolute;
  z-index: 2;

  top: 50%;
  bottom: auto;
  left: 50%;
  right: auto;

  width: 1300px;
  max-width: calc(100% - 30px);

  padding: 0 12px;
  margin: 0;

  text-align: left;

  transform: translate(-50%, -50%);
}

.carousel-caption h1,
.carousel-caption h2 {
  margin: 0;

  font-size: 68px;
  font-weight: 500;
  line-height: 70px;
  letter-spacing: 0;

  color: #fff;
  text-shadow: 1px 1px 2px #000000;
}

.carousel-caption p {
  margin: 0;

  font-size: 40px;
  font-weight: 400;
  line-height: 1.1;

  color: #fff;
  text-shadow: 1px 1px 2px #000000;
}

.carousel-caption p span {
  font-weight: 400;
}


/* ==========================================================
   15. CAROUSEL-PFEILE
   ========================================================== */

.carousel-control-prev,
.carousel-control-next {
  z-index: 4;

  width: 5%;
  min-width: 45px;

  opacity: 0.65;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
  opacity: 1;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  width: 30px;
  height: 30px;
}


/* ==========================================================
   16. CAROUSEL-DOTS
   ========================================================== */

.carousel-indicators {
  z-index: 5;

  gap: 4px;

  margin-bottom: 8px;
}

.carousel-indicators [data-bs-target] {
  width: 9px;
  height: 9px;

  margin: 0;
  padding: 0;

  border: 0;
  border-radius: 50%;

  background-color: #f5d8bd;

  opacity: 1;
}

.carousel-indicators .active {
  background-color: var(--tampico-green);
}


/* ==========================================================
   17. STARTSEITEN-KACHELN
   ========================================================== */

.home-tiles {
  padding-top: 30px !important;
  background-color: var(--white);
}

.home-tiles .container {
  max-width: 1300px;
}

.home-tile {
  position: relative;
  display: block;

  width: 100%;
  height: 200px;

  padding: 8px 10px;
  overflow: hidden;

  color: var(--white);

  transition: opacity 0.2s ease;
}

.home-tile:hover,
.home-tile:focus {
  color: var(--white);
  opacity: 0.88;
}

.home-tile span {
  font-size: 34px;
  font-weight: 300;
  line-height: 1.1;

  text-transform: uppercase;
}

/* Produkte */

.home-tile-products {
  background-color: var(--tampico-dark-green);
}


/* Tampico */

.home-tile-tampico {
  background-color: var(--tampico-green);
}


/* Karriere */

.home-tile-career {
  background-color: var(--tampico-blue);
}


/* Kontakt */

.home-tile-contact {
  background-color: var(--tampico-dark-blue);
}


/* ==========================================================
   18. FOOTER
   ========================================================== */

.site-footer {
  position: relative;
  flex-shrink: 0;

  width: 100%;
  height: 68px;

  color: var(--white);
  background-color: var(--tampico-dark-green);
}

.site-footer .container {
  max-width: 1300px;
  height: 100%;
}

.site-footer .row {
  height: 100%;
  margin: 0;
}

.site-footer a,
.site-footer small {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.2;

  color: var(--white);
}

.site-footer a:hover,
.site-footer a:focus {
  color: var(--white);
  text-decoration: underline;
}


/* ==========================================================
   BACK TO TOP
   ========================================================== */

.back-to-top {
  position: absolute;
  top: 50%;
  right: 20px;

  display: flex;
  align-items: center;
  justify-content: center;

  width: 36px;
  height: 36px;

  font-size: 24px;
  line-height: 1;

  color: var(--white);

  transform: translateY(-50%);
}

.back-to-top:hover,
.back-to-top:focus {
  color: var(--white);
  opacity: 0.7;
}

/* ==========================================================
   19. DESKTOP
   >= 992px
   ========================================================== */

@media (min-width: 992px) {

  .header-inner {
    min-height: 163px;
  }

  .site-logo {
    height: 123px;
  }

  .navbar {
    margin-top: -45px;
  }

  .navbar-collapse {
    display: flex !important;
  }

}


/* ==========================================================
   20. TABLET / KLEINER DESKTOP
   < 992px
   ========================================================== */

@media (max-width: 991.98px) {

  .site-header .container {
    max-width: 100%;
  }

.header-inner {
  min-height: 120px;
  display: flex;
  align-items: center;
}

.site-logo {
  height: 100px;
  transform: translateY(23px);
}

  .language-nav {
    padding-top: 12px;
  }

  .navbar {
    min-height: 46px;
  }

  .navbar-toggler {
    margin-bottom: 8px;
  }

  .navbar-collapse {
    position: relative;

    width: 100%;

    padding: 8px 0 14px;

    background-color: var(--white);
  }

  .navbar-nav {
    align-items: stretch !important;

    gap: 0 !important;

    width: 100%;
  }

  .navbar-nav .nav-item {
    width: 100%;

    border-top: 1px solid #e7e7e7;
  }

  .navbar-nav .nav-item:last-child {
    border-bottom: 1px solid #e7e7e7;
  }

  .navbar-nav .nav-link {
    width: 100%;

    padding: 10px 0 !important;

    font-size: 17px;
  }

  .carousel-item {
    height: 330px;
  }

  .carousel-caption {
    width: calc(100% - 100px);
    max-width: none;
  }

  .carousel-caption h1,
  .carousel-caption h2 {
    font-size: 38px;
  }

  .carousel-caption p {
    font-size: 25px;
  }

  .home-tile {
    height: 145px;
  }

}


/* ==========================================================
   21. TABLET
   < 768px
   ========================================================== */

@media (max-width: 767.98px) {

  .site-header .container {
    padding-left: 20px;
    padding-right: 20px;
  }

.header-inner {
  min-height: 100px;
}

.site-logo {
  height: 82px;
  transform: translateY(27px);
}

.language-nav {
  padding-top: 10px;

  font-size: 14px;
}

  .navbar-nav .nav-link {
    font-size: 16px;
  }

  .carousel-item {
    height: 300px;
  }

  .carousel-caption {
    width: calc(100% - 80px);
    max-width: none;
  }

  .carousel-caption h1,
  .carousel-caption h2 {
    font-size: 31px;
    line-height: 1.08;
  }

  .carousel-caption p {
    margin-top: 6px;

    font-size: 21px;
    line-height: 1.15;
  }

  .carousel-control-prev,
  .carousel-control-next {
    min-width: 38px;
  }

  .carousel-control-prev-icon,
  .carousel-control-next-icon {
    width: 24px;
    height: 24px;
  }

  .home-tiles {
    padding-top: 16px !important;
    padding-bottom: 16px !important;
  }

  .home-tile {
    height: 130px;
  }

  .home-tile span {
    font-size: 22px;
  }

.site-footer {
  height: auto;
  min-height: 76px;

  padding-top: 10px;
  padding-bottom: 10px;
}

.site-footer .row {
  height: auto;
  min-height: 56px;

  row-gap: 6px;
}

}


/* ==========================================================
   22. SMARTPHONE
   < 576px
   ========================================================== */

@media (max-width: 575.98px) {

  .site-header .container {
    padding-left: 15px;
    padding-right: 15px;
  }

  .header-inner {
    min-height: 86px;
  }

  .site-logo {
    height: 76px;
  }

  .language-nav {
    padding-top: 8px;

    font-size: 14px;
  }

  .navbar {
    min-height: 42px;
  }

  .navbar-toggler {
    margin-bottom: 7px;
  }

  .navbar-toggler-icon {
    width: 30px;
    height: 30px;
  }

  .navbar-nav .nav-link {
    font-size: 16px;
  }

  .carousel-item {
    height: 260px;
  }

  .carousel-caption {
    top: 50%;
    left: 45px;

    width: calc(100% - 90px);

    transform: translateY(-50%);
  }

  .carousel-caption h1,
  .carousel-caption h2 {
    font-size: 26px;
    line-height: 1.05;
    letter-spacing: -0.5px;
  }

  .carousel-caption p {
    margin-top: 7px;

    font-size: 18px;
    line-height: 1.15;
  }

  .carousel-indicators {
    margin-bottom: 7px;
  }

  .carousel-indicators [data-bs-target] {
    width: 8px;
    height: 8px;
  }

  .carousel-control-prev,
  .carousel-control-next {
    width: 34px;
    min-width: 34px;
  }

  .carousel-control-prev-icon,
  .carousel-control-next-icon {
    width: 20px;
    height: 20px;
  }

  .home-tiles .container {
    padding-left: 15px;
    padding-right: 15px;
  }

  .home-tile {
    height: 105px;
  }

  .home-tile span {
    font-size: 20px;
  }

  .site-footer {
    height: auto;
    min-height: 76px;

    padding-top: 10px;
    padding-bottom: 10px;
  }

  .site-footer .row {
    height: auto;
    min-height: 56px;

    row-gap: 6px;
  }

  .site-footer a,
  .site-footer small {
    font-size: 14px;
    font-weight: 300;
  }

}


/* ==========================================================
   23. SEHR KLEINE SMARTPHONES
   ========================================================== */

@media (max-width: 374.98px) {

  .header-inner {
    min-height: 78px;
  }

  .site-logo {
    height: 60px;
  }

  .carousel-item {
    height: 240px;
  }

  .carousel-caption h1,
  .carousel-caption h2 {
    font-size: 23px;
  }

  .carousel-caption p {
    font-size: 16px;
  }

}


/* ==========================================================
   24. REDUCED MOTION
   ========================================================== */

@media (prefers-reduced-motion: reduce) {

  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

}

/* ==========================================================
   SUBPAGE – ÜBER UNS
   ========================================================== */

.subpage-hero {
  position: relative;
  width: 100%;
  height: 475px;
  overflow: hidden;
}

.subpage-hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.subpage-hero-caption {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;

  width: 1300px;
  max-width: calc(100% - 30px);

  padding: 0 12px;
  margin: 0;

  color: var(--white);

  transform: translate(-50%, -50%);
}

.subpage-hero-caption h1 {
  margin: 0;

  font-size: 68px;
  font-weight: 500;
  line-height: 70px;

  color: var(--white);

  text-shadow: 1px 1px 2px #000000;
}

.subpage-hero-caption p {
  margin: 6px 0 0;

  font-size: 40px;
  font-weight: 400;
  line-height: 1.15;

  color: var(--white);

  text-shadow: 1px 1px 2px #000000;
}


/* ==========================================================
   CONTENT
   ========================================================== */

.content-section {
  padding: 42px 0 70px;
  background-color: var(--white);
}

.content-section .container {
  max-width: 1300px;
}

.content-section h2 {
  margin: 0 0 28px;

  font-size: 46px;
  font-weight: 500;
  line-height: 1.1;

  color: var(--tampico-green);
}

.content-section h3 {
  margin: 34px 0 24px;

  font-size: 28px;
  font-weight: 500;
  line-height: 1.25;

  color: var(--tampico-green);
}

.content-section p {
  margin: 0 0 26px;

  font-size: 20px;
  font-weight: 300;
  line-height: 1.5;

  color: var(--text-color);
}

.content-highlight {
  margin-top: 8px !important;

  font-weight: 500 !important;

  color: var(--tampico-dark-green) !important;
}


/* ==========================================================
   CONTENT IMAGES
   ========================================================== */

.content-image {
  margin: 30px 0 34px;
}

.content-image img {
  display: block;

  width: 100%;
  height: auto;

  object-fit: cover;
}

.content-image.content-image-wide img {
  width: 100%;
  height: 374px;
  object-fit: cover;
}

/* ==========================================================
   PRODUCTS
   ========================================================== */

.product-item {
  width: 100%;
  margin-bottom: 80px;
}

.product-item .content-image {
  margin-top: 0;
}

.product-item h3 {
  margin-top: 0;
}

/* Bild links / Text rechts */
.product-image-left .content-image {
  margin: 0 100px 40px 0;
}

/* Text links / Bild rechts */
.product-image-right .content-image {
  margin: 0 0 40px 100px;
}

/* ==========================================================
   CONTACT
   ========================================================== */

.contact-intro {
  max-width: 850px;
  margin-bottom: 40px !important;
}

.contact-details h3 {
  margin-top: 0;
  margin-bottom: 38px;
}

.contact-item {
  margin-bottom: 38px;
}

.contact-item:last-child {
  margin-bottom: 0;
}

.contact-icon {
  margin-right: 28px;

  font-size: 28px;
  line-height: 1;

  color: var(--tampico-green);
}

.contact-text strong {
  display: block;

  margin-bottom: 6px;

  font-size: 20px;
  font-weight: 500;
  line-height: 1.3;

  color: var(--tampico-green);
}

.contact-text p {
  margin-bottom: 0;
}

.contact-text a {
  color: var(--text-color);
}

.contact-text a:hover,
.contact-text a:focus {
  color: var(--tampico-green);
  text-decoration: underline;
}

.contact-map {
  width: 100%;
  min-height: 420px;
}

.contact-map iframe {
  display: block;

  width: 100%;
  height: 100%;
  min-height: 420px;

  border: 0;
}

/* ==========================================================
   RESPONSIVE – TABLET
   ========================================================== */

@media (max-width: 991.98px) {

  .subpage-hero {
    height: 330px;
  }

  .subpage-hero-caption {
    width: calc(100% - 100px);
    max-width: none;
  }

  .subpage-hero-caption h1 {
    font-size: 38px;
    line-height: 1.08;
  }

  .subpage-hero-caption p {
    font-size: 25px;
  }

  .content-section {
    padding: 34px 0 55px;
  }

  .content-section h2 {
    font-size: 38px;
  }

  .content-section h3 {
    font-size: 25px;
  }

  .content-section p {
    font-size: 18px;
    line-height: 1.5;
  }

  .product-image-left .content-image,
  .product-image-right .content-image {
    margin: 0 0 30px;
  }

  /* CONTACT */

  .contact-intro {
    max-width: 100%;
    margin-bottom: 32px !important;
  }

  .contact-details {
    margin-bottom: 0;
  }

  .contact-details h3 {
    margin-bottom: 28px;
  }

  .contact-item {
    margin-bottom: 26px;
  }

  .contact-icon {
    margin-right: 20px;
    font-size: 25px;
  }

  .contact-text strong {
    font-size: 18px;
  }

  .contact-map,
  .contact-map iframe {
    min-height: 360px;
  }

}


/* ==========================================================
   RESPONSIVE – MOBILE
   ========================================================== */

@media (max-width: 767.98px) {

  .subpage-hero {
    height: 300px;
  }

  .subpage-hero-caption {
    width: calc(100% - 80px);
    max-width: none;
  }

  .subpage-hero-caption h1 {
    font-size: 31px;
    line-height: 1.08;
  }

  .subpage-hero-caption p {
    margin-top: 6px;

    font-size: 21px;
    line-height: 1.15;
  }

  .content-section {
    padding: 28px 0 45px;
  }

  .content-section .container {
    padding-left: 20px;
    padding-right: 20px;
  }

  .content-section h2 {
    margin-bottom: 22px;

    font-size: 32px;
  }

  .content-section h3 {
    margin-top: 28px;
    margin-bottom: 20px;

    font-size: 23px;
  }

  .content-section p {
    margin-bottom: 22px;

    font-size: 17px;
    line-height: 1.5;
  }

  .content-image {
    margin: 26px 0 30px;
  }

  .content-image.content-image-wide img {
    height: auto;
  }

  /* CONTACT */

  .contact-intro {
    margin-bottom: 28px !important;
  }

  .contact-details {
    margin-bottom: 28px;
  }

  .contact-details h3 {
    margin-bottom: 26px;
  }

  .contact-item {
    margin-bottom: 26px;
  }

  .contact-icon {
    margin-right: 18px;
    font-size: 24px;
  }

  .contact-text strong {
    font-size: 17px;
  }

  .contact-map,
  .contact-map iframe {
    min-height: 320px;
  }

}


/* ==========================================================
   RESPONSIVE – SMALL MOBILE
   ========================================================== */

@media (max-width: 575.98px) {

  .subpage-hero {
    height: 260px;
  }

  .subpage-hero-caption {
    top: 50%;
    left: 45px;

    width: calc(100% - 90px);

    transform: translateY(-50%);
  }

  .subpage-hero-caption h1 {
    font-size: 26px;
    line-height: 1.05;
    letter-spacing: -0.5px;
  }

  .subpage-hero-caption p {
    margin-top: 7px;

    font-size: 18px;
    line-height: 1.15;
  }

  .content-section {
    padding: 24px 0 38px;
  }

  .content-section .container {
    padding-left: 15px;
    padding-right: 15px;
  }

  .content-section h2 {
    font-size: 29px;
  }

  .content-section h3 {
    font-size: 21px;
  }

  .content-section p {
    font-size: 16px;
    line-height: 1.5;
  }

  /* CONTACT */

  .contact-intro {
    margin-bottom: 24px !important;
  }

  .contact-details {
    margin-bottom: 24px;
  }

  .contact-details h3 {
    margin-bottom: 24px;
  }

  .contact-item {
    margin-bottom: 24px;
  }

  .contact-icon {
    margin-right: 16px;
    font-size: 22px;
  }

  .contact-text strong {
    font-size: 16px;
  }

  .contact-map,
  .contact-map iframe {
    min-height: 280px;
  }

}

  .mission-icon {
    margin: 34px 0 18px;
    text-align: center;
  }

  .mission-icon img {
    display: inline-block;
    width: auto;
    height: auto;
    max-width: 100%;
  }

  /* ==========================================================
   CONTENT LIST
   ========================================================== */

.content-list {
  margin: 0 0 26px;
  padding-left: 24px;

  font-size: 20px;
  font-weight: 300;
  line-height: 1.5;

  color: var(--text-color);

  list-style-type: square;
}

.content-list li {
  margin-bottom: 6px;
  padding-left: 4px;
}

.content-list li::marker {
  color: #033328;
  font-size: 1em;
}


/* ==========================================================
   RESPONSIVE
   ========================================================== */

@media (max-width: 991.98px) {

  .content-list {
    font-size: 18px;
    line-height: 1.5;
  }

}

@media (max-width: 767.98px) {

  .content-list {
    margin-bottom: 22px;
    font-size: 17px;
    line-height: 1.5;
  }

}

@media (max-width: 575.98px) {

  .content-list {
    padding-left: 22px;
    font-size: 16px;
    line-height: 1.5;
  }

}

