/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul, li {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after {
  content: '';
  content: none;
}

q:before, q:after {
  content: '';
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

button {
  background-color: transparent;
  outline: none;
  border: 0;
  cursor: pointer;
}

/* Makes the work with boxs more easier */
html {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

*, *::before, *::after {
  -webkit-box-sizing: inherit;
  -moz-box-sizing: inherit;
  box-sizing: inherit;
}

.header {
  position: fixed;
  top: 0;
  z-index: 99;
  width: 100%;
  overflow: hidden;
  background-color: rgba(24, 74, 117, 0.8);
  border-bottom: 4px solid #f79211;
  transition: background-color 0.6s ease-in;
}

.header--darken {
  background-color: #184a75;
  transition: background-color 0.6s ease-in;
}

.header__container__top {
  border-bottom: 1px solid #f79211;
  padding: 8px 30px;
  width: 100%;
  display: flex;
  justify-content: flex-end;
}

@media only screen and (max-width: 1024px) {
  .header__container__top {
    display: none !important;
  }
}

.header__container__middle {
  padding: 15px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

@media only screen and (max-width: 1024px) {
  .header__container__middle {
    padding: 0 30px;
    height: 90px;
  }
}

@media only screen and (max-width: 320px) {
  .header__container__middle {
    height: 70px;
  }
}

.header__link--top {
  color: #ffffff;
  font-family: "Open Sans", sans-serif;
  font-size: 14px;
  letter-spacing: 2px;
  text-decoration: none;
}

.header__link--top:nth-child(-n+1)::after {
  margin: 0 8px;
  content: "|";
  color: #f79211;
  font-weight: bold;
}

.header__link--top:nth-child(-n+2)::after {
  margin: 0 8px;
  content: "|";
  color: #f79211;
  font-weight: bold;
}

.header__link--top:nth-child(-n+3)::after {
  margin: 0 8px;
  content: "|";
  color: #f79211;
  font-weight: bold;
}

.header__link--top:nth-child(-n+4)::after {
  margin: 0 8px;
  content: "|";
  color: #f79211;
  font-weight: bold;
}

.header__nav__desktop {
  display: flex;
  justify-content: flex-end;
}

@media only screen and (max-width: 1024px) {
  .header__nav__desktop {
    display: none;
  }
}

.header__link {
  margin: 0 10px;
  display: inline-block;
  color: #ffffff;
  font-family: "Open Sans", sans-serif;
  font-size: 14px;
  letter-spacing: 2px;
  text-decoration: none;
  text-transform: uppercase;
  transition: all 0.1s ease-in;
}

.header__link:hover {
  color: #f79211;
  transition: all 0.1s ease-in;
}

.header__btn {
  position: relative;
  display: none;
  margin: 4% 0 4% 4%;
  width: 36px;
  height: 33px;
  float: right;
  cursor: pointer;
  user-select: none;
}

@media only screen and (max-width: 1024px) {
  .header__btn {
    display: inline-block;
  }
}

.header__btn__shape {
  background: #fff;
  display: inline-block;
  height: 3px;
  position: absolute;
  top: 17px;
  right: 3px;
  transition: background .2s ease-out;
  width: 30px;
}

.header__btn__shape::before, .header__btn__shape::after {
  background: #fff;
  content: "";
  display: block;
  height: 100%;
  position: absolute;
  transition: all .2s ease-out;
  width: 100%;
}

.header__btn__shape::before {
  top: 9px;
}

.header__btn__shape::after {
  top: -9px;
}

.header__btn--active .header__btn__shape {
  background: transparent;
  transition: background .2s ease-out;
}

.header__btn--active .header__btn__shape::before {
  top: 0;
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.header__btn--active .header__btn__shape::after {
  top: 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

.header__nav__mobile {
  position: fixed;
  top: 90px;
  right: 0;
  display: none;
  width: 100%;
  text-transform: uppercase;
  z-index: 10;
}

@media only screen and (max-width: 320px) {
  .header__nav__mobile {
    top: 70px;
  }
}

.header__nav__mobile .header__link {
  border-bottom: 1px solid #dddddd;
  margin: 0;
  padding: 10px 30px;
  display: inline-block;
  width: 100%;
  background-color: #184a75;
  color: #ffffff;
  letter-spacing: 1px;
  text-align: right;
  text-decoration: none;
}

.header__nav__mobile .header__link:nth-child(-n+3)::after {
  position: absolute;
  content: "";
  width: 6px;
  height: 6px;
  margin: 9px 0 0 10px;
  background: #fff;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

.header__nav__mobile .header__link:nth-child(-n+3) {
  font-weight: bold;
}

.header__nav__mobile .header__link:hover {
  color: #fff;
  text-decoration: none;
}

.dark-always {
  background-color: #184a75 !important;
}

.footer {
  width: 100%;
  background-image: url("../images/back_testimonials.jpg");
  backgorund-repeat: repeat;
  color: #fff;
  font-family: "Open Sans", sans-serif;
  font-size: 16px;
}

.footer__content {
  display: flex;
  justify-content: flex-start;
  width: 100%;
  margin: 0 auto;
  padding: 0 4%;
}

@media only screen and (max-width: 1024px) {
  .footer__content {
    padding: 4% 3%;
  }
}

@media only screen and (max-width: 414px) {
  .footer__content {
    flex-direction: column-reverse;
  }
}

.footer__info {
  margin: 2% 4% 2% 0;
  padding: 0 1%;
  min-width: 100px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

@media only screen and (max-width: 414px) {
  .footer__info {
    margin: 4%;
    padding: 0;
  }
}

.footer__networks {
  margin-top: 25%;
}

@media only screen and (max-width: 414px) {
  .footer__networks {
    margin: 6% auto 0;
  }
}

.footer__networks-link {
  margin-right: 10px;
  color: #f79211;
  font-size: 24px;
  text-decoration: none;
}

@media only screen and (max-width: 414px) {
  .footer__networks-link {
    font-size: 30px;
  }
}

.footer__title {
  margin-bottom: 20px;
  color: #f79211;
  font-weight: bold;
  letter-spacing: 2px;
  text-transform: uppercase;
}

@media only screen and (max-width: 414px) {
  .footer__title {
    position: relative;
    margin-bottom: 10px;
    border-bottom: 2px solid #f79211;
    padding: 5px 0;
  }
  .footer__title::after {
    position: absolute;
    right: 0;
    display: inline-block;
    color: #f79211;
    font-family: "FontAwesome";
    font-weight: 900;
    font-style: normal;
    font-variant: normal;
    line-height: 1;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    content: "\f107";
    transition: all 0.3s ease-in;
  }
}

.footer__list {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

@media only screen and (max-width: 414px) {
  .footer__list {
    display: none;
  }
}

.footer__link {
  margin-top: 10px;
  color: #ffffff;
  text-decoration: none;
}

.footer__link:hover {
  color: #ffffff;
}

@media only screen and (max-width: 414px) {
  .footer__link {
    margin-top: 20px;
    display: block;
  }
}

.footer__credits {
  padding: 1% 4%;
  display: flex;
  justify-content: space-between;
  background-color: #000000;
}

@media only screen and (max-width: 1024px) {
  .footer__credits {
    padding: 3%;
  }
}

@media only screen and (max-width: 414px) {
  .footer__credits {
    justify-content: center;
    flex-wrap: wrap;
  }
}

.footer__credits a {
  color: #f18700;
  font-weight: bold;
  text-decoration: none;
}

.footer__credits a:hover {
  color: #f18700;
  text-decoration: none;
}

@media only screen and (max-width: 414px) {
  .footer__bottom {
    text-align: center;
    line-height: 22px;
  }
}

.list-up::after {
  position: absolute;
  right: 0;
  display: inline-block;
  color: #f79211;
  font-family: "FontAwesome";
  font-weight: 900;
  font-style: normal;
  font-variant: normal;
  line-height: 1;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  content: "\f106";
  transition: all 0.3s ease-in;
}

.cover {
  width: 100%;
  height: 100%;
}

.cover__container {
  position: relative;
  overflow: hidden;
  height: 95vh;
  background-image: url("../images/busy_man.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  font-family: 'Open Sans', sans-serif;
}

.cover__container::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000000;
  opacity: 0.4;
}

@media only screen and (max-width: 1024px) {
  .cover__container {
    height: 92vh;
  }
}

.cover__content {
  position: absolute;
  top: 60%;
  /*left: 60%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);*/
  left: 60%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  padding: 20px;
  max-width: 450px;
  display: flex;
  flex-direction: column;
  color: #ffffff;
}

@media only screen and (min-width: 1280px) {
  .cover__content {
    left: 55%;
    transform: translateY(-50%);
  }
}

@media only screen and (max-width: 1024px) {
  .cover__content {
    left: 50%;
  }
}

@media only screen and (max-width: 414px) {
  .cover__content {
    top: 60%;
    left: 50%;
  }
}

@media only screen and (max-width: 320px) {
  .cover__content {
    top: 65%;
    left: 50%;
  }
}

.cover__title {
  color: #ffffff;
  font-size: 40px;
  font-weight: bold;
  text-transform: uppercase;
  text-shadow: 2px 2px 8px #000000;
}

.cover__title--highlight {
  color: #f79211;
}

.cover__cta {
  margin-top: 20px;
}

.cover__button {
  border: 2px solid #ffffff;
  border-radius: 5px;
  padding: 5px 20px;
  background-color: rgba(24, 74, 117, 0.8);
  color: #ffffff;
  font-family: "Open Sans", sans-serif;
  font-size: 20px;
  transition: 0.2s ease-in;
}

.cover__button:hover {
  background-color: rgba(247, 146, 17, 0.8);
  transition: 0.2s ease-in;
}

.list__container {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  background: rgba(0, 0, 0, 0.2);
  font-size: 20px;
  list-style: none;
}

@media only screen and (max-width: 1024px) {
  .list__container {
    display: none;
  }
}

.list__item {
  padding: 10px 75px;
  display: flex;
  justify-content: space-between;
  color: #333333;
  font-family: "Open Sans", sans-serif;
  font-size: 18px;
  font-weight: bold;
}

.list__item:nth-child(-n+4) {
  border-right: 1px solid #333333;
}

.list__icon {
  width: 25px;
  margin-left: 10px;
  color: #f79211;
  text-shadow: 2px 2px 4px #000000;
  text-align: center;
}

.features {
  width: 100%;
  background-color: #ffffff;
}

.features__header {
  padding: 5% 5% 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #333333;
  font-family: "Open Sans", sans-serif;
}

@media only screen and (max-width: 1024px) {
  .features__header {
    padding: 3% 5% 0;
  }
}

.features__caption {
  font-size: 40px;
  font-weight: bold;
}

@media only screen and (max-width: 414px) {
  .features__caption {
    text-align: center;
  }
}

@media only screen and (max-width: 320px) {
  .features__caption {
    font-size: 30px;
  }
}

.features__description {
  margin-top: 30px;
  font-size: 30px;
  font-weight: normal;
  font-style: italic;
  text-align: center;
}

@media only screen and (max-width: 320px) {
  .features__description {
    margin-top: 20px;
    font-size: 20px;
  }
}

.features__highlight {
  color: #f79211;
}

.features__content {
  padding: 5% 2%;
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
}

.features__item {
  position: relative;
  border-radius: 2px;
  margin: 30px 10px;
  padding: 20px;
  width: 550px;
  min-height: 240px;
  background: rgba(24, 74, 117, 0.8);
  color: #ffffff;
  transition: all 0.2s ease-in;
}

.features__item:hover {
  background-color: rgba(247, 146, 17, 0.8);
  color: #333333;
  transition: all 0.2s ease-in;
}

.features__item:hover .features__title::before {
  color: #184a75;
}

@media only screen and (max-width: 414px) {
  .features__item {
    margin: 15px 10px;
  }
}

.features__title {
  position: relative;
  padding-bottom: 10px;
  font-family: "Oswald", sans-serif;
  font-size: 18px;
  letter-spacing: 2px;
}

.features__title::before {
  margin-right: 10px;
  display: inline-block;
  color: #f79211;
  font-style: normal;
  font-variant: normal;
  line-height: 1;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
}

.features__text {
  margin-top: 25px;
  font-family: "Open Sans", sans-serif;
  font-size: 16px;
  line-height: 24px;
}

.features__icon--tools::before {
  content: "\f7d9";
  font-family: "FontAwesome";
  font-weight: 900;
}

.features__icon--language::before {
  content: "\f57d";
  font-family: "FontAwesome";
  font-weight: 900;
}

.features__icon--folder::before {
  content: "\f07c";
  font-family: "FontAwesome";
  font-weight: 900;
}

.features__icon--user::before {
  content: "\f508";
  font-family: "FontAwesome";
  font-weight: 900;
}

.testimonials {
  position: relative;
}

.testimonials__item {
  position: relative;
  display: flex;
  justify-content: flex-start;
  font-family: Georgia, Courier, sans-serif;
  font-size: 22px;
  color: #ffffff;
}

.testimonials__item[class*="--"] {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.testimonials__item--airport {
  background-image: url("../images/airport.jpg");
}

.testimonials__item--advisor {
  background-image: url("../images/advisor.jpg");
}

.testimonials__item--document {
  background-image: url("../images/document.jpg");
}

.testimonials__item--travel {
  background-image: url("../images/travel.jpg");
}

@media only screen and (max-width: 414px) {
  .testimonials__item {
    font-size: 18px;
  }
}

.testimonials__content {
  margin: 10% 20% 0;
  height: 400px;
}

.testimonials__content::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-color: rgba(0, 0, 0, 0.7);
}

@media only screen and (max-width: 1024px) {
  .testimonials__content {
    height: 300px;
  }
}

@media only screen and (max-width: 414px) {
  .testimonials__content {
    margin: 10% 10% 0;
    height: 350px;
  }
}

.testimonials__text {
  position: relative;
  border-radius: 10px;
  padding: 5%;
  margin-bottom: 3%;
  background-color: rgba(255, 255, 255, 0.1);
  font-style: italic;
  text-align: center;
  line-height: 26px;
}

.testimonials__text::before {
  display: inline-block;
  color: #f79211;
  font-style: normal;
  font-variant: normal;
  line-height: 1;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  position: absolute;
  top: 10px;
  left: -20px;
  content: "\f10d";
  font-family: "FontAwesome";
  font-size: 30px;
  font-weight: 900;
}

.testimonials__text::after {
  display: inline-block;
  color: #f79211;
  font-style: normal;
  font-variant: normal;
  line-height: 1;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  position: absolute;
  right: -20px;
  bottom: 10px;
  content: "\f10e";
  font-family: "FontAwesome";
  font-size: 30px;
  font-weight: 900;
}

.testimonials__author {
  position: relative;
  margin-right: 5%;
  text-align: right;
}

.testimonials__buttons {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 100%;
  display: flex;
  justify-content: space-between;
}

@media only screen and (max-width: 414px) {
  .testimonials__buttons {
    top: 90%;
    justify-content: center;
  }
}

.testimonials__btn {
  border-radius: 50px;
  padding: 10px;
  margin: 0 30px;
  width: 43px;
  color: #f79211;
  font-size: 20px;
  animation-name: highlight;
  animation-duration: 1.5s;
  animation-iteration-count: infinite;
  -webkit-animation-name: highlight;
  -webkit-animation-duration: 1.5s;
  -webkit-animation-iteration-count: infinite;
}

@-webkit-keyframes highlight {
  0% {
    background-color: rgba(255, 255, 255, 0);
  }
  50% {
    background-color: rgba(255, 255, 255, 0.2);
  }
  100% {
    backgorund-color: rgba(255, 255, 255, 0);
  }
}

@keyframes highlight {
  0% {
    background-color: rgba(255, 255, 255, 0);
  }
  50% {
    background-color: rgba(255, 255, 255, 0.2);
  }
  100% {
    backgorund-color: rgba(255, 255, 255, 0);
  }
}

.sheet {
  margin: 130px auto 8%;
  width: 95%;
  color: #333333;
  font-family: "Open Sans", sans-serif;
}

@media only screen and (max-width: 1024px) {
  .sheet {
    margin: 110px auto;
  }
}

@media only screen and (max-width: 320px) {
  .sheet {
    margin: 100px auto;
  }
}

.sheet-container {
  padding-left: 5%;
  padding-right: 5%;
}

.sheet-header {
  margin-bottom: 3%;
}

@media only screen and (max-width: 1024px) {
  .sheet-header {
    margin-bottom: 5%;
  }
}

.sheet-header__title {
  margin: 20px 0;
  font-weight: bold;
  text-align: center;
  text-transform: uppercase;
  font-size: 30px;
}

@media only screen and (max-width: 414px) {
  .sheet-header__title {
    font-size: 26px;
    line-height: 28px;
  }
}

@media only screen and (max-width: 320px) {
  .sheet-header__title {
    font-size: 22px;
    line-height: 24px;
  }
}

.sheet-header__description {
  text-align: center;
}

.sheet-header__info {
  width: 100%;
  margin: 0 auto;
  max-width: 500px;
  color: #777;
  font-size: 12px;
  line-height: 14px;
  text-align: center;
}

.sheet__info {
  margin: 0 auto;
  width: 100%;
  max-width: 500px;
  color: #777777;
  font-size: 0.8rem;
  line-height: 1.2;
  text-align: center;
}

.sheet__info--index {
  border-radius: 5px;
  margin-top: 20px;
  padding: 10px;
  color: #FFFFFF;
  background-color: rgba(0, 0, 0, 0.3);
}

@media only screen and (min-width: 1024px) {
  .sheet__info {
    max-width: 600px;
  }
}
@media only screen and (min-width: 1280px) {
  .sheet__info {
    max-width: 700px;
  }
}
@media only screen and (min-width: 1920px) {
  .sheet__info {
    font-size: 1rem;
  }
}

@media only screen and (max-width: 414px) {
  .sheet-header__info {
    font-size: 14px;
    line-height: 16px;
  }
}

.sheet-body__title {
  margin: 1rem 0;
  font-size: 1.8rem;
  font-weight: bold;
  line-height: 2.2rem;
}

@media only screen and (max-width: 320px) {
  .sheet-body__title {
    font-size: 1.6rem;
    line-height: 2rem;
  }
}

.sheet-body__subtitle {
  margin: 1rem 0;
  font-size: 1.4rem;
  font-weight: bold;
  line-height: 1.8rem;
}

@media only screen and (max-width: 320px) {
  .sheet-body__subtitle {
    font-size: 1.2rem;
    line-height: 1.6rem;
  }
}

.sheet-body__text {
  margin-bottom: 20px;
  font-size: 18px;
  line-height: 26px;
  text-align: justify;
}

@media only screen and (max-width: 320px) {
  .sheet-body__text {
    font-size: 14px;
    line-height: 22px;
  }
}

.sheet-body__list {
  margin-bottom: 20px;
  margin-left: 60px;
}

@media only screen and (max-width: 414px) {
  .sheet-body__list {
    margin-left: 40px;
  }
}

.sheet-body__list-child {
  margin-bottom: 10px;
  padding-left: 10px;
  font-size: 18px;
  line-height: 26px;
  list-style: square outside none;
}

@media only screen and (max-width: 320px) {
  .sheet-body__list-child {
    font-size: 14px;
    line-height: 22px;
  }
}

.sheet-body__list-child--decimal {
  list-style: decimal outside none;
}

.sheet__link {
  color: #f79211;
  text-decoration: none;
  font-weight: bold;
}

.sheet__link:hover {
  text-decoration: none;
}

.contact {
  width: 100%;
  height: 100%;
}

.contact__container {
  position: relative;
  overflow: hidden;
  height: 90vh;
  display: flex;
  justify-content: flex-end;
  padding: 5%;
  background-image: url("../images/busy_man.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.contact__container::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000000;
  opacity: 0.4;
}

@media only screen and (max-width: 1024px) {
  .contact__container {
    height: 92vh;
  }
}

@media only screen and (max-width: 414px) {
  .contact__container {
    display: block;
  }
}

@media only screen and (max-width: 320px) {
  .contact__container {
    height: 100vh;
  }
}

.contact__body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  z-index: 1;
  padding: 25px;
  max-width: 420px;
  color: #fff;
}

@media only screen and (max-width: 414px) {
  .contact__body {
    position: relative;
    padding: 15px;
  }
}

.contact__body__title {
  margin-bottom: 30px;
  font-size: 20px;
  line-height: 24px;
}

@media only screen and (max-width: 320px) {
  .contact__body__title {
    margin-bottom: 0;
    font-size: 18px;
  }
}

.contact__body__caption {
  display: flex;
  align-content: center;
  position: relative;
  margin-bottom: 10px;
  color: #333;
  font-family: "Oswald", sans-serif;
  font-size: 20px;
  letter-spacing: 2px;
  line-height: 24px;
}

@media only screen and (max-width: 414px) {
  .contact__body__caption {
    background: #ff8f00;
    line-height: 30px;
  }
}

.contact__body__text {
  margin-bottom: 10px;
  padding-left: 48px;
  font-size: 20px;
  line-height: 24px;
}

@media only screen and (max-width: 414px) {
  .contact__body__text {
    padding-left: 0;
    font-size: 18px;
  }
}

@media only screen and (max-width: 320px) {
  .contact__body__text {
    font-size: 16px;
  }
}

.contact__body ul {
  list-style: none;
}

.fa--square {
  position: relative;
  border-radius: 5px;
  margin-right: 20px;
  width: 30px;
  height: 30px;
  background: #ff8f00;
}

@media only screen and (max-width: 414px) {
  .fa--square {
    border-radius: 0;
    background: transparent;
  }
}

.fa--square::before {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #333;
  font-size: 18px;
}

.legal {
  width: 95%;
  margin: 3% auto;
}

@media only screen and (max-width: 1024px) {
  .legal {
    margin: 5% auto;
  }
}

.legal__container {
  padding-left: 5%;
  padding-right: 5%;
}

.legal__body h1, .legal__body h2, .legal__body h3 {
  font-family: "Oswald", sans-serif;
}

.legal__body h1 {
  font-size: 30px;
  font-size: 34px;
}

.legal__body h2 {
  font-size: 24px;
  line-height: 28px;
}

.legal__body h3 {
  font-size: 20px;
  line-height: 24px;
}

.legal__body p {
  margin-bottom: 10px;
  text-align: justify;
}

.brand {
  text-decoration: none;
}

.brand__container {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  font-family: "Oswald", sans-serif;
}

@media only screen and (max-width: 414px) {
  .brand__container--mobile {
    margin: auto;
  }
}

.brand__title {
  display: flex;
  align-items: center;
  color: #f79211;
  font-size: 45px;
}

.brand__title::before {
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  line-height: 1;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
}

.brand__subtitle {
  padding-left: 4px;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  color: #ffffff;
  font-weight: bold;
  font-size: 20px;
  letter-spacing: 3px;
}

.brand__icon {
  letter-spacing: 4px;
}

.brand__icon::after {
  margin-left: 2px;
  content: "\f111";
  color: #f79211;
  font-family: "FontAwesome";
  font-size: 15px;
  font-weight: 900;
}

.button-call {
  margin: 2% auto;
  border: 0;
  max-width: 330px;
  display: block;
  text-align: center;
  text-decoration: none;
}

.button-call:hover {
  cursor: pointer;
  text-decoration: none;
}

@media only screen and (max-width: 414px) {
  .button-call {
    margin: 8% auto;
  }
}

.button-call__btn {
  border-radius: 50px;
  box-shadow: 0px 3px 6px 0px #000000;
  padding: 10px 30px;
  background-color: #25b467;
  color: #ffffff;
  font-size: 30px;
}

.button-call__btn--index {
  border: 2px solid #ffffff;
  /*background-color: rgba(247, 146, 17, 0.8);*/
  background-color: rgba(24, 74, 117, 0.8);
  box-shadow: none;
  transition: 0.2s ease-in;
}

.button-call__btn--index:hover {
  background-color: rgba(247, 146, 17, 0.8);
}

@media only screen and (max-width: 320px) {
  .button-call__btn {
    font-size: 22px;
  }
}

.button-call__btn:hover {
  cursor: pointer;
}

.button-call__icon::before {
  margin-right: 10px;
}

.button-call__txt {
  font-family: "Open Sans", sans-serif;
  text-transform: uppercase;
}

.button-call__txt--spacing {
  letter-spacing: 2px;
}
