/*
    Theme Name: Landing T11
    Theme URI: https://medbank.net
    Description: Landing Theme
    Author: Medbank Team
    Author URI: https://medbank.net
    Version: 1.0
*/

:root {
    font-size: 20px;
}
[animation] {
    opacity: 0;
}
.animate__delay-05s {
    animation-delay: 0.5s;
}

/* BUTTONS */
.btn {
    --bs-btn-padding-x: 2rem;
    --bs-btn-padding-y: .75rem;
    --bs-btn-font-size: 1.3rem;
    --bs-btn-font-weight: 400;
    --bs-btn-line-height: 1.5;
    --bs-btn-color: #212529;
    --bs-btn-bg: transparent;
    --bs-btn-border-width: 1px;
    --bs-btn-border-color: transparent;
    --bs-btn-border-radius: 0;
    --bs-btn-hover-border-color: transparent;
    --bs-btn-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15), 0 1px 1px rgba(0, 0, 0, 0.075);
    --bs-btn-disabled-opacity: 0.65;
    --bs-btn-focus-box-shadow: 0 0 0 0.25rem rgba(var(--bs-btn-focus-shadow-rgb), .5);
    display: inline-block;
    padding: var(--bs-btn-padding-y) var(--bs-btn-padding-x);
    min-width: 12em;
}
.btn-primary {
    --bs-btn-color: #fff;
    --bs-btn-bg: #FF6B00;
    --bs-btn-border-color: #FF6B00;
    --bs-btn-hover-color: #fff;
    --bs-btn-hover-bg: #000000;
    --bs-btn-hover-border-color: #000000;
    --bs-btn-focus-shadow-rgb: 49, 132, 253;
    --bs-btn-active-color: #fff;
    --bs-btn-active-bg: #000000;
    --bs-btn-active-border-color: #000000;
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    --bs-btn-disabled-color: #fff;
    --bs-btn-disabled-bg: #FDA464;
    --bs-btn-disabled-border-color: #FDA464;
}
.btn-black {
    color: #fff;
    background-color: #000;
    border-color: #000;
    padding: .5em 1em;
    display: flex;
    width: fit-content;
    align-items: center;
    justify-content: center;
    border-radius: 1em;
    font-weight: 400;
    text-decoration: none;
    cursor: pointer;
}
.btn-black:hover {
    color: #fff;
    background-color: #000;
    border-color: #000;
    opacity: 0.8;
}

/* end: BUTTONS */
.container img,
[class^="container"] img {
    max-width: 100%;
    height: auto;
}

hr {
    opacity: 0.1;
}

.h2, h2 {
    font-size: calc(1rem + .9vw);
}
@media screen and (min-width: 1200px) {
    .h2, h2 {
        font-size: calc(1.325rem + .9vw);
    }

}

body {
    font-family: "Manrope", sans-serif;
    overflow-x: hidden;
    max-width: 100vw;
    position: relative;
}

header {
    position: sticky;
    top: 0;
    z-index: 10;
    padding: .5em;
    background: #fff;
}
header.scrolled {
    box-shadow: 6px 6px 23.8px 0 rgba(0, 24, 69, 0.08);
}
#burger-menu {
    position: fixed;
    top: 0;
    left: auto;
    width: 100vw;
    bottom: 0;
    right: -3em;
    background-color: #fff;
    z-index: 10;
    opacity: 0;
    visibility: hidden;
    transition: right 0.5s ease-in-out, opacity 0.5s ease-in-out, z-index 0.5s step-end, visibility 0.5s step-end;
    padding: 2em;
}
#burger-menu.active {
    right: 0;
    opacity: 1;
    visibility: visible;
    z-index: 10;
    transition: right 0.5s ease-in-out, opacity 0.5s ease-in-out;
}
#burger-menu #close {
    cursor: pointer;
    font-size: 2em;
    position: absolute;
    right: 1em;
    top: 1em;
    width: 40px;
}
#burger-menu #close path {
    transition: stroke 0.5s ease-in-out;
}
#burger-menu #close:hover path {
    stroke: #FF6B00;
}
#burger-menu ul {
    font-size: 1.4em;
    padding: 0;
    margin: 0;
    gap: 1em;
    list-style: none;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: center;
    height: 100%;
}
#burger-menu ul li a {
    display: block;
    text-decoration: none;
    color: #000;
    transition: color 0.5s ease-in-out;
}
#burger-menu ul li a:hover {
    color: #FF6B00;
}
.logo,
.logo svg {
    max-width: 100%;
}

#open-burger {
    cursor: pointer;
    width: 2.5em;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    float: right;
    gap: .47em;
}
#open-burger span {
    background-color: #444;
    display: block;
    height: 4px;
    width: 2.2em;
    transition: background-color 0.5s ease-in-out;
}
#open-burger.active span,
#open-burger:hover span {
    background-color: #FF6B00;
}

#burger-menu-back-layout {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-color: rgba(255, 255, 255, 0.35);
    backdrop-filter: blur(15px);
    z-index: -1;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease-in-out, z-index 0.5s step-end, visibility 0.5s step-end;
}
#burger-menu-back-layout.active {
    opacity: 1;
    visibility: visible;
    z-index: 5;
    transition: opacity 0.5s ease-in-out, z-index 0.5s step-start, visibility 0.5s step-start;
}

#title {
    min-height: 80vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    background-color: #EBEBEB;
    overflow: hidden;
}
#title h1 {
    font-size: 2em;
    font-weight: 600;
    margin: 0;
}
#title p {
    padding: 0 2em;
}
#title img {
    transform: scale(1.3) translate(1em, 2em);
}
#pre-order {
    background-color: #eee;
    color: #444;
    padding: .5em;
    font-size: .6em;
    box-shadow: 0 0 .5em rgba(0, 0, 0, 0.10), 0 0 .2em rgba(0, 0, 0, 0.10);
}
#pre-order.sticked {
    position: fixed;
    z-index: 3;
    width: 100%;
    bottom: 0;
}
#pre-order .container {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    gap: .3em;
}
#pre-order .container .title {
    font-size: 1.3em;
    color: #000;
}
#pre-order .container .btn {
    font-size: 1.2em;
    padding: .5em 1.2em;
    width: 100%;
}

#revolution {
    position: relative;
    background: center no-repeat;
    background-size: cover;
    color: #fff;
    padding: 1em;
}
#revolution::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: radial-gradient(50% 50% at 50% 50%, rgba(0, 0, 0, 0.20) 53.5%, rgba(0, 0, 0, 0.00) 100%),
    linear-gradient(0deg, rgba(0, 0, 0, 0.50) 0%, rgba(0, 0, 0, 0.50) 100%);
    overflow: hidden;


}
#revolution .container {
    padding-top: 1em;
    padding-bottom: 1em;
    position: relative;
    z-index: 1;
    height: 55vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    max-width: 65em;
}
#revolution h3 {
    font-size: 1.1em;
}
#revolution h3 span {
    opacity: 0;
    transition: opacity .15s ease-in-out;
}
#revolution h3 span.active {
    opacity: 1;
}
#revolution p {
    font-size: .8em;
}

.scrollplay-wrapper {
    position: relative;
}
#scrollplay {
    position: relative;
    min-height: 300vh;
}
#scrollplay .container{
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    background-color: #fff;
}
#scrollplay .container.js-sticky-widget {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

#scrollplay .t11video {
    /* border: 1px solid #000; */
    margin-top: 3em;
    max-width: 100%;
    width: 100%;
    max-height: 100vh;
    height: 100vh;
    aspect-ratio: 1;
    object-fit: contain;
}
.scrollplay-wrapper {
    overflow: hidden;
}
.scrollplay-wrapper .text {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    justify-content: end;
    gap: 3em;
    margin: auto;
    max-width: 60vw;
}

.scrollplay-wrapper .text p {
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    width: max-content;
    max-width: 13em;
}
.scrollplay-wrapper .float-text {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    max-width: 60vw;
    margin: auto;
}
.scrollplay-wrapper .float-text p {
    position: absolute;
    height: 2em;
    width: max-content;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    transform: translateX(-50%);
    font-size: .7em;
    color: #000;
    padding: .3em 1em .3em 1em;
    border-radius: 12px;
    border: 1px solid #FFF;
    background: rgba(255, 255, 255, 0.60);
    box-shadow: 6px 6px 23.8px 0 rgba(0, 24, 69, 0.08);
    backdrop-filter: blur(8px);
    transition: opacity .5s ease-in-out, filter .5s ease-in-out;
}
.scrollplay-wrapper .float-text p.lead  {
    font-size: 1em;
}
.scrollplay-wrapper .float-text p i {
    display: inline-block;
    width: .4em;
    height: .4em;
    margin-right: .5em;
    border-radius: .2em;
    bottom: 0;
    transition: opacity .6s ease-in-out .6s, filter .6s ease-in-out;
    background: #e79b65;
}
.scrollplay-wrapper .float-text p.active {
    opacity: 1;
    filter: blur(0);
}
.scrollplay-wrapper .scrollplay_img {
    width: 32px;
    height: 32px;
    margin-right: 10px;
}

#devs {
    background-color: #EBEBEB;
}
#devs-container {
    overflow-x: hidden;
}
#devs-container .cards {
    width: 140%;
}
#devs-container .cards .card {
    position: relative;
    left: 15px;
}
#devs-container .cards .owl-stage {
    display: flex;
    align-items: stretch;
}
#devs-container .cards .owl-stage .owl-item {
    display: flex;
}
#devs-container .cards .owl-stage .card-body {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

#devs .cards .card {
    border: none;
    overflow: hidden;
    position: relative;
}
#devs .cards .card .info {
    font-size: 16px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    justify-content: space-between;
    gap: 1em;

}
#devs .cards .card .card-title {
    font-size: 22px;
    font-weight: bold;
}
#devs .cards .card img {
    width: 248px;
    height: 248px;
}
@media screen and (min-width: 1200px) {
    #devs .cards {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5em;
    }
    #devs .cards .card img {
        width: 204px;
        height: 204px;
    }
    #devs-container .cards {
        width: initial;
    }
    #devs-container .cards .card {
        left: 0;
    }
}
@media screen and (min-width: 1630px) {
    #devs .cards {
        grid-template-columns: repeat(3, 1fr);
    }
}

#content {
    min-height: 100vh;
    background: #ccc;
}
#aio {
    background-color: #EBEBEB;
    color: #333333;
    overflow-x: hidden;
}
/* #scrollplay video {
    background: url(assets/T11_A_010_screenshot.png) center center no-repeat;
    background-size: contain;
} */

/**************************************************/
/******* SCHEME ***********************************/
/**************************************************/


.scheme>div {
    position: relative;
    background: url("assets/T11.png") center center no-repeat;
    background-size: 64%;
    font-size: 14px;
}

.scheme .scheme-wrapper {
    aspect-ratio: 9/13;
}

.scheme .pin {
    position: absolute;
    height: 8%;
    /* background: rgba(255, 255, 255, 0.1); */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: .5em;
    text-align: left;
}

.scheme .pin:before,
.scheme .pin:after {
    content: '';
    display: block;
    position: relative;
    height: 0%;
    background: transparent;
    border: 0px solid rgba(24, 144, 255, 0.80);
    width: 0%;
}

/* mobile pins */
/* pin 1 LTE-модуль */
.scheme .scheme-wrapper .pin.pin1 {
    width: 35%;
    height: 19%;
    top: 2%;
    left: 16.6%;
    right: auto;
}

.scheme .scheme-wrapper .pin.pin1:after {
    border-top-width: 2px;
    border-bottom-width: 0;
    border-left-width: 0;
    border-right-width: 2px;
    height: 100%;
    width: 100%;
}

/* pin 2 Камера */
.scheme .scheme-wrapper .pin.pin2 {
    width: 27%;
    top: -3.5%;
    left: 66.5%;
    height: 28%;
}

.scheme .scheme-wrapper .pin.pin2:after {
    border-top-width: 2px;
    border-bottom-width: 0;
    border-left-width: 2px;
    border-right-width: 0;
    top: 0;
    width: 100%;
    height: 100%;
}

/* pin 3 Пирометр */
.scheme .scheme-wrapper .pin.pin3 {
    width: 23%;
    height: 15%;
    top: 10%;
    left: 74%;
    right: auto;
}

.scheme .scheme-wrapper .pin.pin3:after {
    border-top-width: 2px;
    border-bottom-width: 0;
    border-left-width: 2px;
    border-right-width: 0;
    height: 100%;
    width: 100%;
}

/* pin 4 Дисплей */
.scheme .scheme-wrapper .pin.pin4 {
    width: 35%;
    height: 20%;
    top: 8%;
    left: 3.6%;
    right: auto;
}

.scheme .scheme-wrapper .pin.pin4:after {
    border-top-width: 2px;
    border-bottom-width: 0;
    border-left-width: 0;
    border-right-width: 2px;
    height: 100%;
    width: 100%;
}

/* pin 5 Алкотестер */
.scheme .scheme-wrapper .pin.pin5 {
    width: 26%;
    top: 4.5%;
    left: 69.5%;
    height: 27%;
}

.scheme .scheme-wrapper .pin.pin5:after {
    border-top-width: 2px;
    border-bottom-width: 0;
    border-left-width: 2px;
    border-right-width: 0;
    top: 0;
    width: 100%;
    height: 100%;
}

/* pin 6 Считыватель СКУД-карт */
.scheme .scheme-wrapper .pin.pin6 {
    width: 27%;
    top: 73%;
    left: 66%;
    height: 35%;
}

.scheme .scheme-wrapper .pin.pin6:before {
    border-top-width: 0;
    border-bottom-width: 2px;
    border-left-width: 2px;
    border-right-width: 0;
    top: 0;
    width: 100%;
    height: 100%;
}
.scheme_img {
    width: 20px;
    height: 20px;
    margin-right: 10px;
}
/* .caption {
    white-space: nowrap;
} */

/* pin 7 Тонометр */
.scheme .scheme-wrapper .pin.pin7 {
    width: 23%;
    height: 23%;
    top: 66%;
    left: 1%;
    right: auto;
}

.scheme .scheme-wrapper .pin.pin7:before {
    border-top-width: 0;
    border-bottom-width: 2px;
    border-left-width: 0;
    border-right-width: 2px;
    top: 0;
    width: 100%;
    height: 100%;
}

/* pin 8 Аккумулятор */
.scheme .scheme-wrapper .pin.pin8 {
    width: 27%;
    top: 47%;
    left: 71%;
    height: 47%;
}

.scheme .scheme-wrapper .pin.pin8:before {
    border-top-width: 0;
    border-bottom-width: 2px;
    border-left-width: 2px;
    border-right-width: 0;
    top: 0;
    width: 100%;
    height: 100%;
}



@media screen and (min-width: 992px) {
    /* desktop */

    #pre-order {
        padding: 1em;
        font-size: .9em;
    }
    #pre-order .container {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        align-items: center;
        gap: 1em;
    }
    #pre-order .container .title {
        font-size: 1.6em;
        color: #000;
    }
    #pre-order .container .btn {
        font-size: 1.5em;
        padding: .45em 1em;
        width: auto;
    }

    .scheme .scheme-wrapper {
        aspect-ratio: 20/9;
        background-size: contain;
    }

    .scheme .pin {
        flex-direction: row;
        font-size: 20px;
        white-space: nowrap;
    }

    /* desctop pins */
    /* pin 1 LTE-модуль */
    .scheme .scheme-wrapper .pin.pin1 {
        width: 30%;
        height: auto;
        top: 12%;
        left: 6%;
        right: auto;
    }

    .scheme .scheme-wrapper .pin.pin1:before {
        content: none;
    }

    .scheme .scheme-wrapper .pin.pin1:after {
        border-top-width: 2px;
        border-bottom-width: 0;
        border-left-width: 0;
        border-right-width: 0;
        width: 100%;
    }


    /* pin 2 Камера для видеосвязи */
    .scheme .scheme-wrapper .pin.pin2 {
        top: -5%;
        width: 29%;
        height: 10%;
        right: 12.7%;
        left: auto;
    }

    .scheme .scheme-wrapper .pin.pin2:after {
        content: none;
    }

    .scheme .scheme-wrapper .pin.pin2:before {
        border-top-width: 2px;
        border-bottom-width: 0;
        border-left-width: 2px;
        border-right-width: 0;
        top: 50%;
        height: 100%;
        width: 100%;
    }

    /* pin 3 Перометр */
    .scheme .scheme-wrapper .pin.pin3 {
        width: 24.5%;
        height: auto;
        top: 7%;
        right: 13.5%;
        left: auto;
    }

    .scheme .scheme-wrapper .pin.pin3:after {
        content: none;
    }

    .scheme .scheme-wrapper .pin.pin3:before {
        border-top-width: 2px;
        border-bottom-width: 0;
        border-left-width: 0;
        border-right-width: 0;
        top: 0;
        width: 100%;
    }

    /* pin 4 Дисплей 8 */
    .scheme .scheme-wrapper .pin.pin4 {
        width: 30%;
        top: 33%;
        left: 12%;
        height: 0%;
    }

    .scheme .scheme-wrapper .pin.pin4:before {
        content: none;
    }

    .scheme .scheme-wrapper .pin.pin4:after {
        border-top-width: 2px;
        border-bottom-width: 0;
        border-left-width: 0;
        border-right-width: 0;
        top: 0;
        width: 100%;
    }

    /* pin 5 Алкотестер */
    .scheme .scheme-wrapper .pin.pin5 {
        width: 26%;
        top: 15.5%;
        right: 14%;
        left: auto;
    }

    .scheme .scheme-wrapper .pin.pin5:after {
        content: none;
    }

    .scheme .scheme-wrapper .pin.pin5:before {
        border-top-width: 2px;
        border-bottom-width: 0;
        border-left-width: 0;
        border-right-width: 0;
        top: 0;
        width: 100%;
    }

    /* pin 6 Считыватель СКУД */
    .scheme .scheme-wrapper .pin.pin6 {
        width: 30%;
        height: auto;
        top: 83%;
        right: 7%;
        left: auto;
    }

    .scheme .scheme-wrapper .pin.pin6:after {
        content: none;
    }

    .scheme .scheme-wrapper .pin.pin6:before {
        border-top-width: 2px;
        border-bottom-width: 0;
        border-left-width: 0;
        border-right-width: 0;
        top: 0;
        width: 100%;
    }

    /* pin 7 Тонометр */
    .scheme .scheme-wrapper .pin.pin7 {
        width: 30%;
        top: 64%;
        left: 7%;
    }

    .scheme .scheme-wrapper .pin.pin7:before {
        content: none;
    }

    .scheme .scheme-wrapper .pin.pin7:after {
        border-top-width: 2px;
        border-bottom-width: 0;
        border-left-width: 0;
        border-right-width: 0;
        top: 0;
        width: 100%;
    }

    /* pin 8 Аккумулятор */
    .scheme .scheme-wrapper .pin.pin8 {
        top: 40%;
        width: 29%;
        height: 10%;
        right: 7.7%;
        left: auto;
    }

    .scheme .scheme-wrapper .pin.pin8:after {
        content: none;
    }

    .scheme .scheme-wrapper .pin.pin8:before {
        border-top-width: 2px;
        border-bottom-width: 0;
        border-left-width: 0px;
        border-right-width: 0;
        top: 50%;
        height: 100%;
        width: 100%;
    }

    .caption {
        margin-right: 20px;
    }

}

/**************************************************/
/******* ecnd: SCHEME *****************************/
/**************************************************/


#aio video {
    width: 100vw;
    margin: auto;
    display: block;
    aspect-ratio: 1.5 / 1;
    object-fit: cover;
}

#online-appointment {
    background-color: #313238;
    color: #fff;
}
#online-appointment img {
    aspect-ratio: 600/420;
    object-fit: cover;
    object-position: center;
    width: 100%;
}

.for- {
    background-color: #333;
    color: #fff;
    position: relative;
}
.for- img {
    aspect-ratio: 5/4;
    object-fit: cover;
    object-position: center;
    width: 100%;
}

.for- .holder {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

@media screen and (min-width: 1200px) {
    .for- {
        aspect-ratio: 10/4;
    }
    .for- .container,
    .for- .row,
    .for- .holder {
        height: 100%;
    }
    .for- img {
        position: absolute;
        width: 50%;
        top: 0;
    }
    #for-patient .holder {
        padding-right: 3em;
    }
    #for-doctor .holder {
        padding-left: 3em;
    }
    #for-patient img {
        right: 0;
    }
    #for-doctor img {
        left: 0;
    }

}

#maked-by-doctor .title {
    background-color: #FAFAFA;
}


#platform {
    padding: 40px 0;
    background-color: #EBEBEB;
}
#platform .animation-wrapper {
    position: relative;
    overflow: hidden
}
#platform .animation{
    position: relative;
    margin-top: -10%;
    margin-bottom: -15%;
}
#platform .animation-border-mask {
    border: 2px solid #EBEBEB;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
}

#platform .d-flex .item {
    width: 100%;
    border-radius: 16px;
    background: #FFF;
    box-shadow: 6px 6px 30px 0 rgba(0, 136, 136, 0.08);
    overflow: hidden;
    justify-content: center;
    gap: .5em;
    max-width: 400px;
    margin: auto;
    align-items: center;
}

#platform .d-flex .arrows {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='25' height='25' fill='none'%3E%3Cpath stroke='%23088' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m17.655 10.64 3.72-3.72-3.72-3.72M3.375 6.92h18m-14.28 6.82-3.72 3.72 3.72 3.72m14.28-3.72h-18'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 25px;
    min-width: 40px;
    min-height: 40px;
    transform: rotate(90deg);
    align-self: center;
    transition: transform 0s 0s, opacity 1.5s 1s;
}

#platform .d-flex .item .item_title,
#platform .d-flex .item .item_image {
    font-size: 24px;
    font-weight: 500;
    min-width: 110px;
    width: 50%;
}
#platform .d-flex .item .item_title {
    padding: 1em;
}

#platform .d-flex .item img {
    width: auto;
    max-height: 15vh;
    margin: auto;
    display: block;
}

@media screen and (min-width: 992px) {
    #platform {
        padding: 100px 0 40px;
    }

    #platform .description {
        font-size: 24px;
    }

    #platform .d-flex .arrows {
        transform: rotate(0deg);
    }

    #platform .d-flex .item {
        justify-content: space-between;
        max-width: 100%;
        margin: initial;
        align-items: start;
    }

    #platform .d-flex .item img {
        width: 100%;
        height: auto;
        max-height: inherit;
    }

    #platform .d-flex .item .item_title,
    #platform .d-flex .item .item_image {
        font-size: 24px;
        padding: 18px 30px 0;
        font-weight: 500;
        width: 100%;
    }
    #platform .d-flex .item .item_image {
        padding: 0;
    }

}


#footer {
    background-color: #FFF;
    padding-top: 2em;
    padding-bottom: 2em;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.tales {
    position: relative;
    width: 130%;
}

.tales .tale {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    justify-content: start;
    border-radius: 10px;
    overflow: hidden;
    left: 15px;
    position: relative;
}

.tales .tale .frame,
.tales .tale .frame-wrapper {
    width: 100%;
    aspect-ratio: 1;
    transition: transform 0.5s ease-in-out .5s;
    position: relative;
    cursor: pointer;
}


.tales .tale .frame .front,
.tales .tale .frame .rear {
    position: absolute;
    top: 0;
    left: 0;
    box-sizing: border-box;
    padding: 1em;
    width: 100%;
    height: 100%;
    background-color: #444;
    z-index: 1;
}

.tales .tale .frame .front {
    z-index: 2;
    display: flex;
    justify-content: center;
    text-align: center;
    align-items: end;
    background-size: cover;
    background-position: center;
    font-weight: 500;
    line-height: 1.25em;
    transition: text-shadow .2s;
    color: white;
}
.tales .tale .frame .front:before  {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(51, 51, 51, 0.20) 0%, rgba(51, 51, 51, 0.60) 100%);
    z-index: -1;
    opacity: 1;
    transition: opacity .3s;
}
.tales .tale .frame-wrapper:hover .frame .front {
    text-shadow: .05em .05em .1em #313238;
}
.tales .tale .frame-wrapper:hover .frame .front:before {
    opacity: .2;
}

.tales .tale .frame .rear {
    color: white;
    z-index: 1;
    opacity: 0;
    background: rgba(2, 2, 2, 0.55);
    backdrop-filter: blur(5px);
    transition: opacity 0.5s 1s ease-in-out, z-index 0.5s 1s step-end;
}
.tales .tale .frame-wrapper.active .rear {
    z-index: 2;
    opacity: 1;
    transition: opacity 0.5s ease-in-out, z-index 0.5s step-start;
}
.tales .tale .frame .rear .content {
    font-size: .6em;
    text-align: left;
}

@media screen and (min-width: 1200px) {
    .tales {
        width: initial;
        left: initial;
    }
    .tales .tale {
        left: initial;
    }

}







footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: .5em;
    height: 100%;
    justify-content: space-between;
}
footer a {
    text-decoration: none;
    color: #000;
    transition: color 0.5s ease-in-out;
}
footer a:hover {
    color: #FF6B00;
}
footer .menu a {
    font-size: smaller;
    text-transform: uppercase;
}


.modal.fade .modal-content {
    padding: 1.3em;
    border-radius: 0;
}
.modal.fade .modal-dialog {
    max-width: 600px;
}
.modal.fade .modal-content .form-control {
    border: none;
    border-radius: 0;
    border-bottom: 1px solid rgba(68, 68, 68, 0.20);
}
.modal.fade .modal-content .form-control.is-invalid:not(:focus) {
    color: #dc3545;
    border-bottom: 2px solid #dc3545;
}
.modal.fade .modal-content .small{
    font-size: .8em;
}
.modal.fade .modal-content a {
    color: #FF6B00;
    text-decoration: none;
    transition: color 0.25s ease-in-out;
}
.modal.fade .modal-content a:hover {
    color: #000;
}
[data-bs-dismiss="modal"] svg {
    cursor: pointer;
}
.d-mobile {
    display: block;
}

.d-desktop {
    display: none;
}

@media screen and (max-width: 992px) {

    #scrollplay {
        min-height: 230vh;
        overflow-x: hidden;
    }
    #scrollplay .container,
    #scrollplay .container.js-sticky-widget {
        height: 80vh;
        min-height: 80vh;
    }
    #scrollplay .t11video {
        width: 100%;
        object-fit: cover;
        position: relative;
    }
    .scrollplay-wrapper .text {
        font-size: .7rem;
    }
    .tales {
        font-size: .7rem;
    }

    #footer {
        font-size: 17px;
        padding-bottom: 6em;
    }
}

@media screen and (min-width: 991px) {
    #title img {
        transform: scale(4.5) translate(0, 4em);
        transition: transform 1s ease-in-out;
    }

    #title.active img {
        transform: scale(.9) translate(1em, 2em);
    }
    #revolution .container {
        padding-top: 3em;
        padding-bottom: 3em;
    }

    #revolution h3 {
        font-size: 2.4em;
    }
    #revolution p {
        font-size: 1.2em;
    }

    #scrollplay .t11video {
        aspect-ratio: 1.3;
    }
    .scrollplay-wrapper .text {
        max-width: 90vw;
    }
    .scrollplay-wrapper .float-text p {
        font-size: 1em;
    }
    .scrollplay-wrapper .float-text p.lead {
        font-size: 1.3em;
    }
    #burger-menu,
    #burger-menu.active {
        width: 55%;
        left: auto;
        box-shadow: 0 0 10px rgba(0, 0, 0, .25);
    }
    .tales .tale .ftail-grid {
        gap: 1em;
    }
    .tales .tale .frame .front {
        font-size: 1.4rem;
    }
    #footer {
        background-color: #FFF;
        padding-top: 3em;
        padding-bottom: 3em;
    }
    #open-burger {
        width: 4em;
    }

    #open-burger span {
        width: 4em;
    }
    #burger-menu #close {
        cursor: pointer;
        font-size: 2em;
        position: absolute;
        right: 1em;
        top: 1em;
        width: 81px;
    }
    #aio video {
        aspect-ratio: 3 / 1;
    }
    .d-mobile {
        display: none;
    }
    .d-desktop {
        display: block;
    }
}

@media screen and (min-width: 1200px) {
    .w-xl-40 {
        max-width: 40%;
        margin: auto;
    }
    .w-xl-50 {
        max-width: 50%;
        margin: auto;
    }
    .w-xl-70 {
        max-width: 70%;
        margin: auto;
    }
    #title h1 {
        font-size: 3.4em;
    }
    #scrollplay .t11video {
        aspect-ratio: 16/9;
    }
    #pre-order .container {
        flex-direction: row;
    }
    .tales .tales-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        flex-wrap: wrap;
        gap: 1em;
    }
    #platform .animation-wrapper {
        top: -2em;
    }
    #burger-menu,
    #burger-menu.active {
        width: 30%;
    }
    #open-burger {
        width: 5.8em;
    }
    #open-burger span {
        width: 5.8em;
    }
}

@media screen and (min-width: 1630px) {
    .container {
        max-width: 1590px;
    }
}

.p-relative {
    position: relative;
}
.p-absolute {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
}
.card.p-absolute {
    top: 8%;
    bottom: 8%;
    left: 5%;
    right: 65%;
    padding: 3%;
    background-color: rgba(255, 255, 255, 0.35);
}

#find_more {
    background-color: #fff;
    padding: 10px 0;
    color: #333;
    position: fixed;
    bottom: 0;
    width: 100%;
    z-index: 3;
    opacity: 1;
    transition: opacity 0.5s ease-in-out, z-index 0.5s step-start;
    box-shadow: -6px -6px 23.8px 0 rgba(0, 24, 69, 0.08);
}
#find_more.hidden {
    opacity: 0;
    z-index: -1;
    transition: opacity 0.5s ease-in-out, z-index 0.5s step-end;
}

#find_title {
    font-size: 24px;
}

#find_title h2 {
    margin: 0;
    font-size: 24px;
    font-weight: 600;
    line-height: 1.3;
}


#registration_more {
    background-color: #f9f9f9;
    padding: 40px 0;
}

#registrationfind_title h2 {
    font-size: 32px;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 15px;
    color: #333;
}

#registrationfind_title p {
    font-size: 19.5px;
    line-height: 1.4;
    color: #666;
    max-width: 824px;
    margin: 0;
}
#registration_more form {
    position: relative;
    margin-bottom: 0;
}
#registration_more form .wpcf7-form-control-wrap {
    display: block;
}
#registration_more form .btn-black {
    font-size: .8em;
    position: absolute;
    top: 0.4rem;
    right: 0.35rem;
    z-index: 2;
}
#registration_more form input[name="your-email"] {
    padding: 0.7rem 1.5rem;
    border-radius: 1em;
}
#registration_more form input[name="your-email"]::placeholder {
    font-size: .8em;
}
#registration_more form span.wpcf7-not-valid-tip {
    position: absolute;
    display: block;
    font-size: .8em;
    bottom: -1rem;
    right: 0.35rem;
    z-index: 1;
}

@media screen and (min-width: 1200px) {
    #find_more {
        padding: 14px 0;
    }
    #registration_more {
        padding: 80px 0;
    }
}
