.geography {
    height: 680px;
    min-width: auto;
    position: relative;
    z-index: 0
}

.geography::after,
.geography::before {
    content: '';
    display: block;
    width: 100%;
    height: 70px;
    background-image: -webkit-gradient(linear, left bottom, left top, from(rgba(255, 255, 255, 0)), to(#fff));
    background-image: linear-gradient(0deg, rgba(255, 255, 255, 0), #fff);
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    pointer-events: none
}

.geography::after {
    background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0)), to(#fff));
    background-image: linear-gradient(180deg, rgba(255, 255, 255, 0), #fff);
    top: auto;
    bottom: 0
}

.geography__content {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    pointer-events: none
}

.geography__content::before {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    background-image: url(/static/images/texture.png);
    background-position: 0 0;
    opacity: .7;
    position: absolute;
    top: 0;
    left: 0
}

.geography__container {
    width: 100%;
    height: 100%
}

.geography__box {
    pointer-events: all;
    width: 550px;
    position: absolute;
    top: 70px;
    right: 100px
}

.geography__inner {
    height: 100%;
    width: 100%;
    padding: 35px 40px;
    background-color: #FFFCF3;
    -webkit-box-shadow: 0 8px 40px rgba(0, 51, 51, .25);
    box-shadow: 0 8px 40px rgba(0, 51, 51, .25);
    border-radius: 20px;
    position: relative
}
.geography__text p {
    font-size: 14px;
}

.geography__inner::before {
    content: '';
    display: block;
    width: 100%;
    height: 110px;
    background-image: url(/static/images/cat-shadow.png);
    background-repeat: no-repeat;
    background-position: 50% 50%;
    background-size: contain;
    position: absolute;
    top: calc(100% - 30px);
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    z-index: -1;
    opacity: .25;
    pointer-events: none
}

.geography__inner::after {
    content: '';
    display: block;
    border: 14px solid #FFFCF3;
    border-left: 11px solid transparent;
    border-right: 11px solid transparent;
    border-bottom-color: transparent;
    position: absolute;
    top: 100%;
    left: calc(50% - 7px)
}

@media (max-width:767px) {
    .geography__box {
        width: fit-content;
        right: 10px;
        left: 10px;
        bottom: 10px;
        top: auto;
        z-index: 2;
    }
    .geography__inner {
        padding: 15px 30px;
    }
    .geography__title {
        font-size: 20px;
    }
    .geography__text p {
        font-size: 12px;
        line-height: 1.5;
    }
    .geography {
        height: 800px;
    }
    .geography__inner::after {
        top: -26px;
        transform: rotateX(180deg);
    }
    /* .geography {
        padding-top: 30em;
    }
    .geography::before {
        top: 28em;
    } */


}
