/*
@include respond(phone) {}
@include respond(tab-port) {}
@include respond(tab-land) {}
@include respond(big-desktop) {}
*/
/*
0 - 600px:      Phone
600 - 900px:    Tablet portrait
900 - 1200px:   Tablet landscape
[1200 - 1800] is where our normal styles apply
1800px + :      Big desktop

$breakpoint arguement choices:
- phone
- tab-port
- tab-land
- big-desktop

ORDER: Base + typography > general layout + grid > page layout > components

1em = 16px
*/
@keyframes moveInRight {
  0% {
    opacity: 0;
    transform: translateX(10rem); }
  80% {
    transform: translateX(-1rem); }
  100% {
    opacity: 1;
    transform: translate(0); } }

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

html {
  font-size: 100%;
  font-family: 'Roboto Condensed', sans-serif; }
  @media only screen and (max-width: 37.5em) {
    html {
      font-size: 75%; } }

body {
  box-sizing: border-box;
  font-family: 'Roboto Condensed', sans-serif; }

::selection {
  background-color: #21bce4;
  color: #fff; }

.text {
  text-align: justify;
  text-justify: inter-word;
  line-height: 1.7;
  letter-spacing: 0.05rem; }

.primary-heading {
  color: #0E1B72;
  font-weight: 700;
  padding: 1rem 0rem; }

.primary-heading-white {
  color: #fff;
  font-weight: 700;
  padding: 1rem 0rem; }

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

.u-margin-bottom-small {
  margin-bottom: 1.5rem !important; }

.u-margin-bottom-medium {
  margin-bottom: 4rem !important; }

.u-margin-bottom-big {
  margin-bottom: 8rem !important; }

.u-margin-top-medium {
  margin-top: 4rem !important; }

.u-margin-top-big {
  margin-top: 8rem !important; }

.u-margin-top-huge {
  margin-top: 10rem !important; }

.button, .button:link, .button:visited {
  background-color: #4525F2;
  border-radius: 1.6rem;
  color: #fff;
  font-size: 1rem;
  padding: 0.5rem 2.5rem;
  transition: all 0.4s;
  border: none;
  font-family: inherit; }

.button:hover {
  transform: translateY(-3px);
  box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.2); }

.button:active, .button:focus {
  outline: none;
  transform: translateY(-1px);
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.2); }

.buttonx, .buttonx:link, .buttonx:visited {
  background-color: #494949;
  border-radius: 1.6rem;
  color: #fff;
  font-size: 1rem;
  padding: 0.5rem 2.5rem;
  transition: all 0.4s;
  border: none;
  font-family: inherit; }

.buttonx:hover {
  transform: translateY(-3px);
  box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.2); }

.buttonx:active, .buttonx:focus {
  outline: none;
  transform: translateY(-1px);
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.2); }

.cAbout {
  padding: 5rem 4rem;
  background-color: #f7f7f7; }
  @media only screen and (max-width: 37.5em) {
    .cAbout {
      padding: 2rem; } }
  .cAbout__us {
    padding: 0rem 2rem; }
  .cAbout__contacts {
    padding: 0rem 2rem; }
    .cAbout__contacts-card {
      background-image: linear-gradient(to right bottom, rgba(231, 231, 231, 0.9), rgba(231, 231, 231, 0.9)), url(../img/contact.png);
      background-size: cover;
      background-position: top;
      width: 100%;
      padding: 2rem;
      text-align: justify;
      text-justify: inter-word;
      line-height: 1.7;
      height: auto; }
      @media only screen and (max-width: 37.5em) {
        .cAbout__contacts-card {
          height: auto;
          margin-top: 4rem;
          padding: 2rem; } }
      @media only screen and (max-width: 56.25em) {
        .cAbout__contacts-card {
          height: auto;
          margin-top: 4rem;
          padding: 2rem; } }
      .cAbout__contacts-card-icon {
        margin: 0rem 1rem; }
        @media only screen and (max-width: 37.5em) {
          .cAbout__contacts-card-icon {
            width: auto; } }
      @media only screen and (max-width: 37.5em) {
        .cAbout__contacts-card-value {
          width: auto; } }
      .cAbout__contacts-card-1 {
        margin-bottom: 2rem;
        display: flex;
        flex-direction: row;
        align-items: center; }
        @media only screen and (max-width: 37.5em) {
          .cAbout__contacts-card-1 {
            justify-content: left; } }
      .cAbout__contacts-card-2 {
        display: flex;
        margin-bottom: 2rem;
        flex-direction: row;
        align-items: center; }
        @media only screen and (max-width: 37.5em) {
          .cAbout__contacts-card-2 {
            justify-content: left; } }
      .cAbout__contacts-card-3 {
        display: flex;
        flex-direction: row;
        align-items: center; }
        @media only screen and (max-width: 37.5em) {
          .cAbout__contacts-card-3 {
            justify-content: left; } }

.carouselx {
  position: relative; }
  .carouselx-frame {
    margin-top: -1.56rem;
    position: relative;
    width: 100%;
    height: calc( min(calc(90vh - 10px), 480px));
    overflow: hidden;
    box-shadow: inset 6rem 0rem 6rem -6rem black, inset -6rem 0rem 6rem -6rem black;
    background-image: radial-gradient(circle, transparent, transparent 75%, rgba(0, 0, 0, 0.3));
    background-color: white; }
    @media only screen and (max-width: 37.5em) {
      .carouselx-frame {
        height: auto; } }
  .carouselx-slide {
    display: flex;
    width: 100%;
    height: 100%;
    mix-blend-mode: multiply; }
    .carouselx-slide img {
      width: 100%;
      object-fit: cover; }
  .carouselx-prev {
    position: absolute;
    top: 50%;
    left: 3rem;
    margin-top: -1.5rem;
    z-index: 10;
    font-size: 3rem;
    color: rgba(255, 255, 255, 0.8);
    cursor: pointer; }
  .carouselx-next {
    position: absolute;
    top: 50%;
    right: 3rem;
    margin-top: -1.5rem;
    z-index: 10;
    font-size: 3rem;
    color: rgba(255, 255, 255, 0.8);
    cursor: pointer; }
  .carouselx-dots {
    list-style: none;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 5%;
    margin: 0 auto;
    width: calc(max(10rem, 8%));
    display: flex;
    justify-content: space-between; }
    .carouselx-dots li {
      width: 0.8rem;
      height: 0.8rem;
      border: 1px solid rgba(255, 255, 255, 0.8);
      border-radius: 50%;
      cursor: pointer;
      box-shadow: 0 0 3px rgba(0, 0, 0, 0.5); }

.carousel-dots .active-dot {
  background-color: rgba(255, 255, 255, 0.8); }

.carousel-item {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: bottom; }

.depApps {
  position: absolute;
  right: 10rem;
  bottom: 10rem;
  z-index: 2;
  display: flex;
  flex-direction: row;
  backface-visibility: hidden;
  animation: moveInRight 1s ease-out; }
  @media only screen and (max-width: 37.5em) {
    .depApps {
      left: 1rem;
      bottom: 1rem;
      width: 100%; } }
  @media only screen and (max-width: 56.25em) {
    .depApps {
      left: 1rem;
      bottom: 1rem;
      width: auto; } }
  .depApps__label {
    color: white;
    font-weight: 700;
    background-image: linear-gradient(to right bottom, #25359c, #2c116d);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 1rem 2.5rem;
    border-radius: 0rem 0rem 0rem 1.5rem;
    position: relative; }
    @media only screen and (max-width: 37.5em) {
      .depApps__label {
        padding: 0.4rem 1.8rem; } }
  .depApps__icons {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 0rem 4rem;
    box-shadow: 0 0 1rem 0 rgba(0, 0, 0, 0.2);
    border-radius: 0rem 1rem 1rem 0rem;
    background-color: rgba(255, 255, 255, 0.4);
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
    backface-visibility: hidden; }
    @media only screen and (max-width: 37.5em) {
      .depApps__icons {
        padding: 0rem 1rem; } }
  .depApps__text {
    font-size: 1.4rem;
    text-align: center;
    margin-bottom: 1.5rem;
    font-weight: 400; }
    @media only screen and (max-width: 37.5em) {
      .depApps__text {
        font-size: 1rem; } }
  .depApps__login {
    font-size: 0.7rem;
    position: absolute;
    bottom: 1rem;
    right: 1rem;
    font-style: italic;
    font-weight: 300;
    letter-spacing: 0.06rem;
    text-decoration: none;
    color: #fff;
    transition: all 0.3s; }
    .depApps__login:hover {
      color: #fff; }
  .depApps__btn {
    padding: 0.4rem;
    background-color: #003FFF;
    position: absolute;
    right: -1rem;
    top: 3rem;
    z-index: 10;
    border-radius: 50%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    transition: all 0.3s; }
    @media only screen and (max-width: 37.5em) {
      .depApps__btn {
        top: 1.2rem;
        right: -1.5rem; } }
  .depApps__card {
    margin: 1rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center; }
    @media only screen and (max-width: 37.5em) {
      .depApps__card {
        margin: 0.2rem; } }
    .depApps__card-icon {
      height: 4.5rem;
      width: 4.5rem;
      background-image: linear-gradient(#21bce4, #2c116d);
      border: 2px solid #fff;
      border-radius: 1rem;
      padding: 0.8rem; }
      @media only screen and (max-width: 37.5em) {
        .depApps__card-icon {
          height: 3rem;
          width: 3rem;
          padding: 0.2rem; } }
    .depApps__card-btn {
      background-color: #fff;
      padding: 0.3rem 1.8rem;
      color: #333;
      font-size: 0.8rem;
      border-radius: 2rem;
      text-decoration: none;
      text-transform: uppercase;
      margin-top: 0.3rem;
      font-weight: 400;
      transition: all 0.3s; }
      .depApps__card-btn:hover {
        background-color: #0E1B72 !important;
        color: white !important;
        transform: scale(1.04); }
      @media only screen and (max-width: 37.5em) {
        .depApps__card-btn {
          padding: 0.1rem 1rem; } }

.feedback {
  padding: 4rem 6rem;
  background-image: linear-gradient(to right bottom, rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0.7)), url(../img/feedbackBG.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: bottom; }
  @media only screen and (max-width: 37.5em) {
    .feedback {
      padding: 2rem; } }
  .feedback__col {
    margin-top: 3rem; }
  .feedback__form {
    padding: 0rem 4rem; }
    @media only screen and (max-width: 37.5em) {
      .feedback__form {
        padding: 0rem;
        margin-top: 4rem; } }
    @media only screen and (max-width: 56.25em) {
      .feedback__form {
        padding: 0rem; } }
    .feedback__form-input {
      border-radius: 1.6rem;
      border: none;
      background-color: #F2F4F8;
      color: gray;
      font-weight: 700; }
    .feedback__form-label {
      font-weight: 400;
      letter-spacing: 0.05rem;
      color: #333; }

.jurisdiction {
  background-image: linear-gradient(to right bottom, rgba(14, 27, 114, 0.8), rgba(44, 17, 109, 0.8)), url(../img/jurisdictionBG.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: bottom;
  padding: 4rem 6rem; }
  @media only screen and (max-width: 37.5em) {
    .jurisdiction {
      padding: 2rem; } }
  .jurisdiction__table {
    color: #fff;
    margin: 1rem 0rem;
    display: table; }
    .jurisdiction__table-data {
      font-size: 0.85rem;
      font-weight: 400;
      width: 100%;
      table-layout: fixed; }
      .jurisdiction__table-data tbody {
        width: 100%; }
      .jurisdiction__table-data tr {
        width: 100%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.2); }
      .jurisdiction__table-data td {
        padding: 0.2rem; }
      .jurisdiction__table-data th {
        background-color: #4525F2;
        padding: 0.4rem;
        font-weight: 700;
        font-size: 0.9rem; }
  .jurisdiction__text {
    color: #fff; }
  @media only screen and (max-width: 37.5em) {
    .jurisdiction__map {
      flex-direction: column-reverse; } }
  .jurisdiction__map label {
    color: #fff; }
  .jurisdiction__dropdown {
    padding: 0rem 4rem; }
    @media only screen and (max-width: 37.5em) {
      .jurisdiction__dropdown {
        padding: 0rem; } }
    @media only screen and (max-width: 56.25em) {
      .jurisdiction__dropdown {
        margin-top: 3rem; } }
  .jurisdiction__select {
    padding: 0.6rem 1rem;
    border-radius: 0.5rem; }

.mapSection {
  height: 28rem;
  width: auto;
  background-color: #fff; }

.login {
  height: 100vh;
  width: 100vw;
  background-color: #0E1B72; }

.loginbox {
  background-image: linear-gradient(to right bottom, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.1)), url(../img/feedbackBG.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: bottom;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  height: 70vh;
  width: 60vw;
  padding: 1.5rem 3rem;
  background-color: #f1f1f1;
  translate: all 0.3s;
  display: flex;
  flex-direction: column;
  align-items: center; }
  @media only screen and (max-width: 37.5em) {
    .loginbox {
      height: 90vh;
      width: 80vw;
      padding: 1.2rem 1.5rem;
      display: flex;
      justify-content: center;
      align-items: center; } }
  .loginbox__heading {
    font-size: 1rem;
    margin: 0.8rem 0rem 1.5rem 0rem; }
  .loginbox__img {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center; }
    @media only screen and (max-width: 37.5em) {
      .loginbox__img {
        margin-bottom: 4rem; } }

.forms {
  width: 60%; }
  @media only screen and (max-width: 37.5em) {
    .forms {
      width: 90%; } }
  .forms__group:not(:last-child) {
    margin-bottom: 0.8rem; }
  .forms__input {
    font-size: 0.9rem;
    font-family: inherit;
    color: inherit;
    padding: 0.5rem 1rem;
    border-radius: 2px;
    background-color: rgba(255, 255, 255, 0.5);
    border: none;
    border-bottom: 3px solid transparent;
    width: 100%;
    display: block;
    transition: all .3s; }
    @media only screen and (max-width: 56.25em) {
      .forms__input {
        width: 100%; } }
    .forms__input:focus {
      outline: none;
      box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
      border-bottom: 3px solid #21bce4; }
    .forms__input:focus:invalid {
      border-bottom: 3px solid #21bce4; }
    .forms__input::-webkit-input-placeholder {
      color: #999; }
  .forms__label {
    font-size: 0.9rem;
    font-weight: 700;
    margin-left: 1rem;
    margin-top: .7rem;
    display: block;
    transition: all .3s;
    color: #999; }
  .forms__input:placeholder-shown + .forms__label {
    opacity: 0;
    visibility: hidden;
    transform: translateY(-4rem); }

.sponsors {
  padding: 4rem 6rem;
  background-image: linear-gradient(to right bottom, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0)), url(../img/sponsoredBG.png);
  background-repeat: no-repeat;
  background-size: cover; }
  @media only screen and (max-width: 37.5em) {
    .sponsors {
      padding: 2rem; } }
  .sponsors__card {
    height: 6rem;
    margin: 0.6rem 0.5rem;
    transition: all 0.4s;
    cursor: pointer; }
    .sponsors__card:hover {
      transform: translateY(-0.5rem) scale(1.05); }

.footer {
  padding: 4rem 6rem;
  background-image: linear-gradient(to right bottom, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0)), url(../img/footerBG.png);
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center; }
  @media only screen and (max-width: 37.5em) {
    .footer {
      padding: 1rem;
      flex-direction: column;
      text-align: center; } }
  .footer__visitor {
    color: #fff;
    font-size: 0.9rem;
    flex: 1; }
  .footer__sm {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    flex: 1; }
    @media only screen and (max-width: 37.5em) {
      .footer__sm {
        margin: 3rem 0rem; } }
    .footer__sm-icon {
      height: 2rem; }
  .footer__copyright {
    color: #fff;
    font-size: 0.9rem;
    text-align: right;
    flex: 1; }
    @media only screen and (max-width: 37.5em) {
      .footer__copyright {
        text-align: center; } }

.sm__button, .sm__button:link, .sm__button:visited {
  margin: 0rem 0.9rem;
  transition: all 0.5s; }

.sm__button:hover {
  transform: scale(1.5);
  box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.2); }

.sm__button:active, .sm__button:focus {
  outline: none;
  transform: translateY(-1px);
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.2); }

.cHeader {
  background-image: linear-gradient(to right bottom, rgba(33, 188, 228, 0), rgba(44, 17, 109, 0)), url(../img/headerBG.png);
  background-size: cover;
  background-position: top;
  padding: 2rem 2rem;
  position: relative;
  z-index: 2; }
  .cHeader__logo {
    height: 6rem; }
  .cHeader__text {
    display: flex;
    flex-direction: column;
    color: #fff;
    text-shadow: 4px 4px 5px rgba(51, 51, 51, 0.84);
    margin-left: 2rem;
    font-weight: 700;
    line-height: 1; }
  .cHeader__nav {
    position: absolute;
    right: 3rem;
    bottom: -1.5rem;
    background-color: #0E1B72;
    border-radius: 0.5rem;
    z-index: 1; }
    .cHeader__nav-link {
      color: white;
      text-decoration: none;
      text-transform: uppercase;
      padding: 0.8rem 1.9rem;
      transition: all 0.4s; }
      .cHeader__nav-link:hover {
        transform: scale(1.1);
        color: #fff; }
