* {
  box-sizing: border-box;
  font-family: "Exo", sans-serif;
}

body {
  margin: 0;
  padding: 0;
}
body h2 {
  color: #EE5622;
  text-align: center;
  font-size: 2rem;
  margin-top: 7rem;
}
body .form-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: 222;
  margin: 1rem 0;
}
body .form-container form {
  width: 500px;
  background-color: white;
  border-radius: 1rem;
  padding: 1rem;
  text-align: center;
}
body .form-container form input,
body .form-container form textarea {
  width: 100%;
  padding: 1rem;
  border: none;
  border-bottom: 2px solid black;
  margin-bottom: 1rem;
  font-size: 1rem;
  outline: none;
}
body .form-container form #sendButton {
  border: none;
  cursor: pointer;
  background-color: #28AFB0;
  margin: 1rem 0;
  font-size: 1rem;
  width: 100%;
  padding: 1rem;
}
body .form-container form #sendButton:hover {
  background-color: #2A2D34;
  color: white;
  font-weight: bold;
}
body .form-container form #sendButton:active {
  background-color: #28AFB0;
}
body .form-container form #sendButton:disabled {
  background-color: #cccccc; /* A gray color to indicate disabled state */
  color: #888888;
  cursor: not-allowed;
}
body .form-container form #sendButton:disabled:hover,
body .form-container form #sendButton:disabled:active {
  background-color: #cccccc;
}
body .form-container form .confirmation .success-message {
  font-style: italic;
}
body .form-container form .confirmation .error-message {
  color: #EE5622;
  font-style: italic;
}

@media only screen and (max-width: 700px) {
  body .form-container form {
    width: 350px;
    margin: 1rem 1rem;
  }
}
* {
  box-sizing: border-box;
}

.header {
  background-color: black;
  height: 3rem;
  margin: 0;
  position: fixed;
  top: 0;
  width: 100%;
  transition: height 300ms;
  overflow-y: hidden;
  z-index: 100;
}
.header .header-top {
  height: 3rem;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.header .header-top ul {
  list-style: none;
  position: sticky;
  margin-block-start: 0em;
  margin-block-end: 0em;
  padding-inline-start: 0em;
}
.header .header-top ul li {
  display: inline;
  font-family: "Exo", sans-serif;
  font-weight: 500;
  padding: 0 3rem;
}
.header .header-top ul li a {
  color: white;
  font-size: 1.2rem;
  text-decoration: none;
}
.header .header-top ul li a:hover {
  -webkit-text-decoration: 2px underline;
          text-decoration: 2px underline;
  color: #28AFB0;
}
.header #burgerMenu {
  color: white;
  display: none;
}
.header .header-bottom {
  width: 100%;
  font-family: "Exo", sans-serif;
  font-weight: 500;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  justify-content: flex-start;
}
.header .header-bottom .mobile-menu-link {
  padding: 1rem;
  text-decoration: none;
  color: #28AFB0;
  font-weight: 500;
  font-size: 1rem;
}

.open {
  height: 17rem;
}

@media only screen and (max-width: 600px) {
  .header .header-top {
    align-items: center;
    justify-content: flex-start;
  }
  .header .header-top #burgerMenu {
    display: block;
    font-size: 1.5rem;
    color: white;
    padding-left: 1rem;
  }
  .header .header-top ul {
    display: none;
  }
}
footer {
  position: static;
  bottom: 0;
  width: 100%;
  height: 200px;
  background-color: black;
  display: flex;
  align-items: center;
  margin: 0;
}

.company-info {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.company-info p {
  font-family: "Exo", sans-serif;
  color: #28AFB0;
}

@media only screen and (max-width: 700px) {
  .company-info {
    padding: 4rem 0;
  }
  .company-info p {
    font-size: 0.8rem;
  }
}
@media only screen and (max-width: 600px) {
  footer {
    height: 100px;
  }
  .company-info {
    padding: 1rem 0;
  }
}
* {
  margin: 0;
}

html,
body {
  background-color: #222;
  min-height: 100%;
}

.content-wrapper {
  margin-top: 3rem;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.video-container {
  position: relative;
  margin: 0;
  overflow: hidden;
  width: 100%;
  height: 40vw;
}
.video-container video {
  position: absolute;
  height: auto;
  top: -60%;
  left: 50%;
  transform: translate(-50%, -45%);
  min-height: 100%;
  min-width: 100%;
  filter: brightness(0.3);
}

h1 {
  color: #28AFB0;
  font-family: "Exo", sans-serif;
  font-size: 5rem;
  font-weight: 600;
  font-style: normal;
  position: absolute;
  left: 50%;
  margin-left: -150px;
  top: 40%;
  margin-top: -50px;
  z-index: 3;
}

.articles {
  border-radius: 20px;
}
.articles h2 {
  color: white;
  font-family: "Exo", sans-serif;
  font-size: 2rem;
  font-weight: 400;
  font-style: normal;
  padding: 40px 0 0 20px;
  text-align: center;
}

.article-container {
  width: 100vw;
  display: flex;
  justify-content: space-around;
  margin: 4rem 0;
}
.article-container .subject-img {
  position: relative;
  overflow: hidden;
  width: 22rem;
  height: 30rem;
  border-radius: 10px;
  margin-bottom: 2rem;
}
.article-container .subject-img img {
  position: absolute;
  transform: translateX(-25%);
  min-width: 100%;
  min-height: 100%;
  border-radius: 10px;
  filter: grayscale(1);
}
.article-container .subject-img img:hover,
.article-container .subject-img .img-border:hover {
  filter: grayscale(0);
}
.article-container .subject-img .img-text {
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
}
.article-container .subject-img .img-text h3 {
  color: white;
  font-family: "Exo", sans-serif;
  font-size: 1.2rem;
  font-weight: 400;
  font-style: normal;
  padding: 20px;
  text-wrap: nowrap;
}
.article-container .subject-img .img-border {
  position: absolute;
  border: 1px solid white;
  border-radius: 10px;
  width: calc(100% - 40px);
  height: calc(100% - 40px);
  margin: 20px;
}
.article-container .subject-img:hover img {
  filter: grayscale(0);
}
.article-container .subject-img:hover .img-border {
  border-color: #28AFB0;
}

.articles {
  display: flex;
  justify-content: center;
}
.articles #article-text {
  position: relative;
  overflow: hidden;
  background-color: white;
  width: 60%;
  margin-bottom: 1rem;
  border-radius: 0 0 1rem 1rem;
  text-align: left;
  border: 2px solid #28AFB0;
  border-top: none;
}
.articles #article-text p {
  color: black;
  font-family: "Exo", sans-serif;
  padding: 20px;
}
.articles #article-text .gradient {
  height: 2rem;
  width: 100%;
  background-image: linear-gradient(#222, white);
}
.articles #article-text .exit-article {
  font-weight: bold;
  font-size: 2rem;
  text-align: center;
  color: #28AFB0;
}
.articles #article-text .exit-article:hover {
  color: #EE5622;
}
.articles #article-text .heading {
  font-weight: 500;
  font-size: 2rem;
  text-align: center;
  padding-top: 2rem;
}

.services {
  display: none;
  width: 100vw;
  height: auto;
}
.services h2 {
  color: white;
  font-family: "Exo", sans-serif;
  font-weight: 400;
  font-style: normal;
  text-align: center;
  padding: 20px;
  margin: 60px 0 40px 0;
}
.services .placeholder {
  display: flex;
  justify-content: space-around;
}
.services .placeholder span {
  background-color: gray;
  padding: 100px;
  margin-bottom: 100px;
}

.about {
  flex-grow: 1;
}
.about h2 {
  margin-bottom: 2rem;
  margin-top: 4rem;
  color: #28AFB0;
}
.about .main-section {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.about .main-section .gradient {
  height: 2rem;
  width: 70%;
  background-image: linear-gradient(#222, white);
  border: 2px solid #28AFB0;
  border-top: none;
  border-bottom: none;
}
.about .main-section .about-text {
  background-color: white;
  padding: 3rem;
  margin-bottom: 2rem;
  width: 70%;
  border-radius: 0 0 1rem 1rem;
  border: 2px solid #28AFB0;
  border-top: none;
}
.about .main-section .about-text p {
  margin-bottom: 2rem;
}

main.contact {
  flex-grow: 1;
}
main.contact h2 {
  margin-top: 7rem;
  color: #28AFB0;
}
main.contact p {
  text-align: center;
  color: white;
  margin-top: 2rem;
}

@media only screen and (max-width: 1200px) {
  .article-container {
    flex-wrap: wrap;
  }
  h1 {
    left: 50%;
    margin-left: -150px;
    top: 20%;
    margin-top: -50px;
    z-index: 3;
  }
}
@media only screen and (max-width: 700px) {
  .video-container {
    height: 300px;
  }
  h1 {
    font-size: 4rem;
    font-weight: 500;
    top: 20%;
  }
  .articles #article-text {
    width: 90%;
  }
  .about .main-section .gradient {
    width: 90%;
  }
  .about .main-section .about-text {
    font-size: 0.8rem;
    padding: 1rem;
    margin-bottom: 1rem;
    width: 90%;
  }
  .about .placeholder {
    flex-wrap: wrap;
  }
}
@media only screen and (max-width: 500px) {
  h1 {
    margin-left: -102px;
    font-size: 3rem;
    font-weight: 500;
    top: 20%;
  }
  main.contact h2 {
    margin-top: 3rem;
  }
}/*# sourceMappingURL=main.css.map */