/*
* Prefixed by https://autoprefixer.github.io
* PostCSS: v8.4.14,
* Autoprefixer: v10.4.7
* Browsers: last 4 version
*/

body[data-pagetype='home'] {
    background: var(--primary);
}
audio#environmentAudio {
    position: fixed;
    z-index: 5;
    visibility: hidden;
    opacity: 0;
    top: 0;
    left: 0;
}
.gm-style .gm-style-iw-d {
    padding-right: 1.5rem;
    padding-top: 1.2rem;
    padding-left: 0;
}
.gm-style .gm-style-iw-d h3 {
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
}
.gm-style .gm-style-iw-d h4 {
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 1rem;
}
.gm-style .gm-style-iw-d a {
    display: block;
}
.gm-style .gm-style-iw-c button.gm-ui-hover-effect {
    top: 0 !important;
    right: 0 !important;
}
/*============FLIP CARD=============*/
.flip-card {
    background-color: transparent;
    width: 100%;
    -webkit-perspective: 1000px;
    perspective: 1000px; /* Remove this if you don't want the 3D effect */
    cursor: pointer;
}
/* This container is needed to position the front and back side */
.flip-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    -webkit-transition: -webkit-transform 0.8s;
    transition: -webkit-transform 0.8s;
    -o-transition: transform 0.8s;
    transition: transform 0.8s;
    transition: transform 0.8s, -webkit-transform 0.8s;
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;
}

/* Do an horizontal flip when you move the mouse over the flip box container */
.flip-card:hover .flip-card-inner {
    -webkit-transform: rotateY(180deg);
    transform: rotateY(180deg);
}

/* Position the front and back side */
.flip-card-front, .flip-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    top: 0;
    -webkit-box-shadow: 0 4px 12px 0 rgba(0, 0, 0, 0.10);
    box-shadow: 0 4px 12px 0 rgba(0, 0, 0, 0.10);
    padding: 1rem;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

/* Style the front side (fallback if image is missing) */
.flip-card-front {
    position: relative;
}

/* Style the back side */
.flip-card-back {
    -webkit-transform: rotateY(180deg);
    transform: rotateY(180deg);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background-color: rgb(225 221 209);
}

.flip-card-front::before,.flip-card-back::before {
    content: '';
    position: absolute;
    /*background-image: url(../img/sample/old-frame.png);*/
    background-image: url(../img/sample/old-frame-01.png);
    width: 100%;
    height: 100%;
    background-size: cover;
    top: 0;
    left: 0;
}
.flip-card-back p {
    line-height: 1.9;
    font-size: .875rem;
    text-align: center;
}
.flip-card.turn .flip-card-inner {
    -webkit-transform: rotateY(180deg);
    transform: rotateY(180deg);
}
/*============FLIP CARD=============*/
/*============MODAL=============*/
#modalZoom {
    position: fixed;
    width: 100%;
    height: 100vh;
    top: 0;
    left: 0;
    z-index: 100;
    background-color: var(--lightBrown);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    pointer-events: none;
    -webkit-transition: all ease-in-out .4s;
    -o-transition: all ease-in-out .4s;
    transition: all ease-in-out .4s;
    opacity: 0;
}
#modalZoom::before{
    content: '';
    background-image: url(../img/sample/overlay-texture.webp);
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    mix-blend-mode: hard-light;
    background-size: contain;
}
#modalZoom .modalZoomGallery {
    position: relative;
    width: 30vw;
    max-height: 80vh;
}
#modalZoom #closeModal {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    cursor: pointer;
}
#modalZoom #closeModal img {
    width: 2rem;
}
#modalZoom .modalZoomGallery img {
    height: auto;
}
body.op-modal #modalZoom {
    opacity: 1;
    pointer-events: auto;
}
#modalZoom .modalZoomGallery.zoom {
    background-position: 50% 50%;
    position: relative;
    overflow: hidden;
    cursor: -webkit-zoom-in;
    cursor: zoom-in;
}
#modalZoom .modalZoomGallery.zoom img:hover {
    opacity: 0;
}
#modalZoom .modalZoomGallery.zoom img {
    -webkit-transition: opacity 0.2s;
    -o-transition: opacity 0.2s;
    transition: opacity 0.2s;
    display: block;
    width: 100%;
}
#modalZoom .modalZoomGallery.touching img{
    opacity: 0;
}
#modalZoom .modalZoomGallery.mobile img{
    pointer-events: none;
}
#modalZoom .modalZoomGallery.mobile {
    height: 80vh;
}
#modalZoom .modalZoomGallery.mobile img {
    height: 100%;
    -o-object-fit: contain;
    object-fit: contain;
}
/*============MODAL=============*/
/*============branch-wrapper==============*/
section.branch-wrapper {
    width: 100%;
    height: 100vh;
    background-color: var(--primary);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1;
}
main.homeWrapper {
    margin-top: 100vh;
    /* background: rgb(202,225,229); */
    background: -o-linear-gradient(top, rgba(202,225,229,1) 0%, rgba(207,226,229,1) 10%, rgba(211,226,229,1) 20%, rgba(215,227,229,1) 30%, rgba(215,227,229,1) 40%, rgba(218,227,229,1) 50%, rgba(220,228,229,1) 60%, rgba(220,228,229,1) 70%, rgba(222,228,229,1) 80%, rgba(224,228,229,1) 90%, rgba(227,229,229,1) 100%);
    /* background: -webkit-gradient(linear, left top, left bottom, from(rgba(202,225,229,1)), color-stop(10%, rgba(207,226,229,1)), color-stop(20%, rgba(211,226,229,1)), color-stop(30%, rgba(215,227,229,1)), color-stop(40%, rgba(215,227,229,1)), color-stop(50%, rgba(218,227,229,1)), color-stop(60%, rgba(220,228,229,1)), color-stop(70%, rgba(220,228,229,1)), color-stop(80%, rgba(222,228,229,1)), color-stop(90%, rgba(224,228,229,1)), to(rgba(227,229,229,1))); */
    /* background: linear-gradient(180deg, rgba(202,225,229,1) 0%, rgba(207,226,229,1) 10%, rgba(211,226,229,1) 20%, rgba(215,227,229,1) 30%, rgba(215,227,229,1) 40%, rgba(218,227,229,1) 50%, rgba(220,228,229,1) 60%, rgba(220,228,229,1) 70%, rgba(222,228,229,1) 80%, rgba(224,228,229,1) 90%, rgba(227,229,229,1) 100%); */
    position: relative;
    z-index: 2;
    background-color: var(--primary);
}
main.homeWrapper::before {
    content:'';
    background-image: url(../img/sample/overlay-texture.webp);
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    mix-blend-mode: difference;
    background-size: contain;
    opacity: .4;
}
section.branch-wrapper .branch-container .branch-items {
    width: 100%;
}
section.branch-wrapper .branch-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    row-gap: 3rem;
    width: 100%;
    height: 100%;
}
section.branch-wrapper h2.text {
    text-align: center;
    font-size: 9.875rem;
    font-weight: 700;
    margin: 0;
    background-repeat: repeat;
    background-size: contain;
    background-position: center;
    color: var(--brown);
    background-clip: text;
    -webkit-background-clip: text;
    position: absolute;
    left: 50%;
    background: url(../img/texture.webp);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: rgba(96, 45, 44, .55);
    mix-blend-mode: multiply;
}
section.branch-wrapper .branch-container .change_titles_items {
    position: relative;
    height: 12rem;
    width: 100%;
}
section.branch-wrapper .background-media {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 0;
}
section.branch-wrapper .background-media:before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--primary);
    z-index: 1;
    opacity: .9;
}
section.branch-wrapper .background-media > * {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}


section.branch-wrapper.desktop .branch-items .swiper-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-column-gap: 4.5rem;
    -moz-column-gap: 4.5rem;
    column-gap: 4.5rem;
    width: 100%;
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
}
section.branch-wrapper.desktop .branch-items .swiper-wrapper .swiper-slide {
    width: calc(100% / 6 - 4.5rem* 5 / 6);
}
section.branch-wrapper.desktop .branch-items {
    overflow: visible;
}
section.branch-wrapper .branch-items .branch-item .branch-media .branch-media-wrap {
    position: relative;
    width: 100%;
    height: 100%;
}
section.branch-wrapper .branch-items .branch-item .branch-media .branch-info-wrap {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(249,232,213,.85);
    text-align: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    font-size: 0.75rem;
    padding: 1rem;
    line-height: normal;
    -webkit-transition: all ease-in-out .4s;
    -o-transition: all ease-in-out .4s;
    transition: all ease-in-out .4s;
    pointer-events: none;
    -webkit-transform: translateY(100%);
    -ms-transform: translateY(100%);
    transform: translateY(100%);
}
section.branch-wrapper .branch-items .branch-item .branch-media .branch-info-wrap p{
    color: var(--brown);
}
section.branch-wrapper .branch-items .branch-item:hover .branch-media {
    outline: 5px solid rgba(255, 255, 255, 0.28);
}
section.branch-wrapper .branch-items .branch-item:hover .branch-media .branch-info-wrap {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
    pointer-events: auto;
}
section.branch-wrapper .branch-items .branch-item .branch-media {
    width: 100%;
    height: 16rem;
    border-radius: 5.75rem 5.75rem 0 0;
    overflow: hidden;
    outline: 5px solid rgba(56, 56, 56, 0.30);
    position: relative;
    -webkit-transition: all ease-in-out .4s;
    -o-transition: all ease-in-out .4s;
    transition: all ease-in-out .4s;
}

section.branch-wrapper .branch-items .branch-item .branch-media .branch-media-wrap img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -webkit-transition: all ease-in-out 0.4s;
    -o-transition: all ease-in-out 0.4s;
    transition: all ease-in-out 0.4s;
    -webkit-filter: grayscale(1);
    filter: grayscale(1);
}
section.branch-wrapper .branch-items .branch-item:hover .branch-media .branch-media-wrap img {
    -webkit-transform: scale(1.16);
    -ms-transform: scale(1.16);
    transform: scale(1.16);
}
section.branch-wrapper .branch-items .branch-item {
    position: relative;
    width: 100%;
    display: block;
}

section.branch-wrapper .branch-items .branch-item .branch-info > * {
    color: var(--brown);
    text-align: center;
    font-size: 1rem;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    margin: 1rem auto;
    -webkit-transition: all ease-in-out 0.3s;
    -o-transition: all ease-in-out 0.3s;
    transition: all ease-in-out 0.3s;
}
section.branch-wrapper .branch-items .branch-item:hover .branch-media > * {
}

section.branch-wrapper .branch-items .branch-item:hover .branch-info > * {
    opacity: .5;
}
/*============branch-wrapper==============*/
/*============branch-wrapper==============*/
/*section.year-content {*/
/*    height: 100vh;*/
/*    position: relative;*/
/*}*/

/*section.year-content .slowScroll-container{*/
/*    height: 100vh;*/
/*    z-index: 1;*/
/*    display: flex;*/
/*    flex-direction: column;*/
/*    justify-content: center;*/
/*    align-items: center;*/
/*}*/

/*section.year-content .fastScroll-container{*/
/*    background-color: darkolivegreen;*/
/*    height: 600vh; !* Just an example height for the second div *!*/
/*    position: absolute;*/
/*    width: 100%;*/
/*    top: 0;*/
/*    left: 0;*/
/*}*/

.year-content {
    /* height: 100vh; */
    overflow: hidden;
    position: relative;
}

.slowScroll-container {
    height: 100vh;
    overflow-y: scroll;
    scroll-behavior: smooth;
}

.fastScroll-container {
    background-color: darkolivegreen;
    height: 600vh; /* Just an example height for the second div */
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
}
/*================latestActivities=================*/
.latestActivitiesContainer .slowScroll-container {
    width: 24vw;
    overflow: hidden;
    position: absolute;
    top: 14rem;
    left: 50%;
    text-align: center;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    height: auto;
    mix-blend-mode: difference;
    z-index: 1;
}
.latestActivitiesContainer .slowScroll-container h2.title {
    font-size: 1.75rem;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    margin-bottom: 5rem;
    color: #a4d4db;
    -webkit-transition: all ease-in-out 1s;
    -o-transition: all ease-in-out 1s;
    transition: all ease-in-out 1s;
}

.latestActivitiesContainer .slowScroll-container p.des {
    font-size: 0.875rem;
    font-style: normal;
    font-weight: 500;
    line-height: 1.7;
    color: #a4d4db;
    -webkit-transition: all ease-in-out 1s;
    -o-transition: all ease-in-out 1s;
    transition: all ease-in-out 1s;
}
.year-content::before {
    content: '';
    background-image: url(../img/sample/overlay-texture.webp);
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    mix-blend-mode: difference;
    background-size: contain;
    opacity: .4;
    opacity: 0;
}
.latestActivitiesContainer .latestActivitiesWrapper {
    position: relative;
    width: 100%;
    height: 100vh;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}
.latestActivitiesContainer .slowScroll-container.enter p.des,
.latestActivitiesContainer .slowScroll-container.enter h2.title,
.latestActivitiesContainer .slowScroll-container.enterTwo h2.title,
.latestActivitiesContainer .slowScroll-container.enterTwo p.des {
    opacity: 0;
    -webkit-transition-duration: .3s;
    -o-transition-duration: .3s;
    transition-duration: .3s;
}
.latestActivitiesContainer {}
.latestActivitiesContainer .latestActivitiesWrapper .latestActivitiesWrap {width: 20vw;-webkit-box-sizing: border-box;box-sizing: border-box;}
.latestActivitiesContainer .latestActivitiesWrapper .latestActivitiesWrap .media {
    position: relative;
    width: 100%;
    height: calc(20vw - 2rem);
    margin-bottom: 1rem;
    border: 1px solid #F0F0F0;
    background: -o-linear-gradient(bottom, #FFF 0%, #FFF 100%);
    background: -webkit-gradient(linear, left bottom, left top, from(#FFF), to(#FFF));
    background: linear-gradient(0deg, #FFF 0%, #FFF 100%);
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    overflow: hidden;
}

.latestActivitiesContainer .latestActivitiesWrapper .latestActivitiesWrap .media > * {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50% , -50%);
    -ms-transform: translate(-50% , -50%);
    transform: translate(-50% , -50%);
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;
    opacity: 1;
    will-change: transform;
    width: 120%;
    height: 120%;
    -o-object-fit: cover;
    object-fit: cover;
}

.latestActivitiesContainer .latestActivitiesWrapper .latestActivitiesWrap:first-child {
    margin-top: 11rem;
}

.latestActivitiesContainer .latestActivitiesWrapper .latestActivitiesWrap .info p.name,.latestActivitiesContainer .latestActivitiesWrapper .latestActivitiesObjectWrap.oldFrame .info p.name {
    font-weight: 500;
    margin-bottom: .5rem;
    font-size: 0.82544rem;
}

.latestActivitiesContainer .latestActivitiesWrapper .latestActivitiesWrap .info p.location,.latestActivitiesContainer .latestActivitiesWrapper .latestActivitiesObjectWrap.oldFrame .info p.location {
    font-weight: 500;
    font-size: 0.70756rem;
    opacity: 0.8;
}
.latestActivitiesContainer .latestActivitiesWrapper .latestActivitiesWrap.logo .media {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.latestActivitiesContainer .latestActivitiesWrapper .latestActivitiesWrap.logo .media img {
    width: 7.76619rem;
    height: auto;
}
.latestActivitiesContainer .latestActivitiesWrapper.section3 {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
}

.latestActivitiesContainer .latestActivitiesWrapper.section3 p.hugeTitle {
    position: absolute;
    z-index: 0;
    font-size: 9vw;
    font-style: normal;
    font-weight: 700;
    left: 50%;
    top: 50%;
    width: 100%;
    text-align: center;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    background: url(../img/texture.webp);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: rgba(96,45,44,.55);
    mix-blend-mode: multiply;
    background-size: contain;
}

.latestActivitiesContainer .latestActivitiesWrapper .latestActivitiesObjectWrap {
    position: absolute;
}

.latestActivitiesContainer .latestActivitiesWrapper .latestActivitiesObjectWrap.oldFrame {
    position: relative;
    width: 13vw;
    margin-top: 3rem;
    -webkit-animation: float1 6s ease-in-out infinite;
    animation: float1 6s ease-in-out infinite;
}
.latestActivitiesContainer .latestActivitiesWrapper .latestActivitiesObjectWrap.oldFrame .flip-card-back p {
    font-size: .75rem;
}
.latestActivitiesContainer .latestActivitiesWrapper .latestActivitiesObjectWrap:nth-of-type(2) {
    z-index: 1;
    right: 12vw;
    top: 50%;
    -webkit-transform: translateY(-7%);
    -ms-transform: translateY(-7%);
    transform: translateY(-7%);
}
.latestActivitiesContainer .latestActivitiesWrapper .latestActivitiesObjectWrap:nth-of-type(3) {
    left: 4rem;
    top: 16rem;
}
.latestActivitiesContainer .latestActivitiesWrapper .latestActivitiesObjectWrap:nth-of-type(4) {
    left: 32rem;
    bottom: 9rem;
}
.latestActivitiesContainer .latestActivitiesWrapper .latestActivitiesObjectWrap:nth-of-type(5) {
    left: 19rem;
    bottom: 5rem;
    width: 10vw;
}
.latestActivitiesContainer .latestActivitiesWrapper .latestActivitiesObjectWrap:nth-of-type(2) img {
    width: 12.1875rem;
    height: auto;
    -webkit-animation: float1 6s ease-in-out infinite;
    animation: float1 6s ease-in-out infinite;
}
.latestActivitiesContainer .latestActivitiesWrapper .latestActivitiesObjectWrap.oldFrame .media {
    position: relative;
    width: 100%;
    margin-bottom: .81rem;
}
.latestActivitiesContainer .latestActivitiesWrapper .latestActivitiesObjectWrap.oldFrame .media > * {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}
.latestActivitiesContainer .latestActivitiesWrapper .latestActivitiesLastSection {
    position: relative;
    width: 100%;
    height: 100%;
}
.latestActivitiesContainer .latestActivitiesWrapper .latestActivitiesLastSection .videoWrapper {
    width: calc(100% - var(--spaceXX)*2);
    margin: 0 auto;
    height: 59vh;
}
.latestActivitiesContainer .latestActivitiesWrapper .latestActivitiesLastSection .videoWrapper video,.latestActivitiesContainer .latestActivitiesWrapper .latestActivitiesLastSection .videoWrapper img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}
.latestActivitiesContainer .latestActivitiesWrapper .latestActivitiesObjectWrapper {
    position: relative;
    width: 100%;
    height: 100%;
}
.latestActivitiesContainer .latestActivitiesWrapper .latestActivitiesLastSection .latestActivitiesLastInfo {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    position: absolute;
    bottom: 5rem;
     mix-blend-mode: difference;
    width: 100%;
}
.latestActivitiesContainer .latestActivitiesWrapper .latestActivitiesLastSection .latestActivitiesLastInfo h3 {
    margin: 0;
    font-size: 1.75rem;
    font-style: normal;
    font-weight: 700;
    color: var(--white);
}
.latestActivitiesContainer .latestActivitiesWrapper .latestActivitiesLastSection .latestActivitiesLastInfo .content-wrap {
    width: 30%;
}
.latestActivitiesContainer .latestActivitiesWrapper .latestActivitiesLastSection .latestActivitiesLastInfo .content-wrap p {
    font-size: 1.5rem;
    font-style: normal;
    font-weight: 400;
    line-height: 1.7;
    color: #fff;
}
.latestActivitiesContainer .pin-spacer {
    mix-blend-mode: difference;
}
@-webkit-keyframes float1{
    0% {
        -webkit-transform: translateY(0px);
        transform: translateY(0px);
    }
    50% {
        -webkit-transform: translateY(-20px);
        transform: translateY(-20px);
    }
    100% {
        -webkit-transform: translateY(0px);
        transform: translateY(0px);
    }
}
@keyframes float1{
    0% {
        -webkit-transform: translateY(0px);
        transform: translateY(0px);
    }
    50% {
        -webkit-transform: translateY(-20px);
        transform: translateY(-20px);
    }
    100% {
        -webkit-transform: translateY(0px);
        transform: translateY(0px);
    }
}
@-webkit-keyframes float2{
    0% {
        -webkit-transform: translateX(0px);
        transform: translateX(0px);
    }
    50% {
        -webkit-transform: translateX(20px);
        transform: translateX(20px);
    }
    100% {
        -webkit-transform: translateX(0px);
        transform: translateX(0px);
    }
}
@keyframes float2{
    0% {
        -webkit-transform: translateX(0px);
        transform: translateX(0px);
    }
    50% {
        -webkit-transform: translateX(20px);
        transform: translateX(20px);
    }
    100% {
        -webkit-transform: translateX(0px);
        transform: translateX(0px);
    }
}
.latestActivitiesContainer .latestActivitiesWrapper .latestActivitiesObjectWrap:nth-of-type(3) img {
    -webkit-animation: float2 6s ease-in-out infinite;
    animation: float2 6s ease-in-out infinite;
}

.latestActivitiesContainer .latestActivitiesWrapper .latestActivitiesObjectWrap:nth-of-type(4) img {
    -webkit-animation: float1 6s ease-in-out infinite;
    animation: float1 6s ease-in-out infinite;
}

.latestActivitiesContainer .latestActivitiesWrapper .latestActivitiesObjectWrap:nth-of-type(5) img {
    -webkit-animation: float2 6s ease-in-out infinite;
    animation: float2 6s ease-in-out infinite;
    width: 100%;
}
.latestActivitiesContainer .latestActivitiesWrapper .latestActivitiesObjectWrap:nth-of-type(1) img {
    -webkit-animation: float2 6s ease-in-out infinite;
    animation: float2 6s ease-in-out infinite;
    width: 100%;
    height: auto;
}

.latestActivitiesContainer .latestActivitiesWrapper .latestActivitiesObjectWrap:nth-of-type(1) {
    top: 7rem;
}
/*================latestActivities=================*/
/*==================MAP BRANCHES===================*/
section.branchMapContainer {
    position: relative;
    width: 100%;
    height: 100vh;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
}
section.branchMapContainer .mapContainer {
    height: 5vw;
    position: absolute;
    width: 5vw;
    top: 50%;
    left: 50%;
    z-index: 0;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}
section.branchMapContainer .mapContainer.mobile {
    width: 100%;
    height: 100%;
}
section.branchMapContainer .mapContainer #map {
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 0;
}
section.branchMapContainer .mapContainer img.map {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    -o-object-fit: cover;
    object-fit: cover;
}
section.branchMapContainer h2 {
    margin: 0 0 1.5rem 2.5rem;
    font-size: 3.96131rem;
    font-style: normal;
    font-weight: 700;
    color: var(--primary);
    position: relative;
    z-index: 1;
}
section.branchMapContainer .airplane {
    position: absolute;
    z-index: 2;
    bottom: 2rem;
}

section.branchMapContainer .airplane.one {
    right: var(--spaceX);
}

section.branchMapContainer .airplane.two {
    left: var(--spaceX);
}

section.branchMapContainer .airplane.two > img {
    -webkit-transform: scaleX(-1);
    -ms-transform: scaleX(-1);
    transform: scaleX(-1);
    cursor: pointer;
}

section.branchMapContainer .airplane .modal-airplane {
    position: absolute;
    top: 0;
    background-color: var(--lightBrown);
    font-size: .7rem;
    padding: .5rem 1.75rem .75rem .75rem;
    width: 9vw;
    -webkit-transform: translateY(-115%);
    -ms-transform: translateY(-115%);
    transform: translateY(-115%);
    -webkit-transition: all ease-in-out .35s;
    -o-transition: all ease-in-out .35s;
    transition: all ease-in-out .35s;
    opacity: 0;
    pointer-events: none;
}
section.branchMapContainer .airplane .modal-airplane .close-modal {
    position: absolute;
    right: 0.5rem;
    top: 0.5rem;
    z-index: 1;
    cursor: pointer;
}

section.branchMapContainer .airplane .modal-airplane .close-modal img {
    width: .75rem;
}

section.branchMapContainer .airplane .modal-airplane .modal-text {
    line-height: 1.6;
}

section.branchMapContainer .airplane > img {
    cursor: pointer;
}

section.branchMapContainer .airplane.two .modal-airplane {
    left: 0;
}
section.branchMapContainer .airplane .modal-airplane.show {
    opacity: 1;
    pointer-events: auto;
}
/*==================MAP BRANCHES===================*/
/*==================HISTORY===================*/
.historyContainer {
    position: relative;
    width: 100%;
    display: block;
    overflow: hidden;
}
.historyContainer::before,section.branchMapContainer::before{
    content: '';
    background-image: url(../img/sample/overlay-texture.webp);
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    mix-blend-mode: difference;
    background-size: contain;
    opacity: .4;
    opacity: 0;
}
.historyContainer .scrollFixContainer {
    width: 24vw;
    overflow: hidden;
    position: absolute;
    top: 11rem;
    left: 50%;
    text-align: center;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    height: auto;
    z-index: 1;
}
.historyContainer .scrollFixContainer h2 {
    font-size: 1.75rem;
    font-style: normal;
    font-weight: 700;
    margin: 0;
    color: var(--brown);
}
.historyContainer section.historyWrapper {
    position: relative;
    width: 100%;
    height: 100vh;
    z-index: 0;
}

.historyContainer section.historyWrapper .historyWrap {
    position: relative;
    width: 100%;
    height: 100%;
}

.historyContainer section.historyWrapper.section1 .historyWrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.historyContainer section.historyWrapper .historyWrap .oldFrameWrap {
    position: relative;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.historyContainer section.historyWrapper.section1 .historyWrap .oldFrameWrap {
    position: absolute;
}

.historyContainer section.historyWrapper .historyWrap .oldFrameWrap .media {
    width: 100%;
    position: relative;
    overflow: hidden;
    margin-bottom: .65rem;
}

.historyContainer section.historyWrapper .historyWrap .oldFrameWrap .media img {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50% , -50%);
    -ms-transform: translate(-50% , -50%);
    transform: translate(-50% , -50%);
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;
    opacity: 1;
    will-change: transform;
    width: 120%;
    height: 120%;
    -o-object-fit: cover;
    object-fit: cover;
}
.historyContainer section.historyWrapper .historyWrap .oldFrameWrap .info p.name {
    font-size: 0.82544rem;
    font-style: normal;
    font-weight: 500;
    margin-bottom: .5rem;
}
.historyContainer section.historyWrapper .historyWrap .oldFrameWrap .info p.location {
    font-size: 0.70756rem;
    font-style: normal;
    font-weight: 500;
}
.historyContainer section.historyWrapper.section1 .historyWrap .oldFrameWrap:nth-of-type(1) {
    right: 0;
    top: 5rem;
    width: 17vw;
}
.historyContainer section.historyWrapper.section1 .historyWrap .oldFrameWrap:nth-of-type(2) {
    left: calc(var(--spaceXX));
    top: -1rem;
    width: 16vw;
}
.historyContainer section.historyWrapper.section1 .historyWrap .oldFrameWrap:nth-of-type(3) {
    right: 5rem;
    bottom: 5rem;
    width: 17vw;
}
.historyContainer section.historyWrapper.section1 .historyWrap .oldFrameWrap:nth-of-type(4) {
    left: 0;
    bottom: 6rem;
    width: 18vw;
}
.historyContainer section.historyWrapper.section1 .historyWrap p.title_item {
    font-size: 5.5rem;
    width: 54%;
    position: relative;
    z-index: 1;
    font-weight: 400;
    background: url(../img/texture.webp);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: rgba(96,45,44,.55);
    mix-blend-mode: multiply;
    text-align: center;
    margin-top: 7rem;
    background-size: cover;
}
.historyContainer section.historyWrapper.section1 .historyWrap p.title_item strong {
    display: contents;
}
.historyContainer section.historyWrapper .historyWrap .oldFrameWrap .media::before{
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: url(../img/sample/overlay-texture.webp);
    top: 0;
    left: 0;
    background-size: contain;
    z-index: -1;
}
.historyContainer .pin-spacer {
    mix-blend-mode: difference;
    pointer-events: none;
}
.historyContainer section.historyWrapper .historyWrap {
    position: relative;
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 10rem 1fr 10rem 1fr;
    grid-template-columns: 1fr 1fr 1fr;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    grid-gap: 10rem;
}

.historyContainer section.historyWrapper .history-year {
    position: absolute;
    left: 50%;
    -webkit-transform: translate(-50%,100%);
    -ms-transform: translate(-50%,100%);
    transform: translate(-50%,100%);
    bottom: 0;
    mix-blend-mode: multiply;
    padding-bottom: 87px;
    pointer-events: none;
}
.historyContainer section.historyWrapper .historyWrap .history-column-wrap > .description {
    font-size: 0.85rem;
    font-style: normal;
    font-weight: 400;
    line-height: 1.7;
    margin-bottom: 3rem;
}
.historyContainer section.historyWrapper .historyWrap .history-column-wrap .oldFrameWrap.oldMap .media {
    height: 25vh !important;
    margin: 0;
}
.historyContainer section.historyWrapper .historyWrap .history-column-wrap .oldFrameWrap.oldMap .media img {
    width: 102%;
    height: 102%;
}
.historyContainer section.historyWrapper .historyWrap .history-column-wrap.text {
    position: relative;
    padding: 59px 2rem;
    line-height: 1.5;
}
.historyContainer section.historyWrapper .historyWrap .history-column-wrap.text::before,.historyContainer section.historyWrapper .historyWrap.historyWrapperFourth .historyWrapFourth .historyWrapFourthText::before{
    content: '';
    position: absolute;
    background-image: url(../img/sample/line-rect.svg);
    width: 100%;
    height: 100%;
    background-size: contain;
    top: 50%;
    left: 0;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    background-repeat: no-repeat;
    background-position: center;
}
.historyContainer section.historyWrapper .historyWrap .history-column-wrap.text .text-item,.historyContainer section.historyWrapper .historyWrap.historyWrapperFourth .historyWrapFourth .historyWrapFourthText .text-item {
    font-size: 1.875rem;
    line-height: 1.5;
    background: url(../img/texture.webp);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: rgba(96,45,44,.55);
    padding-right: 2rem;
    background-size: contain;
}
.historyContainer section.historyWrapper .historyWrap .history-column-wrap.text .text-item strong,.historyContainer section.historyWrapper .historyWrap.historyWrapperFourth .historyWrapFourth .historyWrapFourthText .text-item strong {
    display: contents;
}
.historyContainer section.historyWrapper .history-year span {
    font-size: 14.75rem;
    font-weight: 800;
    /*line-height: 14.75rem;*/
    display: block;
    background: url(../img/sample/overlay-texture.webp);
    background-clip: text;
    -webkit-background-clip: text;
    text-align: center;
    /* background-size: cover; */
    -webkit-text-fill-color: rgba(96, 45, 44, .55);
    background-size: contain;
    font-family: var(--abarFontNu);
}
.historyContainer .historyWrapper.section3 {
    -webkit-transition: all ease-in-out 1s;
    -o-transition: all ease-in-out 1s;
    transition: all ease-in-out 1s;
    position: relative;
}
.historyContainer .historyWrapper.section3::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-image: url("../img/texture.webp");
    mix-blend-mode: overlay;
    background-size: contain;
    opacity: 0;
    -webkit-transition: all ease-in-out 1s;
    -o-transition: all ease-in-out 1s;
    transition: all ease-in-out 1s;
}
.historyContainer .historyWrapper.section3.enter::before {
    opacity: .25;
}
.historyContainer .historyWrapper.section3.enter {
    background-color: var(--backColorDark);
}
.historyContainer section.historyWrapper .historyWrap .historyBiographyWrapper {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding-top: 4.5rem;
    height: 100%;
}

.historyContainer .historyWrapper.section3 .historyWrap {
    display: block;
}
.historyContainer section.historyWrapper .historyWrap .historyBiographyWrapper h2 {
    font-size: 3rem;
    font-weight: 400;
    background: url(../img/texture.webp);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-align: center;
    background-size: cover;
}
.historyContainer section.historyWrapper .historyWrap .historyBiographyWrapper .born-death {
    margin: 1.5rem 0;
}
.historyContainer section.historyWrapper .historyWrap .historyBiographyWrapper .born-death p{
    font-size: 1.75rem;
    font-style: normal;
    font-weight: 400;
    background: url(../img/texture.webp);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-align: center;
    background-size: cover;
}
.historyContainer section.historyWrapper .historyWrap .historyBiographyWrapper .oldFrameWrap {
    width: 24vw;
}
.historyContainer section.historyWrapper .historyWrap .historyBiographyWrapper .oldFrameWrap .flip-card-front::after {
    content: '';
    position: absolute;
    width: 1rem;
    height: 10rem;
    background-color: var(--black);
    left: 0;
    top: 0;
    -webkit-transform-origin: center;
    -ms-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate(45deg) translate(-16px, -47px);
    -ms-transform: rotate(45deg) translate(-16px, -47px);
    transform: rotate(45deg) translate(-16px, -47px);
    z-index: 1;
}
.historyContainer section.historyWrapper .historyWrap .historyBiographyWrapper .oldFrameWrap .flip-card-front {
    overflow: hidden;
}
section.historyWrapper.section3 .history-year {
    mix-blend-mode: exclusion;
}
section.historyWrapper.section3 .history-year span {
    -webkit-text-fill-color: rgba(96, 45, 44, .95);
}
.historyContainer section.historyWrapper .historyWrap.historyWrapperFourth .historyWrapFourth .content p {
    font-size: 0.75rem;
    font-style: normal;
    font-weight: 400;
    line-height: 1.6;
}
.historyContainer section.historyWrapper .historyWrap.historyWrapperFourth .historyWrapFourth .content {
    margin-bottom: 3rem;
}
.historyContainer section.historyWrapper .historyWrap.historyWrapperFourth .historyWrapFourth:last-child .oldFrameWrap {
    margin-bottom: 4rem;
}
.historyContainer section.historyWrapper .historyWrap.historyWrapperFourth .historyWrapFourth .historyWrapFourthText {
    position: relative;
    padding: 72px 27px;
}
.historyContainer section.historyWrapper .historyWrap.historyWrapperFourth .historyWrapFourth .historyWrapFourthText::before{
    background-image: url(../img/sample/line-rect-2.svg);
}
.historyContainer section.historyWrapper .historyWrap.historyWrapperFourth .historyWrapFourth.location {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}
.historyContainer section.historyWrapper .historyWrap.historyWrapperFourth .historyWrapFourth.location .location-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 100%;
}
.historyContainer section.historyWrapper .historyWrap.historyWrapperFourth .historyWrapFourth.location .location-wrap .location {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    text-align: center;
    width: 7.125rem;
    height: 7.125rem;
    background-image: url(../img/sample/circle-location.svg);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    position: relative;
}
.historyContainer section.historyWrapper .historyWrap.historyWrapperFourth .historyWrapFourth.location .location-wrap p {
    font-size: 1.875rem;
    font-style: normal;
    font-weight: 400;
    width: 100%;
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    text-align: center;
}
.historyContainer section.historyWrapper .historyWrap.historyWrapperFourth .historyWrapFourth.location .location-wrap .location::before {
    content: '';
    position: absolute;
    width: 1.125rem;
    height: 2.0625rem;
    background-image: url(../img/sample/gis_pin.svg);
    left: 50%;
    top: 0;
    -webkit-transform: translate(-50%, -74%);
    -ms-transform: translate(-50%, -74%);
    transform: translate(-50%, -74%);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}
.historyContainer section.historyWrapper .historyWrap.historyWrapperFifth .airplane {
    position: absolute;
    top: 6rem;
    right: 0;
}
.historyContainer section.historyWrapper .historyWrap.historyWrapperFifth {-ms-grid-columns: 1fr 36rem 1fr;grid-template-columns: 1fr 1fr;grid-gap: 36rem;-webkit-box-align: end;-ms-flex-align: end;align-items: flex-end;padding-bottom: 11rem;}
.historyContainer section.historyWrapper .historyWrap.historyWrapperFifth .historyWrapFifth .content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    row-gap: 1.5rem;
}
.historyContainer section.historyWrapper .historyWrap.historyWrapperFifth .historyWrapFifth .content p {
    font-size: 0.75rem;
    font-style: normal;
    font-weight: 400;
    line-height: 1.8;
}
.historyContainer section.historyWrapper .historyWrap.historyWrapperFifth .oldFrameWrap .info p.name {
    font-size: 1.06613rem;
}
.historyContainer section.historyWrapper .historyWrap.historyWrapperFifth .oldFrameWrap .info p.location {
    font-size: 0.91381rem;
}
.historyContainer section.historyWrapper .historyWrap.historyWrapperFifth .oldFrameWrap .media {
    margin-bottom: .95rem;
}
.historyContainer section.historyWrapper.section5  .history-year {
    padding-bottom: 113px;
}
.oldFilter{
    -webkit-filter: sepia(1) saturate(0.8) brightness(0.9);
    filter: sepia(1) saturate(0.8) brightness(0.9);
}
/*==================HISTORY===================*/
img.noSkewElem{
    width: 100% !important;
    height: 100% !important;
}
@media only screen and (max-width: 768px){
    section.branch-wrapper .branch-container {
        -webkit-box-pack: end;
        -ms-flex-pack: end;
        justify-content: flex-end;
        row-gap: 1rem;
    }
    section.branch-wrapper .branch-container .branch-items{
        position: relative;
        padding-bottom: 45px;
        margin-bottom: 1rem;
    }
    section.branch-wrapper .branch-container .branch-items::before{
        content: '';
        background-image: url("../img/scroll-horizontal.svg");
        width :68px;
        height :24px;
        position: absolute;
        bottom: 0;
        left: 50%;
        -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
        transform: translateX(-50%);
        background-position: center;
        background-repeat: no-repeat;
        background-size: contain;
    }
    main.wrapper.homeWrapper {
        overflow-x: hidden;
    }
    section.branch-wrapper {
        position: relative;
        top: auto;
        left: auto;
        height: 80vh;
    }
    main.homeWrapper {
        margin-top: 0;
    }
    #modalZoom .modalZoomGallery {
        width: calc(100% - var(--spaceXX)*2);
    }
    #modalZoom #closeModal {
        top: var(--spaceXX);
        right: var(--spaceXX);
    }
    #modalZoom #closeModal img {
        width: 1.5rem;
    }
    .gm-style .gm-style-iw-d {
        padding-right: 1rem;
        padding-top: .5rem;
    }

    .gm-style .gm-style-iw-d h3 {
        font-size: 1rem;
        margin-bottom: .75rem;
    }

    .gm-style .gm-style-iw-d h4 {
        font-size: .75rem;
        margin-bottom: .5rem;
        font-weight: 400;
    }

    .gm-style .gm-style-iw-d a {
        font-size: .75rem;
    }
    /*============HERO SECTION=================*/
    section.branch-wrapper h2.text {
        font-size: 4.875rem;
    }
    section.branch-wrapper .branch-container .change_titles_items {
        height: 5rem;
        padding-right: var(--spaceX);
        padding-left: var(--spaceX);
    }
    section.branch-wrapper{
        padding: 0;
    }
    section.branch-wrapper .branch-items .branch-item .branch-media {
        height: 14rem;
        border-radius: 5.75rem 5.75rem 0 0;
        outline: 4px solid rgba(56, 56, 56, 0.30);
    }
    section.branch-wrapper .branch-container .branch-items .swiper-wrapper {
        padding-top: 12px;
    }
    section.branch-wrapper .branch-items .branch-item .branch-info > * {
        font-size: .8rem;
    }
    /*============HERO SECTION=================*/
    .latestActivitiesContainer .slowScroll-container {
        width: 100%;
        top: initial;
        pointer-events: none;
        position: relative;
        left: auto;
        -webkit-transform: none;
        -ms-transform: none;
        transform: none;
        padding: 3rem var(--spaceX) 0;
    }
    .latestActivitiesContainer .slowScroll-container h2.title {
        font-size: 1.15rem;
        margin-bottom: 2rem;
    }
    .latestActivitiesContainer .pin-spacer {
        pointer-events: none;
    }
    .latestActivitiesContainer .slowScroll-container p.des {
        font-size: 0.775rem;
    }
    .latestActivitiesContainer .latestActivitiesWrapper .latestActivitiesWrap {
        width: 50vw;
    }
    .flip-card-front, .flip-card-back{
        padding: .5rem;
    }
    .latestActivitiesContainer .latestActivitiesWrapper .latestActivitiesWrap.logo .media img{
        width: 3.76619rem;
    }
    .latestActivitiesContainer .latestActivitiesWrapper {
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
        /* height: auto; */
    }
    .latestActivitiesContainer .section4{
        height: 100vh;
    }
    .latestActivitiesContainer .latestActivitiesWrapper.section3{
        height: 80vh;
    }
    .latestActivitiesContainer .latestActivitiesWrapper .latestActivitiesWrap:first-child {
        margin-top: 15rem;
    }
    .latestActivitiesContainer .latestActivitiesWrapper .latestActivitiesWrap .media {
        height: calc(44vw - 1rem);
        margin-bottom: .5rem;
    }
    .latestActivitiesContainer .latestActivitiesWrapper.section1 {
        padding-bottom: 0;
        padding-top: 3rem;
        margin-bottom: 0;
        height: auto;
    }
    .latestActivitiesContainer .latestActivitiesWrapper.section2 {
        padding-bottom: 0;
        padding-top: 2rem;
        height: auto;
    }
    .latestActivitiesContainer .latestActivitiesWrapper .latestActivitiesObjectWrap.oldFrame {
        width: 48vw;
        padding: .5rem;
        margin-top: 0rem;
    }

    .latestActivitiesContainer .latestActivitiesWrapper .latestActivitiesObjectWrap.oldFrame .media {
        margin-bottom: 0.5rem;
    }

    .latestActivitiesContainer .latestActivitiesWrapper .latestActivitiesWrap .info p.name, .latestActivitiesContainer .latestActivitiesWrapper .latestActivitiesObjectWrap.oldFrame .info p.name {
        font-size: 0.72544rem;
    }

    .latestActivitiesContainer .latestActivitiesWrapper .latestActivitiesWrap .info p.location, .latestActivitiesContainer .latestActivitiesWrapper .latestActivitiesObjectWrap.oldFrame .info p.location {
        font-size: 0.60756rem;
    }

    .latestActivitiesContainer .latestActivitiesWrapper .latestActivitiesObjectWrap:nth-of-type(3) {
        left: 1rem;
        top: 12rem;
        -webkit-transform: rotate(-30deg);
        -ms-transform: rotate(-30deg);
        transform: rotate(-30deg);
    }

    .latestActivitiesContainer .latestActivitiesWrapper .latestActivitiesObjectWrap:nth-of-type(3) img {
        width: 6rem;
    }

    .latestActivitiesContainer .latestActivitiesWrapper .latestActivitiesObjectWrap:nth-of-type(2) img {
        width: 5.1875rem;
    }

    .latestActivitiesContainer .latestActivitiesWrapper .latestActivitiesObjectWrap:nth-of-type(2) {
        right: 6vw;
    }
    .latestActivitiesContainer .latestActivitiesWrapper .latestActivitiesObjectWrap:nth-of-type(1){
        width: 10rem;
        right: 1rem;
    }
    .latestActivitiesContainer .latestActivitiesWrapper .latestActivitiesObjectWrap:nth-of-type(4) {
        left: 7rem;
        bottom: 7rem;
    }

    .latestActivitiesContainer .latestActivitiesWrapper .latestActivitiesObjectWrap:nth-of-type(4) img {
        width: 4rem;
    }

    .latestActivitiesContainer .latestActivitiesWrapper .latestActivitiesObjectWrap:nth-of-type(5) {
        left: var(--spaceX);
        width: 5rem;
    }

    .latestActivitiesContainer .latestActivitiesWrapper .latestActivitiesObjectWrap:nth-of-type(5) img {
    }

    .latestActivitiesContainer .latestActivitiesWrapper.section3 p.hugeTitle {
        font-size: 3rem;
        line-height: normal;
    }

    .latestActivitiesContainer .latestActivitiesWrapper .latestActivitiesLastSection .latestActivitiesLastInfo {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        padding-bottom: 2rem;
    }

    .latestActivitiesContainer .latestActivitiesWrapper .latestActivitiesLastSection .latestActivitiesLastInfo .content-wrap {
        width: 100%;
    }

    .latestActivitiesContainer .latestActivitiesWrapper .latestActivitiesLastSection .latestActivitiesLastInfo h3 {
        font-size: 1.25rem;
        margin-bottom: 1.5rem;
    }

    .latestActivitiesContainer .latestActivitiesWrapper .latestActivitiesLastSection .latestActivitiesLastInfo .content-wrap p {
        font-size: 1.125rem;
    }

    section.branchMapContainer h2 {
        margin: 5rem auto 0;
        font-size: 1.36131rem;
        padding: 0 var(--spaceXX);
        text-align: center;
        line-height: normal;
    }
    section.branchMapContainer .airplane .modal-airplane{
        width: 10rem;
        font-size: .6rem;
    }
    section.branchMapContainer .airplane > img{
        width: 1.5rem;
    }
    section.branchMapContainer {
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }
    .historyContainer section.historyWrapper.section1 .historyWrap p.title_item {
        font-size: 2.5rem;
        width: 100%;
        margin-top: 0;
        line-height: normal;
        margin-bottom: 2rem;
    }
    .historyContainer .scrollFixContainer h2 {
        font-size: 1.25rem;
    }
    .historyContainer .scrollFixContainer {
        width: 100%;
        top: auto;
        position: relative;
        left: auto;
        -webkit-transform: none;
        -ms-transform: none;
        transform: none;
        padding-top: 3rem;
        padding-bottom: 2rem;
    }
    .historyContainer .pin-spacer{
        pointer-events: none;
    }
    .historyContainer section.historyWrapper.section1 .historyWrap .oldFrameWrap:nth-of-type(3) {
        right: auto;
        bottom: auto;
        margin-right: auto;
        margin-top: 17rem;
    }
    .historyContainer section.historyWrapper.section1 {
        height: auto;
    }

    .historyContainer section.historyWrapper.section1 .historyWrap {-ms-flex-wrap: wrap;flex-wrap: wrap;grid-gap: 0;-webkit-box-align: start;-ms-flex-align: start;align-items: flex-start;-webkit-box-pack: justify;-ms-flex-pack: justify;justify-content: space-between;}

    .historyContainer section.historyWrapper.section1 .historyWrap .oldFrameWrap {
        position: relative;
        width: calc((100%/2)) !important;
    }
    .historyContainer section.historyWrapper.section1 .historyWrap .oldFrameWrap:nth-of-type(1) {
        top: auto;
        -webkit-transform: none;
        -ms-transform: none;
        transform: none;
        right: auto;
        margin-right: auto;
        margin-top: 15rem;
    }
    .historyContainer section.historyWrapper.section1 .historyWrap .oldFrameWrap:nth-of-type(2) {
        top: auto;
        left: auto;
        margin-left: auto;
    }
    .historyContainer section.historyWrapper.section1 .historyWrap .oldFrameWrap:nth-of-type(4) {
        left: auto;
        bottom: auto;
        margin-left: auto;
        margin-top: 2rem;
    }
    .historyContainer section.historyWrapper .historyWrap .oldFrameWrap .media {
        margin-bottom: 0.45rem;
    }
    .historyContainer section.historyWrapper .historyWrap .oldFrameWrap .info p.name {
        font-size: 0.72544rem;
    }
    .historyContainer section.historyWrapper .historyWrap .oldFrameWrap .info p.location {
        font-size: 0.60756rem;
    }
    .historyContainer section.historyWrapper .history-year span {
       /* line-height: 6.75rem;*/
        font-size: 6.75rem;
    }
    .historyContainer section.historyWrapper .historyWrap {
        -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
    }

    .historyContainer section.historyWrapper.section2 {
        padding-top: 3rem;
        height: auto;
        min-height: 80vh;
    }

    .historyContainer section.historyWrapper.section2 .historyWrap {
        grid-gap: 1rem;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
    }
    .historyContainer section.historyWrapper.section2 .historyWrap .history-column-wrap:first-child .oldFrameWrap.oldMap {
        display: none;
    }

    .historyContainer section.historyWrapper.section2 .historyWrap .history-column-wrap.text {
        display: none;
    }

    .historyContainer section.historyWrapper.section2 .historyWrap .history-column-wrap:nth-of-type(2) {
        width: 91%;
        margin: 0 auto;
    }

    .historyContainer section.historyWrapper .historyWrap .history-column-wrap > .description {
        font-size: 0.75rem;
        margin-bottom: 0;
    }
    .historyContainer section.historyWrapper.section2 .historyWrap .history-column-wrap:nth-of-type(2) .oldFrameWrap .media {
        height: 61vw !important;
    }

    .historyContainer section.historyWrapper .historyWrap .historyBiographyWrapper {

    }

    .historyContainer section.historyWrapper .historyWrap .historyBiographyWrapper h2 {
        font-size: 2rem;
    }

    .historyContainer section.historyWrapper .historyWrap .historyBiographyWrapper .born-death p {
        font-size: 1.25rem;
    }

    .historyContainer section.historyWrapper .historyWrap .historyBiographyWrapper .oldFrameWrap {
        width: 70vw;
    }
    .historyContainer section.historyWrapper .historyWrap .historyBiographyWrapper .oldFrameWrap::after {
        height: 7rem;
        -webkit-transform: rotate(45deg) translate(-11px, -35px);
        -ms-transform: rotate(45deg) translate(-11px, -35px);
        transform: rotate(45deg) translate(-11px, -35px);
    }
    .historyContainer section.historyWrapper.section4 {
        padding-top: 2rem;
    }

    .historyContainer section.historyWrapper.section4 .historyWrap.historyWrapperFourth {
        row-gap: 1rem;
    }

    .historyContainer section.historyWrapper.section4 .historyWrap.historyWrapperFourth .historyWrapFourth:last-child {
        display: -ms-grid;
        display: grid;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
        -webkit-column-gap: 1rem;
        -moz-column-gap: 1rem;
        column-gap: 1rem;
        -ms-grid-columns: 1fr 1rem 1fr;
        grid-template-columns: 1fr 1fr;
    }

    .historyContainer section.historyWrapper.section4 .historyWrap.historyWrapperFourth .historyWrapFourth .content {}

    .historyContainer section.historyWrapper.section4 .historyWrap.historyWrapperFourth .historyWrapFourth .oldFrameWrap {}

    .historyContainer section.historyWrapper.section4 .historyWrap.historyWrapperFourth .historyWrapFourth:first-child {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
        flex-direction: column-reverse;
        -webkit-box-align: end;
        -ms-flex-align: end;
        align-items: flex-end;
    }

    .historyContainer section.historyWrapper.section4 .historyWrap.historyWrapperFourth .historyWrapFourth:first-child .content {margin: 16px 0 0;position: relative;z-index: 1;}

    .historyContainer section.historyWrapper.section4 .historyWrap.historyWrapperFourth .historyWrapFourth:first-child .oldFrameWrap {
        width: 50vw;
    }

    .historyContainer section.historyWrapper .historyWrap.historyWrapperFourth .historyWrapFourth .content p {
        font-size: 0.65rem;
    }

    .historyContainer section.historyWrapper .historyWrap.historyWrapperFourth .historyWrapFourth.location .location-wrap .location {
        width: 4.125rem;
        height: 4.125rem;
    }

    .historyContainer section.historyWrapper .historyWrap.historyWrapperFourth .historyWrapFourth.location .location-wrap p {
        font-size: 1.275rem;
    }

    .historyContainer section.historyWrapper .historyWrap.historyWrapperFourth .historyWrapFourth.location .location-wrap .location::before {
        width: 1rem;
        height: 1.1625rem;
        background-size: contain;
        background-repeat: no-repeat;
        background-position: center;
    }

    .historyContainer section.historyWrapper.section4 .historyWrap.historyWrapperFourth .historyWrapFourth:last-child .oldFrameWrap {
        width: 100%;
    }

    .historyContainer section.historyWrapper.section4 .historyWrap.historyWrapperFourth .historyWrapFourth:last-child .historyWrapFourthText {
        padding: 18px 12px;
    }

    .historyContainer section.historyWrapper.section4 .historyWrap.historyWrapperFourth .historyWrapFourth:last-child .historyWrapFourthText p.text-item {
        font-size: .9rem;
        background-size: contain;
        padding-right: .5rem;
    }
    .historyContainer section.historyWrapper .historyWrap.historyWrapperFifth {
        -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
        grid-gap: 2rem;
        padding-bottom: 0;
    }
    .historyContainer section.historyWrapper.section5 {
        height: auto;
        padding-top: 2rem;
    }
    .historyContainer section.historyWrapper .historyWrap.historyWrapperFifth .airplane img {
        width: 50vw;
    }
    .historyContainer section.historyWrapper .historyWrap.historyWrapperFifth .historyWrapFifth:nth-of-type(2) {
        margin-top: 5rem;
    }
    .historyContainer section.historyWrapper.section5 .history-year {
        padding-bottom: 0;
    }
    .historyContainer section.historyWrapper .historyWrap.historyWrapperFifth .airplane {
        top: 0;
    }
    .historyContainer section.historyWrapper .history-year {
        padding-bottom: 30px;
    }
    .flip-card-back p {
        text-align: center;
        font-size: .675rem;
    }
    #welcomeModal .welcomeModalWrap .modal-year-wrapper .from-to-year p:last-child {
        opacity: 0;
    }
}
@media only screen and (min-width: 640px) and (max-width: 768px){
    .latestActivitiesContainer .latestActivitiesWrapper .latestActivitiesWrap.logo .media img{
        width: 5.76619rem;
    }
    section.branch-wrapper .branch-items .branch-item .branch-media {
        height: 27rem;
        border-radius: 12.75rem 12.75rem 0 0;
    }
    section.branch-wrapper .branch-items .branch-item .branch-info > * {
        font-size: .95rem;
    }
    .latestActivitiesContainer .latestActivitiesWrapper .latestActivitiesWrap {
        width: 44vw;
    }
    .latestActivitiesContainer .slowScroll-container {
        width: 70vw;
        margin: 0 auto;
    }
    .latestActivitiesContainer .latestActivitiesWrapper.section3 p.hugeTitle {
        font-size: 4rem;
    }

    .latestActivitiesContainer .latestActivitiesWrapper .latestActivitiesObjectWrap:nth-of-type(3) img {
        width: 10rem;
    }

    .latestActivitiesContainer .latestActivitiesWrapper .latestActivitiesObjectWrap:nth-of-type(3) {
        left: 3rem;
        top: 19rem;
    }

    .latestActivitiesContainer .latestActivitiesWrapper .latestActivitiesObjectWrap:nth-of-type(2) img {
        width: 11.1875rem;
    }

    .latestActivitiesContainer .latestActivitiesWrapper .latestActivitiesObjectWrap:nth-of-type(4) img {
        width: 6rem;
    }

    .latestActivitiesContainer .latestActivitiesWrapper .latestActivitiesObjectWrap:nth-of-type(5) img {
        width: 8rem;
    }

    .latestActivitiesContainer .latestActivitiesWrapper .latestActivitiesObjectWrap:nth-of-type(4) {
        left: 10rem;
        bottom: 11rem;
    }
    .latestActivitiesContainer .latestActivitiesWrapper .latestActivitiesLastSection .latestActivitiesLastInfo .content-wrap {
        width: 50%;
    }

    .latestActivitiesContainer .latestActivitiesWrapper .latestActivitiesLastSection .latestActivitiesLastInfo {
        padding-bottom: 5rem;
    }

    .latestActivitiesContainer .latestActivitiesWrapper .latestActivitiesLastSection .latestActivitiesLastInfo .content-wrap p {
        font-size: 1.125rem;
    }

    .historyContainer section.historyWrapper.section2 {
        padding-top: 12rem;
    }

    .historyContainer section.historyWrapper .historyWrap .historyBiographyWrapper .oldFrameWrap {
        width: 55vw;
    }

    .historyContainer section.historyWrapper .historyWrap.historyWrapperFifth .airplane img {
        width: 30vw;
    }
    .historyContainer section.historyWrapper .historyWrap.historyWrapperFifth .historyWrapFifth:nth-of-type(2) {
        margin-top: 7rem;
    }
    .historyContainer section.historyWrapper .historyWrap.historyWrapperFifth .historyWrapFifth .oldFrameWrap {
        width: 50vw;
        margin: 0 auto;
    }
    .historyContainer section.historyWrapper .historyWrap.historyWrapperFourth .historyWrapFourth .content p {
        font-size: 0.75rem;
    }
}
@media only screen and (min-width: 769px) and (max-width: 1199px){
    .historyContainer section.historyWrapper .historyWrap .history-column-wrap.text p {
        font-size: .75rem;
    }
    section.branch-wrapper .branch-container .branch-items{
        position: relative;
        padding-bottom: 75px;
    }
    section.branch-wrapper .branch-container .branch-items::before{
        content: '';
        background-image: url("../img/scroll-horizontal.svg");
        width: 76px;
        position: absolute;
        bottom: 0;
        height: 32px;
        background-size: contain;
        background-repeat: no-repeat;
        background-position: center;
        left: 50%;
        -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
        transform: translateX(-50%);
    }
    .gm-style .gm-style-iw-d {
        padding-right: 1rem;
        padding-top: .5rem;
    }

    .gm-style .gm-style-iw-d h3 {
        font-size: 1rem;
        margin-bottom: .75rem;
    }

    .gm-style .gm-style-iw-d h4 {
        font-size: .75rem;
        margin-bottom: .5rem;
        font-weight: 400;
    }

    .gm-style .gm-style-iw-d a {
        font-size: .75rem;
    }
    section.branch-wrapper {
        padding: 0;
    }

    section.branch-wrapper h2.text {
        font-size: 6.875rem;
    }

    section.branch-wrapper .branch-container .change_titles_items {
        height: 10rem;
    }

    section.branch-wrapper .branch-items .branch-item .branch-media {
        height: 16rem;
        border-radius: 10.75rem 10.75rem 0 0;
    }

    section.branch-wrapper .branch-container .branch-items .swiper-wrapper {
        padding-top: 25px;
    }
    section.branch-wrapper.desktop .branch-items .swiper-wrapper {
        column-gap: 2.5rem;
    }
    section.branch-wrapper.desktop .branch-items .swiper-wrapper .swiper-slide {
        width: calc(100% / 6 - 2.5rem* 5 / 6);
    }
    .latestActivitiesContainer .slowScroll-container {
        width: 28vw;
        top: 10rem;
    }
    .latestActivitiesContainer .slowScroll-container h2.title {
        font-size: 1.5rem;
        margin-bottom: 3rem;
    }

    .latestActivitiesContainer .latestActivitiesWrapper .latestActivitiesWrap {
        width: 30vw;
    }
    .flip-card-front, .flip-card-back{
        padding: .6rem;
    }
    #modalZoom .modalZoomGallery.zoom{
        width: 85vw;
    }
    .latestActivitiesContainer .latestActivitiesWrapper .latestActivitiesWrap .media {
        height: calc(30vw - 1rem);
    }

    .latestActivitiesContainer .latestActivitiesWrapper .latestActivitiesWrap:first-child {
        margin-top: 39rem;
    }
    .latestActivitiesContainer .latestActivitiesWrapper.section3 p.hugeTitle {
        font-size: 11vw;
    }

    .latestActivitiesContainer .latestActivitiesWrapper .latestActivitiesObjectWrap.oldFrame {
        width: 33vw;
    }

    .latestActivitiesContainer .latestActivitiesWrapper .latestActivitiesObjectWrap:nth-of-type(2) img {
        width: 10.1875rem;
    }

    .latestActivitiesContainer .latestActivitiesWrapper .latestActivitiesObjectWrap:nth-of-type(5) {
        left: 30px;
        width: 14rem;
    }

    .latestActivitiesContainer .latestActivitiesWrapper .latestActivitiesObjectWrap:nth-of-type(4) {
        left: 260px;
        bottom: 11rem;
    }
    .latestActivitiesContainer .latestActivitiesWrapper .latestActivitiesLastSection .latestActivitiesLastInfo .content-wrap {
        width: 50%;
    }
    .latestActivitiesContainer .latestActivitiesWrapper .latestActivitiesLastSection .latestActivitiesLastInfo {
        padding-bottom: 4rem;
    }
    section.branchMapContainer h2 {
        font-size: 2.26131rem;
    }
    section.branchMapContainer .airplane .modal-airplane{
        width: 11rem;
    }
    .historyContainer section.historyWrapper.section1 .historyWrap p.title_item {
        font-size: 3.5rem;
        width: 60%;
        line-height: normal;
    }
    .historyContainer section.historyWrapper.section1 .historyWrap .oldFrameWrap:nth-of-type(1) {
        width: 30vw;
    }
    .historyContainer section.historyWrapper.section1 .historyWrap .oldFrameWrap:nth-of-type(2) {
        width: 29vw;
        top: -1rem;
    }
    .historyContainer section.historyWrapper.section1 .historyWrap .oldFrameWrap:nth-of-type(3) {
        width: 30vw;
        right: 3rem;
        bottom: 10rem;
    }
    .historyContainer section.historyWrapper.section1 .historyWrap .oldFrameWrap:nth-of-type(4) {
        width: 28vw;
        bottom: 14rem;
    }
    .historyContainer section.historyWrapper .historyWrap {
        grid-gap: 2rem;
    }

    .historyContainer section.historyWrapper .historyWrap .history-column-wrap .oldFrameWrap.oldMap .media {
        height: 13vh !important;
    }

    .historyContainer section.historyWrapper .history-year span {
        font-size: 9.75rem;
        /*line-height: 9.75rem;*/
    }

    .historyContainer section.historyWrapper .historyWrap .history-column-wrap.text .text-item, .historyContainer section.historyWrapper .historyWrap.historyWrapperFourth .historyWrapFourth .historyWrapFourthText .text-item {
        font-size: 1.475rem;
    }

    .historyContainer section.historyWrapper .historyWrap .historyBiographyWrapper h2 {
        font-size: 2rem;
    }

    .historyContainer section.historyWrapper .historyWrap .historyBiographyWrapper {
        padding-top: 20rem;
    }

    .historyContainer section.historyWrapper .historyWrap .historyBiographyWrapper .oldFrameWrap {
        width: 35vw;
    }
    .historyContainer section.historyWrapper .historyWrap.historyWrapperFifth {
        grid-gap: 10rem;
    }
    .historyContainer section.historyWrapper .historyWrap.historyWrapperFifth .airplane img {
        width: 26rem;
    }
    .flip-card-back p {
        text-align: center;
        font-size: .75rem;
    }
}
@media only screen and (min-width: 1200px) and (max-width: 1400px){
    .historyContainer section.historyWrapper.section1 .historyWrap .oldFrameWrap:nth-of-type(3){
        right: 7rem;
        bottom: 2rem;
    }
    section.branch-wrapper .branch-items .branch-item .branch-media .branch-info-wrap {
        padding: .65rem;
        font-size: .65rem;
    }
    .gm-style .gm-style-iw-d h3 {
        font-size: 1.1rem;
        margin-bottom: .95rem;
    }
    .gm-style .gm-style-iw-d h4 {
        font-size: 0.85rem;
        margin-bottom: .85rem;
        font-weight: 400;
    }
    .gm-style .gm-style-iw-d a {
        font-size: .85rem;
    }
    section.branch-wrapper h2.text {
        font-size: 5.875rem;
    }

    section.branch-wrapper .branch-container .change_titles_items {
        height: 6rem;
    }

    section.branch-wrapper.desktop .branch-items .swiper-wrapper {
        grid-gap: 2rem;
    }
    section.branch-wrapper.desktop .branch-items .swiper-wrapper .swiper-slide {
        width: calc(100% / 6 - 2rem* 5 / 6);
    }
    section.branch-wrapper .branch-items .branch-item .branch-media {
        height: 12rem;
        outline: 3px solid rgba(56, 56, 56, 0.30);
    }

    section.branch-wrapper .branch-items .branch-item .branch-info > * {
        font-size: .9rem;
    }
    .latestActivitiesContainer .slowScroll-container h2.title {
        font-size: 1.5rem;
        margin-bottom: 2rem;
    }

    .flip-card-front, .flip-card-back {
        padding: .7rem;
    }
    .flip-card-back p{
        font-size: .75rem;
    }
    .latestActivitiesContainer .latestActivitiesWrapper .latestActivitiesWrap .media {
        height: calc(20vw - 1.4rem);
        margin-bottom: .5rem;
    }

    .latestActivitiesContainer .latestActivitiesWrapper .latestActivitiesWrap.logo .media img {
        width: 4.76619rem;
    }

    .latestActivitiesContainer .latestActivitiesWrapper .latestActivitiesObjectWrap.oldFrame {
        width: 15vw;
        margin-top: 2rem;
    }

    .latestActivitiesContainer .latestActivitiesWrapper .latestActivitiesObjectWrap:nth-of-type(3) img {
        width: 7rem;
    }
    .latestActivitiesContainer .latestActivitiesWrapper .latestActivitiesObjectWrap:nth-of-type(1){
        width: 12rem;
    }
    .latestActivitiesContainer .latestActivitiesWrapper .latestActivitiesObjectWrap:nth-of-type(2) img {
        width: 9.1875rem;
    }

    .latestActivitiesContainer .latestActivitiesWrapper .latestActivitiesObjectWrap:nth-of-type(5) img {
    }

    .latestActivitiesContainer .latestActivitiesWrapper .latestActivitiesObjectWrap:nth-of-type(4) img {
        width: 6rem;
    }

    .latestActivitiesContainer .latestActivitiesWrapper .latestActivitiesObjectWrap:nth-of-type(4) {
        left: 14rem;
        bottom: 6rem;
    }

    .latestActivitiesContainer .latestActivitiesWrapper .latestActivitiesObjectWrap:nth-of-type(5) {
        left: 6rem;
        width: 8rem;
    }

    .latestActivitiesContainer .latestActivitiesWrapper .latestActivitiesLastSection .latestActivitiesLastInfo h3 {
        font-size: 1.5rem;
    }

    section.branchMapContainer h2 {
        font-size: 2.26131rem;
    }

    .historyContainer .scrollFixContainer h2 {
        font-size: 1.5rem;
    }

    .historyContainer section.historyWrapper.section1 .historyWrap p.title_item {
        font-size: 3.5rem;
        margin-top: 3rem;
        line-height: normal;
    }

    .historyContainer section.historyWrapper .historyWrap .oldFrameWrap {
    }

    .historyContainer section.historyWrapper .historyWrap .history-column-wrap.text .text-item, .historyContainer section.historyWrapper .historyWrap.historyWrapperFourth .historyWrapFourth .historyWrapFourthText .text-item {
        font-size: 1.175rem;
    }

    .historyContainer section.historyWrapper .history-year span {
        font-size: 10.75rem;
        /*line-height: 10.75rem;*/
    }
    #equalizerIcon span, #equalizerIconMute span {
        width: .5px;
        height: 24px;
    }

    .historyContainer section.historyWrapper .historyWrap .historyBiographyWrapper .oldFrameWrap::after {
        width: 1rem;
        height: 7rem;
        -webkit-transform: rotate(45deg) translate(-13px, -34px);
        -ms-transform: rotate(45deg) translate(-13px, -34px);
        transform: rotate(45deg) translate(-13px, -34px);
    }

    .historyContainer section.historyWrapper .historyWrap {
        grid-gap: 7rem;
    }

    .historyContainer section.historyWrapper .historyWrap.historyWrapperFourth .historyWrapFourth.location .location-wrap p {
        font-size: 1.675rem;
    }
    .historyContainer section.historyWrapper .historyWrap.historyWrapperFourth .historyWrapFourth.location .location-wrap .location {
        width: 6.125rem;
        height: 6.125rem;
    }
    .historyContainer section.historyWrapper .historyWrap .historyBiographyWrapper h2 {
        font-size: 2rem;
    }
    .historyContainer section.historyWrapper .historyWrap .historyBiographyWrapper .born-death p {
        font-size: 1.5rem;
    }
    .historyContainer section.historyWrapper .historyWrap.historyWrapperFourth .historyWrapFourth .content {
        margin-bottom: 2rem;
    }
    .historyContainer section.historyWrapper .historyWrap.historyWrapperFifth .airplane img {
        width: 18rem;
    }
    #modalZoom #closeModal img {
        width: 1.6rem;
    }

    #modalZoom .modalZoomGallery {
        width: 34vw;
    }

    section.branchMapContainer .airplane .modal-airplane {
        width: 13vw;
        font-size: .6rem;
    }

    section.branchMapContainer .airplane > img {
        width: 1.5rem;
    }
    .historyContainer section.historyWrapper .historyWrap.historyWrapperFifth {
        grid-gap: 22rem;
        padding-bottom: 5rem;
    }
    .latestActivitiesContainer .latestActivitiesWrapper .latestActivitiesWrap .info p.name, .latestActivitiesContainer .latestActivitiesWrapper .latestActivitiesObjectWrap.oldFrame .info p.name {
        font-size: 0.72544rem;
        margin-bottom: .2rem;
    }
    .latestActivitiesContainer .latestActivitiesWrapper .latestActivitiesWrap .info p.location, .latestActivitiesContainer .latestActivitiesWrapper .latestActivitiesObjectWrap.oldFrame .info p.location {
        font-size: 0.60756rem;
    }
    .latestActivitiesContainer .slowScroll-container p.des {
        font-size: 0.775rem;
    }
    .historyContainer section.historyWrapper .historyWrap .oldFrameWrap .info p.name {
        font-size: 0.72544rem;
    }

    .historyContainer section.historyWrapper .historyWrap .oldFrameWrap .info p.location {
        font-size: 0.60756rem;
    }

    .historyContainer section.historyWrapper .historyWrap .history-column-wrap > .description {
        font-size: 0.75rem;
        line-height: 1.6;
        margin-bottom: 1.5rem;
    }
    .historyContainer section.historyWrapper .historyWrap .history-column-wrap.text p {
        font-size: .75rem;
    }
}
@media only screen and (min-width: 1401px) and (max-width: 1600px){
    .historyContainer section.historyWrapper .historyWrap .history-column-wrap.text p {
        font-size: .75rem;
    }
    section.branch-wrapper .branch-items .branch-item .branch-media .branch-info-wrap {
        padding: .65rem;
    }
    .gm-style .gm-style-iw-d h3 {
        font-size: 1.1rem;
        margin-bottom: .95rem;
    }
    .gm-style .gm-style-iw-d h4 {
        font-size: 0.85rem;
        margin-bottom: .85rem;
        font-weight: 400;
    }
    .gm-style .gm-style-iw-d a {
        font-size: .85rem;
    }
    section.branch-wrapper h2.text {
        font-size: 5.875rem;
    }

    section.branch-wrapper .branch-container .change_titles_items {
        height: 6rem;
    }

    section.branch-wrapper.desktop .branch-items .swiper-wrapper {
        grid-gap: 2rem;
    }
    section.branch-wrapper.desktop .branch-items .swiper-wrapper .swiper-slide {
        width: calc(100% / 6 - 2rem* 5 / 6);
    }
    section.branch-wrapper .branch-items .branch-item .branch-media {
        height: 15rem;
        outline: 3px solid rgba(56, 56, 56, 0.30);
    }

    section.branch-wrapper .branch-items .branch-item .branch-info > * {
        font-size: .9rem;
    }
    .latestActivitiesContainer .slowScroll-container h2.title {
        font-size: 1.5rem;
        margin-bottom: 2rem;
    }

    .flip-card-front, .flip-card-back {
        padding: .7rem;
    }
    .flip-card-back p{
        font-size: .75rem;
    }
    .latestActivitiesContainer .latestActivitiesWrapper .latestActivitiesWrap .media {
        height: calc(20vw - 1.4rem);
        margin-bottom: .5rem;
    }

    .latestActivitiesContainer .latestActivitiesWrapper .latestActivitiesWrap.logo .media img {
        width: 4.76619rem;
    }

    .latestActivitiesContainer .latestActivitiesWrapper .latestActivitiesObjectWrap.oldFrame {
        width: 15vw;
        margin-top: 2rem;
    }

    .latestActivitiesContainer .latestActivitiesWrapper .latestActivitiesObjectWrap:nth-of-type(3) img {
        width: 8rem;
    }

    .latestActivitiesContainer .latestActivitiesWrapper .latestActivitiesObjectWrap:nth-of-type(2) img {
        width: 9.1875rem;
    }

    .latestActivitiesContainer .latestActivitiesWrapper .latestActivitiesObjectWrap:nth-of-type(5) img {
    }

    .latestActivitiesContainer .latestActivitiesWrapper .latestActivitiesObjectWrap:nth-of-type(4) img {
        width: 7rem;
    }

    .latestActivitiesContainer .latestActivitiesWrapper .latestActivitiesObjectWrap:nth-of-type(4) {
        left: 17rem;
        bottom: 7rem;
    }

    .latestActivitiesContainer .latestActivitiesWrapper .latestActivitiesObjectWrap:nth-of-type(5) {
        left: 6rem;
        width: 9rem;
    }

    .latestActivitiesContainer .latestActivitiesWrapper .latestActivitiesLastSection .latestActivitiesLastInfo h3 {
        font-size: 1.5rem;
    }

    section.branchMapContainer h2 {
        font-size: 2.26131rem;
    }

    .historyContainer .scrollFixContainer h2 {
        font-size: 1.5rem;
    }

    .historyContainer section.historyWrapper.section1 .historyWrap p.title_item {
        font-size: 3.5rem;
        margin-top: 3rem;
        line-height: normal;
    }

    #modalZoom #closeModal img {
        width: 1.6rem;
    }

    #modalZoom .modalZoomGallery {
        width: 34vw;
    }

    .latestActivitiesContainer .latestActivitiesWrapper .latestActivitiesObjectWrap:nth-of-type(1) {
        width: 15rem;
    }

    section.branchMapContainer .airplane > img {
        width: 1.7rem;
    }

    section.branchMapContainer .airplane .modal-airplane {
        width: 13vw;
        font-size: .6rem;
    }
    .historyContainer section.historyWrapper .historyWrap .historyBiographyWrapper .oldFrameWrap{
        width: 20vw;
    }
    .historyContainer section.historyWrapper .historyWrap .history-column-wrap.text .text-item, .historyContainer section.historyWrapper .historyWrap.historyWrapperFourth .historyWrapFourth .historyWrapFourthText .text-item {
        font-size: 1.275rem;
        padding-right: 1.2rem;
    }

    .historyContainer section.historyWrapper .history-year span {
        font-size: 10.75rem;
        /*line-height: 10.75rem;*/
    }
    #equalizerIcon span, #equalizerIconMute span {
        width: .5px;
        height: 24px;
    }

    .historyContainer section.historyWrapper .historyWrap .historyBiographyWrapper .oldFrameWrap::after {
        width: 1rem;
        height: 7rem;
        -webkit-transform: rotate(45deg) translate(-13px, -34px);
        -ms-transform: rotate(45deg) translate(-13px, -34px);
        transform: rotate(45deg) translate(-13px, -34px);
    }

    .historyContainer section.historyWrapper .historyWrap {
        grid-gap: 7rem;
    }

    .historyContainer section.historyWrapper .historyWrap.historyWrapperFourth .historyWrapFourth.location .location-wrap p {
        font-size: 1.675rem;
    }
    .historyContainer section.historyWrapper .historyWrap.historyWrapperFourth .historyWrapFourth.location .location-wrap .location {
        width: 6.125rem;
        height: 6.125rem;
    }
    .historyContainer section.historyWrapper .historyWrap .historyBiographyWrapper h2 {
        font-size: 2rem;
    }
    .historyContainer section.historyWrapper .historyWrap .historyBiographyWrapper .born-death p {
        font-size: 1.5rem;
    }
    .historyContainer section.historyWrapper .historyWrap.historyWrapperFourth .historyWrapFourth .content {
        margin-bottom: 2rem;
    }
    .historyContainer section.historyWrapper .historyWrap.historyWrapperFifth .airplane img {
        width: 24rem;
    }
    .historyContainer section.historyWrapper .historyWrap.historyWrapperFifth {
        grid-gap: 22rem;
        padding-bottom: 5rem;
    }
    .latestActivitiesContainer .latestActivitiesWrapper .latestActivitiesWrap .info p.name, .latestActivitiesContainer .latestActivitiesWrapper .latestActivitiesObjectWrap.oldFrame .info p.name {
        font-size: 0.72544rem;
        margin-bottom: .2rem;
    }
    .latestActivitiesContainer .latestActivitiesWrapper .latestActivitiesWrap .info p.location, .latestActivitiesContainer .latestActivitiesWrapper .latestActivitiesObjectWrap.oldFrame .info p.location {
        font-size: 0.60756rem;
    }
    .latestActivitiesContainer .slowScroll-container p.des {
        font-size: 0.775rem;
    }
    .historyContainer section.historyWrapper .historyWrap .oldFrameWrap .info p.name {
        font-size: 0.72544rem;
    }

    .historyContainer section.historyWrapper .historyWrap .oldFrameWrap .info p.location {
        font-size: 0.60756rem;
    }
    .historyContainer section.historyWrapper .historyWrap .history-column-wrap > .description {
        font-size: 0.75rem;
        line-height: 1.6;
        margin-bottom: 1.5rem;
    }
}