@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+SC:wght@300&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;
}

/* Preloader */
/* .ctn-preloader {
    align-items: center;
    cursor: none;
    display: flex;
    height: 100%;
    justify-content: center;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    z-index: 900;
}

.ctn-preloader .animation-preloader {
    position: absolute;
    z-index: 100;
}

.ctn-preloader .loader-section {
    background-color: #000;
    height: 100%;
    position: fixed;
    top: 0;
    width: calc(50% + 1px);
}

.ctn-preloader .loader-section.section-left {
    left: 0;
}

.ctn-preloader .loader-section.section-right {
    right: 0;
}

.loaded .animation-preloader {
    opacity: 0;
    transition: 0.3s ease-out;
}

.loaded .loader-section.section-left {
    transform: translateX(-101%);
    transition: 0.7s 0.3s all cubic-bezier(0.1, 0.1, 0.1, 1.000);
}

.loaded .loader-section.section-right {
    transform: translateX(101%);
    transition: 0.7s 0.3s all cubic-bezier(0.1, 0.1, 0.1, 1.000);
}

.animation-preloader img {
   width: 600px;
   height: auto;
}

@media only screen and (max-width: 616px) {
    .animation-preloader img {
        width: 500px;
        height: auto;
     }
}

@media only screen and (max-width: 510px) {
    .animation-preloader img {
        width: 400px;
        height: auto;
     }
}

@media only screen and (max-width: 403px) {
    .animation-preloader img {
        width: 350px;
        height: auto;
     }
}

@media only screen and (max-width: 356px) {
    .animation-preloader img {
        width: 300px;
        height: auto;
     }
}


@media only screen and (max-width: 300px) {
    .animation-preloader img {
        width: 270px;
        height: auto;
     }
}

@keyframes gradient {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
} */


/* 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);
    }
}


/* 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 */

.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: 10.5vw;
    }
}


/* scroll */

.dong23 {
    width: 3px;
    height: 40px;
    border-radius: 1px;
    background: linear-gradient(-45deg, rgba(0, 0, 255, 0), #fdfdfd);
    animation: slide1 1s infinite;
}

.dong2 {
    width: 10px;
    height: 40px;
    border-radius: 1px;
    background: linear-gradient(-45deg, rgba(0, 0, 255, 0), #ffff);
    animation: slide123 1s infinite;
}

@keyframes slide123 {
    0% {
        transform: translateY(40px);
    }
    100% {
        transform: translateY(0px);
    }
}

@keyframes slide1 {
    0% {
        transform: translateY(40px);
    }
    100% {
        transform: translateY(-80px);
    }
}


/* scroll shooter */

.pepl {
    position: absolute;
    align-items: center;
    justify-content: center;
    text-align: center;
    left: 50%;
    top: 88%;
}

@media only screen and (max-width: 1440px) {
    .pepl {
        left: 47%;
        top: 91%;
    }
}

@media only screen and (max-width: 1024px) {
    .pepl {
        left: 49%;
        top: 90%;
    }
}

@media only screen and (max-width: 768px) {
    .pepl {
        left: 48%;
    }
}

@media only screen and (max-width: 425px) {
    .pepl {
        left: 46%;
    }
}

.tss {
    color: #ffffff;
    font-size: 1em;
}

.dd {
    width: 2px;
    height: 40px;
    border-radius: 1px;
    overflow: hidden;
    display: flex;
    margin: auto;
}


/* ABOUT COMPANY */

.about {
    position: relative;
    margin-top: 2.6vw;
}

.view-spin {
    position: relative;
}

.about .innation {
    animation: 2.2s rota infinite;
    position: relative;
    top: 20vw;
    left: 8vw;
}

@media only screen and (max-width: 1440px) {
    .about .innation {
        top: 13vw;
        left: 70vw;
    }
}

@media only screen and (max-width: 1025px) {
    .about .innation {
        top: 65vw;
        left: 76vw;
    }
}

@media only screen and (max-width: 980px) {
    .about .innation {
        top: 72vw;
        left: 76vw;
    }
}

@media only screen and (max-width: 910px) {
    .about .innation {
        top: 65vw;
    }
}

@media only screen and (max-width: 837px) {
    .about .innation {
        top: 75vw;
    }
}

@media only screen and (max-width: 767px) {
    .about .innation {
        top: 76vw;
        width: 60px;
    }
}

@media only screen and (max-width: 700px) {
    .about .innation {
        width: 60px;
        top: 26vw;
        left: 88vw;
    }
}

.innation img {
    width: 5.11vw;
    height: 5.06vw;
    margin-top: 15vw;
}

@keyframes rota {
    0% {
        transform: scale(1) rotate(0deg);
    }
    25% {
        transform: scale(1.1) rotate(0deg);
    }
    50% {
        transform: scale(1) rotate(0deg);
    }
    100% {
        transform: scale(1) rotate(360deg);
    }
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
}

.sepline {
    border-bottom: 3px solid #a39f9f;
    padding-top: 6vw;
    margin-left: 28vw;
    /* margin: 0 auto; */
    width: 70vw;
    position: relative;
}

@media only screen and (max-width: 1025px) {
    .sepline {
        padding-top: 12vw;
    }
}

@media only screen and (max-width: 980px) {
    .sepline {
        padding-top: 18vw;
    }
}

.about-container h1 {
    font-size: 4rem;
    margin-bottom: 5rem;
    margin-left: 2em;
}

@media only screen and (max-width: 1025px) {
    .about-container h1 {
        text-align: center;
        margin-left: 0em;
    }
}

@media only screen and (max-width: 768px) {
    .about-container h1 {
        font-size: 3.5rem;
        padding: 10px;
    }
}

.about-column {
    padding: 50px;
    margin-left: 10vw;
    margin-top: 2.6vw;
    position: relative;
    left: 5vw;
}

@media only screen and (max-width: 1440px) {
    .about-column {
        left: 0;
    }
}

@media only screen and (max-width: 768px) {
    .about-column {
        padding: 30px;
        margin-left: 1vw
    }
}

.column-text1 {
    color: black;
    margin-bottom: 5rem;
    font-size: 1.8rem;
}

.column-text2 {
    color: #615e5e;
    font-size: 1.3rem;
}

@media only screen and (max-width: 1142px) {
    .about-container {
        margin: 1rem auto;
    }
}

@media only screen and (max-width: 910px) {
    .column-text1 {
        color: black;
        margin-bottom: 5rem;
        font-size: 1.3rem;
    }
    .column-text2 {
        color: #615e5e;
        font-size: 1rem;
    }
}

@media only screen and (max-width: 500px) {
    .about-column {
        padding: 10px;
    }
    .column-text1 {
        color: black;
        margin-bottom: 5rem;
        font-size: 1.3rem;
    }
    .column-text2 {
        color: #615e5e;
        font-size: 1rem;
    }
    .about .innation {
        width: 50px;
        top: 40vw;
        left: 80vw;
    }
}

@media only screen and (max-width: 400px) {
    .about .innation {
        width: 60px;
        top: 43vw;
    }
}

@media only screen and (max-width: 360px) {
    .about-container h1 {
        font-size: 2.5rem;
        padding: 10px;
    }
    .about-column {
        padding: 10px;
    }
    .column-text1 {
        color: black;
        margin-bottom: 2rem;
        font-size: 1rem;
    }
    .column-text2 {
        color: #615e5e;
        font-size: 0.8rem;
    }
    .about .innation {
        width: 50px;
    }
}


/* COOPERATE */

.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);
    }
}

.video-button0 {
    position: absolute;
    width: 400px;
    right: 10rem;
    top: 11rem;
    -webkit-transform: rotate(-62deg)
}

@media only screen and (max-width: 1200px) {

    .video-button0 {
        position: absolute;
        width: 420px;
        right: 9.8rem;
        top: 9.5rem;
        -webkit-transform: rotate(-2deg)
    }

}

.video-button1 {
    width: 50px;
    position: absolute;
    left: 4.5rem;
    top: 2.9rem;
    cursor: pointer;
}

@media only screen and (max-width: 1200px) {
    .video-button1 {
        left: 3rem;
        top: 1.5rem;
    }
}

.video-button2 {
    width: 50px;
    position: absolute;
    left: 4.5rem;
    top: 2.9rem;
    cursor: pointer;
}

@media only screen and (max-width: 1200px) {
    .video-button2 {
        left: 3rem;
        top: 1.5rem;
    }
}

.video-button3 {
    width: 40px;
    position: absolute;
    left: 5rem;
    top: 1.8rem;
    cursor: pointer;
}

@media only screen and (max-width: 1200px) {
    .video-button3 {
        left: 3.5rem;
        top: 1rem;
        width: 30px;
    }
}

.video-button4 {
    width: 50px;
    position: absolute;
    left: 4.2rem;
    top: 2.9rem;
    cursor: pointer;
}

@media only screen and (max-width: 1200px) {
    .video-button4 {
        left: 3rem;
        top: 1rem;
    }
}

.video-button5 {
    width: 50px;
    position: absolute;
    left: 4.5rem;
    top: 2.9rem;
    cursor: pointer;
}

@media only screen and (max-width: 1200px) {
    .video-button5 {
        left: 3rem;
        top: 1.8rem;
    }
}

.video-button6 {
    width: 50px;
    position: absolute;
    left: 4.3rem;
    top: 2.9rem;
    cursor: pointer;
}

@media only screen and (max-width: 1200px) {
    .video-button6 {
        left: 3rem;
        top: 1rem;
    }
}

.video-button7 {
    width: 50px;
    position: absolute;
    left: 4.3rem;
    top: 2.9rem;
    cursor: pointer;
}

@media only screen and (max-width: 1200px) {
    .video-button7 {
        left: 3rem;
        top: 1rem;
    }
}

.cooperate {
    position: relative;
    margin-top: 11rem;
}

.cooperate .view-spin {
    position: absolute;
    left: 15vw;
    top: 30vw;
}

.cooperate .innation {
    animation: 2.2s rota infinite;
    width: 6vw;
}

@keyframes rota {
    0% {
        transform: scale(1) rotate(0deg);
    }
    25% {
        transform: scale(1.1) rotate(0deg);
    }
    50% {
        transform: scale(1) rotate(0deg);
    }
    100% {
        transform: scale(1) rotate(360deg);
    }
}

@media only screen and (max-width: 1440px) {
    .cooperate .view-spin {
        top: 45vw;
    }
}

@media only screen and (max-width: 1360px) {
    .cooperate .view-spin {
        top: 49vw;
    }
}

@media only screen and (max-width: 1273px) {
    .cooperate .view-spin {
        top: 55vw;
    }
}

@media only screen and (max-width: 1133px) {
    .cooperate .view-spin {
        top: 59vw;
    }
}

@media only screen and (max-width: 1025px) {
    .cooperate {
        display: none;
    }
}

.cooperate h2 {
    position: absolute;
    top: -13rem;
    left: 13rem;
    font-size: 5.5rem;
    color: #fff;
}

.cooperate h3 {
    position: relative;
    top: -18rem;
    margin-left: 12rem;
    font-size: 4rem;
    font-family: 'Noto Sans SC', sans-serif;
}

@media only screen and (max-width: 1201px) {
    .cooperate h3 {
        top: -10rem;
        left: 0rem;
        font-size: 3rem;
    }
}

@media only screen and (max-width: 1024px) {
    .cooperate h3 {
        top: -10rem;
        left: 0rem;
        font-size: 3rem;
    }
}

.cooperate-container {
    max-width: 1400px;
    width: 100%;
    height: 800px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 150px 25px;
    /* border-bottom: 3px solid #a39f9f; */
    display: flex;
    flex-direction: column;
}

.tabs {
    position: relative;
    margin-top: -15vw;
    margin-left: 26vw;
    padding: 2vw;
}

@media only screen and (max-width: 1024px) {
    .tabs {
        margin-left: 66vw;
    }
}

.changes a {
    width: 200px;
    height: 200px;
    background: #000;
    border-radius: 50%;
    display: inline-block;
    text-decoration: none;
}

.changes .tab-text1 {
    color: #fff;
    position: absolute;
    top: 7rem;
    font-size: 0.9rem;
    width: 100%;
    text-align: center;
    font-weight: 100;
}

.changes .tab-text2 {
    color: #fff;
    position: absolute;
    top: 7rem;
    font-size: 0.9rem;
    width: 100%;
    text-align: center;
    font-weight: 100;
}

.changes .tab-text3 {
    color: #fff;
    position: absolute;
    top: 7rem;
    font-size: 0.9rem;
    width: 100%;
    text-align: center;
    font-weight: 100;
}

.changes .tab-text4 {
    color: #fff;
    position: absolute;
    top: 7rem;
    font-size: 0.9rem;
    width: 100%;
    text-align: center;
    font-weight: 100;
}

.changes .tab-text5 {
    color: #fff;
    position: absolute;
    top: 7rem;
    font-size: 0.9rem;
    width: 100%;
    text-align: center;
    font-weight: 100;
}

.changes .tab-text6 {
    color: #fff;
    position: absolute;
    top: 7rem;
    font-size: 0.9rem;
    width: 100%;
    text-align: center;
    font-weight: 100;
}

.changes .tab-text7 {
    color: #fff;
    position: absolute;
    top: 7rem;
    font-size: 0.9rem;
    width: 100%;
    text-align: center;
    font-weight: 100;
}

@media only screen and (max-width: 1200px) {
    .changes .tab-text7 {
        top: 4.5rem;
        width: 100%;
        text-align: center;
        font-weight: 100;
    }
    .changes .tab-text6 {
        top: 5rem;
        width: 100%;
        text-align: center;
        font-weight: 100;
    }
    .changes .tab-text5 {
        top: 5rem;
        width: 100%;
        text-align: center;
        font-weight: 100;
    }
    .changes .tab-text4 {
        top: 4.5rem;
        width: 100%;
        text-align: center;
        font-weight: 100;
        font-size: 0.8rem;
    }
    .changes .tab-text3 {
        top: 4.5rem;
        width: 100%;
        text-align: center;
        font-weight: 100;
        font-size: 0.8rem;
    }
    .changes .tab-text2 {
        top: 5rem;
        width: 100%;
        text-align: center;
        font-weight: 100;
        font-size: 0.8rem;
    }
    .changes .tab-text1 {
        top: 4.8rem;
        width: 100%;
        text-align: center;
        font-weight: 100;
        font-size: 0.8rem;
    }
}

.change {
    width: 75%;
    float: right;
    list-style: none;
}

.change .changes {
    position: absolute;
}

.changes.one {
    right: 250px;
    top: 10px;
}

.changes.two {
    top: 150px;
    right: 20px;
}

.changes.three {
    top: 390px;
    right: 30px;
}

.changes.four {
    top: 540px;
    right: 290px;
}

.changes.five {
    top: 290px;
    right: 270px;
}

.changes.six {
    top: 120px;
    right: 510px;
}

.changes.seven {
    top: 370px;
    right: 530px;
}

.information {
    width: 20vw;
    float: left;
    margin-left: 10vw;
}

@media only screen and (max-width: 1024px) {
    .informationmobile {
        position: relative;
        padding: 1vw;
        width: 60vw;
        right: 80vw;
        margin-right: -1880vw;
    }
}

.text h1 {
    color: #666;
    font-size: 2rem;
    margin-bottom: 5rem;
}

.text p {
    font-size: 18px;
    line-height: 1.7;
    margin-top: 8rem;
}

.clearfix:after {
    content: "";
    display: table;
    clear: both;
}

.sepline2 {
    border-bottom: 3px solid #a39f9f;
    padding-top: 50vw;
    margin-left: 28vw;
    /* margin: 0 auto; */
    width: 70vw;
}

@media only screen and (max-width: 1440px) {
    .sepline2 {
        padding-top: 60vw;
        margin-left: 25vw;
    }
}

@media only screen and (max-width: 1371px) {
    .sepline2 {
        padding-top: 70vw;
    }
}

@media only screen and (max-width: 1230px) {
    .sepline2 {
        padding-top: 80vw;
    }
}

@media only screen and (max-width: 1200px) {
    .cooperate h2 {
        position: absolute;
        padding-left: 23vw;
        top: -3rem;
        left: -3rem;
        font-size: 3.5rem;
    }
    .changes a {
        width: 150px;
        height: 150px;
    }
    .changes.one {
        right: 270px;
        top: 70px;
    }
    .changes.two {
        top: 180px;
        right: 90px;
    }
    .changes.three {
        top: 390px;
        right: 90px;
    }
    .changes.four {
        top: 500px;
        right: 300px;
    }
    .changes.five {
        top: 285;
        right: 290px;
    }
    .changes.six {
        top: 140px;
        right: 480px;
    }
    .changes.seven {
        top: 370px;
        right: 500px;
    }
    .text h1 {
        color: #666;
        font-size: 2.5rem;
    }
    .text p {
        font-size: 15px;
        line-height: 1.7;
    }
}

@media only screen and (max-width: 1101px) {
    .information {
        width: 20vw;
        margin-left: 10vw;
    }
}

@media only screen and (max-width: 1025px) {
    .text {
        width: 25vw;
    }
    .text h1 {
        font-size: 1.5rem;
    }
    .text p {
        font-size: 11px;
        line-height: 1.7;
    }
}

@media only screen and (max-width: 940px) {
    .cooperate h2 {
        position: absolute;
        top: -3rem;
        left: 1rem;
        font-size: 3.5rem;
    }
}

@media (max-width: 900px) {
    .change {
        width: 50%;
    }
}


/* Mobile coopertive business */

#section-card {
    position: relative;
}

#section-card h1 {
    font-size: 45px;
    color: #000;
    text-align: center;
}

.cards-list {
    z-index: 0;
    width: 71%;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    margin: auto;
}

.card {
    margin: 30px auto;
    width: 500px;
    padding: 50px;
    box-shadow: 0px 0px 15px rgb(0 0 0 / 30%);
    cursor: pointer;
    transition: 0.4s;
    justify-content: flex-start !important;
    background-color: black;
}

.card_image {
    width: 110px;
    height: 70px;
    border-radius: 50%;
    margin: 10px auto;
}

.card_image img {
    margin: 17px;
    font-size: 37px;
    width: 80px;
    -webkit-animation: spin 4s linear infinite;
    -moz-animation: spin 4s linear infinite;
    animation: spin 4s linear infinite;
}

.card_image .phone-img {
    width: 50px;
}

@-moz-keyframes spin {
    100% {
        -moz-transform: rotate(360deg);
    }
}

@-webkit-keyframes spin {
    100% {
        -webkit-transform: rotate(360deg);
    }
}

@keyframes spin {
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

.card_title .heading {
    font-size: 1.5rem;
    font-weight: 700;
    text-align: center;
    color: #a4a8ad;
    margin-top: 50px;
    padding: 20px;
}

.card_title p {
    margin: auto;
    line-height: 1.6rem;
    text-align: center;
    color: #fff;
}

@media screen and (max-width: 4000px) {
    #section-card {
        display: none;
    }
}

@media screen and (max-width: 1025px) {
    #section-card {
        display: block;
    }
}

@media screen and (max-width: 500px) {
    .card_image {
        width: 80px;
    }
    .card_image img {
        width: 50px;
    }
    .card_image .phone-img {
        width: 40px;
    }
    .card_title .heading {
        margin-top: 1px;
        font-size: 1.2rem;
    }
    .card_title p {
        margin: auto;
        width: 250px;
        line-height: 1.6rem;
        font-size: 0.9rem;
        text-align: left;
        color: #fff;
    }
}

@media screen and (max-width: 410px) {
    .card {
        padding: 30px;
    }
    .card_title .heading {
        margin-top: 1px;
        font-size: 1.2rem;
    }
    .card_title p {
        margin: auto;
        line-height: 1.2rem;
        font-size: 0.9rem;
        text-align: center;
        color: #fff;
    }
}


/* PARTNERS */

.partners {
    position: relative;
    margin-top: 10rem;
}


/* @media screen and (max-width: 768px) {
    .partners {
        margin: 1rem;
    }
} */

@media screen and (max-width: 1024px) {
    .partners {
        margin-top: 10rem;
    }
}

.partners h1 {
    text-align: center;
    font-size: 3.5rem;
    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 250px;
    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;
    }
} */
