/*$color-main: #7fffd4;
$color-main-text: rgb(0,0,0);
$color-secondary: #a7ffe2;
$color-secondary-text: rgb(0, 0, 0);
$color-bg: rgb(46, 46, 46);
$color-fg: rgb(255, 255, 255);*/
:root {
  --color-main: #59cca6;
  --color-main-text: white;
  --color-secondary: #7cb9a5;
  --color-secondary-text: black;
  --color-bg: white;
  --color-fg: black;
}

/*$color-main: #7fffd4;
$color-main-text: rgb(0,0,0);
$color-secondary: #a7ffe2;
$color-secondary-text: rgb(0, 0, 0);
$color-bg: rgb(46, 46, 46);
$color-fg: rgb(255, 255, 255);*/
:root {
  --color-main: #59cca6;
  --color-main-text: white;
  --color-secondary: #7cb9a5;
  --color-secondary-text: black;
  --color-bg: white;
  --color-fg: black;
}

:root {
  font-family: 'Source Sans Pro', sans-serif;
  color: black;
}

::-webkit-scrollbar {
  width: 4px;
  z-index: 9999;
}

::-webkit-scrollbar-thumb {
  border-radius: 30px;
  background: -webkit-gradient(linear, left top, left bottom, from(#59cca6), to(#7cb9a5));
}

::-webkit-scrollbar-track {
  background-color: #cccccc;
}

a {
  position: relative;
  text-decoration: none;
  color: #59cca6;
}

a:before {
  content: '';
  background-color: #59cca6;
  height: 2px;
  width: 0%;
  position: absolute;
  top: 100%;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  -webkit-transition: 0.5s ease;
  transition: 0.5s ease;
}

a:hover:before {
  width: 100%;
}

hr {
  height: 2px;
  width: 90%;
  margin: 2em 0;
  position: relative;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

body {
  overflow: hidden;
}

.header {
  position: absolute;
  top: 0;
  left: 0;
  width: calc(100% - 4px);
  height: 100px;
  -webkit-box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.2);
          box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.2);
  background-color: #fafafa;
  z-index: 999;
  -webkit-transition: height 0.25s ease-in-out;
  transition: height 0.25s ease-in-out;
}

.header-text {
  display: inline-block;
  font-weight: bold;
  font-size: 30px;
  position: relative;
  left: 10px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transition: 0.25s ease-in-out;
  transition: 0.25s ease-in-out;
}

.header-text span {
  display: block;
  position: relative;
  font-size: 20px;
  color: rgba(0, 0, 0, 0.5);
}

.imp-dat-container {
  position: absolute;
  padding: 2em;
  padding-top: 50px;
  height: calc(100% - 100px);
  width: calc(100% - 4em);
  left: 0;
  top: 0;
  overflow-y: auto;
  overflow-x: hidden;
  background-color: white;
}

.main-container {
  position: absolute;
  padding-top: 100px;
  left: 0;
  top: 0;
  width: 100%;
  height: calc(100% - 100px);
  background-color: white;
  overflow-y: auto;
  overflow-x: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.navigation {
  position: absolute;
  left: 100%;
  top: 50%;
  -webkit-transform: translate(-100%, -50%);
          transform: translate(-100%, -50%);
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.navigation .hamburger {
  display: none;
  position: absolute;
  top: 50%;
  left: calc(100% - 10px);
  -webkit-transform: translate(-100%, -50%);
          transform: translate(-100%, -50%);
  font-size: 20pt;
}

.navigation ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

.navigation li {
  cursor: pointer;
  position: relative;
  display: inline;
  padding: 10px 10px 5px;
  font-size: 20px;
  color: rgba(0, 0, 0, 0.5);
}

.navigation li:before {
  content: '';
  background-color: #59cca6;
  height: 2px;
  width: 0%;
  position: absolute;
  top: 100%;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  -webkit-transition: 0.5s ease;
  transition: 0.5s ease;
}

.navigation li[selected]:before {
  color: black;
  width: 100%;
}

@media (max-width: 600px) {
  .navigation {
    height: 100%;
    width: 100%;
  }
  .navigation .hamburger {
    display: block;
  }
  .navigation ul {
    position: relative;
    top: 100%;
    display: none;
    width: 100%;
    background-color: #f2f2f2;
    -webkit-box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.2);
            box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.2);
  }
}

.footer {
  position: relative;
  width: 100%;
  top: 2em;
  left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-shadow: 0px -1px 4px rgba(0, 0, 0, 0.2);
          box-shadow: 0px -1px 4px rgba(0, 0, 0, 0.2);
}

.footer .section1 {
  padding: 2em;
  background-color: #f2f2f2;
  display: -ms-grid;
  display: grid;
  text-align: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

@media (max-width: 600px) {
  .footer .section1 {
    -ms-grid-columns: max-content;
        grid-template-columns: -webkit-max-content;
        grid-template-columns: max-content;
  }
}

@media (min-width: 600px) and (max-width: 800px) {
  .footer .section1 {
    -ms-grid-columns: (max-content)[3];
        grid-template-columns: repeat(3, -webkit-max-content);
        grid-template-columns: repeat(3, max-content);
  }
}

@media (min-width: 800px) {
  .footer .section1 {
    -ms-grid-columns: (max-content)[3];
        grid-template-columns: repeat(3, -webkit-max-content);
        grid-template-columns: repeat(3, max-content);
  }
}

.footer .section2 {
  padding: 2em;
  background-color: #ededed;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  text-align: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.footer .socialmedia-icon {
  width: 2em;
  height: 2em;
}

.footer .footer-menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 1em 2em;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

@media (min-width: 600px) and (max-width: 800px) {
  .footer .footer-menu:not(:last-of-type) {
    border-right: 1px solid white;
  }
}

.footer .footer-menu .footer-menu-header {
  font-size: 1.5em;
  border-bottom: 1px solid #59cca6;
}

.footer .footer-menu .footer-menu-item {
  font-size: 1em;
  padding: 0.25em 0;
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  cursor: pointer;
}

.footer .footer-menu .footer-menu-item:before {
  content: '';
  background-color: #59cca6;
  height: 2px;
  width: 0%;
  position: absolute;
  top: 100%;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  -webkit-transition: 0.5s ease;
  transition: 0.5s ease;
}

.footer .footer-menu .footer-menu-item:hover:before {
  width: 100%;
}

.content-container {
  width: 100%;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  padding-bottom: 2em;
  text-align: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.content-header {
  display: inline;
  position: relative;
  font-size: 40px;
  font-weight: bold;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.content-header:before {
  content: '';
  background-color: #59cca6;
  height: 2px;
  width: 0%;
  position: absolute;
  top: 100%;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  -webkit-transition: 0.5s ease;
  transition: 0.5s ease;
  width: 100%;
}

.hero-img {
  width: 100%;
  height: 0;
  background-size: contain;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-position-y: calc(0% + 100px);
  padding-top: calc(500 / 1920 * 100%);
}

.wrb-iframe {
  position: relative;
}

.wrb-iframe iframe {
  max-width: 80%;
}

.wrb-iframe .arrows {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 100%;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 10% 10%;
      grid-template-columns: 10% 10%;
  -webkit-column-gap: 80%;
          column-gap: 80%;
  font-size: 10vw;
  color: rgba(0, 0, 0, 0.6);
  pointer-events: none;
}

.wrb-iframe .arrows div {
  cursor: pointer;
  pointer-events: all;
}

.wrb-iframe .arrows div:hover {
  -webkit-box-shadow: 2px 2px 3px 4px rgba(0, 0, 0, 0.2);
          box-shadow: 2px 2px 3px 4px rgba(0, 0, 0, 0.2);
}

.wrb-text {
  color: #333333;
  width: 50%;
  position: relative;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  padding: 1em 0;
}

.wrb-text .wrb-text-header {
  font-size: 1.4em;
}

.team-container {
  display: -ms-grid;
  display: grid;
  grid-auto-rows: -webkit-max-content;
  grid-auto-rows: max-content;
  -webkit-column-gap: 2em;
          column-gap: 2em;
  row-gap: 2em;
  width: 70%;
  position: relative;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  padding: 20px;
}

.team-container .team-member {
  display: -ms-grid;
  display: grid;
  width: 90%;
  -ms-grid-columns: 100%;
      grid-template-columns: 100%;
  grid-auto-rows: -webkit-max-content;
  grid-auto-rows: max-content;
  -ms-grid-column-align: center;
      justify-self: center;
  justify-items: center;
  word-wrap: break-word;
  padding: 20px;
  -webkit-box-shadow: 4px 4px 6px 6px rgba(0, 0, 0, 0.2);
          box-shadow: 4px 4px 6px 6px rgba(0, 0, 0, 0.2);
}

.team-container .team-member .team-member-img {
  border-radius: 100%;
  width: 10vw;
  height: 10vw;
  background-size: cover;
  background-repeat: no-repeat;
  -webkit-box-shadow: 4px 4px 4px rgba(0, 0, 0, 0.2);
          box-shadow: 4px 4px 4px rgba(0, 0, 0, 0.2);
}

.team-container .team-member .team-member-name {
  padding-top: 5px;
  color: #1a1a1a;
}

.team-container .team-member .team-member-name span {
  color: #4d4d4d;
}

.team-container .team-member .team-member-desc {
  padding-top: 5px;
  color: #1a1a1a;
}

@media (max-width: 600px) {
  .team-container {
    -ms-grid-columns: (1fr)[1];
        grid-template-columns: repeat(1, 1fr);
  }
  .team-container .team-member .team-member-img {
    width: 40vw;
    height: 40vw;
  }
}

@media (min-width: 600px) and (max-width: 800px) {
  .team-container {
    -ms-grid-columns: (1fr)[2];
        grid-template-columns: repeat(2, 1fr);
  }
  .team-container .team-member .team-member-img {
    width: 20vw;
    height: 20vw;
  }
}

@media (min-width: 800px) {
  .team-container {
    -ms-grid-columns: (1fr)[3];
        grid-template-columns: repeat(3, 1fr);
  }
}

.line {
  width: 100%;
  position: relative;
  margin: 10px 0;
}

.line:before {
  content: '';
  background-color: #59cca6;
  height: 2px;
  width: 0%;
  position: absolute;
  top: 100%;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  -webkit-transition: 0.5s ease;
  transition: 0.5s ease;
  width: 100%;
}

.contact-text {
  font-size: 1.4em;
  color: #333333;
  padding: 3em 0;
}

.contactform-main {
  width: 400px;
  max-width: 90%;
  position: relative;
  margin: 0 auto;
}

.styled-input {
  float: left;
  margin: 1rem 0 0.5rem;
  position: relative;
}

.styled-input label {
  color: #999;
  padding: 1rem;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transition: all 0.25s cubic-bezier(0.2, 0, 0.03, 1);
  transition: all 0.25s cubic-bezier(0.2, 0, 0.03, 1);
  pointer-events: none;
  cursor: text;
}

.styled-input label span {
  color: red;
}

.styled-input [part="icon"] {
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
  display: inline-block;
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  font-size: 1.5em;
  padding: 0px 10px;
}

.styled-input input,
.styled-input textarea {
  width: calc(100% - 3em);
  padding: 1em 2em 1em 1em;
  border: 0;
  font-size: 1em;
  background-color: white;
  color: black;
  z-index: 99;
}

.styled-input input ~ span,
.styled-input textarea ~ span {
  border-bottom: 1px solid rgba(80, 80, 80, 0.6);
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  pointer-events: none;
}

.styled-input input:valid ~ label,
.styled-input textarea:valid ~ label {
  opacity: 1.0;
  font-size: 0.9em;
  top: -0.8em;
  left: 0.9em;
  -webkit-transition: all 0.125s cubic-bezier(0.2, 0, 0.03, 1);
  transition: all 0.125s cubic-bezier(0.2, 0, 0.03, 1);
  background-color: white;
  padding: 3px;
  z-index: 9;
}

.styled-input input:hover, .styled-input input:focus,
.styled-input textarea:hover,
.styled-input textarea:focus {
  outline: none;
  border-radius: 5px;
  -webkit-transition: all 0.125s cubic-bezier(0.2, 0, 0.03, 1);
  transition: all 0.125s cubic-bezier(0.2, 0, 0.03, 1);
  background-color: #59cca6;
  color: white;
}

.styled-input input:hover ~ label, .styled-input input:focus ~ label,
.styled-input textarea:hover ~ label,
.styled-input textarea:focus ~ label {
  border-radius: 5px;
  opacity: 1.0;
  font-size: 0.9em;
  top: -0.8em;
  left: 0.9em;
  -webkit-transition: all 0.125s cubic-bezier(0.2, 0, 0.03, 1);
  transition: all 0.125s cubic-bezier(0.2, 0, 0.03, 1);
  background-color: white;
  -webkit-box-shadow: 1px 1px 2px 2px rgba(0, 0, 0, 0.2);
          box-shadow: 1px 1px 2px 2px rgba(0, 0, 0, 0.2);
  padding: 3px;
  z-index: 9;
}

.styled-input input:hover ~ span, .styled-input input:focus ~ span,
.styled-input textarea:hover ~ span,
.styled-input textarea:focus ~ span {
  border-radius: 5px;
  border: none;
  width: 100%;
  color: white;
}

.styled-input textarea {
  font-size: 1.4em;
  min-height: 60px;
  resize: none;
  overflow: auto;
  height: 60px;
}

.btn {
  background-color: transparent;
  margin-top: 10px;
  padding: 10px;
  font-size: 14pt;
  border: 1px solid #dadada;
  border-radius: 5px;
  cursor: pointer;
  -webkit-box-shadow: 2px 2px 4px 3px rgba(0, 0, 0, 0.2);
          box-shadow: 2px 2px 4px 3px rgba(0, 0, 0, 0.2);
}

.btn:focus:not([disabled]), .btn:hover:not([disabled]) {
  outline: none;
  -webkit-box-shadow: none;
          box-shadow: none;
  background-color: #59cca6;
  color: white;
}

.btn[disabled] {
  cursor: default;
  background-color: rgba(128, 128, 128, 0.39);
}
