@media(max-width: 768px) {
  body {
    padding-top: 65px;
  }
}

.nav {
  z-index: 9;
}

@media (max-width: 768px) {
  .nav {
    display: none;
  }
}

.nav__container {
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  width: 100%;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}

.nav__logo-link {
  display: -webkit-flex;
  display: flex;
}

.nav__dropdown-row {
  margin: 0 -40px;
}

.nav__dropdown-col {
  padding-left: 40px;
  padding-right: 40px;
}

.nav__dropdown-box {
  position: absolute;
  min-width: 50%;
  margin-left: 15%;
  display: -webkit-flex;
  display: flex;
  padding-right: 50px;
  -webkit-align-items: center;
  align-items: center;
  top: 20px;
  display: none;
}

.nav__dropdown-box-content {
  padding-left: 25px;
}

.nav__dropdown-box-content .btn {
  padding: 5px 20px !important;
}

.nav__dropdown-box-title {
  color: #000000;
  display: block;
  margin-bottom: 6px;
  font-size: 20px;
}

.nav__dropdown-box-text {
  margin-bottom: 12px;
  font-size: 1rem !important;
}

.nav__dropdown-box-text p {
  margin: 0;
  line-height: 24px;
}

.nav__sub-more a {
  font-weight: 400 !important;
  font-style: normal;
  font-size: 1rem;
  line-height: 16px;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  text-decoration: underline !important;
  text-align: center;
  -webkit-justify-content: center;
  justify-content: center;
  color: #004E87 !important;
  -webkit-align-items: center;
  align-items: center;
  padding: 0 7.5px;
}

.nav__sub-more a svg {
  margin-top: 5px;
}

.nav__mobile {
  width: 100%;
  min-height: 65px;
  max-height: 65px;
  background: #004F87;
  display: none;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-align-items: center;
  align-items: center;
  padding: 0 20px;
  position: fixed;
  top: 0;
  z-index: 99999;
}

@media (max-width: 768px) {
  .nav__mobile {
    display: -webkit-flex;
    display: flex;
  }
}

.nav__mobile-logo {
  display: -webkit-flex;
  display: flex;
}

.nav__mobile-logo img {
  max-width: 65px;
}

.nav__mobile-col {
  min-width: 25%;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}

.nav__mobile-contact {
  width: 30px;
  margin-right: 1rem;
}

.nav__mobile-contact .nav__list--contact {
  margin-left: 0;
  margin-top: 2px;
  border-radius: 0;
  left: 0;
  height: 100vw;
  width: 100%;
}

.nav__list--contact a:hover {
  filter: invert(29%) sepia(99%) saturate(5045%) hue-rotate(190deg) brightness(92%) contrast(98%) !important;
}

.nav__mobile-col:last-of-type {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  align-items: center;
}

.nav__mobile-col:last-of-type .nav__mobile-col-item:first-of-type {
  width: 30px;
}

.nav__mobile-col:last-of-type .nav__mobile-col-item:first-of-type img {
  width: 30px;
}

.nav__mobile-col-item {
  margin-right: 25px;
  width: 24px;
  display: -webkit-flex;
  display: flex;
}

.nav__mobile-col-item:last-of-type {
  margin-right: 0;
}

.nav__mobile-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  z-index: 99;
  visibility: hidden;
  pointer-events: none;
  opacity: 0;
}

.nav__mobile-overlay.is-active {
  visibility: visible;
  opacity: 1;
}

.nav__mobile-wide {
  position: fixed;
  top: 65px;
  height: calc(100% - 65px);
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  width: 100%;
  max-width: 260px;
  background: #FFFFFF;
  z-index: 999;
  -webkit-transform: translateX(-100%);
  transform: translateX(-100%);
  transition: ease-in-out 0.3s all;
  overflow: auto;
}

.nav__mobile-wide.is-active {
  -webkit-transform: translateX(0%);
  transform: translateX(0%);
  transition: ease-in-out 0.3s all;
  z-index: 8000000;
}

.nav__mobile-wide span {
  font-size: 16px;
}

.nav__mobile-wide-items {
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav__mobile-wide-item {
  min-height: 40px;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-align-items: flex-start;
  align-items: flex-start;
}

.nav__mobile-wide-item.open .nav__mobile-wide-item-arrow svg {
  -webkit-transform: rotateX(180deg);
  transform: rotateX(180deg);
  transition: ease-in-out 0.3s all;
}

.nav__mobile-wide-item.open .nav__mobile-wide-item-arrow svg path {
  fill: #004e87;
}

.nav__mobile-wide-item-link {
  padding-left: 15px;
  min-height: 40px;
  width: 100%;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  text-decoration: none;
  color: #2b2f36;
  font-size: 16px;
}

.nav__mobile-wide-item-top {
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  width: 100%;
  border-bottom: 1px solid #E4E4E4;
}

.nav__mobile-wide-item-arrow {
  min-height: 40px;
  min-width: 40px;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  border-left: 1px solid #E4E4E4;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}

.nav__mobile-wide-item-arrow svg {
  transition: ease-in-out 0.3s all;
}

.nav__mobile-wide-dropdown {
  background: #F2F2F2;
  width: 100%;
  list-style: none;
  padding: 0;
  margin: 0;
  display: none;
}

.nav__mobile-wide-dropdown-item-link {
  color: #2b2f36;
  padding-left: 15px;
  text-decoration: none;
  min-height: 40px;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  border-bottom: 1px solid #E4E4E4;
}

.nav__mobile-wide-dropdown-item-link svg {
  margin-left: 9px;
}

.nav__mobile-footer {
  padding: 17px;
  margin-top: auto;
}

.nav__mobile-footer.open .nav__mobile-lang-arrow {
  -webkit-transform: rotateX(180deg);
  transform: rotateX(180deg);
}

.nav__mobile-footer.open .nav__mobile-lang-menu {
  display: block;
}

.nav__mobile-footer.open .nav__mobile-lang {
  background: #e6f1fa;
  color: #0374c7;
}

.nav__mobile-footer.open .nav__mobile-lang svg path {
  fill: #0374c7;
}

.nav__mobile-lang {
  width: 100%;
  min-height: 40px;
  max-height: 40px;
  border-radius: 8px;
  border: 1px solid #004e87;
  box-sizing: border-box;
  font-weight: 500;
  color: #004e87;
  font-size: 16px;
  line-height: 16px;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  padding-left: 12px;
  position: relative;
}

.nav__mobile-lang span {
  margin-left: 9px;
}

.nav__mobile-lang-arrow {
  position: absolute;
  right: 12px;
  top: 0;
  bottom: 0;
  margin: auto;
}

.nav__mobile-lang-menu {
  width: 100%;
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid #e4e4e4;
  background-color: #ffffff;
  box-sizing: border-box;
  box-shadow: 0px 0px 12px 0px rgba(0, 0, 0, 0.15);
  list-style: none;
  margin: 0;
  padding: 0;
  margin-bottom: 9px;
  display: none;
}

.nav__mobile-lang-menu a {
  min-height: 40px;
  background-color: #ffffff;
  box-sizing: border-box;
  color: #004e87;
  text-align: left;
  line-height: normal;
  font-weight: 500;
  text-decoration: none;
  padding: 10px 15px;
  min-height: 40px;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}

.nav__mobile-lang-menu-item.active a {
  background: #e6f1fa;
  color: #0374c7;
}

.nav__mobile-lang-menu-item a {
  min-height: 40px;
  background-color: #ffffff;
  box-sizing: border-box;
  color: #004e87;
  text-align: left;
  line-height: normal;
  font-weight: 500;
  text-decoration: none;
  padding: 10px 15px;
  min-height: 40px;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}

.dropdown-content__subscriptions {
  list-style: none;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}

.dropdown-content__subscription {
  margin-right: 15px;
}

.dropdown-content__subscription:last-of-type {
  margin-right: 0;
}

.dropdown-content__subscription img {
  max-width: 110px;
}

.dropdown-content__link > a svg {
  margin-left: 5px;
}

.dropdown-content__link.active .nav__dropdown-box {
  display: -webkit-flex;
  display: flex;
  align-items: flex-start;
}

.nav__logo {
  max-width: 216px;
  margin-right: 75px;
}

.nav__slogan {
  font-weight: bold;
  font-size: 20px;
}

.nav-primary {
  background: #004F87;
  padding: 1rem;
  color: #FFFFFF;
}

.nav-primary a {
  color: #FFFFFF;
}

.nav-primary__item:last-child {
  margin-left: 5rem;
}

.nav__left,
.nav__right {
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}

.nav-secondary {
  display: block;
  padding: 0 1rem;
  background: #F2F2F2;
}

.nav-secondary__items .nav__logo {
  display: none;
}

.nav-secondary__item:hover a {
  color: #0374c7;
}

.dropdown-content__link:hover a {
  color: #0374c7 !important;
}

.dropdown-content__link:hover .link--external {
  filter: invert(29%) sepia(99%) saturate(5045%) hue-rotate(190deg) brightness(92%) contrast(98%) !important;
}

.dropdown-content__link:hover .btn--tertiary {
  color: #fff !important;
}

.nav-secondary__item {
  padding: 1rem 0;
}

.nav-secondary__item a {
  color: #000000;
}

.dropdown-content::after {
  content: "";
  position: fixed;
  margin-top: 1rem;
  left: 0;
  background: rgba(77, 77, 77, 0.6);
  opacity: .8;
  width: 100vw;
  height: 100vh;
  transition: .4s;
  z-index: 1;
  pointer-events: none;
}

.dropdown-content__title {
  border-bottom: 1px solid #000000;
  padding: 0 0 1rem 0;
  margin: 0 0 1rem 0;
  font-size: 20px;
}

.dropdown-content__subscriptions,
.dropdown-content__links {
  margin: 0;
  padding: 0;
}

.dropdown-content__link {
  list-style-type: none;
  margin-bottom: .5rem;
}

.dropdown-content__subscriptions,
.dropdown-content__description {
  margin-bottom: 1rem;
}

.dropdown-content__subscription {
  display: inline-block;
  list-style-type: none;
}

.nav-primary__items {
  -webkit-align-items: center;
  align-items: center;
  display: -webkit-flex;
  display: flex;
}

.nav-primary__items,
.nav-secondary__items {
  padding: 0;
  margin: 0;
}

.nav-primary__item,
.nav-secondary__item {
  display: inline-block;
  margin-left: 2rem;
  font-weight: 500;
}

.nav-primary__item:first-child,
.nav-secondary__item:first-child {
  padding-left: 0;
  margin-left: 0;
}

.nav-primary__item a,
.nav-secondary__item a {
  text-decoration: none;
}

.nav-primary__icon {
  width: 18px;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-justify-content: center;
  justify-content: center;
  margin: 0 auto;
  min-height: 19px;
  margin-bottom: 5px;
}

.nav--sticky .nav-secondary {
  z-index: 9;
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  background: #004F87;
}

.nav--sticky .nav__logo {
  display: block;
}

.nav--sticky .nav-secondary__items a {
  color: #FFFFFF;
}

.nav--promo .nav-secondary .nav__right {
  color: #004F87;
  position: relative;
}

.nav--promo .nav-secondary .nav__right span {
  font-weight: bold;
  margin: 0 4px;
}

.nav--promo .nav-secondary .nav__right::after {
  content: "";
  position: absolute;
  top: 0;
  left: -2rem;
  height: 25px;
  width: 25px;
  background: url("../img/icons/percentage-promo.svg");
  background-size: contain;
}

.dropdown-content--largelist .dropdown-content__links {
  margin-bottom: 7.5px;
}

.dropdown-content--largelist .dropdown-content__link span {
  color: #333;
}

.hero {
  position: relative;
}

.hero--img-bottom .row {
  -webkit-align-items: flex-end;
  align-items: flex-end;
}

.hero--img-center .row {
  -webkit-align-items: center;
  align-items: center;
}

.hero__promo-bar {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-align-items: center;
  align-items: center;
  position: absolute;
  bottom: -4.4rem;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 976px;
  padding: 0.5rem 2rem;
  font-weight: bold;
  box-shadow: 0px 0px 12px rgba(0, 0, 0, 0.15);
  border-radius: 8px;
  background: #FFFFFF;
}

.hero__promo {
  content: '';
  position: absolute;
  right: -3rem;
  top: 6rem;
  width: 140px;
  height: 138px;
  z-index: -1;
}

.hero__content {
  padding: 100px 0;
  position: relative;
  max-width: 665px;
}

.hero__title {
  max-width: 550px;
}

.hero__description {
  margin: 5rem 0;
}

.hero__image {
  position: relative;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}

.carousel {
  background: transparent;
}

.carousel--bg-grey {
  background: #F2F2F2;
}

.carousel__content {
  text-align: center;
  margin-bottom: 2rem;
}

.slick-initialized .slick-slide {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-align-items: center;
  align-items: center;
}

.slick-track {
  display: -webkit-flex !important;
  display: flex !important;
}

.slick-slide {
  height: inherit !important;
}

.slick-dotted .slick-center {
  -webkit-transform: scale(1.2);
  transform: scale(1.2);
  transition: transform .5s ease;
}

.carousel-slide__icon {
  background: #FFFFFF;
  max-height: 125px;
  width: 100%;
}

.carousel-slide__description {
  margin-bottom: 1.5rem;
}

.carousel__arrow {
  position: absolute;
  margin: auto;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-direction: column;
  flex-direction: column;
  top: 0;
  bottom: 0;
}

.carousel__arrow--prev {
  left: -2rem;
  -webkit-transform: rotate(-180deg);
  transform: rotate(-180deg);
}

.carousel__arrow--next {
  right: -2rem;
}

.carousel__slider--testimonials .carousel-slide__description {
  margin-bottom: 1rem;
  max-height: 190px;
  overflow: hidden;
}

.carousel__slider--testimonials .slick-dots {
  bottom: -2.5rem;
}

.carousel__slider--testimonials .slick-dots li button:before
font-size: 40px;
background: #0374c7;
border-radius: 100%;
border: 1px solid #0374c7;
color: #0374c7;
width: 18px;
height: 18px;
font-size: 0px;

.carousel__slider--testimonials .carousel-slide__icon {
  margin-top: -4rem;
  background: #fff;
  border-radius: 100%;
  box-shadow: 0px 0px 12px rgba(0, 0, 0, 0.15);
  width: 120px;
  height: 120px;
  background-size: cover;
  object-fit: contain;
}

.carousel__slider--testimonials .carousel__name {
  font-size: .75rem;
  font-weight: bold;
}

.carousel--bg-white {
  background: #FFFFFF;
}

.newsletter {
  padding: 2.188rem 0 3.5rem 0;
  /*   background: #F2F2F2; */
}

.footer {
  background: #004F87;
  color: #FFFFFF;
}

.footer__logo {
  max-width: 250px;
}

.footer-links {
  margin: 0;
  padding: 0;
}

.footer-links__item {
  list-style-type: none;
}

.footer-links__item a {
  text-decoration: none;
  color: #FFFFFF;
}

.footer-bottom {
  border-top: 2px solid #FFFFFF;
  margin: 3rem 0;
}

.footer-bottom__branches {
  margin: 3rem 0;
  padding: 0;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
  list-style-type: none;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}

.footer-bottom__branch img {
  height: 38px;
}

.footer-bottom__links {
  margin: 0;
  padding: 0;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: row;
  flex-direction: row;
  -webkit-justify-content: center;
  justify-content: center;
}

.footer-bottom__link a {
  color: #FFFFFF;
  text-decoration: none;
}

.footer-bottom__link img {
  height: 18px;
  width: 18px;
  margin-right: .4rem;
}

.footer-bottom__link--divider {
  border-right: 1px solid #FFFFFF;
  padding: 0 .5rem;
  height: 10px;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  margin-left: 0;
  margin-top: 5px;
}

.subscription-clients {
  margin: 2rem 0;
}

.subscription-info__title {
  max-width: 460px;
}

.subscription-clients__title {
  text-align: center;
  margin-bottom: 4rem;
}

.subscription-info {
  box-shadow: 0px 0px 25px rgba(89, 89, 89, 0.1);
  padding: 4rem 0;
}

.subscription-info__image {
  position: relative;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
  height: 100%;
}

.subscription-info__image::after {
  content: '';
  position: absolute;
  background: url("../img/visual-1.svg") no-repeat center;
  margin: 0 auto;
  width: 280px;
  height: 500px;
  opacity: .4;
  z-index: -1;
}

.subscription-clients__item--logo-sm img {
  max-width: 40px;
  max-height: 100px;
}

.subscription-clients__item--logo-md {
  margin: 0 0 2rem 2rem;
}

.subscription-clients__item--logo-md img {
  max-height: 45px;
}

.services__content {
  text-align: center;
  margin: 0 auto;
  max-width: 650px;
  margin-bottom: 4rem;
}

.services-card {
  box-shadow: rgba(0, 0, 0, 0.15) 0px 0px 12px 0px;
  box-sizing: border-box;
  border-radius: 8px;
  margin-right: 2rem;
  max-width: 440px;
  overflow: hidden;
  background: #FFFFFF;
}

.services-card__thumbnail {
  background: #F2F2F2;
  width: 440px;
  max-height: 250px;
  -o-object-fit: contain;
  object-fit: contain;
}

.services-card__content {
  padding: 1rem;
}

.services-card__title {
  font-weight: 700;
  font-size: 1.25rem;
  margin: 0.5rem 0 1.5rem 0;
}

.services-card__description {
  margin: 1rem 0;
}

.services-card__permalink {
  color: #004F87;
  text-decoration: underline;
}

.services-card__permalink:after {
  content: "";
  width: 16px;
  height: 16px;
  position: absolute;
  margin-top: 0;
  margin-left: 6px;
  background: url("../img/icons/arrow-right.svg") no-repeat center;
}

.services-card--no-margin {
  margin-right: 0;
}

.cards .cards__wrapper {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}

@media (max-width: 686px) {
  .cards .cards__wrapper {
    -webkit-justify-content: center;
    justify-content: center;
  }
}

.cards__content {
  text-align: center;
  margin: 0 auto;
}

@media (max-width: 686px) {
  .card {
    margin-right: 0;
  }
}

.card .card__content {
  padding: 1.25rem;
}

.card .card__title {
  margin-top: 0;
}

.card .card__permalink {
  margin-top: 1rem;
  color: #004F87;
}

.cards__col {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}

.card--full-width {
  overflow: hidden;
  max-width: 100%;
}

.card--full-width .card__content {
  text-align: left;
}

.card--full-width .card__thumbnail {
  padding-top: 0;
  width: 100%;
}

.cards--md .col-xs-12 {
  -webkit-justify-content: center;
  justify-content: center;
}

.cards--md .card {
  width: 100%;
  max-width: 580px;
  margin: 0 auto;
  padding: 1.25rem 1.25rem;
}

@media (max-width: 768px) {
  .cards--md .card {
    margin-top: 2rem;
  }
}

.cards--md .card .card__title {
  margin: 0;
}

.cards--md .card .block__items {
  margin-bottom: 2rem;
}

.cards--md .card .card__wrapper {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: row;
  flex-direction: row;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}

.cards--md .card .card__content {
  text-align: left;
  padding: 0;
}

.cards--md .card .card__thumbnail {
  position: relative;
}

.cards--md .card .card__thumbnail img {
  width: 140px;
  height: 140px;
  -o-object-fit: contain;
  object-fit: contain;
}

.cards--numbered .card {
  padding: 3rem 0 2rem 0;
  position: relative;
}

.cards--numbered .card__count {
  position: absolute;
  top: -37px;
  left: -12px;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
  font-size: 2.25rem !important;
  height: 70px;
  width: 70px;
  background-color: #80A7C3;
  color: #333;
  line-height: 0;
  font-weight: 600;
  border-radius: 50%;
}

.cards--links .card {
  overflow: hidden;
}

.cards--links .card__thumbnail {
  padding-top: 0;
}

.cards--links .card__thumbnail img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  transition: .5s;
}

.cards--links .card__category {
  text-align: left;
  margin-bottom: 5px;
}

.cards--links .card__title {
  text-align: left;
}

.cards--links .card__count {
  position: absolute;
  top: -37px;
  left: -17px;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
  font-size: 2.25rem !important;
  height: 79px;
  width: 79px;
  background-color: #80A7C3;
  color: #333;
  line-height: 0;
  font-weight: 600;
  border-radius: 50%;
}

.cards__container--visuals {
  position: relative;
}

.cards__container--visuals::after {
  content: '';
  position: absolute;
  background: url("../img/visual-1.svg");
  right: 13rem;
  top: 14rem;
  margin: 0 auto;
  width: 397px;
  height: 397px;
  opacity: .5;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  z-index: -1;
}

.cards__container--visuals::before {
  content: '';
  position: absolute;
  background: url("../img/visual-1.svg");
  left: 5rem;
  top: 18rem;
  margin: 0 auto;
  width: 550px;
  height: 550px;
  opacity: .2;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  z-index: -1;
}

.cards__col--asymmetric:nth-child(2) {
  margin-top: 75px;
}

.cards__col--asymmetric:nth-child(3) {
  margin-top: 25px;
}

.card__permalink--chevron-right:after {
  content: "";
  width: 16px;
  height: 16px;
  position: absolute;
  margin-top: 6px;
  margin-left: 6px;
  background: url("../img/icons/chevron-right.svg") no-repeat center;
}

.card__permalink--arrow-right:after {
  content: "";
  width: 16px;
  height: 16px;
  position: absolute;
  margin-top: 5px;
  margin-left: 8px;
  background: url("../img/icons/arrow-right.svg") no-repeat center;
}

.cta {
  padding-top: 3.125rem;
  padding-bottom: 6.25rem;
  margin: 0 auto;
}

.cta__content {
  box-shadow: rgba(0, 0, 0, 0.15) 0px 0px 12px 0px;
  background: #FFFFFF;
  border-radius: 8px;
  position: relative;
  text-align: center;
  padding: 2rem 3.813rem;
  margin: 0 auto;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  width: 100%;
}

.cta__content .cta__icon {
  max-width: 110px;
  margin: 0 auto;
  margin-top: -6.25rem;
  margin-bottom: 1rem;
}

.cta__content .cta__description {
  margin-bottom: 1rem;
}

.cta__content .btn-group {
  margin-top: 1rem;
}

.cta__content .cta__title {
  margin-top: 0;
}

.cta__content::after {
  content: "";
  position: absolute;
  left: 10px;
  top: -7px;
  border: solid 7px #0174C7;
  border-radius: 8px;
  width: 100%;
  height: calc(100% + 12px);
  box-shadow: rgba(0, 0, 0, 0.15) 0 0 12px 0;
  z-index: -1;
  -webkit-transform: rotate(359deg);
  transform: rotate(359deg);
}

.cta--md-width {
  max-width: 980px;
}

.cta--sm-width {
  max-width: 770px;
}

.block {
  margin: 2rem 0;
}

.block__image {
  height: 340px;
  -o-object-fit: contain;
  object-fit: contain;
  position: relative;
  z-index: 1;
}

.block__image-wrapper {
  position: relative;
}

@media (max-width: 990px) {
  .block__image-wrapper::after {
    display: none;
  }
}

@media (max-width: 990px) {
  .block__image-wrapper::before {
    display: none;
  }
}

.block__footer {
  display: block;
  margin-top: 2rem;
}

.block--full-width {
  /*   background: #F2F2F2; */
  position: relative;
}

.block--center .block__content {
  text-align: center;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}

.block--center .block__content .block__description {
  max-width: 800px;
}

.block--img-left .block__content {
  padding-right: 2rem;
}

.block--img-right .block__content {
  padding-left: 2rem;
}

.block--img-sm .block__content {
  padding-left: 2rem;
  -webkit-align-self: baseline;
  align-self: baseline;
}
/*
.block--img-bubble {
margin: 6rem 0;
} */

/* .block--img-bubble .block__content {
max-width: 632px;
}

@media (max-width: 1280px) {
.block--img-bubble .block__content {
max-width: 100%;
}
}

.block--img-bubble .block__title {
margin: 0;
margin-bottom: 2rem;
} */

/* .block--img-bubble .block__wrapper {
position: relative;
border-radius: 8px;
box-shadow: 0px 0px 12px rgba(0, 0, 0, 0.15);
-webkit-flex-direction: row;
flex-direction: row;
-webkit-flex-wrap: nowrap;
flex-wrap: nowrap;
display: -webkit-flex;
display: flex;
-webkit-align-items: center;
align-items: center;
padding: 2rem 5.125rem 2rem 3.5rem;
box-sizing: border-box;
width: 90%;
}

.block--img-bubble .block__image {
position: absolute;
right: -8rem;
width: 494px;
height: 426px;
z-index: 1;
} */

@media (max-width: 990px) {
  .cards--md .card .card__thumbnail {
    margin-bottom: 1rem !important;
    padding-top: 0 !important;
  }

  .cards__wrapper .card {
    justify-content: space-evenly;
  }

  .cards--numbered .card__count {
    margin-left: auto;
    margin-right: auto;
    left: 0;
    right: 0;
  }

  .block--full-width .block__image--overlap {
    display: none;
  }
}

/* .block--img-bubble .btn-group {
margin-top: 2rem;
} */

.block__content--center {
  text-align: center;
}

.block__image--overlap {
  position: absolute;
  bottom: 0;
  height: 380px;
}

.process {
  margin: 5rem 0;
}

.process__title {
  text-align: center;
  margin-bottom: 3.75rem;
}

.process__items {
  margin: 0;
  padding: 0;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-flex-direction: row;
  flex-direction: row;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}



.form__count {
  color: #595959;
}

.form__label {
  display: block;
}

.form__radio-group {
  margin: 1rem 0;
}

.form__radio-group .form__radio {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  border: 1px solid #E4E4E4;
  margin-right: 5px;
  position: relative;
  top: 4px;
}

.form__radio-group .form__radio:checked {
  background: #004F87;
  box-shadow: inset 0 0 0 4.5px #FFFFFF;
}

.form--lg {
  margin: 5rem auto;
  width: 100%;
  max-width: 720px;
}

.form--checklist {
  margin-top: 2rem;
}

.form--checklist .form__wrapper {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: row;
  flex-direction: row;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  margin-bottom: 2rem;
}

.form--checklist .form__label {
  margin-right: 2rem;
}

.form--checklist .form__label:last-child {
  margin-right: 0;
}

.form--checklist .form__radio-group {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: row;
  flex-direction: row;
  margin: 0;
}

.list {
  margin: 1rem 0 1.5rem 0;
  padding: 0;
}

.list__item {
  list-style-type: none;
}

.list--checklist .list__item {
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: baseline;
  align-items: baseline;
}

.list--checklist .list__item:before {
  content: "";
  width: 13px;
  height: 10px;
  margin-top: 0;
  margin-right: 10px;
  background: url(../img/icons/checkmark.svg) no-repeat center;
}

.tabs__title {
  margin-bottom: 1.6rem;
}

.tabs__item {
  border-radius: 8px;
  background-color: #ffffff;
  box-shadow: 0px 0px 12px 0px rgba(0, 0, 0, .15);
  margin-bottom: 18px;
}

.tabs__item:hover {
  box-shadow: 0px 0px 12px 0px rgba(0, 0, 0, .2);
}

.tabs__item:last-of-type {
  margin-bottom: 0;
}

.tabs__item.active .tabs__item-header::before {
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
  transition: ease-in-out 0.3s all;
}

.tabs__item:hover .tabs__header {
  color: #0374c7;
}

.tabs__item-header {
  font-weight: 500;
  color: #333333;
  text-align: left;
  line-height: normal;
  position: relative;
  cursor: pointer;
  padding: 20px;
  font-family: 'Roboto-Medium', 'Roboto Medium', 'Roboto', sans-serif;
  font-size: 20px;
}

.tabs__item-header::after {
  position: absolute;
  content: " ";
  width: 18px;
  height: 3px;
  border-radius: 8px;
  background: #004e87;
  top: 0;
  bottom: 0;
  margin: auto;
  right: 20px;
  pointer-events: none;
}

.tabs__item-header::before {
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
  position: absolute;
  content: " ";
  width: 18px;
  height: 3px;
  border-radius: 8px;
  background: #004e87;
  top: 0;
  bottom: 0;
  margin: auto;
  right: 20px;
  pointer-events: none;
  transition: ease-in-out 0.3s all;
}

.tabs__item-content {
  display: none;
  margin-top: 0;
  padding: 20px;
  padding-top: 0;
}

@media (max-width: 768px) {
  .package__top {
    padding: 0 20px;
  }
}

.package__top-heading {
  max-width: 775px;
  color: #2b2f36;
  text-align: center;
  line-height: normal;
  width: 100%;
  display: block;
  font-size: 42px;
  margin: 0 auto;
  margin-bottom: 2.8125rem;
}

.package__top-text {
  max-width: 1085px;
  margin: 0 auto;
  color: #333333;
  font-size: 16px;
  text-align: center;
  width: 100%;
  display: block;
  line-height: 24px;
}

@media (max-width: 768px) {
  .package__top-heading {
    text-align: left;
    font-size: 1.75rem;
  }

  .package__top-text {
    text-align: left;
  }
}

.package__toggle-holder {
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  margin-bottom: 40px;
}

.package__toggle-title {
  font-size: 16px;
  font-weight: 700;
  color: #333333;
  text-align: left;
  line-height: 24px;
  margin-right: 20px;
  display: block;
}

.package__toggle {
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  cursor: pointer;
}

.package__toggle.toggled .package__toggle-label:first-of-type {
  color: #333333;
}

.package__toggle.toggled .package__toggle-label:last-of-type {
  color: #004e87;
}

.package__toggle.toggled .package__toggle-bar span {
  transition: ease-in-out 0.3s all;
  -webkit-transform: translateX(26px);
  transform: translateX(26px);
}

.package__toggle-label:first-of-type {
  color: #004e87;
}

.package__toggle-label:last-of-type {
  color: #333333;
}

.package__toggle-bar {
  margin: 0 15px;
  min-width: 54px;
  max-width: 54px;
  min-height: 18px;
  position: relative;
  border-radius: 100px;
  border: 1px solid #e4e4e4;
  background-color: #ffffff;
  box-sizing: border-box;
}

.package__toggle-bar span {
  width: 26px;
  height: 26px;
  background-color: #004e87;
  border-radius: 100%;
  box-sizing: border-box;
  position: absolute;
  top: -5px;
  transition: ease-in-out 0.3s all;
  -webkit-transform: translateX(0px);
  transform: translateX(0px);
}

.package__boxes {
  max-width: 1420px;
}

@media (max-width: 1450px) {
  .package__boxes {
    max-width: 1320px;
  }
}

.package__boxes .row {
  margin: 0 -25px;
}

.package__boxes .col-xs-12 {
  padding-left: 25px;
  padding-right: 25px;
}

.package__box {
  width: 100%;
  border-radius: 8px;
  background-color: #ffffff;
  box-sizing: border-box;
  box-shadow: 0px 0px 12px 0px rgba(0, 0, 0, 0.15);
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.package__box-items {
  margin-bottom: 1rem;
}

@media (max-width: 1240px) {
  .package__box {
    margin-bottom: 30px;
  }
}

.package__box.highlighted {
  border: 2px solid #f6a100;
  background-color: #ffffff;
  box-sizing: border-box;
  box-shadow: 0px 0px 18px 0px rgba(0, 0, 0, 0.25);
}

.package__box.yearly-active .yearly {
  display: inline;
}

.package__box.yearly-active .monthly {
  display: none;
}

.package__box .yearly {
  display: none;
}

.package__box-top {
  background: #6fa7db;
  width: 100%;
  min-height: 50px;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  font-size: 20px;
  color: #FFFFFF;
  text-transform: uppercase;
  font-weight: 500;
}

.package__box-top-content {
  text-align: center;
  padding-top: 20px;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  border-bottom: 1px solid #E4E4E4;
  margin-bottom: 19px;
  padding-bottom: 19px;
}

.package__box-top-title {
  font-size: 28px;
  line-height: 28px;
  letter-spacing: -1px;
  display: block;
}

.package__box-top-title small {
  font-size: 14px;
  letter-spacing: 0;
  margin-left: -4px;
}

.package__box-bottom-content {
  padding-bottom: 22px;
  padding-left: 30px;
  padding-right: 30px;
  display: flex;
  height: 100%;
  flex-direction: column;
}

.package__box-top-smalltitle {
  font-size: 12px;
  line-height: 12px;
  margin: 4px 0 1.5rem 0;
}

.package__box-top-label {
  display: block;
  background: #6fa7db;
  color: #FFFFFF;
  font-weight: 500;
  font-size: 16px;
  line-height: 16px;
  padding: 2px 4px;
  margin-top: 10px;
}

.package__box-bottom-title {
  width: 100%;
  text-align: center;
  display: block;
  font-weight: 500;
  color: #6fa7db;
  font-size: 20px;
  line-height: 20px;
}

.package__box-items ul {
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 16px;
  margin-top: 11px;
  line-height: 40px;
}

.package__box-btn-border {
  font-size: 16px;
  width: 100%;
  min-height: 40px;
  max-height: 40px;
  border-radius: 8px;
  border: 1px solid #6fa7db;
  font-weight: 500;
  color: #6fa7db;
  text-align: center;
  line-height: normal;
  text-decoration: none;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  max-width: 252px;
  margin: 0 auto;
  margin-top: auto;
}

.package__box-btn {
  font-size: 16px;
  width: 100%;
  min-height: 40px;
  max-height: 40px;
  border-radius: 8px;
  background: #6fa7db;
  font-weight: 500;
  color: #ffffff;
  text-align: center;
  line-height: normal;
  text-decoration: none;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  max-width: 252px;
  margin: 0 auto;
  margin-top: 21px;
}

.package__footer {
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  margin-top: 50px;
}

.package__table {
  margin-top: 40px;
}

.package__table .container {
  max-width: 1400px;
}

.package__table-labels-top {
  border-bottom: #E4E4E4 1px solid;
  min-height: 244.5px;
}

.package__table-inner {
  display: -webkit-flex;
  display: flex;
  padding-top: 35px;
}

@media (max-width: 1170px) {
  .package__table-inner {
    overflow: auto;
    margin-right: -20px;
  }
}

.package__table-item {
  width: 100%;
}

.package__table-item.highlighted {
  border: 1px solid red;
  border-radius: 8px;
}

.package__table-item.highlighted .package__table-item-value {
  border-left: 0;
}

.package__table-item-value {
  text-align: center;
  border-left: #E4E4E4 1px solid;
  border-bottom: #E4E4E4 1px solid;
  min-height: 51px;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  font-size: 16px;
}
@media(max-width: 992px){
  .package__table-item-value:before{
    font-size: 16px !important;
  }
  .package__table-item-value:first-of-type, .package__table-item-value:last-of-type{
    border-bottom: #e4e4e4 1px solid;
  }
  .package__table-item-value {
    border-bottom: unset;
  }
}
.package__table-labels {
  max-width: 35%;
  min-width: 500px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

@media (max-width: 768px) {
  .package__table-labels {
    min-width: 300px;
    max-width: 300px;
  }
}

.package__table-labels-row {
  -webkit-flex-direction: column;
  flex-direction: column;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: flex-start;
  align-items: flex-start;
  border-bottom: #E4E4E4 1px solid;
  padding-right: 10px;
  padding-left: 20px;
  min-height: 51px;
  max-height: 51px;
}

.package__table-labels-row.open {
  max-height: unset;
}

.package__table-labels-row.open .package__table-labels-row-info {
  visibility: visible;
  displaY: block;
}

.package__table-labels-row--bold {
  font-weight: bold;
}

.package__table-labels-info {
  width: 16px;
  height: 16px;
  border-radius: 100%;
  background-color: #004e87;
  font-weight: 900;
  color: #FFFFFF;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  font-size: 10px;
  line-height: 10px;
  cursor: pointer;
}

.package__table-labels-row-top {
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  width: 100%;
  margin-top: 11px;
}

.package__table-labels-row-info {
  margin-bottom: 10px;
  visibility: hidden;
  displaY: none;
}

.package__table-labels-row-info p {
  color: #777;
  font-size: 12px;
  line-height: 20px;
  margin: 0;
}

.package__table-item-top {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-align-items: center;
  align-items: center;
  padding-top: 20px;
  padding-bottom: 20px;
  width: 100%;
}

.package__table-item-title {
  font-weight: 500;
  color: #6fa7db;
  font-size: 20px;
  text-transform: uppercase;
}

@media (max-width: 1170px) {
  .package__table-item {
    min-width: 250px;
    -webkit-flex-shrink: 0;
    flex-shrink: 0;
    max-width: 250px;
  }
}

.package__table-item .package__box-top-content {
  flex-shrink: 0;
  border-bottom: 0;
  margin-bottom: 0;
  padding-bottom: 0;
}

.package__table-item .yearly,
.package__table-item.yearly-active .yearly,
.package__table-item.monthly-active .monthly {
  display: inline;
}

.package__table-item .monthly,
.package__table-item.monthly-active .yearly,
.package__table-item.yearly-active .monthly {
  display: none;
}

.package__table-item .btn {
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}

.package__table-category {
  margin-top: 16.5px;
}

.package__table-category-title {
  font-size: 20px;
  font-weight: 500;
  color: #333333;
  text-align: left;
}

@media (max-width: 768px) {
  .package__table-category-title {
    font-size: 16px;
  }
}

.package__table-labels-bottom {
  padding-left: 15px;
  margin-top: 40px;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  min-height: 221px;
  padding-top: 45px;
}

.package__table-labels-bottom .package__toggle-holder {
  margin-top: 19px;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}

.package__table-labels-bottom-title {
  font-size: 20px;
  color: #333333;
  font-weight: 500;
}

.package__table-labels-bottom-link {
  color: #004e87;
  margin-top: auto;
}

.package__table-item-top-label {
  width: 100%;
  min-height: 41px;
  max-height: 41px;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
  background-color: #f6a100;
  margin-top: -55px;
  z-index: 9;
  width: calc(100% + 2px);
  margin-bottom: 13px;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  text-align: center;
  color: #FFFFFF;
  font-weight: 700;
  font-size: 16px;
}

.hamburger {
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  cursor: pointer;
  transition-property: opacity, -webkit-filter;
  transition-property: opacity, filter;
  transition-property: opacity, filter, -webkit-filter;
  transition-duration: .15s;
  transition-timing-function: linear;
  font: inherit;
  color: inherit;
  text-transform: none;
  background-color: transparent;
  border: 0;
  margin: 0;
  overflow: visible;
  z-index: 101;
}

.hamburger.is-active .hamburger-inner {
  background-color: #FFFFFF;
  width: 32px !important;
}

.hamburger.is-active .hamburger-inner:before, .hamburger.is-active .hamburger-inner:after {
  background-color: #FFFFFF;
  width: 32px !important;
}

@media (min-width: 992px) {
  .hamburger {
    display: none;
  }
}

.hamburger-box {
  width: 28px;
  height: 22px;
  display: inline-block;
  position: relative;
}

.hamburger-inner {
  display: block;
  top: 50%;
  margin-top: -2px;
  width: 28px;
  height: 4px;
  background-color: #FFFFFF;
  position: absolute;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  transition-duration: .15s;
  transition-timing-function: ease;
}

.hamburger-inner:before, .hamburger-inner:after {
  width: 28px;
  height: 4px;
  background-color: #FFFFFF;
  position: absolute;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  transition-duration: .15s;
  transition-timing-function: ease;
}

.hamburger-inner:after {
  width: 28px;
  right: 0;
  left: auto;
}

.hamburger-inner:before, .hamburger-inner:after {
  content: "";
  display: block;
}

.hamburger-inner:before {
  top: -10px;
  width: 28px;
  left: auto;
  right: 0;
}

.hamburger-inner:after {
  bottom: -10px;
}

.hamburger--spin .hamburger-inner {
  transition-duration: .22s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--spin .hamburger-inner:before {
  transition: top 0.1s 0.25s ease-in, opacity 0.1s ease-in;
}

.hamburger--spin .hamburger-inner:after {
  transition: bottom 0.1s 0.25s ease-in, -webkit-transform 0.22s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: bottom 0.1s 0.25s ease-in, transform 0.22s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: bottom 0.1s 0.25s ease-in, transform 0.22s cubic-bezier(0.55, 0.055, 0.675, 0.19), -webkit-transform 0.22s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--spin.is-active .hamburger-inner {
  -webkit-transform: rotate(225deg);
  transform: rotate(225deg);
  transition-delay: .12s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}

.hamburger--spin.is-active .hamburger-inner:before {
  top: 0;
  opacity: 0;
  transition: top 0.1s ease-out, opacity 0.1s 0.12s ease-out;
}

.hamburger--spin.is-active .hamburger-inner:after {
  bottom: 0;
  -webkit-transform: rotate(-90deg);
  transform: rotate(-90deg);
  transition: bottom 0.1s ease-out, -webkit-transform 0.22s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: bottom 0.1s ease-out, transform 0.22s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: bottom 0.1s ease-out, transform 0.22s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1), -webkit-transform 0.22s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1);
}