img {
    /*min-width: 100%;*/
}

.sr-only {
    position: absolute;
    left: -9999999px;
}

.img-responsive,
.thumbnail > img,
.thumbnail a > img,
.carousel-inner > .item > img,
.carousel-inner > .item > a > img {
    display: block;
    max-width: 100%;
    height: auto;
}

.carousel {
    position: relative;
}






.carousel-inner {
    position: relative;
    width: 100%;
    overflow: hidden;
    max-height: 72vh;
    min-height: 32vh;
}

    .carousel-inner > .item {
        position: relative;
        display: none;
        -webkit-transition: .6s ease-in-out left;
        -o-transition: .6s ease-in-out left;
        transition: .6s ease-in-out left;
/*        max-height: 94vh;*/
    }

        .carousel-inner > .item > img,
        .carousel-inner > .item > a > img {
            line-height: 1;
            object-fit: cover;
            min-height: 32vh;
        }

@media all and (transform-3d), (-webkit-transform-3d) {
    .carousel-inner > .item {
        -webkit-transition: -webkit-transform .6s ease-in-out;
        -o-transition: -o-transform .6s ease-in-out;
        transition: transform .6s ease-in-out;
        -webkit-backface-visibility: hidden;
        backface-visibility: hidden;
        -webkit-perspective: 1000px;
        perspective: 1000px;
    }

        .carousel-inner > .item.next,
        .carousel-inner > .item.active.right {
            left: 0;
            -webkit-transform: translate3d(100%, 0, 0);
            transform: translate3d(100%, 0, 0);
        }

        .carousel-inner > .item.prev,
        .carousel-inner > .item.active.left {
            left: 0;
            -webkit-transform: translate3d(-100%, 0, 0);
            transform: translate3d(-100%, 0, 0);
        }

            .carousel-inner > .item.next.left,
            .carousel-inner > .item.prev.right,
            .carousel-inner > .item.active {
                left: 0;
                -webkit-transform: translate3d(0, 0, 0);
                transform: translate3d(0, 0, 0);
            }
}

.carousel-inner > .active,
.carousel-inner > .next,
.carousel-inner > .prev {
    display: block;
}

.carousel-inner > .active {
    left: 0;
}

.carousel-inner > .next,
.carousel-inner > .prev {
    position: absolute;
    top: 0;
    width: 100%;
}

.carousel-inner > .next {
    left: 100%;
}

.carousel-inner > .prev {
    left: -100%;
}

    .carousel-inner > .next.left,
    .carousel-inner > .prev.right {
        left: 0;
    }

.carousel-inner > .active.left {
    left: -100%;
}

.carousel-inner > .active.right {
    left: 100%;
}

.carousel-control {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 15%;
    font-size: 20px;
    color: #fff;
    text-align: center;
    text-shadow: 0 1px 2px rgba(0, 0, 0, .6);
    filter: alpha(opacity=50);
    opacity: .5;
}

    .carousel-control.left {
        background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, .5) 0%, rgba(0, 0, 0, .0001) 100%);
        background-image: -o-linear-gradient(left, rgba(0, 0, 0, .5) 0%, rgba(0, 0, 0, .0001) 100%);
        background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, .5)), to(rgba(0, 0, 0, .0001)));
        background-image: linear-gradient(to right, rgba(0, 0, 0, .5) 0%, rgba(0, 0, 0, .0001) 100%);
        filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#80000000', endColorstr='#00000000', GradientType=1);
        background-repeat: repeat-x;
    }

    .carousel-control.right {
        right: 0;
        left: auto;
        background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, .0001) 0%, rgba(0, 0, 0, .5) 100%);
        background-image: -o-linear-gradient(left, rgba(0, 0, 0, .0001) 0%, rgba(0, 0, 0, .5) 100%);
        background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, .0001)), to(rgba(0, 0, 0, .5)));
        background-image: linear-gradient(to right, rgba(0, 0, 0, .0001) 0%, rgba(0, 0, 0, .5) 100%);
        filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#80000000', GradientType=1);
        background-repeat: repeat-x;
    }

    .carousel-control:hover,
    .carousel-control:focus {
        color: #fff;
        text-decoration: none;
        filter: alpha(opacity=90);
        outline: 0;
        opacity: .9;
    }

    .carousel-control .icon-prev,
    .carousel-control .icon-next,
    .carousel-control .glyphicon-chevron-left,
    .carousel-control .glyphicon-chevron-right {
        position: absolute;
        top: 50%;
        z-index: 5;
        display: inline-block;
        margin-top: -10px;
    }

    .carousel-control .icon-prev,
    .carousel-control .glyphicon-chevron-left {
        left: 50%;
        margin-left: -10px;
    }

    .carousel-control .icon-next,
    .carousel-control .glyphicon-chevron-right {
        right: 50%;
        margin-right: -10px;
    }

    .carousel-control .icon-prev,
    .carousel-control .icon-next {
        width: 20px;
        height: 20px;
        font-family: serif;
        line-height: 1;
    }

        .carousel-control .icon-prev:before {
            content: '\2039';
        }

        .carousel-control .icon-next:before {
            content: '\203a';
        }

@media screen and (max-width: 768px) {
    .carousel-indicators {
        display:none;
    }
}
.carousel-indicators {
    position: absolute;
    bottom: 10px;
    left: 50%;
    z-index: 15;
    width: 60%;
    padding-left: 0;
    margin-left: -30%;
    text-align: center;
    list-style: none;
}

    .carousel-indicators li {
        display: inline-block;
        width: 12px;
        height: 12px;
        margin: 1px;
        text-indent: -999px;
        cursor: pointer;
        background-color: #000 \9;
        background-color: rgba(0, 0, 0, 0);
        border: 1px solid #fff;
        border-radius: 10px;
        margin-right: 10px;
    }

    .carousel-indicators .active {
        width: 15px;
        height: 15px;
        margin: 0;
        background-color: #fff;
        margin-right: 10px;
    }

@media (min-width: 1199px) {
    .carousel-indicators {
        font-size: 2.5rem;
    }
}

@media (min-width: 2500px) {
    .carousel-indicators {
        font-size: 6rem;
    }

        .carousel-indicators li {
            width: 20px;
            height: 20px;
        }

        .carousel-indicators .active {
            width: 24px;
            height: 24px;
            margin: 0;
            background-color: #fff;
        }
}

.carousel-caption {
    position: absolute;
    right: 0%;
    bottom: 20px;
    left: 0%;
    z-index: 10;
    padding-top: 10vh;
    padding-bottom: 20px;
    color: #fff;
    text-align: center;
    text-shadow: 0 1px 2px rgba(0, 0, 0, .6);
    height: 75%;
    top: 0;
    background-color: rgba(0, 0, 0, 0.1);
}

    .carousel-caption .btn {
        text-shadow: none;
    }

.font-black {
    color: #313131 !important;
}


.carousel-control .glyphicon-chevron-left,
.carousel-control .glyphicon-chevron-right,
.carousel-control .icon-prev,
.carousel-control .icon-next {
    width: 30px;
    height: 30px;
    margin-top: -15px;
    font-size: 40px;
}

@media (min-width: 2500px) {
    .carousel-control .glyphicon-chevron-left,
    .carousel-control .glyphicon-chevron-right,
    .carousel-control .icon-prev,
    .carousel-control .icon-next {

        font-size: 80px;
    }
}

.carousel-control .glyphicon-chevron-left,
.carousel-control .icon-prev {
    margin-left: -15px;
}

.carousel-control .glyphicon-chevron-right,
.carousel-control .icon-next {
    margin-right: -15px;
}

.carousel-caption {
    right: 0%;
    left: 0%;
    padding-bottom: 30px;
    height: 100%;
}

.carousel-indicators {
    bottom: 20px;
}

.carousel-caption p {
    font-size: 3.5rem !important;
    margin-top: 5rem !important;
    padding-left: 160px !important;
    padding-right: 160px !important;
    width: 100%;
}

.carousel-caption .safety-net {
    font-size: 2.2rem !important;
    margin-top: 5.5rem !important;
}

@media (min-width: 2500px) {
    .carousel-caption p {
        margin-top: 22rem !important;
        padding-left: 250px !important;
        padding-right: 250px !important;
        font-size: 5rem !important;
    }

    .carousel-caption .safety-net {
        font-size: 3rem !important;
        margin-top: 8rem !important;
    }
}



@media screen and (max-width: 1699px) {

    .carousel-caption p {
        font-size: 3.2rem !important;
        margin-top: 3rem !important;
    }

    .carousel-caption .safety-net {
        font-size: 1.8rem !important;
        margin-top: 3.6rem !important;
    }
}

@media screen and (max-width: 1399px) {

    .carousel-caption p {
        font-size: 3.2rem !important;
        margin-top: 6rem !important;
    }

    .carousel-caption .safety-net {
        font-size: 1.8rem !important;
        margin-top: 3.6rem !important;
    }
}

@media screen and (max-width: 1299px) {

    .carousel-caption p {
        font-size: 2.7rem !important;
        margin-top: 7rem !important;
    }

    .carousel-caption .safety-net {
        font-size: 1.8rem !important;
        margin-top: 3.6rem !important;
    }
}


@media screen and (max-width: 1199px) {
    .carousel-caption {
        padding-top: 8vh;
    }

    .carousel-caption p {
        font-size: 2.5rem !important;
        margin-top: 8.8rem !important;
    }

    .carousel-caption .safety-net {
        font-size: 2rem !important;
        margin-top: 4rem !important;
    }
}

@media screen and (max-width: 1099px) {
    .carousel-caption {
        padding-top: 7.5vh;
    }

    .carousel-caption p {
        font-size: 2.6rem !important;
        margin-top: 7.5rem !important;
    }

    .carousel-caption .safety-net {
        font-size: 1.8rem !important;
        margin-top: 3.6rem !important;
    }
}



@media screen and (max-width: 991px) {
    .carousel-caption {
        padding-top: 7vh;
    }
        .carousel-caption p {
            font-size: 2rem !important;
            margin-top: 3.5rem !important;
            padding-left: 120px !important;
            padding-right: 120px !important;
        }
    .carousel-caption .safety-net {
        font-size: 1.7rem !important;
        margin-top: 3.4rem !important;
    }
}

@media screen and (max-width: 910px) {


    .carousel-caption p {
        font-size: 1.8rem !important;
        margin-top: 5rem !important;
    }

    .carousel-caption .safety-net {
        font-size: 1.4rem !important;
        margin-top: 3rem !important;
    }
}

@media screen and (max-width: 840px) {


    .carousel-caption p {
        font-size: 1.6rem !important;
        margin-top: 4rem !important;
        padding-left: 100px !important;
        padding-right: 100px !important;
    }

    .carousel-caption .safety-net {
        font-size: 1.2rem !important;
        margin-top: 2.7rem !important;
    }
}

@media screen and (max-width: 768px) {
    .carousel-caption {
        padding-top: 6vh;
        /*height:90%;*/
    }


        .carousel-caption p {
            font-size: 1.8rem !important;
            margin-top: 6rem !important;
            padding-left: 90px !important;
            padding-right: 90px !important;
        }

        .carousel-caption .safety-net {
            font-size: 1.2rem !important;
            margin-top: 2.5rem !important;
        }

    .carousel-control .glyphicon-chevron-left,
    .carousel-control .glyphicon-chevron-right,
    .carousel-control .icon-prev,
    .carousel-control .icon-next {
        font-size: 30px;
    }
}

@media screen and (max-width: 699px) {

    .carousel-caption p {
        font-size: 1.4rem !important;
        margin-top: 3rem !important;
        padding-left: 60px !important;
        padding-right: 60px !important;
    }

    .carousel-caption .safety-net {
        font-size: 1rem !important;
        margin-top: 2rem !important;
    }
}

@media screen and (max-width: 575px) {
    .carousel-caption {
        padding-top: 2vh;
        height: 95%;
    }


        .carousel-caption p {
            font-size: 1rem !important;
            margin-top: 1.5rem !important;
            padding-left: 40px !important;
            padding-right: 40px !important;
        }

        .carousel-caption .safety-net {
            font-size: .8rem !important;
            margin-top: 1.2rem !important;
        }

    .carousel-control .glyphicon-chevron-left,
    .carousel-control .glyphicon-chevron-right,
    .carousel-control .icon-prev,
    .carousel-control .icon-next {
        font-size: 20px;
    }
}






.banner {
    position: absolute;
    /*    bottom: 2rem;
    right: 18rem;*/
    padding: 10px;
    display: flex;
    flex-direction: column;
    padding: 3.5rem 3rem 10px 3rem;
    /*height: 57vh;*/
    /*width: 68vh;*/
    width: 100%;
    height: 100%;
    z-index: 1;
    background-color: #42546554;
    color: #ffffff !important;
    font-family: "Century Gothic", "Arial", sans-serif;
}

.banner-row {
    /*flex: 1;*/ /* Distribute space evenly among the rows */
    border: 1px solid #ccc; /* Just for demonstration */
    padding: 10px; /* Add padding to the rows */
    border: none;
    display: flex;
    flex-direction: row;
    align-content: flex-end;
    justify-content: end;
    align-items: end;
    margin: 0;
    margin-right: 18rem;
}

.banner-header {
    text-shadow: -3px 3px 2px rgba(107,71,72,0.2);
    font-size: 7rem !important;
    float: right;
}

.banner-text {
    letter-spacing: 3px !important;
    font-size: 1.875rem !important;
    line-height: 1.6 !important;
    margin: 0 !important;
    float: right;
    text-align: right;
}

.banner-text-sm {
    font-size: 1.5rem !important;
    max-width: 40%;
}

.banner-text-width {
   max-width: inherit;
}

.banner-start-now, .partner-start-now {
    float: right;
    background: #FFBD59;
    padding: 0 5rem;
    font-size: 1.3rem;
    -webkit-border-radius: 0.75rem !important;
    -moz-border-radius: 0.75rem !important;
    border-radius: 0.6rem !important;
    box-shadow: 0 2.5px 8px 0px rgba(0,0,0,.15);
    -webkit-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    transition: all 0.4s ease;
    cursor: pointer;
    color: #fff;
    margin-top: 20px;
}

.start-now-main {
    padding: 0 1.5rem;

}

    /*.banner-start-now:hover {
        color: white;
        background: #ffbd59b5;
    }*/

/* effect-shine */
    .banner-start-now:hover, .partner-start-now:hover {
        color: white;
        -webkit-mask-image: linear-gradient(-75deg, rgba(0,0,0,.7) 30%, #000 50%, rgba(0,0,0,.7) 70%);
        -webkit-mask-size: 200%;
        animation: shine 2s infinite;
    }

.banner-start-now-text, .partner-start-now-text {
    display: inherit;
    letter-spacing: 0.115rem !important;
    font-family: "Poppins", "Arial", sans-serif;
}

.fa-arrow-right {
    display: none !important;
}

@media (min-width: 2299px) and (max-width: 4000px) {
    .banner {
        padding: 10rem 3rem 10px 3rem;
    }
}

@media screen and (max-height: 1000px) {
    .banner {
        padding: 2rem 3rem 10px 3rem;
    }
}


@media (max-width: 1199px), screen and (max-height: 750px) {

    .banner-row {
        margin-right: 10rem;
    }

    .banner-header {
        font-size: 6rem !important;
    }

    .banner-text {
        letter-spacing: 2px !important;
        font-size: 1.5rem !important;
    }

/*    .banner-text-sm {
        letter-spacing: 2px !important;
        font-size: 1.2rem !important;
    }*/

    .banner-start-now {
        padding: 0 5rem;
        font-size: 1.3rem;
        margin-top: 1rem;
    }

    .start-now-main {
        padding: 0 1rem;
    }

    .partner-start-now {
        padding: 0 4rem;
        font-size: 1.3rem;
   /*     margin-top: 0;*/
    }
}



@media (max-width: 991px) {
    .banner {
        padding: 3.5rem 3rem 10px 3rem;
    }

    .banner-row {
        margin-right: 5rem;
    }

    .partner-start-now {
        padding: 0 2rem;
        font-size: 1.3rem;
        /*margin-top: 0;*/
    }

    .banner-text-sm {
        letter-spacing: 2px !important;
        font-size: 1.3rem !important;
        max-width: 66%;
    }
}

@media (max-width: 768px) {
    .banner-row {
        margin-right: 2rem;
    }

    .banner-header {
        font-size: 5rem !important;
    }

    .banner-text {
        letter-spacing: 2px !important;
        font-size: 1.25rem !important;
    }

    .banner-start-now {
        padding: 0 2rem;
        font-size: 1.3rem;
        margin-top: 1rem;
    }

    .start-now-main {
        padding: 0 1rem;
    }

    .partner-start-now {
        padding: 0 1rem;
        font-size: 1.3rem;
 /*       margin-top: 0;*/
    }
}

@media (max-width: 699px) {
    .banner {
        width: 100%;
        right: 0;
        top: 0;
        height: 100%;
    }

    .banner-sm {
        padding: 1rem 1rem 1rem 1rem;
    }

    .banner-header {
        margin: 0 !important;
    }

    .banner-row {
        justify-content: center;
        align-items: center;
        margin-right: 0 !important;
    }

    .banner-text {
        text-align: center;
    }

    .banner-row-mobile {
        display:none;
    }

    .banner-text-sm {
        letter-spacing: 1px !important;
        font-size: 1.5rem !important;
        max-width: 100% !important;
    }

    /*.partner-start-now {
        width: 4.5rem;
        height: 4.5rem;
        border-radius: 50% !important;
        color: #fff;
        border: none;
        font-size: 13px;
        cursor: pointer;
        outline: none;
        padding: 0;*/
/*        margin-top: 0;*/
        /*display: flex;
        justify-content: center;
        align-items: center;
    }

    .partner-start-now-text {
        display: none;
    }*/

    /*.fa-arrow-right {
        display: inherit !important;
    }*/
}

@media (max-width: 575px) {
    .banner {
        padding: 1rem 3rem 10px 3rem;
    }

    .banner-header {
        font-size: 3.8rem !important;
    }

    .banner-text {
        letter-spacing: 2px !important;
        font-size: 1.25rem !important;
    }

    .banner-text-sm {
        letter-spacing: 1px !important;
        font-size: 1rem !important;
        max-width: 100% !important;
    }

    .banner-start-now{
        margin-top: 0 !important;
    }

    .banner-start-now-text {
        margin-top: 15px;
        margin-bottom: 15px;
    }


    .partner-start-now {
        display:none;
    }

    .u-size-30-mobile {
        flex: auto !important;
        max-width: 100% !important;
        width: 100% !important;
    }
}

@media (max-width: 379px) {
    .banner-row {
        padding: 0;
    }
}

@media (max-width: 349px) {
    .banner {
        padding: 0.5rem 1rem 10px 1rem;
    }
}


.fade-in-top {
    opacity: 0; /* Initially, make the element invisible */
    transform: translateY(-200px); /* Move the element 20px up */
    animation: fadeInTop 1s ease forwards; /* Apply the animation */
}

@keyframes fadeInTop {
    to {
        opacity: 1; /* At the end of the animation, make the element fully visible */
        transform: translateY(0); /* Reset the vertical position */
    }
}

.fade-in-right {
    opacity: 0; /* Initially, make the element invisible */
    transform: translateX(150%); /* Move the element 100% to the right */
    animation: fadeInRight 1s ease forwards; /* Apply the animation */
}

@keyframes fadeInRight {
    to {
        opacity: 1; /* At the end of the animation, make the element fully visible */
        transform: translateX(0); /* Reset the horizontal position */
    }
}

.fade-in-left {
    opacity: 0; /* Initially, make the element invisible */
    transform: translateX(-150%); /* Move the element 100% to the left */
    animation: fadeInLeft 1s ease forwards; /* Apply the animation */
}

@keyframes fadeInLeft {
    to {
        opacity: 1; /* At the end of the animation, make the element fully visible */
        transform: translateX(0); /* Reset the horizontal position */
    }
}


.circle {
    width: 150px;
    height: 150px;
    background-color: #3498db;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.text {
    font-size: 24px;
    color: #fff;
    text-align: center;
}







/*https://codepen.io/team/keyframers/pen/RwKoMmb*/

/*@import url("https://fonts.googleapis.com/css2?family=Prata&display=swap");*/



/*.iframely-embed {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 50;
    background: white;
}*/

/*#app {
    z-index: 100;
}*/

    /*#app:hover {
        opacity: 0.5;
    }*/

/*#app {
    display: grid;
    grid-template-columns: 1fr 2fr;
    align-items: center;
    padding-bottom: 4vmin;
    height: 90vh;
    width: 100%;
    background: #ede8e2;
    color: #3a3535;
}


.title {
    padding-left: 1em;
    grid-column: 1/-1;
    grid-row: 1;
    font-family: "Prata", serif;
    font-size: 8vw;
    width: 100%;
    z-index: 2;
}

    .title > .title-inner {
        display: inline-block;
    }

@-webkit-keyframes text-clip {
    from {
        -webkit-clip-path: polygon(0% 100%, 100% 100%, 100% 100%, 0% 100%);
        clip-path: polygon(0% 100%, 100% 100%, 100% 100%, 0% 100%);
    }

    to {
        -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    }
}

@keyframes text-clip {
    from {
        -webkit-clip-path: polygon(0% 100%, 100% 100%, 100% 100%, 0% 100%);
        clip-path: polygon(0% 100%, 100% 100%, 100% 100%, 0% 100%);
    }

    to {
        -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    }
}

@-webkit-keyframes outer-left {
    from {
        transform: translateX(50%);
    }

    to {
        transform: none;
    }
}

@keyframes outer-left {
    from {
        transform: translateX(50%);
    }

    to {
        transform: none;
    }
}

@-webkit-keyframes inner-left {
    from {
        transform: translateX(-50%);
    }

    to {
        transform: none;
    }
}

@keyframes inner-left {
    from {
        transform: translateX(-50%);
    }

    to {
        transform: none;
    }
}

.cafe,
.mozart {
    -webkit-animation: outer-left 1s 1s cubic-bezier(0.5, 0, 0.1, 1) both;
    animation: outer-left 1s 1s cubic-bezier(0.5, 0, 0.1, 1) both;
}

.title-inner {
    display: inline-block;
    -webkit-animation: inner-left 1s 1s ease both;
    animation: inner-left 1s 1s ease both;
}

.cafe-inner {
    display: inline-block;
    -webkit-animation: inner-left 1s 1s ease both, text-clip 1s 0s cubic-bezier(0.5, 0, 0.1, 1) both;
    animation: inner-left 1s 1s ease both, text-clip 1s 0s cubic-bezier(0.5, 0, 0.1, 1) both;
}

.mozart-inner {
    -webkit-animation: text-clip 1s 0s cubic-bezier(0.5, 0, 0.1, 1) both;
    animation: text-clip 1s 0s cubic-bezier(0.5, 0, 0.1, 1) both;
}

.title {
    -webkit-animation: outer-left 1s 1s ease both;
    animation: outer-left 1s 1s ease both;
}

.cafe > .cafe-inner {
    display: inline-block;
}

.mozart {
    display: inline-block;
}

.image {
    grid-row: 1;
    grid-column: 2;
    margin-left: -2rem;
    opacity: 0.7;
    -webkit-animation: image-in 1s cubic-bezier(0.5, 0, 0.1, 1) 2s backwards;
    animation: image-in 1s cubic-bezier(0.5, 0, 0.1, 1) 2s backwards;
}

@-webkit-keyframes image-in {
    from {
        -webkit-clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
        clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
    }

    to {
        -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    }
}

@keyframes image-in {
    from {
        -webkit-clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
        clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
    }

    to {
        -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    }
}

.image img {
    display: block;
    width: 100%;
    height: auto;
}*/

/*body:active * {
    -webkit-animation: none !important;
    animation: none !important;
}*/