html {
  margin: 0;
  padding: 0;
}

body {
  position: relative;
  margin: 0;
  padding: 0;
  min-height: 110vh;
  -webkit-transition: opacity 0.8s 2s ease-in;
  transition: opacity 0.8s 2s ease-in;
}

h1 {
  font-family: "Montserrat", sans-serif;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: #ffffff;
  font-weight: 500;
  font-size: 2em;
}

.fixedContainer {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  z-index: 99;
}

.fixedContainer header {
  position: absolute;
  top: 30px;
  left: 0;
  height: 70px;
  width: 100%;
  z-index: 999;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[8];
      grid-template-columns: repeat(8, 1fr);
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  justify-items: center;
}

.fixedContainer header .left {
  width: 100%;
  -ms-grid-column: 2;
      grid-column-start: 2;
  cursor: pointer;
  text-align: left;
  -webkit-transform: translateX(calc(-100vw / 16));
          transform: translateX(calc(-100vw / 16));
}

.fixedContainer header .left img {
  width: 180px;
}

.fixedContainer header .left #citocSvg .citocLogoSt0 {
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
}

.fixedContainer header .left #citocSvg .citocLogoSt1 {
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
  -webkit-clip-path: url(#SVGID_2_);
          clip-path: url(#SVGID_2_);
}

@media (max-width: 1366.98px) {
  .fixedContainer header .left img {
    width: 140px;
  }
}

@media (max-width: 767.98px) {
  .fixedContainer header .left {
    height: 30px;
    -ms-grid-column: 1;
        grid-column-start: 1;
    padding-left: 10px;
  }
  .fixedContainer header .left img {
    width: 90px;
  }
}

.fixedContainer header .right {
  position: relative;
  -ms-grid-column: 5;
      grid-column-start: 5;
  grid-column-end: 8;
  height: 50px;
  overflow: hidden;
  width: 100%;
  -webkit-transform: translateX(calc(100vw / 16));
          transform: translateX(calc(100vw / 16));
}

.fixedContainer header .right ul {
  list-style-type: none;
  width: calc((100vw / 8 * 2));
  height: 100%;
  margin: 0;
  margin-right: 0;
  margin-left: auto;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[3];
      grid-template-columns: repeat(3, 1fr);
  opacity: 1;
  -webkit-transform-origin: right;
          transform-origin: right;
  background: transparent;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

.fixedContainer header .right ul li {
  display: inline-block;
  margin: 0 0.5em;
  opacity: 1;
  text-align: center;
  -webkit-transition: opacity 0.4s ease-in;
  transition: opacity 0.4s ease-in;
}

.fixedContainer header .right ul li .textColorDynamic {
  position: relative;
  text-decoration: none;
  text-transform: uppercase;
  font-family: "Work Sans", sans-serif;
  cursor: pointer;
  padding-bottom: 7px;
  letter-spacing: 2px;
  font-weight: 300;
  font-size: 0.9em;
  color: #ffffff;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-transition: color 0.4s ease;
  transition: color 0.4s ease;
}

.fixedContainer header .right ul li .textColorDynamic::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 1px;
  width: 0%;
  background-color: #ffffff;
  -webkit-transition: width 0.4s ease;
  transition: width 0.4s ease;
}

.fixedContainer header .right ul li .textColorDynamic.blueTheme {
  color: #0071bc;
}

.fixedContainer header .right ul li .textColorDynamic.blueTheme::before {
  background-color: #0071bc;
}

.fixedContainer header .right ul li:hover .textColorDynamic::before {
  width: 100%;
}

.fixedContainer header .right ul.active {
  -webkit-transform: translateX(25%);
          transform: translateX(25%);
  opacity: 1;
}

.fixedContainer header .right ul.active li {
  opacity: 1;
}

@media (max-width: 767.98px) {
  .fixedContainer header .right ul {
    -ms-grid-rows: (100%)[3];
        grid-template-rows: repeat(3, 100%);
    -ms-grid-columns: none;
        grid-template-columns: none;
    margin-top: 2rem;
  }
  .fixedContainer header .right ul li {
    margin: 0 0 auto 0;
    text-align: right;
  }
}

.fixedContainer header .right .menu-icon-container {
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
  width: 30px;
  height: 18px;
  cursor: pointer;
}

.fixedContainer header .right .menu-icon-container .icon {
  position: relative;
  width: 30px;
  height: 18px;
}

.fixedContainer header .right .menu-icon-container .icon div:nth-child(1) {
  position: absolute;
  width: 100%;
  height: 1px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transition: all 0.2s 0.2s ease-in-out;
  transition: all 0.2s 0.2s ease-in-out;
}

.fixedContainer header .right .menu-icon-container .icon div:nth-child(2) {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
  -webkit-transform-origin: right;
          transform-origin: right;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

.fixedContainer header .right .menu-icon-container .icon div:nth-child(3) {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  -webkit-transition: all 0.2s 0.2s ease-in-out;
  transition: all 0.2s 0.2s ease-in-out;
}

.fixedContainer header .right .menu-icon-container .icon.open div:nth-child(1) {
  -webkit-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
}

.fixedContainer header .right .menu-icon-container .icon.open div:nth-child(2) {
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
}

.fixedContainer header .right .menu-icon-container .icon.open div:nth-child(3) {
  -webkit-transform: translateY(-7px) rotate(-45deg);
          transform: translateY(-7px) rotate(-45deg);
}

@media (max-width: 767.98px) {
  .fixedContainer header .right {
    -ms-grid-column: 5;
        grid-column-start: 5;
    grid-column-end: 6;
    height: 30px;
  }
}

.fixedContainer header .right .floatingSocialMedia {
  position: fixed;
  top: 50%;
  right: 10px;
  width: 80px;
  height: 40px;
  z-index: 999;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.fixedContainer header .right .floatingSocialMedia ul {
  list-style-type: none;
  padding-left: 0;
  margin: 0;
  padding: 0;
  height: 100%;
  width: 100%;
}

.fixedContainer header .right .floatingSocialMedia ul li {
  padding: 2.5px;
  width: 30px;
  height: 30px;
  margin: 2.5px;
  text-align: center;
  border: 0px;
  border-radius: 50%;
  position: relative;
}

.fixedContainer header .right .floatingSocialMedia ul li a svg {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  height: 17px;
  max-width: 25px;
  margin: auto 0;
  fill: #ffffff;
  -webkit-transition: fill 0.4s ease;
  transition: fill 0.4s ease;
}

.fixedContainer header .right .floatingSocialMedia ul li a svg.blueTheme {
  fill: #0071bc;
  -webkit-transition: fill 0.4s ease;
  transition: fill 0.4s ease;
}

@media (max-width: 767.98px) {
  .fixedContainer header .right .floatingSocialMedia {
    left: 5px;
    width: 40px;
    height: 80px;
  }
  .fixedContainer header .right .floatingSocialMedia ul li {
    padding: 5px;
    width: 20px;
    height: 20px;
    margin: 5px;
  }
  .fixedContainer header .right .floatingSocialMedia ul li svg {
    height: 15px;
    max-width: 15px;
  }
}

@media (max-width: 767.98px) {
  .fixedContainer header .right {
    display: none;
  }
}

.fixedContainer header #mobileMenuButton {
  display: none;
  -ms-grid-column: 8;
      grid-column-start: 8;
  grid-column-end: 9;
  width: 30px;
  height: 13px;
}

.fixedContainer header #mobileMenuButton div {
  height: 2px;
  width: 30px;
  background-color: #ffffff;
  margin-bottom: 3px;
  -webkit-transform-origin: left;
          transform-origin: left;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

.fixedContainer header #mobileMenuButton.blueTheme div {
  background-color: #0071bc;
}

.fixedContainer header #mobileMenuButton:hover div:nth-child(2) {
  width: 20px;
}

.fixedContainer header #mobileMenuButton:hover div:nth-child(3) {
  width: 25px;
}

.fixedContainer header #mobileMenuButton.open div {
  opacity: 0;
  pointer-events: none;
}

@media (max-width: 767.98px) {
  .fixedContainer header #mobileMenuButton {
    display: block;
  }
}

@media (max-width: 767.98px) {
  .fixedContainer header {
    top: 10px;
    left: 20px;
    width: calc(100% - 2em);
    height: 50px;
  }
  .fixedContainer header .left {
    padding-left: 0;
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
}

.fixedContainer #mobileMenu {
  position: absolute;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  background-color: #ffffff;
  z-index: 999;
  -webkit-transform: translateX(-100%);
          transform: translateX(-100%);
  -webkit-transition: all 0.4s 0.8s ease-in-out;
  transition: all 0.4s 0.8s ease-in-out;
}

.fixedContainer #mobileMenu #logoContainer {
  position: absolute;
  top: 20px;
  left: 20px;
  width: 90px;
  height: auto;
  overflow: hidden;
}

.fixedContainer #mobileMenu #logoContainer #mobileMenuLogo {
  width: 100%;
  -webkit-transform: translateX(150%);
          transform: translateX(150%);
  -webkit-transition: all 0.4s 0.4s ease-in-out;
  transition: all 0.4s 0.4s ease-in-out;
}

.fixedContainer #mobileMenu #mobileMenuItems {
  position: absolute;
  top: 50%;
  left: 50%;
  list-style-type: none;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  margin: 0;
  padding: 0;
}

.fixedContainer #mobileMenu #mobileMenuItems li {
  font-family: "Montserrat", sans-serif;
  font-size: 1.1em;
  margin: 10px 0;
  padding: 10px 0;
  overflow: hidden;
}

.fixedContainer #mobileMenu #mobileMenuItems li .liWrapper {
  height: 100%;
  width: 100%;
  -webkit-transform: translateY(150%);
          transform: translateY(150%);
  -webkit-transition: all 0.4s 0.4s ease-in-out;
  transition: all 0.4s 0.4s ease-in-out;
}

.fixedContainer #mobileMenu #mobileMenuItems li .liWrapper a {
  text-decoration: none;
  text-transform: uppercase;
  color: #0071bc;
}

.fixedContainer #mobileMenu #mobileMenuButtonClose {
  position: absolute;
  top: 20px;
  right: 20px;
  height: 30px;
  width: 30px;
}

.fixedContainer #mobileMenu #mobileMenuButtonClose div {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 25px;
  height: 2px;
  background-color: #0071bc;
  -webkit-transform-origin: center center;
          transform-origin: center center;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

.fixedContainer #mobileMenu #mobileMenuButtonClose div:nth-child(1) {
  -webkit-transform: translateX(-50%) rotate(0);
          transform: translateX(-50%) rotate(0);
}

.fixedContainer #mobileMenu #mobileMenuButtonClose div:nth-child(2) {
  -webkit-transform: translateX(-50%) rotate(0);
          transform: translateX(-50%) rotate(0);
}

.fixedContainer #mobileMenu.open {
  -webkit-transform: translateX(0);
          transform: translateX(0);
  -webkit-transition: all 0.6s ease-in-out;
  transition: all 0.6s ease-in-out;
}

.fixedContainer #mobileMenu.open #mobileMenuItems li .liWrapper {
  -webkit-transform: translateY(0%);
          transform: translateY(0%);
}

.fixedContainer #mobileMenu.open #mobileMenuButtonClose div {
  -webkit-transition: all 0.4s 0.8s ease-in-out;
  transition: all 0.4s 0.8s ease-in-out;
}

.fixedContainer #mobileMenu.open #mobileMenuButtonClose div:nth-child(1) {
  -webkit-transform: translateX(-50%) rotate(45deg);
          transform: translateX(-50%) rotate(45deg);
}

.fixedContainer #mobileMenu.open #mobileMenuButtonClose div:nth-child(2) {
  -webkit-transform: translateX(-50%) rotate(-45deg);
          transform: translateX(-50%) rotate(-45deg);
}

.fixedContainer #mobileMenu.open #logoContainer #mobileMenuLogo {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

@media (max-width: 767.98px) {
  .scroll-down {
    bottom: calc(100vh / 14);
    left: 10px;
    width: 30px;
    height: 30px;
  }
  .scroll-down::after {
    width: 12px;
  }
  .scroll-down::before {
    width: 12px;
  }
}

.buttonTheme {
  padding: 0.5em;
  background: transparent;
  border: 1px solid #0071bc;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  color: #0071bc;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 0.7em;
  font-weight: 300;
  font-family: "Work Sans", sans-serif;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  letter-spacing: 1px;
  outline: none;
}

.buttonTheme:hover {
  background: #0071bc;
  color: #fff;
}

.bg-layer {
  position: fixed;
  top: 0;
  left: 0;
  min-height: 100vh;
  width: 100vw;
  z-index: 0;
  opacity: 1;
  -webkit-transition: all 0.4s linear;
  transition: all 0.4s linear;
}

.bg-layer .bg-overlay {
  position: fixed;
  top: 0;
  left: 0;
  background: #008bbd;
  width: 100%;
  height: 100%;
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

.bg-layer::after {
  content: url(../images/citocVentures.jpg) url(../images/citocInvestment.jpg) url(../images/citocMaskara.jpg) url(../images/companies.jpg) url(../images/citocRealEstate.jpg) url(../images/citocMP.jpg) url(../images/citocRealEstate.jpg);
  display: none;
}

#bg-video {
  position: fixed;
  top: 0;
  left: 0;
  min-height: 100vh;
  min-width: 100vw;
  width: auto;
  z-index: 0;
  opacity: 1;
  display: none;
}

.border-overlay {
  position: fixed;
  min-height: 100vh !important;
  width: 100%;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[8];
      grid-template-columns: repeat(8, 1fr);
  z-index: 1;
}

.border-overlay div {
  border-right: 1px black solid;
}

/**************************\
  Basic Modal Styles
\**************************/
.modal {
  font-family: -apple-system, BlinkMacSystemFont, avenir next, avenir, helvetica neue, helvetica, ubuntu, roboto, noto, segoe ui, arial, sans-serif;
}

.modal__overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  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;
}

.modal__container {
  background-color: #fff;
  padding: 30px;
  max-width: 500px;
  max-min-height: 100vh;
  border-radius: 4px;
  overflow-y: auto;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.modal__header {
  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;
}

.modal__title {
  margin-top: 0;
  margin-bottom: 0;
  font-weight: 600;
  font-size: 1.25rem;
  line-height: 1.25;
  color: #00449e;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.modal__close {
  background: transparent;
  border: 0;
}

.modal__header .modal__close:before {
  content: "\2715";
}

.modal__content {
  margin-top: 2rem;
  margin-bottom: 2rem;
  line-height: 1.5;
  color: rgba(0, 0, 0, 0.8);
}

.modal__btn {
  font-size: 0.875rem;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  background-color: #e6e6e6;
  color: rgba(0, 0, 0, 0.8);
  border-radius: 0.25rem;
  border-style: none;
  border-width: 0;
  cursor: pointer;
  -webkit-appearance: button;
  text-transform: none;
  overflow: visible;
  line-height: 1.15;
  margin: 0;
  will-change: transform;
  -moz-osx-font-smoothing: grayscale;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  transition: -webkit-transform 0.25s ease-out;
  -webkit-transition: -webkit-transform 0.25s ease-out;
  transition: transform 0.25s ease-out;
  transition: transform 0.25s ease-out, -webkit-transform 0.25s ease-out;
}

.modal__btn:focus,
.modal__btn:hover {
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
}

.modal__btn-primary {
  background-color: #00449e;
  color: #fff;
}

/**************************\
    Demo Animation Style
  \**************************/
@-webkit-keyframes mmfadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes mmfadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@-webkit-keyframes mmfadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}

@keyframes mmfadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}

@-webkit-keyframes mmslideIn {
  from {
    -webkit-transform: translateY(15%);
            transform: translateY(15%);
  }
  to {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes mmslideIn {
  from {
    -webkit-transform: translateY(15%);
            transform: translateY(15%);
  }
  to {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@-webkit-keyframes mmslideOut {
  from {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  to {
    -webkit-transform: translateY(-10%);
            transform: translateY(-10%);
  }
}

@keyframes mmslideOut {
  from {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  to {
    -webkit-transform: translateY(-10%);
            transform: translateY(-10%);
  }
}

.micromodal-slide {
  display: none;
}

.micromodal-slide.is-open {
  display: block;
}

.micromodal-slide[aria-hidden="false"] .modal__overlay {
  -webkit-animation: mmfadeIn 0.3s cubic-bezier(0, 0, 0.2, 1);
          animation: mmfadeIn 0.3s cubic-bezier(0, 0, 0.2, 1);
}

.micromodal-slide[aria-hidden="false"] .modal__container {
  -webkit-animation: mmslideIn 0.3s cubic-bezier(0, 0, 0.2, 1);
          animation: mmslideIn 0.3s cubic-bezier(0, 0, 0.2, 1);
}

.micromodal-slide[aria-hidden="true"] .modal__overlay {
  -webkit-animation: mmfadeOut 0.3s cubic-bezier(0, 0, 0.2, 1);
          animation: mmfadeOut 0.3s cubic-bezier(0, 0, 0.2, 1);
}

.micromodal-slide[aria-hidden="true"] .modal__container {
  -webkit-animation: mmslideOut 0.3s cubic-bezier(0, 0, 0.2, 1);
          animation: mmslideOut 0.3s cubic-bezier(0, 0, 0.2, 1);
}

.micromodal-slide .modal__container,
.micromodal-slide .modal__overlay {
  will-change: transform;
}

.contentContainer {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 1;
}

.contentContainer #homeContent {
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  min-height: 100vh;
  z-index: -1;
  opacity: 1;
}

.contentContainer #homeContent .scroll-down {
  position: absolute;
  top: calc((100vh / 10) * 8.5);
  left: 50%;
  width: 18px;
  height: 40px;
  background: transparent;
  z-index: 999;
  -webkit-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
  border-radius: 50%;
  -webkit-transform-origin: bottom;
          transform-origin: bottom;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  opacity: 0;
  cursor: pointer;
}

.contentContainer #homeContent .scroll-down .mouse {
  height: 100%;
}

.contentContainer #homeContent .scroll-down .arrow {
  position: absolute;
  left: 50%;
  bottom: 0;
  -webkit-transform: translate(-50%, 50%);
          transform: translate(-50%, 50%);
  width: 10px;
  -webkit-transform-origin: bottom;
          transform-origin: bottom;
  -webkit-animation: bounceOff 1.5s infinite alternate ease-in-out;
          animation: bounceOff 1.5s infinite alternate ease-in-out;
}

@-webkit-keyframes bounceOff {
  from {
    -webkit-transform: translate(-50%, 50%);
            transform: translate(-50%, 50%);
  }
  to {
    -webkit-transform: translate(-50%, 100%);
            transform: translate(-50%, 100%);
  }
}

@keyframes bounceOff {
  from {
    -webkit-transform: translate(-50%, 50%);
            transform: translate(-50%, 50%);
  }
  to {
    -webkit-transform: translate(-50%, 100%);
            transform: translate(-50%, 100%);
  }
}

@media (max-width: 767.98px) {
  .contentContainer #homeContent .scroll-down {
    top: calc(100vh -70px);
  }
}

.contentContainer #homeContent .header {
  display: block;
  font-size: 3.8em;
  font-weight: 700;
  position: absolute;
  top: 50%;
  left: calc(100vw / 16);
  -webkit-transform: translate(0%, -50%);
          transform: translate(0%, -50%);
  opacity: 0;
  margin: 0;
  line-height: 1em;
}

@media (max-width: 767.98px) {
  .contentContainer #homeContent .header {
    display: none;
  }
}

.contentContainer #homeContent .displaySmall {
  display: none;
}

@media (max-width: 767.98px) {
  .contentContainer #homeContent .displaySmall {
    display: block;
    font-size: 1.5em;
    top: calc(25%);
    width: 100%;
    left: 20px;
  }
}

.contentContainer #homeContent .rightSection {
  position: absolute;
  left: calc((100vw / 16) * 10);
  top: 50%;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
}

.contentContainer #homeContent .rightSection h2 {
  -webkit-transform: translate(0, 0%);
          transform: translate(0, 0%);
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  color: #fff;
  text-transform: uppercase;
  opacity: 0;
  letter-spacing: 2px;
  margin: 0;
}

.contentContainer #homeContent .rightSection p {
  width: calc((100vw / 16) * 5);
  font-family: "Work Sans", sans-serif;
  font-weight: 300;
  color: #fff;
  opacity: 0;
  font-size: 0.9em;
  letter-spacing: 1px;
  line-height: 1.4em;
  padding-bottom: 15px;
  margin-bottom: 15px;
  margin-top: 5px;
  border-bottom: 1px white solid;
}

.contentContainer #homeContent .rightSection .secondaryH2 {
  width: calc((100vw / 16) * 5);
  text-align: left;
  font-family: "Montserrat", sans-serif;
  font-size: 1.2em;
  font-weight: 600;
  color: #fff;
  opacity: 0;
  min-width: 250px;
  letter-spacing: 2px;
  margin-bottom: 0;
}

.contentContainer #homeContent .rightSection ul.bottom-right {
  -webkit-transform: translate(0%, 0);
          transform: translate(0%, 0);
  min-width: 250px;
  width: calc((100vw / 16) * 5);
  padding-left: 15px;
  list-style-type: disc;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  opacity: 0;
  display: -ms-grid;
  display: grid;
  margin-top: 0.5em;
  -ms-grid-columns: (auto)[2];
      grid-template-columns: repeat(2, auto);
}

.contentContainer #homeContent .rightSection ul.bottom-right li {
  list-style-type: disc;
  position: relative;
  padding: 0.5em 0;
  text-align: left;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-family: "Work Sans", sans-serif;
  font-weight: 500;
  font-size: 0.9em;
  color: #fff;
  text-decoration: none;
  text-transform: uppercase;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  letter-spacing: 1px;
  -webkit-transition: color 0.4s ease;
  transition: color 0.4s ease;
}

.contentContainer #homeContent .rightSection ul.bottom-right li:last-child {
  padding-bottom: 0;
}

.contentContainer #homeContent .rightSection ul.bottom-right li:last-child::before, .contentContainer #homeContent .rightSection ul.bottom-right li:last-child::after {
  top: 65%;
}

@media (max-width: 1366.98px) {
  .contentContainer #homeContent .rightSection p {
    font-size: 0.8em;
    line-height: 1.3em;
  }
  .contentContainer #homeContent .rightSection .secondaryH2 {
    font-size: 1.2em;
  }
  .contentContainer #homeContent .rightSection ul.bottom-right li {
    font-size: 0.8em;
  }
}

@media (max-width: 767.98px) {
  .contentContainer #homeContent .rightSection {
    top: calc(60% + 20px);
    left: 20px;
    width: calc(100% - 40px);
  }
  .contentContainer #homeContent .rightSection h2,
  .contentContainer #homeContent .rightSection .secondaryH2 {
    width: calc(100% - 40px);
    font-size: 1.2em;
  }
  .contentContainer #homeContent .rightSection p {
    width: calc(100% - 40px);
  }
  .contentContainer #homeContent .rightSection ul.bottom-right {
    width: calc(100% - 40px);
    margin-left: 0;
  }
  .contentContainer #homeContent .rightSection ul.bottom-right li {
    font-size: 0.7em;
  }
}

.contentContainer #homeContent.animate.forward .scroll-down {
  -webkit-animation: slideinBottom 0.4s 2.5s forwards linear;
          animation: slideinBottom 0.4s 2.5s forwards linear;
}

.contentContainer #homeContent.animate.forward .header {
  -webkit-transform-origin: left;
          transform-origin: left;
  -webkit-animation: fadeInRight 0.4s 2s forwards linear;
          animation: fadeInRight 0.4s 2s forwards linear;
}

@-webkit-keyframes fadeInRight {
  from {
    opacity: 0;
    -webkit-transform: translate(-40px, -50%);
            transform: translate(-40px, -50%);
  }
  to {
    opacity: 1;
    -webkit-transform: translate(0%, -50%);
            transform: translate(0%, -50%);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    -webkit-transform: translate(-40px, -50%);
            transform: translate(-40px, -50%);
  }
  to {
    opacity: 1;
    -webkit-transform: translate(0%, -50%);
            transform: translate(0%, -50%);
  }
}

.contentContainer #homeContent.animate.forward .rightSection h2 {
  -webkit-animation: fadeInRighth3 0.4s 2.8s forwards linear;
          animation: fadeInRighth3 0.4s 2.8s forwards linear;
}

@-webkit-keyframes fadeInRighth3 {
  from {
    opacity: 0;
    -webkit-transform: translate(-40px, 0%);
            transform: translate(-40px, 0%);
  }
  to {
    opacity: 1;
    -webkit-transform: translate(0%, 0%);
            transform: translate(0%, 0%);
  }
}

@keyframes fadeInRighth3 {
  from {
    opacity: 0;
    -webkit-transform: translate(-40px, 0%);
            transform: translate(-40px, 0%);
  }
  to {
    opacity: 1;
    -webkit-transform: translate(0%, 0%);
            transform: translate(0%, 0%);
  }
}

.contentContainer #homeContent.animate.forward .rightSection p {
  -webkit-animation: slideinBottom 0.4s 3s forwards linear;
          animation: slideinBottom 0.4s 3s forwards linear;
}

@-webkit-keyframes slideinBottom {
  from {
    opacity: 0;
    -webkit-transform: translate(0, 40px);
            transform: translate(0, 40px);
  }
  to {
    opacity: 1;
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
}

@keyframes slideinBottom {
  from {
    opacity: 0;
    -webkit-transform: translate(0, 40px);
            transform: translate(0, 40px);
  }
  to {
    opacity: 1;
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
}

.contentContainer #homeContent.animate.forward .rightSection .secondaryH2 {
  -webkit-animation: slideinBottom 0.4s 3.1s forwards linear;
          animation: slideinBottom 0.4s 3.1s forwards linear;
}

.contentContainer #homeContent.animate.forward .rightSection ul.bottom-right {
  -webkit-animation: slideBottomRightIn 0.4s 3.2s forwards linear;
          animation: slideBottomRightIn 0.4s 3.2s forwards linear;
}

@-webkit-keyframes slideBottomRightIn {
  from {
    opacity: 0;
    -webkit-transform: translate(0%, 40px);
            transform: translate(0%, 40px);
  }
  to {
    opacity: 1;
    -webkit-transform: translate(0%, 0);
            transform: translate(0%, 0);
  }
}

@keyframes slideBottomRightIn {
  from {
    opacity: 0;
    -webkit-transform: translate(0%, 40px);
            transform: translate(0%, 40px);
  }
  to {
    opacity: 1;
    -webkit-transform: translate(0%, 0);
            transform: translate(0%, 0);
  }
}

.contentContainer #homeContent.animate.backward .scroll-down {
  -webkit-animation: slideOutBottom 0.5s forwards linear;
          animation: slideOutBottom 0.5s forwards linear;
}

.contentContainer #homeContent.animate.backward .header {
  -webkit-transform-origin: left;
          transform-origin: left;
}

@-webkit-keyframes fadeOutRight {
  from {
    opacity: 1;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
  }
  to {
    opacity: 0;
    -webkit-transform: translate(calc(-50% + -40px), -50%);
            transform: translate(calc(-50% + -40px), -50%);
  }
}

@keyframes fadeOutRight {
  from {
    opacity: 1;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
  }
  to {
    opacity: 0;
    -webkit-transform: translate(calc(-50% + -40px), -50%);
            transform: translate(calc(-50% + -40px), -50%);
  }
}

.contentContainer #homeContent.animate.backward .rightSection h2 {
  -webkit-animation: fadeOutRighth3 0.4s 2s forwards linear;
          animation: fadeOutRighth3 0.4s 2s forwards linear;
}

@-webkit-keyframes fadeOutRighth3 {
  from {
    opacity: 1;
    -webkit-transform: translate(0%, -120%);
            transform: translate(0%, -120%);
  }
  to {
    opacity: 0;
    -webkit-transform: translate(-40px, -120%);
            transform: translate(-40px, -120%);
  }
}

@keyframes fadeOutRighth3 {
  from {
    opacity: 1;
    -webkit-transform: translate(0%, -120%);
            transform: translate(0%, -120%);
  }
  to {
    opacity: 0;
    -webkit-transform: translate(-40px, -120%);
            transform: translate(-40px, -120%);
  }
}

.contentContainer #homeContent.animate.backward .rightSection p {
  -webkit-animation: slideOutBottom 1s forwards linear;
          animation: slideOutBottom 1s forwards linear;
}

@-webkit-keyframes slideOutBottom {
  from {
    opacity: 1;
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate(0, 40px);
            transform: translate(0, 40px);
  }
}

@keyframes slideOutBottom {
  from {
    opacity: 1;
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate(0, 40px);
            transform: translate(0, 40px);
  }
}

.contentContainer #homeContent.animate.backward .rightSection .secondaryH2 {
  -webkit-animation: slideOutBottom 0.4s forwards linear;
          animation: slideOutBottom 0.4s forwards linear;
}

.contentContainer #homeContent.animate.backward .rightSection ul.bottom-right {
  -webkit-animation: slideBottomRightOut 0.4s forwards linear;
          animation: slideBottomRightOut 0.4s forwards linear;
}

@-webkit-keyframes slideBottomRightOut {
  from {
    opacity: 1;
    -webkit-transform: translate(0%, 0px);
            transform: translate(0%, 0px);
  }
  to {
    opacity: 0;
    -webkit-transform: translate(0%, 40px);
            transform: translate(0%, 40px);
  }
}

@keyframes slideBottomRightOut {
  from {
    opacity: 1;
    -webkit-transform: translate(0%, 0px);
            transform: translate(0%, 0px);
  }
  to {
    opacity: 0;
    -webkit-transform: translate(0%, 40px);
            transform: translate(0%, 40px);
  }
}

.contentContainer #companiesContent {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  min-height: 100vh;
  z-index: -1;
  opacity: 1;
}

.contentContainer #companiesContent .companiesBgContainer {
  width: 100vw;
  height: 100vh;
  -webkit-transition: opacity 0.4s 0.5s ease;
  transition: opacity 0.4s 0.5s ease;
}

.contentContainer #companiesContent .companiesBgContainer .companiesBg {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  opacity: 0;
  -webkit-transition: opacity 0.6s ease;
  transition: opacity 0.6s ease;
  -webkit-animation: fadeOut 0.7s forwards linear;
          animation: fadeOut 0.7s forwards linear;
}

.contentContainer #companiesContent .companiesBgContainer .companiesBg.active {
  -webkit-animation: fadeIn 0.4s 0.8s forwards linear;
          animation: fadeIn 0.4s 0.8s forwards linear;
}

.contentContainer #companiesContent .companyNameBox {
  position: absolute;
  bottom: calc(100vh / 7);
  left: auto;
  right: calc(100vw / 16);
  padding: 2rem;
  padding-bottom: 0;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  background-color: transparent;
  display: -ms-grid;
  display: grid;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transform: translate(0, 0%) scaleY(0);
          transform: translate(0, 0%) scaleY(0);
}

@media (max-width: 767.98px) {
  .contentContainer #companiesContent .companyNameBox {
    bottom: 20%;
    left: 20px;
    right: auto;
    padding: 0;
    width: calc(100vh - 2em);
  }
}

.contentContainer #companiesContent .companyNameBox h2 {
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  color: #fff;
  opacity: 0;
  margin-top: 0;
  letter-spacing: 2px;
}

@media (max-width: 767.98px) {
  .contentContainer #companiesContent .companyNameBox h2 {
    font-size: 1.3em;
  }
}

.contentContainer #companiesContent .companyNameBox ul {
  padding-left: 0;
  margin-top: 0;
  margin-bottom: 0;
  list-style-type: none;
}

.contentContainer #companiesContent .companyNameBox ul li {
  padding: 0.8em 0;
  font-family: "Montserrat", sans-serif;
  font-weight: 300;
  font-size: 0.9em;
  color: #fff;
  text-decoration: none;
  text-transform: uppercase;
  cursor: pointer;
  opacity: 0;
  letter-spacing: 2px;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
  -webkit-transition: 0.4s color ease-in;
  transition: 0.4s color ease-in;
}

@media (max-width: 767.98px) {
  .contentContainer #companiesContent .companyNameBox ul li {
    padding: 0.4em 0;
    font-size: 0.8em;
  }
}

@media (max-width: 767.98px) {
  .contentContainer #companiesContent .companyNameBox ul li.active {
    font-weight: 700;
  }
}

.contentContainer #companiesContent .companyNameBox ul li .scroll-down {
  display: block;
  position: absolute;
  top: 50%;
  left: 0%;
  width: 25px;
  height: 25px;
  background: transparent;
  z-index: 999;
  -webkit-transform: translate(-35px, -50%);
          transform: translate(-35px, -50%);
  border-radius: 50%;
  -webkit-transform-origin: bottom;
          transform-origin: bottom;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

@media (max-width: 767.98px) {
  .contentContainer #companiesContent .companyNameBox ul li .scroll-down {
    display: none;
  }
}

.contentContainer #companiesContent .companyNameBox ul li .scroll-down:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  height: 4px;
  width: 4px;
  border-radius: 50%;
  background: transparent;
  -webkit-transition: all 0.4s 0.5s ease;
  transition: all 0.4s 0.5s ease;
}

@-webkit-keyframes cliprotate {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@keyframes cliprotate {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@-webkit-keyframes rotate {
  0% {
    -webkit-transform: rotate(-45deg);
            transform: rotate(-45deg);
  }
  100% {
    -webkit-transform: rotate(135deg);
            transform: rotate(135deg);
  }
}

@keyframes rotate {
  0% {
    -webkit-transform: rotate(-45deg);
            transform: rotate(-45deg);
  }
  100% {
    -webkit-transform: rotate(135deg);
            transform: rotate(135deg);
  }
}

@-webkit-keyframes showfixed {
  0% {
    opacity: 0;
  }
  49.9% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}

@keyframes showfixed {
  0% {
    opacity: 0;
  }
  49.9% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}

.contentContainer #companiesContent .companyNameBox ul li:first-child {
  padding-top: 0;
}

.contentContainer #companiesContent .companyNameBox ul li:first-child .scroll-down {
  top: 0;
  -webkit-transform: translate(-35px, -20%);
          transform: translate(-35px, -20%);
}

.contentContainer #companiesContent .companyNameBox ul li:last-child {
  padding-bottom: 0;
}

.contentContainer #companiesContent .companyNameBox ul li:last-child .scroll-down {
  top: 0;
  -webkit-transform: translate(-35px, 30%);
          transform: translate(-35px, 30%);
}

.contentContainer #companiesContent .companyNameBox ul li:last-child::before, .contentContainer #companiesContent .companyNameBox ul li:last-child::after {
  top: 70%;
}

.contentContainer #companiesContent .companyNameBox ul li:hover {
  color: #c2c2c2;
}

.contentContainer #companiesContent .companyNameBox ul li:hover::before {
  opacity: 0.5;
}

.contentContainer #companiesContent .companyNameBox ul li.active .scroll-down:before {
  background: #ffffff;
}

.contentContainer #companiesContent .companyDetails {
  position: absolute;
  bottom: calc(100vh / 7);
  left: calc(100vw / 16);
  max-width: calc(((100vw / 8) * 3.5) - 5rem);
  min-width: calc(100vw / 8 * 3);
  min-height: calc(100vh / 8 * 3);
  overflow: hidden;
}

@media (max-width: 767.98px) {
  .contentContainer #companiesContent .companyDetails {
    bottom: calc(100vh / 1.8);
    left: 20px;
    max-width: calc(100% - 2em);
    min-width: calc(100% - 2em);
    min-height: 300px;
  }
}

.contentContainer #companiesContent .companyDetails .companyDetail {
  position: absolute;
  bottom: 0;
  left: 0;
  padding-right: 0rem;
  background-color: transparent;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: none;
  opacity: 0;
}

.contentContainer #companiesContent .companyDetails .companyDetail .title {
  width: 100%;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  color: #ffffff;
  text-transform: uppercase;
  opacity: 0;
  font-size: 1em;
  margin: 0.5em 0;
  letter-spacing: 2px;
}

.contentContainer #companiesContent .companyDetails .companyDetail .info {
  width: 100%;
  font-size: 0.75em;
  font-family: "Work Sans", sans-serif;
  color: #ffffff;
  font-weight: 300;
  letter-spacing: 1px;
  line-height: 1.35em;
  opacity: 0;
  margin: 0;
}

.contentContainer #companiesContent .companyDetails .companyDetail .info span {
  font-weight: 500;
  text-transform: capitalize;
}

.contentContainer #companiesContent .companyDetails .companyDetail .links {
  width: 100%;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 40% 40%;
      grid-template-columns: 40% 40%;
  grid-column-gap: 20%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  opacity: 0;
  margin-top: 1em;
}

.contentContainer #companiesContent .companyDetails .companyDetail .links ul {
  margin: 0;
  padding-left: 0;
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
}

.contentContainer #companiesContent .companyDetails .companyDetail .links ul li {
  position: relative;
  display: inline-block;
  width: 30px;
  height: 30px;
  border-radius: 50%;
}

.contentContainer #companiesContent .companyDetails .companyDetail .links ul li a {
  position: absolute;
  top: 0;
  left: 0;
  width: 30px;
  height: 30px;
}

.contentContainer #companiesContent .companyDetails .companyDetail .links ul li a svg {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 17px;
  max-height: 17px;
  fill: #ffffff;
}

.contentContainer #companiesContent .companyDetails .companyDetail .links .buttonTheme {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
  text-align: center;
  border-color: #ffffff;
  color: #ffffff;
}

.contentContainer #companiesContent .companyDetails .companyDetail .links .buttonTheme:hover {
  border-color: #0071bc;
}

.contentContainer #companiesContent .companyDetails .companyDetail.active {
  display: -ms-grid;
  display: grid;
  -webkit-animation: fadeIn 0.5s forwards linear;
          animation: fadeIn 0.5s forwards linear;
}

.contentContainer #companiesContent .companyDetails .companyDetail.active.inActive {
  display: -ms-grid;
  display: grid;
  -webkit-animation: fadeOut 0.7s forwards linear;
          animation: fadeOut 0.7s forwards linear;
}

.contentContainer #companiesContent.animate.forward .companyNameBox {
  -webkit-transform-origin: bottom;
          transform-origin: bottom;
  -webkit-animation: growUp 0.4s 0.7s forwards linear;
          animation: growUp 0.4s 0.7s forwards linear;
}

.contentContainer #companiesContent.animate.forward .companyNameBox h2 {
  -webkit-animation: slideInRight 0.5s 1s forwards linear;
          animation: slideInRight 0.5s 1s forwards linear;
}

.contentContainer #companiesContent.animate.forward .companyNameBox ul li:nth-child(1) {
  -webkit-animation: slideinBottom 0.4s 1.2s forwards linear;
          animation: slideinBottom 0.4s 1.2s forwards linear;
}

.contentContainer #companiesContent.animate.forward .companyNameBox ul li:nth-child(2) {
  -webkit-animation: slideinBottom 0.4s 1.3s forwards linear;
          animation: slideinBottom 0.4s 1.3s forwards linear;
}

.contentContainer #companiesContent.animate.forward .companyNameBox ul li:nth-child(3) {
  -webkit-animation: slideinBottom 0.4s 1.4s forwards linear;
          animation: slideinBottom 0.4s 1.4s forwards linear;
}

.contentContainer #companiesContent.animate.forward .companyNameBox ul li:nth-child(4) {
  -webkit-animation: slideinBottom 0.4s 1.5s forwards linear;
          animation: slideinBottom 0.4s 1.5s forwards linear;
}

.contentContainer #companiesContent.animate.forward .companyNameBox ul li:nth-child(5) {
  -webkit-animation: slideinBottom 0.4s 1.6s forwards linear;
          animation: slideinBottom 0.4s 1.6s forwards linear;
}

.contentContainer #companiesContent.animate.forward .companyNameBox ul li:nth-child(6) {
  -webkit-animation: slideinBottom 0.4s 1.7s forwards linear;
          animation: slideinBottom 0.4s 1.7s forwards linear;
}

.contentContainer #companiesContent.animate.forward .companyNameBox ul li:nth-child(7) {
  -webkit-animation: slideinBottom 0.4s 1.8s forwards linear;
          animation: slideinBottom 0.4s 1.8s forwards linear;
}

.contentContainer #companiesContent.animate.forward .companyNameBox ul li:nth-child(8) {
  -webkit-animation: slideinBottom 0.4s 1.9s forwards linear;
          animation: slideinBottom 0.4s 1.9s forwards linear;
}

@-webkit-keyframes growUp {
  from {
    -webkit-transform: translate(0, 0%) scaleY(0);
            transform: translate(0, 0%) scaleY(0);
  }
  to {
    -webkit-transform: translate(0, 0%) scaleY(1);
            transform: translate(0, 0%) scaleY(1);
  }
}

@keyframes growUp {
  from {
    -webkit-transform: translate(0, 0%) scaleY(0);
            transform: translate(0, 0%) scaleY(0);
  }
  to {
    -webkit-transform: translate(0, 0%) scaleY(1);
            transform: translate(0, 0%) scaleY(1);
  }
}

.contentContainer #companiesContent.animate.forward .companyDetails .companyDetail .title {
  -webkit-animation: slideInRight 0.6s 1.4s forwards linear;
          animation: slideInRight 0.6s 1.4s forwards linear;
}

.contentContainer #companiesContent.animate.forward .companyDetails .companyDetail .info,
.contentContainer #companiesContent.animate.forward .companyDetails .companyDetail .links {
  -webkit-animation: slideinBottom 0.6s 1.7s forwards linear;
          animation: slideinBottom 0.6s 1.7s forwards linear;
}

.contentContainer #companiesContent.animate.forward .companyDetails .companyDetail.active {
  display: -ms-grid;
  display: grid;
  -webkit-animation: fadeIn 0.5s forwards linear;
          animation: fadeIn 0.5s forwards linear;
}

.contentContainer #companiesContent.animate.forward .companyDetails .companyDetail.active.inActive {
  display: -ms-grid;
  display: grid;
  -webkit-animation: fadeOut 0.7s forwards linear;
          animation: fadeOut 0.7s forwards linear;
}

.contentContainer #companiesContent.animate.forward .companyDetails .companyDetail.active.inActive .title {
  -webkit-animation: slideOutRight 0.6s forwards linear;
          animation: slideOutRight 0.6s forwards linear;
}

.contentContainer #companiesContent.animate.forward .companyDetails .companyDetail.active.inActive .info {
  -webkit-animation: slideOutBottom 0.4s forwards linear;
          animation: slideOutBottom 0.4s forwards linear;
}

.contentContainer #companiesContent.animate.forward .companyDetails .companyDetail.active.inActive .links {
  -webkit-animation: fadeOut 0.2s forwards linear;
          animation: fadeOut 0.2s forwards linear;
}

@-webkit-keyframes slideInRight {
  from {
    opacity: 0;
    -webkit-transform: translate(-30px, 0);
            transform: translate(-30px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    -webkit-transform: translate(-30px, 0);
            transform: translate(-30px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
}

.contentContainer #companiesContent.animate.backward .companiesBgContainer {
  -webkit-animation: fadeOut 1s forwards linear;
          animation: fadeOut 1s forwards linear;
}

.contentContainer #companiesContent.animate.backward .companyNameBox {
  -webkit-transform-origin: bottom;
          transform-origin: bottom;
  -webkit-animation: growDown 0.4s forwards linear;
          animation: growDown 0.4s forwards linear;
}

.contentContainer #companiesContent.animate.backward .companyNameBox h2 {
  -webkit-animation: slideOutRight 0.5s 1.7s forwards linear;
          animation: slideOutRight 0.5s 1.7s forwards linear;
}

.contentContainer #companiesContent.animate.backward .companyDetails .companyDetail .title {
  -webkit-animation: slideOutRight 0.4s 1.7s forwards linear;
          animation: slideOutRight 0.4s 1.7s forwards linear;
}

.contentContainer #companiesContent.animate.backward .companyDetails .companyDetail .info,
.contentContainer #companiesContent.animate.backward .companyDetails .companyDetail .links {
  -webkit-animation: slideOutBottom 0.4s 1.7s forwards linear;
          animation: slideOutBottom 0.4s 1.7s forwards linear;
}

@-webkit-keyframes growDown {
  from {
    -webkit-transform: scaleY(1);
            transform: scaleY(1);
  }
  to {
    -webkit-transform: scaleY(0);
            transform: scaleY(0);
  }
}

@keyframes growDown {
  from {
    -webkit-transform: scaleY(1);
            transform: scaleY(1);
  }
  to {
    -webkit-transform: scaleY(0);
            transform: scaleY(0);
  }
}

@-webkit-keyframes slideOutRight {
  from {
    opacity: 1;
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate(-30px, 0);
            transform: translate(-30px, 0);
  }
}

@keyframes slideOutRight {
  from {
    opacity: 1;
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate(-30px, 0);
            transform: translate(-30px, 0);
  }
}

.contentContainer #teamContent {
  position: fixed;
  top: 0;
  left: 0;
  width: calc(100vw - 2 * 100vw / 16);
  min-height: 100vh;
  z-index: -1;
  opacity: 1;
  padding: 0 calc(100vw / 16);
}

@media (max-width: 767.98px) {
  .contentContainer #teamContent {
    left: 20px;
    padding: 0;
    width: calc(100% - 40px);
  }
}

.contentContainer #teamContent h2 {
  margin-top: calc(100vh / 4.5);
  margin-bottom: 0.3em;
  color: #0071bc;
  text-transform: uppercase;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
  opacity: 0;
  letter-spacing: 2px;
}

@media (max-width: 767.98px) {
  .contentContainer #teamContent h2 {
    margin-top: 5em;
    font-size: 1.3em;
  }
}

.contentContainer #teamContent .topBorder {
  height: 1px;
  width: 0%;
  margin-bottom: 0;
  margin-top: 1.75em;
  background-color: #0071bc;
}

@media (max-width: 767.98px) {
  .contentContainer #teamContent .topBorder {
    margin-top: 3em;
    margin-bottom: 1.5em;
  }
}

.contentContainer #teamContent .teamGridContainer {
  width: 100%;
  margin-top: 10px;
  display: -ms-grid;
  display: grid;
  grid-column-gap: 1.5em;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  justify-items: center;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  opacity: 0;
}

.contentContainer #teamContent .teamGridContainer.grid-4 {
  -ms-grid-columns: (1fr)[4];
      grid-template-columns: repeat(4, 1fr);
  margin-bottom: 0;
  width: 100%;
}

.contentContainer #teamContent .teamGridContainer.grid-4 .teamMember {
  max-width: 350px;
}

.contentContainer #teamContent .teamGridContainer.grid-4 .teamMember .imgContainer {
  width: 100%;
}

.contentContainer #teamContent .teamGridContainer.grid-4 .teamMember:last-child {
  -webkit-box-flex: 15%;
      -ms-flex: 15%;
          flex: 15%;
}

@media (max-width: 1366.98px) {
  .contentContainer #teamContent .teamGridContainer.grid-4 .teamMember:last-child {
    -webkit-box-flex: 10%;
        -ms-flex: 10%;
            flex: 10%;
  }
}

@media (max-width: 767.98px) {
  .contentContainer #teamContent .teamGridContainer.grid-4 .teamMember {
    max-width: 100%;
  }
}

@media (max-width: 767.98px) {
  .contentContainer #teamContent .teamGridContainer.grid-4 {
    -ms-grid-columns: (1fr)[3];
        grid-template-columns: repeat(3, 1fr);
    margin-top: 0.7em;
    margin-bottom: 0;
    width: 100%;
  }
}

.contentContainer #teamContent .teamGridContainer.grid-5 {
  -ms-grid-columns: (1fr)[4];
      grid-template-columns: repeat(4, 1fr);
  margin-top: 0;
  margin-bottom: 10px;
  width: 100%;
}

.contentContainer #teamContent .teamGridContainer.grid-5 .teamMember {
  margin: 1.75em 0 0 0;
  max-width: 350px;
}

.contentContainer #teamContent .teamGridContainer.grid-5 .teamMember .imgContainer {
  width: 100%;
}

@media (max-width: 767.98px) {
  .contentContainer #teamContent .teamGridContainer.grid-5 .teamMember {
    margin: 1.5em 0 0 0;
    max-width: 100%;
  }
}

@media (max-width: 1366.98px) {
  .contentContainer #teamContent .teamGridContainer.grid-5 {
    width: 100%;
  }
}

@media (max-width: 767.98px) {
  .contentContainer #teamContent .teamGridContainer.grid-5 {
    width: 50%;
    float: left;
    margin-bottom: 0;
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
    -ms-grid-rows: (1fr)[4];
        grid-template-rows: repeat(4, 1fr);
  }
}

.contentContainer #teamContent .teamGridContainer .teamMember {
  width: 100%;
  opacity: 0;
  background-color: transparent;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.contentContainer #teamContent .teamGridContainer .teamMember p.name,
.contentContainer #teamContent .teamGridContainer .teamMember p.designation {
  color: #0071bc;
  font-family: "Work Sans", sans-serif;
  opacity: 1;
  text-transform: uppercase;
}

.contentContainer #teamContent .teamGridContainer .teamMember .name {
  font-size: 0.8em;
  margin: 0;
  font-weight: 600;
  letter-spacing: 1px;
}

.contentContainer #teamContent .teamGridContainer .teamMember .designation {
  font-size: 0.6em;
  margin: 0 0 5px 0;
  font-weight: 300;
  letter-spacing: 1px;
}

.contentContainer #teamContent .teamGridContainer .teamMember .imgContainer {
  position: relative;
}

.contentContainer #teamContent .teamGridContainer .teamMember .imgContainer img {
  width: 100%;
}

.contentContainer #teamContent .teamGridContainer .teamMember .imgContainer .openIcon {
  position: absolute;
  right: 10px;
  bottom: 10px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1px solid #0071bc;
  cursor: pointer;
}

.contentContainer #teamContent .teamGridContainer .teamMember .imgContainer .openIcon svg {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 25px;
  fill: #0071bc;
}

.contentContainer #teamContent .teamGridContainer .teamMember.pointerNone {
  background-color: transparent;
  pointer-events: none;
}

.contentContainer #teamContent .teamGridContainer .teamMember.pointerNone .imgContainer img {
  opacity: 0;
}

@media (max-width: 767.98px) {
  .contentContainer #teamContent .teamGridContainer .teamMember.display-sm-none {
    display: none;
  }
}

.contentContainer #teamContent hr {
  border: 0;
  border-bottom: 1px;
  border-bottom-color: #0071bc;
  border-style: solid;
  height: 0;
  width: calc(85% - 10px);
  margin-bottom: 15px;
  margin-left: 0;
}

.contentContainer #teamContent.animate.forward h2 {
  -webkit-transform-origin: left;
          transform-origin: left;
  -webkit-animation: slideInRight 0.4s 1.1s forwards linear;
          animation: slideInRight 0.4s 1.1s forwards linear;
}

.contentContainer #teamContent.animate.forward .topBorder {
  -webkit-animation: growInRight 0.6s 1.5s forwards linear;
          animation: growInRight 0.6s 1.5s forwards linear;
}

@-webkit-keyframes growInRight {
  from {
    width: 0%;
  }
  to {
    width: 100%;
  }
}

@keyframes growInRight {
  from {
    width: 0%;
  }
  to {
    width: 100%;
  }
}

.contentContainer #teamContent.animate.forward .teamGridContainer {
  -webkit-animation: fadeIn 0.4s 1.25s forwards linear;
          animation: fadeIn 0.4s 1.25s forwards linear;
}

.contentContainer #teamContent.animate.forward .teamGridContainer.grid-4 .teamMember:nth-child(1) {
  -webkit-animation: slideinBottom 0.4s 1.25s forwards linear;
          animation: slideinBottom 0.4s 1.25s forwards linear;
}

.contentContainer #teamContent.animate.forward .teamGridContainer.grid-4 .teamMember:nth-child(2) {
  -webkit-animation: slideinBottom 0.4s 1.4s forwards linear;
          animation: slideinBottom 0.4s 1.4s forwards linear;
}

.contentContainer #teamContent.animate.forward .teamGridContainer.grid-4 .teamMember:nth-child(3) {
  -webkit-animation: slideinBottom 0.4s 1.55s forwards linear;
          animation: slideinBottom 0.4s 1.55s forwards linear;
}

.contentContainer #teamContent.animate.forward .teamGridContainer.grid-5 .teamMember:nth-child(1) {
  -webkit-animation: slideinBottom 0.4s 1.65s forwards linear;
          animation: slideinBottom 0.4s 1.65s forwards linear;
}

.contentContainer #teamContent.animate.forward .teamGridContainer.grid-5 .teamMember:nth-child(2) {
  -webkit-animation: slideinBottom 0.4s 1.75s forwards linear;
          animation: slideinBottom 0.4s 1.75s forwards linear;
}

.contentContainer #teamContent.animate.forward .teamGridContainer.grid-5 .teamMember:nth-child(3) {
  -webkit-animation: slideinBottom 0.4s 1.85s forwards linear;
          animation: slideinBottom 0.4s 1.85s forwards linear;
}

.contentContainer #teamContent.animate.forward .teamGridContainer.grid-5 .teamMember:nth-child(4) {
  -webkit-animation: slideinBottom 0.4s 1.95s forwards linear;
          animation: slideinBottom 0.4s 1.95s forwards linear;
}

.contentContainer #teamContent.animate.backward h2 {
  -webkit-animation: slideOutRight 0.4s forwards linear;
          animation: slideOutRight 0.4s forwards linear;
}

.contentContainer #teamContent.animate.backward .topBorder {
  -webkit-animation: growOutRight 0.4s forwards linear;
          animation: growOutRight 0.4s forwards linear;
}

@-webkit-keyframes growOutRight {
  from {
    width: 100%;
  }
  to {
    width: 0%;
  }
}

@keyframes growOutRight {
  from {
    width: 100%;
  }
  to {
    width: 0%;
  }
}

.contentContainer #teamContent.animate.backward .teamGridContainer {
  -webkit-animation: fadeOut 0.6s forwards linear;
          animation: fadeOut 0.6s forwards linear;
}

.contentContainer #teamContent.animate.backward .teamGridContainer.grid-4 .teamMember {
  -webkit-animation: slideOutBottom 0.3s forwards linear;
          animation: slideOutBottom 0.3s forwards linear;
}

.contentContainer #teamContent.animate.backward .teamGridContainer.grid-5 .teamMember {
  -webkit-animation: slideOutBottom 0.4s forwards linear;
          animation: slideOutBottom 0.4s forwards linear;
}

.contentContainer #contactContent {
  position: fixed;
  top: 0;
  left: 0;
  width: calc(100vw - 2 * 100vw / 16);
  min-height: 100vh;
  z-index: -1;
  opacity: 1;
  padding: 0 calc(100vw / 16);
}

@media (max-width: 767.98px) {
  .contentContainer #contactContent {
    left: 20px;
    width: calc(100% - 40px);
    padding: 0;
  }
}

.contentContainer #contactContent .contactContainer {
  position: absolute;
  top: calc(50% + 50px);
  width: calc(100vw - (100vw / 8));
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

@media (max-width: 767.98px) {
  .contentContainer #contactContent .contactContainer {
    top: 100px;
    left: 0;
    width: 100%;
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
}

.contentContainer #contactContent .contactContainer .mainContainer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}

.contentContainer #contactContent .contactContainer .mainContainer .formContainer {
  -webkit-box-flex: 50%;
      -ms-flex: 50%;
          flex: 50%;
  padding-right: 2em;
  position: relative;
  opacity: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

@media (max-width: 767.98px) {
  .contentContainer #contactContent .contactContainer .mainContainer .formContainer {
    display: none;
  }
}

.contentContainer #contactContent .contactContainer .mainContainer .formContainer h2 {
  font-family: "Montserrat", sans-serif;
  color: #ffffff;
  text-transform: uppercase;
  font-size: 1.1em;
  letter-spacing: 2px;
  opacity: 0;
  font-weight: 600;
}

.contentContainer #contactContent .contactContainer .mainContainer .formContainer h2:first-child {
  margin-top: 2em;
}

.contentContainer #contactContent .contactContainer .mainContainer .formContainer h2:nth-child(2), .contentContainer #contactContent .contactContainer .mainContainer .formContainer h2:nth-child(3) {
  font-weight: 300;
}

.contentContainer #contactContent .contactContainer .mainContainer .formContainer h2:nth-child(3) {
  margin-bottom: 2em;
}

.contentContainer #contactContent .contactContainer .mainContainer .formContainer h3 {
  font-weight: 300;
  color: #ffffff;
  text-transform: uppercase;
  font-family: "Montserrat", sans-serif;
  font-size: 1.1em;
  margin-top: 0;
  letter-spacing: 2px;
}

.contentContainer #contactContent .contactContainer .mainContainer .formContainer form {
  opacity: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.contentContainer #contactContent .contactContainer .mainContainer .formContainer form input,
.contentContainer #contactContent .contactContainer .mainContainer .formContainer form textarea {
  width: 100%;
  min-height: 40px;
  margin-bottom: 2em;
  padding-left: 5px;
  font-family: "Work Sans", sans-serif;
  font-weight: 300;
  color: #ffffff;
  resize: none;
  border: none;
  background: transparent;
  border-bottom: 1px solid #ffffff;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.contentContainer #contactContent .contactContainer .mainContainer .formContainer form input::-webkit-input-placeholder,
.contentContainer #contactContent .contactContainer .mainContainer .formContainer form textarea::-webkit-input-placeholder {
  color: #e9e9e9;
}

.contentContainer #contactContent .contactContainer .mainContainer .formContainer form input:-ms-input-placeholder,
.contentContainer #contactContent .contactContainer .mainContainer .formContainer form textarea:-ms-input-placeholder {
  color: #e9e9e9;
}

.contentContainer #contactContent .contactContainer .mainContainer .formContainer form input::-ms-input-placeholder,
.contentContainer #contactContent .contactContainer .mainContainer .formContainer form textarea::-ms-input-placeholder {
  color: #e9e9e9;
}

.contentContainer #contactContent .contactContainer .mainContainer .formContainer form input::placeholder,
.contentContainer #contactContent .contactContainer .mainContainer .formContainer form textarea::placeholder {
  color: #e9e9e9;
}

.contentContainer #contactContent .contactContainer .mainContainer .formContainer form textarea {
  padding-top: 1em;
  border: 1px solid #ffffff;
}

.contentContainer #contactContent .contactContainer .mainContainer .formContainer form input:focus,
.contentContainer #contactContent .contactContainer .mainContainer .formContainer form textarea:focus {
  border: 0;
  border-image-width: 0;
  outline: none;
  border-bottom: 1px solid #000000;
}

.contentContainer #contactContent .contactContainer .mainContainer .formContainer form .buttonTheme {
  margin-left: 0;
  -webkit-box-flex: 50%;
      -ms-flex: 50%;
          flex: 50%;
  border-color: #ffffff;
  color: #ffffff;
}

.contentContainer #contactContent .contactContainer .mainContainer .formContainer form .buttonTheme:hover {
  background: #ffffff;
  color: #0071bc;
}

.contentContainer #contactContent .contactContainer .mainContainer .formContainer form #contactMessage {
  width: 100%;
  height: 0;
  margin-top: 0;
  font-family: "Work Sans", sans-serif;
  font-weight: 300;
  -webkit-transition: all 0.4s ease-out;
  transition: all 0.4s ease-out;
}

.contentContainer #contactContent .contactContainer .mainContainer .formContainer form #contactMessage .alert-success,
.contentContainer #contactContent .contactContainer .mainContainer .formContainer form #contactMessage .alert-warning {
  height: 0;
  opacity: 0;
  -webkit-transition: all 0.4s ease-out;
  transition: all 0.4s ease-out;
}

.contentContainer #contactContent .contactContainer .mainContainer .formContainer form #contactMessage.active {
  margin-top: 1em;
  min-height: 40px;
}

.contentContainer #contactContent .contactContainer .mainContainer .formContainer form #contactMessage.active .alert-success {
  height: 100%;
  opacity: 1;
  color: #ffffff;
  text-transform: uppercase;
}

.contentContainer #contactContent .contactContainer .mainContainer .formContainer form #contactMessage.active .alert-warning {
  height: 100%;
  opacity: 1;
  text-transform: uppercase;
  color: #ffeeba;
}

.contentContainer #contactContent .contactContainer .mainContainer .formContainer .leftFooter {
  width: calc(100% - 2em);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding-right: 2em;
}

.contentContainer #contactContent .contactContainer .mainContainer .formContainer .leftFooter h2 {
  font-family: "Montserrat", sans-serif;
  color: #ffffff;
  text-transform: uppercase;
  margin: 0.2em 0;
  font-weight: 600;
  -webkit-box-flex: 100%;
      -ms-flex: 100%;
          flex: 100%;
  font-size: 1.1em;
  text-align: left;
}

.contentContainer #contactContent .contactContainer .mainContainer .formContainer .leftFooter form {
  -webkit-box-flex: 100%;
      -ms-flex: 100%;
          flex: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}

.contentContainer #contactContent .contactContainer .mainContainer .formContainer .leftFooter form input,
.contentContainer #contactContent .contactContainer .mainContainer .formContainer .leftFooter form textarea {
  -webkit-box-flex: 50%;
      -ms-flex: 50%;
          flex: 50%;
  width: 100%;
  min-height: 30px;
  padding-left: 1em;
  margin-right: 1em;
  margin-bottom: 0;
  font-family: "Work Sans", sans-serif;
  font-weight: 300;
  resize: none;
  border: none;
  border-bottom: 1px solid #ffffff;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.contentContainer #contactContent .contactContainer .mainContainer .formContainer .leftFooter form button {
  margin-left: 1em;
  -webkit-box-flex: 50%;
      -ms-flex: 50%;
          flex: 50%;
  border-color: #ffffff;
  color: #ffffff;
}

.contentContainer #contactContent .contactContainer .mainContainer .formContainer .leftFooter form button:hover {
  background: #ffffff;
  color: #0071bc;
}

.contentContainer #contactContent .contactContainer .mainContainer .formContainer .bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  width: calc(100% - 2em);
}

.contentContainer #contactContent .contactContainer .mainContainer .mapContainer {
  position: relative;
  -webkit-box-flex: 50%;
      -ms-flex: 50%;
          flex: 50%;
  padding: 0 0 0 2em;
  opacity: 0;
}

@media (max-width: 767.98px) {
  .contentContainer #contactContent .contactContainer .mainContainer .mapContainer {
    -webkit-box-flex: 100%;
        -ms-flex: 100%;
            flex: 100%;
    padding: 0;
  }
}

.contentContainer #contactContent .contactContainer .mainContainer .mapContainer .mapContainerFlexBox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}

@media (max-width: 767.98px) {
  .contentContainer #contactContent .contactContainer .mainContainer .mapContainer .mapContainerFlexBox {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

@media (max-width: 767.98px) {
  .contentContainer #contactContent .contactContainer .mainContainer .mapContainer .mapContainerFlexBox .address {
    -webkit-box-flex: 50%;
        -ms-flex: 50%;
            flex: 50%;
    margin-bottom: 1.5em;
  }
}

@media (max-width: 767.98px) {
  .contentContainer #contactContent .contactContainer .mainContainer .mapContainer .mapContainerFlexBox .contact {
    -webkit-box-flex: 50%;
        -ms-flex: 50%;
            flex: 50%;
    margin-bottom: 1.5em;
  }
}

.contentContainer #contactContent .contactContainer .mainContainer .mapContainer h2 {
  font-family: "Montserrat", sans-serif;
  color: #ffffff;
  text-transform: uppercase;
  margin: 0;
  font-weight: 600;
  opacity: 0;
  font-size: 1.1em;
}

@media (max-width: 767.98px) {
  .contentContainer #contactContent .contactContainer .mainContainer .mapContainer h2 {
    font-size: 0.9em;
    margin-bottom: 1em;
  }
}

.contentContainer #contactContent .contactContainer .mainContainer .mapContainer .secondP {
  font-weight: 300;
  color: #ffffff;
  text-transform: capitalize;
  font-family: "Montserrat", sans-serif;
  letter-spacing: 2px;
  opacity: 0;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
  margin-bottom: 0.5em;
  margin-top: 0.5em;
}

@media (max-width: 767.98px) {
  .contentContainer #contactContent .contactContainer .mainContainer .mapContainer .secondP {
    font-size: 0.8em;
  }
}

.contentContainer #contactContent .contactContainer .mainContainer .mapContainer p {
  font-family: "Work Sans", sans-serif;
  font-weight: 300;
  color: #fff;
  opacity: 1;
  font-size: 0.9em;
  letter-spacing: 1px;
  opacity: 0;
  margin-bottom: 0;
  margin-top: 0.5em;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
}

@media (max-width: 767.98px) {
  .contentContainer #contactContent .contactContainer .mainContainer .mapContainer p {
    font-size: 0.7em;
  }
}

.contentContainer #contactContent .contactContainer .mainContainer .mapContainer #map {
  margin-top: 1.5em;
  height: auto;
  width: 100%;
  -webkit-transform: translateY(4px);
          transform: translateY(4px);
}

.contentContainer #contactContent .contactContainer .mainContainer .mapContainer #map #mapFrame {
  opacity: 0 !important;
}

@media (max-width: 767.98px) {
  .contentContainer #contactContent .contactContainer .mainContainer .mapContainer #map {
    width: 100%;
  }
}

.contentContainer #contactContent .contactContainer .footerContainer {
  width: 60%;
  margin: 0 auto;
}

.contentContainer #contactContent.animate.forward .contactContainer .mainContainer .formContainer {
  -webkit-animation: fadeIn 0.4s 2.1s forwards linear;
          animation: fadeIn 0.4s 2.1s forwards linear;
}

.contentContainer #contactContent.animate.forward .contactContainer .mainContainer .formContainer h2 {
  -webkit-transform-origin: left;
          transform-origin: left;
  -webkit-animation: slideInRight 0.4s 2.2s forwards linear;
          animation: slideInRight 0.4s 2.2s forwards linear;
}

.contentContainer #contactContent.animate.forward .contactContainer .mainContainer .formContainer form {
  -webkit-animation: fadeIn 0.4s 2.5s forwards linear;
          animation: fadeIn 0.4s 2.5s forwards linear;
}

.contentContainer #contactContent.animate.forward .contactContainer .mainContainer .mapContainer {
  -webkit-animation: fadeIn 0.4s 2.5s forwards linear;
          animation: fadeIn 0.4s 2.5s forwards linear;
}

.contentContainer #contactContent.animate.forward .contactContainer .mainContainer .mapContainer h2 {
  -webkit-transform-origin: left;
          transform-origin: left;
  -webkit-animation: slideInRight 0.4s 2.2s forwards linear;
          animation: slideInRight 0.4s 2.2s forwards linear;
}

.contentContainer #contactContent.animate.forward .contactContainer .mainContainer .mapContainer h3,
.contentContainer #contactContent.animate.forward .contactContainer .mainContainer .mapContainer p {
  -webkit-transform-origin: bottom;
          transform-origin: bottom;
  -webkit-animation: slideinBottom 0.4s 2.4s forwards linear;
          animation: slideinBottom 0.4s 2.4s forwards linear;
}

.contentContainer #contactContent.animate.forward .contactContainer .mainContainer .mapContainer #map {
  -webkit-animation: fadeIn 0.4s 2.5s forwards linear;
          animation: fadeIn 0.4s 2.5s forwards linear;
}

.contentContainer #contactContent.animate.forward .contactContainer .mainContainer .mapContainer #map iframe {
  -webkit-animation: fadeIn 0.4s 2.5s forwards linear;
          animation: fadeIn 0.4s 2.5s forwards linear;
}

.contentContainer #contactContent.animate.backward .contactContainer .mainContainer .formContainer {
  -webkit-animation: fadeOut 0.4s forwards linear;
          animation: fadeOut 0.4s forwards linear;
}

.contentContainer #contactContent.animate.backward .contactContainer .mainContainer .formContainer h2 {
  -webkit-transform-origin: left;
          transform-origin: left;
  -webkit-animation: slideOutRight 0.4s forwards linear;
          animation: slideOutRight 0.4s forwards linear;
}

.contentContainer #contactContent.animate.backward .contactContainer .mainContainer .formContainer form {
  -webkit-animation: fadeOut 0.4s forwards linear;
          animation: fadeOut 0.4s forwards linear;
}

.contentContainer #contactContent.animate.backward .contactContainer .mainContainer h3,
.contentContainer #contactContent.animate.backward .contactContainer .mainContainer p {
  -webkit-animation: slideOutBottom 0.5s forwards linear;
          animation: slideOutBottom 0.5s forwards linear;
}

.contentContainer #contactContent.animate.backward .contactContainer .mainContainer .mapContainer {
  -webkit-animation: fadeOut 0.4s forwards linear;
          animation: fadeOut 0.4s forwards linear;
}

.contentContainer #contactContent.animate.backward .contactContainer .mainContainer .mapContainer h2 {
  -webkit-transform-origin: left;
          transform-origin: left;
  -webkit-animation: slideOutRight 0.4s forwards linear;
          animation: slideOutRight 0.4s forwards linear;
}

.contentContainer #contactContent.animate.backward .contactContainer .mainContainer .mapContainer #map {
  -webkit-animation: fadeOut 0.4s forwards linear;
          animation: fadeOut 0.4s forwards linear;
}

.contentContainer #contactContent.animate.backward .contactContainer .mainContainer .mapContainer #map iframe {
  -webkit-animation: fadeOut 0.4s forwards linear;
          animation: fadeOut 0.4s forwards linear;
}

.transitionContainer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.transitionContainer #divisionVerticalWipes {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (auto)[8];
      grid-template-columns: repeat(8, auto);
}

.transitionContainer #divisionVerticalWipes div {
  height: 100%;
  width: 100%;
  background: #0071bc;
}

.transitionContainer #divisionVerticalWipes.animate.fadeIn {
  -webkit-transform: translate(0, 0) scale(1, 1);
          transform: translate(0, 0) scale(1, 1);
  -webkit-transform-origin: center;
          transform-origin: center;
}

.transitionContainer #divisionVerticalWipes.animate.fadeIn.forward {
  -webkit-animation: fadeInOut 1.5s forwards linear;
          animation: fadeInOut 1.5s forwards linear;
}

@-webkit-keyframes fadeInOut {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

@keyframes fadeInOut {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

.transitionContainer #divisionVerticalWipes.animate.fadeIn.forward div {
  background: #000000;
}

.transitionContainer #divisionVerticalWipes.animate.fadeOut {
  -webkit-transform: translate(0, 0) scale(1, 1);
          transform: translate(0, 0) scale(1, 1);
  -webkit-transform-origin: center;
          transform-origin: center;
}

.transitionContainer #divisionVerticalWipes.animate.fadeOut.forward {
  -webkit-animation: fadeIn 0.75s linear, fadeOut 0.75s 0.75s forwards linear;
          animation: fadeIn 0.75s linear, fadeOut 0.75s 0.75s forwards linear;
}

.transitionContainer #divisionVerticalWipes.animate.fadeOut div {
  background: #000000;
}

.transitionContainer #divisionVerticalWipes.animate.swipeRight {
  -webkit-transform: translate(0, 0) scale(0, 1);
          transform: translate(0, 0) scale(0, 1);
  -webkit-transform-origin: right;
          transform-origin: right;
}

.transitionContainer #divisionVerticalWipes.animate.swipeRight.forward {
  -webkit-animation: swipeRight 0.75s forwards linear, scaleRight 0.2s 1.2s forwards linear;
          animation: swipeRight 0.75s forwards linear, scaleRight 0.2s 1.2s forwards linear;
}

@-webkit-keyframes swipeRight {
  from {
    -webkit-transform: translate(-100%, 0) scaleX(1);
            transform: translate(-100%, 0) scaleX(1);
  }
  to {
    -webkit-transform: translate(0, 0) scaleX(1);
            transform: translate(0, 0) scaleX(1);
  }
}

@keyframes swipeRight {
  from {
    -webkit-transform: translate(-100%, 0) scaleX(1);
            transform: translate(-100%, 0) scaleX(1);
  }
  to {
    -webkit-transform: translate(0, 0) scaleX(1);
            transform: translate(0, 0) scaleX(1);
  }
}

@-webkit-keyframes scaleRight {
  from {
    -webkit-transform: translate(0, 0) scaleX(1);
            transform: translate(0, 0) scaleX(1);
  }
  to {
    -webkit-transform: translate(0, 0) scaleX(0);
            transform: translate(0, 0) scaleX(0);
  }
}

@keyframes scaleRight {
  from {
    -webkit-transform: translate(0, 0) scaleX(1);
            transform: translate(0, 0) scaleX(1);
  }
  to {
    -webkit-transform: translate(0, 0) scaleX(0);
            transform: translate(0, 0) scaleX(0);
  }
}

.transitionContainer #divisionVerticalWipes.animate.swipeRight.forward div {
  background: #ffffff;
}

.transitionContainer #divisionVerticalWipes.animate.swipeUpDivision {
  -webkit-transform: translate(0, 0) scale(1, 1);
          transform: translate(0, 0) scale(1, 1);
  -webkit-transform-origin: bottom;
          transform-origin: bottom;
}

.transitionContainer #divisionVerticalWipes.animate.swipeUpDivision div {
  -webkit-transform: translateY(100%);
          transform: translateY(100%);
  -webkit-transform-origin: bottom;
          transform-origin: bottom;
}

.transitionContainer #divisionVerticalWipes.animate.swipeUpDivision.forward {
  -webkit-animation: fadeZ 0.2s 1.7s forwards linear;
          animation: fadeZ 0.2s 1.7s forwards linear;
}

.transitionContainer #divisionVerticalWipes.animate.swipeUpDivision.forward div:nth-child(1) {
  -webkit-animation: slideUp 0.8s 0.1s forwards linear;
          animation: slideUp 0.8s 0.1s forwards linear;
}

@-webkit-keyframes slideUp {
  from {
    -webkit-transform: translateY(100%);
            transform: translateY(100%);
  }
  to {
    -webkit-transform: translateY(0%);
            transform: translateY(0%);
  }
}

@keyframes slideUp {
  from {
    -webkit-transform: translateY(100%);
            transform: translateY(100%);
  }
  to {
    -webkit-transform: translateY(0%);
            transform: translateY(0%);
  }
}

.transitionContainer #divisionVerticalWipes.animate.swipeUpDivision.forward div:nth-child(2) {
  -webkit-animation: slideUp 0.8s 0.2s forwards linear;
          animation: slideUp 0.8s 0.2s forwards linear;
}

@keyframes slideUp {
  from {
    -webkit-transform: translateY(100%);
            transform: translateY(100%);
  }
  to {
    -webkit-transform: translateY(0%);
            transform: translateY(0%);
  }
}

.transitionContainer #divisionVerticalWipes.animate.swipeUpDivision.forward div:nth-child(3) {
  -webkit-animation: slideUp 0.8s 0.3s forwards linear;
          animation: slideUp 0.8s 0.3s forwards linear;
}

@keyframes slideUp {
  from {
    -webkit-transform: translateY(100%);
            transform: translateY(100%);
  }
  to {
    -webkit-transform: translateY(0%);
            transform: translateY(0%);
  }
}

.transitionContainer #divisionVerticalWipes.animate.swipeUpDivision.forward div:nth-child(4) {
  -webkit-animation: slideUp 0.8s 0.4s forwards linear;
          animation: slideUp 0.8s 0.4s forwards linear;
}

@keyframes slideUp {
  from {
    -webkit-transform: translateY(100%);
            transform: translateY(100%);
  }
  to {
    -webkit-transform: translateY(0%);
            transform: translateY(0%);
  }
}

.transitionContainer #divisionVerticalWipes.animate.swipeUpDivision.forward div:nth-child(5) {
  -webkit-animation: slideUp 0.8s 0.5s forwards linear;
          animation: slideUp 0.8s 0.5s forwards linear;
}

@keyframes slideUp {
  from {
    -webkit-transform: translateY(100%);
            transform: translateY(100%);
  }
  to {
    -webkit-transform: translateY(0%);
            transform: translateY(0%);
  }
}

.transitionContainer #divisionVerticalWipes.animate.swipeUpDivision.forward div:nth-child(6) {
  -webkit-animation: slideUp 0.8s 0.6s forwards linear;
          animation: slideUp 0.8s 0.6s forwards linear;
}

@keyframes slideUp {
  from {
    -webkit-transform: translateY(100%);
            transform: translateY(100%);
  }
  to {
    -webkit-transform: translateY(0%);
            transform: translateY(0%);
  }
}

.transitionContainer #divisionVerticalWipes.animate.swipeUpDivision.forward div:nth-child(7) {
  -webkit-animation: slideUp 0.8s 0.7s forwards linear;
          animation: slideUp 0.8s 0.7s forwards linear;
}

@keyframes slideUp {
  from {
    -webkit-transform: translateY(100%);
            transform: translateY(100%);
  }
  to {
    -webkit-transform: translateY(0%);
            transform: translateY(0%);
  }
}

.transitionContainer #divisionVerticalWipes.animate.swipeUpDivision.forward div:nth-child(8) {
  -webkit-animation: slideUp 0.8s 0.8s forwards linear;
          animation: slideUp 0.8s 0.8s forwards linear;
}

@keyframes slideUp {
  from {
    -webkit-transform: translateY(100%);
            transform: translateY(100%);
  }
  to {
    -webkit-transform: translateY(0%);
            transform: translateY(0%);
  }
}

@-webkit-keyframes fadeOutZ {
  from {
    opacity: 1;
    z-index: 1;
  }
  to {
    opacity: 0;
    z-index: -1;
  }
}

@keyframes fadeOutZ {
  from {
    opacity: 1;
    z-index: 1;
  }
  to {
    opacity: 0;
    z-index: -1;
  }
}

.transitionContainer #divisionVerticalWipes.animate.swipeUpDivision.backward div:nth-child(1) {
  -webkit-transform: translateY(-100%);
          transform: translateY(-100%);
  -webkit-animation: slideDown 0.8s 0.1s forwards linear;
          animation: slideDown 0.8s 0.1s forwards linear;
}

@-webkit-keyframes slideDown {
  from {
    -webkit-transform: translateY(100%);
            transform: translateY(100%);
  }
  to {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes slideDown {
  from {
    -webkit-transform: translateY(100%);
            transform: translateY(100%);
  }
  to {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

.transitionContainer #divisionVerticalWipes.animate.swipeUpDivision.backward div:nth-child(2) {
  -webkit-transform: translateY(-100%);
          transform: translateY(-100%);
  -webkit-animation: slideDown 0.8s 0.2s forwards linear;
          animation: slideDown 0.8s 0.2s forwards linear;
}

@keyframes slideDown {
  from {
    -webkit-transform: translateY(100%);
            transform: translateY(100%);
  }
  to {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

.transitionContainer #divisionVerticalWipes.animate.swipeUpDivision.backward div:nth-child(3) {
  -webkit-transform: translateY(-100%);
          transform: translateY(-100%);
  -webkit-animation: slideDown 0.8s 0.3s forwards linear;
          animation: slideDown 0.8s 0.3s forwards linear;
}

@keyframes slideDown {
  from {
    -webkit-transform: translateY(100%);
            transform: translateY(100%);
  }
  to {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

.transitionContainer #divisionVerticalWipes.animate.swipeUpDivision.backward div:nth-child(4) {
  -webkit-transform: translateY(-100%);
          transform: translateY(-100%);
  -webkit-animation: slideDown 0.8s 0.4s forwards linear;
          animation: slideDown 0.8s 0.4s forwards linear;
}

@keyframes slideDown {
  from {
    -webkit-transform: translateY(100%);
            transform: translateY(100%);
  }
  to {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

.transitionContainer #divisionVerticalWipes.animate.swipeUpDivision.backward div:nth-child(5) {
  -webkit-transform: translateY(-100%);
          transform: translateY(-100%);
  -webkit-animation: slideDown 0.8s 0.5s forwards linear;
          animation: slideDown 0.8s 0.5s forwards linear;
}

@keyframes slideDown {
  from {
    -webkit-transform: translateY(100%);
            transform: translateY(100%);
  }
  to {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

.transitionContainer #divisionVerticalWipes.animate.swipeUpDivision.backward div:nth-child(6) {
  -webkit-transform: translateY(-100%);
          transform: translateY(-100%);
  -webkit-animation: slideDown 0.8s 0.6s forwards linear;
          animation: slideDown 0.8s 0.6s forwards linear;
}

@keyframes slideDown {
  from {
    -webkit-transform: translateY(100%);
            transform: translateY(100%);
  }
  to {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

.transitionContainer #divisionVerticalWipes.animate.swipeUpDivision.backward div:nth-child(7) {
  -webkit-transform: translateY(-100%);
          transform: translateY(-100%);
  -webkit-animation: slideDown 0.8s 0.7s forwards linear;
          animation: slideDown 0.8s 0.7s forwards linear;
}

@keyframes slideDown {
  from {
    -webkit-transform: translateY(100%);
            transform: translateY(100%);
  }
  to {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

.transitionContainer #divisionVerticalWipes.animate.swipeUpDivision.backward div:nth-child(8) {
  -webkit-transform: translateY(-100%);
          transform: translateY(-100%);
  -webkit-animation: slideDown 0.8s 0.8s forwards linear;
          animation: slideDown 0.8s 0.8s forwards linear;
}

@keyframes slideDown {
  from {
    -webkit-transform: translateY(100%);
            transform: translateY(100%);
  }
  to {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

.transitionContainer #horizontalFullWipe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: none;
}

.transitionContainer #horizontalFullWipe.animate {
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transform-origin: left;
          transform-origin: left;
  background: #00449e;
}

.transitionContainer #horizontalFullWipe.animate.backward {
  -webkit-animation: swipeBackRight 2s forwards linear;
          animation: swipeBackRight 2s forwards linear;
}

@-webkit-keyframes swipeBackRight {
  from {
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
  }
  to {
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
  }
}

@keyframes swipeBackRight {
  from {
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
  }
  to {
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
  }
}

.transitionContainer #whiteHorizontalSwipe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background: #ffffff;
}

.transitionContainer #whiteHorizontalSwipe.animate {
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transform-origin: left;
          transform-origin: left;
}

.transitionContainer #whiteHorizontalSwipe.animate.forward {
  -webkit-animation: swipeRight 2s forwards linear;
          animation: swipeRight 2s forwards linear;
}

.transitionContainer #whiteHorizontalSwipe.animate.backward {
  -webkit-animation: swipeBackRight 2s forwards linear;
          animation: swipeBackRight 2s forwards linear;
}

.sectionContainer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  min-height: 100vh;
  z-index: 1;
}

.sectionContainer section {
  position: relative;
  min-height: 100vh !important;
  width: 100%;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[8];
      grid-template-columns: repeat(8, 1fr);
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  z-index: 1;
}

.sectionContainer section.home {
  background: transparent;
  position: relative;
  min-height: 100vh;
}

.sectionContainer section.home .blue-wipes {
  -webkit-transform: translateY(0%);
          transform: translateY(0%);
  opacity: 1;
}

.sectionContainer section.home .blue-wipes div {
  background-color: #0071bc;
  -webkit-transform: translateY(-100%);
          transform: translateY(-100%);
}

.sectionContainer section.about {
  background: transparent;
  position: relative;
  min-height: 100vh;
  background-color: blue;
}

.sectionContainer section.about .blue-wipes {
  -webkit-transform: translateY(0%);
          transform: translateY(0%);
  opacity: 0;
}

.sectionContainer section.about .blue-wipes div {
  background-color: #0071bc;
  -webkit-transform: translateY(0%);
          transform: translateY(0%);
}

.sectionContainer section.companies {
  background: transparent;
  position: relative;
  min-height: 100vh;
}

.sectionContainer section.companies .horizontal-wipes {
  position: absolute;
  top: 0;
  left: 0;
  min-height: 100vh;
  width: 100vw;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transform-origin: left;
          transform-origin: left;
  opacity: 1;
  display: none;
  background: #0071bc;
}

.sectionContainer section.team {
  background: transparent;
  position: relative;
  min-height: 100vh;
}

.sectionContainer section.team .horizontal-wipes {
  position: fixed;
  top: 0;
  left: 0;
  min-height: 100vh;
  width: 100vw;
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
  opacity: 1;
  display: none;
  background: #ffffff;
}

.sectionContainer section.contact {
  background: transparent;
  position: relative;
  min-height: 100vh;
}

.sectionContainer section.contact .content {
  position: fixed;
  width: calc(100vw - (100vw / 4));
  height: calc(100vh - 200px);
  padding: 100px calc(100vw / 8);
  top: 0;
  left: 0;
  z-index: -1;
  opacity: 0;
}

.sectionContainer section.contact .horizontal-wipes {
  position: fixed;
  top: 0;
  left: 0;
  min-height: 100vh;
  width: 100vw;
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
  opacity: 1;
  display: none;
  background: #0071bc;
}

.sectionContainer section.footer {
  background: transparent;
  position: relative;
  min-height: 100vh;
}

.sectionContainer section.footer .content {
  position: fixed;
  width: calc(100vw - (100vw / 4));
  height: calc(100vh - 200px);
  padding: 100px calc(100vw / 8);
  top: 0;
  left: 0;
}

@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@-webkit-keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
/*# sourceMappingURL=style.css.map */