.card {
    position: absolute;
    left: 100%;
    top: 0;
    width: 250px;
    visibility: hidden;
    opacity: 0;
    z-index: -1;
    padding: 15px;
    line-height: 1;
    box-sizing: border-box;
    background: rgba(255,255,255,0.96);
    box-shadow: 0 0 10px rgba(0,0,0,0.2);
    -webkit-transform: translateX(0);
    transform: translateX(0);
    transition: opacity 200ms linear, -webkit-transform 150ms ease-out;
    transition: opacity 200ms linear, transform 150ms ease-out;
}
.card.card--left {
    right: 100%;
    -webkit-transform: translateX(-18px);
    transform: translateX(-18px);
}
.timeline__container .card--left {
    left: auto;
}
/**
 * Directional arrows that sit outside the cards. Padding is added in order
 * to create a larger hover target.
 */
.card__arrow {
    position: absolute;
    top: 70px;
    left: -27px;
    width: 27px;
    overflow: hidden;
    height: 50px;
    /**
       * Trick to creating a shadow for the arrow. Create a fake element underneath
       * the actual arrow that can handle a shadow. The shape isn't exactly the
       * same, but it is hard to tell given the level of blur on the shadow.
       */
}
.card__arrow:after {
    content: '';
    width: 0;
    height: 0;
    border-top: 25px inset transparent;
    border-bottom: 25px inset transparent;
    border-right: 27px solid rgba(255,255,255,0.96);
    position: absolute;
    left: 0;
}
.card__arrow:before {
    content: '';
    width: 27px;
    height: 27px;
    position: absolute;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    top: 16px;
    left: 16px;
    box-shadow: 1px 0px 20px rgba(0,0,0,0.2);
}
.card--left .card__arrow {
    left: auto;
    right: -27px;
}
.card--left .card__arrow:after {
    border-right: 0;
    border-left: 27px solid rgba(255,255,255,0.96);
}
.card--left .card__arrow:before {
    left: auto;
    right: 13.5px;
}
.card__content {
    padding: 20px;
}
.card__button {
    overflow: hidden;
    background-color: rgba(0,0,0,0.1);
    display: block;
    padding: 20px 20px 20px 70px;
    position: relative;
}
.card__button:hover {
    text-decoration: none;
    background-color: rgba(0,0,0,0.18);
}
/* Adding in icon font */
@font-face {
    font-family: 'icons';
    src: url("fonts/T100-icons.woff2") format('woff2'), url("fonts/T100-icons.woff") format('woff');
}
[data-icon]::before {
    display: inline-block;
    font-family: 'icons';
    content: attr(data-icon);
    speak: none;
    font-weight: normal;
    font-variant: normal;
    font-style: normal;
    text-transform: none;
    line-height: 1em;
    -webkit-font-smoothing: antialiased; /* Prefixed, since autoprefixer doesn't handle this */
    -moz-osx-font-smoothing: grayscale; /* Prefixed, since autoprefixer doesn't handle this */
}
.body--timeline-is-visible {
    height: 100vh;
    /**
       * On narrow screens, ensure the overflow is hidden
       */
    /**
       * Don't center flexed items on small height screens.
       */
}
@media (max-width: 479px) {
    .body--timeline-is-visible {
        overflow: hidden;
    }
}
@media (max-height: 479px) {
    .body--timeline-is-visible {
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: flex-start;
        overflow: scroll;
    }
}
.collection__main {
    padding: 29px 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
}
/* Left and Right Arrows */
.crawl-control {
    box-sizing: content-box;
    background: none;
    border: 0;
    outline: 0;
    color: inherit;
    line-height: normal;
    overflow: visible;
    padding: 0;
    position: fixed;
    z-index: 1;
    cursor: pointer;
    padding: 20px 0;
    font-size: 55px;
    line-height: 55px;
    color: #fff;
    top: 50%;
    text-shadow: 0 1px 15px rgba(0,0,0,0.35);
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    transition: opacity 250ms ease, color 250ms ease;
    opacity: 0;
    visibility: hidden;
    display: none;
}
.timeline .crawl-control{font-size: 100px;}
.crawl-control:hover {
    color: #121d54;
    opacity: 1 !important;
}
.crawl-control:active {
    opacity: 0.8 !important;
}
.crawl-control.crawl-control--initial {
    color: #fff;
    opacity: 0.75 !important;
}
.page--overlay .crawl-control {
    visibility: hidden;
}
@media screen and (max-width: 767px) {
    .timeline .crawl-control {font-size: 65px;}
}
@media (min-width: 681px) {
    .crawl-control--collection {
        display: block;
    }
}
@media (min-width: 480px) {
    .crawl-control--timeline {
        display: block;
    }
}
@media (orientation: landscape) {
    .crawl-control--timeline {
        display: none;
    }
}
@media (orientation: landscape) and (min-height: 480px) {
    .crawl-control--timeline {
        display: block;
    }
}
.crawl-control--visible {
    opacity: 0.75;
    visibility: visible;
}
.crawl-control--prev {
    left: 15px;
}
.crawl-control--next {
    right: 15px;
}
.collection_main {
    padding-top: 15px;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
}
.collection-photo {
    box-shadow: 0 1px 4px rgba(0,0,0,0.35);
}

@media screen and (min-width: 1200px) {
    .collection__link:hover .collection-photo,
    .collection__link:focus .collection-photo {
        box-shadow: 0 0 0 5px #121d54;
        transition: box-shadow 1ms 100ms ease-out;
        cursor: pointer;
    }
    .collection__link:hover .card,
    .collection__link:focus .card {
        z-index: 100;
        opacity: 1;
        visibility: visible;
        -webkit-transform: translateX($card-hover-offset);
        transform: translateX($card-hover-offset);
    }
    .collection__link:focus {
        outline: none;
    }
}

/* Responsive Collection Styles */
/* width sensitive */
@media (max-width: 680px) {
    .main {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        padding: 20px;
    }
    .main .collection-photo {
        display: block;
        height: 180px;
        margin: 7px;
    }
}
@media (max-width: 660px) {
    .main .collection-photo {
        height: 160px;
    }
}
@media (max-width: 540px) {
    .main .collection-photo {
        height: 140px;
    }
}
/* Full screen styles */
@media (min-width: 681px) {
    .collection_body {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-flex: 1;
        -ms-flex: 1 0 auto;
        flex: 1 0 auto;
    }
    .isIE11 .collection_body {
        height: 100vh;
    }
    .collection_main {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-flex: 1;
        -ms-flex: 1 0 auto;
        flex: 1 0 auto;
    }
    .collection {
        /* Allow for x-overflow */
        overflow-x: scroll;
        overflow-y: hidden;
        -webkit-overflow-scrolling: touch;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
        -webkit-box-flex: 1;
        -ms-flex: 1 0 auto;
        flex: 1 0 auto;
        margin-top: -70px;
        margin-bottom: -70px;
        -ms-overflow-style: none;
    }
    .collection .main {
        margin-top: 70px;
        margin-bottom: 70px;
    }
    .collection::-webkit-scrollbar {
        display: none;
    }
    .main {
        position: relative;
    }
    .collection-photo {
        position: absolute;
    }
}
/* height sensitive */
@media (max-height: 413px) {
    .collection_main {
        overflow-y: scroll;
    }
}
@media (min-width: 681px) and (min-height: 821px) {
    .collection_main {
        /* Cap the max height, for tall screens */
        max-height: 685px;
    }
}
.collection__toggle {
    position: absolute;
    right: 20px;
    top: -46px;
    display: block;
    padding: 0 14px;
    line-height: 28px;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 1px;
    cursor: pointer;
    outline: none;
    border: 1px solid #283a8f;
    background: transparent;
    z-index: 100;
    transition: background 200ms cubic-bezier(0.165, 0.84, 0.44, 1);
}
.collection__toggle:hover,
.collection__toggle:focus {
    background: #283b90;
    color:#fff;
}
.collection__toggle:active,
.collection__toggle.timeline--is-visible {
    color: #fff;
    background: #283b90;
}
/* Card Styles */
@media (max-width: 767px), (max-height: 479px) {
    .main .card {
        display: none;
    }
}
.main .card__arrow {
    top: calc(50% - 25px);
}
.main .card__content--collection {
    padding: 1.25em;
    font-size: 16px;
    line-height: 1.625em;
}
.main .card__running-time__logo {
    font-size: 1.8125em;
    display: inline-block;
    vertical-align: middle;
}
/* Responsive styles to scale cards */
@media (max-height: 730px) {
    .card .card__content--collection {
        font-size: 15px;
    }
}
@media (max-height: 680px) {
    .card .card__content--collection {
        padding: 15px;
        font-size: 14px;
    }
}
@media (max-height: 620px) {
    .card .card__content--collection {
        padding: 10px;
        font-size: 13px;
    }
}
@media (max-height: 550px) {
    .card .card__content--collection {
        padding: 5px;
        font-size: 12px;
    }
}
/* Animations for non-mobile screens */
@media (min-width: 681px) {
    .page--overlay .collection {
        -webkit-animation: collection--glass 5000ms ease-in-out 1 forwards, collection--glass-in 2500ms ease-out 5000ms 1 forwards;
        animation: collection--glass 5000ms ease-in-out 1 forwards, collection--glass-in 2500ms ease-out 5000ms 1 forwards;
    }
    .page--overlay .collection > .sidebar,
    .page--overlay .collection > .main {
        -webkit-animation: collection--scroll 8000ms cubic-bezier(0.25, 0.15, 0.75, 0.85) 1 forwards;
        animation: collection--scroll 8000ms cubic-bezier(0.25, 0.15, 0.75, 0.85) 1 forwards;
    }
    .page--overlay .header {
        -webkit-animation: collection--hide 3000ms linear 1 forwards, collection--fade 500ms ease-in 3000ms 1 forwards;
        animation: collection--hide 3000ms linear 1 forwards, collection--fade 500ms ease-in 3000ms 1 forwards;
    }
    .page--overlay .footer {
        -webkit-animation: collection--hide 3500ms linear 1 forwards, collection--fade 500ms ease-in 3500ms 1 forwards;
        animation: collection--hide 3500ms linear 1 forwards, collection--fade 500ms ease-in 3500ms 1 forwards;
    }
    .page--overlay .footer__text {
        -webkit-animation: collection--hide 4000ms linear 1 forwards, collection--fade 500ms ease-in 4000ms 1 forwards;
        animation: collection--hide 4000ms linear 1 forwards, collection--fade 500ms ease-in 4000ms 1 forwards;
    }
    .page--overlay .nav__item:nth-of-type(1) {
        -webkit-animation: collection--hide 5500ms linear 1 forwards, collection--fade 500ms ease-in 5500ms 1 forwards;
        animation: collection--hide 5500ms linear 1 forwards, collection--fade 500ms ease-in 5500ms 1 forwards;
    }
    .page--overlay .nav__item:nth-of-type(2) {
        -webkit-animation: collection--hide 6000ms linear 1 forwards, collection--fade 500ms ease-in 6000ms 1 forwards;
        animation: collection--hide 6000ms linear 1 forwards, collection--fade 500ms ease-in 6000ms 1 forwards;
    }
    .page--overlay .nav__item:nth-of-type(3) {
        -webkit-animation: collection--hide 6500ms linear 1 forwards, collection--fade 500ms ease-in 6500ms 1 forwards;
        animation: collection--hide 6500ms linear 1 forwards, collection--fade 500ms ease-in 6500ms 1 forwards;
    }
    .page--overlay .nav__item,
    .page--overlay .collection__toggle {
        -webkit-animation: collection--hide 7000ms linear 1 forwards, collection--fade 500ms ease-in 7000ms 1 forwards;
        animation: collection--hide 7000ms linear 1 forwards, collection--fade 500ms ease-in 7000ms 1 forwards;
    }
}
/* Animation Keyframes */
@-webkit-keyframes collection--scroll {
    0% {
        -webkit-transform: translate3d(-1200px, 0, 0);
        transform: translate3d(-1200px, 0, 0);
    }
    100% {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}
@keyframes collection--scroll {
    0% {
        -webkit-transform: translate3d(-1200px, 0, 0);
        transform: translate3d(-1200px, 0, 0);
    }
    100% {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}
@-webkit-keyframes collection--glass {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 0.35;
    }
}
@keyframes collection--glass {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 0.35;
    }
}
@-webkit-keyframes collection--glass-in {
    0% {
        opacity: 0.35;
    }
    100% {
        opacity: 1;
    }
}
@keyframes collection--glass-in {
    0% {
        opacity: 0.35;
    }
    100% {
        opacity: 1;
    }
}
@-webkit-keyframes collection--hide {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 0;
    }
}
@keyframes collection--hide {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 0;
    }
}
@-webkit-keyframes collection--fade {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}
@keyframes collection--fade {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}
/* Sidebar description styles */
.sidebar__header {
    font-size: 38px;
    line-height: 38px;
    color: #2b3992;
    text-transform: capitalize;
    text-align: left;
    font-weight: 300;
    padding: 0 !important;
    margin: 0 !important;
}
.sidebar__description{text-align: left;}
.sidebar__header:after{display: none !important;}
.sidebar__description,
.sidebar__nav {
    line-height: 24px;
    text-transform: uppercase;
    letter-spacing: 2px;
}
.sidebar__description {
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 2px;
    color: #0d0d0d;
}
.sidebar__nav {
    font-weight: 700;
    font-size: 13px;
}
.sidebar__nav-icon {
    padding-right: 3px;
}
/* Respone to Width */
/* Mobile */
@media (max-width: 680px) {
    .sidebar {
        text-align: center;
    }
    .sidebar__header {
        margin: 20px auto !important;
        padding: 0 50px;        
        text-align: center;
    }
    .sidebar__header::after {
        content: '';
        margin: 18px auto 0;
        display: block;
        width: 250px;
        border-bottom: 2px solid #fff;
    }
    .sidebar__description,
    .sidebar__nav {
        margin: 0 100px;
        color: #585858;
        text-align: center;
    }
    .sidebar__nav {
        margin-bottom: 20px;
    }
    #kisr-testimonials .collection__toggle{position: relative; top: auto; right: auto; margin: auto;}
}
@media (max-width: 480px) {
    .sidebar__header {
        padding: 0 20px;
    }
    .sidebar__description,
    .sidebar__nav {
        margin: 0 40px;
    }
}
/* Tablet, Desktop */
@media (min-width: 681px) {
    .sidebar {
        margin: 70px 20px 70px 20px;
        width: 220px;
        min-height: 435px;
    }
    .sidebar h3{
        padding-top: 45px;
        text-align: left;
    }
    .sidebar__description {
        border-top: 1px solid #121d54;
        padding-top: 35px;
        margin-top: 35px;
        margin-bottom: 24px;
    }
    .sidebar__nav {        
        padding-bottom: 35px;
        margin-bottom: 35px;
    }
}
/* Respond to Height */
@media (min-width: 681px) and (max-height: 700px) {
    .sidebar__description {
        padding-top: 12px;
        margin-top: 12px;
        margin-bottom: 12px;
    }
    .sidebar__nav {
        padding-bottom: 20px;
        margin-bottom: 20px;
    }
}
@media (min-width: 681px) and (max-height: 545px) {
    .sidebar__description {
        padding-top: 12px;
        margin-top: 12px;
        margin-bottom: 12px;
    }
    .sidebar__nav {
        padding-bottom: 12px;
        margin-bottom: 12px;
    }
}
/* Fade in, fade out timeline */
.collection {
    opacity: 1;
    visibility: visible;
    transition: opacity 300ms ease-in-out;
}
.main--timeline-is-visible .collection {
    opacity: 0;
    visibility: hidden;
}
.timeline {
    opacity: 0;
    visibility: hidden;
    display: none;
    box-sizing: border-box;
    transition: opacity 300ms ease-in-out;
}
.timeline.timeline--is-visible {
    opacity: 1;
    visibility: visible;
    display: unset;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    bottom: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -ms-flex-line-pack: center;
    align-content: center;
}
/* Bottom Control Section */
.timeline__controls {
    overflow: hidden;
    box-sizing: border-box;
    position: absolute;
    top: 15px;
    right: 0;
    bottom: 0;
    width: 70px;
    left: auto;
}
@media (min-width: 480px) {
    .timeline__controls {
        right: auto;
        top: auto;
        left: 0;
        bottom: 40px;
        width: 100%;
        padding: 0 45px 50px 45px;
        margin-top: 25px;
    }
}
@media (orientation: landscape) {
    .timeline__controls {
        right: auto;
        top: auto;
        left: 0;
        bottom: 40px;
        width: 100%;
        padding: 0 45px 30px 45px;
        margin-top: 35px;
        position: relative;
    }
}
@media (min-width: 769px) {
    .timeline__controls {
        position: relative;
        bottom: auto;
        left: auto;
    }
}
@media (min-height: 800px) and (min-width: 480px) {
    .timeline__controls {
        margin-top: 35px;
    }
}
.timeline__slider__container {
    cursor: pointer;
    box-sizing: border-box;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    z-index: 1;
    position: absolute;
    top: 50%;
    height: 70px;
    /**
       * Instead of relying on partial browser support for a vertical slider,
       * rotate the slider using transforms. The width is set via JavaScript so
       * that the slider expands to fill the appropriate amount of space.
       */
    -webkit-transform: translateX(-50%) translateX(35px) rotate(90deg) translateZ(0);
    transform: translateX(-50%) translateX(35px) rotate(90deg) translateZ(0);
}
@media (min-width: 480px), (orientation: landscape) {
    .timeline__slider__container {
        padding: 0 0 60px 0;
        position: relative;
        top: auto;
        width: 100%;
        -webkit-transform: none;
        transform: none;
        height: 20px;
        box-sizing: content-box;
        overflow-x: hidden;
    }
}
.timeline__slider {
    background-color: transparent;
    cursor: pointer;
    margin: auto -20px;
    padding-top: 0;
    height: 20px;
    -webkit-appearance: none;
    -webkit-tap-highlight-color: rgba(0,0,0,0);
}
@media (min-width: 480px), (orientation: landscape) {
    .timeline__slider {
        -webkit-box-flex: 1;
        -ms-flex: 1 0 auto;
        flex: 1 0 auto;
        width: 100%;
    }
}
.timeline__slider:focus,
.timeline__slider:active {
    outline: none;
}
.timeline__axis {
    position: absolute;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    top: 0px;
    right: 0;
    bottom: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 70px;
    margin-top: 0;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    padding: 15px 0;
}
@media (min-width: 480px), (orientation: landscape) {
    .timeline__axis {
        position: relative;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
        width: auto;
        margin-top: -55px;
        bottom: auto;
        top: auto;
        right: auto;
        padding: 0;
    }
}
.main--timeline-is-visible ~ .footer {
    display: none;
}
@media (min-width: 480px) {
    .main--timeline-is-visible ~ .footer {
        display: block;
    }
}
@media (orientation: landscape) {
    .main--timeline-is-visible ~ .footer {
        display: none;
    }
}
@media (orientation: landscape) and (min-height: 480px) {
    .main--timeline-is-visible ~ .footer {
        display: block;
    }
}
.collection_main.main--timeline-is-visible {
    overflow: hidden;
}
@media (min-width: 480px) {
    .collection_main.main--timeline-is-visible {
        position: inherit;
        top: auto;
        left: auto;
        right: auto;
        bottom: auto;
    }
}
.timeline__container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    position: absolute;
    top: 25px;
    left: 0;
    right: 0;
    bottom: 0;
    overflow-x: hidden;
    overflow-y: scroll;
    -ms-overflow-style: none;
}
.timeline__container::-webkit-scrollbar {
    display: none;
}
@media (min-width: 480px), (orientation: landscape) and (min-height: 480px) {
    .timeline__container {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
        position: relative;
        overflow: hidden;
        top: auto;
        left: auto;
        right: auto;
        bottom: auto;
        padding-bottom: 35px;
        overflow-x: scroll;
        margin-top: 0;
    }
}
@media (orientation: landscape) {
    .timeline__container {
        -webkit-overflow-scrolling: touch;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
        position: relative;
        overflow: hidden;
        top: auto;
        left: auto;
        right: auto;
        bottom: auto;
        padding-bottom: 35px;
        overflow-x: scroll;
        margin-top: 25px;
    }
}
.timeline__photos {
    transition: -webkit-transform 275ms ease;
    transition: transform 275ms ease;
    margin-left: 0;
    padding-bottom: 15px;
    padding-left: 14.5px;
    padding-right: 70px;
    display: block;
    /**
       * Important: This relative positioning is critical in order to calculate
       * relative offset values in the timeline.js file.
       */
    position: relative;
}
@media (min-width: 480px), (orientation: landscape) {
    .timeline__photos {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: flex-start;
        -ms-flex-preferred-size: initial;
        flex-basis: initial;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        margin-left: 45px;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
        padding-left: 0;
        padding-right: 0;
        padding-bottom: 0;
    }
}
.timeline__link {
    display: block;
    transition: box-shadow 1ms 100ms ease-out;
    box-shadow: 0 1px 4px rgba(0,0,0,0.35);
}
.timeline__link:hover ~ .card,
.timeline__link:focus ~ .card {
    z-index: 1;
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateX($card-hover-offset);
    transform: translateX($card-hover-offset);
}
@media (min-height: 480px) and (min-width: 480px) {
    .timeline__link:hover,
    .timeline__link:focus {
        box-shadow: 0 0 0 10px #283a8f;
    }
}
.timeline__item {
    width: 100%;
    padding-top: 10px;
    padding-bottom: 8px;
    position: relative;
    /* This must occur to avoid flickering, since the card isn't within the link on the timeline. */
}
.timeline__item .card__arrow {
    pointer-events: none;
}
@media (min-width: 480px) {
    .timeline__item {
        padding-bottom: 0;
        margin-right: 20px;
        width: auto;
    }
}
@media (orientation: landscape) {
    .timeline__item {
        padding-bottom: 8px;
    }
}
@media (orientation: landscape) and (min-height: 480px) {
    .timeline__item {
        padding-bottom: 0;
        margin-right: 20px;
        width: auto;
    }
}
.timeline__photo {
    background-size: cover;
    background-repeat: no-repeat;
}
.timeline__tick {
    position: relative;
    min-height: 10%;
}
@media (min-width: 480px), (orientation: landscape) {
    .timeline__tick {
        min-height: auto;
        min-width: 10%;
    }
    .timeline__tick:last-child {
        min-width: 0;
    }
}
.timeline .card {
    text-decoration: none;
}
@media (max-width: 767px) {
    .timeline .card {
        display: none;
    }
}
@media (max-height: 479px) {
    .timeline .card {
        display: none;
    }
}
.timeline__card__video-meta {
    color: #858585;
    position: relative;
}
.timeline__card__video-length {
    position: absolute;
    left: 30px;
    top: 10px;
}
.timeline__card-icon {
    font-size: 29px;
    margin-top: 3px;
    margin-left: -3px;
    display: inline-block;
}
.timeline__tick-large {
    background-color: #bbb;
    position: relative;
    width: 15px;
    height: 2px;
}
.timeline__tick:first-child .timeline__tick-large,
.timeline__tick:last-child .timeline__tick-large {
    width: 100%;
    text-align: center;
    background-color: transparent;
}
@media (min-width: 480px), (orientation: landscape) {
    .timeline__tick-large {
        background-color: #d4d4d4;
        width: 2px;
        height: 15px;
        margin-top: 5px;
    }
    .timeline__tick:first-child .timeline__tick-large,
    .timeline__tick:last-child .timeline__tick-large {
        width: 2px;
        background-color: #d4d4d4;
    }
}
.timeline__tick-small {
    width: 6px;
    height: 2px;
    background-color: #bbb;
    position: absolute;
    top: 50%;
    left: calc(50% - 3px);
}
@media (min-width: 480px), (orientation: landscape) {
    .timeline__tick-small {
        margin-top: 5px;
        width: 2px;
        height: 6px;
        top: 0;
        left: 50%;
        background-color: #d4d4d4;
    }
}
.timeline__year {
    font-size: 15px;
}
@media (min-width: 480px) {
    .timeline__year {
        position: absolute;
        font-size: 20px;
        margin-top: 10px;
    }
}
@media (orientation: landscape) and (max-height: 479px) {
    .timeline__year {
        font-size: 15px;
        position: absolute;
        margin-top: 5px;
    }
}
@media (min-height: 480px) and (min-width: 480px) {
    .timeline__year {
        margin-left: 10px;
    }
}
.timeline__scale-year {
    display: block;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    color: #808080;
    font-size: 11px;
    /**
       * Show only the first and last ticks on small screens.
       */
}
.timeline__tick:not(:first-child):not(:last-child) .timeline__scale-year {
    display: none;
}
@media (min-width: 480px) {
    .timeline__scale-year {
        font-size: 12px;
        -webkit-transform: translateX(-50%);
        transform: translateX(-50%);
        position: absolute;
        top: 20px;
    }
    .timeline__tick:not(:first-child):not(:last-child):nth-child(2n+1) .timeline__scale-year {
        display: block;
    }
}
@media (min-width: 687px) {
    .timeline__scale-year {
        font-size: 14px;
    }
    .timeline__tick:not(:first-child):not(:last-child):nth-child(2n+2) .timeline__scale-year {
        display: block;
    }
}
.timeline__decade {
    font-size: 32px;
    color: #b8b8b8;
    padding-bottom: 20px;
    padding-top: 20px;
    text-align: center;
}
@media (min-width: 480px) {
    .timeline__decade {
        padding-right: 60px;
        padding-left: 25px;
        text-align: left;
    }
}
.timeline__decade-icon {
    display: none;
}
@media (min-width: 480px), (orientation: landscape) {
    .timeline__decade-icon {
        display: inline-block;
        position: absolute;
    }
}
/**
 * Input range track
 */
.timeline__slider::-webkit-slider-runnable-track {
    height: 2px;
    cursor: pointer;
    border-radius: 0px;
    border: 0;
    background: transparent;
}
@media (min-width: 480px) {
    .timeline__slider::-webkit-slider-runnable-track {
        background: #d4d4d4;
    }
}
.timeline__slider::-moz-range-track {
    height: 2px;
    cursor: pointer;
    border-radius: 0px;
    border: 0;
    background: transparent;
}
@media (min-width: 480px) {
    .timeline__slider::-moz-range-track {
        background: #d4d4d4;
    }
}
.timeline__slider::-ms-track {
    width: 100%;
    height: 20px;
    cursor: pointer;
    background: transparent;
    border-color: transparent;
    color: transparent;
}
/**
 * Input range thumb
 */
.timeline__slider__thumb {
    height: 60px;
    width: 60px;
    border: 0;
    border-radius: 50%;
    top: 0;
    background: transparent;
    pointer-events: none;
    position: absolute;
    height: 20px;
    width: 20px;
    background: #283b90;
}
.timeline__slider::-webkit-slider-thumb {
    height: 60px;
    width: 60px;
    border: 0;
    border-radius: 50%;
    top: 0;
    background: transparent;
    -webkit-transform: translateY(calc(-50% + 1px));
    transform: translateY(calc(-50% + 1px));
    cursor: pointer;
    -webkit-appearance: none;
}
.timeline__slider::-moz-range-thumb {
    height: 60px;
    width: 60px;
    border: 0;
    border-radius: 50%;
    top: 0;
    background: transparent;
    cursor: pointer;
    margin-top: 10px;
}
.timeline__slider::-ms-fill-lower,
.timeline__slider::-ms-fill-upper {
    height: 2px;
    border: 0;
    background: transparent;
}
@media (min-width: 480px) {
    .timeline__slider::-ms-fill-lower,
    .timeline__slider::-ms-fill-upper {
        background: #d4d4d4;
    }
}
.timeline__slider::-ms-thumb {
    height: 60px;
    width: 60px;
    border: 0;
    border-radius: 50%;
    top: 0;
    background: transparent;
    transform: translateY(calc(-50% + 1px));
    cursor: pointer;
}
.timeline__slider::-ms-tooltip {
    display: none;
}
.timeline__slider::-moz-focus-outer,
.timeline__slider:focus::-moz-focus-outer {
    border: 0;
}
/* Animations for non-mobile screens */
@media (min-width: 681px) {
    .page--overlay .logo-overlay {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }
    .logo-overlay {
        /* Display the overlay over the entire page */
        position: fixed;
        top: 0;
        left: 0;
        height: 100vh;
        width: 100vw;
        /* Center the logo */
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        display: none;
    }
    .logo-overlay__logo {
        position: relative;
        width: 300px;
        height: 340.1923076923077px;
        text-align: center;
        background-size: 100%;
    }

    .logo-overlay__logo {
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 156 176.9'%3E%3Cg fill='%23010101'%3E%3Cpath d='M2.2 104.2V74.6h3.9c1.4 0 3.3 0 4.8 1.8.9 1.2 1.9 3.1 1.9 7 0 4.9-1.1 8.8-6 8.8H5.3v11.9H2.2zm3.1-14.7h1c2.6 0 3.3-2.1 3.3-6.1 0-2.9-.5-6-3.2-6H5.3v12.1zM23.5 104.2V90h-5.2v14.3h-3.1V74.6h3.1v12.6h5.2V74.6h3.1v29.6h-3.1zM36.2 74.3c4.9 0 6.4 4.3 6.4 14.8 0 9.6-.7 15.5-6.3 15.5-4.6 0-6.3-3.3-6.3-15.1-.1-8.9.6-15.2 6.2-15.2zm-3 15.1c0 2.4 0 7.5.6 9.7.4 1.5 1 2.7 2.5 2.7 1.3 0 2-.8 2.4-2.6.5-2.2.6-7 .6-9.9 0-10.3-1-12-3.1-12-1 0-1.6.5-2 1.2-1 2.2-1 8.1-1 10.9zM47.6 104.2V77.4h-3.7v-2.8h10.6v2.8h-3.8v26.8h-3.1zM61.9 74.3c4.9 0 6.4 4.3 6.4 14.8 0 9.6-.7 15.5-6.3 15.5-4.6 0-6.3-3.3-6.3-15.1 0-8.9.6-15.2 6.2-15.2zm-3 15.1c0 2.4 0 7.5.6 9.7.4 1.5 1 2.7 2.5 2.7 1.3 0 2-.8 2.4-2.6.5-2.2.6-7 .6-9.9 0-10.3-1-12-3.1-12-1 0-1.6.5-2 1.2-1 2.2-1 8.1-1 10.9zM81.7 104.4l-.6-2.5c-.4.8-1.2 2.6-3.9 2.6-5.3 0-6.1-5.8-6.1-14.8 0-10.1 1-15.3 6.4-15.3 2.9 0 4.2 1.7 4.9 3.5.3.7.7 2 .8 3.6l-2.9.5c-.4-3.5-1.1-4.8-2.8-4.8-2 0-2.5 2-2.7 3.2-.4 2.4-.4 7.8-.4 8.7 0 2.1 0 6.7.5 9.2.2 1 .7 3.2 2.8 3.2 2.5 0 2.9-3.2 2.9-6v-3.4h-2.9v-2.8h5.9v15h-1.9zM95.3 104.2l-3.1-13h-2v13h-3.1V74.6h4.3c2.6 0 6.7 0 6.7 8.4 0 5.3-1.4 6.8-2.9 7.6l3.5 13.6h-3.4zm-5.1-15.7h1.5c2.3 0 3.2-1.1 3.2-5.6 0-5.4-1.7-5.4-3.4-5.4h-1.3v11zM109.8 104.2l-1.4-8.7h-4l-1.3 8.7h-2.7l4.6-29.6h3.1l4.8 29.6h-3.1zm-1.7-11.4l-1-7.4c-.5-3.6-.6-4.8-.8-6.8-.1 1.7-.5 4.9-.7 6.8l-1 7.4h3.5zM115.2 104.2V74.6h3.9c1.4 0 3.3 0 4.8 1.8.9 1.2 1.9 3.1 1.9 7 0 4.9-1.1 8.8-6 8.8h-1.4v11.9h-3.2zm3.1-14.7h1c2.6 0 3.3-2.1 3.3-6.1 0-2.9-.5-6-3.2-6h-1.1v12.1zM136.5 104.2V90h-5.2v14.3h-3.1V74.6h3.1v12.6h5.2V74.6h3.1v29.6h-3.1zM144.9 97c0 2.4 1 4.8 3.1 4.8 2.8 0 3.1-3.6 3.1-5.3 0-4-2.1-5.6-3.2-6.3-2.4-1.7-5.4-3.8-5.4-8.8 0-4.2 2.1-7 5.7-7 4.4 0 5.4 4 5.6 6.4l-2.9.5c-.2-1.6-.6-4.1-2.8-4.1-1.4 0-2.4.9-2.4 3.5 0 2.3.9 4.2 2.8 5.5 2.7 2 3.6 2.7 4.7 4.5.5 1 1.3 2.7 1.3 5.2 0 1.5-.3 4.1-1.6 6.2-1.4 2.2-3.8 2.5-4.9 2.5-4.3 0-5.8-3.5-6-7.2l2.9-.4z'/%3E%3Cg%3E%3Cpath d='M7.7 150.8H6v5.5H4.4v-5.5H2.6v-1.4h5.1v1.4zM16.1 156.4h-1.6v-2.8h-2.1v2.8h-1.6v-6.9h1.6v2.7h2.1v-2.7h1.6v6.9zM21.4 150.8v1.4H24v1.3h-2.6v1.5h3.3v1.3h-4.9v-6.9h4.9v1.3h-3.3zM37.2 156.4h-1.1l-1.7-5.6v5.6H33v-6.9h2.5l1.2 4.1 1.3-4.1h2.5v6.9H39v-5.6l-1.8 5.6zM44.7 155.4c-.5-.7-.7-1.6-.7-2.5 0-1.8.9-3.5 3-3.5.9 0 1.6.3 2.2 1.1.5.7.7 1.7.7 2.5s-.2 1.7-.7 2.4c-.5.8-1.3 1.2-2.3 1.2s-1.7-.4-2.2-1.2zm1.2-3.9c-.2.4-.2 1-.2 1.4 0 .9.1 2.2 1.3 2.2.6 0 .9-.3 1-.8.2-.4.2-1 .2-1.5s-.1-1.1-.3-1.6c-.2-.5-.5-.7-1-.7-.6.2-.9.5-1 1zM56.7 151.5c-.2-.6-.6-.8-1.2-.8-.4 0-1 .1-1 .6s.6.6 1 .7c.6.1 1.3.3 1.8.6.6.4.9.9.9 1.6 0 .7-.3 1.3-.9 1.7-.6.4-1.3.6-2 .6-1.3 0-2.5-.6-2.8-1.9l1.5-.3c.2.7.7 1 1.4 1 .5 0 1.1-.2 1.1-.7s-.8-.7-1.2-.8c-1.2-.3-2.4-.6-2.4-2.1 0-.6.3-1.2.7-1.6.5-.4 1.1-.6 1.7-.6 1.2 0 2.2.4 2.6 1.6l-1.2.4zM66.2 150.8h-1.7v5.5h-1.6v-5.5h-1.8v-1.4h5.1v1.4zM76.1 156.4h-1.6v-6.9h1.6v6.9zM85.1 156.4h-1.4l-2.6-4.6v4.6h-1.2v-6.9h1.7l2.3 4.1v-4.1h1.2v6.9zM90.3 150.8v1.6h2.6v1.3h-2.6v2.7h-1.6v-6.9h4.9v1.3h-3.3zM100.9 155v1.4h-4.4v-6.9h1.6v5.5h2.8zM109.3 153.7c0 .8 0 1.5-.6 2.1-.6.6-1.4.7-2.1.7-.7 0-1.6-.1-2.1-.6-.7-.6-.7-1.4-.7-2.2v-4.2h1.8v4.2c0 .3 0 .8.2 1.1.2.4.6.5 1 .5.3 0 .8-.1 1-.4.2-.3.2-.8.2-1.2v-4.2h1.4v4.2zM114.5 150.8v1.4h2.6v1.3h-2.6v1.5h3.3v1.3h-4.9v-6.9h4.9v1.3h-3.3zM126.5 156.4h-1.4l-2.6-4.6v4.6h-1.2v-6.9h1.7l2.3 4.1v-4.1h1.2v6.9zM134.7 150.8H133v5.5h-1.6v-5.5h-1.8v-1.4h5.1v1.4zM139.4 156.4h-1.6v-6.9h1.6v6.9zM148.7 156.4H147l-.4-1.4h-2.2l-.4 1.4h-1.4l2.2-6.9h1.9l2 6.9zm-2.6-2.7l-.7-2.4-.7 2.4h1.4zM156.1 155v1.4h-4.4v-6.9h1.6v5.5h2.8zM13.5 174.4h-1.6v-6.9h1.6v6.9zM21.3 174.4h-1.1l-1.7-5.6v5.6h-1.4v-6.9h2.5l1.2 4.1 1.3-4.1h2.5v6.9H23v-5.6l-1.7 5.6zM34 174.4h-1.7l-.4-1.4h-2.2l-.4 1.4h-1.4l2.2-6.9H32l2 6.9zm-2.5-2.7l-.7-2.4-.7 2.4h1.4zM39.4 172v-1.3h2.8v3.7h-.7l-.2-.8c-.5.6-1.1.9-1.9.9-2 0-2.9-1.7-2.9-3.5 0-1.9.9-3.6 3-3.6 1.5 0 2.5.9 2.7 2.4l-1.5.2c-.1-.7-.4-1.3-1.2-1.3-1.1 0-1.3 1.5-1.3 2.3 0 .9.3 2.2 1.4 2.2.7 0 1.2-.5 1.1-1.2h-1.3zM47.4 168.8v1.4H50v1.3h-2.6v1.5h3.3v1.3h-4.9v-6.9h4.9v1.3h-3.3zM57.6 169.4c-.2-.6-.6-.8-1.2-.8-.4 0-1 .1-1 .6s.6.6 1 .7c.6.1 1.3.3 1.8.6.6.4.9.9.9 1.6 0 .7-.3 1.3-.9 1.7-.6.4-1.3.6-2 .6-1.3 0-2.5-.6-2.8-1.9l1.5-.3c.2.7.7 1 1.4 1 .5 0 1.1-.2 1.1-.7 0-.6-.8-.7-1.2-.8-1.2-.3-2.4-.6-2.4-2.1 0-.6.3-1.2.7-1.6.5-.4 1.1-.6 1.7-.6 1.2 0 2.2.4 2.6 1.6l-1.2.4zM68 173.4c-.5-.7-.7-1.6-.7-2.5 0-1.8.9-3.5 3-3.5.9 0 1.6.3 2.2 1.1.5.7.7 1.7.7 2.5s-.2 1.7-.7 2.4c-.5.8-1.3 1.2-2.3 1.2s-1.6-.4-2.2-1.2zm1.2-3.9c-.2.4-.2 1-.2 1.4 0 .9.1 2.2 1.3 2.2.6 0 .9-.3 1-.8.2-.4.2-1 .2-1.5s-.1-1.1-.3-1.6c-.2-.5-.5-.7-1-.7-.5.2-.8.5-1 1zM78.1 168.8v1.6h2.6v1.3h-2.6v2.7h-1.6v-6.9h4.9v1.3h-3.3zM95.1 174.4h-1.7L93 173h-2.2l-.4 1.4H89l2.2-6.9h1.9l2 6.9zm-2.5-2.7l-.7-2.4-.7 2.4h1.4zM102.5 173v1.4h-4.4v-6.9h1.6v5.5h2.8zM109.9 173v1.4h-4.4v-6.9h1.6v5.5h2.8zM122.6 168.8h-1.7v5.5h-1.6v-5.5h-1.8v-1.4h5.1v1.4zM127.3 174.4h-1.6v-6.9h1.6v6.9zM135.2 174.4h-1.1l-1.7-5.6v5.6H131v-6.9h2.5l1.2 4.1 1.3-4.1h2.5v6.9h-1.6v-5.6l-1.7 5.6zM143.8 168.8v1.4h2.6v1.3h-2.6v1.5h3.3v1.3h-4.9v-6.9h4.9v1.3h-3.3z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    }
    .logo-overlay__logo::before,
    .logo-overlay__logo::after {
        content: '';
        display: block;
        position: absolute;
    }
    .logo-overlay__logo::after {
        top: 63.3126059920859%;
        left: 1.474358974359%;
        width: 97.0512820512821%;
        height: 16.3934426229508%;
        background: #e90606;
    }
    .logo-overlay__logo::before {
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }

    .logo-overlay__logo::before {
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 156 176.9'%3E%3Cg fill='%23010101'%3E%3Cpath d='M2.4 53.7h10.4V22.3L2.8 24V13.6c8.1-3.6 14.9-6.7 20-9.9H31v50h10.1v12.7H2.4V53.7zM68.5 2.5c15.8 0 27.1 12.8 27.1 32.7 0 19.9-11.3 32.7-27.1 32.7-15.7 0-27.1-12.8-27.1-32.7 0-19.9 11.4-32.7 27.1-32.7zm0 52.7c6.3 0 8.6-6.5 8.6-20.2s-2.3-20.3-8.6-20.3-8.7 6.6-8.7 20.3c0 13.7 2.4 20.2 8.7 20.2zM125.9 2.5c15.8 0 27.1 12.8 27.1 32.7 0 19.9-11.3 32.7-27.1 32.7-15.7 0-27.1-12.8-27.1-32.7 0-19.9 11.4-32.7 27.1-32.7zm0 52.7c6.3 0 8.6-6.5 8.6-20.2s-2.3-20.3-8.6-20.3-8.7 6.6-8.7 20.3c0 13.7 2.4 20.2 8.7 20.2z'/%3E%3C/g%3E%3C/svg%3E");
        background-size: 100%;
    }
    .logo-overlay {
        -webkit-animation: collection--logo-overlay 8000ms steps(1, end) 1 forwards;
        animation: collection--logo-overlay 8000ms steps(1, end) 1 forwards;
    }
    .logo-overlay__logo {
        -webkit-animation: collection--logo-fade 1000ms ease-out 4500ms 1 forwards;
        animation: collection--logo-fade 1000ms ease-out 4500ms 1 forwards;
    }
    .logo-overlay__logo::after {
        -webkit-animation: collection--bar 1800ms ease-out 1 forwards;
        animation: collection--bar 1800ms ease-out 1 forwards;
    }
    @-webkit-keyframes collection--logo-fade {
        0% {
            opacity: 1;
        }
        100% {
            opacity: 0;
        }
    }
    @keyframes collection--logo-fade {
        0% {
            opacity: 1;
        }
        100% {
            opacity: 0;
        }
    }
    @-webkit-keyframes collection--logo-show {
        0% {
            opacity: 0;
        }
        100% {
            opacity: 1;
        }
    }
    @keyframes collection--logo-show {
        0% {
            opacity: 0;
        }
        100% {
            opacity: 1;
        }
    }
    @-webkit-keyframes collection--bar {
        0% {
            -webkit-transform: scaleX(0.4);
            transform: scaleX(0.4);
        }
        100% {
            -webkit-transform: scaleX(1);
            transform: scaleX(1);
        }
    }
    @keyframes collection--bar {
        0% {
            -webkit-transform: scaleX(0.4);
            transform: scaleX(0.4);
        }
        100% {
            -webkit-transform: scaleX(1);
            transform: scaleX(1);
        }
    }
    @-webkit-keyframes collection--logo-overlay {
        0% {
            opacity: 1;
        }
        100% {
            visibility: hidden;
            opacity: 0;
            pointer-events: none;
        }
    }
    @keyframes collection--logo-overlay {
        0% {
            opacity: 1;
        }
        100% {
            visibility: hidden;
            opacity: 0;
            pointer-events: none;
        }
    }
}

.collection-photo--54 {
    height: 200px;
}

/*.collection-photo--55 {*/
    /*height: 200px;*/
/*}*/

.collection-photo--44 {
    height: 112px;
}

.collection-photo--20 {
    height: 170px;
}

.collection-photo--39 {
    height: 120px;
}

.collection-photo--53 {
    height: 187px;
}

.collection-photo--61 {
    height: 156px;
}

.collection-photo--1 {
    height: 113px;
}

.collection-photo--35 {
    height: 250px;
}

.collection-photo--45 {
    height: 198px;
}

.collection-photo--82 {
    height: 196px;
}

.collection-photo--46 {
    height: 187px;
}

.collection-photo--67 {
    height: 134px;
}

.collection-photo--99 {
    height: 152px;
}

.collection-photo--28 {
    height: 160px;
}

.collection-photo--15 {
    height: 210px;
}

.collection-photo--13 {
    height: 180px;
}

.collection-photo--56 {
    height: 224px;
}

.collection-photo--24 {
    height: 135px;
}

.collection-photo--18 {
    height: 162px;
}

.collection-photo--12 {
    height: 95px;
}

.collection-photo--9 {
    height: 266px;
}

.collection-photo--10 {
    height: 166px;
}

.collection-photo--63 {
    height: 220px;
}

.collection-photo--75 {
    height: 194px;
}

.collection-photo--47 {
    height: 84px;
}

.collection-photo--93 {
    height: 112px;
}

.collection-photo--22 {
    height: 212px;
}

.collection-photo--3 {
    height: 160px;
}

.collection-photo--77 {
    height: 126px;
}

.collection-photo--78 {
    height: 250px;
}

.collection-photo--60 {
    height: 155px;
}

.collection-photo--40 {
    height: 226px;
}

.collection-photo--62 {
    height: 238px;
}

.collection-photo--80 {
    height: 162px;
}

.collection-photo--87 {
    height: 120px;
}

.collection-photo--2 {
    height: 200px;
}

.collection-photo--30 {
    height: 282px;
}

.collection-photo--21 {
    height: 136px;
}

.collection-photo--7 {
    height: 150px;
}

.collection-photo--89 {
    height: 150px;
}

.collection-photo--34 {
    height: 190px;
}

.collection-photo--86 {
    height: 200px;
}

.collection-photo--48 {
    height: 240px;
}

.collection-photo--98 {
    height: 128px;
}

.collection-photo--65 {
    height: 146px;
}

.collection-photo--6 {
    height: 128px;
}

.collection-photo--41 {
    height: 168px;
}

.collection-photo--81 {
    height: 158px;
}

.collection-photo--73 {
    height: 162px;
}

.collection-photo--74 {
    height: 222px;
}

.collection-photo--96 {
    height: 210px;
}

.collection-photo--42 {
    height: 150px;
}

.collection-photo--72 {
    height: 262px;
}

.collection-photo--27 {
    height: 128px;
}

.collection-photo--8 {
    height: 150px;
}

.collection-photo--90 {
    height: 196px;
}

.collection-photo--95 {
    height: 144px;
}

.collection-photo--66 {
    height: 138px;
}

.collection-photo--91 {
    height: 292px;
}

.collection-photo--68 {
    height: 165px;
}

.collection-photo--69 {
    height: 148px;
}

.collection-photo--14 {
    height: 110px;
}

.collection-photo--19 {
    height: 165px;
}

.collection-photo--58 {
    height: 200px;
}

.collection-photo--29 {
    height: 260px;
}

.collection-photo--23 {
    height: 165px;
}

.collection-photo--52 {
    height: 196px;
}

.collection-photo--57 {
    height: 217px;
}

.collection-photo--17 {
    height: 190px;
}

.collection-photo--11 {
    height: 222px;
}

.collection-photo--26 {
    height: 142px;
}

.collection-photo--33 {
    height: 138px;
}

.collection-photo--43 {
    height: 200px;
}

.collection-photo--71 {
    height: 275px;
}

.collection-photo--84 {
    height: 176px;
}

.collection-photo--97 {
    height: 140px;
}

.collection-photo--59 {
    height: 205px;
}

.collection-photo--31 {
    height: 250px;
}

.collection-photo--50 {
    height: 278px;
}

.collection-photo--76 {
    height: 200px;
}

.collection-photo--25 {
    height: 200px;
}

.collection-photo--83 {
    height: 200px;
}

.collection-photo--64 {
    height: 160px;
}

.collection-photo--32 {
    height: 130px;
}

.collection-photo--70 {
    height: 250px;
}

.collection-photo--85 {
    height: 168px;
}

.collection-photo--5 {
    height: 202px;
}

.collection-photo--92 {
    height: 196px;
}

.collection-photo--36 {
    height: 210px;
}

.collection-photo--4 {
    height: 90px;
}

.collection-photo--79 {
    height: 145px;
}

.collection-photo--51 {
    height: 107px;
}

.collection-photo--94 {
    height: 124px;
}

.collection-photo--38 {
    height: 244px;
}

.collection-photo--88 {
    height: 288px;
}

.collection-photo--49 {
    height: 180px;
}

.collection-photo--16 {
    height: 134px;
}

.collection-photo--0 {
    height: 99px;
}

.collection-photo--37 {
    height: 200px;
}
/* Styles for wide devices */

@media (min-width: 680px) {
    .collection-photo--54 {
        top: 100px;
        left: 0px;
    }
    .card--54 {
        top: 100px;
        left: 0px;
    }
    .collection-photo--55 {
        top: 315px;
        left: 30px;
    }
    .card--55 {
        top: 315px;
        left: 30px;
    }
    .collection-photo--44 {
        top: 0;
        left: 2708px;
        height: 206px;
    }
    .card--44 {
        top: 0;
        left: 2708px;
    }
    .collection-photo--20 {
        top: -36px;
        left: 1015px;
    }
    .card--20 {
        top: -36px;
        left: 1015px;
    }
    .collection-photo--39 {
        top: 262px;
        left: 2187px;
        height: 200px;
    }
    .card--39 {
        top: 298px;
        left: 2187px;
    }
    .collection-photo--53 {
        top: 449px;
        left: 244px;
    }
    .card--53 {
        top: 449px;
        left: 244px;
    }
    .collection-photo--61 {
        top: 315px;
        left: 408px;
    }
    .card--61 {
        top: 315px;
        left: 408px;
    }
    .collection-photo--1 {
        top: 0;
        left: 0;
    }
    .card--1 {
        top: 0;
        left: 0;
    }
    .collection-photo--35 {
        top: 0;
        left: 3392px;
    }
    .card--35 {
        top: 0;
        left: 3944px;
    }
    .card--35 .card__arrow{
        left: -26px;
        right: auto;
        transform: rotate(180deg);
    }

    .collection-photo--45 {
        top: 0;
        left: 3147px;
    }
    .card--45 {
        top: 0;
        left: 3147px;
    }
    .collection-photo--82 {
        top: 233px;
        left: 626px;
    }
    .card--82 {
        top: 233px;
        left: 626px;
    }
    .collection-photo--46 {
        top: 367px;
        left: 1250px;
    }
    .card--46 {
        top: 367px;
        left: 1250px;
    }
    .collection-photo--67 {
        top: 444px;
        left: 841px;
    }
    .card--67 {
        top: 444px;
        left: 841px;
    }
    .collection-photo--99 {
        top: 102px;
        left: 891px;
    }
    .card--99 {
        top: 102px;
        left: 891px;
    }
    .collection-photo--28 {
        top: 0;
        left: 1498px;
    }
    .card--28 {
        top: 0;
        left: 1498px;
    }
    .collection-photo--15 {
        top: 414px;
        left: 650px;
    }
    .card--15 {
        top: 362px;
        left: 650px;    
    }
    .collection-photo--13 {
        top: 219px;
        left: 650px;
    }
    .card--13 {
        top: 219px;
        left: 650px;
    }
    .collection-photo--56 {
        top: 205px;
        left: 1107px;
    }
    .card--56 {
        top: 205px;
        left: 1107px;
    }
    .collection-photo--24 {
        top: 0;
        left: 1203px;
    }
    .card--24 {
        top: 0;
        left: 1203px;
    }
    .collection-photo--18 {
        top: 363px;
        left: 879px;
    }
    .card--18 {
        top: 363px;
        left: 879px;
    }
    .collection-photo--12 {
        top: 378px;
        left: 2661px;
    }
    .card--12 {
        top: 378px;
        left: 2661px;
    }
    .collection-photo--9 {
        top: 219px;
        left: 366px;
    }
    .card--9 {
        top: 220px;
        left: 366px;
    }
    .collection-photo--10 {
        top: 221px;
        left: 2796px;
    }
    .card--10 {
        top: 221px;
        left: 2796px;
    }
    .collection-photo--63 {
        top: 265px;
        left: 1585px;
    }
    .card--63 {
        top: 265px;
        left: 1585px;
    }
    .collection-photo--75 {
        top: 188px;
        left: 1748px;
    }
    .card--75 {
        top: 188px;
        left: 1748px;
    }
    .collection-photo--47 {
        top: 411px;
        left: 1463px;
        height: 113px;
    }
    .card--47 {
        top: 411px;
        left: 1463px;
    }
    .collection-photo--93 {
        top: 65px;
        left: 1822px;
    }
    .card--93 {
        top: 65px;
        left: 1822px;
    }
    .collection-photo--22 {
        top: 303px;
        left: 1071px;
        height: 158px;
    }
    .card--22 {
        top: 303px;
        left: 1071px;
    }
    .collection-photo--3 {
        left: 0;
        top: 350px;
    }
    .card--3 {
        top: 345px;
        left: 0;
    }
    .collection-photo--77 {
        top: 256px;
        left: 2010px;
    }
    .card--77 {
        top: 256px;
        left: 2010px;
    }
    .collection-photo--78 {
        top: 256px;
        left: 2215px;
    }
    .card--78 {
        top: 256px;
        left: 2215px;
    }
    .collection-photo--60 {
        top: 519px;
        left: 2215px;
    }
    .card--60 {
        top: 519px;
        left: 2215px;
    }
    .collection-photo--40 {
        top: 0;
        left: 2240px;
    }
    .card--40 {
        top: 0;
        left: 2240px;
    }
    .collection-photo--62 {
        top: 169px;
        left: 2422px;
    }
    .card--62 {
        top: 169px;
        left: 2422px;
    }
    .collection-photo--80 {
        top: 420px;
        left: 2422px;
    }
    .card--80 {
        top: 420px;
        left: 2422px;
    }
    .collection-photo--87 {
        top: 35px;
        left: 2569px;
    }
    .card--87 {
        top: 35px;
        left: 2569px;
    }
    .collection-photo--2 {
        top: 130px;
        left: 0;
    }
    .card--2 {
        top: 126px;
        left: 0;
    }
    .collection-photo--30 {
        top: 220px;
        left: 2975px;
    }
    .card--30 {
        top: 220px;
        left: 2975px;
    }

    /* .card--30.card--left .card__arrow{    left: auto;
    right: 50%;
    transform: translateX(50%) rotate(-270deg);
    top: auto;
    bottom: -38px} */

    .collection-photo--21 {
        top: 150px;
        left: 1072px;
    }
    .card--21 {
        top: 150px;
        left: 1072px;
    }
    .collection-photo--7 {
        top: 366px;
        left: 179px;
    }
    .card--7 {
        top: 367px;
        left: 179px;
    }
    .main .card--7 .card__content--collection {
        padding: 0;
    }
    .collection-photo--89 {
        top: 217px;
        left: 3015px;
    }
    .card--89 {
        top: 217px;
        left: 3015px;
    }
    .collection-photo--34 {
        top: 269px;
        left: 1761px;
    }
    .card--34 {
        top: 269px;
        left: 1761px;
    }
    .collection-photo--86 {
        top: 167px;
        left: 3229px;
    }
    .card--86 {
        top: 167px;
        left: 3229px;
    }
    .collection-photo--48 {
        top: 0;
        left: 2927px;
        height: 206px;
    }
    .card--48 {
        top: 0;
        left: 2927px;
    }
    .collection-photo--98 {
        top: 512px;
        left: 3392px;
    }
    .card--98 {
        top: 512px;
        left: 3392px;
    }
    .collection-photo--65 {
        top: 96px;
        left: 3494px;
    }
    .card--65 {
        top: 96px;
        left: 3494px;
    }
    .collection-photo--6 {
        top: 219px;
        left: 219px;
    }
    .card--6 {
        top: 221px;
        left: 219px;
    }
    .collection-photo--41 {
        top: 0;
        left: 2484px;
        height: 205px;
    }
    .card--41 {
        top: 19px;
        left: 2484px;
    }
    .collection-photo--81 {
        top: 257px;
        left: 3784px;
    }
    .card--81 {
        top: 257px;
        left: 3784px;
    }
    .collection-photo--73 {
        top: 430px;
        left: 3784px;
    }
    .card--73 {
        top: 430px;
        left: 3784px;
    }
    .collection-photo--74 {
        top: 430px;
        left: 3928px;
    }
    .card--74 {
        top: 430px;
        left: 3928px;
    }
    .collection-photo--96 {
        top: 205px;
        left: 4000px;
    }
    .card--96 {
        top: 205px;
        left: 4000px;
    }
    .collection-photo--42 {
        top: 243px;
        left: 2404px;
        height: 217px
    }
    .card--42 {
        top: 275px;
        left: 2404px;
    }
    .collection-photo--72 {
        top: 153px;
        left: 4152px;
    }
    .card--72 {
        top: 153px;
        left: 4152px;
    }
    .collection-photo--27 {
        top: 6px;
        left: 1353px;
    }
    .card--27 {
        top: 6px;
        left: 1785px;
    }

    .card--27.card--left .card__arrow {
        left: -27px;
        right: auto;
        transform: rotate(-180deg);
    }

    .collection-photo--8 {
        top: 34px;
        left: 456px;
    }
    .card--8 {
        top: 34px;
        left: 457px;
    }
    .main .card--8 .card__content--collection {
            padding: 1.25em 0;
    }
    .collection-photo--90 {
        top: 430px;
        left: 4423px;
    }
    .card--90 {
        top: 430px;
        left: 4423px;
    }
    .collection-photo--95 {
        top: 114px;
        left: 4491px;
    }
    .card--95 {
        top: 114px;
        left: 4491px;
    }
    .collection-photo--66 {
        top: 274px;
        left: 4491px;
    }
    .card--66 {
        top: 274px;
        left: 4491px;
    }
    .collection-photo--91 {
        top: 20px;
        left: 4688px;
    }
    .card--91 {
        top: 20px;
        left: 4688px;
    }
    .collection-photo--68 {
        top: 327px;
        left: 4688px;
    }
    .card--68 {
        top: 327px;
        left: 4688px;
    }
    .collection-photo--69 {
        top: 507px;
        left: 4688px;
    }
    .card--69 {
        top: 507px;
        left: 4688px;
    }
    .collection-photo--14 {
        top: 500px;
        left: 522px;
    }
    .card--14 {
        top: 500px;
        left: 525px;
    }
    .collection-photo--19 {
        top: 211px;
        left: 3271px;
        height: 109px;
    }
    .card--19 {
        top: 211px;
        left: 3271px;
    }
    .collection-photo--58 {
        top: 385px;
        left: 4910px;
    }
    .card--58 {
        top: 385px;
        left: 4910px;
    }
    .collection-photo--29 {
        top: 176px;
        left: 1485px;
        height: 220px;
    }
    .card--29 {
        top: 176px;
        left: 1485px;
    }
    .collection-photo--23 {
        top: 399px;
        left: 2770px;
    }
    .card--23 {
        top: 365px;
        left: 2770px;  
    }
    .collection-photo--52 {
        top: 26px;
        left: 5332px;
    }
    .card--52 {
        top: 26px;
        left: 5332px;
    }
    .collection-photo--57 {
        top: 234px;
        left: 5332px;
    }
    .card--57 {
        top: 234px;
        left: 5332px;
    }
    .collection-photo--17 {
        top: 152px;
        left: 865px;
    }
    .card--17 {
        top: 152px;
        left: 865px;
    }
    .collection-photo--11 {
        top: -21px;
        left: 625px;
    }
    .card--11 {
        top: -21px;
        left: 625px;
    }
    .collection-photo--26 {
        top: 224px;
        left: 2641px;
    }
    .card--26 {
        top: 224px;
        left: 2641px;
    }
    .collection-photo--33 {
        top: 410px;
        left: 1603px;
        height: 138px;
    }
    .card--33 {
        top: 410px;
        left: 1603px;
    }
    .collection-photo--43 {
         top: 332px;
        left: 3271px;
        height: 115px;
    }
    .card--43 {
        top: 332px;
        left: 3271px;
    }
    .collection-photo--71 {
        top: 78px;
        left: 6094px;
    }
    .card--71 {
        top: 78px;
        left: 6094px;
    }
    .collection-photo--84 {
        top: 368px;
        left: 6094px;
    }
    .card--84 {
        top: 368px;
        left: 6094px;
    }
    .collection-photo--97 {
        top: 38px;
        left: 6328px;
    }
    .card--97 {
        top: 38px;
        left: 6328px;
    }
    .collection-photo--59 {
        top: 193px;
        left: 6328px;
    }
    .card--59 {
        top: 193px;
        left: 6328px;
    }
    .collection-photo--31 {
        top: 0;
        left: 1743px;
    }
    .card--31 {
        top: 0;
        left: 1743px;
    }
    .collection-photo--50 {
        top: 0;
        left: 3656px;
    }
    .card--50 {
        top: 0;
        left: 3656px;
    }
    .collection-photo--76 {
        top: 413px;
        left: 6712px;
    }
    .card--76 {
        top: 413px;
        left: 6712px;
    }
    .collection-photo--25 {
        top: 151px;
        left: 1245px

    }
    .card--25 {
        top: 151px;
        left: 1245px

    }
    .collection-photo--83 {
        top: 250px;
        left: 6899px;
    }
    .card--83 {
        top: 250px;
        left: 6899px;
    }
    .collection-photo--64 {
        top: 465px;
        left: 6899px;
    }
    .card--64 {
        top: 465px;
        left: 6899px;
    }
    .collection-photo--32 {
        top: 481px;
        left: 1766px;
    }
    .card--32 {
        top: 488px;
        left: 1768px;
    }
    .collection-photo--70 {
        top: -16px;
        left: 7112px;
    }
    .card--70 {
        top: -16px;
        left: 7112px;
    }
    .collection-photo--85 {
        top: 395px;
        left: 7114px;
    }
    .card--85 {
        top: 395px;
        left: 7114px;
    }
    .collection-photo--5 {
        top: 0;
        left: 237px;
    }
    .card--5 {
        top: 0;
        left: 239px;
    }
    .collection-photo--92 {
        top: 467px;
        left: 7262px;
    }
    .card--92 {
        top: 467px;
        left: 7262px;
    }
    .collection-photo--36 {
        top: 20px;
        left: 2011px;
    }
    .card--36 {
        top: 20px;
        left: 2011px;
    }
    .collection-photo--4 {
        top: 18px;
        left: 130px;
    }
    .card--4 {
        top: 18px;
        left: 131px;
    }
    .collection-photo--79 {
        top: 355px;
        left: 7580px;
    }
    .card--79 {
        top: 355px;
        left: 7580px;
    }
    .collection-photo--51 {
        top: 98px;
        left: 7728px;
    }
    .card--51 {
        top: 98px;
        left: 7728px;
    }
    .collection-photo--94 {
        top: 217px;
        left: 7728px;
    }
    .card--94 {
        top: 217px;
        left: 7728px;
    }
    .collection-photo--38 {
        top: 269px;
        left: 3404px;
    }
    .card--38 {
        top: 269px;
        left: 3949px;
    }
    .card--38  .card__arrow {
        left: -26px;
        right: auto;
        transform: rotate(180deg);
    }

    .collection-photo--88 {
        top: 53px;
        left: 7908px;
    }
    .card--88 {
        top: 53px;
        left: 7908px;
    }
    .collection-photo--49 {
        top: 292px;
        left: 3662px;
    }
    .card--49 {
        top: 292px;
        left: 3662px;
    }
    .collection-photo--16 {
        top: 0;
        left: 864px;
    }
    .card--16 {
        top: 0;
        left: 864px;
    }
    .collection-photo--0 {
        top: 95px;
        left: 8225px;
    }
    .card--0 {
        top: 95px;
        left: 8225px;
    }
    .collection-photo--37 {
        top: 262px;
        left: 1968px;
    }
    .card--37 {
        top: 262px;
        left: 1968px;
    }
}
/* Scale for height */

/* @media (max-height: 820px) {
    .collection-photo--54 {
        height: calc(.9 * 200px);
        top: calc(.9 * 100px);
        left: calc(.9 * 0px);
    }
    .card--54 {
        top: calc(.9 * 100px);
        left: calc(.9 * 0px);
    }
    .collection-photo--55 {
        height: calc(.9 * 200px);
        top: calc(.9 * 315px);
        left: calc(.9 * 30px);
    }
    .card--55 {
        top: calc(.9 * 315px);
        left: calc(.9 * 30px);
    }
    .collection-photo--44 {
        height: calc(.9 * 112px);
        top: calc(.9 * 2px);
        left: calc(.9 * 172px);
    }
    .card--44 {
        top: calc(.9 * 2px);
        left: calc(.9 * 172px);
    }
    .collection-photo--20 {
        height: calc(.9 * 170px);
        top: calc(.9 * 130px);
        left: calc(.9 * 173px);
    }
    .card--20 {
        top: calc(.9 * 130px);
        left: calc(.9 * 173px);
    }
    .collection-photo--39 {
        height: calc(.9 * 120px);
        top: calc(.9 * 315px);
        left: calc(.9 * 244px);
    }
    .card--39 {
        top: calc(.9 * 315px);
        left: calc(.9 * 244px);
    }
    .collection-photo--53 {
        height: calc(.9 * 187px);
        top: calc(.9 * 449px);
        left: calc(.9 * 244px);
    }
    .card--53 {
        top: calc(.9 * 449px);
        left: calc(.9 * 244px);
    }
    .collection-photo--61 {
        height: calc(.9 * 156px);
        top: calc(.9 * 315px);
        left: calc(.9 * 408px);
    }
    .card--61 {
        top: calc(.9 * 315px);
        left: calc(.9 * 408px);
    }
    .collection-photo--1 {
        height: calc(.9 * 113px);
        top: calc(.9 * 486px);
        left: calc(.9 * 408px);
    }
    .card--1 {
        top: calc(.9 * 486px);
        left: calc(.9 * 408px);
    }
    .collection-photo--35 {
        height: calc(.9 * 250px);
        top: calc(.9 * 50px);
        left: calc(.9 * 450px);
    }
    .card--35 {
        top: calc(.9 * 50px);
        left: calc(.9 * 450px);
    }
    .collection-photo--45 {
        height: calc(.9 * 198px);
        top: calc(.9 * 20px);
        left: calc(.9 * 626px);
    }
    .card--45 {
        top: calc(.9 * 20px);
        left: calc(.9 * 626px);
    }
    .collection-photo--82 {
        height: calc(.9 * 196px);
        top: calc(.9 * 233px);
        left: calc(.9 * 626px);
    }
    .card--82 {
        top: calc(.9 * 233px);
        left: calc(.9 * 626px);
    }
    .collection-photo--46 {
        height: calc(.9 * 187px);
        top: calc(.9 * 444px);
        left: calc(.9 * 626px);
    }
    .card--46 {
        top: calc(.9 * 444px);
        left: calc(.9 * 626px);
    }
    .collection-photo--67 {
        height: calc(.9 * 134px);
        top: calc(.9 * 444px);
        left: calc(.9 * 841px);
    }
    .card--67 {
        top: calc(.9 * 444px);
        left: calc(.9 * 841px);
    }
    .collection-photo--99 {
        height: calc(.9 * 152px);
        top: calc(.9 * 102px);
        left: calc(.9 * 891px);
    }
    .card--99 {
        top: calc(.9 * 102px);
        left: calc(.9 * 891px);
    }
    .collection-photo--28 {
        height: calc(.9 * 160px);
        top: calc(.9 * 269px);
        left: calc(.9 * 891px);
    }
    .card--28 {
        top: calc(.9 * 269px);
        left: calc(.9 * 891px);
    }
    .collection-photo--15 {
        height: calc(.9 * 210px);
        top: calc(.9 * 444px);
        left: calc(.9 * 1057px);
    }
    .card--15 {
        top: calc(.9 * 444px);
        left: calc(.9 * 1057px);
    }
    .collection-photo--13 {
        height: calc(.9 * 180px);
        top: calc(.9 * 10px);
        left: calc(.9 * 1107px);
    }
    .card--13 {
        top: calc(.9 * 10px);
        left: calc(.9 * 1107px);
    }
    .collection-photo--56 {
        height: calc(.9 * 224px);
        top: calc(.9 * 205px);
        left: calc(.9 * 1107px);
    }
    .card--56 {
        top: calc(.9 * 205px);
        left: calc(.9 * 1107px);
    }
    .collection-photo--24 {
        height: calc(.9 * 135px);
        top: calc(.9 * 115px);
        left: calc(.9 * 1302px);
    }
    .card--24 {
        top: calc(.9 * 115px);
        left: calc(.9 * 1302px);
    }
    .collection-photo--18 {
        height: calc(.9 * 162px);
        top: calc(.9 * 266px);
        left: calc(.9 * 1302px);
    }
    .card--18 {
        top: calc(.9 * 266px);
        left: calc(.9 * 1302px);
    }
    .collection-photo--12 {
        height: calc(.9 * 95px);
        top: calc(.9 * 444px);
        left: calc(.9 * 1386px);
    }
    .card--12 {
        top: calc(.9 * 444px);
        left: calc(.9 * 1386px);
    }
    .collection-photo--9 {
        height: calc(.9 * 266px);
        top: calc(.9 * -16px);
        left: calc(.9 * 1520px);
    }
    .card--9 {
        top: calc(.9 * -16px);
        left: calc(.9 * 1520px);
    }
    .collection-photo--10 {
        height: calc(.9 * 166px);
        top: calc(.9 * 500px);
        left: calc(.9 * 1561px);
    }
    .card--10 {
        top: calc(.9 * 500px);
        left: calc(.9 * 1561px);
    }
    .collection-photo--63 {
        height: calc(.9 * 220px);
        top: calc(.9 * 265px);
        left: calc(.9 * 1585px);
    }
    .card--63 {
        top: calc(.9 * 265px);
        left: calc(.9 * 1585px);
    }
    .collection-photo--75 {
        height: calc(.9 * 194px);
        top: calc(.9 * 188px);
        left: calc(.9 * 1748px);
    }
    .card--75 {
        top: calc(.9 * 188px);
        left: calc(.9 * 1748px);
    }
    .collection-photo--47 {
        height: calc(.9 * 84px);
        top: calc(.9 * 397px);
        left: calc(.9 * 1748px);
    }
    .card--47 {
        top: calc(.9 * 397px);
        left: calc(.9 * 1748px);
    }
    .collection-photo--93 {
        height: calc(.9 * 112px);
        top: calc(.9 * 65px);
        left: calc(.9 * 1822px);
    }
    .card--93 {
        top: calc(.9 * 65px);
        left: calc(.9 * 1822px);
    }
    .collection-photo--22 {
        height: calc(.9 * 212px);
        top: calc(.9 * 397px);
        left: calc(.9 * 1898px);
    }
    .card--22 {
        top: calc(.9 * 397px);
        left: calc(.9 * 1898px);
    }
    .collection-photo--3 {
        height: calc(.9 * 160px);
        top: calc(.9 * 81px);
        left: calc(.9 * 2010px);
    }
    .card--3 {
        top: calc(.9 * 81px);
        left: calc(.9 * 2010px);
    }
    .collection-photo--77 {
        height: calc(.9 * 126px);
        top: calc(.9 * 256px);
        left: calc(.9 * 2010px);
    }
    .card--77 {
        top: calc(.9 * 256px);
        left: calc(.9 * 2010px);
    }
    .collection-photo--78 {
        height: calc(.9 * 250px);
        top: calc(.9 * 256px);
        left: calc(.9 * 2215px);
    }
    .card--78 {
        top: calc(.9 * 256px);
        left: calc(.9 * 2215px);
    }
    .collection-photo--60 {
        height: calc(.9 * 155px);
        top: calc(.9 * 519px);
        left: calc(.9 * 2215px);
    }
    .card--60 {
        top: calc(.9 * 519px);
        left: calc(.9 * 2215px);
    }
    .collection-photo--40 {
        height: calc(.9 * 226px);
        top: calc(.9 * 16px);
        left: calc(.9 * 2260px);
    }
    .card--40 {
        top: calc(.9 * 16px);
        left: calc(.9 * 2260px);
    }
    .collection-photo--62 {
        height: calc(.9 * 238px);
        top: calc(.9 * 169px);
        left: calc(.9 * 2422px);
    }
    .card--62 {
        top: calc(.9 * 169px);
        left: calc(.9 * 2422px);
    }
    .collection-photo--80 {
        height: calc(.9 * 162px);
        top: calc(.9 * 420px);
        left: calc(.9 * 2422px);
    }
    .card--80 {
        top: calc(.9 * 420px);
        left: calc(.9 * 2422px);
    }
    .collection-photo--87 {
        height: calc(.9 * 120px);
        top: calc(.9 * 35px);
        left: calc(.9 * 2569px);
    }
    .card--87 {
        top: calc(.9 * 35px);
        left: calc(.9 * 2569px);
    }
    .collection-photo--2 {
        height: calc(.9 * 200px);
        top: calc(.9 * 420px);
        left: calc(.9 * 2654px);
    }
    .card--2 {
        top: calc(.9 * 420px);
        left: calc(.9 * 2654px);
    }
    .collection-photo--30 {
        height: calc(.9 * 282px);
        top: calc(.9 * 125px);
        left: calc(.9 * 2763px);
    }
    .card--30 {
        top: calc(.9 * 125px);
        left: calc(.9 * 2763px);
    }
    .collection-photo--21 {
        height: calc(.9 * 136px);
        top: calc(.9 * 420px);
        left: calc(.9 * 2869px);
    }
    .card--21 {
        top: calc(.9 * 420px);
        left: calc(.9 * 2869px);
    }
    .collection-photo--7 {
        height: calc(.9 * 150px);
        top: calc(.9 * 53px);
        left: calc(.9 * 3014px);
    }
    .card--7 {
        top: calc(.9 * 53px);
        left: calc(.9 * 3014px);
    }
    .collection-photo--89 {
        height: calc(.9 * 150px);
        top: calc(.9 * 217px);
        left: calc(.9 * 3015px);
    }
    .card--89 {
        top: calc(.9 * 217px);
        left: calc(.9 * 3015px);
    }
    .collection-photo--34 {
        height: calc(.9 * 190px);
        top: calc(.9 * 382px);
        left: calc(.9 * 3015px);
    }
    .card--34 {
        top: calc(.9 * 382px);
        left: calc(.9 * 3015px);
    }
    .collection-photo--86 {
        height: calc(.9 * 200px);
        top: calc(.9 * 167px);
        left: calc(.9 * 3229px);
    }
    .card--86 {
        top: calc(.9 * 167px);
        left: calc(.9 * 3229px);
    }
    .collection-photo--48 {
        height: calc(.9 * 240px);
        top: calc(.9 * 257px);
        left: calc(.9 * 3392px);
    }
    .card--48 {
        top: calc(.9 * 257px);
        left: calc(.9 * 3392px);
    }
    .collection-photo--98 {
        height: calc(.9 * 128px);
        top: calc(.9 * 512px);
        left: calc(.9 * 3392px);
    }
    .card--98 {
        top: calc(.9 * 512px);
        left: calc(.9 * 3392px);
    }
    .collection-photo--65 {
        height: calc(.9 * 146px);
        top: calc(.9 * 96px);
        left: calc(.9 * 3494px);
    }
    .card--65 {
        top: calc(.9 * 96px);
        left: calc(.9 * 3494px);
    }
    .collection-photo--6 {
        height: calc(.9 * 128px);
        top: calc(.9 * 512px);
        left: calc(.9 * 3589px);
    }
    .card--6 {
        top: calc(.9 * 512px);
        left: calc(.9 * 3589px);
    }
    .collection-photo--41 {
        height: calc(.9 * 168px);
        top: calc(.9 * 74px);
        left: calc(.9 * 3724px);
    }
    .card--41 {
        top: calc(.9 * 74px);
        left: calc(.9 * 3724px);
    }
    .collection-photo--81 {
        height: calc(.9 * 158px);
        top: calc(.9 * 257px);
        left: calc(.9 * 3784px);
    }
    .card--81 {
        top: calc(.9 * 257px);
        left: calc(.9 * 3784px);
    }
    .collection-photo--73 {
        height: calc(.9 * 162px);
        top: calc(.9 * 430px);
        left: calc(.9 * 3784px);
    }
    .card--73 {
        top: calc(.9 * 430px);
        left: calc(.9 * 3784px);
    }
    .collection-photo--74 {
        height: calc(.9 * 222px);
        top: calc(.9 * 430px);
        left: calc(.9 * 3928px);
    }
    .card--74 {
        top: calc(.9 * 430px);
        left: calc(.9 * 3928px);
    }
    .collection-photo--96 {
        height: calc(.9 * 210px);
        top: calc(.9 * 205px);
        left: calc(.9 * 4000px);
    }
    .card--96 {
        top: calc(.9 * 205px);
        left: calc(.9 * 4000px);
    }
    .collection-photo--42 {
        height: calc(.9 * 150px);
        top: calc(.9 * -12px);
        left: calc(.9 * 4138px);
    }
    .card--42 {
        top: calc(.9 * -12px);
        left: calc(.9 * 4138px);
    }
    .collection-photo--72 {
        height: calc(.9 * 262px);
        top: calc(.9 * 153px);
        left: calc(.9 * 4152px);
    }
    .card--72 {
        top: calc(.9 * 153px);
        left: calc(.9 * 4152px);
    }
    .collection-photo--27 {
        height: calc(.9 * 128px);
        top: calc(.9 * 430px);
        left: calc(.9 * 4217px);
    }
    .card--27 {

        top: calc(.9 * 430px);
        left: calc(.9 * 4217px);
    }
    .collection-photo--8 {
        height: calc(.9 * 150px);
        top: calc(.9 * -12px);
        left: calc(.9 * 4363px);
    }
    .card--8 {
        top: calc(.9 * -12px);
        left: calc(.9 * 4363px);
    }
    .collection-photo--90 {
        height: calc(.9 * 196px);
        top: calc(.9 * 430px);
        left: calc(.9 * 4423px);
    }
    .card--90 {
        top: calc(.9 * 430px);
        left: calc(.9 * 4423px);
    }
    .collection-photo--95 {
        height: calc(.9 * 144px);
        top: calc(.9 * 114px);
        left: calc(.9 * 4491px);
    }
    .card--95 {
        top: calc(.9 * 114px);
        left: calc(.9 * 4491px);
    }
    .collection-photo--66 {
        height: calc(.9 * 138px);
        top: calc(.9 * 274px);
        left: calc(.9 * 4491px);
    }
    .card--66 {
        top: calc(.9 * 274px);
        left: calc(.9 * 4491px);
    }
    .collection-photo--91 {
        height: calc(.9 * 292px);
        top: calc(.9 * 20px);
        left: calc(.9 * 4688px);
    }
    .card--91 {
        top: calc(.9 * 20px);
        left: calc(.9 * 4688px);
    }
    .collection-photo--68 {
        height: calc(.9 * 165px);
        top: calc(.9 * 327px);
        left: calc(.9 * 4688px);
    }
    .card--68 {
        top: calc(.9 * 327px);
        left: calc(.9 * 4688px);
    }
    .collection-photo--69 {
        height: calc(.9 * 148px);
        top: calc(.9 * 507px);
        left: calc(.9 * 4688px);
    }
    .card--69 {
        top: calc(.9 * 507px);
        left: calc(.9 * 4688px);
    }
    .collection-photo--14 {
        height: calc(.9 * 110px);
        top: calc(.9 * 80px);
        left: calc(.9 * 4910px);
    }
    .card--14 {
        top: calc(.9 * 80px);
        left: calc(.9 * 4910px);
    }
    .collection-photo--19 {
        height: calc(.9 * 165px);
        top: calc(.9 * 205px);
        left: calc(.9 * 4910px);
    }
    .card--19 {
        top: calc(.9 * 205px);
        left: calc(.9 * 4910px);
    }
    .collection-photo--58 {
        height: calc(.9 * 200px);
        top: calc(.9 * 385px);
        left: calc(.9 * 4910px);
    }
    .card--58 {
        top: calc(.9 * 385px);
        left: calc(.9 * 4910px);
    }
    .collection-photo--29 {
        height: calc(.9 * 260px);
        top: calc(.9 * 385px);
        left: calc(.9 * 5081px);
    }
    .card--29 {
        top: calc(.9 * 385px);
        left: calc(.9 * 5081px);
    }
    .collection-photo--23 {
        height: calc(.9 * 165px);
        top: calc(.9 * 205px);
        left: calc(.9 * 5173px);
    }
    .card--23 {
        top: calc(.9 * 205px);
        left: calc(.9 * 5173px);
    }
    .collection-photo--52 {
        height: calc(.9 * 196px);
        top: calc(.9 * 26px);
        left: calc(.9 * 5332px);
    }
    .card--52 {
        top: calc(.9 * 26px);
        left: calc(.9 * 5332px);
    }
    .collection-photo--57 {
        height: calc(.9 * 217px);
        top: calc(.9 * 234px);
        left: calc(.9 * 5332px);
    }
    .card--57 {
        top: calc(.9 * 234px);
        left: calc(.9 * 5332px);
    }
    .collection-photo--17 {
        height: calc(.9 * 190px);
        top: calc(.9 * 464px);
        left: calc(.9 * 5332px);
    }
    .card--17 {
        top: calc(.9 * 464px);
        left: calc(.9 * 5332px);
    }
    .collection-photo--11 {
        height: calc(.9 * 222px);
        top: calc(.9 * 188px);
        left: calc(.9 * 5671px);
    }
    .card--11 {
        top: calc(.9 * 188px);
        left: calc(.9 * 5671px);
    }
    .collection-photo--26 {
        height: calc(.9 * 142px);
        top: calc(.9 * 425px);
        left: calc(.9 * 5671px);
    }
    .card--26 {
        top: calc(.9 * 425px);
        left: calc(.9 * 5671px);
    }
    .collection-photo--33 {
        height: calc(.9 * 138px);
        top: calc(.9 * 35px);
        left: calc(.9 * 5877px);
    }
    .card--33 {
        top: calc(.9 * 35px);
        left: calc(.9 * 5877px);
    }
    .collection-photo--43 {
        height: calc(.9 * 200px);
        top: calc(.9 * 425px);
        left: calc(.9 * 5896px);
    }
    .card--43 {
        top: calc(.9 * 425px);
        left: calc(.9 * 5896px);
    }
    .collection-photo--71 {
        height: calc(.9 * 275px);
        top: calc(.9 * 78px);
        left: calc(.9 * 6094px);
    }
    .card--71 {
        top: calc(.9 * 78px);
        left: calc(.9 * 6094px);
    }
    .collection-photo--84 {
        height: calc(.9 * 176px);
        top: calc(.9 * 368px);
        left: calc(.9 * 6094px);
    }
    .card--84 {
        top: calc(.9 * 368px);
        left: calc(.9 * 6094px);
    }
    .collection-photo--97 {
        height: calc(.9 * 140px);
        top: calc(.9 * 38px);
        left: calc(.9 * 6328px);
    }
    .card--97 {
        top: calc(.9 * 38px);
        left: calc(.9 * 6328px);
    }
    .collection-photo--59 {
        height: calc(.9 * 205px);
        top: calc(.9 * 193px);
        left: calc(.9 * 6328px);
    }
    .card--59 {
        top: calc(.9 * 193px);
        left: calc(.9 * 6328px);
    }
    .collection-photo--31 {
        height: calc(.9 * 250px);
        top: calc(.9 * 413px);
        left: calc(.9 * 6519px);
    }
    .card--31 {
        top: calc(.9 * 413px);
        left: calc(.9 * 6519px);
    }
    .collection-photo--50 {
        height: calc(.9 * 278px);
        top: calc(.9 * 120px);
        left: calc(.9 * 6603px);
    }
    .card--50 {
        top: calc(.9 * 120px);
        left: calc(.9 * 6603px);
    }
    .collection-photo--76 {
        height: calc(.9 * 200px);
        top: calc(.9 * 413px);
        left: calc(.9 * 6712px);
    }
    .card--76 {
        top: calc(.9 * 413px);
        left: calc(.9 * 6712px);
    }
    .collection-photo--25 {
        height: calc(.9 * 200px);
        top: calc(.9 * 34px);
        left: calc(.9 * 6899px);
    }
    .card--25 {
        top: calc(.9 * 34px);
        left: calc(.9 * 6899px);
    }
    .collection-photo--83 {
        height: calc(.9 * 200px);
        top: calc(.9 * 250px);
        left: calc(.9 * 6899px);
    }
    .card--83 {
        top: calc(.9 * 250px);
        left: calc(.9 * 6899px);
    }
    .collection-photo--64 {
        height: calc(.9 * 160px);
        top: calc(.9 * 465px);
        left: calc(.9 * 6899px);
    }
    .card--64 {
        top: calc(.9 * 465px);
        left: calc(.9 * 6899px);
    }
    .collection-photo--32 {
        height: calc(.9 * 130px);
        top: calc(.9 * 250px);
        left: calc(.9 * 7050px);
    }
    .card--32 {
        top: calc(.9 * 250px);
        left: calc(.9 * 7050px);
    }
    .collection-photo--70 {
        height: calc(.9 * 250px);
        top: calc(.9 * -16px);
        left: calc(.9 * 7112px);
    }
    .card--70 {
        top: calc(.9 * -16px);
        left: calc(.9 * 7112px);
    }
    .collection-photo--85 {
        height: calc(.9 * 168px);
        top: calc(.9 * 395px);
        left: calc(.9 * 7114px);
    }
    .card--85 {
        top: calc(.9 * 395px);
        left: calc(.9 * 7114px);
    }
    .collection-photo--5 {
        height: calc(.9 * 202px);
        top: calc(.9 * 250px);
        left: calc(.9 * 7262px);
    }
    .card--5 {
        top: calc(.9 * 250px);
        left: calc(.9 * 7262px);
    }
    .collection-photo--92 {
        height: calc(.9 * 196px);
        top: calc(.9 * 467px);
        left: calc(.9 * 7262px);
    }
    .card--92 {
        top: calc(.9 * 467px);
        left: calc(.9 * 7262px);
    }
    .collection-photo--36 {
        height: calc(.9 * 210px);
        top: calc(.9 * 26px);
        left: calc(.9 * 7401px);
    }
    .card--36 {
        top: calc(.9 * 26px);
        left: calc(.9 * 7401px);
    }
    .collection-photo--4 {
        height: calc(.9 * 90px);
        top: calc(.9 * 250px);
        left: calc(.9 * 7580px);
    }
    .card--4 {
        top: calc(.9 * 250px);
        left: calc(.9 * 7580px);
    }
    .collection-photo--79 {
        height: calc(.9 * 145px);
        top: calc(.9 * 355px);
        left: calc(.9 * 7580px);
    }
    .card--79 {
        top: calc(.9 * 355px);
        left: calc(.9 * 7580px);
    }
    .collection-photo--51 {
        height: calc(.9 * 107px);
        top: calc(.9 * 98px);
        left: calc(.9 * 7728px);
    }
    .card--51 {
        top: calc(.9 * 98px);
        left: calc(.9 * 7728px);
    }
    .collection-photo--94 {
        height: calc(.9 * 124px);
        top: calc(.9 * 217px);
        left: calc(.9 * 7728px);
    }
    .card--94 {
        top: calc(.9 * 217px);
        left: calc(.9 * 7728px);
    }
    .collection-photo--38 {
        height: calc(.9 * 244px);
        top: calc(.9 * 355px);
        left: calc(.9 * 7797px);
    }
    .card--38 {
        top: calc(.9 * 355px);
        left: calc(.9 * 7797px);
    }
    .collection-photo--88 {
        height: calc(.9 * 288px);
        top: calc(.9 * 53px);
        left: calc(.9 * 7908px);
    }
    .card--88 {
        top: calc(.9 * 53px);
        left: calc(.9 * 7908px);
    }
    .collection-photo--49 {
        height: calc(.9 * 180px);
        top: calc(.9 * 355px);
        left: calc(.9 * 7973px);
    }
    .card--49 {
        top: calc(.9 * 355px);
        left: calc(.9 * 7973px);
    }
    .collection-photo--16 {
        height: calc(.9 * 134px);
        top: calc(.9 * 207px);
        left: calc(.9 * 8151px);
    }
    .card--16 {
        top: calc(.9 * 207px);
        left: calc(.9 * 8151px);
    }
    .collection-photo--0 {
        height: calc(.9 * 99px);
        top: calc(.9 * 95px);
        left: calc(.9 * 8225px);
    }
    .card--0 {
        top: calc(.9 * 95px);
        left: calc(.9 * 8225px);
    }
    .collection-photo--37 {
        height: calc(.9 * 200px);
        top: calc(.9 * 207px);
        left: calc(.9 * 8368px);
    }
    .card--37 {
        top: calc(.9 * 207px);
        left: calc(.9 * 8368px);
    }
} */

/* @media (max-height: 760px) {
    .collection-photo--54 {
        height: calc(.8 * 200px);
        top: calc(.8 * 100px);
        left: calc(.8 * 0px);
    }
    .card--54 {
        top: calc(.8 * 100px);
        left: calc(.8 * 0px);
    }
    .collection-photo--55 {
        height: calc(.8 * 200px);
        top: calc(.8 * 315px);
        left: calc(.8 * 30px);
    }
    .card--55 {
        top: calc(.8 * 315px);
        left: calc(.8 * 30px);
    }
    .collection-photo--44 {
        height: calc(.8 * 112px);
        top: calc(.8 * 2px);
        left: calc(.8 * 172px);
    }
    .card--44 {
        top: calc(.8 * 2px);
        left: calc(.8 * 172px);
    }
    .collection-photo--20 {
        height: calc(.8 * 170px);
        top: calc(.8 * 130px);
        left: calc(.8 * 173px);
    }
    .card--20 {
        top: calc(.8 * 130px);
        left: calc(.8 * 173px);
    }
    .collection-photo--39 {
        height: calc(.8 * 120px);
        top: calc(.8 * 315px);
        left: calc(.8 * 244px);
    }
    .card--39 {
        top: calc(.8 * 315px);
        left: calc(.8 * 244px);
    }
    .collection-photo--53 {
        height: calc(.8 * 187px);
        top: calc(.8 * 449px);
        left: calc(.8 * 244px);
    }
    .card--53 {
        top: calc(.8 * 449px);
        left: calc(.8 * 244px);
    }
    .collection-photo--61 {
        height: calc(.8 * 156px);
        top: calc(.8 * 315px);
        left: calc(.8 * 408px);
    }
    .card--61 {
        top: calc(.8 * 315px);
        left: calc(.8 * 408px);
    }
    .collection-photo--1 {
        height: calc(.8 * 113px);
        top: 0;
        left: 0;
    }
    .card--1 {
        top: 0;
        left: calc(0 * 145px);
    }
    .collection-photo--35 {
        height: calc(.8 * 250px);
        top: calc(.8 * 50px);
        left: calc(.8 * 450px);
    }
    .card--35 {
        top: calc(.8 * 50px);
        left: calc(.8 * 450px);
    }
    .collection-photo--45 {
        height: calc(.8 * 198px);
        top: calc(.8 * 20px);
        left: calc(.8 * 626px);
    }
    .card--45 {
        top: calc(.8 * 20px);
        left: calc(.8 * 626px);
    }
    .collection-photo--82 {
        height: calc(.8 * 196px);
        top: calc(.8 * 233px);
        left: calc(.8 * 626px);
    }
    .card--82 {
        top: calc(.8 * 233px);
        left: calc(.8 * 626px);
    }
    .collection-photo--46 {
        height: calc(.8 * 187px);
        top: calc(.8 * 444px);
        left: calc(.8 * 626px);
    }
    .card--46 {
        top: calc(.8 * 444px);
        left: calc(.8 * 626px);
    }
    .collection-photo--67 {
        height: calc(.8 * 134px);
        top: calc(.8 * 444px);
        left: calc(.8 * 841px);
    }
    .card--67 {
        top: calc(.8 * 444px);
        left: calc(.8 * 841px);
    }
    .collection-photo--99 {
        height: calc(.8 * 152px);
        top: calc(.8 * 102px);
        left: calc(.8 * 891px);
    }
    .card--99 {
        top: calc(.8 * 102px);
        left: calc(.8 * 891px);
    }
    .collection-photo--28 {
        height: calc(.8 * 160px);
        top: calc(.8 * 269px);
        left: calc(.8 * 891px);
    }
    .card--28 {
        top: calc(.8 * 269px);
        left: calc(.8 * 891px);
    }
    .collection-photo--15 {
        height: calc(.8 * 210px);
        top: calc(.8 * 444px);
        left: calc(.8 * 1057px);
    }
    .card--15 {
        top: calc(.8 * 444px);
        left: calc(.8 * 1057px);
    }
    .collection-photo--13 {
        height: calc(.8 * 180px);
        top: calc(.8 * 10px);
        left: calc(.8 * 1107px);
    }
    .card--13 {
        top: calc(.8 * 10px);
        left: calc(.8 * 1107px);
    }
    .collection-photo--56 {
        height: calc(.8 * 224px);
        top: calc(.8 * 205px);
        left: calc(.8 * 1107px);
    }
    .card--56 {
        top: calc(.8 * 205px);
        left: calc(.8 * 1107px);
    }
    .collection-photo--24 {
        height: calc(.8 * 135px);
        top: calc(.8 * 115px);
        left: calc(.8 * 1302px);
    }
    .card--24 {
        top: calc(.8 * 115px);
        left: calc(.8 * 1302px);
    }
    .collection-photo--18 {
        height: calc(.8 * 162px);
        top: calc(.8 * 266px);
        left: calc(.8 * 1302px);
    }
    .card--18 {
        top: calc(.8 * 266px);
        left: calc(.8 * 1302px);
    }
    .collection-photo--12 {
        height: calc(.8 * 159px);
        top: calc(.8 * 529px);
        left: calc(.8 * 0px);
    }
    .card--12 {
        top: calc(.8 * 529px);
        left: calc(.8 * 0px);
    }
    .collection-photo--9 {
        height: calc(.8 * 266px);
        top: calc(.8 * 171px);
        left: calc(.8 * 441px);
    }
    .card--9 {
        top: calc(.8 * 171px);
        left: calc(.8 * 441px);
    }
    .collection-photo--10 {
        height: calc(.8 * 166px);
        top: calc(.8 * 453px);
        left: calc(.8 * 492px);
    }
    .card--10 {
        top: calc(.8 * 453px);
        left: calc(.8 * 492px);
    }
    .collection-photo--63 {
        height: calc(.8 * 220px);
        top: calc(.8 * 265px);
        left: calc(.8 * 1585px);
    }
    .card--63 {
        top: calc(.8 * 265px);
        left: calc(.8 * 1585px);
    }
    .collection-photo--75 {
        height: calc(.8 * 194px);
        top: calc(.8 * 188px);
        left: calc(.8 * 1748px);
    }
    .card--75 {
        top: calc(.8 * 188px);
        left: calc(.8 * 1748px);
    }
    .collection-photo--47 {
        height: calc(.8 * 84px);
        top: calc(.8 * 397px);
        left: calc(.8 * 1748px);
    }
    .card--47 {
        top: calc(.8 * 397px);
        left: calc(.8 * 1748px);
    }
    .collection-photo--93 {
        height: calc(.8 * 112px);
        top: calc(.8 * 65px);
        left: calc(.8 * 1822px);
    }
    .card--93 {
        top: calc(.8 * 65px);
        left: calc(.8 * 1822px);
    }
    .collection-photo--22 {
        height: calc(.8 * 212px);
        top: calc(.8 * 397px);
        left: calc(.8 * 1898px);
    }
    .card--22 {
        top: calc(.8 * 397px);
        left: calc(.8 * 1898px);
    }
    .collection-photo--3 {
        height: calc(.8 * 160px);
        top: 282px;
        left: 0;
    }
    .card--3 {
        top: calc(1.4 * 196px);
        left: 0;
    }
    .collection-photo--77 {
        height: calc(.8 * 126px);
        top: calc(.8 * 256px);
        left: calc(.8 * 2010px);
    }
    .card--77 {
        top: calc(.8 * 256px);
        left: calc(.8 * 2010px);
    }
    .collection-photo--78 {
        height: calc(.8 * 250px);
        top: calc(.8 * 256px);
        left: calc(.8 * 2215px);
    }
    .card--78 {
        top: calc(.8 * 256px);
        left: calc(.8 * 2215px);
    }
    .collection-photo--60 {
        height: calc(.8 * 155px);
        top: calc(.8 * 519px);
        left: calc(.8 * 2215px);
    }
    .card--60 {
        top: calc(.8 * 519px);
        left: calc(.8 * 2215px);
    }
    .collection-photo--40 {
        height: calc(.8 * 226px);
        top: calc(.8 * 16px);
        left: calc(.8 * 2260px);
    }
    .card--40 {
        top: calc(.8 * 16px);
        left: calc(.8 * 2260px);
    }
    .collection-photo--62 {
        height: calc(.8 * 238px);
        top: calc(.8 * 169px);
        left: calc(.8 * 2422px);
    }
    .card--62 {
        top: calc(.8 * 169px);
        left: calc(.8 * 2422px);
    }
    .collection-photo--80 {
        height: calc(.8 * 162px);
        top: calc(.8 * 420px);
        left: calc(.8 * 2422px);
    }
    .card--80 {
        top: calc(.8 * 420px);
        left: calc(.8 * 2422px);
    }
    .collection-photo--87 {
        height: calc(.8 * 120px);
        top: calc(.8 * 35px);
        left: calc(.8 * 2569px);
    }
    .card--87 {
        top: calc(.8 * 35px);
        left: calc(.8 * 2569px);
    }
    .collection-photo--2 {
        height: calc(.8 * 200px);
        top: 105px;
        left: 0;
    }
    .card--2 {
        top: 108px;
        left: 2px;
    }
    .collection-photo--30 {
        height: calc(.8 * 282px);
        top: calc(.8 * 125px);
        left: calc(.8 * 2763px);
    }
    .card--30 {
        top: calc(.8 * 125px);
        left: calc(.8 * 2763px);
    }
    .collection-photo--21 {
        height: calc(.8 * 136px);
        top: calc(.8 * 420px);
        left: calc(.8 * 2869px);
    }
    .card--21 {
        top: calc(.8 * 420px);
        left: calc(.8 * 2869px);
    }
    .collection-photo--7 {
        height: calc(.8 * 150px);
        top: calc(.8 * 453px);
        left: calc(.8 * 325px);
    }
    .card--7 {
        top: calc(.8 * 453px);
        left: calc(.8 * 325px);
    }
    .collection-photo--89 {
        height: calc(.8 * 150px);
        top: calc(.8 * 217px);
        left: calc(.8 * 3015px);
    }
    .card--89 {
        top: calc(.8 * 217px);
        left: calc(.8 * 3015px);
    }
    .collection-photo--34 {
        height: calc(.8 * 190px);
        top: calc(.8 * 382px);
        left: calc(.8 * 3015px);
    }
    .card--34 {
        top: calc(.8 * 382px);
        left: calc(.8 * 3015px);
    }
    .collection-photo--86 {
        height: calc(.8 * 200px);
        top: calc(.8 * 167px);
        left: calc(.8 * 3229px);
    }
    .card--86 {
        top: calc(.8 * 167px);
        left: calc(.8 * 3229px);
    }
    .collection-photo--48 {
        height: calc(.8 * 240px);
        top: calc(.8 * 257px);
        left: calc(.8 * 3392px);
    }
    .card--48 {
        top: calc(.8 * 257px);
        left: calc(.8 * 3392px);
    }
    .collection-photo--98 {
        height: calc(.8 * 128px);
        top: calc(.8 * 512px);
        left: calc(.8 * 3392px);
    }
    .card--98 {
        top: calc(.8 * 512px);
        left: calc(.8 * 3392px);
    }
    .collection-photo--65 {
        height: calc(.8 * 146px);
        top: calc(.8 * 96px);
        left: calc(.8 * 3494px);
    }
    .card--65 {
        top: calc(.8 * 96px);
        left: calc(.8 * 3494px);
    }
    .collection-photo--6 {
        height: calc(.8 * 128px);
        top: calc(.8 * 452px);
        left: calc(.8 * 178px);
    }
    .card--6 {
        top: calc(.8 * 452px);
        left: calc(.8 * 178px);
    }
    .collection-photo--41 {
        height: calc(.8 * 168px);
        top: calc(.8 * 74px);
        left: calc(.8 * 3724px);
    }
    .card--41 {
        top: calc(.8 * 74px);
        left: calc(.8 * 3724px);
    }
    .collection-photo--81 {
        height: calc(.8 * 158px);
        top: calc(.8 * 257px);
        left: calc(.8 * 3784px);
    }
    .card--81 {
        top: calc(.8 * 257px);
        left: calc(.8 * 3784px);
    }
    .collection-photo--73 {
        height: calc(.8 * 162px);
        top: calc(.8 * 430px);
        left: calc(.8 * 3784px);
    }
    .card--73 {
        top: calc(.8 * 430px);
        left: calc(.8 * 3784px);
    }
    .collection-photo--74 {
        height: calc(.8 * 222px);
        top: calc(.8 * 430px);
        left: calc(.8 * 3928px);
    }
    .card--74 {
        top: calc(.8 * 430px);
        left: calc(.8 * 3928px);
    }
    .collection-photo--96 {
        height: calc(.8 * 210px);
        top: calc(.8 * 205px);
        left: calc(.8 * 4000px);
    }
    .card--96 {
        top: calc(.8 * 205px);
        left: calc(.8 * 4000px);
    }
    .collection-photo--42 {
        height: calc(.8 * 150px);
        top: calc(.8 * -12px);
        left: calc(.8 * 4138px);
    }
    .card--42 {
        top: calc(.8 * -12px);
        left: calc(.8 * 4138px);
    }
    .collection-photo--72 {
        height: calc(.8 * 262px);
        top: calc(.8 * 153px);
        left: calc(.8 * 4152px);
    }
    .card--72 {
        top: calc(.8 * 153px);
        left: calc(.8 * 4152px);
    }
    .collection-photo--27 {
        height: calc(.8 * 128px);
        top: calc(.8 * 430px);
        left: calc(.8 * 4217px);
    }
    .card--27 {
        top: calc(.8 * 430px);
        left: calc(.8 * 4217px);
    }
    .collection-photo--8 {
        height: calc(.8 * 150px);
        top: calc(.8 * 0px);
        left: calc(.8 * 441px);
    }
    .card--8 {
        top: calc(.8 * 0px);
        left: calc(.8 * 441px);
    }
    .collection-photo--90 {
        height: calc(.8 * 196px);
        top: calc(.8 * 430px);
        left: calc(.8 * 4423px);
    }
    .card--90 {
        top: calc(.8 * 430px);
        left: calc(.8 * 4423px);
    }
    .collection-photo--95 {
        height: calc(.8 * 144px);
        top: calc(.8 * 114px);
        left: calc(.8 * 4491px);
    }
    .card--95 {
        top: calc(.8 * 114px);
        left: calc(.8 * 4491px);
    }
    .collection-photo--66 {
        height: calc(.8 * 138px);
        top: calc(.8 * 274px);
        left: calc(.8 * 4491px);
    }
    .card--66 {
        top: calc(.8 * 274px);
        left: calc(.8 * 4491px);
    }
    .collection-photo--91 {
        height: calc(.8 * 292px);
        top: calc(.8 * 20px);
        left: calc(.8 * 4688px);
    }
    .card--91 {
        top: calc(.8 * 20px);
        left: calc(.8 * 4688px);
    }
    .collection-photo--68 {
        height: calc(.8 * 165px);
        top: calc(.8 * 327px);
        left: calc(.8 * 4688px);
    }
    .card--68 {
        top: calc(.8 * 327px);
        left: calc(.8 * 4688px);
    }
    .collection-photo--69 {
        height: calc(.8 * 148px);
        top: calc(.8 * 507px);
        left: calc(.8 * 4688px);
    }
    .card--69 {
        top: calc(.8 * 507px);
        left: calc(.8 * 4688px);
    }
    .collection-photo--14 {
        height: calc(.8 * 110px);
        top: calc(.8 * 80px);
        left: calc(.8 * 4910px);
    }
    .card--14 {
        top: calc(.8 * 80px);
        left: calc(.8 * 4910px);
    }
    .collection-photo--19 {
        height: calc(.8 * 165px);
        top: calc(.8 * 205px);
        left: calc(.8 * 4910px);
    }
    .card--19 {
        top: calc(.8 * 205px);
        left: calc(.8 * 4910px);
    }
    .collection-photo--58 {
        height: calc(.8 * 200px);
        top: calc(.8 * 385px);
        left: calc(.8 * 4910px);
    }
    .card--58 {
        top: calc(.8 * 385px);
        left: calc(.8 * 4910px);
    }
    .collection-photo--29 {
        height: calc(.8 * 260px);
        top: calc(.8 * 385px);
        left: calc(.8 * 5081px);
    }
    .card--29 {
        top: calc(.8 * 385px);
        left: calc(.8 * 5081px);
    }
    .collection-photo--23 {
        height: calc(.8 * 165px);
        top: calc(.8 * 205px);
        left: calc(.8 * 5173px);
    }
    .card--23 {
        top: calc(.8 * 205px);
        left: calc(.8 * 5173px);
    }
    .collection-photo--52 {
        height: calc(.8 * 196px);
        top: calc(.8 * 26px);
        left: calc(.8 * 5332px);
    }
    .card--52 {
        top: calc(.8 * 26px);
        left: calc(.8 * 5332px);
    }
    .collection-photo--57 {
        height: calc(.8 * 217px);
        top: calc(.8 * 234px);
        left: calc(.8 * 5332px);
    }
    .card--57 {
        top: calc(.8 * 234px);
        left: calc(.8 * 5332px);
    }
    .collection-photo--17 {
        height: calc(.8 * 190px);
        top: calc(.8 * 464px);
        left: calc(.8 * 5332px);
    }
    .card--17 {
        top: calc(.8 * 464px);
        left: calc(.8 * 5332px);
    }
    .collection-photo--11 {
        height: calc(.8 * 169px);
        top: calc(.8 * -15px);
        left: calc(.8 * 609px);
    }
    .card--11 {
        top: calc(.8 * -15px);
        left: calc(.8 * 609px);
    }
    .collection-photo--26 {
        height: calc(.8 * 142px);
        top: calc(.8 * 425px);
        left: calc(.8 * 5671px);
    }
    .card--26 {
        top: calc(.8 * 425px);
        left: calc(.8 * 5671px);
    }
    .collection-photo--33 {
        height: calc(.8 * 138px);
        top: calc(.8 * 35px);
        left: calc(.8 * 5877px);
    }
    .card--33 {
        top: calc(.8 * 35px);
        left: calc(.8 * 5877px);
    }
    .collection-photo--43 {
        height: calc(.8 * 200px);
        top: calc(.8 * 425px);
        left: calc(.8 * 5896px);
    }
    .card--43 {
        top: calc(.8 * 425px);
        left: calc(.8 * 5896px);
    }
    .collection-photo--71 {
        height: calc(.8 * 275px);
        top: calc(.8 * 78px);
        left: calc(.8 * 6094px);
    }
    .card--71 {
        top: calc(.8 * 78px);
        left: calc(.8 * 6094px);
    }
    .collection-photo--84 {
        height: calc(.8 * 176px);
        top: calc(.8 * 368px);
        left: calc(.8 * 6094px);
    }
    .card--84 {
        top: calc(.8 * 368px);
        left: calc(.8 * 6094px);
    }
    .collection-photo--97 {
        height: calc(.8 * 140px);
        top: calc(.8 * 38px);
        left: calc(.8 * 6328px);
    }
    .card--97 {
        top: calc(.8 * 38px);
        left: calc(.8 * 6328px);
    }
    .collection-photo--59 {
        height: calc(.8 * 205px);
        top: calc(.8 * 193px);
        left: calc(.8 * 6328px);
    }
    .card--59 {
        top: calc(.8 * 193px);
        left: calc(.8 * 6328px);
    }
    .collection-photo--31 {
        height: calc(.8 * 250px);
        top: calc(.8 * 413px);
        left: calc(.8 * 6519px);
    }
    .card--31 {
        top: calc(.8 * 413px);
        left: calc(.8 * 6519px);
    }
    .collection-photo--50 {
        height: calc(.8 * 278px);
        top: calc(.8 * 120px);
        left: calc(.8 * 6603px);
    }
    .card--50 {
        top: calc(.8 * 120px);
        left: calc(.8 * 6603px);
    }
    .collection-photo--76 {
        height: calc(.8 * 200px);
        top: calc(.8 * 413px);
        left: calc(.8 * 6712px);
    }
    .card--76 {
        top: calc(.8 * 413px);
        left: calc(.8 * 6712px);
    }
    .collection-photo--25 {
        height: calc(.8 * 200px);
        top: calc(.8 * 34px);
        left: calc(.8 * 6899px);
    }
    .card--25 {
        top: calc(.8 * 34px);
        left: calc(.8 * 6899px);
    }
    .collection-photo--83 {
        height: calc(.8 * 200px);
        top: calc(.8 * 250px);
        left: calc(.8 * 6899px);
    }
    .card--83 {
        top: calc(.8 * 250px);
        left: calc(.8 * 6899px);
    }
    .collection-photo--64 {
        height: calc(.8 * 160px);
        top: calc(.8 * 465px);
        left: calc(.8 * 6899px);
    }
    .card--64 {
        top: calc(.8 * 465px);
        left: calc(.8 * 6899px);
    }
    .collection-photo--32 {
        height: calc(.8 * 130px);
        top: calc(.8 * 250px);
        left: calc(.8 * 7050px);
    }
    .card--32 {
        top: calc(.8 * 250px);
        left: calc(.8 * 7050px);
    }
    .collection-photo--70 {
        height: calc(.8 * 250px);
        top: calc(.8 * -16px);
        left: calc(.8 * 7112px);
    }
    .card--70 {
        top: calc(.8 * -16px);
        left: calc(.8 * 7112px);
    }
    .collection-photo--85 {
        height: calc(.8 * 168px);
        top: calc(.8 * 395px);
        left: calc(.8 * 7114px);
    }
    .card--85 {
        top: calc(.8 * 395px);
        left: calc(.8 * 7114px);
    }
    .collection-photo--5 {
        height: calc(.8 * 202px);
        top: calc(.73 * 250px);
        left: calc(.8 * 222px);
    }
    .card--5 {
        top: calc(.8 * 231px);
        left: calc(.8 * 223px);
    }
    .collection-photo--92 {
        height: calc(.8 * 196px);
        top: calc(.8 * 467px);
        left: calc(.8 * 7262px);
    }
    .card--92 {
        top: calc(.8 * 467px);
        left: calc(.8 * 7262px);
    }
    .collection-photo--36 {
        height: calc(.8 * 210px);
        top: calc(.8 * 26px);
        left: calc(.8 * 7401px);
    }
    .card--36 {
        top: calc(.8 * 26px);
        left: calc(.8 * 7401px);
    }
    .collection-photo--4 {
        height: calc(.8 * 202px);
        top: 0;
        left: calc(.8 * 220px);
    }
    .card--4 {
        top: 0;
        left: calc(.8 * 222px);
    }
    .collection-photo--79 {
        height: calc(.8 * 145px);
        top: calc(.8 * 355px);
        left: calc(.8 * 7580px);
    }
    .card--79 {
        top: calc(.8 * 355px);
        left: calc(.8 * 7580px);
    }
    .collection-photo--51 {
        height: calc(.8 * 107px);
        top: calc(.8 * 98px);
        left: calc(.8 * 7728px);
    }
    .card--51 {
        top: calc(.8 * 98px);
        left: calc(.8 * 7728px);
    }
    .collection-photo--94 {
        height: calc(.8 * 124px);
        top: calc(.8 * 217px);
        left: calc(.8 * 7728px);
    }
    .card--94 {
        top: calc(.8 * 217px);
        left: calc(.8 * 7728px);
    }
    .collection-photo--38 {
        height: calc(.8 * 244px);
        top: calc(.8 * 355px);
        left: calc(.8 * 7797px);
    }
    .card--38 {
        top: calc(.8 * 355px);
        left: calc(.8 * 7797px);
    }
    .collection-photo--88 {
        height: calc(.8 * 288px);
        top: calc(.8 * 53px);
        left: calc(.8 * 7908px);
    }
    .card--88 {
        top: calc(.8 * 53px);
        left: calc(.8 * 7908px);
    }
    .collection-photo--49 {
        height: calc(.8 * 180px);
        top: calc(.8 * 355px);
        left: calc(.8 * 7973px);
    }
    .card--49 {
        top: calc(.8 * 355px);
        left: calc(.8 * 7973px);
    }
    .collection-photo--16 {
        height: calc(.8 * 134px);
        top: calc(.8 * 207px);
        left: calc(.8 * 8151px);
    }
    .card--16 {
        top: calc(.8 * 207px);
        left: calc(.8 * 8151px);
    }
    .collection-photo--0 {
        height: calc(.8 * 99px);
        top: calc(.8 * 95px);
        left: calc(.8 * 8225px);
    }
    .card--0 {
        top: calc(.8 * 95px);
        left: calc(.8 * 8225px);
    }
    .collection-photo--37 {
        height: calc(.8 * 200px);
        top: calc(.8 * 207px);
        left: calc(.8 * 8368px);
    }
    .card--37 {
        top: calc(.8 * 207px);
        left: calc(.8 * 8368px);
    }
} */

/* @media (max-height: 700px) {
    .collection-photo--54 {
        height: calc(.7 * 200px);
        top: calc(.7 * 100px);
        left: calc(.7 * 0px);
    }
    .card--54 {
        top: calc(.7 * 100px);
        left: calc(.7 * 0px);
    }
    .collection-photo--55 {
        height: calc(.7 * 200px);
        top: calc(.7 * 315px);
        left: calc(.7 * 30px);
    }
    .card--55 {
        top: calc(.7 * 315px);
        left: calc(.7 * 30px);
    }
    .collection-photo--44 {
        height: calc(.7 * 112px);
        top: calc(.7 * 2px);
        left: calc(.7 * 172px);
    }
    .card--44 {
        top: calc(.7 * 2px);
        left: calc(.7 * 172px);
    }
    .collection-photo--20 {
        height: calc(.7 * 170px);
        top: calc(.7 * 130px);
        left: calc(.7 * 173px);
    }
    .card--20 {
        top: calc(.7 * 130px);
        left: calc(.7 * 173px);
    }
    .collection-photo--39 {
        height: calc(.7 * 120px);
        top: calc(.7 * 315px);
        left: calc(.7 * 244px);
    }
    .card--39 {
        top: calc(.7 * 315px);
        left: calc(.7 * 244px);
    }
    .collection-photo--53 {
        height: calc(.7 * 187px);
        top: calc(.7 * 449px);
        left: calc(.7 * 244px);
    }
    .card--53 {
        top: calc(.7 * 449px);
        left: calc(.7 * 244px);
    }
    .collection-photo--61 {
        height: calc(.7 * 156px);
        top: calc(.7 * 315px);
        left: calc(.7 * 408px);
    }
    .card--61 {
        top: calc(.7 * 315px);
        left: calc(.7 * 408px);
    }
    .collection-photo--1 {
        height: calc(.7 * 113px);
        top: calc(.7 * 486px);
        left: calc(.7 * 408px);
    }
    .card--1 {
        top: calc(.7 * 486px);
        left: calc(.7 * 408px);
    }
    .collection-photo--35 {
        height: calc(.7 * 250px);
        top: calc(.7 * 50px);
        left: calc(.7 * 450px);
    }
    .card--35 {
        top: calc(.7 * 50px);
        left: calc(.7 * 450px);
    }
    .collection-photo--45 {
        height: calc(.7 * 198px);
        top: calc(.7 * 20px);
        left: calc(.7 * 626px);
    }
    .card--45 {
        top: calc(.7 * 20px);
        left: calc(.7 * 626px);
    }
    .collection-photo--82 {
        height: calc(.7 * 196px);
        top: calc(.7 * 233px);
        left: calc(.7 * 626px);
    }
    .card--82 {
        top: calc(.7 * 233px);
        left: calc(.7 * 626px);
    }
    .collection-photo--46 {
        height: calc(.7 * 187px);
        top: calc(.7 * 444px);
        left: calc(.7 * 626px);
    }
    .card--46 {
        top: calc(.7 * 444px);
        left: calc(.7 * 626px);
    }
    .collection-photo--67 {
        height: calc(.7 * 134px);
        top: calc(.7 * 444px);
        left: calc(.7 * 841px);
    }
    .card--67 {
        top: calc(.7 * 444px);
        left: calc(.7 * 841px);
    }
    .collection-photo--99 {
        height: calc(.7 * 152px);
        top: calc(.7 * 102px);
        left: calc(.7 * 891px);
    }
    .card--99 {
        top: calc(.7 * 102px);
        left: calc(.7 * 891px);
    }
    .collection-photo--28 {
        height: calc(.7 * 160px);
        top: calc(.7 * 269px);
        left: calc(.7 * 891px);
    }
    .card--28 {
        top: calc(.7 * 269px);
        left: calc(.7 * 891px);
    }
    .collection-photo--15 {
        height: calc(.7 * 210px);
        top: calc(.7 * 444px);
        left: calc(.7 * 1057px);
    }
    .card--15 {
        top: calc(.7 * 444px);
        left: calc(.7 * 1057px);
    }
    .collection-photo--13 {
        height: calc(.7 * 180px);
        top: calc(.7 * 10px);
        left: calc(.7 * 1107px);
    }
    .card--13 {
        top: calc(.7 * 10px);
        left: calc(.7 * 1107px);
    }
    .collection-photo--56 {
        height: calc(.7 * 224px);
        top: calc(.7 * 205px);
        left: calc(.7 * 1107px);
    }
    .card--56 {
        top: calc(.7 * 205px);
        left: calc(.7 * 1107px);
    }
    .collection-photo--24 {
        height: calc(.7 * 135px);
        top: calc(.7 * 115px);
        left: calc(.7 * 1302px);
    }
    .card--24 {
        top: calc(.7 * 115px);
        left: calc(.7 * 1302px);
    }
    .collection-photo--18 {
        height: calc(.7 * 162px);
        top: calc(.7 * 266px);
        left: calc(.7 * 1302px);
    }
    .card--18 {
        top: calc(.7 * 266px);
        left: calc(.7 * 1302px);
    }
    .collection-photo--12 {
        height: calc(.7 * 95px);
        top: calc(.7 * 444px);
        left: calc(.7 * 1386px);
    }
    .card--12 {
        top: calc(.7 * 444px);
        left: calc(.7 * 1386px);
    }
    .collection-photo--9 {
        height: calc(.7 * 266px);
        top: calc(.7 * -16px);
        left: calc(.7 * 1520px);
    }
    .card--9 {
        top: calc(.7 * -16px);
        left: calc(.7 * 1520px);
    }
    .collection-photo--10 {
        height: calc(.7 * 166px);
        top: calc(.7 * 500px);
        left: calc(.7 * 1561px);
    }
    .card--10 {
        top: calc(.7 * 500px);
        left: calc(.7 * 1561px);
    }
    .collection-photo--63 {
        height: calc(.7 * 220px);
        top: calc(.7 * 265px);
        left: calc(.7 * 1585px);
    }
    .card--63 {
        top: calc(.7 * 265px);
        left: calc(.7 * 1585px);
    }
    .collection-photo--75 {
        height: calc(.7 * 194px);
        top: calc(.7 * 188px);
        left: calc(.7 * 1748px);
    }
    .card--75 {
        top: calc(.7 * 188px);
        left: calc(.7 * 1748px);
    }
    .collection-photo--47 {
        height: calc(.7 * 84px);
        top: calc(.7 * 397px);
        left: calc(.7 * 1748px);
    }
    .card--47 {
        top: calc(.7 * 397px);
        left: calc(.7 * 1748px);
    }
    .collection-photo--93 {
        height: calc(.7 * 112px);
        top: calc(.7 * 65px);
        left: calc(.7 * 1822px);
    }
    .card--93 {
        top: calc(.7 * 65px);
        left: calc(.7 * 1822px);
    }
    .collection-photo--22 {
        height: calc(.7 * 212px);
        top: calc(.7 * 397px);
        left: calc(.7 * 1898px);
    }
    .card--22 {
        top: calc(.7 * 397px);
        left: calc(.7 * 1898px);
    }
    .collection-photo--3 {
        height: calc(.7 * 160px);
        top: calc(.7 * 81px);
        left: calc(.7 * 2010px);
    }
    .card--3 {
        top: calc(.7 * 81px);
        left: calc(.7 * 2010px);
    }
    .collection-photo--77 {
        height: calc(.7 * 126px);
        top: calc(.7 * 256px);
        left: calc(.7 * 2010px);
    }
    .card--77 {
        top: calc(.7 * 256px);
        left: calc(.7 * 2010px);
    }
    .collection-photo--78 {
        height: calc(.7 * 250px);
        top: calc(.7 * 256px);
        left: calc(.7 * 2215px);
    }
    .card--78 {
        top: calc(.7 * 256px);
        left: calc(.7 * 2215px);
    }
    .collection-photo--60 {
        height: calc(.7 * 155px);
        top: calc(.7 * 519px);
        left: calc(.7 * 2215px);
    }
    .card--60 {
        top: calc(.7 * 519px);
        left: calc(.7 * 2215px);
    }
    .collection-photo--40 {
        height: calc(.7 * 226px);
        top: calc(.7 * 16px);
        left: calc(.7 * 2260px);
    }
    .card--40 {
        top: calc(.7 * 16px);
        left: calc(.7 * 2260px);
    }
    .collection-photo--62 {
        height: calc(.7 * 238px);
        top: calc(.7 * 169px);
        left: calc(.7 * 2422px);
    }
    .card--62 {
        top: calc(.7 * 169px);
        left: calc(.7 * 2422px);
    }
    .collection-photo--80 {
        height: calc(.7 * 162px);
        top: calc(.7 * 420px);
        left: calc(.7 * 2422px);
    }
    .card--80 {
        top: calc(.7 * 420px);
        left: calc(.7 * 2422px);
    }
    .collection-photo--87 {
        height: calc(.7 * 120px);
        top: calc(.7 * 35px);
        left: calc(.7 * 2569px);
    }
    .card--87 {
        top: calc(.7 * 35px);
        left: calc(.7 * 2569px);
    }
    .collection-photo--2 {
        height: calc(.7 * 200px);
        top: calc(.7 * 420px);
        left: calc(.7 * 2654px);
    }
    .card--2 {
        top: calc(.7 * 420px);
        left: calc(.7 * 2654px);
    }
    .collection-photo--30 {
        height: calc(.7 * 282px);
        top: calc(.7 * 125px);
        left: calc(.7 * 2763px);
    }
    .card--30 {
        top: calc(.7 * 125px);
        left: calc(.7 * 2763px);
    }
    .collection-photo--21 {
        height: calc(.7 * 136px);
        top: calc(.7 * 420px);
        left: calc(.7 * 2869px);
    }
    .card--21 {
        top: calc(.7 * 420px);
        left: calc(.7 * 2869px);
    }
    .collection-photo--7 {
        height: calc(.7 * 150px);
        top: calc(.7 * 53px);
        left: calc(.7 * 3014px);
    }
    .card--7 {
        top: calc(.7 * 53px);
        left: calc(.7 * 3014px);
    }
    .collection-photo--89 {
        height: calc(.7 * 150px);
        top: calc(.7 * 217px);
        left: calc(.7 * 3015px);
    }
    .card--89 {
        top: calc(.7 * 217px);
        left: calc(.7 * 3015px);
    }
    .collection-photo--34 {
        height: calc(.7 * 190px);
        top: calc(.7 * 382px);
        left: calc(.7 * 3015px);
    }
    .card--34 {
        top: calc(.7 * 382px);
        left: calc(.7 * 3015px);
    }
    .collection-photo--86 {
        height: calc(.7 * 200px);
        top: calc(.7 * 167px);
        left: calc(.7 * 3229px);
    }
    .card--86 {
        top: calc(.7 * 167px);
        left: calc(.7 * 3229px);
    }
    .collection-photo--48 {
        height: calc(.7 * 240px);
        top: calc(.7 * 257px);
        left: calc(.7 * 3392px);
    }
    .card--48 {
        top: calc(.7 * 257px);
        left: calc(.7 * 3392px);
    }
    .collection-photo--98 {
        height: calc(.7 * 128px);
        top: calc(.7 * 512px);
        left: calc(.7 * 3392px);
    }
    .card--98 {
        top: calc(.7 * 512px);
        left: calc(.7 * 3392px);
    }
    .collection-photo--65 {
        height: calc(.7 * 146px);
        top: calc(.7 * 96px);
        left: calc(.7 * 3494px);
    }
    .card--65 {
        top: calc(.7 * 96px);
        left: calc(.7 * 3494px);
    }
    .collection-photo--6 {
        height: calc(.7 * 128px);
        top: calc(.7 * 512px);
        left: calc(.7 * 3589px);
    }
    .card--6 {
        top: calc(.7 * 512px);
        left: calc(.7 * 3589px);
    }
    .collection-photo--41 {
        height: calc(.7 * 168px);
        top: calc(.7 * 74px);
        left: calc(.7 * 3724px);
    }
    .card--41 {
        top: calc(.7 * 74px);
        left: calc(.7 * 3724px);
    }
    .collection-photo--81 {
        height: calc(.7 * 158px);
        top: calc(.7 * 257px);
        left: calc(.7 * 3784px);
    }
    .card--81 {
        top: calc(.7 * 257px);
        left: calc(.7 * 3784px);
    }
    .collection-photo--73 {
        height: calc(.7 * 162px);
        top: calc(.7 * 430px);
        left: calc(.7 * 3784px);
    }
    .card--73 {
        top: calc(.7 * 430px);
        left: calc(.7 * 3784px);
    }
    .collection-photo--74 {
        height: calc(.7 * 222px);
        top: calc(.7 * 430px);
        left: calc(.7 * 3928px);
    }
    .card--74 {
        top: calc(.7 * 430px);
        left: calc(.7 * 3928px);
    }
    .collection-photo--96 {
        height: calc(.7 * 210px);
        top: calc(.7 * 205px);
        left: calc(.7 * 4000px);
    }
    .card--96 {
        top: calc(.7 * 205px);
        left: calc(.7 * 4000px);
    }
    .collection-photo--42 {
        height: calc(.7 * 150px);
        top: calc(.7 * -12px);
        left: calc(.7 * 4138px);
    }
    .card--42 {
        top: calc(.7 * -12px);
        left: calc(.7 * 4138px);
    }
    .collection-photo--72 {
        height: calc(.7 * 262px);
        top: calc(.7 * 153px);
        left: calc(.7 * 4152px);
    }
    .card--72 {
        top: calc(.7 * 153px);
        left: calc(.7 * 4152px);
    }
    .collection-photo--27 {
        height: calc(.7 * 128px);
        top: calc(.7 * 430px);
        left: calc(.7 * 4217px);
    }
    .card--27 {
        top: calc(.7 * 430px);
        left: calc(.7 * 4217px);
    }
    .collection-photo--8 {
        height: calc(.7 * 150px);
        top: calc(.7 * -12px);
        left: calc(.7 * 4363px);
    }
    .card--8 {
        top: calc(.7 * -12px);
        left: calc(.7 * 4363px);
    }
    .collection-photo--90 {
        height: calc(.7 * 196px);
        top: calc(.7 * 430px);
        left: calc(.7 * 4423px);
    }
    .card--90 {
        top: calc(.7 * 430px);
        left: calc(.7 * 4423px);
    }
    .collection-photo--95 {
        height: calc(.7 * 144px);
        top: calc(.7 * 114px);
        left: calc(.7 * 4491px);
    }
    .card--95 {
        top: calc(.7 * 114px);
        left: calc(.7 * 4491px);
    }
    .collection-photo--66 {
        height: calc(.7 * 138px);
        top: calc(.7 * 274px);
        left: calc(.7 * 4491px);
    }
    .card--66 {
        top: calc(.7 * 274px);
        left: calc(.7 * 4491px);
    }
    .collection-photo--91 {
        height: calc(.7 * 292px);
        top: calc(.7 * 20px);
        left: calc(.7 * 4688px);
    }
    .card--91 {
        top: calc(.7 * 20px);
        left: calc(.7 * 4688px);
    }
    .collection-photo--68 {
        height: calc(.7 * 165px);
        top: calc(.7 * 327px);
        left: calc(.7 * 4688px);
    }
    .card--68 {
        top: calc(.7 * 327px);
        left: calc(.7 * 4688px);
    }
    .collection-photo--69 {
        height: calc(.7 * 148px);
        top: calc(.7 * 507px);
        left: calc(.7 * 4688px);
    }
    .card--69 {
        top: calc(.7 * 507px);
        left: calc(.7 * 4688px);
    }
    .collection-photo--14 {
        height: calc(.7 * 110px);
        top: calc(.7 * 80px);
        left: calc(.7 * 4910px);
    }
    .card--14 {
        top: calc(.7 * 80px);
        left: calc(.7 * 4910px);
    }
    .collection-photo--19 {
        height: calc(.7 * 165px);
        top: calc(.7 * 205px);
        left: calc(.7 * 4910px);
    }
    .card--19 {
        top: calc(.7 * 205px);
        left: calc(.7 * 4910px);
    }
    .collection-photo--58 {
        height: calc(.7 * 200px);
        top: calc(.7 * 385px);
        left: calc(.7 * 4910px);
    }
    .card--58 {
        top: calc(.7 * 385px);
        left: calc(.7 * 4910px);
    }
    .collection-photo--29 {
        height: calc(.7 * 260px);
        top: calc(.7 * 385px);
        left: calc(.7 * 5081px);
    }
    .card--29 {
        top: calc(.7 * 385px);
        left: calc(.7 * 5081px);
    }
    .collection-photo--23 {
        height: calc(.7 * 165px);
        top: calc(.7 * 205px);
        left: calc(.7 * 5173px);
    }
    .card--23 {
        top: calc(.7 * 205px);
        left: calc(.7 * 5173px);
    }
    .collection-photo--52 {
        height: calc(.7 * 196px);
        top: calc(.7 * 26px);
        left: calc(.7 * 5332px);
    }
    .card--52 {
        top: calc(.7 * 26px);
        left: calc(.7 * 5332px);
    }
    .collection-photo--57 {
        height: calc(.7 * 217px);
        top: calc(.7 * 234px);
        left: calc(.7 * 5332px);
    }
    .card--57 {
        top: calc(.7 * 234px);
        left: calc(.7 * 5332px);
    }
    .collection-photo--17 {
        height: calc(.7 * 190px);
        top: calc(.7 * 464px);
        left: calc(.7 * 5332px);
    }
    .card--17 {
        top: calc(.7 * 464px);
        left: calc(.7 * 5332px);
    }
    .collection-photo--11 {
        height: calc(.7 * 222px);
        top: calc(.7 * 188px);
        left: calc(.7 * 5671px);
    }
    .card--11 {
        top: calc(.7 * 188px);
        left: calc(.7 * 5671px);
    }
    .collection-photo--26 {
        height: calc(.7 * 142px);
        top: calc(.7 * 425px);
        left: calc(.7 * 5671px);
    }
    .card--26 {
        top: calc(.7 * 425px);
        left: calc(.7 * 5671px);
    }
    .collection-photo--33 {
        height: calc(.7 * 138px);
        top: calc(.7 * 35px);
        left: calc(.7 * 5877px);
    }
    .card--33 {
        top: calc(.7 * 35px);
        left: calc(.7 * 5877px);
    }
    .collection-photo--43 {
        height: calc(.7 * 200px);
        top: calc(.7 * 425px);
        left: calc(.7 * 5896px);
    }
    .card--43 {
        top: calc(.7 * 425px);
        left: calc(.7 * 5896px);
    }
    .collection-photo--71 {
        height: calc(.7 * 275px);
        top: calc(.7 * 78px);
        left: calc(.7 * 6094px);
    }
    .card--71 {
        top: calc(.7 * 78px);
        left: calc(.7 * 6094px);
    }
    .collection-photo--84 {
        height: calc(.7 * 176px);
        top: calc(.7 * 368px);
        left: calc(.7 * 6094px);
    }
    .card--84 {
        top: calc(.7 * 368px);
        left: calc(.7 * 6094px);
    }
    .collection-photo--97 {
        height: calc(.7 * 140px);
        top: calc(.7 * 38px);
        left: calc(.7 * 6328px);
    }
    .card--97 {
        top: calc(.7 * 38px);
        left: calc(.7 * 6328px);
    }
    .collection-photo--59 {
        height: calc(.7 * 205px);
        top: calc(.7 * 193px);
        left: calc(.7 * 6328px);
    }
    .card--59 {
        top: calc(.7 * 193px);
        left: calc(.7 * 6328px);
    }
    .collection-photo--31 {
        height: calc(.7 * 250px);
        top: calc(.7 * 413px);
        left: calc(.7 * 6519px);
    }
    .card--31 {
        top: calc(.7 * 413px);
        left: calc(.7 * 6519px);
    }
    .collection-photo--50 {
        height: calc(.7 * 278px);
        top: calc(.7 * 120px);
        left: calc(.7 * 6603px);
    }
    .card--50 {
        top: calc(.7 * 120px);
        left: calc(.7 * 6603px);
    }
    .collection-photo--76 {
        height: calc(.7 * 200px);
        top: calc(.7 * 413px);
        left: calc(.7 * 6712px);
    }
    .card--76 {
        top: calc(.7 * 413px);
        left: calc(.7 * 6712px);
    }
    .collection-photo--25 {
        height: calc(.7 * 200px);
        top: calc(.7 * 34px);
        left: calc(.7 * 6899px);
    }
    .card--25 {
        top: calc(.7 * 34px);
        left: calc(.7 * 6899px);
    }
    .collection-photo--83 {
        height: calc(.7 * 200px);
        top: calc(.7 * 250px);
        left: calc(.7 * 6899px);
    }
    .card--83 {
        top: calc(.7 * 250px);
        left: calc(.7 * 6899px);
    }
    .collection-photo--64 {
        height: calc(.7 * 160px);
        top: calc(.7 * 465px);
        left: calc(.7 * 6899px);
    }
    .card--64 {
        top: calc(.7 * 465px);
        left: calc(.7 * 6899px);
    }
    .collection-photo--32 {
        height: calc(.7 * 130px);
        top: calc(.7 * 250px);
        left: calc(.7 * 7050px);
    }
    .card--32 {
        top: calc(.7 * 250px);
        left: calc(.7 * 7050px);
    }
    .collection-photo--70 {
        height: calc(.7 * 250px);
        top: calc(.7 * -16px);
        left: calc(.7 * 7112px);
    }
    .card--70 {
        top: calc(.7 * -16px);
        left: calc(.7 * 7112px);
    }
    .collection-photo--85 {
        height: calc(.7 * 168px);
        top: calc(.7 * 395px);
        left: calc(.7 * 7114px);
    }
    .card--85 {
        top: calc(.7 * 395px);
        left: calc(.7 * 7114px);
    }
    .collection-photo--5 {
        height: calc(.7 * 202px);
        top: calc(.7 * 250px);
        left: calc(.7 * 7262px);
    }
    .card--5 {
        top: calc(.7 * 250px);
        left: calc(.7 * 7262px);
    }
    .collection-photo--92 {
        height: calc(.7 * 196px);
        top: calc(.7 * 467px);
        left: calc(.7 * 7262px);
    }
    .card--92 {
        top: calc(.7 * 467px);
        left: calc(.7 * 7262px);
    }
    .collection-photo--36 {
        height: calc(.7 * 210px);
        top: calc(.7 * 26px);
        left: calc(.7 * 7401px);
    }
    .card--36 {
        top: calc(.7 * 26px);
        left: calc(.7 * 7401px);
    }
    .collection-photo--4 {
        height: calc(.7 * 90px);
        top: calc(.7 * 250px);
        left: calc(.7 * 7580px);
    }
    .card--4 {
        top: calc(.7 * 250px);
        left: calc(.7 * 7580px);
    }
    .collection-photo--79 {
        height: calc(.7 * 145px);
        top: calc(.7 * 355px);
        left: calc(.7 * 7580px);
    }
    .card--79 {
        top: calc(.7 * 355px);
        left: calc(.7 * 7580px);
    }
    .collection-photo--51 {
        height: calc(.7 * 107px);
        top: calc(.7 * 98px);
        left: calc(.7 * 7728px);
    }
    .card--51 {
        top: calc(.7 * 98px);
        left: calc(.7 * 7728px);
    }
    .collection-photo--94 {
        height: calc(.7 * 124px);
        top: calc(.7 * 217px);
        left: calc(.7 * 7728px);
    }
    .card--94 {
        top: calc(.7 * 217px);
        left: calc(.7 * 7728px);
    }
    .collection-photo--38 {
        height: calc(.7 * 244px);
        top: calc(.7 * 355px);
        left: calc(.7 * 7797px);
    }
    .card--38 {
        top: calc(.7 * 355px);
        left: calc(.7 * 7797px);
    }
    .collection-photo--88 {
        height: calc(.7 * 288px);
        top: calc(.7 * 53px);
        left: calc(.7 * 7908px);
    }
    .card--88 {
        top: calc(.7 * 53px);
        left: calc(.7 * 7908px);
    }
    .collection-photo--49 {
        height: calc(.7 * 180px);
        top: calc(.7 * 355px);
        left: calc(.7 * 7973px);
    }
    .card--49 {
        top: calc(.7 * 355px);
        left: calc(.7 * 7973px);
    }
    .collection-photo--16 {
        height: calc(.7 * 134px);
        top: calc(.7 * 207px);
        left: calc(.7 * 8151px);
    }
    .card--16 {
        top: calc(.7 * 207px);
        left: calc(.7 * 8151px);
    }
    .collection-photo--0 {
        height: calc(.7 * 99px);
        top: calc(.7 * 95px);
        left: calc(.7 * 8225px);
    }
    .card--0 {
        top: calc(.7 * 95px);
        left: calc(.7 * 8225px);
    }
    .collection-photo--37 {
        height: calc(.7 * 200px);
        top: calc(.7 * 207px);
        left: calc(.7 * 8368px);
    }
    .card--37 {
        top: calc(.7 * 207px);
        left: calc(.7 * 8368px);
    }
} */

/* @media (max-height: 640px) {
    .collection-photo--54 {
        height: calc(.6 * 200px);
        top: calc(.6 * 100px);
        left: calc(.6 * 0px);
    }
    .card--54 {
        top: calc(.6 * 100px);
        left: calc(.6 * 0px);
    }
    .collection-photo--55 {
        height: calc(.6 * 200px);
        top: calc(.6 * 315px);
        left: calc(.6 * 30px);
    }
    .card--55 {
        top: calc(.6 * 315px);
        left: calc(.6 * 30px);
    }
    .collection-photo--44 {
        height: calc(.6 * 112px);
        top: calc(.6 * 2px);
        left: calc(.6 * 172px);
    }
    .card--44 {
        top: calc(.6 * 2px);
        left: calc(.6 * 172px);
    }
    .collection-photo--20 {
        height: calc(.6 * 170px);
        top: calc(.6 * 130px);
        left: calc(.6 * 173px);
    }
    .card--20 {
        top: calc(.6 * 130px);
        left: calc(.6 * 173px);
    }
    .collection-photo--39 {
        height: calc(.6 * 120px);
        top: calc(.6 * 315px);
        left: calc(.6 * 244px);
    }
    .card--39 {
        top: calc(.6 * 315px);
        left: calc(.6 * 244px);
    }
    .collection-photo--53 {
        height: calc(.6 * 187px);
        top: calc(.6 * 449px);
        left: calc(.6 * 244px);
    }
    .card--53 {
        top: calc(.6 * 449px);
        left: calc(.6 * 244px);
    }
    .collection-photo--61 {
        height: calc(.6 * 156px);
        top: calc(.6 * 315px);
        left: calc(.6 * 408px);
    }
    .card--61 {
        top: calc(.6 * 315px);
        left: calc(.6 * 408px);
    }
    .collection-photo--1 {
        height: calc(.6 * 113px);
        top: calc(.6 * 486px);
        left: calc(.6 * 408px);
    }
    .card--1 {
        top: calc(.6 * 486px);
        left: calc(.6 * 408px);
    }
    .collection-photo--35 {
        height: calc(.6 * 250px);
        top: calc(.6 * 50px);
        left: calc(.6 * 450px);
    }
    .card--35 {
        top: calc(.6 * 50px);
        left: calc(.6 * 450px);
    }
    .collection-photo--45 {
        height: calc(.6 * 198px);
        top: calc(.6 * 20px);
        left: calc(.6 * 626px);
    }
    .card--45 {
        top: calc(.6 * 20px);
        left: calc(.6 * 626px);
    }
    .collection-photo--82 {
        height: calc(.6 * 196px);
        top: calc(.6 * 233px);
        left: calc(.6 * 626px);
    }
    .card--82 {
        top: calc(.6 * 233px);
        left: calc(.6 * 626px);
    }
    .collection-photo--46 {
        height: calc(.6 * 187px);
        top: calc(.6 * 444px);
        left: calc(.6 * 626px);
    }
    .card--46 {
        top: calc(.6 * 444px);
        left: calc(.6 * 626px);
    }
    .collection-photo--67 {
        height: calc(.6 * 134px);
        top: calc(.6 * 444px);
        left: calc(.6 * 841px);
    }
    .card--67 {
        top: calc(.6 * 444px);
        left: calc(.6 * 841px);
    }
    .collection-photo--99 {
        height: calc(.6 * 152px);
        top: calc(.6 * 102px);
        left: calc(.6 * 891px);
    }
    .card--99 {
        top: calc(.6 * 102px);
        left: calc(.6 * 891px);
    }
    .collection-photo--28 {
        height: calc(.6 * 160px);
        top: calc(.6 * 269px);
        left: calc(.6 * 891px);
    }
    .card--28 {
        top: calc(.6 * 269px);
        left: calc(.6 * 891px);
    }
    .collection-photo--15 {
        height: calc(.6 * 210px);
        top: calc(.6 * 444px);
        left: calc(.6 * 1057px);
    }
    .card--15 {
        top: calc(.6 * 444px);
        left: calc(.6 * 1057px);
    }
    .collection-photo--13 {
        height: calc(.6 * 180px);
        top: calc(.6 * 10px);
        left: calc(.6 * 1107px);
    }
    .card--13 {
        top: calc(.6 * 10px);
        left: calc(.6 * 1107px);
    }
    .collection-photo--56 {
        height: calc(.6 * 224px);
        top: calc(.6 * 205px);
        left: calc(.6 * 1107px);
    }
    .card--56 {
        top: calc(.6 * 205px);
        left: calc(.6 * 1107px);
    }
    .collection-photo--24 {
        height: calc(.6 * 135px);
        top: calc(.6 * 115px);
        left: calc(.6 * 1302px);
    }
    .card--24 {
        top: calc(.6 * 115px);
        left: calc(.6 * 1302px);
    }
    .collection-photo--18 {
        height: calc(.6 * 162px);
        top: calc(.6 * 266px);
        left: calc(.6 * 1302px);
    }
    .card--18 {
        top: calc(.6 * 266px);
        left: calc(.6 * 1302px);
    }
    .collection-photo--12 {
        height: calc(.6 * 95px);
        top: calc(.6 * 444px);
        left: calc(.6 * 1386px);
    }
    .card--12 {
        top: calc(.6 * 444px);
        left: calc(.6 * 1386px);
    }
    .collection-photo--9 {
        height: calc(.6 * 266px);
        top: calc(.6 * -16px);
        left: calc(.6 * 1520px);
    }
    .card--9 {
        top: calc(.6 * -16px);
        left: calc(.6 * 1520px);
    }
    .collection-photo--10 {
        height: calc(.6 * 166px);
        top: calc(.6 * 500px);
        left: calc(.6 * 1561px);
    }
    .card--10 {
        top: calc(.6 * 500px);
        left: calc(.6 * 1561px);
    }
    .collection-photo--63 {
        height: calc(.6 * 220px);
        top: calc(.6 * 265px);
        left: calc(.6 * 1585px);
    }
    .card--63 {
        top: calc(.6 * 265px);
        left: calc(.6 * 1585px);
    }
    .collection-photo--75 {
        height: calc(.6 * 194px);
        top: calc(.6 * 188px);
        left: calc(.6 * 1748px);
    }
    .card--75 {
        top: calc(.6 * 188px);
        left: calc(.6 * 1748px);
    }
    .collection-photo--47 {
        height: calc(.6 * 84px);
        top: calc(.6 * 397px);
        left: calc(.6 * 1748px);
    }
    .card--47 {
        top: calc(.6 * 397px);
        left: calc(.6 * 1748px);
    }
    .collection-photo--93 {
        height: calc(.6 * 112px);
        top: calc(.6 * 65px);
        left: calc(.6 * 1822px);
    }
    .card--93 {
        top: calc(.6 * 65px);
        left: calc(.6 * 1822px);
    }
    .collection-photo--22 {
        height: calc(.6 * 212px);
        top: calc(.6 * 397px);
        left: calc(.6 * 1898px);
    }
    .card--22 {
        top: calc(.6 * 397px);
        left: calc(.6 * 1898px);
    }
    .collection-photo--3 {
        height: calc(.6 * 160px);
        top: calc(.6 * 81px);
        left: calc(.6 * 2010px);
    }
    .card--3 {
        top: calc(.6 * 81px);
        left: calc(.6 * 2010px);
    }
    .collection-photo--77 {
        height: calc(.6 * 126px);
        top: calc(.6 * 256px);
        left: calc(.6 * 2010px);
    }
    .card--77 {
        top: calc(.6 * 256px);
        left: calc(.6 * 2010px);
    }
    .collection-photo--78 {
        height: calc(.6 * 250px);
        top: calc(.6 * 256px);
        left: calc(.6 * 2215px);
    }
    .card--78 {
        top: calc(.6 * 256px);
        left: calc(.6 * 2215px);
    }
    .collection-photo--60 {
        height: calc(.6 * 155px);
        top: calc(.6 * 519px);
        left: calc(.6 * 2215px);
    }
    .card--60 {
        top: calc(.6 * 519px);
        left: calc(.6 * 2215px);
    }
    .collection-photo--40 {
        height: calc(.6 * 226px);
        top: calc(.6 * 16px);
        left: calc(.6 * 2260px);
    }
    .card--40 {
        top: calc(.6 * 16px);
        left: calc(.6 * 2260px);
    }
    .collection-photo--62 {
        height: calc(.6 * 238px);
        top: calc(.6 * 169px);
        left: calc(.6 * 2422px);
    }
    .card--62 {
        top: calc(.6 * 169px);
        left: calc(.6 * 2422px);
    }
    .collection-photo--80 {
        height: calc(.6 * 162px);
        top: calc(.6 * 420px);
        left: calc(.6 * 2422px);
    }
    .card--80 {
        top: calc(.6 * 420px);
        left: calc(.6 * 2422px);
    }
    .collection-photo--87 {
        height: calc(.6 * 120px);
        top: calc(.6 * 35px);
        left: calc(.6 * 2569px);
    }
    .card--87 {
        top: calc(.6 * 35px);
        left: calc(.6 * 2569px);
    }
    .collection-photo--2 {
        height: calc(.6 * 200px);
        top: calc(.6 * 420px);
        left: calc(.6 * 2654px);
    }
    .card--2 {
        top: calc(.6 * 420px);
        left: calc(.6 * 2654px);
    }
    .collection-photo--30 {
        height: calc(.6 * 282px);
        top: calc(.6 * 125px);
        left: calc(.6 * 2763px);
    }
    .card--30 {
        top: calc(.6 * 125px);
        left: calc(.6 * 2763px);
    }
    .collection-photo--21 {
        height: calc(.6 * 136px);
        top: calc(.6 * 420px);
        left: calc(.6 * 2869px);
    }
    .card--21 {
        top: calc(.6 * 420px);
        left: calc(.6 * 2869px);
    }
    .collection-photo--7 {
        height: calc(.6 * 150px);
        top: calc(.6 * 53px);
        left: calc(.6 * 3014px);
    }
    .card--7 {
        top: calc(.6 * 53px);
        left: calc(.6 * 3014px);
    }
    .collection-photo--89 {
        height: calc(.6 * 150px);
        top: calc(.6 * 217px);
        left: calc(.6 * 3015px);
    }
    .card--89 {
        top: calc(.6 * 217px);
        left: calc(.6 * 3015px);
    }
    .collection-photo--34 {
        height: calc(.6 * 190px);
        top: calc(.6 * 382px);
        left: calc(.6 * 3015px);
    }
    .card--34 {
        top: calc(.6 * 382px);
        left: calc(.6 * 3015px);
    }
    .collection-photo--86 {
        height: calc(.6 * 200px);
        top: calc(.6 * 167px);
        left: calc(.6 * 3229px);
    }
    .card--86 {
        top: calc(.6 * 167px);
        left: calc(.6 * 3229px);
    }
    .collection-photo--48 {
        height: calc(.6 * 240px);
        top: calc(.6 * 257px);
        left: calc(.6 * 3392px);
    }
    .card--48 {
        top: calc(.6 * 257px);
        left: calc(.6 * 3392px);
    }
    .collection-photo--98 {
        height: calc(.6 * 128px);
        top: calc(.6 * 512px);
        left: calc(.6 * 3392px);
    }
    .card--98 {
        top: calc(.6 * 512px);
        left: calc(.6 * 3392px);
    }
    .collection-photo--65 {
        height: calc(.6 * 146px);
        top: calc(.6 * 96px);
        left: calc(.6 * 3494px);
    }
    .card--65 {
        top: calc(.6 * 96px);
        left: calc(.6 * 3494px);
    }
    .collection-photo--6 {
        height: calc(.6 * 128px);
        top: calc(.6 * 512px);
        left: calc(.6 * 3589px);
    }
    .card--6 {
        top: calc(.6 * 512px);
        left: calc(.6 * 3589px);
    }
    .collection-photo--41 {
        height: calc(.6 * 168px);
        top: calc(.6 * 74px);
        left: calc(.6 * 3724px);
    }
    .card--41 {
        top: calc(.6 * 74px);
        left: calc(.6 * 3724px);
    }
    .collection-photo--81 {
        height: calc(.6 * 158px);
        top: calc(.6 * 257px);
        left: calc(.6 * 3784px);
    }
    .card--81 {
        top: calc(.6 * 257px);
        left: calc(.6 * 3784px);
    }
    .collection-photo--73 {
        height: calc(.6 * 162px);
        top: calc(.6 * 430px);
        left: calc(.6 * 3784px);
    }
    .card--73 {
        top: calc(.6 * 430px);
        left: calc(.6 * 3784px);
    }
    .collection-photo--74 {
        height: calc(.6 * 222px);
        top: calc(.6 * 430px);
        left: calc(.6 * 3928px);
    }
    .card--74 {
        top: calc(.6 * 430px);
        left: calc(.6 * 3928px);
    }
    .collection-photo--96 {
        height: calc(.6 * 210px);
        top: calc(.6 * 205px);
        left: calc(.6 * 4000px);
    }
    .card--96 {
        top: calc(.6 * 205px);
        left: calc(.6 * 4000px);
    }
    .collection-photo--42 {
        height: calc(.6 * 150px);
        top: calc(.6 * -12px);
        left: calc(.6 * 4138px);
    }
    .card--42 {
        top: calc(.6 * -12px);
        left: calc(.6 * 4138px);
    }
    .collection-photo--72 {
        height: calc(.6 * 262px);
        top: calc(.6 * 153px);
        left: calc(.6 * 4152px);
    }
    .card--72 {
        top: calc(.6 * 153px);
        left: calc(.6 * 4152px);
    }
    .collection-photo--27 {
        height: calc(.6 * 128px);
        top: calc(.6 * 430px);
        left: calc(.6 * 4217px);
    }
    .card--27 {
        top: calc(.6 * 430px);
        left: calc(.6 * 4217px);
    }
    .collection-photo--8 {
        height: calc(.6 * 150px);
        top: calc(.6 * -12px);
        left: calc(.6 * 4363px);
    }
    .card--8 {
        top: calc(.6 * -12px);
        left: calc(.6 * 4363px);
    }
    .collection-photo--90 {
        height: calc(.6 * 196px);
        top: calc(.6 * 430px);
        left: calc(.6 * 4423px);
    }
    .card--90 {
        top: calc(.6 * 430px);
        left: calc(.6 * 4423px);
    }
    .collection-photo--95 {
        height: calc(.6 * 144px);
        top: calc(.6 * 114px);
        left: calc(.6 * 4491px);
    }
    .card--95 {
        top: calc(.6 * 114px);
        left: calc(.6 * 4491px);
    }
    .collection-photo--66 {
        height: calc(.6 * 138px);
        top: calc(.6 * 274px);
        left: calc(.6 * 4491px);
    }
    .card--66 {
        top: calc(.6 * 274px);
        left: calc(.6 * 4491px);
    }
    .collection-photo--91 {
        height: calc(.6 * 292px);
        top: calc(.6 * 20px);
        left: calc(.6 * 4688px);
    }
    .card--91 {
        top: calc(.6 * 20px);
        left: calc(.6 * 4688px);
    }
    .collection-photo--68 {
        height: calc(.6 * 165px);
        top: calc(.6 * 327px);
        left: calc(.6 * 4688px);
    }
    .card--68 {
        top: calc(.6 * 327px);
        left: calc(.6 * 4688px);
    }
    .collection-photo--69 {
        height: calc(.6 * 148px);
        top: calc(.6 * 507px);
        left: calc(.6 * 4688px);
    }
    .card--69 {
        top: calc(.6 * 507px);
        left: calc(.6 * 4688px);
    }
    .collection-photo--14 {
        height: calc(.6 * 110px);
        top: calc(.6 * 80px);
        left: calc(.6 * 4910px);
    }
    .card--14 {
        top: calc(.6 * 80px);
        left: calc(.6 * 4910px);
    }
    .collection-photo--19 {
        height: calc(.6 * 165px);
        top: calc(.6 * 205px);
        left: calc(.6 * 4910px);
    }
    .card--19 {
        top: calc(.6 * 205px);
        left: calc(.6 * 4910px);
    }
    .collection-photo--58 {
        height: calc(.6 * 200px);
        top: calc(.6 * 385px);
        left: calc(.6 * 4910px);
    }
    .card--58 {
        top: calc(.6 * 385px);
        left: calc(.6 * 4910px);
    }
    .collection-photo--29 {
        height: calc(.6 * 260px);
        top: calc(.6 * 385px);
        left: calc(.6 * 5081px);
    }
    .card--29 {
        top: calc(.6 * 385px);
        left: calc(.6 * 5081px);
    }
    .collection-photo--23 {
        height: calc(.6 * 165px);
        top: calc(.6 * 205px);
        left: calc(.6 * 5173px);
    }
    .card--23 {
        top: calc(.6 * 205px);
        left: calc(.6 * 5173px);
    }
    .collection-photo--52 {
        height: calc(.6 * 196px);
        top: calc(.6 * 26px);
        left: calc(.6 * 5332px);
    }
    .card--52 {
        top: calc(.6 * 26px);
        left: calc(.6 * 5332px);
    }
    .collection-photo--57 {
        height: calc(.6 * 217px);
        top: calc(.6 * 234px);
        left: calc(.6 * 5332px);
    }
    .card--57 {
        top: calc(.6 * 234px);
        left: calc(.6 * 5332px);
    }
    .collection-photo--17 {
        height: calc(.6 * 190px);
        top: calc(.6 * 464px);
        left: calc(.6 * 5332px);
    }
    .card--17 {
        top: calc(.6 * 464px);
        left: calc(.6 * 5332px);
    }
    .collection-photo--11 {
        height: calc(.6 * 222px);
        top: calc(.6 * 188px);
        left: calc(.6 * 5671px);
    }
    .card--11 {
        top: calc(.6 * 188px);
        left: calc(.6 * 5671px);
    }
    .collection-photo--26 {
        height: calc(.6 * 142px);
        top: calc(.6 * 425px);
        left: calc(.6 * 5671px);
    }
    .card--26 {
        top: calc(.6 * 425px);
        left: calc(.6 * 5671px);
    }
    .collection-photo--33 {
        height: calc(.6 * 138px);
        top: calc(.6 * 35px);
        left: calc(.6 * 5877px);
    }
    .card--33 {
        top: calc(.6 * 35px);
        left: calc(.6 * 5877px);
    }
    .collection-photo--43 {
        height: calc(.6 * 200px);
        top: calc(.6 * 425px);
        left: calc(.6 * 5896px);
    }
    .card--43 {
        top: calc(.6 * 425px);
        left: calc(.6 * 5896px);
    }
    .collection-photo--71 {
        height: calc(.6 * 275px);
        top: calc(.6 * 78px);
        left: calc(.6 * 6094px);
    }
    .card--71 {
        top: calc(.6 * 78px);
        left: calc(.6 * 6094px);
    }
    .collection-photo--84 {
        height: calc(.6 * 176px);
        top: calc(.6 * 368px);
        left: calc(.6 * 6094px);
    }
    .card--84 {
        top: calc(.6 * 368px);
        left: calc(.6 * 6094px);
    }
    .collection-photo--97 {
        height: calc(.6 * 140px);
        top: calc(.6 * 38px);
        left: calc(.6 * 6328px);
    }
    .card--97 {
        top: calc(.6 * 38px);
        left: calc(.6 * 6328px);
    }
    .collection-photo--59 {
        height: calc(.6 * 205px);
        top: calc(.6 * 193px);
        left: calc(.6 * 6328px);
    }
    .card--59 {
        top: calc(.6 * 193px);
        left: calc(.6 * 6328px);
    }
    .collection-photo--31 {
        height: calc(.6 * 250px);
        top: calc(.6 * 413px);
        left: calc(.6 * 6519px);
    }
    .card--31 {
        top: calc(.6 * 413px);
        left: calc(.6 * 6519px);
    }
    .collection-photo--50 {
        height: calc(.6 * 278px);
        top: calc(.6 * 120px);
        left: calc(.6 * 6603px);
    }
    .card--50 {
        top: calc(.6 * 120px);
        left: calc(.6 * 6603px);
    }
    .collection-photo--76 {
        height: calc(.6 * 200px);
        top: calc(.6 * 413px);
        left: calc(.6 * 6712px);
    }
    .card--76 {
        top: calc(.6 * 413px);
        left: calc(.6 * 6712px);
    }
    .collection-photo--25 {
        height: calc(.6 * 200px);
        top: calc(.6 * 34px);
        left: calc(.6 * 6899px);
    }
    .card--25 {
        top: calc(.6 * 34px);
        left: calc(.6 * 6899px);
    }
    .collection-photo--83 {
        height: calc(.6 * 200px);
        top: calc(.6 * 250px);
        left: calc(.6 * 6899px);
    }
    .card--83 {
        top: calc(.6 * 250px);
        left: calc(.6 * 6899px);
    }
    .collection-photo--64 {
        height: calc(.6 * 160px);
        top: calc(.6 * 465px);
        left: calc(.6 * 6899px);
    }
    .card--64 {
        top: calc(.6 * 465px);
        left: calc(.6 * 6899px);
    }
    .collection-photo--32 {
        height: calc(.6 * 130px);
        top: calc(.6 * 250px);
        left: calc(.6 * 7050px);
    }
    .card--32 {
        top: calc(.6 * 250px);
        left: calc(.6 * 7050px);
    }
    .collection-photo--70 {
        height: calc(.6 * 250px);
        top: calc(.6 * -16px);
        left: calc(.6 * 7112px);
    }
    .card--70 {
        top: calc(.6 * -16px);
        left: calc(.6 * 7112px);
    }
    .collection-photo--85 {
        height: calc(.6 * 168px);
        top: calc(.6 * 395px);
        left: calc(.6 * 7114px);
    }
    .card--85 {
        top: calc(.6 * 395px);
        left: calc(.6 * 7114px);
    }
    .collection-photo--5 {
        height: calc(.6 * 202px);
        top: calc(.6 * 250px);
        left: calc(.6 * 7262px);
    }
    .card--5 {
        top: calc(.6 * 250px);
        left: calc(.6 * 7262px);
    }
    .collection-photo--92 {
        height: calc(.6 * 196px);
        top: calc(.6 * 467px);
        left: calc(.6 * 7262px);
    }
    .card--92 {
        top: calc(.6 * 467px);
        left: calc(.6 * 7262px);
    }
    .collection-photo--36 {
        height: calc(.6 * 210px);
        top: calc(.6 * 26px);
        left: calc(.6 * 7401px);
    }
    .card--36 {
        top: calc(.6 * 26px);
        left: calc(.6 * 7401px);
    }
    .collection-photo--4 {
        height: calc(.6 * 90px);
        top: calc(.6 * 250px);
        left: calc(.6 * 7580px);
    }
    .card--4 {
        top: calc(.6 * 250px);
        left: calc(.6 * 7580px);
    }
    .collection-photo--79 {
        height: calc(.6 * 145px);
        top: calc(.6 * 355px);
        left: calc(.6 * 7580px);
    }
    .card--79 {
        top: calc(.6 * 355px);
        left: calc(.6 * 7580px);
    }
    .collection-photo--51 {
        height: calc(.6 * 107px);
        top: calc(.6 * 98px);
        left: calc(.6 * 7728px);
    }
    .card--51 {
        top: calc(.6 * 98px);
        left: calc(.6 * 7728px);
    }
    .collection-photo--94 {
        height: calc(.6 * 124px);
        top: calc(.6 * 217px);
        left: calc(.6 * 7728px);
    }
    .card--94 {
        top: calc(.6 * 217px);
        left: calc(.6 * 7728px);
    }
    .collection-photo--38 {
        height: calc(.6 * 244px);
        top: calc(.6 * 355px);
        left: calc(.6 * 7797px);
    }
    .card--38 {
        top: calc(.6 * 355px);
        left: calc(.6 * 7797px);
    }
    .collection-photo--88 {
        height: calc(.6 * 288px);
        top: calc(.6 * 53px);
        left: calc(.6 * 7908px);
    }
    .card--88 {
        top: calc(.6 * 53px);
        left: calc(.6 * 7908px);
    }
    .collection-photo--49 {
        height: calc(.6 * 180px);
        top: calc(.6 * 355px);
        left: calc(.6 * 7973px);
    }
    .card--49 {
        top: calc(.6 * 355px);
        left: calc(.6 * 7973px);
    }
    .collection-photo--16 {
        height: calc(.6 * 134px);
        top: calc(.6 * 207px);
        left: calc(.6 * 8151px);
    }
    .card--16 {
        top: calc(.6 * 207px);
        left: calc(.6 * 8151px);
    }
    .collection-photo--0 {
        height: calc(.6 * 99px);
        top: calc(.6 * 95px);
        left: calc(.6 * 8225px);
    }
    .card--0 {
        top: calc(.6 * 95px);
        left: calc(.6 * 8225px);
    }
    .collection-photo--37 {
        height: calc(.6 * 200px);
        top: calc(.6 * 207px);
        left: calc(.6 * 8368px);
    }
    .card--37 {
        top: calc(.6 * 207px);
        left: calc(.6 * 8368px);
    }
} */

/* @media (max-height: 570px) {
    .collection-photo--54 {
        height: calc(.5 * 200px);
        top: calc(.5 * 100px);
        left: calc(.5 * 0px);
    }
    .card--54 {
        top: calc(.5 * 100px);
        left: calc(.5 * 0px);
    }
    .collection-photo--55 {
        height: calc(.5 * 200px);
        top: calc(.5 * 315px);
        left: calc(.5 * 30px);
    }
    .card--55 {
        top: calc(.5 * 315px);
        left: calc(.5 * 30px);
    }
    .collection-photo--44 {
        height: calc(.5 * 112px);
        top: calc(.5 * 2px);
        left: calc(.5 * 172px);
    }
    .card--44 {
        top: calc(.5 * 2px);
        left: calc(.5 * 172px);
    }
    .collection-photo--20 {
        height: calc(.5 * 170px);
        top: calc(.5 * 130px);
        left: calc(.5 * 173px);
    }
    .card--20 {
        top: calc(.5 * 130px);
        left: calc(.5 * 173px);
    }
    .collection-photo--39 {
        height: calc(.5 * 120px);
        top: calc(.5 * 315px);
        left: calc(.5 * 244px);
    }
    .card--39 {
        top: calc(.5 * 315px);
        left: calc(.5 * 244px);
    }
    .collection-photo--53 {
        height: calc(.5 * 187px);
        top: calc(.5 * 449px);
        left: calc(.5 * 244px);
    }
    .card--53 {
        top: calc(.5 * 449px);
        left: calc(.5 * 244px);
    }
    .collection-photo--61 {
        height: calc(.5 * 156px);
        top: calc(.5 * 315px);
        left: calc(.5 * 408px);
    }
    .card--61 {
        top: calc(.5 * 315px);
        left: calc(.5 * 408px);
    }
    .collection-photo--1 {
        height: calc(.5 * 113px);
        top: calc(.5 * 486px);
        left: calc(.5 * 408px);
    }
    .card--1 {
        top: calc(.5 * 486px);
        left: calc(.5 * 408px);
    }
    .collection-photo--35 {
        height: calc(.5 * 250px);
        top: calc(.5 * 50px);
        left: calc(.5 * 450px);
    }
    .card--35 {
        top: calc(.5 * 50px);
        left: calc(.5 * 450px);
    }
    .collection-photo--45 {
        height: calc(.5 * 198px);
        top: calc(.5 * 20px);
        left: calc(.5 * 626px);
    }
    .card--45 {
        top: calc(.5 * 20px);
        left: calc(.5 * 626px);
    }
    .collection-photo--82 {
        height: calc(.5 * 196px);
        top: calc(.5 * 233px);
        left: calc(.5 * 626px);
    }
    .card--82 {
        top: calc(.5 * 233px);
        left: calc(.5 * 626px);
    }
    .collection-photo--46 {
        height: calc(.5 * 187px);
        top: calc(.5 * 444px);
        left: calc(.5 * 626px);
    }
    .card--46 {
        top: calc(.5 * 444px);
        left: calc(.5 * 626px);
    }
    .collection-photo--67 {
        height: calc(.5 * 134px);
        top: calc(.5 * 444px);
        left: calc(.5 * 841px);
    }
    .card--67 {
        top: calc(.5 * 444px);
        left: calc(.5 * 841px);
    }
    .collection-photo--99 {
        height: calc(.5 * 152px);
        top: calc(.5 * 102px);
        left: calc(.5 * 891px);
    }
    .card--99 {
        top: calc(.5 * 102px);
        left: calc(.5 * 891px);
    }
    .collection-photo--28 {
        height: calc(.5 * 160px);
        top: calc(.5 * 269px);
        left: calc(.5 * 891px);
    }
    .card--28 {
        top: calc(.5 * 269px);
        left: calc(.5 * 891px);
    }
    .collection-photo--15 {
        height: calc(.5 * 210px);
        top: calc(.5 * 444px);
        left: calc(.5 * 1057px);
    }
    .card--15 {
        top: calc(.5 * 444px);
        left: calc(.5 * 1057px);
    }
    .collection-photo--13 {
        height: calc(.5 * 180px);
        top: calc(.5 * 10px);
        left: calc(.5 * 1107px);
    }
    .card--13 {
        top: calc(.5 * 10px);
        left: calc(.5 * 1107px);
    }
    .collection-photo--56 {
        height: calc(.5 * 224px);
        top: calc(.5 * 205px);
        left: calc(.5 * 1107px);
    }
    .card--56 {
        top: calc(.5 * 205px);
        left: calc(.5 * 1107px);
    }
    .collection-photo--24 {
        height: calc(.5 * 135px);
        top: calc(.5 * 115px);
        left: calc(.5 * 1302px);
    }
    .card--24 {
        top: calc(.5 * 115px);
        left: calc(.5 * 1302px);
    }
    .collection-photo--18 {
        height: calc(.5 * 162px);
        top: calc(.5 * 266px);
        left: calc(.5 * 1302px);
    }
    .card--18 {
        top: calc(.5 * 266px);
        left: calc(.5 * 1302px);
    }
    .collection-photo--12 {
        height: calc(.5 * 95px);
        top: calc(.5 * 444px);
        left: calc(.5 * 1386px);
    }
    .card--12 {
        top: calc(.5 * 444px);
        left: calc(.5 * 1386px);
    }
    .collection-photo--9 {
        height: calc(.5 * 266px);
        top: calc(.5 * -16px);
        left: calc(.5 * 1520px);
    }
    .card--9 {
        top: calc(.5 * -16px);
        left: calc(.5 * 1520px);
    }
    .collection-photo--10 {
        height: calc(.5 * 166px);
        top: calc(.5 * 500px);
        left: calc(.5 * 1561px);
    }
    .card--10 {
        top: calc(.5 * 500px);
        left: calc(.5 * 1561px);
    }
    .collection-photo--63 {
        height: calc(.5 * 220px);
        top: calc(.5 * 265px);
        left: calc(.5 * 1585px);
    }
    .card--63 {
        top: calc(.5 * 265px);
        left: calc(.5 * 1585px);
    }
    .collection-photo--75 {
        height: calc(.5 * 194px);
        top: calc(.5 * 188px);
        left: calc(.5 * 1748px);
    }
    .card--75 {
        top: calc(.5 * 188px);
        left: calc(.5 * 1748px);
    }
    .collection-photo--47 {
        height: calc(.5 * 84px);
        top: calc(.5 * 397px);
        left: calc(.5 * 1748px);
    }
    .card--47 {
        top: calc(.5 * 397px);
        left: calc(.5 * 1748px);
    }
    .collection-photo--93 {
        height: calc(.5 * 112px);
        top: calc(.5 * 65px);
        left: calc(.5 * 1822px);
    }
    .card--93 {
        top: calc(.5 * 65px);
        left: calc(.5 * 1822px);
    }
    .collection-photo--22 {
        height: calc(.5 * 212px);
        top: calc(.5 * 397px);
        left: calc(.5 * 1898px);
    }
    .card--22 {
        top: calc(.5 * 397px);
        left: calc(.5 * 1898px);
    }
    .collection-photo--3 {
        height: calc(.5 * 160px);
        top: calc(.5 * 81px);
        left: calc(.5 * 2010px);
    }
    .card--3 {
        top: calc(.5 * 81px);
        left: calc(.5 * 2010px);
    }
    .collection-photo--77 {
        height: calc(.5 * 126px);
        top: calc(.5 * 256px);
        left: calc(.5 * 2010px);
    }
    .card--77 {
        top: calc(.5 * 256px);
        left: calc(.5 * 2010px);
    }
    .collection-photo--78 {
        height: calc(.5 * 250px);
        top: calc(.5 * 256px);
        left: calc(.5 * 2215px);
    }
    .card--78 {
        top: calc(.5 * 256px);
        left: calc(.5 * 2215px);
    }
    .collection-photo--60 {
        height: calc(.5 * 155px);
        top: calc(.5 * 519px);
        left: calc(.5 * 2215px);
    }
    .card--60 {
        top: calc(.5 * 519px);
        left: calc(.5 * 2215px);
    }
    .collection-photo--40 {
        height: calc(.5 * 226px);
        top: calc(.5 * 16px);
        left: calc(.5 * 2260px);
    }
    .card--40 {
        top: calc(.5 * 16px);
        left: calc(.5 * 2260px);
    }
    .collection-photo--62 {
        height: calc(.5 * 238px);
        top: calc(.5 * 169px);
        left: calc(.5 * 2422px);
    }
    .card--62 {
        top: calc(.5 * 169px);
        left: calc(.5 * 2422px);
    }
    .collection-photo--80 {
        height: calc(.5 * 162px);
        top: calc(.5 * 420px);
        left: calc(.5 * 2422px);
    }
    .card--80 {
        top: calc(.5 * 420px);
        left: calc(.5 * 2422px);
    }
    .collection-photo--87 {
        height: calc(.5 * 120px);
        top: calc(.5 * 35px);
        left: calc(.5 * 2569px);
    }
    .card--87 {
        top: calc(.5 * 35px);
        left: calc(.5 * 2569px);
    }
    .collection-photo--2 {
        height: calc(.5 * 200px);
        top: calc(.5 * 420px);
        left: calc(.5 * 2654px);
    }
    .card--2 {
        top: calc(.5 * 420px);
        left: calc(.5 * 2654px);
    }
    .collection-photo--30 {
        height: calc(.5 * 282px);
        top: calc(.5 * 125px);
        left: calc(.5 * 2763px);
    }
    .card--30 {
        top: calc(.5 * 125px);
        left: calc(.5 * 2763px);
    }
    .collection-photo--21 {
        height: calc(.5 * 136px);
        top: calc(.5 * 420px);
        left: calc(.5 * 2869px);
    }
    .card--21 {
        top: calc(.5 * 420px);
        left: calc(.5 * 2869px);
    }
    .collection-photo--7 {
        height: calc(.5 * 150px);
        top: calc(.5 * 53px);
        left: calc(.5 * 3014px);
    }
    .card--7 {
        top: calc(.5 * 53px);
        left: calc(.5 * 3014px);
    }
    .collection-photo--89 {
        height: calc(.5 * 150px);
        top: calc(.5 * 217px);
        left: calc(.5 * 3015px);
    }
    .card--89 {
        top: calc(.5 * 217px);
        left: calc(.5 * 3015px);
    }
    .collection-photo--34 {
        height: calc(.5 * 190px);
        top: calc(.5 * 382px);
        left: calc(.5 * 3015px);
    }
    .card--34 {
        top: calc(.5 * 382px);
        left: calc(.5 * 3015px);
    }
    .collection-photo--86 {
        height: calc(.5 * 200px);
        top: calc(.5 * 167px);
        left: calc(.5 * 3229px);
    }
    .card--86 {
        top: calc(.5 * 167px);
        left: calc(.5 * 3229px);
    }
    .collection-photo--48 {
        height: calc(.5 * 240px);
        top: calc(.5 * 257px);
        left: calc(.5 * 3392px);
    }
    .card--48 {
        top: calc(.5 * 257px);
        left: calc(.5 * 3392px);
    }
    .collection-photo--98 {
        height: calc(.5 * 128px);
        top: calc(.5 * 512px);
        left: calc(.5 * 3392px);
    }
    .card--98 {
        top: calc(.5 * 512px);
        left: calc(.5 * 3392px);
    }
    .collection-photo--65 {
        height: calc(.5 * 146px);
        top: calc(.5 * 96px);
        left: calc(.5 * 3494px);
    }
    .card--65 {
        top: calc(.5 * 96px);
        left: calc(.5 * 3494px);
    }
    .collection-photo--6 {
        height: calc(.5 * 128px);
        top: calc(.5 * 512px);
        left: calc(.5 * 3589px);
    }
    .card--6 {
        top: calc(.5 * 512px);
        left: calc(.5 * 3589px);
    }
    .collection-photo--41 {
        height: calc(.5 * 168px);
        top: calc(.5 * 74px);
        left: calc(.5 * 3724px);
    }
    .card--41 {
        top: calc(.5 * 74px);
        left: calc(.5 * 3724px);
    }
    .collection-photo--81 {
        height: calc(.5 * 158px);
        top: calc(.5 * 257px);
        left: calc(.5 * 3784px);
    }
    .card--81 {
        top: calc(.5 * 257px);
        left: calc(.5 * 3784px);
    }
    .collection-photo--73 {
        height: calc(.5 * 162px);
        top: calc(.5 * 430px);
        left: calc(.5 * 3784px);
    }
    .card--73 {
        top: calc(.5 * 430px);
        left: calc(.5 * 3784px);
    }
    .collection-photo--74 {
        height: calc(.5 * 222px);
        top: calc(.5 * 430px);
        left: calc(.5 * 3928px);
    }
    .card--74 {
        top: calc(.5 * 430px);
        left: calc(.5 * 3928px);
    }
    .collection-photo--96 {
        height: calc(.5 * 210px);
        top: calc(.5 * 205px);
        left: calc(.5 * 4000px);
    }
    .card--96 {
        top: calc(.5 * 205px);
        left: calc(.5 * 4000px);
    }
    .collection-photo--42 {
        height: calc(.5 * 150px);
        top: calc(.5 * -12px);
        left: calc(.5 * 4138px);
    }
    .card--42 {
        top: calc(.5 * -12px);
        left: calc(.5 * 4138px);
    }
    .collection-photo--72 {
        height: calc(.5 * 262px);
        top: calc(.5 * 153px);
        left: calc(.5 * 4152px);
    }
    .card--72 {
        top: calc(.5 * 153px);
        left: calc(.5 * 4152px);
    }
    .collection-photo--27 {
        height: calc(.5 * 128px);
        top: calc(.5 * 430px);
        left: calc(.5 * 4217px);
    }
    .card--27 {
        top: calc(.5 * 430px);
        left: calc(.5 * 4217px);
    }
    .collection-photo--8 {
        height: calc(.5 * 150px);
        top: calc(.5 * -12px);
        left: calc(.5 * 4363px);
    }
    .card--8 {
        top: calc(.5 * -12px);
        left: calc(.5 * 4363px);
    }
    .collection-photo--90 {
        height: calc(.5 * 196px);
        top: calc(.5 * 430px);
        left: calc(.5 * 4423px);
    }
    .card--90 {
        top: calc(.5 * 430px);
        left: calc(.5 * 4423px);
    }
    .collection-photo--95 {
        height: calc(.5 * 144px);
        top: calc(.5 * 114px);
        left: calc(.5 * 4491px);
    }
    .card--95 {
        top: calc(.5 * 114px);
        left: calc(.5 * 4491px);
    }
    .collection-photo--66 {
        height: calc(.5 * 138px);
        top: calc(.5 * 274px);
        left: calc(.5 * 4491px);
    }
    .card--66 {
        top: calc(.5 * 274px);
        left: calc(.5 * 4491px);
    }
    .collection-photo--91 {
        height: calc(.5 * 292px);
        top: calc(.5 * 20px);
        left: calc(.5 * 4688px);
    }
    .card--91 {
        top: calc(.5 * 20px);
        left: calc(.5 * 4688px);
    }
    .collection-photo--68 {
        height: calc(.5 * 165px);
        top: calc(.5 * 327px);
        left: calc(.5 * 4688px);
    }
    .card--68 {
        top: calc(.5 * 327px);
        left: calc(.5 * 4688px);
    }
    .collection-photo--69 {
        height: calc(.5 * 148px);
        top: calc(.5 * 507px);
        left: calc(.5 * 4688px);
    }
    .card--69 {
        top: calc(.5 * 507px);
        left: calc(.5 * 4688px);
    }
    .collection-photo--14 {
        height: calc(.5 * 110px);
        top: calc(.5 * 80px);
        left: calc(.5 * 4910px);
    }
    .card--14 {
        top: calc(.5 * 80px);
        left: calc(.5 * 4910px);
    }
    .collection-photo--19 {
        height: calc(.5 * 165px);
        top: calc(.5 * 205px);
        left: calc(.5 * 4910px);
    }
    .card--19 {
        top: calc(.5 * 205px);
        left: calc(.5 * 4910px);
    }
    .collection-photo--58 {
        height: calc(.5 * 200px);
        top: calc(.5 * 385px);
        left: calc(.5 * 4910px);
    }
    .card--58 {
        top: calc(.5 * 385px);
        left: calc(.5 * 4910px);
    }
    .collection-photo--29 {
        height: calc(.5 * 260px);
        top: calc(.5 * 385px);
        left: calc(.5 * 5081px);
    }
    .card--29 {
        top: calc(.5 * 385px);
        left: calc(.5 * 5081px);
    }
    .collection-photo--23 {
        height: calc(.5 * 165px);
        top: calc(.5 * 205px);
        left: calc(.5 * 5173px);
    }
    .card--23 {
        top: calc(.5 * 205px);
        left: calc(.5 * 5173px);
    }
    .collection-photo--52 {
        height: calc(.5 * 196px);
        top: calc(.5 * 26px);
        left: calc(.5 * 5332px);
    }
    .card--52 {
        top: calc(.5 * 26px);
        left: calc(.5 * 5332px);
    }
    .collection-photo--57 {
        height: calc(.5 * 217px);
        top: calc(.5 * 234px);
        left: calc(.5 * 5332px);
    }
    .card--57 {
        top: calc(.5 * 234px);
        left: calc(.5 * 5332px);
    }
    .collection-photo--17 {
        height: calc(.5 * 190px);
        top: calc(.5 * 464px);
        left: calc(.5 * 5332px);
    }
    .card--17 {
        top: calc(.5 * 464px);
        left: calc(.5 * 5332px);
    }
    .collection-photo--11 {
        height: calc(.5 * 222px);
        top: calc(.5 * 188px);
        left: calc(.5 * 5671px);
    }
    .card--11 {
        top: calc(.5 * 188px);
        left: calc(.5 * 5671px);
    }
    .collection-photo--26 {
        height: calc(.5 * 142px);
        top: calc(.5 * 425px);
        left: calc(.5 * 5671px);
    }
    .card--26 {
        top: calc(.5 * 425px);
        left: calc(.5 * 5671px);
    }
    .collection-photo--33 {
        height: calc(.5 * 138px);
        top: calc(.5 * 35px);
        left: calc(.5 * 5877px);
    }
    .card--33 {
        top: calc(.5 * 35px);
        left: calc(.5 * 5877px);
    }
    .collection-photo--43 {
        height: calc(.5 * 200px);
        top: calc(.5 * 425px);
        left: calc(.5 * 5896px);
    }
    .card--43 {
        top: calc(.5 * 425px);
        left: calc(.5 * 5896px);
    }
    .collection-photo--71 {
        height: calc(.5 * 275px);
        top: calc(.5 * 78px);
        left: calc(.5 * 6094px);
    }
    .card--71 {
        top: calc(.5 * 78px);
        left: calc(.5 * 6094px);
    }
    .collection-photo--84 {
        height: calc(.5 * 176px);
        top: calc(.5 * 368px);
        left: calc(.5 * 6094px);
    }
    .card--84 {
        top: calc(.5 * 368px);
        left: calc(.5 * 6094px);
    }
    .collection-photo--97 {
        height: calc(.5 * 140px);
        top: calc(.5 * 38px);
        left: calc(.5 * 6328px);
    }
    .card--97 {
        top: calc(.5 * 38px);
        left: calc(.5 * 6328px);
    }
    .collection-photo--59 {
        height: calc(.5 * 205px);
        top: calc(.5 * 193px);
        left: calc(.5 * 6328px);
    }
    .card--59 {
        top: calc(.5 * 193px);
        left: calc(.5 * 6328px);
    }
    .collection-photo--31 {
        height: calc(.5 * 250px);
        top: calc(.5 * 413px);
        left: calc(.5 * 6519px);
    }
    .card--31 {
        top: calc(.5 * 413px);
        left: calc(.5 * 6519px);
    }
    .collection-photo--50 {
        height: calc(.5 * 278px);
        top: calc(.5 * 120px);
        left: calc(.5 * 6603px);
    }
    .card--50 {
        top: calc(.5 * 120px);
        left: calc(.5 * 6603px);
    }
    .collection-photo--76 {
        height: calc(.5 * 200px);
        top: calc(.5 * 413px);
        left: calc(.5 * 6712px);
    }
    .card--76 {
        top: calc(.5 * 413px);
        left: calc(.5 * 6712px);
    }
    .collection-photo--25 {
        height: calc(.5 * 200px);
        top: calc(.5 * 34px);
        left: calc(.5 * 6899px);
    }
    .card--25 {
        top: calc(.5 * 34px);
        left: calc(.5 * 6899px);
    }
    .collection-photo--83 {
        height: calc(.5 * 200px);
        top: calc(.5 * 250px);
        left: calc(.5 * 6899px);
    }
    .card--83 {
        top: calc(.5 * 250px);
        left: calc(.5 * 6899px);
    }
    .collection-photo--64 {
        height: calc(.5 * 160px);
        top: calc(.5 * 465px);
        left: calc(.5 * 6899px);
    }
    .card--64 {
        top: calc(.5 * 465px);
        left: calc(.5 * 6899px);
    }
    .collection-photo--32 {
        height: calc(.5 * 130px);
        top: calc(.5 * 250px);
        left: calc(.5 * 7050px);
    }
    .card--32 {
        top: calc(.5 * 250px);
        left: calc(.5 * 7050px);
    }
    .collection-photo--70 {
        height: calc(.5 * 250px);
        top: calc(.5 * -16px);
        left: calc(.5 * 7112px);
    }
    .card--70 {
        top: calc(.5 * -16px);
        left: calc(.5 * 7112px);
    }
    .collection-photo--85 {
        height: calc(.5 * 168px);
        top: calc(.5 * 395px);
        left: calc(.5 * 7114px);
    }
    .card--85 {
        top: calc(.5 * 395px);
        left: calc(.5 * 7114px);
    }
    .collection-photo--5 {
        height: calc(.5 * 202px);
        top: calc(.5 * 250px);
        left: calc(.5 * 7262px);
    }
    .card--5 {
        top: calc(.5 * 250px);
        left: calc(.5 * 7262px);
    }
    .collection-photo--92 {
        height: calc(.5 * 196px);
        top: calc(.5 * 467px);
        left: calc(.5 * 7262px);
    }
    .card--92 {
        top: calc(.5 * 467px);
        left: calc(.5 * 7262px);
    }
    .collection-photo--36 {
        height: calc(.5 * 210px);
        top: calc(.5 * 26px);
        left: calc(.5 * 7401px);
    }
    .card--36 {
        top: calc(.5 * 26px);
        left: calc(.5 * 7401px);
    }
    .collection-photo--4 {
        height: calc(.5 * 90px);
        top: calc(.5 * 250px);
        left: calc(.5 * 7580px);
    }
    .card--4 {
        top: calc(.5 * 250px);
        left: calc(.5 * 7580px);
    }
    .collection-photo--79 {
        height: calc(.5 * 145px);
        top: calc(.5 * 355px);
        left: calc(.5 * 7580px);
    }
    .card--79 {
        top: calc(.5 * 355px);
        left: calc(.5 * 7580px);
    }
    .collection-photo--51 {
        height: calc(.5 * 107px);
        top: calc(.5 * 98px);
        left: calc(.5 * 7728px);
    }
    .card--51 {
        top: calc(.5 * 98px);
        left: calc(.5 * 7728px);
    }
    .collection-photo--94 {
        height: calc(.5 * 124px);
        top: calc(.5 * 217px);
        left: calc(.5 * 7728px);
    }
    .card--94 {
        top: calc(.5 * 217px);
        left: calc(.5 * 7728px);
    }
    .collection-photo--38 {
        height: calc(.5 * 244px);
        top: calc(.5 * 355px);
        left: calc(.5 * 7797px);
    }
    .card--38 {
        top: calc(.5 * 355px);
        left: calc(.5 * 7797px);
    }
    .collection-photo--88 {
        height: calc(.5 * 288px);
        top: calc(.5 * 53px);
        left: calc(.5 * 7908px);
    }
    .card--88 {
        top: calc(.5 * 53px);
        left: calc(.5 * 7908px);
    }
    .collection-photo--49 {
        height: calc(.5 * 180px);
        top: calc(.5 * 355px);
        left: calc(.5 * 7973px);
    }
    .card--49 {
        top: calc(.5 * 355px);
        left: calc(.5 * 7973px);
    }
    .collection-photo--16 {
        height: calc(.5 * 134px);
        top: calc(.5 * 207px);
        left: calc(.5 * 8151px);
    }
    .card--16 {
        top: calc(.5 * 207px);
        left: calc(.5 * 8151px);
    }
    .collection-photo--0 {
        height: calc(.5 * 99px);
        top: calc(.5 * 95px);
        left: calc(.5 * 8225px);
    }
    .card--0 {
        top: calc(.5 * 95px);
        left: calc(.5 * 8225px);
    }
    .collection-photo--37 {
        height: calc(.5 * 200px);
        top: calc(.5 * 207px);
        left: calc(.5 * 8368px);
    }
    .card--37 {
        top: calc(.5 * 207px);
        left: calc(.5 * 8368px);
    }
} */

.crawl-control--visible{display: none;}
.timeline-area.show-arrows .crawl-control--visible{display: block;}

.collection__link{color: #121d54 !important; text-decoration: none;}
.collection__link .card a{color: #121d54; text-decoration: none;}
.collection__link .card a:hover{color: #223db5}
@media screen and (min-width: 768px)
{
    .collection{height:100vh;}

}
@media screen and (max-width:991px)
{
    .main--timeline-is-visible .collection{display: none;}
    .body--timeline-is-visible .collection_main{height: 400px;}
    .timeline.timeline--is-visible{top:130px;}
    .body--timeline-is-visible #kisr-testimonials{padding-bottom: 0px;}
    /* .main--timeline-is-visible .crawl-control--visible{display: none !important;} */
    .timeline__photo img{max-width: 100%;}
}
@media screen and (min-width: 768px) and (max-width: 991px)
{
    .timeline__controls{bottom:-15px;}
}
@media screen and (max-width: 767px)
{
    /* .crawl-control--visible{display: none !important;} */
}
.text--medium {
    font-weight: 400;
}
.text--24 {
    font-size: 24px;
}
.card__content p, .card__content h2, .card__content div{color:#000;}
a.timeline__link{color:#000;}