@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@100;300;400;500;700;900&display=swap');

body {
    width: 100%;
    height: 100vh;
    overflow: hidden;
    /* background-image: linear-gradient(215deg, #000971 0%, #1a30a4 100%); */
    /* background-image: linear-gradient(215deg, #222668 0%, #40ac 100%); */
    background: #000;
    margin: 0;
    font-family: 'Roboto', sans-serif;
}

.preload * {
    -webkit-transition: none !important;
    -moz-transition: none !important;
    -ms-transition: none !important;
    -o-transition: none !important;
    transition: none !important;
}

.button {
    cursor: pointer;
}

.content {
    /* background: url(waves.png); */
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.item {
    height: 100%;
    max-width: 33.33%;
    width: 100%;
    position: relative;
    overflow: hidden;
    background-size: cover !important;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: 800ms;
}

.item-1.item:hover+.item-2 {
    transform: translate(135px, 0px) skew(-25deg, 0deg) translate(-100px, 0px);
}

.item-1.item:hover {
    transform: translate(00px, 0px);
}

.item-1.item .bg-image,
.item-2.item .bg-image {
    transition: 800ms;
}

.item-1.item:hover .bg-image {
    width: 200%;
    transition: 800ms;
}

.item-2.item:hover {
    transform: skew(-25deg, 0deg) translate(-100px, 0px) scale(1.3);
    transition: 800ms;
}

.item-2.item:hover img.bg-image {
    transform: skew(25deg, 0deg) scale3d(2, 1, 1) scale(.8);
    transition: 800ms;
}

.item-2.item:hover .item-content {
    transform: skew(25deg, 0deg) translate(0px, 0px) scale(.8);
    transition: 800ms;
}

img.bg-image {
    height: 100%;
    width: 100%;
    position: absolute;
}

.item-2.item img.bg-image {
    height: 100%;
    width: 100%;
    transform: skew(25deg, 0deg) scale3d(2, 1, 1);
}

.item-1.item {
    height: 100%;
    max-width: 100% !important;
    width: 100%;
    /* transform: none !important; */
    overflow: unset !important;
    transform: translate(-100px, 0px);
}

.item-1.item img {
    transform: none !important;
    width: 145%;
}

.item-1.item .bg-image {
    width: 200%;
    object-fit: cover;
}

.text-content {
    height: 100%;
    width: 100%;
    display: flex;
    align-items: end;
    flex-direction: column;
    text-align: end;
    justify-content: center;
    color: #fff;
    padding-right: 100px;
    padding-left: 75px;
    z-index: -1;
}

.item-3.item {
    transform: unset !important;
    display: flex;
    align-items: center;
    justify-content: end;
}

.item-2.item {
    transform: skew(-25deg, 0deg) translate(-50px, 0px);
}

.item-2.item .item-content {
    transform: skew(25deg, 0deg) translate(0px, 0px);
    transition: 800ms;
}

.text-content h1 {
    font-size: 45px;
    font-weight: 900;
    margin-bottom: 10px;
}

.text-content p {
    font-size: 14px;
    font-weight: 300;
}

.item-content {
    display: flex;
    position: relative;
    flex-direction: column;
    align-items: center;
    z-index: 9;
}

.item:not(:last-child):after {
    content: "";
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    background: transparent;
    z-index: 0;
}

.item .bg-image {
    filter: brightness(0.7);
}

img.logo {
    height: auto !important;
    object-fit: contain !important;
    width: 165px !important;
}

a.button {
    width: 150px;
    height: 45px;
    background: #18569e00;
    border: 1px solid#fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    text-decoration: none;
    color: #fff;
    text-transform: uppercase;
    font-weight: 400;
    margin-top: 35px;
    position: relative;
    transition: 400ms;
    border-radius: 10px;
}

a.button:hover:not(.soon) {
    background: #05107a;
    border: 1px solid #05107a;
    color: #fff;
    transition: 400ms;
}

a.button:hover .soon {
    opacity: 0;
    transition: 400ms;
}

.soon {
    position: absolute;
    width: 120px;
    top: -2px;
    right: -14px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.soon img {
    position: absolute;
    object-fit: contain;
    width: 100% !important;
}

.soon span {
    font-size: 7px;
    z-index: 99;
    display: flex;
    position: relative;
    width: 65px;
    text-align: center;
    top: -3px;
    font-weight: 500;
    text-transform: lowercase;
}

a.otobot-logo {
    position: absolute;
    top: 125px;
}

a.otobot-logo img {
    height: 50px;
}

.item-content span.button {
    width: 115px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-transform: none !important;
    text-decoration: none !important;
    color: #fff;
    border: 1px solid #fff;
    background: none !important;
    border-radius: 10px;
    margin-top: 25px;
    font-size: 14px;
    font-weight: 400;
    transition: 400ms;
}

a.item:hover .item-content span.button {
    color: #000;
    border: 1px solid #fff;
    background: #fff !important;
    transition: 400ms;
}

a.item {
    text-decoration: none;
}

@media screen and (max-width: 992px) {
    .content {
        flex-direction: column;
        height: 100vh !important;
    }

    *,
    *:after,
    *:hover {
        transform: none !important;
    }

    .content .item {
        width: 100% !important;
        max-width: 100%;
        /* height: 33.33vh !important; */
    }

    .content .item .bg-image {
        width: 100% !important;
    }

    .content .item-3 {
        order: 0;
        height: 40dvh !important;
    }

    .content .item-1 {
        order: 2;
        height: 30dvh !important;
    }

    .content .item-2 {
        order: 1;
        height: 30dvh !important;
    }

    .text-content {
        padding: 15px !important;
    }

    .item-3 .text-content {
        justify-content: flex-start !important;
    }

    .text-content h1 {
        font-size: 30px;
        line-height: 1;
    }

    .text-content p {
        font-size: 12px;
        margin: 6px 0;
    }

    .item::after {
        transform: none !important;
    }

    a.otobot-logo {
        position: absolute;
        bottom: 15px !important;
        top: unset !important;
    }

    a.otobot-logo img {
        height: 15px;
    }

    img.logo {
        height: 25px;
    }

    a.button {
        width: 135px;
        height: 35px;
    }
}


/** max992 **/


/**** Laptop ****/

@media (max-width: 1440px) {
    .text-content {
        padding-right: 50px;
        padding-left: 0;
    }

    .item-1.item {
        transform: translate(-20px, 0px);
    }

    .item-1.item:hover {
        transform: scale(1.1);
    }

    .item-1.item:hover+.item-2 {
        transform: translate(75px, 0px) skew(-25deg, 0deg) translate(-100px, 0px) !important;
    }

    .item-1.item .bg-image {
        width: 150%;
    }

    .item-1.item:hover .bg-image {
        width: 175%;
        transition: 800ms;
    }

    .item-2.item {
        transform: skew(-25deg, 0deg) translate(-100px, 0px) scale(1);
    }

    .item-2.item:hover {
        transform: skew(-25deg, 0deg) translate(-100px, 0px) scale(1.2);
        transition: 800ms;
    }

    .item-2.item:hover img.bg-image {
        transform: skew(25deg, 0deg) scale3d(2, 1, 1) scale(1.1);
        transition: 800ms;
    }

    .item-2.item:hover .item-content {
        transform: skew(25deg, 0deg) translate(0px, 0px) scale(1);
        transition: 800ms;
    }

    .content {
        background: none;
    }

    img.logo {
        height: 20px;
    }
}


/**** Laptop END ****/


/**** Tablet ****/

@media screen and (max-width: 768px) {}