* {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

a {
  color: black;
}

html {
  font-size: 62.5%;
  overflow-x: hidden;
}

@media (max-width: 75em) {
  html {
    font-size: 56.25%;
  }
}

@media (max-width: 56.25em) {
  html {
    font-size: 50%;
  }
}

@media (min-width: 112.5em) {
  html {
    font-size: 75%;
  }
}

body {
  font-family: montserrat, sans-serif;
  font-size: 1.8rem;
  overflow-x: hidden;
  position: relative;
}

.header {
  font-size: 1.6rem;
  max-width: 144rem;
  height: 10rem;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0 2rem;
}

.main {
  position: relative;
  max-width: 144rem;
  margin: 0 auto;
  height: 90vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 3rem 2rem 10rem 2rem;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

@media (max-width: 56.25em) {
  .main {
    width: 100vw;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
}

.main .item {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 50%;
          flex: 0 0 50%;
}

@media (max-width: 56.25em) {
  .main__left {
    margin: 2rem 0;
    padding: 5rem 0;
  }
}

.main__left__heading {
  font-weight: 500;
  font-size: 4.4rem;
  text-transform: capitalize;
  margin-bottom: 4rem;
}

.main__left__paragraph {
  width: 80%;
  font-weight: normal;
  font-size: 1.8rem;
  line-height: 2.8rem;
  color: #777777;
  margin-bottom: 11.7rem;
}

@media (max-width: 56.25em) {
  .main__left__paragraph {
    width: 100%;
  }
}

.main__left__logos {
  max-width: 80%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

@media (max-width: 56.25em) {
  .main__left__logos {
    min-width: 100%;
  }
}

.main__left__logos__logo {
  margin: 1rem;
  width: 15rem;
  padding: 1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

.main__right {
  text-align: end;
}

@media (max-width: 56.25em) {
  .main__right {
    margin: 2rem 0;
    padding: 5rem 0;
  }
}

.main__right__img {
  -webkit-transform-origin: bottom right;
          transform-origin: bottom right;
  position: relative;
}

@media (max-width: 56.25em) {
  .main__right__img {
    width: 100%;
  }
}

.main__right__img .one {
  position: absolute;
  opacity: 0;
  -webkit-animation: animate 20s infinite ease-in-out;
          animation: animate 20s infinite ease-in-out;
}

@media (max-width: 56.25em) {
  .main__right .img {
    width: 100%;
  }
}

.social-media {
  position: absolute;
  right: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-right: 20px;
  top: 0;
}

.social-media .icon {
  margin: 1rem;
}

@-webkit-keyframes animate {
  0%, 20%, 100% {
    opacity: 0;
  }
  30%, 50%, 70%, 90% {
    opacity: 1;
  }
}

@keyframes animate {
  0%, 20%, 100% {
    opacity: 0;
  }
  30%, 50%, 70%, 90% {
    opacity: 1;
  }
}
/*# sourceMappingURL=style.css.map */