@media all and (max-width: 1400px) {
  .section_home {
    padding: 100px 0 40px;
  }

  .box_content_home {
    width: 700px;
  }

  .logo_bizverse {
    width: 260px;
  }

  .title_home h1 {
    margin-bottom: 30px;
    font-size: 30px;
    line-height: 40px;
  }

  .button_audit a img {
    width: 80px;
  }

  .button_buy_trade a img {
    width: 120px;
  }

  .box_content_whats_bizverse .button_more {
    margin-top: 4px;
  }

  .button_introduce_video a {
    font-size: 12px;
    line-height: 14px;
    padding: 12px 20px;
  }

  .button_more a,
  .button_more .button_add_token {
    font-size: 12px;
    padding: 12px 20px;
  }

  .box_token_bizverse .content_token_bizverse ul li,
  .content p {
    font-size: 18px;
    line-height: 26px;
  }

  .title h2 {
    font-size: 26px;
    line-height: 40px;
    margin-bottom: 15px;
  }

  .box_content_whats_bizverse {
    width: calc(50% - 100px);
  }

  .box_content_whats_bizverse .content {
    margin-bottom: 30px;
  }

  .button_title {
    border: 1.5px dashed #180734;
  }

  .button_title h3 {
    padding: 12px 40px;
    font-size: 18px;
    line-height: 26px;
  }

  .box_app_platform .app_platform .name_app_platform strong,
  .box_running_beta .running_beta .count_number_running_beta span {
    font-size: 16px;
    line-height: 24px;
  }

  .box_road_map .road_map .milestones_road_map {
    padding: 7px 0 12px;
    width: 160px;
  }

  .box_news .news .content_news .date_post_news span,
  .box_news .news .content_news .more_news span,
  .box_road_map .road_map .milestones_road_map strong {
    font-size: 14px;
    line-height: 14px;
    letter-spacing: 0;
  }

  .box_bring_business .bring_business .name_bring_business strong,
  .box_news .news .content_news .des_news p,
  .box_news .news .name_news strong,
  .box_news .news .content_news .title_news strong {
    font-size: 14px;
    line-height: 22px;
  }

  .box_news .news .name_news {
    height: 96px;
    padding: 10px 15px 15px;
  }

  .box_news .news .content_news .more_news {
    padding: 3px 15px 8px;
  }

  .box_whats_bizverse .content_whats_bizverse .explore {
    margin-top: 15px;
  }

  .box_whats_bizverse .content_whats_bizverse .explore a {
    font-family: "SFU Eurostile Extended Two";
    font-size: 12px;
    line-height: 12px;
    padding: 8px 15px;
  }

  .box_supported_chain_binance {
    width: 240px;
    padding: 15px;
  }

  .box_supported_chain_binance img {
    width: 100%;
  }
}

@media all and (max-width: 1200px) {
  .container {
    max-width: 1001px;
  }

  #header {
    height: 60px;
    background: none;
  }

  .logo img {
    height: 60px;
    padding: 10px 15px 15px;
  }

  .menu_header {
    margin: 0;
    display: none;
    position: fixed;
    right: 0px;
    left: auto;
    top: 60px;
    width: 100%;
    max-width: 300px;
    width: 100%;
    padding: 50px 30px 50px;
    background: linear-gradient(0deg,
        rgba(27, 4, 65, 1) 6.23%,
        rgba(82, 13, 161, 1) 149.84%);
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    opacity: 0;
    z-index: 999999;
    box-sizing: border-box;
    transition: opacity 0.5s ease-in-out;
    height: 100vh;
    overflow-y: auto;
    border: 0;
  }

  .menu_header.open {
    width: 100%;
    display: block;
    opacity: 1;
    pointer-events: all;
  }

  .menu_header .menu {
    width: 100%;
  }

  .menu_header .menu ul {
    width: 100%;
  }

  .menu_header .menu ul li.menu_item {
    width: 100%;
    clear: both;
    float: none;
    padding: 15px 0;
    text-align: center;
  }

  .menu_header .menu ul li.menu_item:last-child {
    padding-right: 0;
  }

  .menu_header .menu ul li.menu_item a.menu_link {
    line-height: 24px;
  }

  #btn_open_menu {
    display: block;
    position: absolute;
    width: 40px;
    height: 40px;
    right: 10px;
    top: 10px;
    z-index: 999;
  }

  .burger-wrap {
    padding: 10px 6px;
    width: 100%;
    height: 100%;
    border-radius: 100%;
    position: relative;
    z-index: 99;
    transition: 0.3s 0.7s transform ease-in;
  }

  .burger-wrap.reappearBurger {
    opacity: 0;
    animation: 0.5s 2s fadeAppear ease-out forwards;
  }

  @keyframes fadeAppear {
    0% {
      opacity: 0;
    }

    100% {
      opacity: 1;
    }
  }

  .burger {
    position: relative;
    width: 28px;
    height: 20px;
    cursor: pointer;
    z-index: 30;
    transition: transform 1s ease-in;
  }

  .burger span {
    display: block;
    position: absolute;
    width: 100%;
    height: 3px;
    border-radius: 6px;
    left: 0;
    background: rgba(255, 255, 255, 0.6);
    opacity: 1;
    transform: rotate(0deg);
    transition: 0.25s ease-in-out;
  }

  .burger span:nth-child(1) {
    top: 0;
    width: 100%;
  }

  .burger span:nth-child(2) {
    top: 8px;
    width: 100%;
  }

  .burger span:nth-child(3) {
    top: 16px;
    width: 100%;
  }

  .burger.active span:nth-child(1) {
    width: 100%;
    top: 8px;
    right: 0px;
    transform: rotate(135deg);
    background: rgba(255, 255, 255, 1);
  }

  .burger.active span:nth-child(2) {
    opacity: 0;
  }

  .burger.active span:nth-child(3) {
    background: rgba(255, 255, 255, 1);
    top: 8px;
    right: 0;
    width: 100%;
    transform: rotate(-135deg);
  }

  /*  */
  .logo_bizverse {
    width: 220px;
  }

  .title_home h1 {
    margin-bottom: 20px;
  }

  .title_audit p {
    font-size: 16px;
    line-height: 24px;
  }

  .button_audit {
    margin: 5px;
  }

  .button_buy_trade {
    margin: 5px;
  }

  /*  */
  .section_home {
    padding: 60px 0;
  }

  .box_content_home {
    width: 560px;
  }

  .person_male {
    width: 220px;
    left: 15px;
    bottom: 10%;
    margin: 0;
  }

  .person_female {
    width: 190px;
    right: 15px;
    bottom: 10%;
    margin: 0;
  }

  .box_img_whats_bizverse {
    float: none;
    clear: both;
    margin: 0 auto;
  }

  .box_whats_bizverse:nth-child(1) .content_whats_bizverse::after,
  .box_whats_bizverse:nth-child(2) .content_whats_bizverse::after,
  .box_whats_bizverse:nth-child(3) .content_whats_bizverse::after {
    right: 0;
    left: 0;
    top: 0;
    bottom: auto;
    height: 40px;
    width: 100%;
  }

  .box_whats_bizverse:nth-child(1) .content_whats_bizverse::before,
  .box_whats_bizverse:nth-child(2) .content_whats_bizverse::before,
  .box_whats_bizverse:nth-child(3) .content_whats_bizverse::before {
    top: -8px;
    right: auto;
    left: calc(50% - 8px);
    border-right: 8px solid transparent;
    border-left: 8px solid transparent;
    border-top: none;
    border-bottom: 8px solid rgba(211, 70, 213, 0.7);
  }

  .box_whats_bizverse:nth-child(2) .content_whats_bizverse::before {
    left: 42%;
  }

  .box_whats_bizverse:nth-child(3) .content_whats_bizverse::before {
    left: 22%;
  }

  .box_whats_bizverse:nth-child(5) .content_whats_bizverse::before {
    right: 34%;
  }

  .box_whats_bizverse:nth-child(1) .content_whats_bizverse {
    top: 105px;
    left: 35px;
  }

  .box_whats_bizverse:nth-child(2) .content_whats_bizverse {
    width: 300px;
    top: 170px;
    left: 0px;
  }

  .box_whats_bizverse:nth-child(3) .content_whats_bizverse {
    width: 300px;
    top: 245px;
    left: 0px;
  }

  .box_whats_bizverse:nth-child(5) .content_whats_bizverse {
    width: 300px;
    top: 92px;
    right: 0px;
  }

  .box_content_whats_bizverse {
    width: 555px;
    margin: 0 auto;
    padding: 30px 0 0;
    float: none;
    clear: both;
    text-align: center;
  }

  /*  */
  .box_content_bizverse_vision {
    width: 555px;
    margin: 0 auto;
  }

  .line_bizverse_vision {
    width: 100%;
  }

  /*  */
  .remove_margin {
    margin: 0;
  }

  .box_app_platform.slick-current.slick-active .app_platform .content_app_platform {
    display: block;
    opacity: 1;
  }

  .box_app_platform .app_platform .content_app_platform ul li a,
  .box_app_platform .app_platform .content_app_platform ul li {
    font-size: 14px;
    line-height: 22px;
  }

  .box_img_token_allocation,
  .box_content_apps_ecosystem,
  .box_img_apps_ecosystem {
    width: 555px;
    max-width: 100%;
  }

  .box_content_apps_ecosystem .download ul li {
    margin: 5px;
  }

  /*  */
  .slick-prev {
    left: calc(50% - 30px);
    top: auto;
    bottom: -30px;
  }

  .slick-next {
    right: calc(50% - 30px);
    top: auto;
    bottom: -30px;
  }

  /*  */
  .box_img_register {
    width: 40%;
  }

  .box_content_register {
    width: 60%;
    padding: 60px 0;
  }

  .box_content_metaverse_assets {
    padding: 60px 0;
  }

  .box_content_metaverse_assets .content {
    margin-bottom: 30px;
  }

  .box_our_team .our_team .info_our_team strong,
  .box_our_team .our_team .img_our_team .content_our_team p,
  .box_token_bizverse .content_token_bizverse ul li,
  .content p {
    font-size: 16px;
    line-height: 24px;
  }

  .box_our_team .our_team .img_our_team .content_our_team ul li,
  .box_our_team .our_team .img_our_team .content_our_team ul li a,
  .box_our_team .our_team .info_our_team span {
    font-size: 14px;
    line-height: 22px;
  }

  .box_our_team {
    width: 33.33%;
  }

  .box_company {
    width: 20%;
  }

  .slider_vrland_bizverse .slick-list {
    padding: 0px 160px !important;
  }

  .box_vrland_bizverse .vrland_bizverse::before {
    width: 60px;
    height: 60px;
  }

  footer {
    padding: 60px 0 40px;
  }

  .box_list_social ul li {
    margin: 0 10px 20px;
  }

  .box_official_email a {
    font-size: 16px;
    line-height: 24px;
  }

  .box_coppyright {
    padding: 20px 0 0;
    float: none;
    clear: both;
    margin: 0 auto;
    width: 100%;
    text-align: center;
  }

  .box_menu_link {
    padding: 0;
    max-width: 100%;
    width: 360px;
    float: none;
    clear: both;
    margin: 0 auto;
  }

  .logo_footer {
    margin: 0 auto;
  }

  .box_download {
    display: none;
  }

  .quote_bizverse_vision {
    width: 30px;
  }

  .box_content_register .content {
    margin-bottom: 30px;
  }

  .section_slider_bring_business,
  .section_whats_bizverse {
    padding: 40px 0 0;
  }

  .section_running_beta {
    padding-bottom: 40px;
  }

  .section_bizverse_vision,
  .section_application_platform {
    padding: 60px 0 0;
  }

  .button_title {
    margin-bottom: 10px;
  }

  .box_img_register {
    max-width: 100%;
    width: 400px;
    margin: 0 auto;
    clear: both;
    float: none;
  }

  .section_register {
    padding: 40px 0 60px;
    background: url(../images/register/background_mobile.png) no-repeat;
    background-position: center bottom;
    background-size: cover;
  }

  .box_img_metaverse_assets,
  .box_content_register {
    padding: 0;
    text-align: center;
    max-width: 100%;
    width: 555px;
    margin: 0 auto;
    clear: both;
    float: none;
  }

  .box_img_metaverse_assets {
    margin: 40px auto;
  }

  .section_list_brings_business {
    padding: 60px 0;
  }

  .section_vrland_bizverse,
  .section_supported_chain,
  .section_token_allocation,
  .section_news,
  .section_partners_custumers,
  .section_vcs_backers,
  .section_our_team {
    padding: 60px 0 0;
  }

  .slider_news {
    padding-bottom: 40px;
  }

  .slick-next,
  .slick-prev {
    bottom: 0;
  }

  .box_supported_chain_binance {
    width: 195px;
    padding: 15px;
  }

  .list_buy_trade .stakings-button .button_more .coming-soon {
    bottom: 0px;
    left: 0;
    font-size: 8px;
  }

  .list_buy_trade .stakings-button a {
    padding: 4px 8px;
  }

}

@media all and (max-width: 1000px) {
  .container {
    max-width: 801px;
  }

  .box_content_home {
    width: 450px;
  }

  .title_home h1 {
    margin-bottom: 20px;
    font-size: 24px;
    line-height: 34px;
  }

  .person_male {
    width: 190px;
    left: 15px;
    bottom: 10%;
    margin: 0;
  }

  .person_female {
    width: 160px;
    right: 15px;
    bottom: 10%;
    margin: 0;
  }

  .title h2 {
    font-size: 22px;
    line-height: 30px;
    margin-bottom: 10px;
  }

  .quote_bizverse_vision {
    width: 20px;
  }

  .button_title h3 {
    padding: 10px 30px;
    font-size: 14px;
    line-height: 22px;
  }

  .list_running_beta {
    display: block;
    clear: both;
    width: 555px;
    margin: 0 auto;
  }

  .box_running_beta {
    width: 50%;
  }

  .box_content_register .content {
    margin-bottom: 20px;
  }

  .box_brings_business {
    width: 33%;
  }

  .remove_margin_30px {
    margin: 0;
  }

  .box_brings_business .brings_business .name_brings_business {
    min-height: 130px;
  }

  .section_metaverse_space {
    padding: 80px 0;
  }

  .section_metaverse_space .button_more {
    margin-top: 20px;
  }

  .box_content_metaverse_assets {
    width: 55%;
  }

  .box_img_metaverse_assets {
    width: 45%;
    margin-top: 70px;
  }

  .box_benefits_nft .benefits_nft .img_benefits_nft {
    width: 120px;
  }

  .box_token_bizverse .content_token_bizverse ul li {
    font-size: 14px;
    padding: 10px 0 0;
    line-height: 22px;
  }

  .box_content_token_bizverse {
    padding: 30px 20px;
  }

  .box_token_bizverse .img_token_bizverse {
    width: 80px;
    height: 80px;
  }

  .box_our_team {
    width: 50%;
  }

  .box_company {
    width: 25%;
  }

  .slider_vrland_bizverse .slick-list {
    padding: 0px 100px !important;
  }

  .slider_road_map .slick-prev {
    left: auto;
    right: 32px;
  }

  .box_road_map .road_map::before {
    content: "";
    width: calc(100% - 235px);
    right: 65px;
  }

  .slider_road_map .slick-next.slick-arrow.slick-disabled {
    opacity: 0.6 !important;
    display: block !important;
  }

  .slider_road_map .slick-prev.slick-arrow.slick-disabled {
    opacity: 0.6 !important;
    display: block !important;
  }

  .box_vrland_bizverse .vrland_bizverse .name_vrland_bizverse {
    padding: 10px 15px 20px;
  }

  .box_vrland_bizverse .vrland_bizverse .name_vrland_bizverse strong {
    font-size: 16px;
    line-height: 24px;
  }

  .box_supported_chain_binance {
    width: 195px;
    padding: 15px;
  }

  .list-ido-exchange {
    width: 90%;
  }
}

@media all and (max-width: 800px) {
  .container {
    max-width: 601px;
  }

  .box_content_home {
    width: 300px;
  }

  .person_male {
    width: 150px;
    left: 0px;
    bottom: 10%;
    margin: 0;
  }

  .person_female {
    width: 120px;
    right: 0px;
    bottom: 10%;
    margin: 0;
  }

  .slider_vrland_bizverse .slick-prev,
  .slider_bring_business .slick-prev {
    left: 30px;
    top: 0;
    bottom: 0;
  }

  .slider_vrland_bizverse .slick-next,
  .slider_bring_business .slick-next {
    right: 30px;
    top: 0;
    bottom: 0;
  }

  .box_brings_business {
    width: 50%;
  }

  .box_content_metaverse_assets,
  .box_img_metaverse_assets {
    padding: 0;
    text-align: center;
    max-width: 100%;
    width: 555px;
    margin: 0 auto;
    clear: both;
    float: none;
  }

  .box_img_metaverse_assets {
    margin: 30px auto;
  }

  .box_token_bizverse:nth-child(1) {
    width: 25%;
  }

  .box_token_bizverse:nth-child(2),
  .box_token_bizverse:nth-child(3) {
    width: 35%;
  }

  .box_company {
    width: 33.33%;
  }

  .slider_vrland_bizverse .slick-list {
    padding: 0px 0px !important;
  }

  .box_vrland_bizverse {
    padding: 0 15px;
  }

  .box_vrland_bizverse .vrland_bizverse {
    padding: 0;
    height: auto !important;
  }

  .box_vrland_bizverse .vrland_bizverse::after {
    display: none;
  }

  .box_vrland_bizverse .vrland_bizverse .name_vrland_bizverse {
    padding: 10px 15px 20px;
  }

  .box_vrland_bizverse .vrland_bizverse .name_vrland_bizverse strong {
    font-size: 14px;
    line-height: 22px;
  }

  .box_supported_chain_binance {
    width: 33%;
    padding: 15px;
  }

  #main_popup {
    height: 90vh;
  }

  #main_popup .popup-title {
    font-size: 1em;
  }

  #main_popup p,
  #main_popup a,
  #main_popup span {
    font-size: 12px !important;
  }

  #main_popup .box_main_popup {
    padding: 15px;
  }

  .list-ido-exchange {
    padding: 12px 12px;
  }
}

@media all and (max-width: 600px) {
  .container {
    max-width: 420px;
  }

  .title_home h1 {
    margin-bottom: 15px;
  }

  .logo_bizverse {
    width: 200px;
  }

  .box_content_whats_bizverse .button_more {
    margin: 0px;
    float: none;
    display: inline-block;
    position: relative;
    top: -12px;
  }

  .button_introduce_video {
    float: none;
    display: inline-block;
  }

  .button_introduce_video a {
    font-size: 11px;
    line-height: 11px;
    padding: 10px 15px;
  }

  .button_more a,
  .button_more .button_add_token {
    font-size: 11px;
    padding: 10px 15px;
  }

  .list_audit {
    margin-top: 20px;
  }

  .list_buy_trade {
    margin-top: 20px;
  }

  .list_buy_trade .icons-exchange {
    flex-wrap: wrap;
  }

  .title_audit p {
    font-size: 14px;
    line-height: 14px;
  }

  .button_audit {
    margin: 0 5px;
  }

  .button_buy_trade {
    margin: 0 5px;
    border: none;
  }

  .button_audit a img {
    width: 60px;
  }

  .button_buy_trade a img {
    width: 90px;
  }

  .person_male {
    width: 130px;
    left: -40px;
    bottom: 10%;
    margin: 0;
  }

  .person_female {
    width: 110px;
    right: -20px;
    bottom: 10%;
    margin: 0;
  }

  .box_img_whats_bizverse {
    width: 360px;
  }

  .box_whats_bizverse .number_whats_bizverse {
    width: 24px;
    height: 24px;
    line-height: 16px;
  }

  .box_whats_bizverse .number_whats_bizverse span {
    font-size: 14px;
    line-height: 14px;
  }

  .box_whats_bizverse:nth-child(1) .number_whats_bizverse {
    left: 115px;
    top: 40px;
  }

  .box_whats_bizverse:nth-child(2) .number_whats_bizverse {
    left: 75px;
    top: 84px;
  }

  .box_whats_bizverse:nth-child(3) .number_whats_bizverse {
    left: 35px;
    top: 128px;
  }

  .box_whats_bizverse:nth-child(4) .number_whats_bizverse {
    right: 99px;
    top: 230px;
  }

  .box_whats_bizverse:nth-child(5) .number_whats_bizverse {
    right: 59px;
    top: 176px;
  }

  .box_whats_bizverse .content_whats_bizverse p {
    font-size: 14px;
    line-height: 22px;
    margin-bottom: 0px;
  }

  .box_whats_bizverse .content_whats_bizverse p strong {
    font-size: 14px;
    line-height: 22px;
  }

  .box_whats_bizverse .content_whats_bizverse .explore {
    margin-top: 5px;
  }

  .box_whats_bizverse .content_whats_bizverse .explore a {
    font-size: 10px;
    line-height: 10px;
    padding: 6px 15px;
  }

  .box_whats_bizverse .content_whats_bizverse {
    padding: 15px 15px 25px;
  }

  .box_whats_bizverse:nth-child(1) .content_whats_bizverse {
    width: 255px;
    left: 0;
    top: 72px;
  }

  .box_whats_bizverse:nth-child(2) .content_whats_bizverse {
    width: 265px;
    top: 115px;
    left: 0px;
  }

  .box_whats_bizverse:nth-child(2) .content_whats_bizverse::before {
    left: 30%;
  }

  .box_whats_bizverse:nth-child(3) .content_whats_bizverse {
    width: 245px;
    top: 160px;
    left: 0px;
  }

  .box_whats_bizverse:nth-child(3) .content_whats_bizverse::before {
    left: 16%;
  }

  .box_whats_bizverse:nth-child(4) .content_whats_bizverse {
    width: 300px;
    top: 60px;
    right: 0;
  }

  .box_whats_bizverse:nth-child(4) .content_whats_bizverse::before {
    right: 34%;
  }

  .box_whats_bizverse:nth-child(5) .content_whats_bizverse::before {
    right: 25%;
  }

  .box_whats_bizverse:nth-child(5) .content_whats_bizverse {
    width: 255px;
    top: 32px;
    right: 0px;
  }

  .box_content_whats_bizverse {
    width: 100%;
  }

  .box_content_whats_bizverse .content {
    margin-bottom: 20px;
  }

  .box_content_bizverse_vision {
    width: 100%;
  }

  .box_app_platform {
    padding: 5px 5px 15px;
  }

  .remove_margin {
    margin: 0 -5px;
  }

  .box_app_platform .app_platform .img_app_platform {
    width: 60px;
    margin-bottom: 20px;
  }

  .box_app_platform .app_platform .name_app_platform strong {
    font-size: 14px;
    line-height: 22px;
  }

  .box_app_platform .app_platform {
    padding: 45px 15px;
  }

  .box_app_platform .app_platform .content_app_platform {
    padding: 10px;
  }

  .box_app_platform .app_platform .content_app_platform .name_app_platform {
    padding-bottom: 5px;
    margin-bottom: 10px;
  }

  .box_app_platform .app_platform .content_app_platform ul li {
    margin: 0;
  }

  .box_bring_business {
    padding: 5px;
  }

  .section_running_beta {
    padding: 60px 0;
  }

  .list_running_beta {
    width: 100%;
  }

  .box_running_beta {
    padding: 5px;
  }

  .box_running_beta .running_beta .img_running_beta {
    width: 50px;
    margin: 5px auto;
  }

  .box_brings_business .brings_business .name_brings_business {
    min-height: auto;
    line-height: 20px;
  }

  .box_benefits_nft .benefits_nft .name_benefits_nft,
  .box_running_beta .running_beta .count_number_running_beta {
    line-height: 20px;
  }

  .box_benefits_nft .benefits_nft .name_benefits_nft span,
  .box_brings_business .brings_business .name_brings_business span,
  .box_running_beta .running_beta .count_number_running_beta span {
    font-size: 14px;
    line-height: 20px;
  }

  .box_img_register {
    width: 100%;
  }

  .box_brings_business {
    padding: 10px 15px;
  }

  .box_brings_business:nth-child(8) .brings_business .name_brings_business {
    min-height: 110px;
  }

  .section_metaverse_space {
    height: 300px;
    padding: 0;
    text-align: center;
    background-size: auto 100%;
    background-position: 85% center;
  }

  .section_metaverse_space .title {
    margin-top: 60px;
  }

  .box_benefits_nft .benefits_nft .img_benefits_nft {
    width: 100px;
  }

  .box_token_bizverse:nth-child(1) .content_token_bizverse ul {
    list-style-type: none;
    text-align: center;
    padding: 0;
  }

  .box_token_bizverse .content_token_bizverse ul li,
  .box_token_bizverse:nth-child(1) .content_token_bizverse ul li {
    font-size: 12px;
    font-family: "SFU Eurostile";
    padding: 5px 0 0;
  }

  .box_content_token_bizverse {
    padding: 15px 10px;
  }

  .box_token_bizverse:nth-child(1) {
    width: 22%;
  }

  .box_token_bizverse:nth-child(3) {
    width: 43%;
  }

  .box_token_bizverse .img_token_bizverse {
    width: 50px;
    height: 50px;
  }

  .box_benefits_nft {
    padding: 0 5px 20px;
  }

  .box_supported_chain {
    padding: 5px 5px 20px;
  }

  .box_road_map {
    padding: 15px 5px;
  }

  .box_our_team {
    width: 300px;
    clear: both;
    float: none;
    margin: 0 auto;
    padding: 5px 5px 15px;
  }

  .box_our_team .our_team .img_our_team .content_our_team {
    padding: 15px;
  }

  .box_our_team .our_team .info_our_team {
    margin-top: 5px;
  }

  .box_our_team .our_team .img_our_team .content_our_team p {
    font-size: 14px;
    line-height: 22px;
  }

  .box_company {
    padding: 5px;
  }

  .box_news .news .content_news .more_news {
    padding: 0px 10px 5px;
  }

  .box_news .news .content_news .more_news span {
    font-size: 12px;
    line-height: 22px;
  }

  .box_news .news .name_news {
    padding: 10px 10px 15px;
  }

  .box_vrland_bizverse {
    padding: 0;
  }

  .box_vrland_bizverse .vrland_bizverse::before {
    width: 40px;
    height: 40px;
  }

  .slider_bring_business .slick-prev {
    left: 15px;
  }

  .slider_vrland_bizverse {
    padding-bottom: 40px;
  }

  .slider_bring_business .slick-next {
    right: 15px;
  }

  .slider_vrland_bizverse .slick-prev {
    bottom: 0px;
    left: calc(50% - 30px);
    top: auto;
  }

  .slider_vrland_bizverse .slick-next {
    top: auto;
    right: calc(50% - 30px);
    bottom: 0px;
  }

  .box_list_social ul li {
    margin: 5px 2px 20px;
  }

  .coppyright p,
  .box_official_email a {
    font-size: 14px;
    line-height: 20px;
  }

  .box_official_email a::before {
    top: 3px;
    padding-right: 5px;
  }

  .box_menu_link ul li {
    padding: 5px 15px 0;
  }

  .box_running_beta .running_beta {
    padding: 20px 0;
  }

  .box_news {
    padding: 5px 5px 15px;
  }

  .box_road_map {
    padding: 15px 5px 0;
  }

  .box_vrland_bizverse .vrland_bizverse .name_vrland_bizverse {
    padding: 0px 0 15px;
    text-align: center;
  }

  .box_vrland_bizverse .vrland_bizverse .name_vrland_bizverse strong {
    font-size: 14px;
    line-height: 22px;
  }

  .box_supported_chain_binance {
    width: 50%;
    margin-bottom: 15px;
    padding: 0;
  }

  #main_popup {
    height: 80vh;
    width: 100%;
  }

  #main_popup .box_main_popup {
    gap: 5%;
  }

  .list-ido-exchange .listing-item .listing-time {
    font-size: 12px;
  }

  .list-ido-exchange .listing-item.title .exchange-logo {
    font-size: 12px;
  }

  .list_buy_trade .stakings-button {
    gap: 12px;
    margin-top: 15px;
  }

  .list_buy_trade .stakings-button img {
    width: 26px;
    height: 26px;
  }
}

@media all and (max-width: 420px) {
  .container {
    max-width: 100%;
  }

  .section_home {
    height: calc(100vh - 0px);
  }

  .box_content_home {
    height: max-content;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
  }

  .title h2 {
    font-size: 20px;
    line-height: 28px;
  }

  .box_running_beta .running_beta {
    padding: 20px 15px;
  }

  .box_running_beta:last-child .running_beta .count_number_running_beta {
    line-height: 14px;
  }

  .box_running_beta:last-child .running_beta {
    padding: 8px 15px 15px;
  }

  .box_brings_business {
    padding: 5px 5px;
  }

  .remove_margin_30px {
    margin: 0 -5px;
  }

  .box_brings_business .brings_business .name_brings_business {
    min-height: 70px;
  }

  .section_metaverse_space {
    height: 270px;
  }

  .box_menu_link ul li a,
  .box_our_team .our_team .info_our_team strong,
  .box_our_team .our_team .img_our_team .content_our_team p,
  .content p {
    font-size: 14px;
    line-height: 22px;
  }

  .content_metaverse_space {
    width: 90%;
    padding: 80px 20px;
  }

  .close_popup {
    width: 35px;
    position: absolute;
    right: 0px;
    top: -45px;
  }

  .content_metaverse_space p {
    font-size: 16px;
    line-height: 24px;
  }

  .box_token_bizverse .content_token_bizverse ul li,
  .box_token_bizverse:nth-child(1) .content_token_bizverse ul li {
    font-size: 11px;
    line-height: 16px;
  }

  .box_token_bizverse .img_token_bizverse {
    width: 40px;
    height: 40px;
  }

  .box_road_map:last-child .road_map::before {
    display: block;
  }

  .box_vrland_bizverse .vrland_bizverse .name_vrland_bizverse strong {
    font-family: "SFU Eurostile";
    font-size: 12px;
    line-height: 20px;
  }

  .box_supported_chain_binance {
    width: 50%;
    margin-bottom: 15px;
    padding: 0;
  }

  #main_popup .box_main_popup {
    padding: 15px 6px;
  }

  .list-ido-exchange {
    width: 100%;
  }

  .box_main_popup .logo_bizverse_popup {
    max-height: 15%;
  }
}

@media all and (max-width: 390px) {
  .container {
    max-width: 100%;
  }

  .box_token_bizverse .img_token_bizverse {
    width: 30px;
    height: 30px;
  }

  .box_img_whats_bizverse {
    width: 320px;
  }

  .box_whats_bizverse:nth-child(5) .number_whats_bizverse {
    right: 51px;
    top: 154px;
  }

  .box_whats_bizverse:nth-child(4) .number_whats_bizverse {
    right: 87px;
    top: 200px;
  }

  .box_whats_bizverse:nth-child(3) .number_whats_bizverse {
    left: 30px;
    top: 116px;
  }

  .box_whats_bizverse:nth-child(2) .number_whats_bizverse {
    left: 66px;
    top: 72px;
  }

  .box_whats_bizverse:nth-child(1) .number_whats_bizverse {
    left: 101px;
    top: 35px;
  }

  .box_whats_bizverse:nth-child(1) .content_whats_bizverse {
    top: 68px;
  }

  .box_whats_bizverse:nth-child(1) .content_whats_bizverse::before {
    left: 41%;
  }

  .box_whats_bizverse:nth-child(2) .content_whats_bizverse {
    top: 105px;
  }

  .box_whats_bizverse:nth-child(2) .content_whats_bizverse::before {
    left: 26%;
  }

  .box_whats_bizverse:nth-child(3) .content_whats_bizverse {
    top: 148px;
  }

  .box_whats_bizverse:nth-child(3) .content_whats_bizverse::before {
    left: 14%;
  }

  .box_whats_bizverse:nth-child(4) .content_whats_bizverse {
    top: 32px;
  }

  .box_whats_bizverse:nth-child(4) .content_whats_bizverse::before {
    right: 30%;
  }

  .box_whats_bizverse:nth-child(5) .content_whats_bizverse {
    top: 10px;
  }

  .box_whats_bizverse:nth-child(5) .content_whats_bizverse::before {
    right: 22%;
  }

  .person_male {
    left: -50px;
  }

  .person_female {
    right: -30px;
  }

  .button_title h3 {
    padding: 10px 20px;
    font-size: 12px;
    line-height: 20px;
  }

  .box_content_apps_ecosystem .download ul li img {
    width: 120px;
  }

  .box_token_bizverse .content_token_bizverse ul li,
  .box_token_bizverse:nth-child(1) .content_token_bizverse ul li {
    font-size: 10px;
    line-height: 16px;
  }

  .box_brings_business .brings_business .name_brings_business {
    min-height: 90px;
  }

  .button_introduce_video a {
    font-size: 10px;
    line-height: 10px;
  }

  .button_more a,
  .button_more .button_add_token {
    font-size: 10px;
    padding: 8px;
  }

  .box_list_social ul li img {
    width: 35px;
  }
}

@media all and (max-width: 360px) {
  .box_company {
    width: 50%;
  }
}