@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+SC:wght@300&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto+Mono&display=swap');
:root {
    box-sizing: border-box;
    --primary: #fff;
    --secondary: black;
}

*,
*::after,
*::before {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}

 ::-webkit-scrollbar-track {
    background: #fff;
}

 ::-webkit-scrollbar-thumb {
    background: linear-gradient(#ebdfdf, #6d7197);
}

body {
    font-family: 'Noto Sans SC', sans-serif;
    font-size: 1rem;
}


/* Background */

#container {
    position: fixed;
    height: 100%;
    width: 100%;
}

#output {
    width: 100%;
    height: 100%;
}


/* LANGUAGE */

.change-language>div {
    box-shadow: 5px 5px 10px rgba(163, 177, 198, 0.6), -5px -5px 10px rgba(255, 255, 255, 0.5);
    cursor: pointer;
    margin-bottom: 0.6vw;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    background-color: #fff;
    border-radius: 50px;
    font-weight: 600;
    text-shadow: 0 0 1px rgba(0, 0, 0, 0.6), 0 0 3px rgba(0, 0, 0, 0.5);
    transition: all 0.3s;
}

.change-language>div:hover {
    color: #fff;
    background: rgb(87, 85, 85);
    text-shadow: 0 0 1px rgba(255, 255, 255, 0.6), 0 0 3px rgba(255, 255, 255, 0.5);
}

.change-language {
    position: fixed;
    bottom: 7vw;
    right: 2vw;
    z-index: 9;
}

@media only screen and (max-width: 1430px) {
    .change-language {
        bottom: 13vw;
    }
}

@media only screen and (max-width: 630px) {
    .change-language {
        bottom: 25vw;
    }
}

.act34 {
    animation: adr33 1.2s infinite alternate-reverse;
}

@keyframes adr33 {
    0% {
        transform: translateX(10px);
    }
    100% {
        transform: translateX(0px);
    }
}

.active::before {
    -webkit-animation: inner-ripple 2000ms linear infinite;
    -moz-animation: inner-ripple 2000ms linear infinite;
    animation: inner-ripple 2000ms linear infinite;
}

.active::after {
    -webkit-animation: outer-ripple 2000ms linear infinite;
    -moz-animation: outer-ripple 2000ms linear infinite;
    animation: outer-ripple 2000ms linear infinite;
}

.active::after,
.active::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    border-radius: 50%;
    background: #000;
    opacity: 0.15;
    box-sizing: border-box;
}

@keyframes outer-ripple {
    0% {
        transform: scale(1);
        filter: alpha(opacity=50);
        opacity: 0.5;
        -webkit-transform: scale(1);
        -moz-transform: scale(1);
        -ms-transform: scale(1);
        -o-transform: scale(1);
        -webkit-filter: alpha(opacity=50);
    }
    80% {
        transform: scale(1.5);
        filter: alpha(opacity=0);
        opacity: 0;
        -webkit-transform: scale(1.5);
        -moz-transform: scale(1.5);
        -ms-transform: scale(1.5);
        -o-transform: scale(1.5);
    }
    100% {
        transform: scale(2.5);
        filter: alpha(opacity=0);
        opacity: 0;
        -webkit-transform: scale(2.5);
        -moz-transform: scale(2.5);
        -ms-transform: scale(2.5);
        -o-transform: scale(2.5);
    }
}

@keyframes inner-ripple {
    0% {
        transform: scale(1);
        filter: alpha(opacity=50);
        opacity: 0.5;
        -webkit-transform: scale(1);
        -moz-transform: scale(1);
        -ms-transform: scale(1);
        -o-transform: scale(1);
    }
    30% {
        transform: scale(1);
        filter: alpha(opacity=50);
        opacity: 0.5;
        -webkit-transform: scale(1);
        -moz-transform: scale(1);
        -ms-transform: scale(1);
        -o-transform: scale(1);
    }
    100% {
        transform: scale(1.5);
        filter: alpha(opacity=0);
        opacity: 0;
        -webkit-transform: scale(1.5);
        -moz-transform: scale(1.5);
        -ms-transform: scale(1.5);
        -o-transform: scale(1.5);
    }
}


/* TOP */

.ceing {
    box-shadow: 5px 5px 10px rgb(163 177 198 / 60%), -5px -5px 10px rgb(255 255 255 / 50%);
    cursor: pointer;
    margin-bottom: 0.6vw;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    background-color: #fff;
    border-radius: 50%;
    font-weight: 600;
}


/* Navigation */

/* Navigation */

header {
    display: -webkit-flex;
    justify-content:flex-end;
    padding: 2em 1em;
    height: 100vh;
}

.hamburger {
    --hm-width: 2em;
    --hm-height: 0.2em;
    --spacing: calc(var(--hm-width) / 4);
    width: var(--hm-width);
    height: var(--hm-height);
    background-color: var(--primary);
    position: fixed;
    transition: transform 0.8s ease-in-out;
    z-index: 3;
}

.hamburger::after,
.hamburger::before {
    content: "";
    width: 50%;
    height: inherit;
    background-color: var(--primary);
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    transition: transform 0.8s ease-in-out;
}

.hamburger::after {
    top: calc(-1 * var(--spacing));
}

.hamburger::before {
    top: var(--spacing);
    left: 50%;
}

.close.hamburger::before,
.close.hamburger::after {
    left: 50%;
    transform: translate(-50%) rotate(-450deg);
    background-color: white;
}

.close.hamburger {
    transform: rotate(45deg);
    background-color: white;
}

.nav2 {
    position:fixed;
    left: 5rem;
    z-index: 1;
}

@media only screen and (max-width: 1440px) {
    .nav2 {
        left: 1rem;
    }
}


.nav2 h1 {
    color: #fff;
}

@media only screen and (max-width: 768px) {
    .nav2 {
        display: none;
    }
}

.menu2 li {
    margin: 1rem;
    list-style: none;
    transition: all 0.3s ease;
}

.menu2 li a {
    font-size: 1.2rem;
    text-transform: capitalize;
    color: #ffffff;
    text-decoration: none;
    font-weight: 300;
    display: block;
    transition: all 0.3s ease;
    text-decoration: none;
}

@media only screen and (max-width: 1440px) {
    .menu2 li a{
        font-size: 0.7rem;
    }
}


.menu2 li a:hover {
    color: #ffffff;
    padding-left: 25px;
}

.menu-item2 {
    color: #fff;
}

.nav1 {
    position: absolute;
    background-color: var(--secondary);
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: center;
    transform: scaleX(0);
    transform-origin: left center;
    opacity: 0;
    transition: transform 0.3s ease-in-out, opacity 0.2s ease-in;
}

.reveal-nav {
    transform: scaleX(1);
    opacity: 1;
}

.menu {
    list-style: none;
}

.menu-item {
    color: #fff;
    text-decoration: none;
    font-size: calc(0.5rem + 2vw);
    text-align: center;
    opacity: 0;
    transform: translate(-20em);
    display: block;
    transition: transform 0.8s ease-in-out, opacity 0.3s ease-in;
}

.menu li+li {
    margin-top: 2em;
}

.reveal-items .menu-item {
    transform: translate(0);
    opacity: 1;
}

.reveal-items li:nth-child(1) .menu-item {
    transition-delay: 0.1s;
}

.reveal-items li:nth-child(2) .menu-item {
    transition-delay: 0.2s;
}

.reveal-items li:nth-child(3) .menu-item {
    transition-delay: 0.3s;
}

.reveal-items li:nth-child(4) .menu-item {
    transition-delay: 0.4s;
}

.reveal-items li:nth-child(5) .menu-item {
    transition-delay: 0.5s;
}

.reveal-items li:nth-child(6) .menu-item {
    transition-delay: 0.6s;
}
.reveal-items li:nth-child(7) .menu-item {
    transition-delay: 0.7s;
}




/* Backgroun image */


/* Backgroun image */

.zhao {
    position: absolute;
    width: 100%;
    height: 100%;
    background-position: center center;
    background-attachment: fixed;
    overflow: hidden;
    background-color: rgba(255, 255, 255, 0);
    background: url("../img/earth.jpg") 0px 0px no-repeat;
    background-size: 200% 100%;
}

.zhao-logo {
    width: 40%;
    height: auto;
    display: flex;
    margin: 5rem auto;
}

@media only screen and (max-width: 980px) {
    .zhao-logo {
        width: 300px;
        height: auto;
        display: flex;
        margin: 8rem auto;
    }
}

@media only screen and (max-width: 400px) {
    .zhao-logo {
        width: 250px;
        height: auto;
        display: flex;
        margin: 10rem auto;
    }
}

.zhao-text {
    color: #fff;
    text-align: center;
    font-size: 7rem;
}

@media only screen and (max-width: 1032px) {
    .zhao-text {
        font-size: 5rem;
    }
}

@media only screen and (max-width: 980px) {
    .zhao-text {
        font-size: 5rem;
        margin-top: -9.5rem;
    }
}

@media only screen and (max-width: 724px) {
    .zhao-text {
        font-size: 4rem;
    }
}

@media only screen and (max-width: 578px) {
    .zhao-text {
        font-size: 16.5vw;
    }
}

.rotate {
    -webkit-transform: scale(0.9);
    transform: scale(0.9);
}

.rotate:first-child {
    -webkit-animation: bop 1s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards infinite alternate;
    animation: bop 1s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards infinite alternate;
}

.rotate:last-child {
    -webkit-animation: bopB 1s 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards infinite alternate;
    animation: bopB 1s 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards infinite alternate;
}

@-webkit-keyframes bop {
    0% {
        -webkit-transform: scale(0.9);
        transform: scale(0.9);
    }
    50%,
    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

@keyframes bop {
    0% {
        -webkit-transform: scale(0.9);
        transform: scale(0.9);
    }
    50%,
    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

@-webkit-keyframes bopB {
    0% {
        -webkit-transform: scale(0.9);
        transform: scale(0.9);
    }
    80%,
    100% {
        -webkit-transform: scale(1) rotateZ(-3deg);
        transform: scale(1) rotateZ(-3deg);
    }
}

@keyframes bopB {
    0% {
        -webkit-transform: scale(0.9);
        transform: scale(0.9);
    }
    80%,
    100% {
        -webkit-transform: scale(1) rotateZ(-3deg);
        transform: scale(1) rotateZ(-3deg);
    }
}


/* Cloud */

.main-waves {
    position: relative;
}

.waves {
    position: absolute;
    bottom: 0vw;
    height: 11vw;
    width: 100%;
}

@media only screen and (max-width: 1024px) {
    .waves {
        height: 22vw;
    }
}

@media only screen and (max-width: 768px) {
    .waves {
        height: 45vw;
    }
}


/* Animation */

.parallax>use {
    animation: move-forever 25s cubic-bezier(.55, .5, .45, .5) infinite;
}

.parallax>use:nth-child(1) {
    animation-delay: -2s;
    animation-duration: 7s;
}

.parallax>use:nth-child(2) {
    animation-delay: -3s;
    animation-duration: 10s;
}

.parallax>use:nth-child(3) {
    animation-delay: -4s;
    animation-duration: 13s;
}

.parallax>use:nth-child(4) {
    animation-delay: -5s;
    animation-duration: 20s;
}

@keyframes move-forever {
    0% {
        transform: translate3d(-90px, 0, 0);
    }
    100% {
        transform: translate3d(85px, 0, 0);
    }
}


/* MAIN HERO */

.main-hero {
    position: relative;
    margin-bottom: 20rem;
}

.main-hero-img {
    margin: 0;
    position: absolute;
    top: 50%;
    left: 50%;
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.main-hero-img img {
    position: relative;
    width: 350.66px;
    height: 297.66px;
    object-fit: cover;
    background-size: 17.7vw 17.7vw;
}

.main-hero-img img {
    transition: all .5s;
}

.main-hero-img img:hover {
    transform: scale(0.9);
}

@media (max-width: 550px) {
    .main-hero-img img {
        width: 250.66px;
        height: 197.66px;
    }
}


/* ABOUT */

.max-width {
    max-width: 1300px;
    padding: 0 80px;
    margin: auto;
}

.case {
    position: relative;
    margin-bottom: 10rem;
    font-size: 3.5rem;
}

.case h1 {
    border-bottom: 3px solid rgb(173 173 173);
}

@media (max-width: 550px) {
    .case {
        font-size: 2.5rem;
        margin-top: 5rem;
    }
}

@media (max-width: 390px) {
    .case {
        font-size: 1.5rem;
    }
}


/* case introduction 2*/

.about {
    font-family: 'Poppins', sans-serif;
    position: relative;
}

.about .about-content {
    display: flex;
    flex-wrap: wrap;
    max-width: 1000px;
    margin: auto;
    justify-content: space-between;
    border-bottom: 3px solid rgb(173 173 173);
}

@media (max-width: 768px) {
    .about .about-content {
        border-bottom: none
    }
}

section .title {
    position: relative;
    font-size: 40px;
    font-weight: 500;
    margin-bottom: 60px;
    padding-bottom: 20px;
    font-family: 'Ubuntu', sans-serif;
}

.about .about-content .right {
    width: 45%;
}

.about .about-content .left img {
    height: 600px;
    width: 450px;
    object-fit: cover;
    margin-bottom: 3rem;
    position: relative;
    left: 3rem;
    margin-top: 3rem;
}

@media (max-width: 1200px) {
    .about .about-content .left img {
      left: 0;
    }
}

@media (max-width: 1400px) {
    .about .about-content .left img {
      margin-top: 4rem;
    }
}

.about .about-content .left {
    transition: all .5s;
}

.about .about-content .left:hover {
    transform: scale(0.9);
}

.about .about-content .right {
    width: 55%;
}


.about .about-content .column {
    transform: translate(0, 0);
    -webkit-transform: translate(0, 0);
}

.about .about-content .column h1 {
    margin-bottom: 3rem;
    font-size: 3rem;
    font-family: 'Noto Sans SC', sans-serif;
}

@media (max-width: 1200px) {
    .about .about-content .column h1 {
        text-align: center;
    }
}

.about .about-content .right p {
    text-align: justify;
    line-height: 2.5rem;
    color: #686765;
}

@media (max-width: 1200px) {
    .max-width {
        max-width: 930px;
    }
    .about .about-content .column {
        width: 100%;
    }
    .about .about-content .left {
        display: flex;
        justify-content: center;
        margin: 60px auto 60px;
    }
    .about .about-content .right {
        flex: 100%;
    }
}

@media (max-width: 690px) {
    .max-width {
        padding: 0 23px;
    }
}

@media (max-width: 390px) {
    .about .about-content .left img {
        height: 280px;
        width: 280px;
    }
}


/* Business feature */

.business-feature {
    position: relative;
}

.business-feature h1 {
    max-width: 1200px;
    margin: 5rem auto;
    font-size: 3rem;
    position: relative;
    font-family: 'Noto Sans SC', sans-serif;
}

@media (max-width: 1440px) {
    .business-feature h1 {
        margin: 5rem 9rem auto;
    }
}

.hezuola {
    display: flex;
    margin-top: 15rem;
    justify-content: center;
}

.hz_tilt {
    font-size: 4.17vw;
    font-weight: 400;
    color: #000000;
}

.hz_line {
    background: #000000;
}

.imgs3 {
    width: 65.23vw;
    height: 52.4vw;
    object-fit: contain;
}

.min_tioe {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 9.13vw;
    font-size: 2.08vw;
    font-weight: bold;
    color: #FFFFFF;
}

.ys2:hover .numsr {
    color: #000000;
}

.spanpos {
    position: absolute;
    font-size: 1.25vw;
    font-weight: 500;
    color: #959595;
    width: 11vw;
    text-align: center;
}


/* mobile section for bussiness process */

.btext {
    position: relative;
    /* font-size: 1.4rem; */
    text-align: center;
    align-items: center;
    align-content: center;
    padding: 40px;
    font-size: 2rem;
    font-weight: 900;
    font-family: 'Noto Sans SC', sans-serif;
}


/* bprocess media query */

@media (max-width: 476px) {
    .btext {
        font-size: 1.5rem;
    }
}

@media (max-width: 380px) {
    .btext {
        font-size: 1.2rem;
    }
}

@media (max-width: 768px) {
    .business-feature {
        display: none;
    }
}

@media (max-width: 4000px) {
    .bprocess {
        display: none;
    }
}

@media (max-width: 768px) {
    .bprocess {
        display: contents;
    }
}

.wrapper1 {
    max-width: 1090px;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    margin: auto;
    justify-content: space-between;
}

.wrapper1 .table {
    width: calc(33% - 20px);
    padding: 25px 25px;
    position: relative;
}

@media (max-width: 1020px) {
    .wrapper1 .table {
        width: calc(50% - 20px);
        margin-bottom: 40px;
    }
}

@media (max-width: 698px) {
    .wrapper1 .table {
        width: 100%;
    }
}

.table .price-section {
    display: flex;
    justify-content: center;
}

.price-section .price-area {
    height: 120px;
    width: 120px;
    background: #ffd861;
    border-radius: 50%;
    padding: 2px;
}

.price-section .price-area .inner-area {
    height: 100%;
    width: 100%;
    border-radius: 50%;
    border: 3px solid #fff;
    color: #fff;
    line-height: 117px;
    text-align: center;
    position: relative;
}

.price-area .inner-area .text {
    font-size: 25px;
    font-weight: 400;
    position: absolute;
    top: -10px;
    left: 17px;
}

.price-area .inner-area .price {
    font-size: 55px;
    font-weight: 500;
}

.table .package-name {
    width: 100%;
    height: 2px;
    background: black;
    margin: 35px 0;
    position: relative;
}

.table .package-name::before {
    position: absolute;
    content: "ビジネス プロセス";
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #fff;
    font-size: 12px;
    padding: 0 10px;
    font-weight: bolder;
}

@media (max-width: 320px) {
    .table .package-name::before {
        font-size: 9px;
    }
}

.table .features li {
    list-style: none;
    display: flex;
    text-align: center;
    justify-content: space-between;
    margin-bottom: 15px;
}

.features li .list-name {
    font-size: 25px;
    font-weight: 400;
    margin: auto;
    font-family: 'Noto Sans SC', sans-serif;
}

.features li .icon {
    font-size: 15px;
}

.basic .package-name {
    background: black;
}

.Premium .package-name {
    background: black;
}

.Ultimate .package-name {
    background: black;
}

.basic ::selection,
.basic .price-area,
.basic .inner-area {
    background: black;
}

.Premium ::selection,
.Premium .price-area,
.Premium .inner-area {
    background: black;
}

.Ultimate ::selection,
.Ultimate .price-area,
.Ultimate .inner-area {
    background: black;
}

.animated {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: none;
    animation-fill-mode: none
}

.animated.infinite {
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite
}

.animated.hinge {
    -webkit-animation-duration: 2s;
    animation-duration: 2s
}

@-webkit-keyframes rotateIn {
    0% {
        -webkit-transform-origin: center;
        transform-origin: center;
        -webkit-transform: rotate3d(0, 0, 1, -200deg);
        transform: rotate3d(0, 0, 1, -200deg);
        opacity: 0
    }
    100% {
        -webkit-transform-origin: center;
        transform-origin: center;
        -webkit-transform: none;
        transform: none;
        opacity: 1
    }
}

@keyframes rotateIn {
    0% {
        -webkit-transform-origin: center;
        transform-origin: center;
        -webkit-transform: rotate3d(0, 0, 1, -200deg);
        transform: rotate3d(0, 0, 1, -200deg);
        opacity: 0
    }
    100% {
        -webkit-transform-origin: center;
        transform-origin: center;
        -webkit-transform: none;
        transform: none;
        opacity: 1
    }
}

.rotateIn {
    -webkit-animation-name: rotateIn;
    animation-name: rotateIn
}

@-webkit-keyframes rotateInDownLeft {
    0% {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: rotate3d(0, 0, 1, -45deg);
        transform: rotate3d(0, 0, 1, -45deg);
        opacity: 0
    }
    100% {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: none;
        transform: none;
        opacity: 1
    }
}

@keyframes rotateInDownLeft {
    0% {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: rotate3d(0, 0, 1, -45deg);
        transform: rotate3d(0, 0, 1, -45deg);
        opacity: 0
    }
    100% {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: none;
        transform: none;
        opacity: 1
    }
}

.rotateInDownLeft {
    -webkit-animation-name: rotateInDownLeft;
    animation-name: rotateInDownLeft
}

@-webkit-keyframes rotateInDownRight {
    0% {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: rotate3d(0, 0, 1, 45deg);
        transform: rotate3d(0, 0, 1, 45deg);
        opacity: 0
    }
    100% {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: none;
        transform: none;
        opacity: 1
    }
}

@keyframes rotateInDownRight {
    0% {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: rotate3d(0, 0, 1, 45deg);
        transform: rotate3d(0, 0, 1, 45deg);
        opacity: 0
    }
    100% {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: none;
        transform: none;
        opacity: 1
    }
}

.rotateInDownRight {
    -webkit-animation-name: rotateInDownRight;
    animation-name: rotateInDownRight
}

@-webkit-keyframes rotateInUpLeft {
    0% {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: rotate3d(0, 0, 1, 45deg);
        transform: rotate3d(0, 0, 1, 45deg);
        opacity: 0
    }
    100% {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: none;
        transform: none;
        opacity: 1
    }
}

@keyframes rotateInUpLeft {
    0% {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: rotate3d(0, 0, 1, 45deg);
        transform: rotate3d(0, 0, 1, 45deg);
        opacity: 0
    }
    100% {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: none;
        transform: none;
        opacity: 1
    }
}

.rotateInUpLeft {
    -webkit-animation-name: rotateInUpLeft;
    animation-name: rotateInUpLeft
}

@-webkit-keyframes rotateInUpRight {
    0% {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: rotate3d(0, 0, 1, -90deg);
        transform: rotate3d(0, 0, 1, -90deg);
        opacity: 0
    }
    100% {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: none;
        transform: none;
        opacity: 1
    }
}

@keyframes rotateInUpRight {
    0% {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: rotate3d(0, 0, 1, -90deg);
        transform: rotate3d(0, 0, 1, -90deg);
        opacity: 0
    }
    100% {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: none;
        transform: none;
        opacity: 1
    }
}

.rotateInUpRight {
    -webkit-animation-name: rotateInUpRight;
    animation-name: rotateInUpRight
}


/* slide up */

@keyframes slideInUp {
    0% {
        -webkit-transform: translateY(100%);
        transform: translateY(100%);
        visibility: visible
    }
    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0)
    }
}

.slideInUp {
    -webkit-animation-name: slideInUp;
    animation-name: slideInUp
}

.trolley1 {
    font-size: 95px;
}

.trolley11 {
    font-size: 85px;
}

.trolley2 {
    font-size: 99px;
}

.trolley {
    font-size: 55px;
}

.trolley3 {
    font-size: 97px;
}

.trolley4 {
    font-size: 55px;
}

.trolley6 {
    font-size: 97px;
}

.trolley7 {
    font-size: 99px;
}

.trolley8 {
    font-size: 75px;
}

.trolley9 {
    font-size: 70px;
}


/* PARTNERS */

.partners {
    position: relative;
    margin-top: 20rem;
}

@media screen and (max-width: 768px) {
    .partners {
        margin: 1rem;
    }
}

.partners h1 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 5rem;
}

.container-grid {
    max-width: 1000px;
    margin: 0 auto;
    padding-top: 20px;
    padding-bottom: 20px;
    font-family: raleway;
    font-size: 14px;
    font-weight: 600;
}

.grid {
    display: grid;
    grid-template-columns: auto;
    grid-template-rows: auto;
    grid-gap: 10px;
}

.imgr_fluidr img {
    width: 200px;
}

.imgr_fluidr {
    margin-left: 102px;
}

@media screen and (max-width: 669px) {
    .imgr_fluidr {
        display: block;
        text-align: center;
        margin-left: auto;
    }
}

.item {
    justify-content: center;
    display: flex;
    align-items: center;
    height: auto;
}

.item1 {
    justify-content: center;
    align-items: center;
    height: auto;
    margin-top: 28px;
}

@media all and (min-width: 670px) {
    .container {
        width: 100%;
    }
    .grid {
        grid-template-columns: 1fr 1fr;
        grid-auto-rows: min-content;
        grid-gap: 10px;
    }
}

@media all and (min-width: 900px) {
    .grid {
        grid-template-columns: 1fr 1fr 1fr;
        grid-template-rows: auto;
    }
}

@media all and (max-width: 400px) {
    .partners h1 {
        font-size: 2.5rem;
        margin-bottom: 2rem;
    }
    .grid {
        padding: 0;
    }
}
/* Footer */
.footer {
    position: relative;
    margin-top: 3rem;
    background-color: #808393;
    padding: 70px 0;
}

.topmenus {
    position: relative;
    list-style: none;
    display: flex;
    justify-content: space-evenly;
    max-width: 800px;
    margin: auto;
    padding-top: 2vw;
    border-bottom: 0.8px solid white;
    padding-bottom: 1.5rem;
    color: aliceblue;
}


.topmenus a {
    text-decoration: none;
}


 .topmenus h1 {
    background: linear-gradient(#fff, #fff);
    background-size: 0% 1px;
    background-position: 100% 100%;
    background-repeat: no-repeat;
    transition: background-size 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    color: #fff;
    padding-bottom: 0.31vw;
    cursor: pointer;
    font-size: 1.2rem;
    font-weight: 300;
    transition: all .5s;
}

.topmenus h1:hover {
    background-size: 100% 1px;
    background-position: 0% 100%;
    opacity: 1;
    padding-left: 2px;
}



.logoaddress {
    position: relative;
    padding-top: 2vw;
    justify-content: center;
    align-items: center;
    display: grid;
    grid-template-columns: 200px 200px;
    color: aliceblue;
    margin-bottom: 3rem;
}



.logoaddress img {
    width: 105px;
}

.adresss {
    font-size: 0.9rem;
    text-align: left;
    color: aliceblue;
}
/* For Tablet View */

@media screen and (max-width: 700px) {
    .topmenus {
        display: grid;
        gap: 1.5rem;
        text-align: center;
        border-bottom: none;
    }
}

@media screen and (max-width: 486px) {
    .logoaddress {
        padding-top: 1vw;
        justify-content: center;
        align-items: center;
        display: grid;
        grid-template-columns: 140px 140px;
        color: aliceblue;
    }
    .logoaddress img {
        width: 85px;
    }
    .adresss {
        font-size: 0.7rem;
    }
}





/* 
.footer {
    position: relative;
    margin-top: 8rem;
    background-color: #808393;
    padding: 70px 0;
    cursor: pointer;
}

.footer-flex {
    display: flex;
    color: #000;
    justify-content: space-evenly;
}

.footer-flex1 {
    font-size: 4.5rem;
}

.footer-flex2 {
    font-size: 3.5rem;
}

footer p {
    width: 700px;
    margin: 1rem auto auto auto;
    font-size: 1.3rem;
    color: #fff;
    margin-bottom: 6rem;
}

@media screen and (min-width:200px) and (max-width:1130px) {
    .footer-flex {
        flex-direction: column;
        padding: 30px;
    }
    .footer p {
        width: 80%;
    }
}

@media screen and (max-width:555px) {
    .footer-flex1 {
        font-size: 3.5rem;
    }
    .footer-flex2 {
        font-size: 1.5rem;
    }
}

@media screen and (max-width:395px) {
    .footer-flex1 {
        font-size: 2.2rem;
    }
}

@media screen and (max-width:350px) {
    .footer-flex1 {
        font-size: 2rem;
    }
    .footer-flex2 {
        font-size: 1rem;
    }
    .footer p {
        font-size: 1rem;
        width: 80%;
    }
}

.footer-container {
    max-width: 1000px;
    margin: auto;
}

@media screen and (max-width:1024px) {
    .footer-container {
        max-width: 1000px;
    }
}

.footer-img {
    display: flex;
    justify-content: center;
}

.row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;

}

ul {
    list-style: none;
}

.footer-col {
    cursor: pointer;
}



.footer-col h4 {
    font-size: 1rem;
    color: #fff;
    text-transform: capitalize;
    margin-bottom: 35px;
    font-weight: 500;
    position: relative;
}

.footer-col h4::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: -10px;
    background-color: #8b8986;
    height: 2px;
    box-sizing: border-box;
    width: 50px;
}

.footer-col ul li {
    margin-bottom: 10px;
    color: #fff;
}

.footer-col ul li a {
    background: linear-gradient(#fff, #fff);
    background-size: 0% 1px;
    background-position: 100% 100%;
    background-repeat: no-repeat;
    transition: background-size 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    color: #fff;
    padding-bottom: 0.31vw;
    cursor: pointer;
    font-size:0.9rem;
    text-decoration: none;
    transition: all .5s;
}

.footer-col ul li a:hover {
    background-size: 100% 1px;
    background-position: 0% 100%;
    opacity: 1;
    padding-left: 8px;
}


@media screen and (max-width:1270px){
      .footer-col{
        padding: 0 35px;
      }
}


@media screen and (min-width:280px) and (max-width:768px) {

  .row {
    display: list-item;
  }

    .footer-col {
        width: 50%;
        margin-bottom: 30px;
    }
    .footer-col {
        width: 100%;
    }
    .footer-text {
        display: flex;
        flex-direction: column;
        line-height: 20px;
    }
} */