        @import url('https://fonts.googleapis.com/css2?family=Smooch+Sans:wght@100..900&display=swap');
        @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap');

        /**Universal Reset Rules***/
*{
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html{
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body{
min-height: 100vh;


}
/*
main{
  max-width: 1400px;
}*/
h1,h2,h3,h4,h5{
  font-family: "Smooch",sans-serif;
}

p{
  color: #314459;
  font-family: 'Poppins', sans-serif;
  font-size: 1em;
  font-weight: 200;
  line-height: 1.6;
}        
a{
  font-family: 'Poppins', sans-serif;
  text-decoration: none;
}
img{
  display: block;
}
/*
h1 {
  background: url(../assets/img/withElevenLogo.png) no-repeat center center;
  background-size: contain;
  width: 5rem;
  height: 1.2rem;
  position: absolute;
  left: 10%;
  top: 4%;
}

h1 span {
  visibility: hidden;
}

.u-visually-hidden {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px
}

.u-visually-hidden--focusable:active,
.u-visually-hidden--focusable:focus {
  clip: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  position: static;
  width: auto
}
*/
.site-menu {
  height: 100vh;
  pointer-events: none;
  z-index: 500
}

.site-menu,
.site-menu-background {
  position: fixed;
  inset: 0;
  /* shorthand for
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;*/ 
  width: 100%
}

.site-menu-background {
  height: 100%;
  background-color: #abc;
  opacity: 0;
  transition: opacity 1s cubic-bezier(.39, .575, .565, 1) .1s;
  z-index: 0
}

.site-menu-sidebar {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  height: 60px;
  width: 60px;
  z-index: 1;
  appearance: none;
  display: block;
  padding: 0;
  margin: 0;
  border: none;
  position: relative;
  cursor: pointer;
  outline: none;
  border-radius: 0;
  pointer-events: auto;
  transition: width .3s cubic-bezier(.25, .46, .45, .94)
}

@media (min-width:48em) {
  .site-menu-sidebar {
    height: 60px;
    width: 60px;
    position: absolute;
    left: 2rem;
    top: 2rem;
  }
}

.site-menu-sidebar:after {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  height: 100%;
  width: 85vw;
  background-color: #427a9b;
  z-index: 0;
  content: "";
  transform: scaleX(0);
  transform-origin: 0 50%;
  transition: transform .6s cubic-bezier(.535, .005, 0, 1) .2s;
  backface-visibility: hidden
}

@media (max-width:47.99em) {
  .site-menu-sidebar:after {
    left: 0
  }
}

.site-menu-sidebar .line {
  position: absolute;
  right: 18px;
  left: 18px;
  height: 2px;
  width: 24px;
  background-color: #000;
  display: block;
  transition: transform .3s cubic-bezier(.25, .46, .45, .94);
  transform-origin: 0 50%;
  z-index: 1
}

@media (max-width:47.99em) {
  .site-menu-sidebar .line {
    position: absolute;
    left: 30px;
    height: 2px;
    width: 20px;
    background-color: #0A0F2D;
  }
}

.site-menu-sidebar .line.line-1 {
  top: 25px;
  transition: transform .3s cubic-bezier(.25, .46, .45, .94);
}

@media (min-width:48em) {
  .site-menu-sidebar .line.line-1 {
    transform: scaleX(.83);
    /* top: 60px */
  }
}

.site-menu-sidebar .line.line-2 {
  top: 31px;
  transition: transform .3s cubic-bezier(.25, .46, .45, .94);
}

@media (min-width:48em) {
  .site-menu-sidebar .line.line-2 {
    /* top: 66px */
  }
}

.site-menu-sidebar .line.line-3 {
  top: 37px;
  transition: transform .3s cubic-bezier(.25, .46, .45, .94);
}

@media (min-width:48em) {
  .site-menu-sidebar .line.line-3 {
    transform: scaleX(.66);
    /* top: 72px */
  }
}

.site-menu-sidebar:hover {
  background-color: hsla(0, 0%, 100%, 0)
}

.site-menu-sidebar:hover .line {
  background: rgb(225, 59, 66);
  transform: scaleX(1)
}

.site-menu-inner {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  height: 100%;
  width: 85vw;
  z-index: 2
}

@media (max-width:47.99em) {
  .site-menu-inner {
    width: 100%
  }
}

.site-menu-inner:after {
  position: absolute;
  inset: 0; /*shorthand for
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;**/
  height: 100%;
  width: 100%;
  content: "";
  background-color: #0A0F2D;
  transform: scaleX(0);
  transform-origin: 0 50%;
  transition: transform .6s cubic-bezier(.535, .005, 0, 1) .1s;
  z-index: 0
}

.site-menu-inner .site-menu-container {
  margin-right: 60px;
  margin-left: 8vw;
  position: relative;
  padding-top: 60px;
  height: 100%;
  z-index: 1;
  opacity: 0;
  transition: opacity .4s cubic-bezier(.25, .46, .45, .94)
}

@media (max-width:47.99em) {
  .site-menu-inner .site-menu-container {
    margin-right: 40px;
    margin-left: 40px;
    overflow-x: hidden;
    overflow-y: auto;
    margin-right: 0;
    padding-right: 40px
  }
}

.site-menu-header {
  position: relative;
  line-height: 1
}

.site-menu-header .site-menu-subtitle {
  font-family: Roboto, Arial, sans-serif;
  font-weight: 700;
  font-style: normal;
  position: relative;
  font-size: .5714285714rem;
  letter-spacing: 3px;
  color: #f4f4f4;
  text-transform: uppercase;
  line-height: 1;
  opacity: .7
}

.site-menu-header .site-menu-subtitle .text {
  opacity: 0;
  transition: opacity 0s cubic-bezier(.215, .61, .355, 1) .5s
}

.site-menu-header .site-menu-subtitle:after {
  position: absolute;
  top: 50%;
  left: calc(100% + 20px);
  height: 1px;
  width: 60px;
  background-color: #a6a6a6;
  display: block;
  content: "";
  transform: scaleX(0);
  transform-origin: 0 50%;
  transition: transform 0s cubic-bezier(.215, .61, .355, 1) .5s;
}

.site-menu-header .site-menu-close {
  position: absolute;
  top: calc(50% - 48px);
  right: -40px;
  height: 100px;
  width: 100px;
  appearance: none;
  display: block;
  padding: 0;
  z-index: 2;
  margin: 0;
  background: none;
  border: none;
  outline: none
}

@media (max-width:64.0525em) {
  .site-menu-header .site-menu-close {
    right: -25px;
    height: 60px;
    width: 60px
  }
}

.site-menu-header .site-menu-close .line {
  position: absolute;
  top: calc(50% - 3px);
  left: calc(50% - 9px);
  height: 2px;
  width: 18px;
  display: block
}

@media (max-width:47.99em) {
  .site-menu-header .site-menu-close .line {
    position: absolute;
    top: 28px;
    right: 25px;
    left: auto
  }
}

.site-menu-header .site-menu-close .line.line-1 {
  transform: rotate(45deg);
  transition: transform 0s cubic-bezier(.25, .46, .45, .94) .6s;
}

.site-menu-header .site-menu-close .line.line-1:after {
  transition: transform .3s cubic-bezier(.25, .46, .45, .94);
}

.site-menu-header .site-menu-close .line.line-2 {
  transform: rotate(-45deg);
  transition: transform 0s cubic-bezier(.25, .46, .45, .94) .6s;
}

.site-menu-header .site-menu-close .line.line-2:after {
  transition: transform .3s cubic-bezier(.25, .46, .45, .94) .15s;
}

.site-menu-header .site-menu-close .line:before {
  background-color: #E13B42;
  z-index: 0;
}

.site-menu-header .site-menu-close .line:after,
.site-menu-header .site-menu-close .line:before {
  position: absolute;
  inset: 0;
  /*short for
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;**/
  height: 100%;
  width: 100%;
  transform: scaleX(0);
  transform-origin: 0 50%;
  content: ""
}

.site-menu-header .site-menu-close .line:after {
  background-color: #fff;
  z-index: 1
}

.site-menu-header .site-menu-close:hover .line.line-1:after {
  transform: scaleX(1);
  transition: transform .3s cubic-bezier(.25, .46, .45, .94) .15s;
}

.site-menu-header .site-menu-close:hover .line.line-2:after {
  transform: scaleX(1);
  transition: transform .3s cubic-bezier(.25, .46, .45, .94);
}

.site-menu .site-navigation {
  position: absolute;
  right: 0;
  bottom: 220px;
  left: 0;
  top: 7em;
}

@media (min-width:48em) and (max-width:64.0525em) {
  .site-menu .site-navigation {
    bottom: 190px
  }
}

@media (max-width:47.99em) {
  .site-menu .site-navigation {
    position: absolute;
    top: auto;
    right: 0;
    bottom: 170px;
    left: 0;
    width: calc(100% - 40px)
  }
}

@media (min-width:64.0625em) {
  .site-menu .site-navigation-list {
    height: auto;
    width: 410px;
  }
}

.site-menu .site-navigation-item {
  position: relative;
  opacity: 0
}

@media (min-width:64.0625em) {
  .site-menu .site-navigation-item {
    transform: translateY(15px);
    transition: opacity 0s linear .5s, transform 0s linear .5s;
  }
}

@media (max-width:64.0525em) {
  .site-menu .site-navigation-item {
    position: static
  }
}

.site-menu .site-navigation-item .subnav {
  position: absolute;
  top: 30%;
  left: calc(100% - 5px);
  height: auto;
  width: 760px;
  padding-left: 120px;
  font-size: 0;
  pointer-events: none;
  backface-visibility: hidden
}

.site-menu .site-navigation-item .subnav:after {
  clear: both;
  content: "";
  display: table
}

@media (max-width:64.0525em) {
  .site-menu .site-navigation-item .subnav {
    padding-top: 30px;
    padding-bottom: 100px;
    padding-left: 0;
    position: fixed;
    top: 120px;
    left: 8vw;
    width: calc(77vw - 60px);
    max-height: calc(100% - 120px);
    z-index: 2;
    overflow: auto;
    opacity: 0;
    display: none
  }
}

@media (max-width:47.99em) {
  .site-menu .site-navigation-item .subnav {
    position: absolute;
    width: calc(100% + 40px);
    max-height: none;
    padding-top: 0;
    top: 0;
    left: 0;
    padding-right: 40px;
    padding-bottom: 150px
  }
}

.site-menu .site-navigation-item .subnav-header {
  padding-bottom: 60px;
  margin-bottom: 60px;
  border-bottom: 1px solid hsla(0, 0%, 100%, .2);
  position: relative
}

.site-menu .site-navigation-item .subnav-header .svg {
  position: absolute;
  top: -3px;
  left: 0;
  height: 50px;
  width: 50px;
  opacity: .6
}

@media (max-width:47.99em) {
  .site-menu .site-navigation-item .subnav-header .svg {
    top: 0
  }
}

.site-menu .site-navigation-item .subnav-header .svg svg {
  position: absolute;
  top: calc(50% - 5px);
  left: 0;
  fill: #fff
}

.site-menu .site-navigation-item .subnav-header-title {
  display: block;
  padding-left: 50px;
  font-family: Roboto, Arial, sans-serif;
  font-weight: 700;
  font-style: normal;
  color: #fff;
  font-size: 2.1428571429rem;
  letter-spacing: -1px;
  line-height: 3.5714285714rem
}

.site-menu .site-navigation-item .subnav-header .button {
  margin-top: 30px;
  margin-left: 50px
}

.site-menu .site-navigation-item .subnav-inner {
  display: inline-block;
  vertical-align: top;
  max-width: 200px
}

@media (max-width:64.0525em) {
  .site-menu .site-navigation-item .subnav-inner {
    display: block;
    max-width: none;
    padding-left: 50px
  }
}

@media (min-width:64.0625em) {
  .site-menu .site-navigation-item .subnav-inner:not(:nth-child(2)) {
    margin-left: 140px
  }
}

@media (max-width:64.0525em) {
  .site-menu .site-navigation-item .subnav-inner:not(:nth-child(2)) {
    margin-top: 30px
  }
}

.site-menu .site-navigation-item .subnav-inner-title {
  display: block;
  margin-bottom: 20px;
  color: #fff;
  font-size: 1rem;
  line-height: 2.14
}

@media (max-width:47.99em) {
  .site-menu .site-navigation-item .subnav-inner-title {
    font-size: 16px
  }
}

@media (min-width:64.0625em) {
  .site-menu .site-navigation-item .subnav-inner-title {
    opacity: 0;
    transform: translateY(15px)
  }
}

.site-menu .site-navigation-item .subnav-list {
  display: inline-block
}

@media (max-width:64.0525em) {
  .site-menu .site-navigation-item .subnav-list {
    padding-left: 50px
  }
}

.site-menu .site-navigation-item .subnav-link {
  padding-top: 10px;
  padding-bottom: 10px;
  position: relative;
  border-bottom: 1px solid hsla(0, 0%, 100%, 0);
  display: inline-block;
  font-family: Roboto, Arial, sans-serif;
  font-weight: 400;
  font-style: normal;
  color: hsla(0, 0%, 100%, .5);
  font-size: 1rem;
  line-height: 1;
  white-space: nowrap
}

@media (min-width:64.0625em) {
  .site-menu .site-navigation-item .subnav-link {
    opacity: 0;
    transform: translateY(15px);
    transition: transform .6s cubic-bezier(.25, .46, .45, .94), color .4s cubic-bezier(.075, .82, .165, 1);
  }
}

@media (max-width:64.0525em) {
  .site-menu .site-navigation-item .subnav-link {
    padding-top: 15px;
    padding-bottom: 15px
  }
}

@media (max-width:47.99em) {
  .site-menu .site-navigation-item .subnav-link {
    font-size: 1.1428571429rem
  }
}

.site-menu .site-navigation-item .subnav-link:focus {
  text-decoration: none
}

.site-menu .site-navigation-item .subnav-link:hover {
  text-decoration: none;
  color: #fff
}

.site-menu .site-navigation-item .subnav-item:first-child .subnav-link {
  padding-top: 0;
  transition: transform .4s cubic-bezier(.895, .03, .685, .22) .15s, opacity .4s cubic-bezier(.895, .03, .685, .22) .15s;
}

.site-menu .site-navigation-item .subnav-item:nth-child(2) .subnav-link {
  transition: transform .4s cubic-bezier(.895, .03, .685, .22) .1s, opacity .4s cubic-bezier(.895, .03, .685, .22) .1s;
}

.site-menu .site-navigation-item .subnav-item:nth-child(3) .subnav-link {
  transition: transform .4s cubic-bezier(.895, .03, .685, .22) .05s, opacity .4s cubic-bezier(.895, .03, .685, .22) .05s;
}

.site-menu .site-navigation-item .subnav-item:nth-child(4) .subnav-link {
  transition: transform .4s cubic-bezier(.895, .03, .685, .22) 0s, opacity .4s cubic-bezier(.895, .03, .685, .22) 0s;
}

@media (min-width:64.0625em) {
  .site-menu .site-navigation-item .subnav .subnav-inner-title {
    transition: transform .4s cubic-bezier(.895, .03, .685, .22) .4s, opacity .4s cubic-bezier(.895, .03, .685, .22) .4s;
  }
}

.site-menu .site-navigation-item .subnav .subnav-inner-title+ul .subnav-item:first-child .subnav-link {
  transition: transform .4s cubic-bezier(.895, .03, .685, .22) .25s, opacity .4s cubic-bezier(.895, .03, .685, .22) .25s;
}

.site-menu .site-navigation-item .subnav .subnav-inner-title+ul .subnav-item:nth-child(2) .subnav-link {
  transition: transform .4s cubic-bezier(.895, .03, .685, .22) .2s, opacity .4s cubic-bezier(.895, .03, .685, .22) .2s;
}

.site-menu .site-navigation-item .subnav .subnav-inner-title+ul .subnav-item:nth-child(3) .subnav-link {
  transition: transform .4s cubic-bezier(.895, .03, .685, .22) .15s, opacity .4s cubic-bezier(.895, .03, .685, .22) .15s;
}

.site-menu .site-navigation-item .subnav .subnav-inner-title+ul .subnav-item:nth-child(4) .subnav-link {
  transition: transform .4s cubic-bezier(.895, .03, .685, .22) .1s, opacity .4s cubic-bezier(.895, .03, .685, .22) .1s;
}

.site-menu .site-navigation-item .subnav .subnav-inner-title+ul .subnav-item:nth-child(5) .subnav-link {
  transition: transform .4s cubic-bezier(.895, .03, .685, .22) .05s, opacity .4s cubic-bezier(.895, .03, .685, .22) .05s;
}

.site-menu .site-navigation-item .subnav .subnav-inner-title+ul .subnav-item:nth-child(6) .subnav-link {
  transition: transform .4s cubic-bezier(.895, .03, .685, .22) 0s, opacity .4s cubic-bezier(.895, .03, .685, .22) 0s;
}

@media (min-width:64.0625em) {
  .site-menu .site-navigation-item:hover .subnav {
    pointer-events: auto;
    padding-top: 30px;
    transform: translateY(-30px)
  }

  .site-menu .site-navigation-item:hover .subnav-item:first-child .subnav-link {
    opacity: 1;
    transform: translateY(0);
    transition: transform .4s cubic-bezier(.25, .46, .45, .94) .1s, opacity .4s cubic-bezier(.25, .46, .45, .94) .1s, color .4s cubic-bezier(.075, .82, .165, 1);
  }

  .site-menu .site-navigation-item:hover .subnav-item:nth-child(2) .subnav-link {
    opacity: 1;
    transform: translateY(0);
    transition: transform .4s cubic-bezier(.25, .46, .45, .94) .15s, opacity .4s cubic-bezier(.25, .46, .45, .94) .15s, color .4s cubic-bezier(.075, .82, .165, 1);
  }

  .site-menu .site-navigation-item:hover .subnav-item:nth-child(3) .subnav-link {
    opacity: 1;
    transform: translateY(0);
    transition: transform .4s cubic-bezier(.25, .46, .45, .94) .2s, opacity .4s cubic-bezier(.25, .46, .45, .94) .2s, color .4s cubic-bezier(.075, .82, .165, 1);
  }

  .site-menu .site-navigation-item:hover .subnav-item:nth-child(4) .subnav-link {
    opacity: 1;
    transform: translateY(0);
    transition: transform .4s cubic-bezier(.25, .46, .45, .94) .25s, opacity .4s cubic-bezier(.25, .46, .45, .94) .25s, color .4s cubic-bezier(.075, .82, .165, 1);
  }

  .site-menu .site-navigation-item:hover .subnav-item:nth-child(5) .subnav-link {
    opacity: 1;
    transform: translateY(0);
    transition: transform .4s cubic-bezier(.25, .46, .45, .94) .3s, opacity .4s cubic-bezier(.25, .46, .45, .94) .3s, color .4s cubic-bezier(.075, .82, .165, 1);
  }

  .site-menu .site-navigation-item:hover .subnav-item:nth-child(6) .subnav-link {
    opacity: 1;
    transform: translateY(0);
    transition: transform .4s cubic-bezier(.25, .46, .45, .94) .35s, opacity .4s cubic-bezier(.25, .46, .45, .94) .35s, color .4s cubic-bezier(.075, .82, .165, 1);
  }

  .site-menu .site-navigation-item:hover .subnav-item:nth-child(7) .subnav-link {
    opacity: 1;
    transform: translateY(0);
    transition: transform .4s cubic-bezier(.25, .46, .45, .94) .4s, opacity .4s cubic-bezier(.25, .46, .45, .94) .4s, color .4s cubic-bezier(.075, .82, .165, 1);
  }

  .site-menu .site-navigation-item:hover .subnav-item:nth-child(8) .subnav-link {
    opacity: 1;
    transform: translateY(0);
    transition: transform .4s cubic-bezier(.25, .46, .45, .94) .45s, opacity .4s cubic-bezier(.25, .46, .45, .94) .45s, color .4s cubic-bezier(.075, .82, .165, 1);
  }

  .site-menu .site-navigation-item:hover .subnav-item:nth-child(9) .subnav-link {
    opacity: 1;
    transform: translateY(0);
    transition: transform .4s cubic-bezier(.25, .46, .45, .94) .5s, opacity .4s cubic-bezier(.25, .46, .45, .94) .5s, color .4s cubic-bezier(.075, .82, .165, 1);
  }

  .site-menu .site-navigation-item:hover .subnav-item:nth-child(10) .subnav-link {
    opacity: 1;
    transform: translateY(0);
    transition: transform .4s cubic-bezier(.25, .46, .45, .94) .55s, opacity .4s cubic-bezier(.25, .46, .45, .94) .55s, color .4s cubic-bezier(.075, .82, .165, 1);
  }

  .site-menu .site-navigation-item:hover .subnav .subnav-inner-title {
    opacity: 1;
    transform: translateY(0);
    transition: transform .4s cubic-bezier(.25, .46, .45, .94) .1s, opacity .4s cubic-bezier(.25, .46, .45, .94) .1s;
  }

  .site-menu .site-navigation-item:hover .subnav .subnav-inner-title+ul .subnav-item:first-child .subnav-link {
    opacity: 1;
    transform: translateY(0);
    transition: transform .4s cubic-bezier(.25, .46, .45, .94) .2s, opacity .4s cubic-bezier(.25, .46, .45, .94) .2s, color .4s cubic-bezier(.075, .82, .165, 1);
  }

  .site-menu .site-navigation-item:hover .subnav .subnav-inner-title+ul .subnav-item:nth-child(2) .subnav-link {
    opacity: 1;
    transform: translateY(0);
    transition: transform .4s cubic-bezier(.25, .46, .45, .94) .25s, opacity .4s cubic-bezier(.25, .46, .45, .94) .25s, color .4s cubic-bezier(.075, .82, .165, 1);
  }

  .site-menu .site-navigation-item:hover .subnav .subnav-inner-title+ul .subnav-item:nth-child(3) .subnav-link {
    opacity: 1;
    transform: translateY(0);
    transition: transform .4s cubic-bezier(.25, .46, .45, .94) .3s, opacity .4s cubic-bezier(.25, .46, .45, .94) .3s, color .4s cubic-bezier(.075, .82, .165, 1);
  }

  .site-menu .site-navigation-item:hover .subnav .subnav-inner-title+ul .subnav-item:nth-child(4) .subnav-link {
    opacity: 1;
    transform: translateY(0);
    transition: transform .4s cubic-bezier(.25, .46, .45, .94) .35s, opacity .4s cubic-bezier(.25, .46, .45, .94) .35s, color .4s cubic-bezier(.075, .82, .165, 1);
  }

  .site-menu .site-navigation-item:hover .subnav .subnav-inner-title+ul .subnav-item:nth-child(5) .subnav-link {
    opacity: 1;
    transform: translateY(0);
    transition: transform .4s cubic-bezier(.25, .46, .45, .94) .4s, opacity .4s cubic-bezier(.25, .46, .45, .94) .4s, color .4s cubic-bezier(.075, .82, .165, 1);
  }

  .site-menu .site-navigation-item:hover .subnav .subnav-inner-title+ul .subnav-item:nth-child(6) .subnav-link {
    opacity: 1;
    transform: translateY(0);
    transition: transform .4s cubic-bezier(.25, .46, .45, .94) .45s, opacity .4s cubic-bezier(.25, .46, .45, .94) .45s, color .4s cubic-bezier(.075, .82, .165, 1);
  }

  .site-menu .site-navigation-item:hover .subnav .subnav-inner-title+ul .subnav-item:nth-child(7) .subnav-link {
    opacity: 1;
    transform: translateY(0);
    transition: transform .4s cubic-bezier(.25, .46, .45, .94) .5s, opacity .4s cubic-bezier(.25, .46, .45, .94) .5s, color .4s cubic-bezier(.075, .82, .165, 1);
  }

  .site-menu .site-navigation-item:hover .subnav .subnav-inner-title+ul .subnav-item:nth-child(8) .subnav-link {
    opacity: 1;
    transform: translateY(0);
    transition: transform .4s cubic-bezier(.25, .46, .45, .94) .55s, opacity .4s cubic-bezier(.25, .46, .45, .94) .55s, color .4s cubic-bezier(.075, .82, .165, 1);
  }

  .site-menu .site-navigation-item:hover .subnav .subnav-inner-title+ul .subnav-item:nth-child(9) .subnav-link {
    opacity: 1;
    transform: translateY(0);
    transition: transform .4s cubic-bezier(.25, .46, .45, .94) .6s, opacity .4s cubic-bezier(.25, .46, .45, .94) .6s, color .4s cubic-bezier(.075, .82, .165, 1);
  }

  .site-menu .site-navigation-item:hover .subnav .subnav-inner-title+ul .subnav-item:nth-child(10) .subnav-link {
    opacity: 1;
    transform: translateY(0);
    transition: transform .4s cubic-bezier(.25, .46, .45, .94) .65s, opacity .4s cubic-bezier(.25, .46, .45, .94) .65s, color .4s cubic-bezier(.075, .82, .165, 1);
  }

  .site-menu .site-navigation-item:hover .site-navigation-link {
    color: #E13B42
  }
}

.site-menu .site-navigation-link {
  display: block;
  transition: color .4s cubic-bezier(.075, .82, .165, 1);
  font-size: 3rem;
  line-height: 1.3;
  transition: color .3s cubic-bezier(.25, .46, .45, .94)
}

.site-menu .site-navigation-link,
.site-menu .site-navigation-link.gkb-link {
  font-family: Roboto, Arial, sans-serif;
  font-weight: 700;
  font-style: normal;
  color: #fff
}

.site-menu .site-navigation-link.gkb-link {
  display: inline-block;
  border-bottom: 2px solid #fff;
  padding-bottom: 5px;
  margin-top: 45px;
  opacity: .5;
  font-size: 1rem;
  line-height: 16px;
  letter-spacing: normal
}

.site-menu .site-navigation-link.gkb-link:focus {
  color: #fff
}

@media (max-width:64.0525em) {
  .site-menu .site-navigation-link {
    font-size: 2.5rem
  }
}

@media (max-width:64.0525em) {
  .site-menu .site-navigation-link.with-subnav * {
    pointer-events: none
  }
}

@media (max-width:47.99em) {
  .site-menu .site-navigation-link {
    font-size: 2.1428571429rem;
    line-height: 50px
  }
}

.site-menu .site-navigation-link .link-text {
  position: relative;
  display: inline-block;
  transition: padding-right .3s cubic-bezier(.25, .46, .45, .94)
}

.site-menu .site-navigation-link .link-text .svg {
  position: absolute;
  top: 50%;
  left: calc(100% + 15px);
  transform: translateY(-50%);
  fill: hsla(0, 0%, 100%, .5);
  font-size: 0
}

@media (max-width:64.0525em) {
  .site-menu .site-navigation-link .link-text .svg {
    transform: translateY(-40%)
  }
}

.site-menu .site-navigation-link:hover {
  text-decoration: none;
  transition: color .3s cubic-bezier(.165, .84, .44, 1)
}

@media (min-width:71.875em) {
  .site-menu .site-navigation-link:hover {
    color: #E13B42
  }
}

.site-menu .site-navigation-link:hover .link-text {
  padding-right: 10px
}

.site-menu-footer {
  position: absolute;
  right: 0;
  bottom: 75px;
  left: 0
}

@media (max-width:47.99em) {
  .site-menu-footer {
    position: absolute;
    top: auto;
    right: 0;
    bottom: 0;
    left: 0;
    margin-top: 30px;
    padding-bottom: 30px
  }
}

.site-menu-footer .locations,
.site-menu-footer .social-item {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0s cubic-bezier(.25, .46, .45, .94) .5s, transform 0s cubic-bezier(.25, .46, .45, .94) .5s;
}

.is-menu-open .site-menu {
  pointer-events: auto
}

.is-menu-open .site-menu .site-menu-background {
  opacity: 1;
  transition: opacity 1s cubic-bezier(.39, .575, .565, 1) .1s
}

.is-menu-open .site-menu .site-menu-sidebar:after {
  transform: scaleX(1);
  transition: transform .7s cubic-bezier(.535, .005, 0, 1) .1s;
}

.is-menu-open .site-menu .site-menu-inner:after {
  transform: scaleX(1);
  transition: transform .7s cubic-bezier(.535, .005, 0, 1) .2s;
}

.is-menu-open .site-menu .site-menu-inner .site-menu-container {
  opacity: 1;
  transition: opacity 0s cubic-bezier(.25, .46, .45, .94)
}

.is-menu-open .site-menu .site-menu-subtitle .text {
  opacity: 1;
  transition: opacity .3s cubic-bezier(.25, .46, .45, .94) .6s
}

.is-menu-open .site-menu .site-menu-subtitle:after {
  transform: scaleX(1);
  transition: transform .3s cubic-bezier(.215, .61, .355, 1) .6s;
}

.is-menu-open .site-menu .site-menu-close .line-1:before {
  transform: scaleX(1);
  transition: transform .3s cubic-bezier(.25, .46, .45, .94) .7s;
}

.is-menu-open .site-menu .site-menu-close .line-2:before {
  transform: scaleX(1);
  transition: transform .3s cubic-bezier(.25, .46, .45, .94) .6s;
}

.is-menu-open .site-menu .site-navigation-item {
  opacity: 1
}

@media (min-width:64.0625em) {
  .is-menu-open .site-menu .site-navigation-item {
    transform: translateY(0)
  }
}

.is-menu-open .site-menu .site-navigation-item:first-child {
  transition: opacity .3s cubic-bezier(.25, .46, .45, .94) .45s, transform .3s cubic-bezier(.25, .46, .45, .94) .45s;
}

.is-menu-open .site-menu .site-navigation-item:nth-child(2) {
  transition: opacity .3s cubic-bezier(.25, .46, .45, .94) .5s, transform .3s cubic-bezier(.25, .46, .45, .94) .5s;
}

.is-menu-open .site-menu .site-navigation-item:nth-child(3) {
  transition: opacity .3s cubic-bezier(.25, .46, .45, .94) .55s, transform .3s cubic-bezier(.25, .46, .45, .94) .55s;
}

.is-menu-open .site-menu .site-navigation-item:nth-child(4) {
  transition: opacity .3s cubic-bezier(.25, .46, .45, .94) .6s, transform .3s cubic-bezier(.25, .46, .45, .94) .6s;
}

.is-menu-open .site-menu .site-navigation-item:nth-child(5) {
  transition: opacity .3s cubic-bezier(.25, .46, .45, .94) .65s, transform .3s cubic-bezier(.25, .46, .45, .94) .65s;
}

.is-menu-open .site-menu .site-navigation-item:nth-child(6) {
  transition: opacity .3s cubic-bezier(.25, .46, .45, .94) .7s, transform .3s cubic-bezier(.25, .46, .45, .94) .7s;
}

.is-menu-open .site-menu .site-navigation-item:nth-child(7) {
  transition: opacity .3s cubic-bezier(.25, .46, .45, .94) .75s, transform .3s cubic-bezier(.25, .46, .45, .94) .75s;
}

.is-menu-open .site-menu .site-navigation-item:nth-child(8) {
  transition: opacity .3s cubic-bezier(.25, .46, .45, .94) .8s, transform .3s cubic-bezier(.25, .46, .45, .94) .8s;
}

.is-menu-open .site-menu .social-item {
  opacity: 1;
  transform: translateY(0)
}

.is-menu-open .site-menu .social-item:first-child {
  transition: opacity .3s cubic-bezier(.25, .46, .45, .94) .75s, transform .3s cubic-bezier(.25, .46, .45, .94) .75s;
}

.is-menu-open .site-menu .social-item:nth-child(2) {
  transition: opacity .3s cubic-bezier(.25, .46, .45, .94) .8s, transform .3s cubic-bezier(.25, .46, .45, .94) .8s;
}

.is-menu-open .site-menu .social-item:nth-child(3) {
  transition: opacity .3s cubic-bezier(.25, .46, .45, .94) .85s, transform .3s cubic-bezier(.25, .46, .45, .94) .85s;
}

.is-menu-open .site-menu .social-item:nth-child(4) {
  transition: opacity .3s cubic-bezier(.25, .46, .45, .94) .9s, transform .3s cubic-bezier(.25, .46, .45, .94) .9s;
}

.is-menu-open .site-menu .locations {
  opacity: 1;
  transform: translateY(0);
  transition: opacity .3s cubic-bezier(.215, .61, .355, 1) .9s, transform .3s cubic-bezier(.215, .61, .355, 1) .9s;
}

.site-menu.subnav-open .site-menu-footer {
  opacity: 0;
  pointer-events: none
}

.site-menu.subnav-open .site-navigation-item.subnav-open {
  z-index: 10
}

.site-menu.subnav-open .site-navigation-item .subnav.is-open {
  display: block;
  opacity: 1;
  pointer-events: auto
}

.site-menu.subnav-open .site-navigation-item .subnav.is-open .subnav-inner .subnav-title {
  opacity: 1
}

.site-menu.subnav-open .site-navigation-link {
  opacity: 0;
  pointer-events: none
}

/*************End Responsive Style Menu***/



#frontend{
  max-width: 1400px;
  height: auto;
  position: relative;
  overflow: hidden;

}
#frontend .img{
width: 100%;
height: 100%;
object-fit: cover;

} 
.banner{
  width: 100%;
  height: 100%;
  background-image: linear-gradient(to right, purple, blue);
  opacity: .5;
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

}
.banner h1{
  font-size: 5.3em;
  color: #fff;
  z-index: 3300;
}
.banner p{
  font-size: 2em;
}

 
/*Storming the beaches of normandy**/
.centerpiece{
  padding: 5.4%;
  display: flex;
  justify-content: center;
  align-items: center
}
.inner-piece{
  max-width: 768px; /**max-width removes the horizontal scrolling on the x-axis***/
  text-align: center;  /**center button by using container element***/

}
.inner-piece h2{
  margin-bottom: .6em;
  font-size: 3.5em;
  color: rgb(45 55 72);
  line-height: 1.2;
  font-weight: 300;
}
.inner-piece span{
  color: rgb(85 119 155);
}
.inner-piece h4{
  text-align: center;
  color: #aaa;
  letter-spacing: .2em;
  text-transform: uppercase;
  font-weight: 200;
}
.inner-piece a{
  border: none;
  padding: .9em 3.8em;
  text-decoration: none;
  border-radius: 2.4em;
  background-color: rgb(72 52 212);
  color: #fff;
  margin-top: 1em;
  display: inline-block;
  margin-bottom: 2em;
}

/******Image Gallery******/

#image-gallery{
  position: relative;
  display: flex;
  justify-content: space-evenly;
  min-height: 400px;
  margin-bottom: 2.5em;
  z-index: -33;

}
#image-gallery::before,
#image-gallery::after{
  content: '';
  background-color: #fff;
  height: 5em;
  /*width: 100%;*/
  inset: 0;
  position: absolute;
  border-radius: 50%;
}
#image-gallery::before{
  /*top: -35px;*/
  inset: -35px -35px 0;
}
#image-gallery::after{
  /*bottom: -35px;*/
  inset: 0 -35px -35px;
  top: unset;
}
.image__grid{
  display: flex;
  gap: .8em;
}
.image__grid img{
  height: 100%;
  width: 100%;
  object-fit: cover;
}

/****Triple Column Professional layout****/

.checkmate{
  display: flex;
  min-height: 350px;
  gap: .15em;  
  list-style: none;
  padding: 3%;
  margin-bottom: 1em;
}
.checkmate i{
  color: rgb(241 90 41);
  font-size: 2.8em;
  margin-bottom: .5em;
}
.checkmate h4{
margin-bottom: .5em;
color: rgb(245, 222, 179);
font-size: 1.2em;
}
.tesla{
  max-width: 750px;
  text-align: center;
  margin-inline: auto;
}
.tesla h3{
  font-size: 3em;
  color: rgb(33 24 105);
  margin-bottom: .6em;
  font-weight: 200;
}
.tesla span{
  color: rgb(85 119 155);
}
.col__one{
  flex: 1;
  height: 335px;
  padding: 4%;
  background-color: rgb(12 12 12);
  border-top-right-radius: 1.8em;
  border-bottom-left-radius: 1.6em;
  color: rgb(212 169 53);
}
.col__two{
  flex: 1;
  height: 335px;
  padding: 4%;
  background-color: rgb(12 12 12);
  border-top-right-radius: 1.6em;
  border-bottom-left-radius: 1.6em;
  color: #fff;
}
.col__three{
  flex: 1;
  height: 335px;
  padding: 4%;
  background-color: rgb(12 12 12);  /* rgb(58 100 117)**/
  border-top-right-radius: 1.6em;
  border-bottom-left-radius: 1.6em;
  color: #fff;
}

.marquee{

  max-width: 1400px;
  height: 100px;
  margin-top: 4em;
  width: 90%;
}
.scroll-list{
  /**display: flex;**/
  position: relative;
  font-weight: 900;
  
}
.scroll{
  height: 6em;
  width: 12em;
  color: #666;
  font-weight: 700;
  font-size: 1.5em;
  position: absolute;
  left: 100%;
  animation-name: animateleft;
  animation-duration: 15s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
  
}
@keyframes animateleft{

/**  from{} no need to declare the starting position***/

  to{
  left: -200px;
  }

}
.scroll1{
  animation-delay: calc(15s / 9 * (9 - 1) * -1);
}
.scroll2{
  animation-delay: calc(15s / 9 * (9 - 2) * -1);
}

.scroll3{
  animation-delay: calc(15s / 9 * (9 - 3) * -1);
}

.scroll4{
  animation-delay: calc(15s / 9 * (9 - 4) * -1);
}

.scroll5{
  animation-delay: calc(15s / 9 * (9 - 5) * -1);
}

.scroll6{
  animation-delay: calc(15s / 9 * (9 - 6 ) * -1);
}

.scroll7{
  animation-delay: calc( 15s / 9 * (9 - 7) * -1);
}

.scroll8{
  animation-delay: calc(15s / 9 * (9 - 8) * -1);
}


/****************Tenured Recuiter Section************/

.punchcard{
  display: flex;
  gap: 2em;
  margin-top: 6em;
}
.explore {
  flex-basis: 50%;
  text-align: center;
  align-content: center;
}
.explore h3{
  color: rgb(45, 55, 72);
  font-weight: 200;
}
.boxer{
  flex-basis: 50%;
  display: flex;
  justify-content: center;
  align-items: center;


}
.explore a{
  display: inline-block;
  padding: .9em 3.8em;
  text-decoration: none;
  margin-top: 1.4em;
  transition: all 3s ease;
  border: 2px solid rgb(72 52 212);
  color: #111;
  
}
.explore button{
  
  outline: 0;
  border: none;
  cursor: pointer;
  padding: 1.28em 4.75em;
  margin-left: .5em;
  border-radius: 2em;
  background-image: linear-gradient(to right, red, blue);
  transition: all 1s ease;
  font-size: 1em;
  color: #fff;
}
.explore button:hover{
  background-color: yellowgreen;
  border: 2px solid rgb(72, 52, 212);
  color: #111;
  font-weight: 500;
}
.explore h3{
  margin-bottom: .8em;
  font-size: 2.2em;
}
.explore h4{
  text-transform: uppercase;
  color: #aaa;
  letter-spacing: .2em;
  font-weight: 200;
}

/***************COUNTER SECTION*******************/
.statistics{
  display: flex;
  justify-content: space-evenly;
  background-color: rgb(1,21,39);
  margin:  6em 0;
}
.stats-wrapper{
  margin: 1em;
  min-width: 12em;
  height: 8em;
  text-align: center;
  padding-top: 2em;
}
.stats-wrapper{
  font-size: 1.1em;
}
.stats-wrapper h4{
  color: #fff;
}
.counter{
  margin-top: .5em;
  font-size: 1.3em;
  color: #fff;
}
.fa-briefcase{
  color: rgb(85 119 155);
  margin-bottom: .3em;
}

/***Index Call to action****/

.partition{
  display: flex;
  gap: 2em;
  align-items: center;
  margin-bottom: 3em;  
}
.setup{
  flex-basis: 50%;
}
.setup img{
  display: block;
  max-width: 100%;
  height: auto;
}
.essay{
  flex-basis: 50%;
  padding-top: 2em;
  height: 100%;
}
.essay p{
  margin: 1.5em 0;
}
.essay a{
  padding: .9em 3.8em;
  background-color: #4834d4;
  color: #fff;
  border-radius: 30px;
  text-decoration: none;
  display: inline-block;
}
.essay h3{
font-size: 1.8em;
margin-bottom: .5em;
color: rgb(45, 55, 72);
font-weight: 200;
}
.essay span{
  background-color: yellowgreen;
}
.essay h4{
  font-size: 1.2em;
  font-weight: 300;
  color: rgb(47 36 108);
}

@media screen and (max-width:768px){
  .partition{
  flex-direction: column;
  }
  .setup{
  flex-basis: 100%;
  background-color: #111;
}
}
/****************Landing Responsive styles****************/
    
@media screen and (max-width:768px) {

.punchcard{
  flex-direction: column;
}
  #kontent h1{
  font-size: 2.3em;
  }
  p{
  font-size: .8em;
}
.checkmate{
  flex-direction: column;
  margin-bottom: 1.5em;
}
.col__three{
  flex: 2;
}
.col__one{
  margin-bottom: .6em;
}
.col__two{
  margin-bottom: .6em;
}
  .statistics{
  flex-direction: column;
    
  }

.stats-wrapper{
  font-size: 1.1em;
  border-bottom: 1px solid #fff;
}

#kontent p{
  font-size: 1.4em;
  margin-bottom: 1.3em;
}

}
/***End of the landing section***/

/**************************Employer Section***********/

.employer{
  margin-bottom: 6.8em;
}
.clients__header{
  position: relative;
  overflow: hidden;
  perspective: 100em;
  margin-bottom: 3.8em;
  max-width: 1400px;
}
.client__content{
  position: absolute;
  top:34%;
  left: 26%;
}
.client__content h1{
  font-size: 3.8em;
  color: rgb(55 26 43);
  letter-spacing: .2em;
  text-shadow: 0 .3em .5em rgb(0, 0, 0, 0.5);
  opacity: 0;
  animation: clientAnimate 1s 2.5s forwards;
  text-transform: uppercase;
}

.client__content p{
font-size: 2em;
margin-bottom: 2em;
animation: clientAnimate 1s 3.5s forwards;
color: orangered;
}
.content__block{
  height: 21em;
  background-color: #fafafa;
  text-align: center;
  padding: 3%;
  max-width: 1400px;
}
.content__block h2{
  color: rgb(27 30 47);
  margin-bottom: .6em;
  font-size: 3.8em;
  font-weight: 200;
}
.content__block span{
  background-color: yellowgreen;
}
.content__block a{
  display: inline-block;
  padding: .9em 3.8em;
  color: #fff;
  text-decoration: none;
  margin-top: 1.2em;
  transition: all 3s ease;
  background-image: linear-gradient(to right, red, blue);
  border-radius: 28px;
}

.client__wrapper img{
  width: 100%;
  height: 80vh;
  object-fit: cover;
  opacity: .8;
  animation: robo 20s; /**Name of animation: robo**/
}

@keyframes robo{
  0%{
  transform: scale(1.4);
  }
  100%{
  transform: scale(1);
  }
}

@keyframes clientAnimate{
  0%{
  transform: translateY
  (50em) rotateY(-20deg);
  }
  100%{
  transform: translate(0) rotateY(0);
  opacity: 1;
  }

}

@media screen and (max-width:768px) {

  .client__content h1{
  font-size: 2.4em;
}
  .content__block h2{
  font-size: 2.4em;
}
.client__content p{
font-size: 1.4em;
}

}

.playbook{
  max-width: 1400px;
  margin: 0 auto;
}
.playbook h3{
  text-transform: uppercase;
  color: rgb(27 30 47);
  position: relative;
  letter-spacing: .2em;
  font-size: 1.25em;
  
}
.playbook h3::after{
  content: '';
  background-color: brown;
  position: absolute;
  width: 77%;
  height: 2px;
  margin-left: .5em;
  vertical-align: middle;  /***3 bottom props vertical align***/
  top: 50%;
  transform: translateY(-50%);
}

/******Call-to-Action*****/

.expectations{
  display: flex;
  min-height: 23em;
  max-width: 1400px;
  margin-top: 2em;
}
.syndicate{
  background-color: rgb(12 12 12);
  color: #fff;
  text-align: center;
  margin-bottom: 3em;
}
.syndicate h3{
  padding-top: 1em;
  font-size: 2em;
  color: #fff;
}
.syndicate p{
  padding: 2em;

}
.syndicate a{
  padding: .4em 3.2em;
  background-color: rgb(42 45 51);
  text-decoration: none;
  border: 2px solid rgb(77 202 142);
  color: rgb(77 202 142);
  text-transform: uppercase;
  border-radius: .2em;
}
.syndicate .btn-2nd{
  background-color: rgb(170 180 196);
  color: rgb(42 45 51);
  border: none;
  transform: scale(1);
  transition: all 3s ease-in;
}
.syndicate .btn-2nd:hover{
 background-color: rgb(42 45 51);
 color: rgb(170 180 196);
 border: 2px solid rgb(77 202 142);
 }

/*****COLUMN WITH ICONS****/

.values{
  padding: 4% 3%;
  background-color: #fafafa;
  max-width: 1400px;
}
.future__max{
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5em;
}

.future__item{
  display: flex; /***making icons align horizontally***/
}
.future__item img{
  margin-right: .5em;
}
.future__item h4{
  color: rgb(59 83 107);
}

/******Insights Section below****/

.service__wrapper{
  max-width: 550px;
  text-align: center;
  margin-inline: auto;
  margin-top: 4em;
  
}
.service__wrapper p{
  margin: 1em 0 2.5em;
}
.service__wrapper h3{
  font-size: 2.8em;
  position: relative;
}
.service__wrapper h3::before{
  content: '';
  position: absolute;
  height: 2px;
  width: 64px;
  background-color: red;
  left: 0;
  bottom: 29px;
}
.service__wrapper h3::after{
  content: '';
  position: absolute;
  height: 2px;
  width: 64px;
  background-color: red;
  right: 0;
  bottom: 29px;
}
.keynote{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(330px, 1fr));
  gap: 2em;
  text-align: center;
  max-width: 1400px;
}

.cage{
  box-shadow: 10px 6px 40px rgb(0, 0, 0, 0.2) ;
  padding: 2%;
  overflow: hidden;
}
.inner__cage h4{
  margin: 1em 0;
}
.future__item img{
  min-width: 100%;
  height: auto;
  object-fit: fill; 
}

/***********CALL 2 ACTION BY 2************/

.impressive{
  display: flex;
  flex-direction: column;
  text-align: center;
  min-height: 300px;
  justify-content: center;
  align-items: center;
  margin-top: 2.5em;
}

.impressive h2{
  color: #223;
  font-size: 2.8em;
}
.impressive span{
  color: rgb(183 50 53);
}
.impressive h4{
  letter-spacing: 5px;
  font-size: 1.2em;
}
.impressive a{
  padding: .9em 3.2em;
  border: 2px solid rgb(34 54 69);
  display: inline-block;
  margin-top: 1.4em;
  color: rgb(34 54 69);
  text-decoration: none;
  transition: all .3s ease-in;
}
.impressive a:hover{
  background-color: rgb(111 55 0);
  color: #fff;
  border: 2px solid #fff;
  padding: .9em 4.2em;
}

/***********************CANDIDATE SECTION*************************************/

    .platform{
        background-image: url(images/shakes.png);
        background-repeat: no-repeat;
        background-size: cover;
        max-width: 1400px;
        min-height: 100vh;
        margin-bottom: 3em;
        padding: 4%;
        text-align: center;
    }
    .platform h1 {
      margin-top: 3.8em;
      color: rgb(55 26 43);
      font-size: 3.8em;
      text-transform: uppercase;
    }
    .platform p{
      margin-top: 1.3em;
      font-size: 3em;
      color: orangered;
    }
   
   .livewire{
    max-width: 800px;
    text-align: center;
    flex-wrap: wrap;
    margin: 2em auto;
   }
   .livewire h1{
    padding: .6em 0;
    font-size: 2.8em;
    font-weight: 300;
   }
  
    .livewire span{
      color: rgb(59 83 107);  /**why is it not working?**/
    }

   .livewire a{

    background-color: rgb(43 66 86);
    padding: .9em 3.8em;
    color: #fff;
    text-decoration: none;
    margin-top: 1em;
    border-radius: 30px;
    display: inline-block;
   } 

    .quarters{
        padding: 5%;
    }

    .fanbase{
        display: flex;
        justify-content: center;
        align-items: center;
        margin: 0 auto;
    }
    .photography{
        display: flex;
        flex-wrap: wrap;
        width: 100%;
        align-items: center;
    }
    .photography img{
        max-width: 300px;
    }
    .een{
      border-radius: 20px;
      margin-right: .4em;
    }
    .twee{
      object-fit: cover;
      border-top-right-radius: 35px;
    }
    .drie{
      border-top-left-radius: 35px;
      
    }
    .vier{
      border-radius: 35px 0 35px 0;
    }
    .left-col{
        flex-basis: 40%;
        margin-right: 4em;
    }
    .left-col h2{
        font-size: 2em;
        position: relative;
    }
    .left-col h2::after{
        content: '';
        position: absolute;
        background-color: rgb(171 153 21);
        width: 2.7em;
        height: 3px;
        left: 0;
        bottom: -7px;
        
    }
    .left-col p{
        padding: 2.3em 0;
    }
    .left-col .real{
        display: inline-block;
        padding: .9em 3.8em;
        background-color: rgb(72 52 212);
        color: #fff;
        border-radius: 30px;
    }

    .left-col a{
        color: rgb(31 173 75);
        text-decoration: underline;
    }
    .right-col{
        flex-basis: 60%;
    }
/******************Scroll******************/

.marquee{

  max-width: 1400px;
  height: 100px;
  margin-top: 4em;
  width: 90%;
}
.scroll-list{
  /**display: flex;**/
  position: relative;
  font-weight: 900;
  list-style: none;
  
}
.scroll{
  height: 6em;
  width: 24em;
  color: #666;
  font-weight: 700;
  font-size: 1.5em;
  position: absolute;
  left: 100%;
  animation-name: animateleft;
  animation-duration: 15s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
  
}
@keyframes animateleft{

/**  from{} no need to declare the starting position***/

  to{
  left: -200px;
  }

}
.scroll1{
  animation-delay: calc(15s / 9 * (9 - 1) * -1);
}
.scroll2{
  animation-delay: calc(15s / 9 * (9 - 2) * -1);
}

.scroll3{
  animation-delay: calc(15s / 9 * (9 - 3) * -1);
}

.scroll4{
  animation-delay: calc(15s / 9 * (9 - 4) * -1);
}

.scroll5{
  animation-delay: calc(15s / 9 * (9 - 5) * -1);
}

.scroll6{
 animation-delay: calc(15s / 9 * (9 - 6 ) * -1);
}

.scroll7{
  animation-delay: calc( 15s / 9 * (9 - 7) * -1);
}

.scroll8{
  animation-delay: calc(15s / 9 * (9 - 8) * -1);
}

  /******SQAURES********/
.themes{
  max-width: 1400px;
  padding: 4%;
  margin: 0 auto;
}
.squares{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .8em;
}
.foursome{
  border: 3px solid  rgb(33 117 217);
  /* background: linear-gradient(90deg, rgba(131, 58, 180, 1) 0%, rgba(106, 158, 157, 1) 61%, rgba(252, 176, 69, 1) 100%);**/
  padding: 1.5em;
  border-radius: 8px;
}

/*****************Levels Section*********/

.stardust{
  max-width: 1400px;
  padding: 4%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0;
  gap: 3em;
  height: 545px;
}
.levels{
  flex-basis: 50%;
  height: 100%;

}
.levels img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.snapshot{
  flex-basis: 50%; /****the image on the left distorted till you apply this rule****/
  
  background-color: rgb(34 45 66);
  border-radius: 12px;
  padding: 2%;
}
.snapshot h3{
  color: rgb(157 184 206);
  font-size: 2em;
  margin-bottom: .6em;
}
.snapshot p{
  color: #fff;
}
.snapshot h3{
 color: rgb(157 184 206);
 font-weight: 300;
}
.snapshot a{
  display: inline-block;
  padding: .4em 1.6em;
  background-color: #fff;
  margin-top: .9em;
  border-radius: 4px;
}

@media screen and (max-width:768px){

  .platform{     
        background-position: center;
    }
    .platform h1{
      font-size: 2.5em;
      margin-top: 7em;
      margin-bottom: 1em;
    }

  .stardust{
    flex-direction: column;
    margin-bottom: 17em;
  }
  .snapshot h3{
    font-size: 1.5em;
    color: rgb(157 184 206);
    font-weight: 300;
}

    .fanbase{
    flex-direction: column;
    }
    .left-col{
    margin-bottom: 4em;
    }
    .squares{
      grid-template-columns: 1fr;
    }

}

/***********END OF CANDIDATES********/

/**************Opportunities*************/

.myop-section{
  background-image: url(images/tenpin.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  max-width: 1400px;
  margin:auto;
}

.open-position{
  display: flex;
  width: 100%;
  min-height: 58vh;
  justify-content: center;
  align-items: center;
  
  
}
.open-position h2{
  font-size: 4em;
  color: whitesmoke;
  font-weight: 200;
}

#jobs{
    background-color: transparent;
    padding: .6em 3.1em;
    outline: none;
    border: 2px solid #fff;
    font-size: 1.2em;
    display: inline-block;
    margin-top: 1.4em;
    transition: all 3s ease;
    color: #fff;
}

 .overall__container{
    max-width: 1400px;
    margin: 0 auto 2em auto;
   
}
.overall__container h2{
    font-size: 2em;
    padding-left: 3em;
    padding-top: 1.5em;
    margin-bottom: .8em;
    color: rgb(55 26 43);
}
.tech__vacancies{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(325px, 1fr));
    max-width: 1400px;
    gap: 2.5em;
    width: 100%;
    margin: 2em auto 2em auto;
    padding: 4%;
}
.job{
    background-image: linear-gradient(to right, rgb(85, 119, 155), grey); /** rgb(85 119 155);**/
    padding: 1em;
    border-radius: .9em;
    transition: all 2s ease;
    position: relative;
    display: flex;  /***this + flex 1 make sure the buttons stays bottom even when there's not enuf content**/
    flex-direction: column;
}

.job h3{
  font-weight: 200;
}
.fa-globe{
    color: #fff;
    font-size: 2em;
    margin-bottom: .5em;
}
.job:hover{
    transform: scale(1.03);
}
.open__jobs{
    position: absolute;
    top: 2.2em;
    right: 2em;
}
.jobs__btn{
    text-align: center;
    padding: .55em 2em;
    text-decoration: none;
    border: 1px solid #111;
    border-radius: .8em;
    transition: all 3s ease;
    color: rgb(29 51 85);
}
.jobs__btn:hover{
background-color: #111;
color: #fff;

}

.job__content{
    flex: 1;
    margin: .5em 0;
    color: #fff;
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    font-size: .95em;
    font-weight: 200;
}

.closed{
    text-decoration: line-through;
}

@media screen and (max-width:768px) {
    
 .overall__container h2{
    font-size: 1.6em;
  }
  .open-position h2{
    font-size: 2.8em;
  }
    
}

@media screen and (max-width:425px) {
    
.overall__container h2{
  font-size: 1em;
}
  .open-position h2{
    font-size: 1.8em;
  }
  .job__content{
    font-size: .9em;
  
  }
    
}
/***************END BROWSE JOBS***********/

/***************ABOUT US*****************/
.about{
  display: flex;
  background-color: #ccc;
  background-image: url(images/rail.jpg.jpg);
  background-size: cover;
  background-position: top left;
  height: 80vh;
  justify-content: center;
  align-items: center;
  position: relative;
  width: 100vw;
  
}
.about::after{
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background-color: rgb(0, 0, 0, 0.6);
}
.about h1{
  color: whitesmoke;
  font-size: 4em;
  z-index: 10;
}
.headspace{
    margin: 0 auto;
    text-align: center;
    max-width: 1400px;
    padding: 4%;
    background-image: linear-gradient(to right, rgb(85 190 195), transparent);
    flex-wrap: wrap;
    
}
.headspace h1{
  font-size: 3.5em;
  margin-bottom: .6em;
  color: rgb(45 55 72);
}
.headspace p{
    max-width: 60%;
    margin: 0 auto;
    margin-bottom: 1.8em;
}
.outer{
    display: flex;
    gap: 2em;
    flex-basis: 100%;
}
.inner{
  /**background-color: rgb(33 117 217);**/
  min-height: 300px;
  box-shadow: 0 6px 40px rgb(0, 0, 0, 0.1);
  border-left: 2px solid #777;
  border-radius: 1em;
}
.inner h3{
  margin-bottom: .5em;
  color: rgb(153 103 26);
}

.headlights{
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
    align-items: center;
    height: 600px;
    margin-bottom: 14.84em;
}
.history{
    flex-basis: 50%;
    height: 100%;
    background-color: #abc;

}
.history img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.reflex{
    flex-basis: 50%;
    height: 100%;
    background-color: rgb(15 25 65);
    padding: 6%;
}
.reflex h2{
    color: rgb(71 50 91);
    font-size: 2em;
    margin-bottom: .7em;
    
}
.reflex p{
    color: rgb(111 132 165);
}
.secular{
    max-width: 1400px;
    background-color: rgb(173 170 191);
    padding: 4%;
    color: #fff;
}

@media screen and (max-width: 768px){


}

/**

img{
  max-width: 100%;
  height: auto;
  vertical-align: middle;   /***reason the image stretches to cover the entire width on a smaller screen}
  ****/


/********Perspective********/

.perspective{
  border-bottom: 2px solid rgb(22 61 135); 
  height: 320px;
  max-width: 1400px;
  justify-content: center;
  text-align: center;
  display: flex;
  align-items: center;
  color: rgb(157 184 206);
  font-size: 2em;
}
.punchcard{
display: flex;
gap: 2em;
}
.explore {
  flex-basis: 50%;
  text-align: center;
  align-content: center;
  max-width: 600px;
}
.boxer{
  flex-basis: 50%;
}

#about{
  max-width: 1400px;
  padding: 4%;
  text-align: center;
    
}
.about_content{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-items: center;
}

.grid-max{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4em 2em;
  text-align: left;
}
.about-time{
  padding: .5em;
}
.about-time h3, h4{
    color: #254d4d;
    margin-bottom: .5em;
  
}
.about-time h3{
    font-size: 1.8em;
}
.image-wrapper{
  order: -1;
}


.channels{
    padding: 4%;
    font-size: 1.4em;
    max-width: 600px;
}

.channels h3{
    font-weight: 300;
    font-size: 1.3em;
    margin-bottom: .6em;
    color: #254d4d;
}
.channels p{
  font-size: .8em;
}
.workspaces{
display: flex;
margin-bottom: 2px;

}
.scorecards{
    display: flex;
    gap: 1em;
    flex-wrap: wrap;
}
.intern{
    padding: 1.8%;
    min-height: 185px;
    width: 185px;
    background-color: rgb(20 19 36);
    font-size: 1.1em;
    
    flex-grow: 1;
    margin-right: auto;
    border-radius: 8px;
}
.intern h4{
    margin-bottom: .5em;
  
}
.intern p{
  font-size: .8em;
}

@media screen and (max-width:768px) {

  .headspace h1{
    font-size: 2.8em;
  }
  .headspace p{
    font-size: .9em;
  }
  .outer {
    flex-direction: column;
  }
  .inner{
    padding-top: 4.5em;
    
  }
      .headlights{
        flex-direction: column;
    }
    .reflex h2{
        margin-bottom: .8em;
        font-size: 1.9em;
    }

      .topsy img{
    max-width: 100%;
    height: auto;
  }


.workspaces{
  flex-direction: column;
  order: -1;
}.channels{
  font-size: 1.2em;
}

  /***ABOUT CONTENT subsection*********/

  .about_content{
    grid-template-columns: 1fr;
  }

}

@media screen and (max-width: 425px){
  .headspace h1{
    font-size: 2em;
  }
  .headlights{
    margin-bottom: 4.4em;
  }





}


/******Contact Us****/

.spirit{
  display: flex;
  background-color: #ccc;
  background-image: url(images/breeze.jpeg);
  background-size: cover;
  background-position: top left;
  height: 58vh;
  justify-content: center;
  align-items: center;
  margin-bottom: 2.8em;
  position: relative;
  box-shadow: 0 1px 30px black;
  width: 100vw;
}
.spirit::after{
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background-color: rgb(0, 0, 0, 0.8);
}
.spirit h1{
  font-size: 3em;
  letter-spacing: .3em;
  color: rgb(225, 59, 66);
  font-weight: 900;
  z-index: 3;
  align-items: center;
}

.attention h2{
  font-size: 3em;
  margin-bottom: .5em;
  color: rgb(78 106 131);
}
.connect{
            width: 100%;
            height: 100vh;
            display: flex;
            justify-content: center;
            align-items: center;

        }

        form{
            width: 100%;
            max-width: 700px;
            font-family: 'Poppins', sans-serif;
        }
    
        input, textarea{
            width: 100%;
            border: 2px solid #bbb;
            padding: .7em;
            outline: 0;
            background: transparent;
            font-size: 1em;
            border-radius: 9px;
        }
        .input-fields{
            margin-bottom: 2em;
            position: relative;
            cursor: text;
        }
        label{
            height: 100%;
            position: absolute;
            top: 0;
            left: 0;
            padding: 10px;
            transition: all .3s ease;
        }
        form button{
            padding: 1.1em 5em;
            outline: none;
            border: none;
            background-color: rgb(78 106 131);
            cursor: pointer;
            font-weight: 700;
            color: #fff;
            border-radius: .4em;
        }

        label~input:focus,
        label~input:valid,
        textarea:focus~label,
        textarea:valid~label{
        top: -2em; /*for label to move up when u type */
        
        }

/****FOOTER BELOW*************/

.design-footer{
  display: flex;
  background-color: rgb(20, 26, 23);                /** rgb(57 56 42) rgb(47 32 32) or *rgb(38 70 83)*/
  justify-content: space-around;
  padding: 2% 5.4%;
  max-width: 1400px;
}
.footer__col{
  max-width: 262px;
}
.footer__col  ul li a{
  color: #aaa;
  line-height: 1.6;
}
.footer__col li{
  list-style: none;
}

.footer__col li a:hover{
color: rgb(255 105 0);
}
footer h5{
  margin: 1.5em 0 .5em 0;
  font-size: 1em;
  color: rgb(131, 215, 218);
}
footer p, li{
  font-weight: 200;
  color: #aaa;
  }
.design-footer button{
  background-color: rgb(78 106 131);
  color: #fff;
  border: none;
  padding: .9em 3em;
  margin: 1.3em 0;
  text-transform: uppercase;
  transition: all .3s ease-in;
  border-radius: .3em;
}
.design-footer button:hover{
  background-color: rgb(131, 215, 218);
  color: #111;
}
.footer__col h4{
  font-size: 1.3em;
  color: rgb(173 146 99);
  margin-bottom: .3em;
}
.footer__col .mark{
  display: flex;
}
.footer__col .mark i{
  margin-right: 1em;
  color: #fff;
}
#next{
  margin-left: 1.7em;
}
.sub-footer{
  background-color: #111;
  color: #fff;
  padding: .5em;
  text-align: center;
}
.socials i{
  margin-top: .4em;
  font-size: 2.1em;
  transition: all 1s;
  color: rgb(131, 215, 218);
  margin-right: .6em;
}

@media screen and (max-width:768px) {
  .design-footer{
    flex-direction: column;
    padding-top: 2em;
  }
  .footer__col h4{
  font-size: .8em;
}
.footer__col  ul li a{
  font-size: .8em;  
}

.design-footer button{
  width: 60vw;

}
.footer__col{
  margin-bottom: 1em;
}

}