/* General */

* {
  margin-top: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  background-image: url("./assets/background.png");
  background-repeat: repeat-y;
  background-size: contain;
}

.fade-in {
  opacity: 0;
  animation: fadeInAnimation 2s forwards;
}

@keyframes fadeInAnimation {
  to {
    opacity: 1;
  }
}

/* Typography */

[id] {
  transition: opacity 0.3s ease-in-out;
  opacity: 1;
}

[id="language-switch"] {
  transition: opacity 0.3s ease-in-out;
}

body {
  font-family: "Arial", sans-serif; /* Fallback font */
  line-height: 1.6;
  font-size: 16px;
  color: #848484;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Gill Sans", "Gill Sans MT", Calibri, "Trebuchet MS", sans-serif;
  font-weight: 600;
  color: #161616;
  margin-bottom: 10px;
}

h1 {
  font-size: 2.2em;
}

h2 {
  font-size: 2.2em;
}

h3 {
  font-size: 1.6em;
}

h4 {
  font-size: 1.3em;
}

h5 {
  font-size: 1.5em;
}

h6 {
  font-size: 1.5em;
}

p {
  margin-bottom: 20px;
  font-size: 1em;
}

a {
  text-decoration: none;
  transition: color 0.3s;
  color: #757575;
  font-size: 1em;
}

a:hover {
  color: #3c8784;
}

/* Header */

.header {
  transition: background-color 0.2s;
  box-sizing: border-box;
  display: flex;
  flex-direction: row;
  align-items: center;
  height: 80px;
  background-color: rgb(232, 229, 226);
  box-shadow: 0 0 10px 10px white, 0 0 20px rgba(255, 255, 255, 0.1);
  border-radius: 0px 0px 30px 30px;
  margin-left: 100px;
  margin-right: 100px;
}

.logo {
  flex-grow: 1;
}

.logo img {
  width: 200px;
  margin-left: 20px;
}

nav {
  padding-right: 30px;
}

nav ul li {
  display: inline-block;
  margin-right: 20px;
  margin-left: 15px;
  margin-top: 15px;
}

@media only screen and (max-width: 768px) {
  nav ul li {
    margin-right: 10px;
    margin-left: 10px;
    margin-top: 10px;
  }
}

.menu-icon {
  display: none;
  cursor: pointer;
}

.menu_divider {
  display: none;
}

.integrate_container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin: 0 auto;
  width: 100%;
  height: 600px;
  text-align: center;
}
.integrate_title .integrate_text .title_container {
  display: flex;
}

.card_title {
  margin: 0 auto;
  margin-top: 80px;
  margin-bottom: -150px;
  width: fit-content;
}

.card_text {
  text-align: center;
}

.card_wrapper {
  margin-left: 100px;
  margin-right: 100px;
  margin-top: 50px;
  margin-bottom: 180px;
  height: 100%;
  padding: 1%;
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  border-radius: 30px;
  background-color: #d8f1f1;
}

.card {
  display: flex;
  width: 30%;
  flex-direction: column;
  align-items: center;
  justify-content: space-around;
  margin: 15px;
  margin-top: 150px;
  margin-bottom: -100px;
  border-radius: 15px;
  border: none;
  background: #ffffff;
  box-shadow: 1px 1px 10px #dedede;
  padding: 2%;
}

.icon img {
  width: 150px;
}

.other_activities_title {
  text-align: center;
  font-variant: "h1";
  margin-top: 100px;
}

.other_activities_text {
  width: 50%;
  margin: auto;
}

.divider {
  width: 50%;
  margin: 0 auto;
  border: none;
  border-top: 1px solid rgb(175, 175, 175);
  margin-bottom: 50px;
  margin-top: 50px;
}

.card2_wrapper {
  padding-top: 0px;
  padding-bottom: 50px;
  height: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
}

.card2 {
  display: flex;
  height: 300px;
  width: 30%;
  margin: 10px;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 150px;
  border: none;
  background: #ffffff;
  padding: 0px;
}

.team_title {
  text-align: center;
  font-variant: "h1";
  padding-top: 80px;
  background-color: #d8f1f1;
  margin-bottom: 0;
}

.team_wrapper {
  margin-left: 100px;
  margin-right: 100px;
  margin-top: 50px;
  margin-bottom: 50px;
  height: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  border-radius: 30px;
  background-color: #d8f1f1;
}

.team_card {
  width: 22%;
  display: block;
  margin: 0.5%;
  border-radius: 15px;
  border: none;
  background: #ffffff;
  box-shadow: 1px 1px 10px #bfdcdb;
  padding: 2%;
  text-align: center;
  margin-bottom: -100px;
  margin-top: 150px;
}

.circle {
  overflow: hidden;
  text-align: center;
  padding-bottom: 20px;
}

.circle img {
  width: 150px;
  height: 150px;
  object-fit: cover;
  border-radius: 50%;
}

.team_description {
  color: rgb(59, 174, 174);
}

.language_button {
  padding: 10px 20px;
  width: 100px;
  background-color: #303030;
  color: #ffffff;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.language_button:hover {
  background-color: #6c6c6c;
}

.carousel_wrapper {
  display: flex;
  justify-content: space-evenly;
  width: 90%;
  margin: 0 auto;
  margin-top: 200px;
  background-color: #ffffff;
  box-shadow: 0 0 10px 10px white, 0 0 20px rgba(255, 255, 255, 0.1);
}

.carousel_logo {
  max-width: 10%;
}

.carousel_logo img {
  max-width: 100%;
  height: auto;
  filter: grayscale(100%);
  -webkit-filter: grayscale(100%);
}

.submit_button {
  width: 20%;
  border-radius: 30px;
}

.map-section {
  margin-top: 20px;
  position: relative;
  overflow: hidden;
  padding-top: 56.25%;
}

.map-iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.footer img {
  width: 240px;
  overflow: hidden;
}

.footergrid {
  margin-left: 100px;
  margin-right: 100px;
  height: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
  border-radius: 30px 30px 0px 0px;
  background-color: rgb(78, 76, 80);
  color: #ffffff;
}

.footer-title {
  color: #161616;
  text-align: center;
  padding-top: 17.5px;
}

.footer-column-1 {
  display: flex;
  width: 40%;
  flex-direction: column;
  align-items: left;
  border: none;
  margin-left: 50px;
  padding-top: 50px;
  justify-content: space-between;
}

.contact-row {
  width: 100%;
  display: flex;
}

.contact-row p {
  padding-top: 10px;
  padding-left: 20px;
}

.footer-column-2 {
  margin: 1%;
  width: 40%;
  border: none;
  padding: 2%;
}

.map-section {
  width: 100%;
}

.copyright {
  color: #929292;
}

.contact-row img {
  width: 50px;
  height: 50px;
  margin-left: 20px;
}

.ids {
  padding-top: 50px;
  padding-bottom: 5%;
  padding-left: 10px;
  display: flex;
  flex-direction: column;
}

/* Contact Form */

.form_wrapper {
  width: 100%;
}

.container {
  max-width: 600px;
  padding-top: 50px;
  padding-bottom: 100px;
  margin: 0 auto;
}

h1#contact_us {
  text-align: center;
  margin-bottom: 20px;
}

.control {
  margin-bottom: 20px;
}

h6 {
  margin-bottom: 5px;
}

input[type="text"],
input[type="tel"],
textarea {
  width: 100%;
  padding: 20px;
  border-radius: 15px;
  border: none;
  font-size: 16px;
  background-color: #d8f1f1;
}

button {
  width: fit-content;
  padding: 10px;
  padding-left: 20px;
  padding-right: 20px;
  background-color: rgb(88, 197, 199);
  color: white;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  font-size: 16px;
  transition: background-color 0.3s ease;
}

button:hover {
  background-color: #565656;
  transition: background-color 0.3s ease;
}
