/*-------------------------
	 Variables
-------------------------*/
/* -------------------------
	 Body padding
------------------------- */
body {
  padding-top: 80px;
}

/* -------------------------
   Sticky Header Styles
------------------------- */
.navbar {
  font-family: "ABeeZee", Helvetica, Arial, sans-serif;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1030;
  padding: 0;
  background-color: rgba(248, 249, 250, 0.95) !important;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  box-shadow: none;
}
.navbar .container-fluid {
  margin: 20px;
}
.navbar.scrolled {
  padding: 10px 0;
  background-color: rgba(248, 249, 250, 0.98) !important;
  box-shadow: 0px 1px 20px 10px rgba(0, 0, 0, 0.25);
}
.navbar__language {
  position: absolute;
  right: 70px;
}
.navbar__language--button {
  border: none;
  color: #144162;
  width: 50px;
  height: 50px;
  background-color: #f8f9fa;
  margin-right: 10px;
}
.navbar__language--button i {
  font-size: 2rem;
}
.navbar__language--button:hover {
  background-color: #cfcfcf;
}
.navbar__dropdown--button {
  border: none;
  color: #144162;
  width: 50px;
  height: 50px;
  background-color: #f8f9fa;
}
.navbar__dropdown--button i {
  font-size: 2rem;
}
.navbar__dropdown--button:hover {
  background-color: #cfcfcf;
}

.navbar-brand {
  font-size: 1.8rem;
  font-weight: bold;
  color: #144162 !important;
}

/* -------------------------
   Language Menu
------------------------- */
.language {
  display: none;
  width: 100%;
}
.language__item {
  display: flex;
  font-family: "ABeeZee", Helvetica, Arial, sans-serif;
  background-color: #f8f9fa;
  color: #144162;
  width: 100%;
  height: 64px;
  text-align: center;
  transition: all 0.2s;
}
.language__item a {
  color: #144162;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  text-decoration: none;
}
.language__item:hover {
  background-color: #144162;
}
.language__item:hover a {
  color: #f8f9fa;
}

/* -------------------------
	 Navbar Links
------------------------- */
.dropdown {
  display: none;
  width: 100%;
}
.dropdown__item {
  display: flex;
  font-family: "ABeeZee", Helvetica, Arial, sans-serif;
  background-color: #f8f9fa;
  color: #144162;
  width: 100%;
  height: 64px;
  text-align: center;
  transition: all 0.2s;
}
.dropdown__item a {
  color: #144162;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  text-decoration: none;
}
.dropdown__item:hover {
  background-color: #144162;
}
.dropdown__item:hover a {
  color: #f8f9fa;
}

/* -------------------------
   Map
------------------------- */
.map {
  display: flex;
  justify-content: space-between;
  margin: 2rem 0;
}
@media screen and (max-width: 768px) {
  .map {
    flex-direction: column;
    align-items: center;
    gap: 2rem;
  }
}
.map #map {
  height: 280px;
  width: 47%;
}
@media screen and (max-width: 768px) {
  .map #map {
    width: 100%;
  }
}
.map__description {
  width: 47%;
  font-size: 1.1rem;
  line-height: 1.6;
  color: #f8f9fa;
}
@media screen and (max-width: 768px) {
  .map__description {
    width: 100%;
  }
}
.map__description--header {
  font-size: 2rem;
  font-family: "ABeeZee", Helvetica, Arial, sans-serif;
  font-weight: bold;
  padding-bottom: 3px;
  border-bottom: #f8f9fa 4px solid;
  margin-bottom: 1rem;
}

/* -------------------------
   Carousel
------------------------- */
.carousel {
  height: 400px;
  overflow: hidden;
}

.carousel-inner {
  height: 100%;
}

.carousel-item {
  width: 100%;
  height: 400px;
  overflow: hidden;
}
.carousel-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* -------------------------
   Icon Table
------------------------- */
.icon-table {
  display: flex;
  justify-content: center;
  gap: 3rem;
  padding: 4rem 2rem;
  background-color: #f8f9fa;
  min-height: 100px;
}
@media (max-width: 768px) {
  .icon-table {
    flex-direction: column;
    align-items: center;
    gap: 2rem;
  }
}
.icon-table__field {
  text-align: center;
  max-width: 200px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (max-width: 768px) {
  .icon-table__field {
    padding-bottom: 2rem;
    width: 100%;
  }
}
.icon-table__field--icon {
  font-size: 3rem;
  color: #144162;
  margin-bottom: 1rem;
}
.icon-table__field--divider {
  width: 100px;
  margin: 1rem auto;
  border: 2px solid #144162;
}
.icon-table__field--description {
  font-size: 1rem;
  color: #222222;
}

/* -------------------------
Main Text Section
------------------------- */
main {
  background-color: #673030;
}

.maintext {
  max-width: 1200px;
  margin: 0 auto;
  padding: 3rem 2rem;
}
.maintext__header {
  font-size: 2.5rem;
  font-family: "ABeeZee", Helvetica, Arial, sans-serif;
  font-weight: bold;
  padding-bottom: 3px;
  border-bottom: #f8f9fa 4px solid;
  margin-bottom: 2rem;
  color: #f8f9fa;
}
.maintext__text {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #f8f9fa;
  margin-bottom: 3rem;
}
.maintext__list {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}
.maintext__list--icon {
  color: #f8f9fa;
  font-size: 1.2rem;
  margin-right: 1rem;
  margin-top: 0.2rem;
}
.maintext__list--text {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #f8f9fa;
  margin: 0;
}
.maintext__button {
  display: inline-block;
  padding: 1rem 2rem;
  font-family: "ABeeZee", Helvetica, Arial, sans-serif;
  font-size: 1.1rem;
  color: #673030;
  background-color: #f8f9fa;
  box-shadow: 0px 0px 12px 8px rgba(0, 0, 0, 0.25);
  border: 2px solid #f8f9fa;
  border-radius: 36px;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
}
.maintext__button:hover {
  background-color: #673030;
  color: #f8f9fa;
  transform: scale(1.1);
}
.maintext__form .form label {
  font-family: "ABeeZee", Helvetica, Arial, sans-serif;
  font-size: large;
  color: #f8f9fa;
  margin-bottom: 0.5rem;
  display: block;
}
.maintext__form .form input,
.maintext__form .form textarea {
  border: #8a8a8a 2px solid;
}
.maintext__form button {
  font-family: "ABeeZee", Helvetica, Arial, sans-serif;
  display: inline-block;
  padding: 1rem 2rem;
  font-size: 1.1rem;
  color: #673030;
  background-color: #f8f9fa;
  box-shadow: 0px 0px 12px 8px rgba(0, 0, 0, 0.25);
  border: 2px solid #f8f9fa !important;
  border-radius: 36px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.maintext__form button:hover {
  background-color: #673030;
  color: #f8f9fa;
  transform: scale(1.1);
}
.maintext .service {
  display: flex;
  justify-content: center;
}
.maintext .service .flipcard {
  margin: 1rem 0.5rem;
  background-color: transparent;
  width: 1000px;
  height: 200px;
  perspective: 1000px;
  cursor: pointer;
}
.maintext .service .flipcard__inner {
  position: relative;
  width: 100%;
  height: 100%;
  text-align: center;
  transition: transform 0.8s;
  transform-style: preserve-3d;
}
.maintext .service .flipcard__inner--front, .maintext .service .flipcard__inner--back {
  border: 1px solid #cfcfcf;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
}
.maintext .service .flipcard__inner--front {
  flex-direction: column;
  background-color: #144162;
  color: #f8f9fa;
}
.maintext .service .flipcard__inner--front h2 {
  font-family: "ABeeZee", Helvetica, Arial, sans-serif;
}
.maintext .service .flipcard__inner--front h3 {
  text-decoration: underline;
}
.maintext .service .flipcard__inner--back {
  background-color: #673030;
  color: #f8f9fa;
  padding: 1rem;
  transform: rotateY(180deg);
}
.maintext .service .flipcard:hover .flipcard__inner {
  transform: rotateY(180deg);
}

/* -------------------------
	 	Pioneer Section
------------------------- */
.pioneerpage {
  display: flex;
  justify-content: center;
}
.pioneerpage__content {
  padding: 3rem 2rem;
  display: flex;
  justify-content: center;
  flex-direction: column;
  width: 1024px;
}
.pioneerpage__content--image {
  width: 100%;
  height: auto;
  margin-bottom: 2rem;
  border: 4px solid #f8f9fa;
  box-shadow: 0px 0px 12px 8px rgba(0, 0, 0, 0.25);
}
.pioneerpage__content--header {
  font-size: 2.5rem;
  font-family: "ABeeZee", Helvetica, Arial, sans-serif;
  font-weight: bold;
  padding-bottom: 3px;
  border-bottom: #f8f9fa 4px solid;
  margin-bottom: 2rem;
  color: #f8f9fa;
}
.pioneerpage__content--text {
  font-style: italic;
  font-size: 1.1rem;
  line-height: 1.7;
  color: #f8f9fa;
  margin-bottom: 2rem;
}

/* -------------------------
		Error Page	
------------------------- */
.errorpage {
  min-height: calc(100vh - 210px);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 5rem 2rem;
  text-align: center;
}
.errorpage__content {
  max-width: 800px;
}
.errorpage__content--header {
  font-size: 6rem;
  font-family: "ABeeZee", Helvetica, Arial, sans-serif;
  color: #f8f9fa;
  margin-bottom: 1rem;
  border-bottom: #f8f9fa 4px solid;
}
.errorpage__content--text {
  font-size: 1.5rem;
  color: #f8f9fa;
  margin-bottom: 2rem;
}
.errorpage__content--button {
  font-family: "ABeeZee", Helvetica, Arial, sans-serif;
  padding: 1rem 2rem;
  font-size: 1.1rem;
  color: #673030;
  background-color: #f8f9fa;
  border-radius: 36px;
  border: 2px solid #f8f9fa;
  cursor: pointer;
  transition: all 0.3s ease;
}
.errorpage__content--button:hover {
  background-color: #673030;
  color: #f8f9fa;
  transform: scale(1.1);
}

/* -------------------------
   Footer
------------------------- */
.footer {
  padding: 3rem 2rem;
  background-color: #144162;
  color: #f8f9fa;
}
.footer__links {
  max-width: 1200px;
  margin: 0 auto 1rem;
}
.footer__links--link {
  color: #f8f9fa;
  text-decoration: none;
  margin-right: 1rem;
  border-bottom: #f8f9fa 2px solid;
}
.footer__text {
  max-width: 1200px;
  margin: 0 auto;
  font-size: 0.9rem;
}

/* -------------------------
   Responsive Fixes
------------------------- */
@media (max-width: 768px) {
  .maintext__header {
    font-size: 2rem;
  }
  .navbar-brand {
    font-size: 1.5rem;
  }
  .maintext .service {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }
  .maintext .service .flipcard {
    width: 100%;
    max-width: 520px;
    height: auto;
    margin: 0.5rem 0;
  }
  .maintext .service .flipcard__inner {
    height: auto;
    min-height: 140px;
    transition: none;
  }
  .maintext .service .flipcard__inner--front, .maintext .service .flipcard__inner--back {
    position: relative;
    display: block;
    transform: none !important;
    backface-visibility: visible !important;
    width: 100%;
    height: auto;
    padding: 1rem;
    box-sizing: border-box;
  }
  .maintext .service .flipcard:hover .flipcard__inner {
    transform: none;
  }
}

/*# sourceMappingURL=style.css.map */
