/*
0 - 600px:      Phone
600 - 900px:    Tablet portrait
900 - 1200px:   Tablet landscape
[1200 - 1800] is where our normal styles apply
1800px + :      Big desktop
$breakpoint arguement choices:
- small-phone
- phone
- large-phone
- tab-port
- tab-land
- big-desktop
1em = 16px
*/
:root {
  --color-primary:#EB4D3F;
  --color-white:#FFFFFF;
  --color-black:#000000;
  --color-blue:#2D3F4E;
}

.row {
  margin-top: 5rem;
  display: flex;
  flex-wrap: wrap;
  padding: 0 4px;
}

.column {
  flex: 33%;
  max-width: 33.333333%;
  padding: 0 4px;
}

.column img {
  margin-top: 8px;
  vertical-align: middle;
  width: 100%;
}

@media screen and (max-width: 800px) {
  .column {
    flex: 50%;
    max-width: 50%;
  }
}
@media screen and (max-width: 600px) {
  .column {
    flex: 100%;
    max-width: 100%;
  }
}
.numbers {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, 1fr);
}
@media only screen and (max-width: 76em) {
  .numbers {
    grid-template-columns: repeat(1, 1fr);
    grid-template-rows: repeat(4, 1fr);
  }
}

.footer {
  padding: 5rem 0;
  background-color: var(--color-blue);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.footer__list {
  display: flex;
}
@media only screen and (max-width: 76em) {
  .footer__list {
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
}

.button {
  font-family: "Montserrat", sans-serif;
  text-transform: uppercase;
  background-color: var(--color-primary);
  color: var(--color-white);
  border: none;
  padding: 1rem 3rem;
  cursor: pointer;
}

.loader {
  background-position: center;
  background-repeat: none;
  background-size: cover;
  position: relative;
  width: 100vw;
  height: 100vh;
}
.loader--home {
  background-image: url("https://mitakoninnovation.com/images/home-page_nhkccz.jpg");
}
.loader--about {
  background-image: url("https://mitakoninnovation.com/images/about-loader_d47ssr.jpg");
}
.loader--services {
  background-image: url("https://mitakoninnovation.com/images/services_hm2vny.jpg");
}
.loader--services-2 {
  background-image: url("https://mitakoninnovation.com/images/services1_tx3ure.jpg");
}
.loader--knowledge-products {
  background-image: url("https://mitakoninnovation.com/images/knowledge-products-loader_dxwkl4.jpg");
}
.loader__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  align-items: center;
  min-height: 100vh;
}

.navigation {
  display: flex;
  justify-content: space-between;
  padding: 1rem 2rem;
  position: fixed;
  width: 100vw;
  background-color: var(--color-white);
  z-index: 99999999;
}
.navigation__checkbox {
  display: none;
}
.navigation__button-link {
  margin: 0 4rem;
}
.navigation__buttons {
  padding-top: 2.5rem;
}
@media only screen and (max-width: 76em) {
  .navigation__buttons {
    display: none;
  }
}
.navigation__logo-box {
  width: 20rem;
}
@media only screen and (max-width: 76em) {
  .navigation__logo-box {
    margin-right: 5rem;
  }
}
.navigation__logo {
  width: 100%;
  height: auto;
  object-fit: cover;
}
.navigation__button {
  height: 7rem;
  width: 7rem;
  z-index: 2000;
  text-align: center;
  cursor: pointer;
}
.navigation__background {
  position: fixed;
  z-index: 1000;
  transition: transform 0.8s cubic-bezier(0.86, 0, 0.07, 1);
}
.navigation__nav {
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  background-color: var(--color-blue);
  z-index: 1500;
  opacity: 0;
  visibility: hidden;
  width: 0;
  transition: all 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
.navigation__list {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  list-style: none;
  text-align: center;
  width: 100%;
}
.navigation__item {
  margin: 1rem;
}
.navigation__link:link, .navigation__link:visited {
  display: inline-block;
  font-family: "Montserrat", sans-serif !important;
  font-size: 3rem;
  text-align: left;
  font-weight: 400;
  padding: 1rem 2rem;
  color: var(--color-white) !important;
  text-decoration: none;
  text-transform: uppercase;
  background-image: linear-gradient(120deg, transparent 0%, transparent 50%, var(--color-primary) 50%);
  background-size: 240%;
  transition: all 0.4s;
}
@media only screen and (max-width: 76em) {
  .navigation__link:link, .navigation__link:visited {
    font-size: 2rem;
  }
}
.navigation__link--add {
  display: none;
}
@media only screen and (max-width: 76em) {
  .navigation__link--add {
    display: contents !important;
  }
}
.navigation__link:hover, .navigation__link:active {
  background-position: 100%;
  transform: translateX(1rem);
}
.navigation__checkbox:checked ~ .navigation__background {
  transform: scale(80);
}
.navigation__checkbox:checked ~ .navigation__nav {
  opacity: 1;
  visibility: visible;
  width: 100%;
}
.navigation__icon {
  position: relative;
  margin-top: 3.5rem;
}
.navigation__icon, .navigation__icon::before, .navigation__icon::after {
  width: 4rem;
  height: 2.5px;
  background-color: var(--color-black);
  display: inline-block;
}
.navigation__icon::before, .navigation__icon::after {
  content: "";
  position: absolute;
  left: 0;
  transition: all 0.2s;
}
.navigation__icon::before {
  top: -1rem;
}
.navigation__icon::after {
  top: 1rem;
}
.navigation__button:hover .navigation__icon::before {
  top: -1.3rem;
}
.navigation__button:hover .navigation__icon::after {
  top: 1.3rem;
}
.navigation__checkbox:checked + .navigation__button .navigation__icon {
  background-color: transparent;
}
.navigation__checkbox:checked + .navigation__button .navigation__icon::before {
  top: 0;
  transform: rotate(135deg);
}
.navigation__checkbox:checked + .navigation__button .navigation__icon::after {
  top: 0;
  transform: rotate(-135deg);
}

*,
*::after,
*::before {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
  color: var(--color-black);
  scroll-behavior: smooth;
  overflow-x: hidden;
  background-color: var(--color-cream);
}
@media only screen and (max-width: 76em) {
  html {
    font-size: 56.25%;
  }
}
@media only screen and (max-width: 21.25em) {
  html {
    font-size: 31.25%;
  }
}
@media only screen and (max-width: 52.5em) {
  html {
    font-size: 50%;
  }
}
@media only screen and (min-width: 112.5em) {
  html {
    font-size: 75%;
  }
}

body {
  box-sizing: border-box;
}

ul {
  list-style: none;
}

a {
  text-decoration: none !important;
  color: inherit;
}

.navigation__button-link {
  font-family: "Montserrat", sans-serif;
  color: var(--color-black);
  text-transform: uppercase;
  font-size: 2rem;
}

.heading {
  font-family: "Montserrat", sans-serif;
  text-transform: uppercase;
}
.heading--primary {
  font-size: 4rem;
  font-weight: 600;
  color: var(--color-white);
}
.heading--lowercase {
  text-transform: none !important;
  font-size: 4rem;
}
@media only screen and (max-width: 37.5em) {
  .heading--lowercase {
    font-size: 2rem;
  }
}
.heading--large-italic {
  font-style: italic;
  font-size: 2.5rem;
  font-weight: 400;
  color: var(--color-white);
}
.heading--secondary {
  font-size: 3rem;
  font-weight: 600;
  color: var(--color-black);
}
.heading--secondary-white {
  font-size: 3rem;
  font-weight: 600;
  color: var(--color-white);
}
@media only screen and (max-width: 37.5em) {
  .heading--secondary-white {
    font-size: 2rem;
  }
}

.text {
  font-family: "Montserrat", sans-serif;
  font-size: 2rem;
  font-weight: 400;
  color: var(--color-blue);
}
.text--black {
  color: var(--color-black) !important;
}
.text--uppercase {
  color: var(--color-black);
  text-transform: uppercase;
}
.text--white {
  color: var(--color-white);
}
.text--italic-white {
  color: var(--color-white);
  font-style: italic;
}
.text--italic {
  color: var(--color-blue);
  font-style: italic;
}

.red {
  color: var(--color-primary);
}

.smaller {
  font-size: 1.5rem !important;
}

.white {
  color: var(--color-white) !important;
}

.bold {
  font-weight: 600;
}

.center {
  text-align: center !important;
}

.footer__item {
  font-family: "Montserrat", sans-serif;
  color: var(--color-white);
  text-transform: uppercase;
  font-size: 2rem;
}

.-u-margin-bottom {
  margin-bottom: 2rem;
}

.-u-margin-bottom-medium {
  margin-bottom: 5rem;
}

.-u-margin {
  margin: 2rem;
}

.origin {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(1, 1fr);
}
@media only screen and (max-width: 76em) {
  .origin {
    grid-template-columns: repeat(1, 1fr);
    grid-template-rows: repeat(2, 1fr);
  }
}
.origin__definition {
  padding: 5rem;
  background-color: var(--color-blue);
  text-align: center;
}
.origin__text {
  padding: 5rem;
  display: grid;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
@media only screen and (max-width: 76em) {
  .origin__text {
    text-align: center;
  }
}

.section-values {
  padding: 5rem;
}

.number {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 2rem;
}
@media only screen and (max-width: 37.5em) {
  .number {
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
}
.number__num {
  font-size: 15rem;
  font-weight: 300;
  font-family: "Montserrat", sans-serif;
  color: var(--color-primary);
}
.number__text {
  margin: 0 2rem;
}
@media only screen and (max-width: 37.5em) {
  .number__text {
    text-align: center;
  }
}

.team {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 5rem;
  background-color: var(--color-blue);
}
@media only screen and (max-width: 76em) {
  .team {
    text-align: center;
  }
}
.team__card {
  display: flex;
  justify-content: center;
  align-items: center;
}
@media only screen and (max-width: 76em) {
  .team__card {
    flex-direction: column;
    text-align: center;
  }
}
.team__img-box {
  margin: 2rem 4rem;
  width: 30rem !important;
  height: auto;
}
.team__img-box--men {
  flex: 70%;
}
.team__img-box--women {
  flex: 100%;
}
.team__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.strategic-management__partners {
  text-align: center;
}

.partner {
  margin: 2rem 0;
}

.contact-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.email {
  display: flex;
  align-items: center;
}

.phone {
  display: flex;
  align-items: center;
}

.section-contact-card {
  padding: 5rem 0;
}

.link {
  display: inline-block;
  color: var(--color-white);
  text-transform: uppercase;
  font-family: "Montserrat", sans-serif;
  font-size: 3rem;
}

.contact-form {
  padding: 2rem 4rem;
  background-color: var(--color-primary);
}

.section-services-cta {
  padding: 10rem 30rem;
}
@media only screen and (max-width: 76em) {
  .section-services-cta {
    padding: 10rem 20rem;
  }
}
@media only screen and (max-width: 37.5em) {
  .section-services-cta {
    padding: 5rem 10rem;
  }
}

.services-cta {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.products-cta {
  padding: 5rem;
  background-color: var(--color-blue);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
@media only screen and (max-width: 76em) {
  .products-cta {
    grid-template-columns: repeat(1, 1fr);
    grid-template-rows: repeat(2, 1fr);
    padding: 2rem;
  }
}
.products-cta__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media only screen and (max-width: 76em) {
  .products-cta__content {
    text-align: center;
    align-items: center;
  }
}
.products-cta__item {
  display: flex;
  align-items: center;
  padding: 2rem 0;
}
@media only screen and (max-width: 76em) {
  .products-cta__item {
    padding: 1rem 0;
  }
}

.pages {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 1fr);
}
@media only screen and (max-width: 76em) {
  .pages {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(3, 1fr);
  }
}
@media only screen and (max-width: 37.5em) {
  .pages {
    grid-template-columns: repeat(1, 1fr);
    grid-template-rows: repeat(6, 1fr);
  }
}
.pages__img {
  width: 100%;
  height: 100%;
}
.pages__text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.pages__card {
  position: relative;
  text-align: center;
}

.values {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.biglogobox {
  width: 70rem;
  height: auto;
}
@media only screen and (max-width: 76em) {
  .biglogobox {
    width: 50rem;
  }
}
@media only screen and (max-width: 52.5em) {
  .biglogobox {
    width: 40rem;
  }
}
@media only screen and (max-width: 48rem) {
  .biglogobox {
    width: 30rem;
  }
}
@media only screen and (max-width: 37.5em) {
  .biglogobox {
    width: 30rem;
  }
}

.biglogo {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.zoom:hover {
  -ms-transform: scale(1.1); /* IE 9 */
  -webkit-transform: scale(1.1); /* Safari 3-8 */
  transform: scale(1.1);
  transition: all 0.2s;
  z-index: 1;
  cursor: pointer;
}

.services__img-box {
  margin: 2rem;
}
.services__card {
  display: flex;
  justify-content: center;
  align-items: center;
}
@media only screen and (max-width: 76em) {
  .services__card {
    flex-direction: column-reverse;
    text-align: center;
  }
}

.section-services {
  padding: 5rem;
}

.why {
  padding: 5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-position: center;
  background-repeat: none;
  background-size: cover;
  background-image: url("https://mitakoninnovation.com/images/services1_tx3ure.jpg");
}

.section-knowledge-products {
  padding: 5rem;
}

.knowledge-products__list {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.knowledge-products__item {
  margin: 4rem 0;
}

.divisions {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.division {
  text-align: center;
  margin: 4rem 0;
}

.platform {
  margin: 4rem 0;
}

.section-knowledge-platforms {
  padding: 5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.time {
  padding: 2rem 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin: 5rem;
}
@media only screen and (max-width: 76em) {
  .time {
    grid-template-columns: repeat(1, 1fr);
    text-align: center;
  }
}
@media only screen and (max-width: 76em) {
  .time__content {
    margin: 2rem 0;
  }
}

.section-programs {
  text-align: center;
  padding: 5rem;
}/*# sourceMappingURL=main.css.map */