@import url("https://fonts.googleapis.com/css2?family=PT+Serif&display=swap");
#myVideo {
  position: relative;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 600px;
  object-fit: cover;
  z-index: -1;
}

.intro-overlay {
  height: 600px;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background: linear-gradient(to top, #3c89c3, rgba(60, 137, 195, 0.3), rgba(60, 137, 195, 0.25), rgba(60, 137, 195, 0.1), rgba(60, 137, 195, 0));
  opacity: 1;
}

#slogan {
  color: white;
  font-size: 30px;
  top: 320px;
  position: absolute;
  z-index: 900;
  line-height: 1.42857143;
}

#leftpart {
  text-align: right;
}

#rightpart {
  text-align: left;
  margin-top: 50px;
  padding-left: 0;
  overflow: hidden;
  height: 30px;
  line-height: 30px;
  font-weight: 900;
  font-size: 30px;
}

button {
  position: absolute;
  color: white;
  background-color: transparent;
  border-color: white;
  border-radius: 8%;
  bottom: 20%;
  right: 10%;
  z-index: 100;
  padding: 20px;
  font-family: Montserrat;
}

.rotate {
  display: inline-block;
  position: relative;
  white-space: nowrap;
  /*animation*/
  -webkit-animation: move 12s;
  -moz-animation: move 12s;
  -ms-animation: move 12s;
  -o-animation: move 12s;
  animation: move 12s;
  /*animation-iteration-count*/
  -webkit-animation-iteration-count: infinite;
  -moz-animation-iteration-count: infinite;
  -ms-animation-iteration-count: infinite;
  -o-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  /*animation-delay*/
  -webkit-animation-delay: 3s;
  -moz-animation-delay: 3s;
  -ms-animation-delay: 3s;
  -o-animation-delay: 3s;
  animation-delay: 3s;
}

@keyframes move {
  0% {
    top: 0px;
  }
  25% {
    top: -30px;
  }
  50% {
    top: -60px;
  }
  75% {
    top: -90px;
  }
  100% {
    top: -120px;
  }
}
@-webkit-keyframes move {
  0% {
    top: 0px;
  }
  25% {
    top: -30px;
  }
  50% {
    top: -60px;
  }
  75% {
    top: -90px;
  }
  100% {
    top: -120px;
  }
}
@-moz-keyframes move {
  0% {
    top: 0px;
  }
  25% {
    top: -30px;
  }
  50% {
    top: -60px;
  }
  75% {
    top: -90px;
  }
  100% {
    top: -120px;
  }
}
@-o-keyframes move {
  0% {
    top: 0px;
  }
  25% {
    top: -30px;
  }
  50% {
    top: -60px;
  }
  75% {
    top: -90px;
  }
  100% {
    top: -120px;
  }
}
@keyframes move {
  0% {
    top: 0px;
  }
  25% {
    top: -30px;
  }
  50% {
    top: -60px;
  }
  75% {
    top: -90px;
  }
  100% {
    top: -120px;
  }
}
@media screen and (max-width: 630px) {
  #leftpart {
    transform: scale(0.55);
  }
  #rightpart {
    transform: scale(0.55);
    margin-top: 40px;
  }
}
@media screen and (max-width: 400px) {
  #leftpart {
    transform: scale(0.5);
  }
  #rightpart {
    transform: scale(0.5);
    margin-top: 40px;
  }
}
@media screen and (max-width: 350px) {
  #leftpart {
    transform: scale(0.45);
  }
  #rightpart {
    transform: scale(0.45);
    margin-top: 40px;
  }
}
footer {
  width: 100%;
  height: 290px;
  background: #06569A;
  color: white;
}

footer p {
  font-weight: lighter;
  margin-bottom: 0;
  font-size: 0.9rem;
}
footer p b {
  font-weight: 900;
}

.social {
  text-align: center;
  font-size: 4vh;
  height: 6vh;
  width: 6vh;
  color: white;
}

@media screen and (max-width: 768px) {
  footer {
    height: 420px;
    padding-top: 15px;
  }
  .left-align {
    text-align: center;
  }
  .footer-social {
    text-align: center;
    margin-top: 50px;
  }
  .social {
    height: unset;
    width: 5vh;
    margin-top: 15px;
  }
}
.carousel {
  height: unset;
}

.carousel-control.right, .carousel-control.left {
  background-image: none;
  color: rgb(60, 137, 195);
}

.carousel-indicators li {
  border-color: rgb(60, 137, 195);
}

.carousel-indicators li.active {
  background-color: rgb(60, 137, 195);
}

.item h4 {
  font-weight: 400;
  font-style: italic;
}

.item span {
  font-style: normal;
}

.item img {
  width: 50%;
  margin-left: auto;
  margin-right: auto;
  border-radius: 50%;
}

.carousel-indicators {
  position: unset;
  left: unset;
  margin-left: unset;
  width: 100%;
}

.team-info {
  padding-right: 12%;
  padding-left: 12%;
}

@media screen and (min-width: 768px) {
  .item img {
    width: 35%;
  }
}
@media screen and (min-width: 960px) {
  .item img {
    width: 40%;
    margin-right: 10%;
  }
  .name {
    text-align: center;
    margin-left: 40%;
  }
  .founder, .position {
    margin-left: -10%;
  }
  .team-info {
    padding-left: 10%;
    padding-right: 16%;
    padding-top: 4%;
  }
  .team-info h6 {
    text-align: justify;
    text-align-last: left;
  }
}
.video-box {
  background-color: rgb(60, 137, 195);
  color: white;
  padding: 3% 0 3%;
  margin-top: 5%;
  -webkit-transform: skewY(3deg);
  -moz-transform: skewY(3deg);
  -ms-transform: skewY(3deg);
  -o-transform: skewY(3deg);
  transform: skewY(3deg);
}

.video-box > .wrapper {
  -webkit-transform: skewY(-3deg);
  -moz-transform: skewY(-3deg);
  -ms-transform: skewY(-3deg);
  -o-transform: skewY(-3deg);
  transform: skewY(-3deg);
}

.highlight-coin {
  border-radius: 50%;
  -moz-border-radius: 50%;
  -webkit-border-radius: 50%;
  width: 80px;
  height: 80px;
  line-height: 80px;
  background-color: white;
  transition: transform 0.2s;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
  margin: 0 auto 0px;
}

.highlight-coin:hover {
  transform: scale(1.5);
  -ms-transformm: scale(1.5);
}

.popover-title {
  color: #252850;
}

.popover-content {
  color: #252850;
  text-align: center;
}

.popover {
  width: 400px;
}

@media screen and (max-width: 768px) {
  .video-box {
    padding-top: 7%;
  }
  #video iframe {
    height: 135px;
    width: 255px;
  }
  .popover {
    width: 200px;
  }
}
@media screen and (max-width: 1300px) {
  .video-box {
    margin-top: 10%;
  }
}
@media screen and (max-width: 1200px) {
  .video-box {
    margin-top: 15%;
  }
}
@media screen and (max-width: 1100px) {
  .video-box {
    margin-top: 20%;
  }
}
@media screen and (max-width: 1000px) {
  .video-box {
    margin-top: 25%;
  }
}
@media screen and (max-width: 800px) {
  .video-box {
    margin-top: 30%;
  }
}
@media screen and (max-width: 600px) {
  .video-box {
    margin-top: 65%;
  }
}
@media screen and (min-width: 1200px) {
  #proj-desc h3, #proj-desc p {
    text-align: left;
  }
}
.to-fade-in {
  -webkit-animation-name: fadeInDown;
  -moz-animation-name: fadeInDown;
  -o-animation-name: fadeInDown;
  animation-name: fadeInDown;
  -webkit-animation-fill-mode: both;
  -moz-animation-fill-mode: both;
  -o-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-duration: 1s;
  -moz-animation-duration: 1s;
  -o-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-delay: 0.5s;
  -moz-animation-delay: 0.5s;
  -o-animation-duration: 1s;
  animation-delay: 0.5s;
}

.about-element {
  height: 120px;
}

.about-element:hover {
  transition: transform 0.4s;
  transform: scale(1.1);
  -ms-transformm: scale(1.1);
}

.about-element img {
  height: 75%;
  opacity: 0.8;
}

.section-contact {
  position: relative;
  margin-bottom: 80px;
}

form {
  max-width: 450px;
  margin: 0 auto 100px;
  padding: 0 20px;
}
form input, form textarea {
  border: 1.5px solid #0A6486;
  width: 100%;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  padding: 10px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  font-size: 16px;
}
form input:focus, form textarea:focus {
  outline: none;
  border-color: rgb(1.2895333333, 98.5632832975, 198.8104666667);
}
form textarea {
  height: 10em;
  resize: none;
}
form .contact-info-group {
  border: 0;
  padding-left: 10%;
}
form .contact-info-group label {
  width: 45%;
  float: left;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
form .contact-info-group label:nth-child(1) {
  padding-right: 10px;
}
form .contact-info-group label:nth-child(2) {
  padding-left: 10px;
}
form label {
  display: block;
}
form .submit-wrap {
  border: 0;
  padding-right: 0;
  text-align: right;
}
form [type=submit] {
  background: #0A6486;
  color: white;
  font-size: 15px;
  text-transform: uppercase;
  width: 33%;
}
form [type=submit]:hover {
  background: rgb(1.2895333333, 98.5632832975, 198.8104666667);
}

@media (max-width: 541px) {
  .section-contact {
    width: 100%;
    margin-bottom: 10px;
  }
  form {
    margin: 0 auto 0;
  }
  form .contact-info-group {
    padding-left: 5%;
  }
  form .contact-info-group label {
    width: 100%;
  }
  form .contact-info-group label:nth-child(1) {
    padding-right: 0;
  }
  form .contact-info-group label:nth-child(2) {
    padding-left: 0;
    padding-top: 10px;
  }
  form .submit-wrap {
    padding-left: 0;
  }
  form [type=submit] {
    width: 100%;
  }
}
.pop_up {
  bottom: 0;
  right: 70px;
  padding: 10px;
  background: white;
  border-radius: 5px;
  border: 1px solid rgb(1.2895333333, 98.5632832975, 198.8104666667);
  width: 300px;
  height: 180px;
  position: fixed;
  transition: all 8s ease-in-out;
  text-align: center;
  display: none;
  z-index: 300;
  animation: 2s fadeIn;
}

.pop_up button {
  position: absolute;
  top: -79px;
  right: 10px;
  transition: all 200ms;
  font-size: 30px;
  font-weight: bold;
  text-decoration: none;
  color: #333;
  border: none;
  background-color: transparent;
  overflow: hidden;
}

#p1 {
  padding-top: 35px;
  margin: 0;
  font-size: 20px;
  font-weight: bold;
  color: #0A6486;
}

.addthis_inline_share_toolbox {
  transform: scale(0.6);
}

.partner_container {
  margin-top: 80px;
}

.partner_container img {
  width: 10%;
  min-width: 110px;
}

.partner_text {
  margin-top: 20px;
  margin-bottom: 40px;
  width: 35%;
  margin-left: auto;
  margin-right: auto;
  height: 0;
  opacity: 0;
  transition: height 1s, opacity 1s ease-in-out;
  -moz-transition: height 1s, opacity 1s ease-in-out;
  -webkit-transition: height 1s, opacity 1s ease-in-out;
  -ms-transition: height 1s, opacity 1s ease-in-out;
  -o-transition: height 1s, opacity 1s ease-in-out;
}

.partner_container:hover .partner_text {
  height: 150px;
  opacity: 1;
  transition: height 0.5s, opacity 0.5s ease-in-out;
  -moz-transition: height 0.5s, opacity 0.5s ease-in-out;
  -webkit-transition: height 0.5s, opacity 0.5s ease-in-out;
  -ms-transition: height 0.5s, opacity 0.5s ease-in-out;
  -o-transition: height 0.5s, opacity 0.5s ease-in-out;
}

#partner a {
  color: grey;
  margin-top: 30px;
}

@media screen and (max-width: 600px) {
  #partner {
    margin-top: 100px;
  }
  .partner_text {
    width: 70%;
    margin-bottom: 100px;
  }
}
header {
  background-color: #433434;
  height: 500px;
}

.feat-img {
  object-fit: cover;
  opacity: 0.55;
}

.title {
  position: relative;
  max-width: 900px;
  margin: -220px auto 0;
  color: white;
  background-color: rgba(0, 0, 0, 0.55);
  font-family: "Century Gothic", Futura, Arial, sans-serif;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
  padding: 1px 10px;
  font-size: 50px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: -1.6px;
}

.news-content {
  font-size: large;
  color: darkslategrey;
  text-align: justify;
  font-family: "PT Serif", serif;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  padding-bottom: 20px;
  padding-top: 50px;
}

img {
  width: 100%;
  height: 100%;
}

strong {
  font-weight: 900;
}

h1 {
  margin-top: 0;
  margin-bottom: 10px;
}

.caption {
  font-size: 14px;
}

.actioncall {
  font-family: Arial;
  margin: 100px 30px 50px;
  background-color: #0D567F;
}

@media screen and (max-width: 768px) {
  header {
    height: 300px;
  }
  .title {
    font-size: 30px;
    margin-top: -150px;
  }
  .news-content {
    margin: 10px 20px;
    font-size: large;
  }
}
.news-carousel-container {
  width: 100%;
  margin-right: auto;
  margin-left: auto;
}

.flexslider {
  border: 0;
  border-radius: 10px;
}

.flex-control-thumbs {
  margin: 0;
}

.news-tumb-container {
  background-color: #433434;
  border-radius: 10px;
}
.news-tumb-container a {
  text-decoration: none;
}

.news-tumb {
  opacity: 0.75;
  border-radius: 10px;
}

.flex-caption {
  width: 96%;
  padding-top: 2%;
  padding-left: 2%;
  padding-right: 2%;
  left: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.3);
  font-size: 14px;
  line-height: 18px;
}

.flex-direction-nav .flex-next, .flex-direction-nav .flex-prev {
  height: 50px;
}
.flex-direction-nav a:before {
  color: white;
}

.news-title-container {
  height: 0;
}

.news-title {
  position: relative;
  bottom: 140px;
  left: 0;
  color: white;
  background-color: rgba(0, 0, 0, 0.55);
  display: inline;
  font-family: "Century Gothic", Futura, Arial, sans-serif;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
  padding: 1px 10px;
  font-size: 30px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: -1px;
}

@media screen and (max-width: 1400px) {
  .news-title {
    font-size: 25px;
  }
}
@media screen and (max-width: 1400px) {
  .news-title {
    bottom: 120px;
    padding: 0;
  }
}
@media screen and (min-width: 992px) {
  .news-carousel-container {
    width: 50%;
  }
}
@media screen and (max-width: 768px) {
  .news-carousel-container {
    width: 75%;
  }
}
@media screen and (max-width: 350px) {
  .news-carousel-container {
    width: 90%;
  }
}
#longnav {
  text-align: left;
  background-color: white;
  transition: all 0.2s;
}

.nav-wrapper a {
  max-width: 400px;
  color: #0D567F;
  font-weight: bold;
}

nav ul a:hover {
  background-color: rgba(13, 86, 127, 0.3);
}

#logo {
  float: left;
  width: 80%;
  transition: 0.3s all;
  padding-left: 1vh;
  margin-top: 8px;
  margin-bottom: 8px;
}

@media screen and (max-width: 600px) {
  .nav-wrapper a {
    width: fit-content;
  }
  #logo {
    float: unset;
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 65%;
  }
}
#return-to-top {
  position: fixed;
  z-index: 500;
  bottom: 20px;
  background: #666666;
  right: 20px;
  width: 5vh;
  height: 5vh;
  display: block;
  text-decoration: none;
  -webkit-border-radius: 35px;
  -moz-border-radius: 35px;
  border-radius: 35px;
  display: none;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

#return-to-top i {
  color: #fff;
  font-size: 3vh;
  margin-top: 15%;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

#return-to-top:hover {
  background: rgba(0, 0, 0, 0.9);
}

#return-to-top:hover i {
  color: #fff;
  top: 5px;
}

#sharebar {
  color: #0D567F;
  margin-top: 100px;
  text-align: center;
}

#sharebar h2 {
  font-size: 2.2vh;
}

.mobile_social {
  color: #0D567F;
  transform: scale(1.8);
  margin: 0 25px 20px;
}

/*# sourceMappingURL=all.css.map */