* {
  font-family: "Open Sans", sans-serif;
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-weight: 300;
}

a {
  text-decoration: none;
}

.mainNav.scrolled {
  background-color: rgba(0, 0, 0, 0.7) !important;
  -webkit-transition: background-color 200ms linear;
  transition: background-color 200ms linear;
}

.fa-times {
  position: absolute;
  top: 15px;
  right: 10px;
  font-size: 30px;
  line-height: 60px;
  padding: 5px 10px;
  color: rgba(255, 113, 85, 0.5);
}

.fa-times.off {
  display: none !important;
}

.fa-bars {
  position: absolute;
  top: 15px;
  right: 10px;
  font-size: 30px;
  line-height: 60px;
  padding: 5px 10px;
  color: rgba(255, 255, 255, 0.5);
}

.fa-bars.off {
  display: none !important;
}

.arrowUp {
  padding: 10px;
  border-radius: 50%;
  background: #013c4b;
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 2;
  height: 50px;
  width: 50px;
  border: none;
  cursor: pointer;
  outline: none;
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
}

.arrowUp:hover {
  background: #007899;
}

.arrowUp.off {
  display: none !important;
}

.fa-arrow-up {
  color: white;
  font-size: 24px;
  padding: 0;
  margin: 0;
}

.content {
  overflow-x: hidden;
  width: 100%;
}

.mainNav {
  height: 70px;
  width: 100%;
  position: fixed;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.mainNav__list {
  position: absolute;
  top: 70px;
  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;
  height: calc(100vh - 70px);
  width: 100%;
  background: #000;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  list-style: none;
  -webkit-transform: translateX(0%);
          transform: translateX(0%);
  -webkit-transition: all .3s linear;
  transition: all .3s linear;
}

.mainNav__item.mobile {
  display: block;
  width: 100vw !important;
  text-align: center;
}

.mainNav__list.off {
  -webkit-transform: translateX(-100%);
          transform: translateX(-100%);
}

.mainNav__item {
  line-height: 50px;
  padding: 10px 30px;
  color: white;
  letter-spacing: 2px;
  font-size: 24px;
  font-weight: 500;
  cursor: pointer;
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
}

.mainNav__item:hover {
  color: white;
  background: rgba(0, 120, 153, 0.7);
}

.mainNav__logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.mainNav__logo--uwr {
  font-weight: 500;
  color: rgba(0, 120, 153, 0.7);
  line-height: 50px;
  padding: 10px;
  background: #000;
}

.mainNav__logo--wmii {
  display: none;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  color: rgba(255, 255, 255, 0.5);
  font-size: 16px;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  line-height: 50px;
  padding: 10px;
}

.fontAwesome {
  min-height: 10vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: transparent;
}

i {
  color: black;
  font-size: 50px;
  padding: 50px;
}

.title {
  text-align: center;
  font-size: 40px;
  font-weight: 300;
  padding: 30px 0px;
  color: white;
}

.btn--transparent {
  display: none;
  -webkit-transform: translate(calc(50vw - 50%), -10vh);
          transform: translate(calc(50vw - 50%), -10vh);
  background: transparent;
  border: 2px solid #ff7155;
  color: #ff7155;
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
  letter-spacing: 1px;
  font-size: 20px;
  padding: 20px 30px;
  cursor: pointer;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 5px;
  outline: none;
}

.btn--transparent:hover {
  background: rgba(218, 72, 47, 0.7);
  color: white;
}

.btn--transparent--color {
  background: #da482f;
  color: white;
}

.mainHeader__box {
  padding: 25vh 10vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.7)), to(transparent));
  background-image: linear-gradient(rgba(0, 0, 0, 0.7), transparent);
}

.mainHeader__box--left {
  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-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.mainHeader__title--smaller {
  color: #007899;
  font-size: 18px;
  line-height: 19px;
  text-transform: uppercase;
  font-weight: 500;
  text-align: left;
  margin-left: 0px;
}

.mainHeader__title--smaller-white {
  display: block;
  color: white;
  font-size: 18px;
  line-height: 19px;
  text-transform: uppercase;
  font-weight: 500;
  text-align: left;
  margin-left: 0px;
  -webkit-margin-before: 0px;
          margin-block-start: 0px;
}

.mainHeader__box--right {
  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-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.mainHeader__title--bigger {
  color: white;
  font-size: 52px;
  text-transform: uppercase;
  font-weight: 500;
  text-align: left;
  margin-left: 0px;
}

.mainHeader {
  z-index: -1;
  height: 90vh;
  background: url("../img/photo1dark.jpg") center;
  background-size: cover;
  background-attachment: fixed;
}

.section {
  position: relative;
  overflow-x: hidden;
}

.section__1 {
  position: relative;
  background: #013c4b;
  min-height: 100vh;
}

.section__1--txt {
  width: 70%;
  margin: auto;
  text-align: justify;
  color: white;
}

.studyDegrees {
  background: url("../img/photo2.jpg") center;
  background-size: cover;
  background-attachment: fixed;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 200vh;
}

.studyDegrees__steps {
  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-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  padding-top: 10vh;
  background: rgba(0, 0, 0, 0.8);
}

.fa-sort-down {
  display: block;
  width: 100%;
  text-align: center;
  color: white;
  font-size: 20px;
  padding: 10px;
  background: rgba(0, 0, 0, 0.9);
}

.steps__img {
  width: 100vw;
  height: 200vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  overflow-x: hidden;
  padding-top: 70px;
}

.studyDegrees__text {
  overflow-x: hidden;
  height: 100%;
  width: 100vw;
  background: rgba(0, 0, 0, 0.95);
  padding: 20px;
  padding-top: 10px;
}

.step__text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.step__text--title {
  color: #ff7155;
  padding: 20px;
  text-align: center;
}

.step__text--p {
  color: white;
  text-align: justify;
  padding: 20px;
}

.steps__title {
  font-size: 40px;
  color: white;
  text-align: center;
}

.fa-arrow-down {
  padding: 10px;
  color: white;
}

.studyDegrees__step {
  width: 30vw;
  height: 15vw;
  border: 1px solid white;
  border-bottom: none;
  border-right: none;
  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-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.studyDegrees__step--2 {
  -webkit-transform: translateY(calc(-15vw + 1px));
          transform: translateY(calc(-15vw + 1px));
}

.studyDegrees__step--3 {
  -webkit-transform: translateY(calc(-30vw + 2px));
          transform: translateY(calc(-30vw + 2px));
}

.fa-user-graduate {
  -webkit-transform: translateY(-6vw);
          transform: translateY(-6vw);
  color: #ff7155;
  font-size: 50px;
  cursor: pointer;
}

.fa-user-graduate.active {
  color: white;
  text-shadow: 0 0 15px white;
}

.step__btn {
  padding: 10px;
  text-transform: uppercase;
  font-weight: 500;
  background: rgba(0, 0, 0, 0.8);
  cursor: pointer;
  color: #ff7155;
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
  outline: none;
}

.step__title {
  display: block;
  width: 30vw;
  color: white;
  font-weight: 300;
  text-align: center;
  font-size: 16px;
  -webkit-transform: translateY(-8vh);
          transform: translateY(-8vh);
}

.step__title:nth-of-type(2) {
  color: #ff7155;
}

.section__3 {
  background: #da482f;
  min-height: 100vh;
}

.skills {
  padding: 100px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: #ddd;
}

.skills__item {
  margin: 3vw;
  width: 90vw;
  height: 90vw;
  cursor: pointer;
  overflow: hidden;
}

.skills__item:hover .skills__descript {
  -webkit-transform: translateY(-100%);
          transform: translateY(-100%);
}

.skills__circle {
  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-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  height: 100%;
  border: 2px solid white;
  background: rgba(255, 255, 255, 0.5);
  padding: 20px;
  cursor: pointer;
  -webkit-transition: all .5s ease-in-out;
  transition: all .5s ease-in-out;
  z-index: 1;
}

.skills__circle:hover .skillFont {
  color: #013c4b;
}

.skills__descript {
  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-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 90vw;
  height: 90vw;
  border: 2px solid #013c4b;
  background: rgba(0, 0, 0, 0.9);
  padding: 20px;
  -webkit-transition: all .5s linear;
  transition: all .5s linear;
  border-bottom: 3px solid rgba(255, 113, 85, 0.5);
}

.skill__descriptTxt {
  color: white;
  padding: 10px;
  text-align: justify;
  font-size: 14px;
}

.skill__descriptBtn {
  padding: 10px;
  background: #da482f;
  border: 1px solid #ff7155;
  cursor: pointer;
  color: white;
  border-radius: 3px;
  font-size: 16px;
  text-transform: none;
  margin-top: 10px;
}

.skill__descriptBtn--inTxt {
  color: #ff7155;
  font-weight: bold;
}

.skills__circleTitle {
  display: block;
  text-align: center;
  color: #013c4b;
  font-weight: 500;
  text-transform: uppercase;
}

.skillFont {
  color: #013c4b;
  font-size: 90px;
  padding: 20px;
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
}

.skill__title {
  padding: 100px 0;
}

.section__4 {
  background: #ddd;
  min-height: 100vh;
}

.section__5 {
  min-height: 100vh;
  background: #013c4b;
}

.section__contact {
  background: #01181f;
  min-height: 60vh;
}

.sectionLecturers {
  min-height: 120vh;
  background: url("../img/lectureLight.jpg") center;
  background-size: cover;
}

.titleLecturers {
  color: rgba(0, 0, 0, 0.5);
  background: #ddd;
  padding: 100px 0;
}

.sectionLecturers__content {
  position: relative;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  -ms-flex-line-pack: distribute;
      align-content: space-around;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding: 5vh;
}

.lecturer__form {
  background: white;
  margin: 3vh 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-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 95vw;
}

.form__img {
  height: 30vh;
  width: 30vh;
  border-radius: 50%;
  background: url("../img/lecturers/admin.jpg") center;
  background-size: cover;
  margin: 10px;
}

.form__txt {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
  background: white;
  padding: 20px;
}

.form__name {
  color: #013c4b;
  text-align: center;
  padding: 10px;
}

.formDescript {
  padding: 5vh;
  padding-bottom: 15vh;
  text-align: center;
  background: #ddd;
}

.form__descript {
  color: black;
  text-align: justify;
  padding: 10px;
  font-size: 16px;
}

.recruit__txt {
  color: white;
  padding: 50px;
  margin: auto;
  text-align: center;
}

.recruit__btns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 60%;
  margin: auto;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.recruit__btn {
  background: transparent;
  padding: 20px;
  margin: 30px;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 2px;
  border: 2px solid white;
  color: white;
  margin: 50px 0;
  cursor: pointer;
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
  width: 70vw;
}

.recruit__btn:hover {
  background: rgba(255, 255, 255, 0.3);
}

.recruit__content {
  margin-top: 10vw;
}

.recruit__list {
  color: white;
  margin: auto;
  width: 80%;
}

.recruit__txt--beforeLi {
  padding: 50px 0px;
  font-size: 22px;
  color: white;
}

.recruit__txt--afterLi {
  padding: 50px 0px;
  font-size: 22px;
  color: white;
  width: 80%;
  margin: auto;
  text-align: center;
}

.title--s {
  display: inline-block;
  font-size: 30px;
  padding: 50px 0px;
  text-align: center;
  width: 100%;
}

.white {
  color: white;
}

.section__contact {
  min-height: 60vh;
}

.title__contact {
  color: rgba(255, 255, 255, 0.3);
  text-align: center;
  margin-bottom: 0;
  font-size: 50px;
}

.contact__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  color: white;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
  margin: auto;
}

.contactFont {
  display: block;
  width: 100px;
  text-align: center;
  padding: 10px;
  color: #da482f;
  font-size: 20px;
}

.title__contact--inside {
  font-size: 20px;
  padding: 30px;
  margin: 0 10vw;
}

.txt__contact--wf {
  margin-left: 100px;
}

.off {
  display: none;
}

.crFooter {
  padding: 15px;
  font-size: 12px;
  background: #000;
  color: rgba(255, 255, 255, 0.5);
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

@media (orientation: landscape) and (min-width: 400px) {
  .fa-times {
    position: absolute;
    top: 15px;
    right: 10px;
    font-size: 30px;
    line-height: 60px;
    padding: 5px 10px;
    color: rgba(255, 113, 85, 0.5);
  }
  .fa-times.off {
    display: none !important;
  }
  .fa-bars {
    position: absolute;
    top: 15px;
    right: 10px;
    font-size: 30px;
    line-height: 60px;
    padding: 5px 10px;
    color: rgba(255, 255, 255, 0.5);
  }
  .fa-bars.off {
    display: none !important;
  }
  .arrowUp {
    padding: 10px;
    border-radius: 50%;
    background: #013c4b;
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 2;
    height: 50px;
    width: 50px;
    border: none;
    cursor: pointer;
    outline: none;
    -webkit-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
  }
  .arrowUp:hover {
    background: #007899;
  }
  .arrowUp.off {
    display: none !important;
  }
  .fa-arrow-up {
    color: white;
    font-size: 24px;
    padding: 0;
    margin: 0;
  }
  .content {
    overflow-x: hidden;
    width: 100%;
  }
  .mainNav {
    height: 70px;
    width: 100%;
    background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.7)), to(transparent));
    background-image: linear-gradient(rgba(0, 0, 0, 0.7), transparent);
    position: fixed;
    z-index: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .mainNav__list {
    position: absolute;
    top: 70px;
    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;
    height: calc(100vh - 70px);
    width: 100%;
    background: #000;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    list-style: none;
    -webkit-transform: translateX(0%);
            transform: translateX(0%);
    -webkit-transition: all .3s linear;
    transition: all .3s linear;
  }
  .mainNav__item.mobile {
    display: block;
    width: 100vw !important;
    text-align: center;
  }
  .mainNav__list.off {
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
  .mainNav__item {
    line-height: 1em;
    padding: 10px 10px;
    color: white;
    letter-spacing: 2px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    -webkit-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
  }
  .mainNav__item:hover {
    color: white;
    background: rgba(0, 120, 153, 0.7);
  }
  .mainNav__logo {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .mainNav__logo--uwr {
    font-weight: 500;
    color: rgba(0, 120, 153, 0.7);
    line-height: 50px;
    padding: 10px;
    background: #000;
  }
  .mainNav__logo--wmii {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    color: rgba(255, 255, 255, 0.5);
    font-size: 16px;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    line-height: 50px;
    padding: 10px;
  }
  .fontAwesome {
    min-height: 10vh;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    background: transparent;
  }
  i {
    color: black;
    font-size: 50px;
    padding: 50px;
  }
  .title {
    text-align: center;
    font-size: 40px;
    font-weight: 300;
    padding: 30px 0px;
    color: white;
  }
  .btn--transparent {
    display: none;
    -webkit-transform: translate(calc(50vw - 50%), -10vh);
            transform: translate(calc(50vw - 50%), -10vh);
    background: transparent;
    border: 2px solid #ff7155;
    color: #ff7155;
    -webkit-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
    letter-spacing: 1px;
    font-size: 20px;
    padding: 20px 30px;
    cursor: pointer;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 5px;
    outline: none;
  }
  .btn--transparent:hover {
    background: rgba(218, 72, 47, 0.7);
    color: white;
  }
  .btn--transparent--color {
    background: rgba(218, 72, 47, 0.7);
    color: white;
  }
  .mainHeader__box {
    padding: 25vh 10vh;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.7)), to(transparent));
    background-image: linear-gradient(rgba(0, 0, 0, 0.7), transparent);
  }
  .mainHeader__box--left {
    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-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .mainHeader__title--smaller {
    color: #007899;
    font-size: 18px;
    line-height: 19px;
    text-transform: uppercase;
    font-weight: 500;
  }
  .mainHeader__title--bigger {
    color: white;
    font-size: 52px;
    text-transform: uppercase;
    font-weight: 500;
    width: 100%;
  }
  .mainHeader {
    z-index: -1;
    height: 90vh;
    background: url("../img/photo1dark.jpg") center;
    background-size: cover;
    background-attachment: fixed;
  }
  .section {
    position: relative;
    overflow-x: hidden;
  }
  .section__1 {
    padding-top: 10vh;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    position: relative;
    background: #013c4b;
    min-height: 70vh;
  }
  .section__1--title {
    opacity: 0;
    margin: 5vh;
    -webkit-transform: translateX(10vw);
            transform: translateX(10vw);
    -webkit-transition: all .8s linear;
    transition: all .8s linear;
  }
  .section__1--titleShow {
    opacity: 1;
    -webkit-transform: translateX(0vw);
            transform: translateX(0vw);
  }
  .section__1--txt {
    width: 70%;
    margin: auto;
    text-align: justify;
    color: white;
  }
  .studyDegrees {
    background: url("../img/photo2.jpg") center;
    background-size: cover;
    background-attachment: fixed;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    height: 400vh;
  }
  .studyDegrees__steps {
    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-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    padding-top: 10vh;
    background: rgba(0, 0, 0, 0.8);
    height: 300vh;
  }
  .fa-sort-down {
    display: block;
    width: 100%;
    text-align: center;
    color: white;
    font-size: 20px;
    padding: 10px;
    background: rgba(0, 0, 0, 0.9);
  }
  .steps__img {
    width: 100vw;
    height: 100vw;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    overflow-x: hidden;
    padding-top: 70px;
  }
  .studyDegrees__text {
    overflow-x: hidden;
    height: 200vh;
    width: 100vw;
    background: rgba(0, 0, 0, 0.95);
    padding: 20px;
    padding-top: 10px;
  }
  .step__text {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .step__text--title {
    color: #ff7155;
    padding: 20px;
    text-align: center;
  }
  .step__text--p {
    color: white;
    text-align: justify;
    padding: 20px;
  }
  .steps__title {
    font-size: 40px;
    color: white;
    text-align: center;
  }
  .fa-arrow-down {
    padding: 10px;
    color: white;
  }
  .studyDegrees__step {
    width: 30vw;
    height: 15vh;
    border: 1px solid white;
    border-bottom: none;
    border-right: none;
    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-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .studyDegrees__step--2 {
    -webkit-transform: translateY(calc(-15vh + 1px));
            transform: translateY(calc(-15vh + 1px));
  }
  .studyDegrees__step--3 {
    -webkit-transform: translateY(calc(-30vh + 2px));
            transform: translateY(calc(-30vh + 2px));
  }
  .fa-user-graduate {
    -webkit-transform: translateY(-6vw);
            transform: translateY(-6vw);
    color: #ff7155;
    font-size: 50px;
    cursor: pointer;
  }
  .fa-user-graduate.active {
    color: white;
    text-shadow: 0 0 15px white;
  }
  .step__btn {
    padding: 10px;
    text-transform: uppercase;
    font-weight: 500;
    background: rgba(0, 0, 0, 0.8);
    cursor: pointer;
    color: #ff7155;
    -webkit-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
    outline: none;
  }
  .step__title {
    display: block;
    width: 30vw;
    color: white;
    font-weight: 300;
    text-align: center;
    font-size: 16px;
    -webkit-transform: translateY(-8vh);
            transform: translateY(-8vh);
  }
  .step__title:nth-of-type(2) {
    color: #ff7155;
  }
  .section__3 {
    background: #da482f;
    min-height: 100vh;
  }
  .skills {
    padding: 100px 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    background: #ddd;
  }
  .skills__item {
    margin: 3vw;
    width: 45vw;
    height: 45vw;
    cursor: pointer;
    overflow: hidden;
  }
  .skills__item:hover .skills__descript {
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
  }
  .skills__circle {
    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-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 100%;
    height: 100%;
    border: 2px solid white;
    background: rgba(255, 255, 255, 0.5);
    padding: 20px;
    cursor: pointer;
    -webkit-transition: all .5s ease-in-out;
    transition: all .5s ease-in-out;
    z-index: 1;
  }
  .skills__circle:hover .skillFont {
    color: #013c4b;
  }
  .skills__descript {
    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-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 100%;
    height: 100%;
    border: 2px solid #013c4b;
    background: rgba(0, 0, 0, 0.9);
    padding: 20px;
    -webkit-transition: all .5s linear;
    transition: all .5s linear;
  }
  .skill__descriptTxt {
    color: white;
    padding: 10px;
    text-align: justify;
    font-size: 14px;
  }
  .skills__circleTitle {
    display: block;
    text-align: center;
    color: #013c4b;
    font-weight: 500;
    text-transform: uppercase;
  }
  .skillFont {
    color: #013c4b;
    font-size: 90px;
    padding: 20px;
    -webkit-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
  }
  .skill__title {
    padding: 100px 0;
  }
  .section__4 {
    background: #ddd;
    min-height: 100vh;
  }
  .section__5 {
    min-height: 100vh;
    background: #013c4b;
  }
  .section__contact {
    min-height: 60vh;
    padding-bottom: 10vh;
  }
  .sectionLecturers {
    min-height: 120vh;
    background: url("../img/lectureLight.jpg") center;
    background-size: cover;
  }
  .titleLecturers {
    color: rgba(0, 0, 0, 0.5);
    background: #ddd;
    padding: 100px 0;
  }
  .sectionLecturers__content {
    position: relative;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: distribute;
        justify-content: space-around;
    -ms-flex-line-pack: distribute;
        align-content: space-around;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    padding: 5vh;
  }
  .lecturer__form {
    background: white;
    margin: 3vh 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-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 95vw;
  }
  .form__img {
    height: 30vh;
    width: 30vh;
    border-radius: 50%;
    background: url("../img/lecturers/admin.jpg") center;
    background-size: cover;
    margin: 10px;
  }
  .form__txt {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 100%;
    background: white;
    padding: 20px;
  }
  .form__name {
    color: #013c4b;
    text-align: center;
    padding: 10px;
  }
  .form__descript {
    color: black;
    text-align: justify;
    padding: 10px;
    font-size: 16px;
  }
  .recruit__title {
    padding-top: 5vw;
    padding-bottom: 20px;
  }
  .recruit__txt {
    color: white;
    padding: 50px;
    margin: auto;
    text-align: center;
  }
  .recruit__btn {
    background: transparent;
    padding: 20px;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 2px;
    border: 2px solid white;
    color: white;
    margin: 50px 10px;
    width: 30vw;
  }
  .section__contact {
    min-height: 50vh;
  }
  .title__contact {
    color: rgba(255, 255, 255, 0.3);
    text-align: center;
    margin-bottom: 0;
    font-size: 50px;
  }
  .contact__content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    color: white;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    width: 100%;
    margin: auto;
    margin-bottom: 10vh;
  }
  .contactFont {
    display: block;
    width: 100px;
    text-align: center;
    padding: 10px;
    color: #da482f;
    font-size: 20px;
  }
  .title__contact--inside {
    font-size: 20px;
    padding: 30px;
    margin: 0 10vw;
  }
  .txt__contact--wf {
    margin-left: 100px;
  }
  .off {
    display: none;
  }
  .mainNav.scrolled {
    background-color: rgba(0, 0, 0, 0.7) !important;
    -webkit-transition: background-color 200ms linear;
    transition: background-color 200ms linear;
  }
}

@media (orientation: landscape) and (min-width: 600px) {
  .fa-bars {
    display: none !important;
  }
  .fa-times {
    display: none !important;
  }
  .arrowUp {
    padding: 10px;
    border-radius: 50%;
    background: #013c4b;
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 2;
    height: 50px;
    width: 50px;
    border: none;
    cursor: pointer;
    outline: none;
    -webkit-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
  }
  .arrowUp:hover {
    background: #007899;
  }
  .arrowUp.off {
    display: none !important;
  }
  .fa-arrow-up {
    color: white;
    font-size: 24px;
    padding: 0;
    margin: 0;
  }
  .mainNav {
    height: 70px;
    width: 100%;
    background-image: -webkit-gradient(linear, left top, left bottom, from(black), color-stop(rgba(0, 0, 0, 0.7)), to(transparent));
    background-image: linear-gradient(black, rgba(0, 0, 0, 0.7), transparent);
    position: fixed;
    z-index: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .mainNav__item.mobile {
    display: block;
    line-height: 17px;
    padding: 10px 10px;
    font-size: 16px;
    color: white;
    letter-spacing: 1px;
    font-weight: 500;
    cursor: pointer;
    -webkit-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
  }
  .mainNav__list {
    position: absolute;
    top: 0px;
    left: 50%;
    right: 20px;
    height: 70px;
    width: 40%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-pack: distribute;
        justify-content: space-around;
    list-style: none;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
  .mainNav__list.off {
    position: absolute;
    top: 0px;
    left: 50%;
    right: 10px;
    height: 70px;
    width: 60%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    list-style: none;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    background: transparent;
  }
  .mainNav__item {
    display: block;
    line-height: 50px;
    padding: 10px 20px;
    font-size: 16px;
    color: white;
    letter-spacing: 1px;
    font-weight: 500;
    cursor: pointer;
    -webkit-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
  }
  .mainNav__item:hover {
    color: white;
    background: rgba(0, 120, 153, 0.7);
  }
  .lecturer__form {
    background: white;
    margin: 3vh 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 45vw;
  }
  .mainNav.scrolled {
    background-color: rgba(0, 0, 0, 0.7) !important;
    -webkit-transition: background-color 200ms linear;
    transition: background-color 200ms linear;
  }
  .skills {
    padding: 100px 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    background: #ddd;
  }
  .skills__item {
    margin: 3vw;
    width: 40vw;
    height: 40vw;
    cursor: pointer;
    overflow: hidden;
  }
  .skills__item:hover .skills__descript {
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
  }
  .skills__circle {
    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-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 100%;
    height: 100%;
    border: 2px solid white;
    background: rgba(255, 255, 255, 0.5);
    padding: 20px;
    cursor: pointer;
    -webkit-transition: all .5s ease-in-out;
    transition: all .5s ease-in-out;
    z-index: 1;
  }
  .skills__circle:hover .skillFont {
    color: #013c4b;
  }
  .skills__descript {
    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-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 40vw;
    height: 40vw;
    border: 2px solid #013c4b;
    background: rgba(0, 0, 0, 0.9);
    padding: 20px;
    -webkit-transition: all .5s linear;
    transition: all .5s linear;
  }
  .skill__descriptTxt {
    color: white;
    padding: 10px;
    text-align: justify;
    font-size: 12px;
  }
}

@media (orientation: landscape) and (min-width: 1000px) {
  .fa-bars {
    display: none !important;
  }
  .fa-times {
    display: none !important;
  }
  .arrowUp {
    padding: 10px;
    border-radius: 50%;
    background: #013c4b;
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 2;
    height: 50px;
    width: 50px;
    border: none;
    cursor: pointer;
    outline: none;
    -webkit-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
  }
  .arrowUp:hover {
    background: #007899;
  }
  .arrowUp.off {
    display: none !important;
  }
  .fa-arrow-up {
    color: white;
    font-size: 24px;
    padding: 0;
    margin: 0;
  }
  .content {
    overflow-x: hidden;
    width: 100%;
  }
  .mainNav {
    height: 70px;
    width: 100%;
    background-image: -webkit-gradient(linear, left top, left bottom, from(black), color-stop(rgba(0, 0, 0, 0.7)), to(transparent));
    background-image: linear-gradient(black, rgba(0, 0, 0, 0.7), transparent);
    position: fixed;
    z-index: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .mainNav__item.mobile {
    display: block;
    line-height: 30px;
    padding: 10px 30px;
    font-size: 16px;
    color: white;
    letter-spacing: 1px;
    font-weight: 500;
    cursor: pointer;
    -webkit-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
  }
  .mainNav__list {
    position: absolute;
    top: 0px;
    left: 50%;
    right: 20px;
    height: 70px;
    width: 40%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-pack: distribute;
        justify-content: space-around;
    list-style: none;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
  .mainNav__list.off {
    position: absolute;
    top: 0px;
    left: 50%;
    right: 20px;
    height: 70px;
    width: 40%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-pack: distribute;
        justify-content: space-around;
    list-style: none;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    background: transparent;
  }
  .mainNav__item {
    display: block;
    line-height: 50px;
    padding: 10px 20px;
    font-size: 16px;
    color: white;
    letter-spacing: 1px;
    font-weight: 500;
    cursor: pointer;
    -webkit-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
  }
  .mainNav__item:hover {
    color: white;
    background: rgba(0, 120, 153, 0.7);
  }
  .mainNav__logo {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .mainNav__logo--uwr {
    font-weight: 500;
    color: rgba(0, 120, 153, 0.7);
    line-height: 50px;
    padding: 10px;
    background: #000;
  }
  .mainNav__logo--wmii {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    color: rgba(255, 255, 255, 0.5);
    font-size: 16px;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    line-height: 50px;
    padding: 10px;
  }
  .mainHeader__box {
    padding: 25vh;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.7)), to(transparent));
    background-image: linear-gradient(rgba(0, 0, 0, 0.7), transparent);
  }
  .mainHeader__box--left {
    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-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .mainHeader__title--smaller {
    color: #007899;
    font-size: 44px;
    line-height: 45px;
    text-transform: uppercase;
    font-weight: 300;
  }
  .mainHeader__title--bigger {
    color: white;
    font-size: 90px;
    text-transform: uppercase;
    font-weight: 300;
  }
  .course__title--additionalList {
    width: 40%;
    margin: auto;
  }
  .btn--transparent {
    display: block;
    -webkit-transform: translate(calc(50vw - 50%), -10vh);
            transform: translate(calc(50vw - 50%), -10vh);
    background: transparent;
    border: 2px solid #ff7155;
    color: #ff7155;
    -webkit-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
    letter-spacing: 1px;
    font-size: 20px;
    padding: 20px 30px;
    cursor: pointer;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 5px;
    outline: none;
  }
  .btn--transparent:hover {
    background: rgba(218, 72, 47, 0.7);
    color: white;
    -webkit-animation-name: bounce;
            animation-name: bounce;
    -webkit-animation-duration: 1s;
            animation-duration: 1s;
    -webkit-animation-fill-mode: both;
            animation-fill-mode: both;
    -webkit-animation-timing-function: ease-in-out;
            animation-timing-function: ease-in-out;
    -webkit-animation-iteration-count: 1;
            animation-iteration-count: 1;
  }
  .btn--transparent--color {
    background: rgba(218, 72, 47, 0.7);
    color: white;
  }
  .mainHeader {
    z-index: -1;
    height: 90vh;
    background: url("../img/photo1dark.jpg") center;
    background-size: cover;
    background-attachment: fixed;
  }
  .section__3 {
    background: #da482f;
    min-height: 100vh;
  }
  .skills {
    padding: 100px 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    background: #ddd;
  }
  .skills__item {
    margin: 3vw;
    width: 23vw;
    height: 23vw;
    cursor: pointer;
    overflow: hidden;
    opacity: 0;
    -webkit-transform: translateX(10vw);
            transform: translateX(10vw);
    -webkit-transition: all .3s linear;
    transition: all .3s linear;
  }
  .skills__item:hover .skills__descript {
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
  }
  .skills__item--show {
    opacity: 1;
    -webkit-transform: translateX(0vw);
            transform: translateX(0vw);
  }
  .skills__circle {
    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-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 100%;
    height: 100%;
    border: 2px solid white;
    background: rgba(255, 255, 255, 0.5);
    padding: 20px;
    cursor: pointer;
    -webkit-transition: all .5s ease-in-out;
    transition: all .5s ease-in-out;
    z-index: 1;
  }
  .skills__circle:hover .skillFont {
    color: #013c4b;
  }
  .skills__descript {
    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-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 23vw;
    height: 23vw;
    border: 2px solid #013c4b;
    background: rgba(0, 0, 0, 0.9);
    padding: 20px;
    -webkit-transition: all .5s linear;
    transition: all .5s linear;
  }
  .skill__descriptTxt {
    color: white;
    padding: 5px;
    text-align: justify;
    font-size: 14px;
  }
  .skills__circleTitle {
    display: block;
    text-align: center;
    color: #013c4b;
    font-weight: 500;
    text-transform: uppercase;
  }
  .skillFont {
    color: #013c4b;
    font-size: 90px;
    padding: 20px;
    -webkit-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
  }
  .skill__title {
    padding: 100px 0;
    opacity: 0;
    -webkit-transition: all .3s linear;
    transition: all .3s linear;
    -webkit-transform: translateX(10vw);
            transform: translateX(10vw);
  }
  .skill__title--show {
    opacity: 1;
    -webkit-transform: translateX(0vw);
            transform: translateX(0vw);
  }
  .recruit__title {
    padding-bottom: 20px;
    opacity: 1;
    -webkit-transition: all .3s linear;
    transition: all .3s linear;
  }
  .recruit__title--2 {
    padding-top: 20px;
    font-size: 25px;
  }
  .recruit__title--show {
    opacity: 1;
    -webkit-transform: translateX(0vw);
            transform: translateX(0vw);
  }
  .recruit__txt {
    opacity: 1;
    -webkit-transition: all .3s linear;
    transition: all .3s linear;
  }
  .recruit__txt--show {
    opacity: 1;
    -webkit-transform: translateX(0vw);
            transform: translateX(0vw);
  }
  .recruit__btns {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  .title__contact {
    color: rgba(255, 255, 255, 0.3);
    text-align: center;
    margin-bottom: 0;
    font-size: 50px;
  }
  .contact__content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    color: white;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .contactFont {
    display: block;
    width: 100px;
    text-align: center;
    padding: 10px;
    color: #da482f;
    font-size: 20px;
  }
  .title__contact--inside {
    font-size: 20px;
    padding: 30px;
  }
  .txt__contact--wf {
    margin-left: 100px;
  }
  .studyDegrees {
    background: url("../img/photo2.jpg") center;
    background-size: cover;
    background-attachment: fixed;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    height: 110vh;
  }
  .studyDegrees__steps {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding-top: 10vh;
    background: rgba(0, 0, 0, 0.8);
    height: 110vh;
  }
  .fa-sort-down {
    display: none !important;
  }
  .steps__img {
    width: 58vw;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    overflow-x: hidden;
  }
  .studyDegrees__text {
    overflow-x: hidden;
    height: 100%;
    width: 42vw;
    background: rgba(0, 0, 0, 0.95);
    padding: 20px;
    padding-top: calc(10vh + 70px);
  }
  .step__text {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .step__text--title {
    color: #ff7155;
    padding: 20px;
    text-align: center;
  }
  .step__text--p {
    color: white;
    text-align: justify;
    padding: 20px;
  }
  .steps__title {
    font-size: 60px;
    color: white;
    text-align: center;
  }
  .fa-arrow-down {
    padding: 10px;
    color: white;
  }
  .studyDegrees__step {
    width: 15vw;
    height: 8vw;
    border: 1px solid white;
    border-bottom: none;
    border-right: none;
    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-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .studyDegrees__step--2 {
    -webkit-transform: translateY(calc(-8vw + 1px));
            transform: translateY(calc(-8vw + 1px));
  }
  .studyDegrees__step--3 {
    -webkit-transform: translateY(calc(-16vw + 2px));
            transform: translateY(calc(-16vw + 2px));
  }
  .fa-user-graduate {
    -webkit-transform: translateY(-6vw);
            transform: translateY(-6vw);
    color: #ff7155;
    font-size: 50px;
    cursor: pointer;
  }
  .fa-user-graduate:hover {
    color: #da482f;
  }
  .fa-user-graduate.active {
    color: white;
    text-shadow: 0 0 15px white;
  }
  .step__btn {
    padding: 10px;
    text-transform: uppercase;
    font-weight: 500;
    background: rgba(0, 0, 0, 0.8);
    cursor: pointer;
    color: #ff7155;
    -webkit-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
    outline: none;
  }
  .step__title {
    color: white;
    font-weight: 300;
    font-size: 16px;
    -webkit-transform: translateY(-6vw);
            transform: translateY(-6vw);
  }
  .step__title:nth-of-type(2) {
    color: #ff7155;
  }
  @-webkit-keyframes bounce {
    0%,
    100%,
    20%,
    50%,
    80% {
      -webkit-transform: translate(calc(50vw - 50%), -10vh);
              transform: translate(calc(50vw - 50%), -10vh);
    }
    40% {
      -webkit-transform: translate(calc(50vw - 50% - 20px), -10vh);
              transform: translate(calc(50vw - 50% - 20px), -10vh);
    }
    60% {
      -webkit-transform: translate(calc(50vw - 50% - 10px), -10vh);
              transform: translate(calc(50vw - 50% - 10px), -10vh);
    }
  }
  @keyframes bounce {
    0%,
    100%,
    20%,
    50%,
    80% {
      -webkit-transform: translate(calc(50vw - 50%), -10vh);
              transform: translate(calc(50vw - 50%), -10vh);
    }
    40% {
      -webkit-transform: translate(calc(50vw - 50% - 20px), -10vh);
              transform: translate(calc(50vw - 50% - 20px), -10vh);
    }
    60% {
      -webkit-transform: translate(calc(50vw - 50% - 10px), -10vh);
              transform: translate(calc(50vw - 50% - 10px), -10vh);
    }
  }
  .mainNav.scrolled {
    background-color: rgba(0, 0, 0, 0.7) !important;
    -webkit-transition: background-color 200ms linear;
    transition: background-color 200ms linear;
  }
  .recruit__list {
    width: 40%;
  }
}

@media (orientation: landscape) and (min-width: 1340px) {
  .fa-bars {
    display: none !important;
  }
  .fa-times {
    display: none !important;
  }
  .arrowUp {
    padding: 10px;
    border-radius: 50%;
    background: #013c4b;
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 2;
    height: 50px;
    width: 50px;
    border: none;
    cursor: pointer;
    outline: none;
    -webkit-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
  }
  .arrowUp:hover {
    background: #007899;
  }
  .arrowUp.off {
    display: none !important;
  }
  .fa-arrow-up {
    color: white;
    font-size: 24px;
    padding: 0;
    margin: 0;
  }
  .content {
    overflow-x: hidden;
    width: 100%;
  }
  .mainNav {
    height: 70px;
    width: 100%;
    background-image: -webkit-gradient(linear, left top, left bottom, from(black), color-stop(rgba(0, 0, 0, 0.7)), to(transparent));
    background-image: linear-gradient(black, rgba(0, 0, 0, 0.7), transparent);
    position: fixed;
    z-index: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .mainNav__item.mobile {
    display: block;
    line-height: 50px;
    padding: 10px 10px;
    font-size: 16px;
    color: white;
    letter-spacing: 1px;
    font-weight: 500;
    cursor: pointer;
    -webkit-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
  }
  .mainNav__list {
    position: absolute;
    top: 0px;
    left: 50%;
    right: 20px;
    height: 70px;
    width: 40%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-pack: distribute;
        justify-content: space-around;
    list-style: none;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
  .mainNav__list.off {
    position: absolute;
    top: 0px;
    left: 50%;
    right: 20px;
    height: 70px;
    width: 40%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-pack: distribute;
        justify-content: space-around;
    list-style: none;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
  .mainNav__item {
    display: block;
    line-height: 50px;
    padding: 10px 50px;
    font-size: 16px;
    color: white;
    letter-spacing: 1px;
    font-weight: 500;
    cursor: pointer;
    -webkit-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
  }
  .mainNav__item:hover {
    color: white;
    background: rgba(0, 120, 153, 0.7);
  }
  .mainNav__logo {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .mainNav__logo--uwr {
    font-weight: 500;
    color: rgba(0, 120, 153, 0.7);
    line-height: 50px;
    padding: 10px;
    background: #000;
  }
  .mainNav__logo--wmii {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    color: rgba(255, 255, 255, 0.5);
    font-size: 16px;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    line-height: 50px;
    padding: 10px;
  }
  .fontAwesome {
    min-height: 10vh;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    background: transparent;
  }
  i {
    color: black;
    font-size: 50px;
    padding: 50px;
  }
  .title {
    text-align: center;
    font-size: 60px;
    font-weight: 300;
    padding: 100px 0px;
    color: white;
  }
  .btn--transparent {
    display: block;
    -webkit-transform: translate(calc(50vw - 50%), -10vh);
            transform: translate(calc(50vw - 50%), -10vh);
    background: transparent;
    border: 2px solid #ff7155;
    color: #ff7155;
    -webkit-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
    letter-spacing: 1px;
    font-size: 20px;
    padding: 20px 30px;
    cursor: pointer;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 5px;
    outline: none;
  }
  .btn--transparent:hover {
    background: rgba(218, 72, 47, 0.7);
    color: white;
    -webkit-animation-name: bounce;
            animation-name: bounce;
    -webkit-animation-duration: 1s;
            animation-duration: 1s;
    -webkit-animation-fill-mode: both;
            animation-fill-mode: both;
    -webkit-animation-timing-function: ease-in-out;
            animation-timing-function: ease-in-out;
    -webkit-animation-iteration-count: 1;
            animation-iteration-count: 1;
  }
  .btn--transparent--color {
    background: rgba(218, 72, 47, 0.7);
    color: white;
  }
  .mainHeader__box {
    padding: 25vh;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.7)), to(transparent));
    background-image: linear-gradient(rgba(0, 0, 0, 0.7), transparent);
  }
  .mainHeader__box--left {
    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-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .mainHeader__title--smaller {
    color: #007899;
    font-size: 40px;
    line-height: 41px;
    text-transform: uppercase;
    font-weight: 300;
  }
  .mainHeader__title--bigger {
    color: white;
    font-size: 100px;
    text-transform: uppercase;
    font-weight: 300;
  }
  .mainHeader {
    z-index: -1;
    height: 90vh;
    background: url("../img/photo1dark.jpg") center;
    background-size: cover;
    background-attachment: fixed;
  }
  .section {
    position: relative;
    overflow-x: hidden;
  }
  .section__1 {
    position: relative;
    background: #013c4b;
    min-height: 100vh;
  }
  .section__1--txt {
    width: 70%;
    margin: auto;
    text-align: justify;
    color: white;
  }
  .studyDegrees {
    background: url("../img/photo2.jpg") center;
    background-size: cover;
    background-attachment: fixed;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    height: 110vh;
  }
  .studyDegrees__steps {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding-top: 10vh;
    background: rgba(0, 0, 0, 0.8);
  }
  .fa-sort-down {
    display: none !important;
  }
  .steps__img {
    width: 58vw;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    overflow-x: hidden;
  }
  .studyDegrees__text {
    overflow-x: hidden;
    height: 100%;
    width: 42vw;
    background: rgba(0, 0, 0, 0.95);
    padding: 20px;
    padding-top: calc(10vh + 70px);
  }
  .step__text {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .step__text--title {
    color: #ff7155;
    padding: 20px;
    text-align: center;
  }
  .step__text--p {
    color: white;
    text-align: justify;
    padding: 20px;
  }
  .steps__title {
    font-size: 60px;
    color: white;
    text-align: center;
  }
  .fa-arrow-down {
    padding: 10px;
    color: white;
  }
  .studyDegrees__step {
    width: 15vw;
    height: 8vw;
    border: 1px solid white;
    border-bottom: none;
    border-right: none;
    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-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .studyDegrees__step--2 {
    -webkit-transform: translateY(calc(-8vw + 1px));
            transform: translateY(calc(-8vw + 1px));
  }
  .studyDegrees__step--3 {
    -webkit-transform: translateY(calc(-16vw + 2px));
            transform: translateY(calc(-16vw + 2px));
  }
  .fa-user-graduate {
    -webkit-transform: translateY(-6vw);
            transform: translateY(-6vw);
    color: #ff7155;
    font-size: 50px;
    cursor: pointer;
  }
  .fa-user-graduate:hover {
    color: #da482f;
  }
  .fa-user-graduate.active {
    color: white;
    text-shadow: 0 0 15px white;
  }
  .step__btn {
    padding: 10px;
    text-transform: uppercase;
    font-weight: 500;
    background: rgba(0, 0, 0, 0.8);
    cursor: pointer;
    color: #ff7155;
    -webkit-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
    outline: none;
  }
  .step__title {
    color: white;
    font-weight: 300;
    font-size: 16px;
    -webkit-transform: translateY(-6vw);
            transform: translateY(-6vw);
  }
  .step__title:nth-of-type(2) {
    color: #ff7155;
  }
  .section__3 {
    background: #da482f;
    min-height: 100vh;
  }
  .skills {
    padding: 100px 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    background: #ddd;
  }
  .skills__item {
    margin: 3vw;
    width: 20vw;
    height: 20vw;
    cursor: pointer;
    overflow: hidden;
  }
  .skills__item:hover .skills__descript {
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
  }
  .skills__circle {
    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-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 100%;
    height: 100%;
    border: 2px solid white;
    background: rgba(255, 255, 255, 0.5);
    padding: 20px;
    cursor: pointer;
    -webkit-transition: all .5s ease-in-out;
    transition: all .5s ease-in-out;
    z-index: 1;
  }
  .skills__circle:hover .skillFont {
    color: #013c4b;
  }
  .skills__descript {
    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-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 20vw;
    height: 20vw;
    border: 2px solid #013c4b;
    background: rgba(0, 0, 0, 0.9);
    padding: 20px;
    -webkit-transition: all .5s linear;
    transition: all .5s linear;
  }
  .skill__descriptTxt {
    color: white;
    padding: 10px;
    text-align: justify;
    font-size: 14px;
  }
  .skills__circleTitle {
    display: block;
    text-align: center;
    color: #013c4b;
    font-weight: 500;
    text-transform: uppercase;
  }
  .skillFont {
    color: #013c4b;
    font-size: 90px;
    padding: 20px;
    -webkit-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
  }
  .skill__title {
    padding: 100px 0;
  }
  .section__4 {
    background: #ddd;
    min-height: 100vh;
  }
  .section__5 {
    min-height: 100vh;
    background: #013c4b;
  }
  .section__contact {
    min-height: 60vh;
  }
  .sectionLecturers {
    min-height: 120vh;
    background: url("../img/lectureLight.jpg") center;
    background-size: cover;
  }
  .titleLecturers {
    color: rgba(0, 0, 0, 0.5);
    background: #ddd;
    padding: 100px 0;
  }
  .sectionLecturers__content {
    position: relative;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: distribute;
        justify-content: space-around;
    -ms-flex-line-pack: distribute;
        align-content: space-around;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    padding: 5vh;
  }
  .lecturer__form {
    background: white;
    margin: 3vh 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 45vw;
  }
  .form__img {
    height: 30vh;
    width: 30vh;
    border-radius: 50%;
    background: url("../img/lecturers/admin.jpg") center;
    background-size: cover;
    margin: 10px;
  }
  .form__txt {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 50%;
    background: white;
    padding: 20px;
  }
  .form__name {
    color: #013c4b;
    text-align: center;
    padding: 10px;
  }
  .form__descript {
    color: black;
    text-align: justify;
    padding: 10px;
    font-size: 16px;
  }
  .recruit__title {
    padding-bottom: 20px;
  }
  .recruit__title--2 {
    padding-top: 20px;
    font-size: 30px;
  }
  .recruit__txt {
    color: white;
    padding: 50px;
    width: 60%;
    margin: auto;
    text-align: center;
  }
  .recruit__btn {
    background: transparent;
    padding: 20px;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 2px;
    border: 2px solid white;
    color: white;
    margin: 50px 0;
  }
  .title__contact {
    color: rgba(255, 255, 255, 0.3);
    text-align: center;
    margin-bottom: 0;
    font-size: 50px;
  }
  .contact__content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    color: white;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .contactFont {
    display: block;
    width: 100px;
    text-align: center;
    padding: 10px;
    color: #da482f;
    font-size: 20px;
  }
  .title__contact--inside {
    font-size: 20px;
    padding: 30px;
  }
  .txt__contact--wf {
    margin-left: 100px;
  }
  .off {
    display: none;
  }
}

.test {
  font-family: "Open Sans", sans-serif;
  background: #01181f;
  color: white;
}

.nav-colored {
  background-color: #000;
}

.nav-transparent {
  background-color: transparent;
}
/*# sourceMappingURL=style.css.map */