.timeline {
  opacity: 0;
  -webkit-transition: opacity 0.2s ease-in-out;
  transition: opacity 0.2s ease-in-out;
  margin: 0;
  position: relative;
  border: 1px solid #ddd;
}

.timeline.has-shadow .timeline__events:after, .timeline.has-shadow-sm .timeline__events:after {
  content: '';
  display: block;
  height: 100%;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 2;
}

.timeline.has-shadow .timeline__events:after {
  -webkit-box-shadow: inset 0px 0px 17px 7px rgba(0, 0, 0, 0.21);
          box-shadow: inset 0px 0px 17px 7px rgba(0, 0, 0, 0.21);
}

.timeline.has-shadow-sm .timeline__events:after {
  -webkit-box-shadow: inset 0px 0px 13px 3px rgba(0, 0, 0, 0.21);
          box-shadow: inset 0px 0px 13px 3px rgba(0, 0, 0, 0.21);
}

.timeline--loaded {
  opacity: 1;
  background: #f8f9fa;
  color: #212529;
}

.timeline__wrapper {
  position: relative;
  width: 100%;
  height: 4.6875rem;
}

.timeline__container {
  position: relative;
  height: 4.6875rem;
  bottom: 0;
  left: 0;
  right: 0;
  background: #f8f9fa;
  overflow-y: hidden;
  overflow-x: scroll;
  z-index: 9;
}

.timeline__dates {
  position: relative;
  height: 100%;
  background: #f8f9fa;
}

.timeline__dates::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 1px;
  background: #ddd;
  top: 0;
  -webkit-transform: translateY(1.5rem);
          transform: translateY(1.5rem);
}

.timeline__dates.has-scroll {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.timeline__dates.has-scroll .timeline__line {
  left: 0%;
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

.timeline__dates.has-scroll + .timeline__navigation {
  display: block;
}

.timeline__dates.has-scroll + .timeline__navigation + .timeline__navigation {
  display: block;
}

.timeline__dates.has-scroll::-webkit-scrollbar {
  width: 0px;
  background: transparent;
}

[data-arrows="false"] .timeline__dates + .timeline__navigation {
  display: none;
}

[data-arrows="false"] .timeline__dates + .timeline__navigation + .timeline__navigation {
  display: none;
}

.timeline__line {
  position: absolute;
  z-index: 1;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  top: 1.5rem;
  right: 0;
  height: 1px;
  background-color: #ddd;
}

.timeline__date {
  position: absolute;
  bottom: 0;
  z-index: 99;
  text-align: center;
  padding-top: 1.5rem;
  color: #6c757d;
  text-decoration: none;
  background-color: transparent;
}

.timeline__date::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translate(-50%, -50%) scale(1);
          transform: translate(-50%, -50%) scale(1);
  -webkit-transform-origin: 50% 50%;
          transform-origin: 50% 50%;
  height: .625rem;
  width: .625rem;
  z-index: 9999;
  border-radius: 50%;
  background-color: #ddd;
  border: 1px solid rgba(221, 221, 221, 0.15);
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}

.timeline__date::after {
  content: attr(data-date);
  position: absolute;
  font-size: 1rem;
  color: #212529;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, calc(-50% + 1rem));
          transform: translate(-50%, calc(-50% + 1rem));
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

.timeline__date:hover {
  text-decoration: none;
  color: inherit;
}

.timeline__date:hover::before {
  background-color: #adb5bd;
  border-color: #adb5bd;
  -webkit-transform: translate(-50%, -50%) scale(1.125);
          transform: translate(-50%, -50%) scale(1.125);
}

.timeline__event-dots {
  width: 100%;
  right: 0;
  left: 0;
  z-index: 15;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  list-style: none;
  bottom: 0;
  position: relative;
  margin-top: 1.5rem;
}

.timeline__date--selected {
  pointer-events: none;
}

.timeline__date--selected::before {
  background-color: #666666;
}

.timeline__date--selected::after {
  font-weight: bold;
  font-size: 1.25rem;
}

.timeline__events {
  position: relative;
  width: 100%;
  overflow: hidden;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

@media (min-width: 768px) {
  .timeline__events {
    height: auto;
    min-height: 37.5rem;
  }
}

.timeline__events ol {
  padding: 0;
  list-style: none;
}

@media (max-width: 767.98px) {
  .timeline__events {
    min-height: 550px;
  }
}

.timeline__event {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 0;
  padding-left: 2rem;
  padding-right: 2rem;
  opacity: 0;
  -webkit-animation-duration: 0.4s;
          animation-duration: 0.4s;
  -webkit-animation-timing-function: ease-in-out;
          animation-timing-function: ease-in-out;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-transform: translateX(-100%);
          transform: translateX(-100%);
}

[data-transition="fade"] .timeline__event {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

@media (min-width: 768px) {
  .timeline__event {
    padding-left: 4rem;
    padding-right: 4rem;
  }
}

.timeline__animate-content {
  position: relative;
  -webkit-animation-duration: 0.6s;
          animation-duration: 0.6s;
  -webkit-animation-timing-function: ease-in-out;
          animation-timing-function: ease-in-out;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
}

[data-transition="slide"] .timeline__animate-content, [data-transition=""] .timeline__animate-content {
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

[data-transition="fade"] .timeline__animate-content {
  -webkit-transform: translateX(-3rem);
          transform: translateX(-3rem);
}

.timeline__event--selected {
  z-index: 2;
  opacity: 1;
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

.timeline__event--selected .timeline__animate-content {
  z-index: 2;
  -webkit-transform: translateX(0);
          transform: translateX(0);
  opacity: 1;
}

.timeline__temp-disable {
  pointer-events: none !important;
  -webkit-user-select: none !important;
     -moz-user-select: none !important;
      -ms-user-select: none !important;
          user-select: none !important;
  cursor: not-allowed !important;
  opacity: .7;
}

.timeline__temp-disable:hover {
  background: initial;
}

.timeline__event--enter-right, .timeline__event--leave-right {
  -webkit-animation-name: enter-right;
          animation-name: enter-right;
}

[data-transition="fade"] .timeline__event--enter-right, [data-transition="fade"] .timeline__event--leave-right {
  -webkit-animation-name: fade-in-out;
          animation-name: fade-in-out;
}

.timeline__event--enter-left, .timeline__event--leave-left {
  -webkit-animation-name: enter-left;
          animation-name: enter-left;
}

[data-transition="fade"] .timeline__event--enter-left, [data-transition="fade"] .timeline__event--leave-left {
  -webkit-animation-name: fade-in-out;
          animation-name: fade-in-out;
}

.timeline__event--leave-right, .timeline__event--leave-left {
  animation-direction: reverse;
}

.timeline__content--enter-right, .timeline__content--leave-right {
  -webkit-animation-name: c-enter-right;
          animation-name: c-enter-right;
}

[data-transition="fade"] .timeline__content--enter-right, [data-transition="fade"] .timeline__content--leave-right {
  -webkit-animation-name: c-fade-out;
          animation-name: c-fade-out;
}

.timeline__content--enter-left, .timeline__content--leave-left {
  -webkit-animation-name: c-enter-left;
          animation-name: c-enter-left;
}

[data-transition="fade"] .timeline__content--enter-left, [data-transition="fade"] .timeline__content--leave-left {
  -webkit-animation-name: c-fade-in;
          animation-name: c-fade-in;
}

.timeline__content--leave-right, .timeline__content--leave-left {
  animation-direction: reverse;
}

.timeline__event-content {
  max-width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-transition: height 0.2s ease-in-out;
  transition: height 0.2s ease-in-out;
}

@media (min-width: 768px) {
  .timeline__event-content {
    height: 37.5rem;
  }
}

.timeline__event-item {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 2rem;
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .timeline__event-item {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
}

@media (max-width: 767.98px) {
  .timeline__event-item {
    top: 225px;
    padding: 0;
  }
  .timeline__event-item .milestones-wrapper {
    width: 100%;
  }
}

@media (max-width: 767.98px) {
  .timeline__event-item .event-milestones {
    padding: 0;
  }
}

.timeline__event-item .event-milestones .milestone {
  font-size: 1.5rem;
}

@media (max-width: 991.98px) {
  .timeline__event-item .event-milestones .milestone {
    font-size: 1.25rem;
  }
}

@media (max-width: 575.98px) {
  .timeline__event-item .event-milestones .milestone {
    font-size: 1rem;
  }
}

.timeline__btn {
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  bottom: auto;
  width: 2.1875rem;
  height: 2.1875rem;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  border-radius: 50%;
  opacity: 1;
  overflow: hidden;
  position: absolute;
  z-index: 99;
}

[data-arrows="false"] .timeline__btn {
  display: none;
}

@media (min-width: 768px) {
  .timeline__btn {
    width: 3.1875rem;
    height: 3.1875rem;
  }
}

.timeline__btn:hover {
  background: rgba(0, 0, 0, 0.3);
}

.timeline__btn:hover > span:before, .timeline__btn:hover > span:after {
  background-color: #ddd;
}

.timeline__btn-prev--inactive, .timeline__btn-next--inactive {
  pointer-events: none;
  opacity: .2;
}

.timeline__btn-next {
  right: 0.5rem;
}

.timeline__btn-prev {
  left: 0.5rem;
}

.timeline__btn-prev-icon, .timeline__btn-next-icon {
  display: inline-block;
  vertical-align: middle;
  width: 1.75rem;
  height: 1.75rem;
  position: relative;
  overflow: hidden;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  top: 50%;
  left: 50%;
}

@media (min-width: 768px) {
  .timeline__btn-prev-icon, .timeline__btn-next-icon {
    width: 2.75rem;
    height: 2.75rem;
  }
}

.timeline__btn-prev-icon:before, .timeline__btn-prev-icon:after, .timeline__btn-next-icon:before, .timeline__btn-next-icon:after {
  -webkit-transition: background-color 0.2s ease-out;
  transition: background-color 0.2s ease-out;
  content: "";
  position: absolute;
  left: 25%;
  right: 25%;
  height: 1px;
  background-color: #adb5bd;
  top: 50%;
}

.timeline__btn-prev-icon:before {
  -webkit-transform-origin: 0 100%;
          transform-origin: 0 100%;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.timeline__btn-prev-icon:after {
  -webkit-transform-origin: 0 0;
          transform-origin: 0 0;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

.timeline__btn-next-icon:before {
  -webkit-transform-origin: 100% 0;
          transform-origin: 100% 0;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.timeline__btn-next-icon:after {
  -webkit-transform-origin: 100% 100%;
          transform-origin: 100% 100%;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

.timeline__navigation {
  position: absolute;
  z-index: 99;
  bottom: 0;
  height: 4.6875rem;
  width: 1.5rem;
  color: #212529;
  display: none;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  text-align: center;
  background: #f8f9fa;
  font-size: 1.25rem;
  cursor: pointer;
}

.timeline__navigation i {
  position: absolute;
  height: 1.5rem;
  width: 1.5rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: 99;
}

.timeline__navigation--prev {
  left: 0;
  background: -webkit-gradient(linear, left top, right top, color-stop(10%, #f8f9fa), color-stop(35%, rgba(248, 249, 250, 0.75)), color-stop(60%, rgba(248, 249, 250, 0.5)), to(rgba(248, 249, 250, 0)));
  background: linear-gradient(to right, #f8f9fa 10%, rgba(248, 249, 250, 0.75) 35%, rgba(248, 249, 250, 0.5) 60%, rgba(248, 249, 250, 0) 100%);
}

.timeline__navigation--prev i {
  left: 0.25rem;
}

.timeline__navigation--next {
  right: 0;
  background: -webkit-gradient(linear, right top, left top, color-stop(10%, #f8f9fa), color-stop(35%, rgba(248, 249, 250, 0.75)), color-stop(60%, rgba(248, 249, 250, 0.5)), to(rgba(248, 249, 250, 0)));
  background: linear-gradient(to left, #f8f9fa 10%, rgba(248, 249, 250, 0.75) 35%, rgba(248, 249, 250, 0.5) 60%, rgba(248, 249, 250, 0) 100%);
}

.timeline__navigation--next i {
  right: 0.25rem;
}

.timeline__navigation--inactive {
  cursor: not-allowed;
}

.timeline__navigation--inactive i {
  opacity: .2;
}

.box-shadow {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 10;
  -webkit-box-shadow: inset 0px 0px 17px 7px rgba(0, 0, 0, 0.21);
          box-shadow: inset 0px 0px 17px 7px rgba(0, 0, 0, 0.21);
  margin-left: -5%;
  margin-right: -5%;
}

.shape-right-chevron {
  height: 200px;
  width: 200px;
  -webkit-clip-path: polygon(75% 0%, 100% 50%, 75% 100%, 0% 100%, 25% 50%, 0% 0%);
          clip-path: polygon(75% 0%, 100% 50%, 75% 100%, 0% 100%, 25% 50%, 0% 0%);
  background: #748742;
}

.shape-chevron-block {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 49%;
  height: 450px;
  -webkit-clip-path: polygon(0% 0%, 75% 0%, 100% 50%, 75% 100%, 0% 100%);
          clip-path: polygon(0% 0%, 75% 0%, 100% 50%, 75% 100%, 0% 100%);
  background: #365262;
}

@media (max-width: 767.98px) {
  .shape-chevron-block {
    right: 0;
    width: 100%;
    -webkit-clip-path: none;
            clip-path: none;
    height: 225px;
    border-bottom: 1px solid #ddd;
  }
}

@media (min-width: 768px) {
  .shape-chevron-block {
    height: 600px;
  }
}

.shape-chevron-block.light {
  background: #dce0e3;
}

.event-image {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.event-image img {
  max-width: 75%;
}

@media (max-width: 767.98px) {
  .event-image img {
    max-height: 200px;
  }
}

.bg-cover {
  background-size: cover;
  background-position: center center;
}

@-webkit-keyframes c-enter-right {
  0% {
    opacity: 0;
    -webkit-transform: translateX(50%);
            transform: translateX(50%);
  }
  50% {
    opacity: .25;
    -webkit-transform: translateX(25%);
            transform: translateX(25%);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0px);
            transform: translateX(0px);
  }
}

@keyframes c-enter-right {
  0% {
    opacity: 0;
    -webkit-transform: translateX(50%);
            transform: translateX(50%);
  }
  50% {
    opacity: .25;
    -webkit-transform: translateX(25%);
            transform: translateX(25%);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0px);
            transform: translateX(0px);
  }
}

@-webkit-keyframes c-enter-left {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
  50% {
    opacity: 0.25;
    -webkit-transform: translateX(-25%);
            transform: translateX(-25%);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0px);
            transform: translateX(0px);
  }
}

@keyframes c-enter-left {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
  50% {
    opacity: 0.25;
    -webkit-transform: translateX(-25%);
            transform: translateX(-25%);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0px);
            transform: translateX(0px);
  }
}

@-webkit-keyframes enter-right {
  0% {
    opacity: 1;
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0%);
            transform: translateX(0%);
  }
}

@keyframes enter-right {
  0% {
    opacity: 1;
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0%);
            transform: translateX(0%);
  }
}

@-webkit-keyframes enter-left {
  0% {
    opacity: 1;
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0%);
            transform: translateX(0%);
  }
}

@keyframes enter-left {
  0% {
    opacity: 1;
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0%);
            transform: translateX(0%);
  }
}

@-webkit-keyframes c-fade-in {
  0% {
    opacity: 0;
    -webkit-transform: translateX(3rem);
            transform: translateX(3rem);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}

@keyframes c-fade-in {
  0% {
    opacity: 0;
    -webkit-transform: translateX(3rem);
            transform: translateX(3rem);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}

@-webkit-keyframes c-fade-out {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-3rem);
            transform: translateX(-3rem);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}

@keyframes c-fade-out {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-3rem);
            transform: translateX(-3rem);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}

@-webkit-keyframes fade-in-out {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes fade-in-out {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

.a-pos-right {
  right: 0 !important;
}

.a-pos-left {
  left: 0 !important;
}

.a-pos-top {
  top: 0 !important;
}

.a-pos-bottom {
  bottom: 0 !important;
}

.a-pos-right-auto {
  right: auto !important;
}

.a-pos-left-auto {
  left: auto !important;
}

.a-pos-top-auto {
  top: auto !important;
}

.a-pos-bottom-auto {
  bottom: auto !important;
}

.scale-1 {
  -webkit-transform: scale(1.1) !important;
          transform: scale(1.1) !important;
}

.scale-2 {
  -webkit-transform: scale(1.2) !important;
          transform: scale(1.2) !important;
}

.scale-3 {
  -webkit-transform: scale(1.3) !important;
          transform: scale(1.3) !important;
}

.scale-4 {
  -webkit-transform: scale(1.4) !important;
          transform: scale(1.4) !important;
}

.scale-1 {
  -webkit-transform: scale(1.5) !important;
          transform: scale(1.5) !important;
}

@media (min-width: 576px) {
  .a-pos-sm-right {
    right: 0 !important;
  }
  .a-pos-sm-left {
    left: 0 !important;
  }
  .a-pos-sm-top {
    top: 0 !important;
  }
  .a-pos-sm-bottom {
    bottom: 0 !important;
  }
  .a-pos-sm-right-auto {
    right: auto !important;
  }
  .a-pos-sm-left-auto {
    left: auto !important;
  }
  .a-pos-sm-top-auto {
    top: auto !important;
  }
  .a-pos-sm-bottom-auto {
    bottom: auto !important;
  }
  .scale-sm-1 {
    -webkit-transform: scale(1.1) !important;
            transform: scale(1.1) !important;
  }
  .scale-sm-2 {
    -webkit-transform: scale(1.2) !important;
            transform: scale(1.2) !important;
  }
  .scale-sm-3 {
    -webkit-transform: scale(1.3) !important;
            transform: scale(1.3) !important;
  }
  .scale-sm-4 {
    -webkit-transform: scale(1.4) !important;
            transform: scale(1.4) !important;
  }
  .scale-sm-1 {
    -webkit-transform: scale(1.5) !important;
            transform: scale(1.5) !important;
  }
}

@media (min-width: 768px) {
  .a-pos-md-right {
    right: 0 !important;
  }
  .a-pos-md-left {
    left: 0 !important;
  }
  .a-pos-md-top {
    top: 0 !important;
  }
  .a-pos-md-bottom {
    bottom: 0 !important;
  }
  .a-pos-md-right-auto {
    right: auto !important;
  }
  .a-pos-md-left-auto {
    left: auto !important;
  }
  .a-pos-md-top-auto {
    top: auto !important;
  }
  .a-pos-md-bottom-auto {
    bottom: auto !important;
  }
  .scale-md-1 {
    -webkit-transform: scale(1.1) !important;
            transform: scale(1.1) !important;
  }
  .scale-md-2 {
    -webkit-transform: scale(1.2) !important;
            transform: scale(1.2) !important;
  }
  .scale-md-3 {
    -webkit-transform: scale(1.3) !important;
            transform: scale(1.3) !important;
  }
  .scale-md-4 {
    -webkit-transform: scale(1.4) !important;
            transform: scale(1.4) !important;
  }
  .scale-md-1 {
    -webkit-transform: scale(1.5) !important;
            transform: scale(1.5) !important;
  }
}

@media (min-width: 992px) {
  .a-pos-lg-right {
    right: 0 !important;
  }
  .a-pos-lg-left {
    left: 0 !important;
  }
  .a-pos-lg-top {
    top: 0 !important;
  }
  .a-pos-lg-bottom {
    bottom: 0 !important;
  }
  .a-pos-lg-right-auto {
    right: auto !important;
  }
  .a-pos-lg-left-auto {
    left: auto !important;
  }
  .a-pos-lg-top-auto {
    top: auto !important;
  }
  .a-pos-lg-bottom-auto {
    bottom: auto !important;
  }
  .scale-lg-1 {
    -webkit-transform: scale(1.1) !important;
            transform: scale(1.1) !important;
  }
  .scale-lg-2 {
    -webkit-transform: scale(1.2) !important;
            transform: scale(1.2) !important;
  }
  .scale-lg-3 {
    -webkit-transform: scale(1.3) !important;
            transform: scale(1.3) !important;
  }
  .scale-lg-4 {
    -webkit-transform: scale(1.4) !important;
            transform: scale(1.4) !important;
  }
  .scale-lg-1 {
    -webkit-transform: scale(1.5) !important;
            transform: scale(1.5) !important;
  }
}

@media (min-width: 1200px) {
  .a-pos-xl-right {
    right: 0 !important;
  }
  .a-pos-xl-left {
    left: 0 !important;
  }
  .a-pos-xl-top {
    top: 0 !important;
  }
  .a-pos-xl-bottom {
    bottom: 0 !important;
  }
  .a-pos-xl-right-auto {
    right: auto !important;
  }
  .a-pos-xl-left-auto {
    left: auto !important;
  }
  .a-pos-xl-top-auto {
    top: auto !important;
  }
  .a-pos-xl-bottom-auto {
    bottom: auto !important;
  }
  .scale-xl-1 {
    -webkit-transform: scale(1.1) !important;
            transform: scale(1.1) !important;
  }
  .scale-xl-2 {
    -webkit-transform: scale(1.2) !important;
            transform: scale(1.2) !important;
  }
  .scale-xl-3 {
    -webkit-transform: scale(1.3) !important;
            transform: scale(1.3) !important;
  }
  .scale-xl-4 {
    -webkit-transform: scale(1.4) !important;
            transform: scale(1.4) !important;
  }
  .scale-xl-1 {
    -webkit-transform: scale(1.5) !important;
            transform: scale(1.5) !important;
  }
}

.worldwide-bg {
  background-color: #000107;
  min-height: 450px;
  background-position-x: 35%;
}

@media (min-width: 768px) {
  .worldwide-bg {
    background-repeat: no-repeat;
    background-position-x: 450px;
  }
}
