html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  font-family: "Inter", sans-serif;
  word-break: keep-all;
  font-weight: 400;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

body {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: '';
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

.ja * {
  font-family: "NotoSansJP-Regular", sans-serif;
  word-break: break-all;
  font-weight: lighter;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

.bar_wrap {
  position: absolute;
  overflow: hidden;
  bottom: 0px;
  left: 649px;
  height: 10px;
  opacity: 0;
}

p {
  line-height: 1.2em;
}

textarea {
  width: 100%;
  height: 67px;
  color: var(--dark-black-color);
  float: left;
  outline: none;
  position: relative;
  border: 1px solid #d9d9d9;
  font-size: 18px;
  padding: 5px 10px 5px 10px;
  z-index: 1;
  resize: none;
}

textarea:focus {
  border: 1px solid #1B89FF !important;
}

input[type="radio"]:checked::-ms-check {
  width: 22px;
  height: 22px;
  border: 2px solid #1B89FF;
  color: #1B89FF;
  background: none;
}

input[type='text'],
input[type='email'],
input[type='tel'],
input[type='url'],
input[type='number'] {
  border: none;
  outline: 1px solid #d9d9d9;
  font-size: 16px;
  padding: 15px;
}

input[type='text']::-webkit-input-placeholder {
  color: #959AA3;
}

input[type='text']:-ms-input-placeholder {
  color: #959AA3;
}

input[type='text']::-ms-input-placeholder {
  color: #959AA3;
}

input[type='text']::placeholder {
  color: #959AA3;
}

input[type='text']:focus {
  border: 1px solid #1B89FF !important;
}

input[type='email'] {
  border: 1px solid #d9d9d9;
  outline: none;
  font-size: 16px;
  padding: 15px;
}

input[type='email']::-webkit-input-placeholder {
  color: #959AA3;
}

input[type='email']:-ms-input-placeholder {
  color: #959AA3;
}

input[type='email']::-ms-input-placeholder {
  color: #959AA3;
}

input[type='email']::placeholder {
  color: #959AA3;
}

input[type='email']:focus {
  outline: 1px solid #1B89FF !important;
}

input[type='password'] {
  border: 1px solid #d9d9d9;
  outline: none;
  font-size: 16px;
  padding: 15px;
}

input[type='password']::-webkit-input-placeholder {
  color: #959AA3;
}

input[type='password']:-ms-input-placeholder {
  color: #959AA3;
}

input[type='password']::-ms-input-placeholder {
  color: #959AA3;
}

input[type='password']::placeholder {
  color: #959AA3;
}

input[type='password']:focus {
  border: 1px solid #1B89FF !important;
}

.text_size_16 {
  font-size: 16px !important;
  line-height: 26px !important;
}

.text_size_18 {
  font-size: 18px !important;
  line-height: 28px !important;
}

.text_size_20 {
  font-size: 20px !important;
}

.text_size_22 {
  font-size: 22px !important;
  line-height: 30px !important;
}

.text_size_24 {
  font-size: 24px !important;
}

.text_size_26 {
  font-size: 26px !important;
}

.text_size_28 {
  font-size: 28px !important;
  line-height: 40px !important;
}

.text_size_30 {
  font-size: 30px !important;
}

.text_size_32 {
  font-size: 32px !important;
}

.bolder_font {
  font-weight: 600 !important;
}

b {
  font-weight: 600 !important;
}

@keyframes arrow_scroll_animation {
  0% {
    opacity: 1;
    transform: translate3d(0, -5px, 0);
  }

  50% {
    opacity: 1;
    transform: translate3d(0, 10px, 0);
  }

  100% {
    opacity: 1;
    transform: translate3d(0, -5px, 0);
  }
}

@keyframes slide_animationes {
  from {
    transform: translateX(0px);
  }

  to {
    transform: translateX(-12240px);
  }
}

@keyframes send_animation_start {
  from {
    transform: translateX(-50px);
  }

  to {
    transform: translateX(600px);
  }
}

.send_animation {
  width: 30px;
  height: 100%;
  background: linear-gradient(270deg, #EAE4FF, #C9BEFA, #A898F1, #8871E9);
  transform: translateX(-50px);
}

.send_animation.start_ani {
  animation-name: send_animation_start;
  animation-duration: 1s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}

.send_animation.start_ani_slow {
  animation-name: send_animation_start;
  animation-duration: 3s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}

@media all and (min-width:1225px) {
  .download_package_modal_bg {
    position: fixed;
    z-index: 500;
    top: 0px;
    left: 0px;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.5);
    display: none;
  }

  .mobileHide {}

  .pcHide {
    display: none !important;
  }

  section {
    padding-top: 100px;
    position: relative;
    background-color: #F2F2F2;
    padding-bottom: 100px;
  }

  .exb_first_section {
    padding-top: 0px;
    max-height: 100vh;
  }

  .exb_eighth_section {
    padding-bottom: 80px;
  }

  .main_exabyter_container {
    position: relative;
    width: 1136px;
    margin: 0px auto;
  }





  .login_text_h1 {
    margin: 20px auto 0px;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    font-size: 22px;
  }

  .new_signin_box {
    /* width: 300px; */
    height: auto;
    margin: 0px auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: distribute;
    justify-content: space-around;
    margin-top: 60px;

  }

  .new_signin_box .new_signin_box_left_box {
    width: 300px;
  }

  .new_signin_box .new_signin_box_left_box div {
    padding: 6px 20px;
    width: 100%;
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
    background-color: var(--white-color);
    margin: 10px auto;
    cursor: pointer;
    font-size: 16px;
    line-height: 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    border: 1px solid var(--light-grey-color);
  }

  .new_signin_box .new_signin_box_left_box div img {
    height: 40px;
  }

  .new_signin_box .new_signin_box_left_box div p {
    line-height: 39px;
  }

  .new_signin_box .new_signin_box_mid_box {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: distribute;
    justify-content: space-around;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .new_signin_box .new_signin_box_mid_box p {
    margin: 0px auto;
    border-left: 1px solid var(--light-grey-color);
  }

  .new_signin_box .new_signin_box_right_box {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: flex-start;
  }

  .new_signin_box .new_signin_box_right_box .login_text_input {
    width: 100%;
    height: 44px;
    margin: 0px auto 10px;
    border-radius: 6px;
  }

  .free_sign_account {
    display: table;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
  }

  .free_signin_box {
    width: 300px;
    height: auto;
    margin: 60px auto 0px;
  }

  .free_signin_box .free_signin_step_box {
    width: 125px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin: 20px auto;
  }

  .free_signin_box .free_signin_step_box div:first-child {
    color: #959AA3;
    border-bottom: 0px;
    cursor: pointer;
  }

  .free_signin_box .free_signin_step_box div {
    font-size: 20px;
    border-bottom: 2px solid #000;
    padding-bottom: 10px;
    cursor: default;
  }

  .free_signin_box .free_signin_input {
    width: 100%;
    height: 50px;
    margin: 3px auto;
  }

  .page_benner_wrapper {
    position: relative;
    width: 100%;
    height: auto;
    background: #F2F2F2;
  }

  .small_exabyter_contanier {
    width: 900px;
    margin: 0px auto;
  }

  .new_positions_for_container {
    margin-top: -460px !important;
  }

  .banner_image_box {
    width: 100%;
    height: 900px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
  }

  .title_main_page {
    width: fit-content;
    color: #242424;
    font-size: 40px;
    font-weight: 500;
    line-height: 55px;
    margin-bottom: 50px;
  }

  .title_main_page>p {
    width: fit-content;
    color: #242424;
    font-size: 40px;
    font-weight: 500;
    line-height: 55px;
  }

  .top_content_container {
    height: 100%;
    position: absolute;
    top: 0px;
    left: 50%;
    z-index: 10;
    transform: translateX(-50%);
  }

  .video_part_btn_wrapper {
    width: auto;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 16px;
  }

  .main_exabyter_main_text_wrapper .blueBtn {
    background-color: transparent;
    border-color: var(--white-color);
    color: var(--white-color);
  }

  .main_exabyter_main_text_wrapper .blueBtn:hover {
    background-color: var(--white-color);
    color: #006ABA;
    background-color: var(--white-color);
  }

  .main_exabyter_main_text_wrapper {
    position: absolute;
    top: 150px;
    left: 0px;
    /* transform: translateY(-50%); */
    width: auto;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 48px;
  }

  .main_exabyter_main_text_wrapper>p:first-child {
    width: 670px;
    font-size: 48px;
    font-weight: 400;
    line-height: 70px;
    color: var(--white-color);
  }

  .main_exabyter_main_text_wrapper>p:nth-child(2) {
    width: 700px;
    font-size: 22px;
    font-weight: 300;
    line-height: 30px;
    color: var(--white-color);
  }

  .main_exabyter_main_text_wrapper>.blueBtn:hover {
    background-color: transparent;
    border-color: var(--white-color) !important;
    color: var(--white-color) !important;
  }

  .main_exabyter_video_wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 50px;
  }

  .main_exabyter_video_wrapper_height_auto>.video_image {
    margin-top: 20px;
  }

  .main_exabyter_video_text_wrapper {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 0px;
    gap: 24px;
    width: auto;
    height: 392px;
  }

  .main_exabyter_video_text_wrapper>p:nth-child(1) {
    max-width: 800px;
    font-weight: 600;
    font-size: 32px;
    line-height: 30px;
    color: var(--dark-black-color);
    text-align: center;
  }

  .main_exabyter_video_text_wrapper>p:nth-child(2) {
    max-width: 800px;
    font-weight: 400;
    font-size: 16px;
    line-height: 30px;
    color: var(--dark-black-color);
    text-align: center;
  }


  .newMainVideo {
    width: 100%;
    position: relative;
    top: 0px;
    left: 0px;
    display: block;
  }

  .newMainVideo_cover {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
  }

  .scroll_bottom_animation {
    z-index: 4;
    position: absolute;
    bottom: 4.9vh;
    left: 0;
    right: 0;
    text-align: center;
    z-index: 100;
    transition: opacity .85s cubic-bezier(.47, .42, 0, .99);
  }

  .scroll_bottom_animation_center_wrapper {
    display: inline-flex;
    flex-direction: column;
    position: relative;
    justify-content: center;
    align-items: center;
  }

  .mouse_object {
    position: relative;
    width: 26px;
    height: 38px;
    border-radius: 20px;
    border: 1px solid var(--white-color);
  }

  .mouse_object>div {
    position: absolute;
    top: 8px;
    left: 50%;
    width: 6px;
    height: 11px;
    border: 1px solid var(--white-color);
    border-radius: 20px;
    transform: translateX(-50%);
  }

  .mouse_animation_arrow {
    display: block;
    animation: arrow_scroll_animation 2.4s forwards infinite;
  }

  .mouse_animation_arrow::after {
    content: '';
    display: block;
    display: inline-block;
    width: 18px;
    height: 18px;
    border: 1px solid var(--white-color);
    border-right: 0;
    border-bottom: 0;
    transform-origin: center;
    transform: rotate(-135deg);
  }

  .exb_flex_box_wrapper {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
  }

  .exb_second_section_animation_wrapper {
    position: relative;
    width: 522px;
    height: 622px;
    border-radius: 24px;
    overflow: visible;
  }

  .send_animation_box {
    width: 204px;
    height: 476px;
    position: relative;
    left: 50%;
    transform: translateX(-50%) rotate(180deg);
    background-color: #EEF4FA;
  }

  .send_animation_box ul {
    width: 100%;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: distribute;
    justify-content: space-around;
    overflow: hidden;
  }

  .send_animation_box ul li {
    position: relative;
    width: 4px;
    height: 100%;
    background-color: #79C6FF;
    overflow: visible;
  }

  .send_animation_box ul li>div {
    position: absolute;
    width: 100%;
    height: 54px;
    z-index: 2;
    top: -150px;
    left: 0px;
    background-color: #c4e1f8;
  }

  .send_animation_box ul li>.second_bar {
    position: absolute;
    width: 100%;
    height: 34px;
    z-index: 3;
    top: -150px;
    left: 0px;
    background-color: #42adff;
  }

  .send_animation_box ul li>.third_bar {
    position: absolute;
    width: 100%;
    height: 14px;
    z-index: 4;
    top: -150px;
    left: 0px;
    background-color: #18b6ff;
  }

  @keyframes blink_light {
    0% {
      opacity: 1;
    }

    50% {
      opacity: 0;
    }

    100% {
      opacity: 1;
    }
  }

  .object_animation_box {
    width: auto;
    height: auto;
    overflow: hidden;
    margin: 0px auto;
  }

  .object_animation_box>.server_wrapper {
    position: relative;
    width: 370px;
    height: 180px;
    background-image: url('/images/innorix_exabyter/Webserver.svg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    margin: 0px auto;
  }

  .object_animation_box>.server_wrapper>.light_wrapper {
    position: absolute;
    top: 41px;
    right: 30px;
    width: 94px;
    height: 8px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .object_animation_box>.server_wrapper>.light_wrapper>span {
    width: 8px;
    height: 8px;
    background-position: center;
    background-repeat: no-repeat;
    background-repeat: no-repeat;
    border-radius: 100%;
    overflow: hidden;
    will-change: background;
  }

  .exb_icon_text_box {
    width: 440px;
    min-width: 440px;
    max-width: 440px;
    height: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 24px;
  }

  .exb_icon_text_box .exb_icon_text_content {
    width: 100%;
  }

  .exb_icon_text_box .exb_icon_text_content .exb_icon_text_content_img1 {
    background-image: url("/images/innorix_exabyter/rok.png");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    background-position: 0% 0%;
  }

  .exb_icon_text_box .exb_icon_text_content .exb_icon_text_content_img2 {
    background-image: url("/images/innorix_exabyter/pun.png");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    background-position: 0% 0%;
  }

  .exb_icon_text_box .exb_icon_text_content .exb_icon_text_content_img3 {
    background-image: url("/images/innorix_exabyter/sta.png");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    background-position: 0% 0%;
  }

  .exb_icon_text_box .exb_icon_text_content .exb_icon_text_content_img4 {
    background-image: url("/images/innorix_exabyter/clo.png");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    background-position: 0% 0%;
  }

  .exb_icon_text_box .exb_icon_text_content .exb_icon_text_content_img5 {
    background-image: url("/images/innorix_exabyter/gas.png");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    background-position: 0% 0%;
  }

  .exb_icon_text_box .exb_icon_text_content .exb_icon_text_content_text {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 16px;
  }

  .exb_icon_text_box .exb_icon_text_content .exb_icon_text_content_text p {
    font-size: 22px;
    font-weight: 300;
    line-height: normal;
    color: var(--dark-black-color);
  }

  .exb_icon_text_box .exb_icon_text_content .exb_icon_text_content_text p:first-child {
    font-size: 28px;
    font-weight: 400;
    line-height: normal;
    color: var(--dark-black-color);
  }

  .slide_start_animation {
    animation-name: slide_animationes;
    animation-duration: 50s;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
  }

  .slide_box_wrapper {
    position: relative;
    margin: 0px auto;
    width: 1136px;
    height: 264px;
    overflow: hidden;
    border-radius: 30px;
    padding: 30px 40px;
    border-radius: 30px;
    background: #F7F7F5;
  }

  .slide_box_wrapper:last-child {
    margin-bottom: 0px;
  }

  .slide_box {
    position: relative;
    top: 0px;
    left: 0px;
    width: 2700px;
    height: 50%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-direction: row;
  }

  .slide_box>div {
    width: 320px;
    height: 100%;
    border-radius: 10px;
    border: 1px solid #7F7F7F;
    box-sizing: border-box;
    margin-right: 20px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
  }

  .from_left_slide_ent>div,
  .from_right_slide_ent>div {
    background-size: contain;
    border: 0px solid #7F7F7F;
  }

  .slide_box>div:last-child {
    margin-right: 0px;
  }

  .slide_box_cover {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background: linear-gradient(0.25turn, #F6F9FC, #F6F9FC, transparent, transparent, #F6F9FC, #F6F9FC);
  }


  .move_container_slide_wrapper {
    position: relative;
    width: 100%;
    height: 100%;
  }



  .main_exacoola_video_wrapper {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 60px;
  }

  .main_exabyter_video_text_wrapper {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 0px;
    gap: 50px;
    width: 100%;
    height: auto;
  }

  .main_exabyter_video_text_wrapper_height_auto {
    height: auto;
  }

  .main_exabyter_video_text_wrapper>p:nth-child(1) {
    color: var(--white-color);
    max-width: 800px;
    font-size: 40px;
    font-weight: 500;
    line-height: 55px;
  }

  .main_exabyter_video_text_wrapper>p:nth-child(2) {
    color: var(--dark-black-color);
    font-size: 22px;
    font-weight: 300;
    line-height: 30px;
  }

  .main_exabyter_video_text_wrapper>p:nth-child(3) {
    color: var(--dark-black-color);
    font-size: 28px;
    font-weight: 400;
    line-height: 30px;
  }

  .main_exabyter_video_text_wrapper>p:nth-child(4) {
    color: var(--dark-black-color);
    font-size: 22px;
    font-weight: 300;
    line-height: normal;
  }

  .video_image {
    position: relative;
    width: 100%;
    min-width: 672px;
    /* height: 392px; */
    cursor: pointer;
    background-position: center;
    background-repeat: no-repeat;
    background-size: 110%;
    overflow: hidden;
    border-radius: 24px;
    /* border: 2px solid transparent; */
    box-sizing: border-box;
    transition: all 0.3s ease;
  }

  .video_image::after {
    content: '';
    display: block;
    position: relative;
    top: 0px;
    left: 0px;
    width: 100%;
    padding-top: 56.25%;
  }

  .video_image:hover {
    /* border: 2px solid #006ABA; */
    background-size: 115%;
  }

  .video_image:hover .playVideoBtn {
    background-image: url('/images/innorix_exacoola/youtube-hover.png');
  }

  .video_image:hover .industries_card_playBtn {
    box-sizing: border-box;
    position: absolute;
    top: 50%;
    left: 50%;
    border-bottom: 40px solid var(--white-color);
    border-left: 25px solid transparent;
    border-right: 25px solid transparent;
    transform: translate(-50%, -50%) rotate(90deg);
  }

  .video_image:hover .industries_card_playBtn>div {
    box-sizing: border-box;
    position: absolute;
    border-bottom: 37px solid #FB5151;
    border-left: 23px solid transparent;
    border-right: 23px solid transparent;
    transform: translate(-50%, 2px);
  }

  .main_exabyter_video_text_wrapper>.whiteBtn {
    margin-top: auto;
  }

  .playVideoBtn {
    width: 50px;
    height: 50px;
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: -25px;
    margin-left: -25px;
    background-image: url('/images/innorix_exacoola/youtube-nothover.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    cursor: pointer;
    transition: all 0.3s ease;
  }

  .cando_flex {
    display: flex;
    justify-content: flex-start;
    flex-direction: row;
    margin-top: 40px;
    width: 100%;
    margin: 0px auto;
    flex-wrap: wrap;
    transition: all 0.3s ease;
    gap: 16px;
  }

  .cando_flex_card {
    width: 368px;
    height: 220px;
    background: var(--white-color);
    border-radius: 16px;
  }

  .cando_item_box {
    position: relative;
    width: 100%;
    height: 250px;
    overflow: hidden;
  }

  .cando_item_box_wrapper {
    width: 100%;
    height: 100%;
  }

  .cando_title {
    padding: 40px 40px 0px;
    font-weight: 600;
    font-size: 24px;
    line-height: 30px;
    color: #242424;
    margin-bottom: 16px;
  }

  .cando_text {
    padding: 0px 40px 40px;
    font-weight: 400;
    font-size: 18px;
    line-height: 26px;
    color: var(--dark-black-color);
  }


  .vertical_text_box_wrapper {
    width: 100%;
    height: auto;
    display: flex;
    justify-content: flex-start;
    align-items: stretch;
    flex-direction: row;
    gap: 24px;
  }

  .vertical_text_box {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 40px;
    gap: 24px;
    width: 100%;
    min-height: 309px;
    background: linear-gradient(139deg, var(--white-color) 0.03%, #9F80FF 0.04%, #6D3AFF 99.12%);
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid #d1d1d1;
    box-shadow: 0px 2px 10px 0px rgba(0, 0, 0, 0.10);
  }

  .vertical_text_box:nth-child(2) {
    background: #333;
  }

  .vertical_text_box:nth-child(3) {
    background: #3E1F98;
  }

  .vertical_text_box_image {
    width: 80px;
    height: 80px;
    border-radius: 10px;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
  }

  .vertical_text_wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0px;
    gap: 24px;
    width: 100%;
    height: auto;
  }

  .vertical_text_wrapper>p:first-child {
    color: var(--white-color);
    font-size: 32px;
    font-weight: 700;
    line-height: 40px;
    width: 100%;
    text-align: left;
  }

  .vertical_text_wrapper>p:nth-child(3) {
    color: var(--white-color);
    font-size: 18px;
    font-weight: 300;
    line-height: 28px;
  }

  .download_white_box_wrapper {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    padding: 0px;
    gap: 40px;
    width: 100%;
    height: auto;
    overflow: hidden;
  }

  .download_input_wrapper {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 40px;
    width: 50%;
  }

  .hold_request_trial_btn {
    color: var(--white-color) !important;
    background-color: var(--white-color) !important;
  }

  .second_guide_text {
    display: flex;
    min-height: 60px;
    align-items: center !important;
    justify-content: flex-start !important;
    text-align: left !important;
    gap: 8px !important;
  }

  .okay_wrapper {
    position: absolute;
    top: 0px;
    left: 0px;
    z-index: 20;
    width: 100%;
    height: 100%;
    background-color: var(--white-color);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .okay_wrapper_inner {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
  }

  .check_symbol {
    display: inline-block;
    width: 24px;
    height: 24px;
    background-color: #006ABA;
    border-radius: 100%;
    position: relative;
  }

  .check_symbol::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-35%, -102%) rotate(-45deg);
    width: 14px;
    height: 4px;
    border-left: 2px solid var(--white-color);
    border-bottom: 2px solid var(--white-color);
  }

  .setp_for_sign_in {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0px;
    left: 0px;
    z-index: 11;
    background-color: var(--white-color);
    padding-right: 96px;
  }

  .setp_for_sign_in_have_account {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0px;
    left: 0px;
    z-index: 12;
    background-color: var(--white-color);
    padding-right: 96px;
  }

  .img_wrapper {
    width: 50%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
  }

  .setp_for_sign_in_wrapper {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 30px;
    opacity: 0;
    transition: all 0.3s ease;
  }

  .sign_in_check_wrapper {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .setp_for_sign_in_wrapper_inner {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
  }

  .back_to_fill_info {
    position: relative;
    margin-top: 20px;
    color: var(--bright-blue-color);
    font-size: 22px;
    font-weight: 400;
    line-height: 30px;
    cursor: pointer;
  }

  .back_to_fill_info::after {
    content: "";
    position: absolute;
    bottom: -2px;
    left: 50%;
    width: 0%;
    height: 0px;
    border-bottom: 1px solid var(--bright-blue-color);
    transition: all 0.3s ease;
    transform: translateX(-50%);
  }

  .back_to_fill_info:hover::after {
    width: 100%;
  }

  .download_white_box_wrapper p {
    font-size: 16px;
    font-weight: 300;
    line-height: 26px;
  }

  .download_white_box_wrapper p span {
    display: block;
  }

  .download_box_content_wrapper {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 0px;
    gap: 16px;
    width: 100%;
  }

  .sign_in_check_wrapper>p {
    color: var(--dark-black-color);
    font-size: 22px;
    font-weight: 400;
    line-height: 30px;
  }

  .sign_in_check_wrapper>p.sign_in_download_btn {
    position: relative;
    color: var(--bright-blue-color);
    font-size: 22px;
    font-weight: 400;
    line-height: 30px;
    cursor: pointer;
  }

  .sign_in_check_wrapper>p.sign_in_download_btn::after {
    content: "";
    position: absolute;
    bottom: -2px;
    left: 50%;
    width: 0%;
    height: 0px;
    border-bottom: 1px solid var(--bright-blue-color);
    transition: all 0.3s ease;
    transform: translateX(-50%);
  }

  .sign_in_check_wrapper>p.sign_in_download_btn:hover::after {
    width: 100%;
  }

  .sign_in_check_inner_wrapper {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 16px;
  }

  .download_white_box_text_wrapper {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 0px;
    gap: 16px;
  }

  .download_white_box_inner_text_wrapper {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 0px;
    gap: 16px;
  }

  .download_white_box_inner_text_title {
    color: var(--dark-black-color);
    font-size: 22px !important;
    font-weight: 300;
    line-height: normal;
  }

  .download_white_box_input_wrapper {
    position: relative;
    width: 100%;
    height: fit-content;
  }

  .download_white_box_input_wrapper>input {
    width: 100% !important;
    height: 44px !important;
    padding: 16px 12px 16px 24px !important;
    border-radius: 8px !important;
    font-size: 18px !important;
  }

  .download_white_box_input_wrapper>textarea {
    width: 100% !important;
    height: 44px;
    min-height: 58px;
    padding: 16px 12px 16px 24px !important;
    border-radius: 8px !important;
    font-size: 18px !important;
  }

  .download_input_wrapper .select_list_ex {
    top: calc(100% + -43px) !important;
  }


  .select_box_ex {
    position: relative;
    top: 0px;
    left: 0px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width: fit-content;
    height: fit-content;
    background: var(--white-color);
    border: 1px solid #d9d9d9;
    box-sizing: border-box;
    border-radius: 16px;
  }

  .select_box_now_select_ex {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    cursor: pointer;
    padding: 16px 12px 16px 24px !important;
    font-weight: 500;
  }

  .select_box_now_select_arrow_ex {
    position: absolute;
    top: 50%;
    right: 16px;
    width: 8px;
    height: 8px;
    box-sizing: border-box;
    transition: all 0.3s ease;
    transform: translateY(-50%) rotate(-45deg);
    transform-origin: center;
    cursor: pointer;
    border-left: 1px solid #000;
    border-bottom: 1px solid #000;
  }

  .select_list_ex {
    position: absolute;
    top: calc(100% + -57px);
    left: -1px;
    z-index: 10;
    padding: 0px;
    width: 100%;
    height: auto;
    background: var(--white-color);
    border: 1px solid #d9d9d9;
    box-sizing: border-box;
    border-radius: 8px;
    box-shadow: 0px 20px 40px rgba(75, 75, 75, 0.15);
    display: none;
    overflow-y: overlay;
    max-height: 226px;
  }

  .select_value_ex {
    width: 100%;
    height: fit-content;
    padding: 16px 12px 16px 24px !important;
    display: flex;
    flex-direction: row;
    align-items: center;
    cursor: pointer;
    box-sizing: border-box;
    font-weight: 500;
  }

  .select_list_ex::-webkit-scrollbar {
    width: 0px;
    height: 0px;
  }

  .select_list_ex::-webkit-scrollbar-thumb {
    height: 30%;
    background: #C1C1C1;
    border-radius: 1px;
  }

  .select_list_ex::-webkit-scrollbar-track {
    background: #F1F1F1;
  }

  .select_list_ex::-webkit-scrollbar-corner {
    background: #F1F1F1;
  }

  .select_list_ex::-webkit-scrollbar {
    width: 6px;
    height: 6px;
  }

  .select_value_ex:hover {
    background: rgba(71, 112, 255, 0.1) !important;
  }

  .select_value_ex.active {
    background: rgba(71, 112, 255, 0.2) !important;
  }



  .category_tag_content_wrapper {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 16px;
  }

  .category_tag_content {
    padding: 0px 15px;
    width: fit-content;
    height: 42px;
    border: 1px solid #E9E9E9;
    background-color: #E9E9E9;
    border-radius: 30px;
    box-sizing: border-box;
    cursor: pointer;
    color: var(--dark-black-color);
    line-height: 40px;
    transition: all 0.3s ease;
  }

  .category_tag_content.active {
    border: 1px solid #DADADA;
    background-color: #DADADA;
  }

  .category_tag_content:hover {
    border: 1px solid #DADADA;
    background-color: #DADADA;
  }

  .industries_title_text {
    font-size: 28px;
    font-weight: 400;
    line-height: normal;
    color: var(--dark-black-color);
    margin-bottom: 48px;
    width: fit-content;
    margin-top: 80px;
  }

  .industries_title_text:first-child {
    margin-top: 0px;
  }

  .industries_card_content_wrapper {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 24px;
    margin-top: 0px;
    margin-bottom: 80px;
  }

  .industries_card_content_wrapper {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: row;
    align-items: stretch;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 24px;
    margin-top: 40px;
  }

  .industries_card_content {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0px;
    gap: 0px;
    width: 362px;
    height: auto;
    cursor: pointer;
    background-color: var(--white-color);
    border: 1px solid #D1D1D1;
    box-sizing: border-box;
    border-radius: 24px;
    transition: all 0.3s ease;
    overflow: hidden;
    box-shadow: 0px 2px 10px 0px rgba(0, 0, 0, 0.10);
  }

  .industries_video_content {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 0px;
    gap: 24px;
    width: 556px;
    height: auto;
    cursor: pointer;
    background-color: var(--white-color);
    border-radius: 24px;
  }

  .industries_card_img {
    position: relative;
    width: 100%;
    /* height: 100%; */
    /* min-width: 100%; */
    height: 240px;
    min-height: 240px;
    overflow: hidden;
    /* border: 2px solid rgb(255 255 255 / 0%); */
    box-sizing: border-box;
    transition: all 0.3s ease;
    /* border-radius: 16px; */
  }

  .industries_card_img_box {
    width: 100%;
    height: 100%;
    /* background: #C9C9C9; */
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-clip: border-box;
    transition: all 0.3s ease;
    box-sizing: border-box;
  }

  .industries_card_text_wrapper {
    position: relative;
    top: 0px;
    left: 0px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 24px 40px 40px;
    gap: 16px;
    width: 100%;
    height: 100%;
    min-height: 244px;
    /* background: linear-gradient(180deg, rgba(0, 0, 0, 0.10) 0%, rgba(0, 0, 0, 0.50) 70.31%); */
  }

  .industries_card_info_text {
    font-weight: 500;
    font-size: 18px;
    color: var(--dark-black-color);
    line-height: normal;
    /* margin-top: 24px; */
  }

  .industries_card_info_text_big {
    font-weight: 500;
    font-size: 18px;
    color: var(--dark-black-color);
    line-height: normal;
    /* margin-top: 24px; */
  }

  .industries_card_info_hash_text {
    color: #7F7F7F;
    font-size: 14px;
    font-weight: 400;
    line-height: normal;
    margin-top: 0;
  }

  /* .industries_card_info_hash_text::before {
    content: '#';
  } */
  .category_tag_text {
    margin-top: auto;
  }

  .industries_read_more_btn {
    margin-top: auto;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    padding: 0px;
    gap: 8px;
    width: 108px;
    height: 20px;
  }

  .industries_read_more_btn>p {
    font-weight: 400;
    font-size: 16px;
    line-height: 20px;
    color: #006ABA;
  }

  .industries_card_video_info_text {
    position: absolute;
    bottom: 0px;
    left: 0px;
    font-size: 18px;
    font-weight: 400;
    line-height: normal;
    color: var(--white-color);
    /* height: 90px; */
    padding: 40px;
    box-sizing: border-box;
  }

  .industries_card_content:hover {
    border: 1px solid #006ABA;
  }

  .industries_card_content:hover .industries_card_img .industries_card_img_box {
    transform: scale(1.1);
  }

  .industries_card_content .industries_read_more_btn .arrow {
    transition: all 0.3s ease;
  }

  .industries_card_content:hover .industries_read_more_btn .arrow {
    margin-left: 5px;
  }

  .industries_card_content {}

  .industries_card_video {
    position: relative;
    width: 100%;
    /* height: 302px; */
    box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.1);
    border-radius: 24px;
    /* background: #C9C9C9; */
    background-repeat: no-repeat;
    background-size: 105%;
    background-position: center;
    /* border: 2px solid transparent; */
    transition: all 0.3s ease;
    padding-top: 56.25%;
  }

  .industries_card_playBtn {
    box-sizing: border-box;
    position: absolute;
    top: 50%;
    left: 50%;
    border-bottom: 40px solid var(--white-color);
    border-left: 25px solid transparent;
    border-right: 25px solid transparent;
    transform: translate(-50%, -50%) rotate(90deg);
    transition: all 0.3s ease;
  }

  .industries_card_playBtn>div {
    box-sizing: border-box;
    position: absolute;
    /* top: 50%; */
    /* left: 50%; */
    border-bottom: 37px solid #006ABA;
    border-left: 23px solid transparent;
    border-right: 23px solid transparent;
    transform: translate(-50%, 2px);
    transition: all 0.3s ease;
  }

  .industries_video_content:hover .industries_card_video {
    background-size: 110%;
    /* border: 2px solid #006ABA; */
  }

  .industries_video_content:hover .playVideoBtn {
    background-image: url('/images/innorix_exacoola/youtube-hover.png');
  }

  /* .industries_video_content:hover .industries_card_playBtn {
    box-sizing: border-box;
    position: absolute;
    top: 50%;
    left: 50%;
    border-bottom: 40px solid var(--white-color);
    border-left: 25px solid transparent;
    border-right: 25px solid transparent;
    transform: translate(-50%, -50%) rotate(90deg);
  }
  .industries_video_content:hover .industries_card_playBtn > div {
    box-sizing: border-box;
    position: absolute;
    top: 50%;
    left: 50%;
    border-bottom: 37px solid #FB5151;
    border-left: 23px solid transparent;
    border-right: 23px solid transparent;
    transform: translate(-50%, 2px);
  } */
  /* .industries_card_playBtn:hover{
  }
  .industries_card_playBtn:hover > div{
  } */
  .video_play_time {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    top: 40px;
    right: 40px;
    padding: 2px 5px;
    gap: 10px;
    position: absolute;
    width: 45px;
    height: 23px;
    background: #000000;
    color: #e1e1e1;
  }

  .cover_imgae {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.40) 0%, rgba(0, 0, 0, 0.00) 100%);

  }

  .industries_text_wrapper {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 0px;
    background-color: var(--white-color);
    padding: 80px;
    border-radius: 24px;
    min-height: 900px;
    box-shadow: 0px 2px 10px 0px rgba(0, 0, 0, 0.10);
  }

  .industries_text_wrapper>p {
    line-height: 1.6;
  }

  .resources_detail_content_top {
    color: #777;
    font-size: 22px !important;
    font-weight: 300;
    line-height: normal !important;
    margin-bottom: 24px;
  }

  .resources_detail_content_bottom {
    margin-top: 80px;
  }

  .industries_text_title {
    font-size: 34px;
    color: var(--dark-black-color);
    margin-bottom: 40px;
  }

  .industries_text_margin_bottom {
    margin-bottom: 15px !important;
  }


  .resources_detail_top_image_wrapper {
    width: 100%;
    height: auto;
    display: block;
    margin-bottom: 80px;
  }

  .resources_detail_top_image_wrapper>img {
    width: 100%;
    display: block;
  }


  .resources_detail_top_wrapper {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: center;
    gap: 16px;
    margin-top: 24px;
    margin-bottom: 80px;
  }

  .view_like_wrapper {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 16px;
  }

  .view_like_wrapper>span {
    color: #777;
    font-size: 16px;
    font-weight: 400;
    line-height: normal;
  }

  .view_like_btn_wrapper {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 16px;
  }

  .view_like_btn_wrapper>div {
    position: relative;
    display: flex;
    width: 40px;
    height: 40px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-radius: 24px;
    background-color: #F2F2F2;
    transition: all 0.3s ease;
    cursor: pointer;
    background-position: center;
    background-repeat: no-repeat;
    background-size: 32px 32px;
  }

  .view_like_btn_wrapper>div:hover {
    background-color: #006ABA;
  }

  .view_like_btn_wrapper>div:first-child {
    background-image: url('/images/innorix_homepage/new_image/like-blue.svg');
  }

  .view_like_btn_wrapper>div:nth-child(2) {
    background-image: url('/images/innorix_homepage/new_image/share-blue.svg');
  }

  .view_like_btn_wrapper>div:nth-child(3) {
    background-image: url('/images/innorix_homepage/new_image/print_blue.svg');
  }

  .view_like_btn_wrapper>div:nth-child(4) {
    background-image: url('/images/innorix_homepage/new_image/pdf-blue.svg');
  }

  .view_like_btn_wrapper>div:hover:first-child {
    background-image: url('/images/innorix_homepage/new_image/like-white.svg');
  }

  .view_like_btn_wrapper>div:hover:nth-child(2) {
    background-image: url('/images/innorix_homepage/new_image/share-white.svg');
  }

  .view_like_btn_wrapper>div:hover:nth-child(3) {
    background-image: url('/images/innorix_homepage/new_image/print_white.svg');
  }

  .view_like_btn_wrapper>div:hover:nth-child(4) {
    background-image: url('/images/innorix_homepage/new_image/pdf-white.svg');
  }

  .content_shear_btn_alert {
    position: absolute;
    top: 120%;
    left: 50%;
    transform: translateX(-50%);
    padding: 4px 10px;
    color: var(--white-color);
    background-color: #006ABA;
    border-radius: 6px;
    font-size: 14px;
    display: none;
  }

  .result_wrapper {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 24px;
  }

  .result_content {
    width: 100%;
    height: auto;
    padding: 40px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 24px;
    border-radius: 24px;
    border: 1px solid #D1D1D1;
    background-color: var(--white-color);
  }

  .result_text_wrapper {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 16px;
  }

  .result_text_wrapper>p:first-child {
    color: var(--dark-black-color);
    font-size: 22px;
    font-weight: 400;
    line-height: normal;
  }

  .result_content_no_result {
    width: 100%;
    height: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .result_content_no_result>p {
    color: #7F7F7F;
  }

  .result_category_wrapper {
    width: fit-content;
    height: auto;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 8px;
  }

  .result_category_content {
    padding: 0px 15px;
    width: fit-content;
    height: 42px;
    border: 1px solid #E9E9E9;
    background-color: #E9E9E9;
    border-radius: 30px;
    box-sizing: border-box;
    cursor: pointer;
    color: var(--dark-black-color);
    line-height: 40px;
    transition: all 0.3s ease;
  }

  .result_category_content:hover {
    border: 1px solid #DADADA;
    background-color: #DADADA;
  }


  .resources_box {
    display: flex;
    width: 100%;
    height: auto;
    min-height: 424px;
    padding: 40px;
    flex-direction: column;
    align-items: flex-start;
    gap: 40px;
    border-radius: 24px;
    background: var(--white-color);
    border: 1px solid #D1D1D1;
    color: var(--dark-black-color);
    margin-top: 80px;
  }

  .resources_box_text_wrapper {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }

  .resources_box_text_wrapper p:first-child {
    width: 340px;
  }

  .resources_box_text_wrapper p:first-child>span {
    display: block;
  }

  .resources_box_search {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 16px;
  }

  .resources_box_search_top_wrapper {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 16px;
  }

  .resources_box_search_wrapper {
    position: relative;
    display: flex;
    width: 600px;
    height: 44px;
    padding: 20px;
    align-items: center;
    gap: 10px;
    border-radius: 24px;
    background: var(--white-color);
    color: #7F7F7F;
    font-size: 18px;
    font-weight: 500;
    line-height: normal;
    border: 1px solid #D1D1D1;
    transition: all 0.3s ease;
  }

  .resources_box_search_wrapper>.error_alert {
    position: absolute;
    top: 50%;
    right: 16px;
    width: fit-content;
    height: 34px;
    transform: translateY(-50%);
    background-color: #ff7676;
    color: var(--white-color);
    padding: 10px;
    border-radius: 6px;
    font-size: 16px;
    line-height: 13px;
    z-index: 3;
    white-space: nowrap;
  }

  .resources_box_search_wrapper>input[type=text] {
    appearance: none;
    border: 0px !important;
    outline: none;
    padding: 0px;
    margin: 0px;
    width: 100%;
    height: 30px;
    font-size: 18px;
  }

  .resources_box_keyword_wrapper {
    width: 840px;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 8px 24px;
    flex-wrap: wrap;
  }

  .resources_box_keyword_wrapper>a {
    text-decoration: underline;
    font-size: 16px;
    transition: all 0.3s ease;
  }

  .resources_box_keyword_wrapper>a:hover {
    color: #006ABA;
  }


  .usage_guide_card_content_wrapper {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 40px;
    margin-top: 40px;
  }

  .usage_guide_card_content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 0px;
    gap: 20px;
    width: 360px;
    height: 317px;
    cursor: pointer;
  }

  .usage_guide_card_img {
    width: 100%;
    height: 220px;
    /* background: #C9C9C9; */
  }

  .return_to_content_top {
    position: fixed;
    right: 70px;
    bottom: 40px;
    width: 50px;
    height: 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border-radius: 100%;
    background-color: var(--white-color);
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.15);
  }

  .return_to_content_top::after {
    content: '';
    position: absolute;
    top: 25px;
    left: 50%;
    transform: translateX(-50%) rotate(-45deg);
    width: 14px;
    height: 14px;
    border: 2px solid #474747;
    border-left: 0px;
    border-bottom: 0px;
    transition: all 0.3s ease;
  }

  .return_to_content_top::before {
    content: '';
    position: absolute;
    top: 15px;
    left: 50%;
    transform: translateX(-50%) rotate(-45deg);
    width: 14px;
    height: 14px;
    border: 2px solid #474747;
    border-left: 0px;
    border-bottom: 0px;
    transition: all 0.3s ease;
  }

  .return_to_content_top:hover::after {
    border-color: #006ABA;
  }

  .return_to_content_top:hover::before {
    border-color: #006ABA;
  }


  .arrow {
    width: 7px;
    height: 7px;
    position: relative;
  }

  .arrow::before,
  .arrow::after {
    content: '';
    position: absolute;
  }

  .arrow::before {
    width: 100%;
    height: 100%;
    border: 1px solid #006ABA;
    border-right: 0;
    border-bottom: 0;
  }

  .arrow::after {
    width: 12px;
    height: 0px;
    border-bottom: 1px solid #006ABA;
    transform-origin: 0 100%;
    transform: rotate(45deg);
    margin-top: 0px;
  }

  .arrow--left {
    transform: rotate(-45deg);
  }

  .arrow--right {
    transform: rotate(135deg);
  }

  .arrow--top {
    transform: rotate(45deg);
  }

  .arrow--bottom {
    transform: rotate(225deg);
  }


  .pricing_title {
    width: 528px;
    font-size: 28px;
    font-weight: 400;
    line-height: normal;
    color: var(--dark-black-color);
    margin-bottom: 48px;
  }

  .pricing_wrapper {
    width: 100%;
    height: auto;
    display: flex;
    justify-content: flex-start;
    align-items: stretch;
    gap: 30px;
  }

  .pricing_content_list_free,
  .pricing_content_list_commercial {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 30px;
    width: 100%;
    height: 470px;
    background: var(--white-color);
    border-radius: 24px;
    border: 1px solid #d1d1d1;
    box-shadow: 0px 2px 10px 0px rgba(0, 0, 0, 0.10);
  }

  .pricing_title_list {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 30px 0px;
    width: 190px;
    min-width: 190px;
    height: 100%;
    background: transparent;
    border-radius: 24px;
  }

  .pricing_title_list div {
    margin-bottom: 16px;
    /* font-weight: bold; */
    font-size: 18px;
    line-height: 28px;
    text-align: right;
    width: 100%;
    color: #777;
  }

  .pricing_content_list_free div:not(:last-child),
  .pricing_content_list_commercial div:not(:last-child) {
    margin-bottom: 16px;
    /* font-weight: bold; */
    font-size: 18px;
    line-height: 28px;
    color: var(--dark-black-color);
  }

  .inner_small_wrapper {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding-left: 24px;
  }

  .inner_small_wrapper>span {
    color: var(--light-black-color);
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
  }

  /* .pricing_title_list div:nth-child(3) {
    margin-bottom: 32px;
    height: 86px;
  }
  .pricing_content_list_free div:nth-child(3),
  .pricing_content_list_commercial div:nth-child(3) {
    margin-bottom: 32px;
    height: 86px;
  }
  .pricing_title_list div:nth-child(4) {
    margin-bottom: 32px;
    height: 112px;
  }
  .pricing_content_list_free div:nth-child(4),
  .pricing_content_list_commercial div:nth-child(4) {
    margin-bottom: 32px;
    height: 112px;
  } */
  .pricing_title_list div:first-child {
    height: 30px;
    font-weight: 400;
    font-size: 22px;
    line-height: 30px;
    color: #006ABA;
    margin-bottom: 24px;
  }

  .pricing_content_list_free div:first-child,
  .pricing_content_list_commercial div:first-child {
    height: 30px;
    color: var(--dark-black-color);
    font-size: 22px;
    font-weight: 400;
    line-height: 30px;
    margin-bottom: 24px;
  }




  .price_wrapper .pricing_title_list div:nth-child(3) {
    margin-bottom: 32px;
    height: unset;
  }

  .price_wrapper .pricing_content_list_free div:nth-child(3),
  .price_wrapper .pricing_content_list_commercial div:nth-child(3) {
    margin-bottom: 32px;
    height: unset;
  }

  .price_wrapper .pricing_title_list div:nth-child(4) {
    margin-bottom: 24px;
    height: unset;
  }

  .price_wrapper .pricing_content_list_free div:nth-child(4),
  .price_wrapper .pricing_content_list_commercial div:nth-child(4) {
    margin-bottom: 24px;
    height: unset;
  }

  .price_wrapper .pricing_title_list div:first-child {
    height: 30px;
    margin-bottom: 48px;
  }


  .price_wrapper .pricing_content_list_free div:first-child,
  .price_wrapper .pricing_content_list_commercial div:first-child {
    width: 100%;
    height: 30px;
    text-align: center;
    font-size: 28px;
    font-weight: 400;
    line-height: normal;
    color: #006ABA;
    margin-bottom: 48px;
  }

  .price_wrapper .pricing_content_list_commercial div:nth-last-child(2) {
    margin-bottom: 48px;
  }

  .pricing_content_list_free>.pricing_content_list_free_inner_wrapper {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    margin-bottom: 50px !important;
  }

  .pricing_content_list_free_inner_wrapper>div:nth-child(2),
  .pricing_content_list_free_inner_wrapper>div:nth-child(3) {
    height: 18px;
    color: var(--dark-black-color);
    font-size: 14px;
    font-weight: 400;
    line-height: normal;
    margin-bottom: 0px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
  }

  .pricing_content_list_free_inner_wrapper>div:first-child {
    height: 34px;
    color: var(--dark-black-color);
    font-size: 28px;
    font-weight: 400;
    line-height: normal;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    margin-bottom: 10px;
  }

  /* .pricing_title_list div > span {
    margin-bottom: 10px;
    display: block;
  }
  .pricing_content_list_free div > span,
  .pricing_content_list_commercial div > span {
    display: block;
    margin-bottom: 10px;
    font-weight: 300;
    font-size: 18px;
    line-height: 26px;
    color: var(--dark-black-color);
  } */

  .support_center_box_wrapper {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 24px;
    width: 100%;
    height: auto;
  }

  .support_center_box {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 40px;
    width: 556px;
    height: auto;
    box-sizing: border-box;
    background: var(--white-color);
    border-radius: 24px;
    gap: 24px;
    border: 1px solid #d1d1d1;
    box-shadow: 0px 2px 10px 0px rgba(0, 0, 0, 0.10);
  }

  .support_center_box:nth-child(1),
  .support_center_box:nth-child(2),
  .support_center_box:nth-child(3) {
    width: 362px;
  }

  .support_center_box_img_wrapper {
    width: 80px;
    height: 80px;
    min-height: 80px;
    min-width: 80px;
    /* background: #E3E3E3; */
    border-radius: 10px;
    background-image: url('/images/main/230627_webicons.svg');
    background-repeat: no-repeat;
  }

  .support_center_box_text_wrapper {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    /* margin-top: auto; */
    gap: 24px;
  }

  .support_center_box_text_wrapper p:first-child {
    color: var(--dark-black-color);
    font-size: 28px;
    font-weight: 400;
    line-height: normal;
  }

  .support_center_box_text_wrapper p:nth-child(2) {
    font-weight: 400;
    font-size: 18px;
    line-height: 28px;
    color: var(--dark-black-color);
    margin-bottom: auto;
  }

  .support_center_box_text_wrapper .whiteBtn {}

  .exb_animation_image_wrapper {
    position: relative;
    display: block;
    width: 800px;
    height: auto;
    margin: 0px auto;
  }

  .exb_animation_image_back {
    position: relative;
    z-index: 2;
    display: block;
    width: 100%;
    height: auto;
  }

  .exb_big_icon {
    position: sticky;
    top: calc(50% - 151px);
    left: calc(50% - 10px);
    z-index: 1;
    transform: translate(-50%, -50%) scale(1);
    width: 142px;
    height: 104px;
    background-image: url('/images/innorix_exabyter/exb_ani_icon.svg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
  }

  .exb_big_bg {
    position: sticky;
    top: 50%;
    left: 0%;
    transform: translateY(-50%);
    width: 100%;
    height: 800px;
    background-image: url('/images/innorix_exabyter/exb_ani_bg.png');
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
  }

  .exb_big_icon_fix {
    position: absolute;
    top: 31.7%;
    left: 50%;
    z-index: 2;
    transform: translate(-57%, -117%) scale(1);
    width: 9.8%;
    height: 16%;
    background-image: url('/images/innorix_exabyter/exb_ani_icon.svg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    transition: all 0.3s ease;
  }

  .exb_big_icon_fix2 {
    position: absolute;
    top: 32.2%;
    left: 50%;
    z-index: 1;
    transform: translate(-54%, -56%) scale(0);
    width: 17%;
    height: 23%;
    background-image: url('/images/innorix_exabyter/server_main/link_circle.svg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    transition: all 0.3s ease;
  }

  .exb_big_bg_fix {
    position: absolute;
    top: 0px;
    left: 0px;
    z-index: 3;
    width: 100%;
    height: 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
  }

  .exb_big_line_fix {
    position: absolute;
    top: 0px;
    left: 0px;
    z-index: 1;
    width: 100%;
    height: 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
  }

  .exb_content_fix {
    position: absolute;
    background-image: url('/images/innorix_exabyter/exb_ani_icon.svg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    transform-origin: center;
    transform: scale(0);
    transition: all 0.3s ease;
  }

  .exb_content_fix.exb_content_small_left {
    background-image: url('/images/innorix_exabyter/server_main/extrude_left.svg');
  }

  .exb_content_fix.exb_content_small_right {
    background-image: url('/images/innorix_exabyter/server_main/extrude_right.svg');
  }

  .sample_line_wrapper {
    position: relative;
    width: 100%;
    height: 100%;
  }

  .line_content {
    height: 5px;
    position: absolute;
    background-color: #008CFF;
    transform-origin: 0px 0px;
    overflow: hidden;
  }

  .exb_animation_text_wrapper {
    position: relative;
    width: 1136px;
    margin: 0px auto 100px;
  }

  .exb_animation_text {
    /* position: relative; */
    /* left: 50%; */
    /* transform: translateX(-50%); */
    width: 700px;
    color: var(--dark-black-color);
    text-align: left;
    font-size: 40px;
    font-weight: 700;
    line-height: 55px;
    opacity: 0;
    transition: all 0.3s ease;
  }

  .new_min_flex_wrapper {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 100px;
    padding-bottom: 60px;
  }

  .new_main_flex_title {
    width: 100%;
    color: var(--dark-black-color);
    font-size: 40px;
    font-weight: 700;
    line-height: 55px;
    text-align: left;
  }

  .new_main_inner_flex_wrapper {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: row;
    align-items: stretch;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 60px 50px;
  }

  .new_main_inner_flex_content {
    position: relative;
    width: calc(50% - 25px);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 20px;
    border-top: 2px solid #000;
    padding-top: 20px;
  }

  .new_main_inner_flex_content.content_3 {
    width: calc(33% - 30px);
  }

  .new_main_inner_flex_content>.new_main_inner_flex_img {
    position: absolute;
    bottom: 0px;
    right: 0px;
    /* width: 100px;
    height: 100px; */
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
  }

  .new_main_inner_flex_content>p {
    color: var(--dark-black-color);
    font-size: 18px;
    font-weight: 500;
    line-height: 24px;
    height: 156px;
  }

  .new_main_inner_flex_content>.new_main_inner_title {
    color: var(--dark-black-color);
    font-size: 32px;
    font-weight: 700;
    line-height: 40px;
    height: auto;
  }

  .new_main_inner_flex_content>a {
    color: var(--dark-black-color);
    font-size: 18px;
    font-weight: 600;
    line-height: 24px;
    margin-top: auto;
    transition: all 0.3s ease;
  }

  .new_main_inner_flex_content>a:hover {
    color: #087EEE;
  }













































  .from_right_slide_ent>div:nth-child(1) {
    background-image: url('/images/innorix_exacoola/logo_new_comp/aia.png');
  }

  .from_right_slide_ent>div:nth-child(2) {
    background-image: url('/images/innorix_exacoola/logo_new_comp/american_express.png');
  }

  .from_right_slide_ent>div:nth-child(3) {
    background-image: url('/images/innorix_exacoola/logo_new_comp/aramark.png');
  }

  .from_right_slide_ent>div:nth-child(4) {
    background-image: url('/images/innorix_exacoola/logo_new_comp/bank_of_korea.png');
  }

  .from_right_slide_ent>div:nth-child(5) {
    background-image: url('/images/innorix_exacoola/logo_new_comp/belkin.png');
  }

  .from_right_slide_ent>div:nth-child(6) {
    background-image: url('/images/innorix_exacoola/logo_new_comp/bnp_paribas.png');
  }

  .from_right_slide_ent>div:nth-child(7) {
    background-image: url('/images/innorix_exacoola/logo_new_comp/carrefour.png');
  }

  .from_right_slide_ent>div:nth-child(8) {
    background-image: url('/images/innorix_exacoola/logo_new_comp/cgv.png');
  }

  .from_right_slide_ent>div:nth-child(9) {
    background-image: url('/images/innorix_exacoola/logo_new_comp/cj.png');
  }

  .from_right_slide_ent>div:nth-child(10) {
    background-image: url('/images/innorix_exacoola/logo_new_comp/clinique.png');
  }

  .from_right_slide_ent>div:nth-child(11) {
    background-image: url('/images/innorix_exacoola/logo_new_comp/daewoo.png');
  }

  .from_right_slide_ent>div:nth-child(12) {
    background-image: url('/images/innorix_exacoola/logo_new_comp/dongbu.png');
  }

  .from_right_slide_ent>div:nth-child(13) {
    background-image: url('/images/innorix_exacoola/logo_new_comp/doosan.png');
  }

  .from_right_slide_ent>div:nth-child(14) {
    background-image: url('/images/innorix_exacoola/logo_new_comp/dun_bradstreet.png');
  }

  .from_right_slide_ent>div:nth-child(15) {
    background-image: url('/images/innorix_exacoola/logo_new_comp/ericsson.png');
  }

  .from_right_slide_ent>div:nth-child(16) {
    background-image: url('/images/innorix_exacoola/logo_new_comp/exxonmobil.png');
  }

  .from_right_slide_ent>div:nth-child(17) {
    background-image: url('/images/innorix_exacoola/logo_new_comp/food_for_thehungry.png');
  }

  .from_right_slide_ent>div:nth-child(18) {
    background-image: url('/images/innorix_exacoola/logo_new_comp/fuji_xerox.png');
  }

  .from_right_slide_ent>div:nth-child(19) {
    background-image: url('/images/innorix_exacoola/logo_new_comp/ge.png');
  }

  .from_right_slide_ent>div:nth-child(20) {
    background-image: url('/images/innorix_exacoola/logo_new_comp/gs_caltex.png');
  }

  .from_right_slide_ent>div:nth-child(21) {
    background-image: url('/images/innorix_exacoola/logo_new_comp/halla.png');
  }

  .from_right_slide_ent>div:nth-child(22) {
    background-image: url('/images/innorix_exacoola/logo_new_comp/hankook.png');
  }

  .from_right_slide_ent>div:nth-child(23) {
    background-image: url('/images/innorix_exacoola/logo_new_comp/hanwha.png');
  }

  .from_right_slide_ent>div:nth-child(24) {
    background-image: url('/images/innorix_exacoola/logo_new_comp/hardrock_cafe.png');
  }

  .from_right_slide_ent>div:nth-child(25) {
    background-image: url('/images/innorix_exacoola/logo_new_comp/hp.png');
  }

  .from_right_slide_ent>div:nth-child(26) {
    background-image: url('/images/innorix_exacoola/logo_new_comp/hynix.png');
  }

  .from_right_slide_ent>div:nth-child(27) {
    background-image: url('/images/innorix_exacoola/logo_new_comp/hyosung.png');
  }

  .from_right_slide_ent>div:nth-child(28) {
    background-image: url('/images/innorix_exacoola/logo_new_comp/hyundai.png');
  }

  .from_right_slide_ent>div:nth-child(29) {
    background-image: url('/images/innorix_exacoola/logo_new_comp/hyundai_group.png');
  }

  .from_right_slide_ent>div:nth-child(30) {
    background-image: url('/images/innorix_exacoola/logo_new_comp/hyundai_capital.png');
  }

  .from_right_slide_ent>div:nth-child(31) {
    background-image: url('/images/innorix_exacoola/logo_new_comp/hyundai_mobis.png');
  }

  .from_right_slide_ent>div:nth-child(32) {
    background-image: url('/images/innorix_exacoola/logo_new_comp/ibk.png');
  }

  .from_right_slide_ent>div:nth-child(33) {
    background-image: url('/images/innorix_exacoola/logo_new_comp/ibm.png');
  }

  .from_right_slide_ent>div:nth-child(34) {
    background-image: url('/images/innorix_exacoola/logo_new_comp/incheon_airport.png');
  }

  .from_right_slide_ent>div:nth-child(35) {
    background-image: url('/images/innorix_exacoola/logo_new_comp/kb.png');
  }

  .from_right_slide_ent>div:nth-child(36) {
    background-image: url('/images/innorix_exacoola/logo_new_comp/kbs.png');
  }

  .from_right_slide_ent>div:nth-child(37) {
    background-image: url('/images/innorix_exacoola/logo_new_comp/aia.png');
  }

  .from_right_slide_ent>div:nth-child(38) {
    background-image: url('/images/innorix_exacoola/logo_new_comp/american_express.png');
  }

  .from_right_slide_ent>div:nth-child(39) {
    background-image: url('/images/innorix_exacoola/logo_new_comp/aramark.png');
  }

  .from_right_slide_ent>div:nth-child(40) {
    background-image: url('/images/innorix_exacoola/logo_new_comp/bank_of_korea.png');
  }

  .from_right_slide_ent>div:nth-child(41) {
    background-image: url('/images/innorix_exacoola/logo_new_comp/belkin.png');
  }

  .from_right_slide_ent>div:nth-child(42) {
    background-image: url('/images/innorix_exacoola/logo_new_comp/bnp_paribas.png');
  }

  .from_right_slide_ent>div:nth-child(43) {
    background-image: url('/images/innorix_exacoola/logo_new_comp/carrefour.png');
  }

  .from_right_slide_ent>div:nth-child(44) {
    background-image: url('/images/innorix_exacoola/logo_new_comp/cgv.png');
  }

  .from_left_slide_ent>div:nth-child(1) {
    background-image: url('/images/innorix_exacoola/logo_new_comp/kdb_bank.png');
  }

  .from_left_slide_ent>div:nth-child(2) {
    background-image: url('/images/innorix_exacoola/logo_new_comp/kia.png');
  }

  .from_left_slide_ent>div:nth-child(3) {
    background-image: url('/images/innorix_exacoola/logo_new_comp/kolon.png');
  }

  .from_left_slide_ent>div:nth-child(4) {
    background-image: url('/images/innorix_exacoola/logo_new_comp/kt.png');
  }

  .from_left_slide_ent>div:nth-child(5) {
    background-image: url('/images/innorix_exacoola/logo_new_comp/lg.png');
  }

  .from_left_slide_ent>div:nth-child(6) {
    background-image: url('/images/innorix_exacoola/logo_new_comp/lg_chem.png');
  }

  .from_left_slide_ent>div:nth-child(7) {
    background-image: url('/images/innorix_exacoola/logo_new_comp/lock&lock.png');
  }

  .from_left_slide_ent>div:nth-child(8) {
    background-image: url('/images/innorix_exacoola/logo_new_comp/lotte.png');
  }

  .from_left_slide_ent>div:nth-child(9) {
    background-image: url('/images/innorix_exacoola/logo_new_comp/lotte_card.png');
  }

  .from_left_slide_ent>div:nth-child(10) {
    background-image: url('/images/innorix_exacoola/logo_new_comp/mbc.png');
  }

  .from_left_slide_ent>div:nth-child(11) {
    background-image: url('/images/innorix_exacoola/logo_new_comp/natioal_geographic.png');
  }

  .from_left_slide_ent>div:nth-child(12) {
    background-image: url('/images/innorix_exacoola/logo_new_comp/ncsoft.png');
  }

  .from_left_slide_ent>div:nth-child(13) {
    background-image: url('/images/innorix_exacoola/logo_new_comp/nh.png');
  }

  /* .from_left_slide_ent > div:nth-child(14) {
    background-image: url('/images/innorix_exacoola/logo_new_comp/dun_bradstreet.png');
  } */
  .from_left_slide_ent>div:nth-child(14) {
    background-image: url('/images/innorix_exacoola/logo_new_comp/ocn.png');
  }

  .from_left_slide_ent>div:nth-child(15) {
    background-image: url('/images/innorix_exacoola/logo_new_comp/orion.png');
  }

  .from_left_slide_ent>div:nth-child(16) {
    background-image: url('/images/innorix_exacoola/logo_new_comp/philips.png');
  }

  .from_left_slide_ent>div:nth-child(17) {
    background-image: url('/images/innorix_exacoola/logo_new_comp/posco.png');
  }

  .from_left_slide_ent>div:nth-child(18) {
    background-image: url('/images/innorix_exacoola/logo_new_comp/prudential.png');
  }

  .from_left_slide_ent>div:nth-child(19) {
    background-image: url('/images/innorix_exacoola/logo_new_comp/redcross.png');
  }

  .from_left_slide_ent>div:nth-child(20) {
    background-image: url('/images/innorix_exacoola/logo_new_comp/samsung.png');
  }

  .from_left_slide_ent>div:nth-child(21) {
    background-image: url('/images/innorix_exacoola/logo_new_comp/sbs.png');
  }

  .from_left_slide_ent>div:nth-child(22) {
    background-image: url('/images/innorix_exacoola/logo_new_comp/shinhan.png');
  }

  .from_left_slide_ent>div:nth-child(23) {
    background-image: url('/images/innorix_exacoola/logo_new_comp/siemens.png');
  }

  .from_left_slide_ent>div:nth-child(24) {
    background-image: url('/images/innorix_exacoola/logo_new_comp/sk.png');
  }

  .from_left_slide_ent>div:nth-child(25) {
    background-image: url('/images/innorix_exacoola/logo_new_comp/sk_telecom.png');
  }

  .from_left_slide_ent>div:nth-child(26) {
    background-image: url('/images/innorix_exacoola/logo_new_comp/soil.png');
  }

  .from_left_slide_ent>div:nth-child(27) {
    background-image: url('/images/innorix_exacoola/logo_new_comp/sony.png');
  }

  .from_left_slide_ent>div:nth-child(28) {
    background-image: url('/images/innorix_exacoola/logo_new_comp/standard_chartered.png');
  }

  .from_left_slide_ent>div:nth-child(29) {
    background-image: url('/images/innorix_exacoola/logo_new_comp/stx.png');
  }

  .from_left_slide_ent>div:nth-child(30) {
    background-image: url('/images/innorix_exacoola/logo_new_comp/theshilla.png');
  }

  .from_left_slide_ent>div:nth-child(31) {
    background-image: url('/images/innorix_exacoola/logo_new_comp/total.png');
  }

  .from_left_slide_ent>div:nth-child(32) {
    background-image: url('/images/innorix_exacoola/logo_new_comp/united_colors_of_benetton.png');
  }

  .from_left_slide_ent>div:nth-child(33) {
    background-image: url('/images/innorix_exacoola/logo_new_comp/us_army.png');
  }

  .from_left_slide_ent>div:nth-child(34) {
    background-image: url('/images/innorix_exacoola/logo_new_comp/vietnam_airlines.png');
  }

  .from_left_slide_ent>div:nth-child(35) {
    background-image: url('/images/innorix_exacoola/logo_new_comp/volkswagen.png');
  }

  .from_left_slide_ent>div:nth-child(36) {
    background-image: url('/images/innorix_exacoola/logo_new_comp/yokogawa.png');
  }

  .from_left_slide_ent>div:nth-child(37) {
    background-image: url('/images/innorix_exacoola/logo_new_comp/kdb_bank.png');
  }

  .from_left_slide_ent>div:nth-child(38) {
    background-image: url('/images/innorix_exacoola/logo_new_comp/kia.png');
  }

  .from_left_slide_ent>div:nth-child(39) {
    background-image: url('/images/innorix_exacoola/logo_new_comp/kolon.png');
  }

  .from_left_slide_ent>div:nth-child(40) {
    background-image: url('/images/innorix_exacoola/logo_new_comp/kt.png');
  }

  .from_left_slide_ent>div:nth-child(41) {
    background-image: url('/images/innorix_exacoola/logo_new_comp/lg.png');
  }

  .from_left_slide_ent>div:nth-child(42) {
    background-image: url('/images/innorix_exacoola/logo_new_comp/lg_chem.png');
  }

  .from_left_slide_ent>div:nth-child(43) {
    background-image: url('/images/innorix_exacoola/logo_new_comp/lock&lock.png');
  }

  .from_left_slide_ent>div:nth-child(44) {
    background-image: url('/images/innorix_exacoola/logo_new_comp/lotte.png');
  }

  .from_left_slide_ent>div:nth-child(45) {
    background-image: url('/images/innorix_exacoola/logo_new_comp/lotte_card.png');
  }





  .from_right_slide1>div:first-child {
    background-image: url('/images/innorix_exacoola/new_exacoola_img/roll_img_video/image_1.jpg');
  }

  .from_right_slide1>div:nth-child(2) {
    background-image: url('/images/innorix_exacoola/new_exacoola_img/roll_img_video/image_5.jpg');
  }

  .from_right_slide1>div:nth-child(4) {
    background-image: url('/images/innorix_exacoola/new_exacoola_img/roll_img_video/image_7.jpg');
  }

  .from_right_slide1>div:nth-child(5) {
    background-image: url('/images/innorix_exacoola/new_exacoola_img/roll_img_video/image_2.jpg');
  }

  .from_right_slide1>div:nth-child(7) {
    background-image: url('/images/innorix_exacoola/new_exacoola_img/roll_img_video/image_1.jpg');
  }

  .from_right_slide1>div:nth-child(8) {
    background-image: url('/images/innorix_exacoola/new_exacoola_img/roll_img_video/image_5.jpg');
  }

  .from_right_slide1>div:nth-child(10) {
    background-image: url('/images/innorix_exacoola/new_exacoola_img/roll_img_video/image_7.jpg');
  }





  .from_left_slide1>div:first-child {
    background-image: url('/images/innorix_exacoola/new_exacoola_img/roll_img_video/image_11.jpg');
  }

  .from_left_slide1>div:nth-child(2) {
    background-image: url('/images/innorix_exacoola/new_exacoola_img/roll_img_video/image_3.jpg');
  }

  .from_left_slide1>div:nth-child(4) {
    background-image: url('/images/innorix_exacoola/new_exacoola_img/roll_img_video/image_6.jpg');
  }

  .from_left_slide1>div:nth-child(5) {
    background-image: url('/images/innorix_exacoola/new_exacoola_img/roll_img_video/image_8.jpg');
  }

  .from_left_slide1>div:nth-child(7) {
    background-image: url('/images/innorix_exacoola/new_exacoola_img/roll_img_video/image_11.jpg');
  }

  .from_left_slide1>div:nth-child(8) {
    background-image: url('/images/innorix_exacoola/new_exacoola_img/roll_img_video/image_3.jpg');
  }

  .from_left_slide1>div:nth-child(10) {
    background-image: url('/images/innorix_exacoola/new_exacoola_img/roll_img_video/image_6.jpg');
  }




  .from_right_slide2>div:first-child {
    background-image: url('/images/innorix_exacoola/new_exacoola_img/roll_img_video/image_10.jpg');
  }

  .from_right_slide2>div:nth-child(2) {
    background-image: url('/images/innorix_exacoola/new_exacoola_img/roll_img_video/image_12.png');
  }

  .from_right_slide2>div:nth-child(4) {
    background-image: url('/images/innorix_exacoola/new_exacoola_img/roll_img_video/image_4.jpg');
  }

  .from_right_slide2>div:nth-child(5) {
    background-image: url('/images/innorix_exacoola/new_exacoola_img/roll_img_video/image_9.jpg');
  }

  .from_right_slide2>div:nth-child(7) {
    background-image: url('/images/innorix_exacoola/new_exacoola_img/roll_img_video/image_10.jpg');
  }

  .from_right_slide2>div:nth-child(8) {
    background-image: url('/images/innorix_exacoola/new_exacoola_img/roll_img_video/image_12.png');
  }

  .from_right_slide2>div:nth-child(10) {
    background-image: url('/images/innorix_exacoola/new_exacoola_img/roll_img_video/image_4.jpg');
  }

  .new_features_title {
    width: fit-content;
    font-size: 28px;
    font-weight: 400;
    line-height: normal;
    color: var(--dark-black-color);
    margin-bottom: 48px;
  }

  .new_features_wrapper {
    width: 1136px;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 80px;
    padding: 40px;
    background-color: var(--white-color);
    border-radius: 24px;
  }

  .new_features_content_title {
    width: fit-content;
    height: auto;
    font-size: 22px;
  }

  .new_features_content_type_1 {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 24px;
    padding: 40px;
    background-color: #F2F2F2;
    border-radius: 24px;
    gap: 24px;
  }

  .new_features_content_type_1_text_wrapper {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 16px;
  }

  .new_features_content_type_1_text_wrapper>p {
    font-size: 16px;
    line-height: 22px;
  }

  .new_features_content_padding1 {
    padding-left: 20px;
  }

  .new_features_content_type_2 {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 24px;
    border-radius: 24px;
    gap: 24px;
  }

  .new_features_content_type_2_text_wrapper {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 16px;
  }

  .new_features_content_type_2_text_wrapper>p {
    font-size: 16px;
    line-height: 22px;
  }

  .new_features_content_image_type_1_wrapper {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 16px;
  }

  .new_features_content_image_type_1_img_wrapper {
    width: 100%;
    height: auto;
  }

  .new_features_content_image_type_1_text_wrapper {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 16px;
  }

  .new_features_content_image_type_1_text_wrapper>p {
    font-size: 16px;
    line-height: 22px;
  }

  .new_features_content_image_type_1_img_wrapper>img {
    width: 100%;
    height: auto;
  }


  .new_features_content_image_type_2_wrapper {
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 16px;
  }

  .new_features_content_image_type_2_text_wrapper {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 16px;
  }

  .new_features_content_image_type_2_text_wrapper>p {
    font-size: 16px;
    line-height: 22px;
  }

  .new_features_content_image_type_2_img_wrapper {
    width: 240px;
    min-width: 240px;
    height: auto;
  }

  .new_features_content_image_type_2_img_wrapper>img {
    width: 100%;
    height: auto;
  }

  .table_content_type1 {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    overflow: hidden;
    border-radius: 10px;
    border: 1px solid #D1D1D1;
  }

  .table_content_type1>div {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: row;
    align-items: stretch;
    justify-content: flex-start;
  }

  .table_content_type1>div>p {
    width: 70%;
    padding: 10px;
    display: block;
  }

  .table_content_type1>div>p:first-child {
    width: 30%;
    min-width: 154px;
    background-color: #F2F2F2;
    color: var(--dark-black-color);
    font-size: 14px;
    line-height: normal;
  }

  .table_content_type2 {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    overflow: hidden;
    border-radius: 10px;
    border: 1px solid #D1D1D1;
  }

  .table_content_type2_title {
    height: 36px;
    padding: 10px;
    color: var(--dark-black-color);
    font-size: 12px;
    line-height: normal;
    background-color: #F2F2F2;
    font-weight: bolder;
  }

  .table_content_type2>div {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: row;
    align-items: stretch;
    justify-content: flex-start;
  }

  .table_content_type2>div>p {
    width: 90%;
    padding: 10px;
    display: block;
    font-weight: bolder;
  }

  .table_content_type2>div>p:first-child {
    width: 10%;
    min-width: 100px;
    color: var(--dark-black-color);
    font-size: 13px;
    line-height: normal;
  }

  .table_content_type3 {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    overflow: hidden;
    border-radius: 10px;
    border: 1px solid #D1D1D1;
  }

  .table_content_type3_title {
    height: 36px;
    padding: 10px;
    color: var(--dark-black-color);
    font-size: 12px;
    line-height: normal;
    background-color: #F2F2F2;
    font-weight: bolder;
  }

  .table_content_type3>div {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: row;
    align-items: stretch;
    justify-content: flex-start;
    padding: 10px;
  }

  .table_content_type3>div>pre {
    width: 100%;
    font-size: 14px;
    font-weight: bolder;
    line-height: normal;
  }

  .flex_row {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: space-between;
    gap: 40px;
  }

  .flex_align_box_title {
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    background-color: #F2F2F2;
  }

  .flex_align_box_title>p {
    color: var(--dark-black-color);
    font-size: 34px;
    font-weight: 700;
    line-height: 50px;
  }

  .flex_align_box {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 48px;
    background: var(--white-color);
    border-radius: 24px;
    padding: 40px;
    box-sizing: border-box;
    border: 1px solid #d1d1d1;
    box-shadow: 0px 2px 10px 0px rgba(0, 0, 0, 0.10);
  }

  .flex_align_box2 {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 48px;
    background: var(--white-color);
    border-radius: 24px;
    padding: 40px;
    box-sizing: border-box;
    border: 1px solid #d1d1d1;
    box-shadow: 0px 2px 10px 0px rgba(0, 0, 0, 0.10);
  }

  .flex_align_box2_reverse {
    flex-direction: row-reverse;
  }

  .exbyter_flex_box {
    width: 520px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 48px;
  }

  .exabyter_flex_box2 {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 20px;
  }

  .text_wrapper {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 24px;
  }

  .text_wrapper_gray {
    color: #7F7F7F;
  }

  .animation_area_wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: fit-content;
    min-width: fit-content;
    height: fit-content;
  }

  .animation_area {
    position: relative;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: flex-start;
    flex-wrap: wrap;
    padding: 20px;
    width: 540px;
    height: 455px;
    gap: 10px;
    background: #F2F2F2;
    border-radius: 5px;
  }

  .animation_area_half_wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: fit-content;
    min-width: fit-content;
    height: fit-content;
  }

  .animation_area1_2 {
    position: relative;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: flex-start;
    flex-wrap: wrap;
    padding: 15px 20px;
    width: 475px;
    height: 285px;
    gap: 15px;
    background: #F2F2F2;
    border-radius: 5px;
  }

  .ank {
    position: absolute;
    top: -120px;
    left: 0px;
  }

  .package_area_wrapper {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: row;
    align-items: stretch;
    justify-content: flex-start;
    gap: 24px;
  }

  .package_area_content {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 24px;
    padding: 30px;
    border-radius: 24px;
    border: 1px solid #D1D1D1;
    background: var(--white-color);
  }

  .package_area_content>p:first-child {
    color: #006ABA;
    font-size: 26px;
    font-weight: 600;
    line-height: normal;
  }

  .package_area_content>p:nth-child(2) {
    color: var(--dark-black-color);
    font-size: 22px;
    font-weight: 600;
    line-height: normal;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 5px;
  }

  .package_area_content>p:nth-child(2)>span:first-child {
    color: var(--dark-black-color);
    font-size: 16px;
  }

  .package_area_content>p:nth-child(2)>span:nth-child(2) {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-self: stretch;
    color: var(--dark-black-color);
    font-size: 16px;
    font-weight: 400;
    line-height: normal;
  }

  .package_area_content_text_wrapper {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 16px;
  }

  .package_area_content_text_wrapper>p {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 5px;
  }

  .package_area_content_text_wrapper>p>span:first-child {
    display: block;
    width: 6px;
    height: 6px;
    background-color: #006ABA;
    border-radius: 100%;
  }

  .package_area_content_text_wrapper>p>span:nth-child(2) {
    color: var(--light-black-color);
    font-size: 13px;
  }

  .package_area_content_text_wrapper>p>span:nth-child(3) {
    color: var(--dark-black-color);
    font-size: 18px;
    font-weight: bold;
    line-height: normal;
  }
}

@media all and (max-width:1224px) {
  .download_package_modal_bg {
    position: fixed;
    z-index: 500;
    top: 0px;
    left: 0px;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.5);
    display: none;
  }

  .mobileHide {
    display: none !important;
  }

  .pcHide {}



  .login_text_h1 {
    margin: 20px auto 0px;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    font-size: 22px;
  }

  .new_signin_box {
    /* width: 300px; */
    height: auto;
    margin: 0px auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: distribute;
    justify-content: space-around;
    margin-top: 60px;

  }

  .new_signin_box .new_signin_box_left_box {
    width: 300px;
  }

  .new_signin_box .new_signin_box_left_box div {
    padding: 6px 20px;
    width: 100%;
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
    background-color: var(--white-color);
    margin: 10px auto;
    cursor: pointer;
    font-size: 16px;
    line-height: 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    border: 1px solid var(--light-grey-color);
  }

  .new_signin_box .new_signin_box_left_box div img {
    height: 40px;
  }

  .new_signin_box .new_signin_box_left_box div p {
    line-height: 39px;
  }

  .new_signin_box .new_signin_box_mid_box {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: distribute;
    justify-content: space-around;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .new_signin_box .new_signin_box_mid_box p {
    margin: 0px auto;
    border-left: 1px solid var(--light-grey-color);
  }

  .new_signin_box .new_signin_box_right_box {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: flex-start;
  }

  .new_signin_box .new_signin_box_right_box .login_text_input {
    width: 100%;
    height: 44px;
    margin: 0px auto 10px;
    border-radius: 6px;
  }

  /* .new_signin_box .new_signin_box_right_box div {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
    padding: 15px 37px;
    margin-bottom: 19px;
    border: 1px solid var(--light-grey-color);
  } */

  .free_sign_account {
    display: table;
    /* margin: 50px auto; */
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
  }

  .free_signin_box {
    width: 300px;
    height: auto;
    margin: 60px auto 0px;
  }

  .free_signin_box .free_signin_step_box {
    width: 125px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin: 20px auto;
  }

  .free_signin_box .free_signin_step_box div:first-child {
    color: #959AA3;
    border-bottom: 0px;
    cursor: pointer;
  }

  .free_signin_box .free_signin_step_box div {
    font-size: 20px;
    border-bottom: 2px solid #000;
    padding-bottom: 10px;
    cursor: default;
  }

  .free_signin_box .free_signin_input {
    width: 100%;
    height: 50px;
    margin: 3px auto;
  }









  section {
    position: relative;
    background-color: #F2F2F2;
    padding-top: 80px;
    padding-bottom: 80px;
    padding-left: 30px;
    padding-right: 30px
  }



  .section_ex {
    padding-top: 100px !important;
    margin-top: 0px !important;
  }

  .section_ex {
    padding-top: 100px !important;
    margin-top: 0px !important;
  }

  .exb_first_section {
    padding-top: 0px;
    min-height: 930px;
    max-height: 100vh;
    padding-left: 0;
    padding-right: 0;
  }

  .exb_eighth_section {
    padding-bottom: 120px;
  }

  .padding_fit_top_mob {
    padding-top: 50px !important;
  }

  .main_exabyter_container {
    position: relative;
    width: 100%;
    margin: 0px auto;
  }

  .page_benner_wrapper {
    width: 100%;
    height: auto;
    background: #F2F2F2;
  }

  .small_exabyter_contanier {
    width: 100%;
    margin: 0px auto;
    padding: 0px 15px;
  }

  .banner_image_box {
    width: 100%;
    height: 450px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
  }

  .title_main_page {
    width: fit-content !important;
    color: #242424;
    font-size: 40px;
    font-weight: 500;
    line-height: 55px;
    margin-bottom: 50px;
  }

  .title_main_page>p {
    width: fit-content;
    color: #242424;
    font-size: 40px;
    font-weight: 500;
    line-height: 55px;
    /* margin: 0px auto; */
  }

  .top_content_container {
    height: 100%;
    position: absolute;
    top: 0px;
    left: 50%;
    z-index: 10;
    transform: translateX(-50%);
  }

  .video_part_btn_wrapper {
    width: auto;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 16px;
  }

  .main_exabyter_main_text_wrapper {
    position: absolute;
    top: 150px;
    left: 0px;
    /* transform: translateY(-50%); */
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 30px;
    padding: 0px 30px;
  }

  .mark_for_gc {
    position: relative !important;
    top: 0px !important;
    left: 0px !important;
  }

  .main_exabyter_main_text_wrapper>p:first-child {
    width: 100%;
    font-weight: 600;
    font-size: 48px;
    line-height: 110%;
    color: var(--white-color);
  }

  .main_exabyter_main_text_wrapper>p:nth-child(2) {
    width: 100%;
    font-weight: 400;
    font-size: 18px;
    line-height: 140%;
    color: var(--white-color);
  }

  .main_exabyter_main_text_wrapper>.blueBtn {}

  .main_exabyter_video_wrapper {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 50px;
  }

  .main_exabyter_video_text_wrapper {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 0px;
    gap: 24px;
    width: auto;
    height: auto;
  }

  .main_exabyter_video_text_wrapper>p:nth-child(1) {
    color: var(--white-color);
    max-width: 800px;
    font-size: 40px;
    font-weight: 500;
    line-height: 55px;
  }

  .main_exabyter_video_text_wrapper>p:nth-child(2) {
    color: var(--dark-black-color);
    font-size: 22px;
    font-weight: 300;
    line-height: 30px;
  }

  .main_exabyter_video_text_wrapper>p:nth-child(3) {
    color: var(--dark-black-color);
    font-size: 28px;
    font-weight: 400;
    line-height: normal;
  }

  .main_exabyter_video_text_wrapper>p:nth-child(4) {
    color: var(--dark-black-color);
    font-size: 22px;
    font-weight: 300;
    line-height: normal;
  }


  .newMainVideo {
    height: 100%;
    position: relative;
    top: 0px;
    left: 0px;
    display: block;
    /* transform: translate(-50%,-50%); */
  }

  .newMainVideo_cover {
    position: absolute;
    top: 0px;
    left: 0px;
    /* z-index: 1; */
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
  }

  .scroll_bottom_animation {
    z-index: 4;
    position: absolute;
    bottom: 4.9vh;
    left: 0;
    right: 0;
    text-align: center;
    z-index: 100;
    transition: opacity .85s cubic-bezier(.47, .42, 0, .99);
  }

  .scroll_bottom_animation_center_wrapper {
    display: inline-flex;
    flex-direction: column;
    position: relative;
    justify-content: center;
    align-items: center;
  }

  .mouse_object {
    position: relative;
    width: 26px;
    height: 38px;
    border-radius: 20px;
    border: 1px solid var(--white-color);
    display: none;
  }

  .mouse_object>div {
    position: absolute;
    top: 8px;
    left: 50%;
    width: 6px;
    height: 11px;
    /* background-color: var(--white-color); */
    border: 1px solid var(--white-color);
    border-radius: 20px;
    transform: translateX(-50%);
  }

  .mouse_animation_arrow {
    display: block;
    animation: arrow_scroll_animation 2.4s forwards infinite;
  }

  .mouse_animation_arrow::after {
    content: '';
    display: block;
    display: inline-block;
    width: 14px;
    height: 14px;
    border: 1px solid var(--white-color);
    border-right: 0;
    border-bottom: 0;
    transform-origin: center;
    transform: rotate(-135deg);
  }





  .exb_flex_box_wrapper {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    gap: 80px;
  }




  .exb_second_section_animation_wrapper {
    position: relative;
    width: 100%;
    height: 600px;
    /* background: #B5B5B5; */
    border-radius: 24px;
    padding: 20px;
  }



  .send_animation_box {
    width: 203px;
    height: 476px;
    position: relative;
    left: 50%;
    transform: translateX(-50%) rotate(180deg);
    background-color: #EEF4FA;
    /* margin: 0px auto; */
  }

  .send_animation_box ul {
    width: 100%;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: distribute;
    justify-content: space-around;
    overflow: hidden;
  }

  .send_animation_box ul li {
    position: relative;
    width: 4px;
    height: 100%;
    background-color: #79C6FF;
    overflow: visible;
  }

  .send_animation_box ul li>div {
    position: absolute;
    width: 100%;
    height: 54px;
    z-index: 2;
    top: -150px;
    left: 0px;
    background-color: #c4e1f8;
  }

  .send_animation_box ul li>.second_bar {
    position: absolute;
    width: 100%;
    height: 34px;
    z-index: 3;
    top: -150px;
    left: 0px;
    background-color: #42adff;
  }

  .send_animation_box ul li>.third_bar {
    position: absolute;
    width: 100%;
    height: 14px;
    z-index: 4;
    top: -150px;
    left: 0px;
    background-color: #18b6ff;
  }













  .object_animation_box {
    width: 243px;
    height: 214px;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    background-color: transparent;
    overflow: hidden;
    /* margin: 0px auto; */
  }

  .object_animation_box ul {
    width: 100%;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    overflow: visible;
    background-color: var(--white-color);
  }

  .object_animation_box ul li {
    width: 100%;
    height: 6px;
    background-color: #0cac40;
    position: relative;
  }

  .object_animation_box ul li div {
    position: absolute;
    width: 47px;
    height: 100%;
    background-color: #73c282;
    top: 0px;
    z-index: 3;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    left: -150px;
  }

  .object_animation_box ul li>.second_bar {
    position: absolute;
    width: 27px;
    height: 100%;
    background-color: #79b971;
    top: 0px;
    z-index: 4;
  }

  .object_animation_box ul li>.third_bar {
    position: absolute;
    width: 17px;
    height: 100%;
    background-color: #45a53d;
    top: 0px;
    z-index: 5;
  }

  .object_animation_box ul .not_animation {
    background-color: var(--white-color);
  }

  .object_animation_box ul .not_animation div {
    display: none;
  }


  .exb_icon_text_box {
    width: 100%;
    height: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 32px;
  }

  .exb_icon_text_box .exb_icon_text_content {
    width: 100%;
  }

  .exb_icon_text_box .exb_icon_text_content .exb_icon_text_content_img1 {
    background-image: url("/images/innorix_exabyter/rok.png");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    background-position: 0% 0%;
  }

  .exb_icon_text_box .exb_icon_text_content .exb_icon_text_content_img2 {
    background-image: url("/images/innorix_exabyter/pun.png");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    background-position: 0% 0%;
  }

  .exb_icon_text_box .exb_icon_text_content .exb_icon_text_content_img3 {
    background-image: url("/images/innorix_exabyter/sta.png");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    background-position: 0% 0%;
  }

  .exb_icon_text_box .exb_icon_text_content .exb_icon_text_content_img4 {
    background-image: url("/images/innorix_exabyter/clo.png");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    background-position: 0% 0%;
  }

  .exb_icon_text_box .exb_icon_text_content .exb_icon_text_content_img5 {
    background-image: url("/images/innorix_exabyter/gas.png");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    background-position: 0% 0%;
  }

  .exb_icon_text_box .exb_icon_text_content .exb_icon_text_content_text {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 16px;
  }

  .exb_icon_text_box .exb_icon_text_content .exb_icon_text_content_text p {
    font-weight: 400;
    font-size: 18px;
    line-height: 140%;
    color: var(--dark-black-color);
  }

  .exb_icon_text_box .exb_icon_text_content .exb_icon_text_content_text p:first-child {
    font-weight: 500;
    font-size: 28px;
    line-height: 140%;
    color: var(--dark-black-color);
  }

  .slide_start_animation {
    animation-name: slide_animationes;
    animation-duration: 50s;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
  }

  .slide_box_wrapper {
    position: relative;
    width: calc(100% - 30px);
    margin: 0px auto;
    height: 200px;
    overflow: hidden;
    border-radius: 30px;
    padding: 30px 40px;
    border-radius: 30px;
    background: #F7F7F5;
  }

  .slide_box_wrapper:last-child {
    margin-bottom: 0px;
  }

  .slide_box {
    position: relative;
    top: 0px;
    left: 0px;
    width: 2700px;
    height: 50%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-direction: row;
  }

  .slide_box>div {
    width: 320px;
    height: 100%;
    border-radius: 10px;
    border: 1px solid #7F7F7F;
    box-sizing: border-box;
    margin-right: 20px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
  }

  .from_left_slide_ent>div,
  .from_right_slide_ent>div {
    background-size: contain;
    border: 0px solid #7F7F7F;
  }

  .slide_box>div:last-child {
    margin-right: 0px;
  }

  .slide_box_cover {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background: linear-gradient(0.25turn, #F6F9FC, #F6F9FC, transparent, transparent, #F6F9FC, #F6F9FC);
  }


  .move_container_slide_wrapper {
    position: relative;
    width: 100%;
    height: 100%;
  }


  .main_exacoola_video_wrapper {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 20px;
  }

  .main_exacoola_video_text_wrapper {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 0px;
    gap: 24px;
    width: auto;
    height: auto;
  }

  .m_reverse_main_exacoola_video_wrapper {
    flex-direction: column-reverse;
  }

  .main_exacoola_video_text_wrapper>p:nth-child(1) {
    font-weight: 600;
    font-size: 32px;
    line-height: 40px;
    color: var(--dark-black-color);
  }

  .main_exacoola_video_text_wrapper>p:nth-child(2) {
    font-weight: 400;
    font-size: 16px;
    line-height: 26px;
    color: var(--dark-black-color);
  }

  .video_image {
    position: relative;
    width: 100%;
    /* min-width: 672px; */
    height: auto !important;
    cursor: pointer;
    background-position: center;
    background-repeat: no-repeat;
    background-size: 110%;
    overflow: hidden;
    border-radius: 24px;
    /* border: 2px solid transparent; */
    box-sizing: border-box;
    transition: all 0.3s ease;
    padding-top: 56.25%;
  }

  .video_image>iframe {
    position: absolute;
    top: 0px;
    left: 0px;
  }

  /* .video_image:hover {
    border: 2px solid #006ABA;
    background-size: 110%;
  } */
  .video_image:hover .playVideoBtn {
    background-image: url('/images/innorix_exacoola/youtube-hover.png');
  }

  .video_image:hover .industries_card_playBtn {
    box-sizing: border-box;
    position: absolute;
    top: 50%;
    left: 50%;
    border-bottom: 40px solid var(--white-color);
    border-left: 25px solid transparent;
    border-right: 25px solid transparent;
    transform: translate(-50%, -50%) rotate(90deg);
  }

  .video_image:hover .industries_card_playBtn>div {
    box-sizing: border-box;
    position: absolute;
    /* top: 50%; */
    /* left: 50%; */
    border-bottom: 37px solid #FB5151;
    border-left: 23px solid transparent;
    border-right: 23px solid transparent;
    transform: translate(-50%, 2px);
  }

  .main_exacoola_video_text_wrapper>.whiteBtn {
    margin-top: auto;
  }

  .playVideoBtn {
    width: 50px;
    height: 50px;
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: -25px;
    margin-left: -25px;
    background-image: url('/images/innorix_exacoola/youtube-nothover.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    cursor: pointer;
    transition: all 0.3s ease;
  }





  .cando_flex {
    display: flex;
    justify-content: flex-start;
    flex-direction: row;
    margin-top: 40px;
    width: 100%;
    margin: 0px auto;
    flex-wrap: wrap;
    transition: all 0.3s ease;
    gap: 16px;
  }

  .cando_flex_card {
    width: 100%;
    height: 220px;
    background: var(--white-color);
    border-radius: 16px;
  }

  .cando_item_box {
    position: relative;
    width: 100%;
    height: 250px;
    overflow: hidden;
  }

  .cando_item_box_wrapper {
    width: 100%;
    height: 100%;
  }

  .cando_title {
    padding: 40px 40px 0px;
    font-weight: 600;
    font-size: 24px;
    line-height: 30px;
    color: #242424;
    margin-bottom: 16px;
  }

  .cando_text {
    padding: 0px 40px 40px;
    font-weight: 400;
    font-size: 18px;
    line-height: 26px;
    color: var(--dark-black-color);
  }


  .vertical_text_box_wrapper {
    width: 100%;
    height: auto;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 24px;
  }

  .vertical_text_box {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 40px;
    gap: 24px;
    width: 100% !important;
    height: auto !important;
    background: linear-gradient(139deg, var(--white-color) 0.03%, #9F80FF 0.04%, #6D3AFF 99.12%);
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid #d1d1d1;
    box-shadow: 0px 2px 10px 0px rgba(0, 0, 0, 0.10);
  }

  .vertical_text_box:nth-child(2) {
    background: #333;
  }

  .vertical_text_box:nth-child(3) {
    background: #3E1F98;
  }

  .vertical_text_box_image {
    width: 80px;
    height: 80px;
    /* background: #E3E3E3; */
    border-radius: 10px;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
  }

  .vertical_text_wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0px;
    gap: 24px;
    width: 100%;
    height: auto;
  }

  .vertical_text_wrapper>p:first-child {
    color: var(--white-color);
    font-size: 32px;
    font-weight: 700;
    line-height: 40px;
    width: 100%;
    text-align: left;
  }

  .vertical_text_wrapper>p:nth-child(3) {
    color: var(--white-color);
    font-size: 18px;
    font-weight: 300;
    line-height: 28px;
  }

  .download_white_box_wrapper {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 40px;
    gap: 48px;
    width: 100%;
    height: auto;
    background: var(--white-color);
    border-radius: 24px;
  }

  .download_white_box_wrapper p {
    font-size: 18px;
  }

  .download_box_content_wrapper {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 0px;
    gap: 40px;
    width: 100%;
  }

  .download_white_box_text_wrapper {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 0px;
    gap: 32px;
  }

  .download_white_box_inner_text_wrapper {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 0px;
    gap: 16px;
  }

  .download_white_box_inner_text_title {
    font-weight: 500;
    font-size: 24px !important;
    line-height: 30px;
    color: var(--dark-black-color);
  }

  .download_white_box_input_wrapper {
    position: relative;
    width: 100%;
    height: fit-content;
  }

  .download_white_box_input_wrapper>input {
    width: 100% !important;
    height: 58px !important;
    padding: 16px 12px 16px 24px !important;
    border-radius: 16px !important;
    font-size: 18px !important;
  }

  .download_white_box_input_wrapper>textarea {
    width: 100% !important;
    min-height: 58px;
    padding: 16px 12px 16px 24px !important;
    border-radius: 16px !important;
    font-size: 18px !important;
  }

  .create_package_btn_style {
    margin-top: 32px;
  }


  .select_box_ex {
    position: relative;
    top: 0px;
    left: 0px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width: fit-content;
    height: fit-content;
    background: var(--white-color);
    border: 1px solid #d9d9d9;
    box-sizing: border-box;
    border-radius: 16px;
  }

  .select_box_now_select_ex {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    cursor: pointer;
    padding: 16px 12px 16px 24px !important;
    font-weight: 500;
  }

  .select_box_now_select_arrow_ex {
    position: absolute;
    top: 50%;
    right: 16px;
    width: 8px;
    height: 8px;
    box-sizing: border-box;
    transition: all 0.3s ease;
    transform: translateY(-50%) rotate(-45deg);
    transform-origin: center;
    cursor: pointer;
    border-left: 1px solid #000;
    border-bottom: 1px solid #000;
  }

  .select_list_ex {
    position: absolute;
    top: calc(100% + -57px);
    left: -1px;
    z-index: 10;
    padding: 0px;
    width: 100%;
    height: auto;
    background: var(--white-color);
    border: 1px solid #d9d9d9;
    box-sizing: border-box;
    border-radius: 8px;
    box-shadow: 0px 20px 40px rgba(75, 75, 75, 0.15);
    display: none;
    overflow-y: overlay;
    max-height: 226px;
  }

  .select_value_ex {
    width: 100%;
    height: fit-content;
    padding: 16px 12px 16px 24px !important;
    display: flex;
    flex-direction: row;
    align-items: center;
    cursor: pointer;
    box-sizing: border-box;
    font-weight: 500;
  }

  .select_list_ex::-webkit-scrollbar {
    width: 0px;
    height: 0px;
  }

  .select_list_ex::-webkit-scrollbar-thumb {
    height: 30%;
    background: #C1C1C1;
    border-radius: 1px;
  }

  .select_list_ex::-webkit-scrollbar-track {
    background: #F1F1F1;
  }

  .select_list_ex::-webkit-scrollbar-corner {
    background: #F1F1F1;
  }

  .select_list_ex::-webkit-scrollbar {
    width: 6px;
    height: 6px;
  }

  .select_value_ex:hover {
    /* background-color: #E6E6E6; */
    background: rgba(71, 112, 255, 0.1) !important;
  }

  .select_value_ex.active {
    /* background-color: #E0E0E0 !important; */
    background: rgba(71, 112, 255, 0.2) !important;
  }

  .download_white_box_wrapper .select_box_ex {
    width: 100% !important;
  }

  .download_white_box_wrapper .select_box_now_select_ex {
    width: 100% !important;
  }

  .download_white_box_wrapper .select_list_ex {
    width: 100% !important;
  }

  .download_white_box_wrapper p {
    width: 100% !important;
    height: auto !important;
  }

  .category_tag_content_wrapper {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 16px;
  }

  .category_tag_content {
    padding: 0px 15px;
    width: fit-content;
    height: 42px;
    background-color: #F2F2F2;
    border: 1px solid #006ABA;
    border-radius: 30px;
    box-sizing: border-box;
    cursor: pointer;
    color: #006ABA;
    line-height: 40px;
    transition: all 0.3s ease;
  }

  .category_tag_content.active {
    background-color: #006ABA;
    color: var(--white-color);
  }

  .category_tag_content:hover {
    background-color: #006ABA;
    color: var(--white-color);
  }

  .industries_title_text {
    font-size: 28px;
    font-weight: 400;
    line-height: normal;
    color: var(--dark-black-color);
    margin-bottom: 48px;
    width: 100%;
  }

  .industries_card_content_wrapper {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 24px;
    margin-top: 40px;
  }

  .industries_card_content_wrapper>a {
    width: 100%;
  }

  .industries_card_content {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0px;
    gap: 0px;
    width: 100%;
    height: auto;
    cursor: pointer;
    background-color: var(--white-color);
    border: 1px solid #D1D1D1;
    box-sizing: border-box;
    border-radius: 24px;
    transition: all 0.3s ease;
    overflow: hidden;
    box-shadow: 0px 2px 10px 0px rgba(0, 0, 0, 0.10);
  }

  .industries_video_content {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 0px;
    gap: 24px;
    width: 556px;
    height: auto;
    cursor: pointer;
    background-color: var(--white-color);
    border-radius: 24px;
  }

  .industries_card_img {
    position: relative;
    width: 100%;
    /* height: 100%; */
    /* min-width: 100%; */
    height: 240px;
    min-height: 240px;
    overflow: hidden;
    /* border: 2px solid rgb(255 255 255 / 0%); */
    box-sizing: border-box;
    transition: all 0.3s ease;
    /* border-radius: 16px; */
  }

  .industries_card_img_box {
    width: 100%;
    height: 100%;
    /* background: #C9C9C9; */
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-clip: border-box;
    transition: all 0.3s ease;
    box-sizing: border-box;
  }

  .industries_card_text_wrapper {
    position: relative;
    top: 0px;
    left: 0px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 24px 40px 40px;
    gap: 16px;
    width: 100%;
    height: 100%;
    min-height: 244px;
    /* background: linear-gradient(180deg, rgba(0, 0, 0, 0.10) 0%, rgba(0, 0, 0, 0.50) 70.31%); */
  }

  .industries_card_info_text {
    font-weight: 300;
    font-size: 18px;
    color: var(--dark-black-color);
    line-height: normal;
    /* margin-top: 24px; */
  }

  .industries_card_info_text_big {
    font-weight: bold;
    font-size: 18px;
    color: var(--dark-black-color);
    line-height: normal;
    /* margin-top: 24px; */
  }

  .industries_card_info_hash_text {
    color: #7F7F7F;
    font-size: 14px;
    font-weight: 400;
    line-height: normal;
    margin-top: auto;
  }

  /* .industries_card_info_hash_text::before {
    content: '#';
  } */
  .category_tag_text {
    margin-top: auto;
  }

  .industries_read_more_btn {
    margin-top: auto;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    padding: 0px;
    gap: 8px;
    width: 108px;
    height: 20px;
  }

  .industries_read_more_btn>p {
    font-weight: 400;
    font-size: 16px;
    line-height: 20px;
    color: #006ABA;
  }

  .industries_card_video_info_text {
    position: absolute;
    bottom: 0px;
    left: 0px;
    font-size: 18px;
    font-weight: 400;
    line-height: normal;
    color: var(--white-color);
    /* height: 90px; */
    padding: 40px;
    box-sizing: border-box;
  }

  .industries_card_content:hover {
    border: 1px solid #006ABA;
  }

  .industries_card_content:hover .industries_card_img .industries_card_img_box {
    transform: scale(1.1);
  }

  .industries_card_content .industries_read_more_btn .arrow {
    transition: all 0.3s ease;
  }

  .industries_card_content:hover .industries_read_more_btn .arrow {
    margin-left: 5px;
  }

  .industries_card_content {}

  .industries_card_video {
    position: relative;
    width: 100%;
    /* height: 302px; */
    box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.1);
    border-radius: 24px;
    /* background: #C9C9C9; */
    background-repeat: no-repeat;
    background-size: 105%;
    background-position: center;
    /* border: 2px solid transparent; */
    transition: all 0.3s ease;
    padding-top: 56.25%;
  }

  .industries_card_playBtn {
    box-sizing: border-box;
    position: absolute;
    top: 50%;
    left: 50%;
    border-bottom: 40px solid var(--white-color);
    border-left: 25px solid transparent;
    border-right: 25px solid transparent;
    transform: translate(-50%, -50%) rotate(90deg);
    transition: all 0.3s ease;
  }

  .industries_card_playBtn>div {
    box-sizing: border-box;
    position: absolute;
    /* top: 50%; */
    /* left: 50%; */
    border-bottom: 37px solid #006ABA;
    border-left: 23px solid transparent;
    border-right: 23px solid transparent;
    transform: translate(-50%, 2px);
    transition: all 0.3s ease;
  }

  .industries_video_content:hover .industries_card_video {
    background-size: 110%;
    /* border: 2px solid #006ABA; */
  }

  .industries_video_content:hover .playVideoBtn {
    background-image: url('/images/innorix_exacoola/youtube-hover.png');
  }

  /* .industries_video_content:hover .industries_card_playBtn {
    box-sizing: border-box;
    position: absolute;
    top: 50%;
    left: 50%;
    border-bottom: 40px solid var(--white-color);
    border-left: 25px solid transparent;
    border-right: 25px solid transparent;
    transform: translate(-50%, -50%) rotate(90deg);
  }
  .industries_video_content:hover .industries_card_playBtn > div {
    box-sizing: border-box;
    position: absolute;
    top: 50%;
    left: 50%;
    border-bottom: 37px solid #FB5151;
    border-left: 23px solid transparent;
    border-right: 23px solid transparent;
    transform: translate(-50%, 2px);
  } */
  /* .industries_card_playBtn:hover{
  }
  .industries_card_playBtn:hover > div{
  } */
  .video_play_time {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    top: 40px;
    right: 40px;
    padding: 2px 5px;
    gap: 10px;
    position: absolute;
    width: 45px;
    height: 23px;
    background: #000000;
    color: #e1e1e1;
  }

  .industries_text_wrapper {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 0px;
    background-color: var(--white-color);
    padding: 20px;
    border-radius: 24px;
    box-shadow: 0px 2px 10px 0px rgba(0, 0, 0, 0.10);
  }

  .new_positions_for_container {
    margin-top: -150px !important;
  }

  .industries_text_wrapper>p {
    line-height: 1.6;
  }

  .industries_text_margin_bottom {
    margin-bottom: 15px !important;
  }


  .resources_detail_top_image_wrapper {
    width: 100%;
    height: auto;
    display: block;
    margin-bottom: 80px;
  }

  .resources_detail_top_image_wrapper>img {
    width: 100%;
    display: block;
  }


  .resources_detail_top_wrapper {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: center;
    gap: 16px;
    margin-top: 24px;
    margin-bottom: 80px;
  }

  .view_like_wrapper {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 16px;
  }

  .view_like_wrapper>span {
    color: #777;
    font-size: 16px;
    font-weight: 400;
    line-height: normal;
  }

  .view_like_btn_wrapper {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 16px;
  }

  .view_like_btn_wrapper>div {
    position: relative;
    display: flex;
    width: 40px;
    height: 40px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-radius: 24px;
    background-color: #F2F2F2;
    transition: all 0.3s ease;
    cursor: pointer;
    background-position: center;
    background-repeat: no-repeat;
    background-size: 32px 32px;
  }

  .view_like_btn_wrapper>div:hover {
    background-color: #006ABA;
  }

  .view_like_btn_wrapper>div:first-child {
    background-image: url('/images/innorix_homepage/new_image/like-blue.svg');
  }

  .view_like_btn_wrapper>div:nth-child(2) {
    background-image: url('/images/innorix_homepage/new_image/share-blue.svg');
  }

  .view_like_btn_wrapper>div:nth-child(3) {
    background-image: url('/images/innorix_homepage/new_image/print_blue.svg');
  }

  .view_like_btn_wrapper>div:nth-child(4) {
    background-image: url('/images/innorix_homepage/new_image/pdf-blue.svg');
  }

  .view_like_btn_wrapper>div:hover:first-child {
    background-image: url('/images/innorix_homepage/new_image/like-white.svg');
  }

  .view_like_btn_wrapper>div:hover:nth-child(2) {
    background-image: url('/images/innorix_homepage/new_image/share-white.svg');
  }

  .view_like_btn_wrapper>div:hover:nth-child(3) {
    background-image: url('/images/innorix_homepage/new_image/print_white.svg');
  }

  .view_like_btn_wrapper>div:hover:nth-child(4) {
    background-image: url('/images/innorix_homepage/new_image/pdf-white.svg');
  }

  .content_shear_btn_alert {
    position: absolute;
    top: 120%;
    left: 50%;
    transform: translateX(-50%);
    padding: 4px 10px;
    color: var(--white-color);
    background-color: #006ABA;
    border-radius: 6px;
    font-size: 14px;
    display: none;
  }

  .resources_detail_content_top {
    color: #777;
    font-size: 22px !important;
    font-weight: 300;
    line-height: normal !important;
    margin-bottom: 24px;
  }

  .resources_detail_content_bottom {
    margin-top: 80px;
  }

  .industries_text_title {
    font-size: 34px;
    color: var(--dark-black-color);
    margin-bottom: 40px;
  }



  .usage_guide_card_content_wrapper {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 40px;
    margin-top: 40px;
  }

  .usage_guide_card_content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 0px;
    gap: 20px;
    width: 360px;
    height: 317px;
    cursor: pointer;
  }

  .usage_guide_card_img {
    width: 100%;
    height: 220px;
    /* background: #C9C9C9; */
  }

  .return_to_content_top {
    position: fixed;
    right: 70px;
    bottom: 40px;
    width: 50px;
    height: 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border-radius: 100%;
    background-color: var(--white-color);
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.15);
  }

  .return_to_content_top::after {
    content: '';
    position: absolute;
    top: 25px;
    left: 50%;
    transform: translateX(-50%) rotate(-45deg);
    width: 14px;
    height: 14px;
    border: 2px solid #474747;
    border-left: 0px;
    border-bottom: 0px;
    transition: all 0.3s ease;
  }

  .return_to_content_top::before {
    content: '';
    position: absolute;
    top: 15px;
    left: 50%;
    transform: translateX(-50%) rotate(-45deg);
    width: 14px;
    height: 14px;
    border: 2px solid #474747;
    border-left: 0px;
    border-bottom: 0px;
    transition: all 0.3s ease;
  }

  .return_to_content_top:hover::after {
    border-color: #006ABA;
  }

  .return_to_content_top:hover::before {
    border-color: #006ABA;
  }


  .arrow {
    width: 7px;
    height: 7px;
    position: relative;
  }

  .arrow::before,
  .arrow::after {
    content: '';
    position: absolute;
  }

  .arrow::before {
    width: 100%;
    height: 100%;
    border: 1px solid #006ABA;
    border-right: 0;
    border-bottom: 0;
  }

  .arrow::after {
    width: 12px;
    height: 0px;
    border-bottom: 1px solid #006ABA;
    transform-origin: 0 100%;
    transform: rotate(45deg);
    margin-top: 0px;
  }

  .arrow--left {
    transform: rotate(-45deg);
  }

  .arrow--right {
    transform: rotate(135deg);
  }

  .arrow--top {
    transform: rotate(45deg);
  }

  .arrow--bottom {
    transform: rotate(225deg);
  }


  .pricing_title {
    width: 100%;
    font-size: 28px;
    font-weight: 400;
    line-height: normal;
    color: var(--dark-black-color);
    margin-bottom: 48px;
  }

  .pricing_wrapper {
    width: 100%;
    height: auto;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-direction: column;
    gap: 30px;
  }

  .pricing_content_list_free,
  .pricing_content_list_commercial {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 40px;
    width: 100%;
    height: auto;
    background: var(--white-color);
    border-radius: 24px;
    border: 1px solid #d1d1d1;
    box-shadow: 0px 2px 10px 0px rgba(0, 0, 0, 0.10);
  }

  .pricing_title_list {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 40px 0px;
    width: 170px;
    min-width: 170px;
    height: 808px;
    background: transparent;
    border-radius: 24px;
  }

  .pricing_title_list div {
    margin-bottom: 32px;
    font-weight: bold;
    font-size: 16px;
    line-height: 26px;
    color: var(--dark-black-color);
  }

  .pricing_content_list_free div:not(:last-child),
  .pricing_content_list_commercial div:not(:last-child) {
    margin-bottom: 24px;
    /* font-weight: bold; */
    font-size: 18px;
    line-height: 26px;
    color: var(--dark-black-color);
  }

  .mobile_bottom_licene {
    margin-bottom: 30px !important;
    font-size: 18px !important;
  }

  .pricing_title_list div:nth-child(3) {
    /* margin-bottom: 32px; */
    /* height: 86px; */
  }

  .pricing_content_list_free div:nth-child(3),
  .pricing_content_list_commercial div:nth-child(3) {
    /* margin-bottom: 32px; */
    /* height: 86px; */
  }

  .pricing_title_list div:nth-child(4) {
    /* margin-bottom: 32px; */
    /* height: 112px; */
  }

  .pricing_content_list_free div:nth-child(4),
  .pricing_content_list_commercial div:nth-child(4) {
    /* margin-bottom: 32px; */
    /* height: 112px; */
  }

  .pricing_title_list div:first-child {
    height: 30px;
    margin-bottom: 40px;
  }

  .pricing_content_list_free div:first-child,
  .pricing_content_list_commercial div:first-child {
    height: 30px;
    font-weight: 400;
    font-size: 22px;
    line-height: 30px;
    color: #006ABA;
    margin-bottom: 24px;
  }

  .pricing_title_list div>span {
    margin-bottom: 10px;
    display: block;
  }

  .pricing_content_list_free div>span,
  .pricing_content_list_commercial div>span {
    display: block;
    margin-bottom: 10px;
    font-weight: 300;
    font-size: 18px;
    line-height: 26px;
    color: var(--dark-black-color);
  }

  .support_center_box_wrapper {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 24px;
    width: 100%;
    height: auto;
  }

  .support_center_box {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 48px;
    width: 100%;
    height: auto;
    box-sizing: border-box;
    background: var(--white-color);
    border-radius: 24px;
    gap: 24px;
    border: 1px solid #d1d1d1;
    box-shadow: 0px 2px 10px 0px rgba(0, 0, 0, 0.10);
  }

  /* .support_center_box:nth-child(1),
  .support_center_box:nth-child(2),
  .support_center_box:nth-child(3) {
    width: 368px;
  } */
  .support_center_box_img_wrapper {
    width: 80px;
    height: 80px;
    min-height: 80px;
    min-width: 80px;
    /* background: #E3E3E3; */
    border-radius: 10px;
    background-image: url('/images/main/230627_webicons.svg');
    background-repeat: no-repeat;
  }

  .support_center_box_text_wrapper {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 24px;
  }

  .support_center_box_text_wrapper p:first-child {
    color: var(--dark-black-color);
    font-size: 22px;
    font-weight: 400;
    line-height: normal;
  }

  .support_center_box_text_wrapper p:nth-child(2) {
    font-weight: 400;
    font-size: 18px;
    line-height: 22px;
    color: var(--dark-black-color);
  }

  .support_center_box_text_wrapper .blueBtn {}

  .exb_animation_image_wrapper {
    position: relative;
    display: block;
    width: calc(100% - 30px);
    height: auto;
    margin: 0px auto;
  }

  .exb_animation_image_back {
    position: relative;
    z-index: 2;
    display: block;
    width: 100%;
    height: auto;
  }

  .exb_big_icon {
    position: sticky;
    top: calc(50% - 151px);
    left: calc(50% - 10px);
    z-index: 1;
    transform: translate(-50%, -50%) scale(1);
    width: 142px;
    height: 104px;
    background-image: url('/images/innorix_exabyter/exb_ani_icon.svg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
  }

  .exb_big_bg {
    position: sticky;
    top: 50%;
    left: 0%;
    transform: translateY(-50%);
    width: 100%;
    height: 800px;
    background-image: url('/images/innorix_exabyter/exb_ani_bg.png');
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
  }

  .exb_big_icon_fix {
    position: absolute;
    top: 31.7%;
    left: 50%;
    z-index: 2;
    transform: translate(-57%, -117%) scale(1);
    width: 9.8%;
    height: 16%;
    background-image: url('/images/innorix_exabyter/exb_ani_icon.svg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    transition: all 0.3s ease;
  }

  .exb_big_icon_fix2 {
    position: absolute;
    top: 32.2%;
    left: 50%;
    z-index: 1;
    transform: translate(-54%, -56%) scale(0);
    width: 17%;
    height: 23%;
    background-image: url('/images/innorix_exabyter/server_main/link_circle.svg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    transition: all 0.3s ease;
  }

  .exb_big_bg_fix {
    position: absolute;
    top: 0px;
    left: 0px;
    z-index: 3;
    width: 100%;
    height: 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
  }

  .exb_big_line_fix {
    position: absolute;
    top: 0px;
    left: 0px;
    z-index: 1;
    width: 100%;
    height: 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
  }

  .exb_content_fix {
    position: absolute;
    background-image: url('/images/innorix_exabyter/exb_ani_icon.svg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    transform-origin: center;
    transform: scale(0);
    transition: all 0.3s ease;
  }

  .exb_content_fix.exb_content_small_left {
    background-image: url('/images/innorix_exabyter/server_main/extrude_left.svg');
  }

  .exb_content_fix.exb_content_small_right {
    background-image: url('/images/innorix_exabyter/server_main/extrude_right.svg');
  }

  .sample_line_wrapper {
    position: relative;
    width: 100%;
    height: 100%;
  }

  .line_content {
    height: 5px;
    position: absolute;
    background-color: #008CFF;
    transform-origin: 0px 0px;
    overflow: hidden;
  }

  .exb_animation_text_wrapper {
    position: relative;
    width: calc(100% - 30px);
    margin: 0px auto 100px;
  }

  .exb_animation_text {
    /* position: relative; */
    /* left: 50%; */
    /* transform: translateX(-50%); */
    width: 100%;
    color: var(--dark-black-color);
    text-align: left;
    font-size: 40px;
    font-weight: 700;
    line-height: 55px;
    opacity: 0;
    transition: all 0.3s ease;
  }

  .new_min_flex_wrapper {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 100px;
    padding-bottom: 60px;
  }

  .new_main_flex_title {
    width: 100%;
    color: var(--dark-black-color);
    font-size: 40px;
    font-weight: 700;
    line-height: 55px;
    text-align: left;
  }

  .new_main_inner_flex_wrapper {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: row;
    align-items: stretch;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 60px 50px;
  }

  .new_main_inner_flex_content {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 20px;
    border-top: 2px solid #000;
    padding-top: 20px;
  }

  .new_main_inner_flex_content.content_3 {
    width: 100%;
  }

  .new_main_inner_flex_content>.new_main_inner_flex_img {
    position: absolute;
    bottom: 0px;
    right: 0px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
  }

  .new_main_inner_flex_content>p {
    color: var(--dark-black-color);
    font-size: 18px;
    font-weight: 500;
    line-height: 24px;
    height: 156px;
  }

  .new_main_inner_flex_content>.new_main_inner_title {
    color: var(--dark-black-color);
    font-size: 32px;
    font-weight: 700;
    line-height: 40px;
    height: auto;
  }

  .new_main_inner_flex_content>a {
    color: var(--dark-black-color);
    font-size: 18px;
    font-weight: 600;
    line-height: 24px;
    margin-top: auto;
    transition: all 0.3s ease;
  }

  .new_main_inner_flex_content>a:hover {
    color: #087EEE;
  }










  .enterprisesInfoViewBox {
    height: max-content;
  }

  .enterprisesInfoBox .sectionSubTitle {
    font-size: 28px;
    font-weight: 400;
    line-height: normal;
    color: var(--dark-black-color);
    margin-bottom: 48px;
    width: 100%;
  }

  .enterprisesInfoBox {
    position: relative;
    top: 0px;
    left: 50%;
    width: 100%;
    transform: translate(-50%, 0px);
    height: 100%;
    /* margin: 0px auto; */
    overflow: hidden;
    z-index: 0;
  }

  .enterprisesInfoBox .preiseImgBox {
    position: relative;
    right: 0;
    bottom: 0;
    height: 300px;
    width: 100%;
    z-index: -1;
  }

  .enterprisesInfoBox .preiseImgBox img {
    position: absolute;
    top: 0;
    right: 0px;
    width: 100%;
    height: 100%;
    z-index: 1;
    object-fit: cover;
    border-radius: 20px;
  }

  .sectionTextInfo {
    font-weight: 300;
    font-size: 18px;
    line-height: 26px;
    color: var(--dark-black-color);
    padding: 0px;
    margin-bottom: 24px;
    width: 100%;
  }

  .enterprisesInfoBox .preiseImgBox span.imgMask1 {
    position: absolute;
    /* background: var(--white-color); */
    width: 245px;
    height: 100%;
    right: -238px;
    top: 0;
    z-index: 2;
  }

  .enterprisesInfoBox .preiseImgBox span.imgMask2 {
    position: absolute;
    width: 872px;
    height: 100%;
    left: -223px;
    top: 0;
    z-index: 2;
  }

  .enterprisesInfoBox .preiseImgBox span.imgMask3 {
    position: absolute;
    width: 100%;
    height: 10%;
    right: -299px;
    top: 0;
    z-index: 2;
  }

  .enterpriseNameBox {
    float: left;
    width: 100%;
    margin: 50px 0px 50px;
    position: relative;
    z-index: 5;
    left: 0;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 10px;
  }

  .enterpriseNames {
    padding: 0px 15px;
    width: fit-content;
    height: 42px;
    background-color: var(--white-color);
    border: 1px solid #006ABA;
    border-radius: 30px;
    box-sizing: border-box;
    cursor: pointer;
    color: #006ABA;
    line-height: 40px;
    transition: all 0.3s ease;
  }

  .enterpriseNames:hover {
    background-color: #006ABA;
    color: var(--white-color);
  }

  .enterpriseNames.viewInfoEnter {
    background-color: #006ABA;
    color: var(--white-color);
  }

  .enterprisesInfoView {
    position: relative;
    top: 0px;
    left: 0px;
    width: 100%;
    height: fit-content;
    text-align: left;
    color: #000;
    margin-top: 20px;
    display: none;
    transition: opacity 0.5s;
    position: relative;
    z-index: 3;
  }

  .enterpriseInfoName {
    color: var(--dark-black-color);
    font-size: 22px;
    font-weight: 400;
    line-height: normal;
    width: auto;
    margin-bottom: 16px;
  }

  .enterpriseInfoText {
    font-weight: 300;
    font-size: 18px;
    line-height: 26px;
    color: var(--dark-black-color);
    width: 100%;
  }

  .enterpriseLoadingBar {
    position: relative;
    left: 0px;
    bottom: 0px;
    height: 10px;
    width: 0px;
    background-color: #1B89FF;
  }

  .framework {
    padding: 0px 0px;
  }





































  .from_right_slide_ent>div:nth-child(1) {
    background-image: url('/images/innorix_exacoola/logo_new_comp/aia.png');
  }

  .from_right_slide_ent>div:nth-child(2) {
    background-image: url('/images/innorix_exacoola/logo_new_comp/american_express.png');
  }

  .from_right_slide_ent>div:nth-child(3) {
    background-image: url('/images/innorix_exacoola/logo_new_comp/aramark.png');
  }

  .from_right_slide_ent>div:nth-child(4) {
    background-image: url('/images/innorix_exacoola/logo_new_comp/bank_of_korea.png');
  }

  .from_right_slide_ent>div:nth-child(5) {
    background-image: url('/images/innorix_exacoola/logo_new_comp/belkin.png');
  }

  .from_right_slide_ent>div:nth-child(6) {
    background-image: url('/images/innorix_exacoola/logo_new_comp/bnp_paribas.png');
  }

  .from_right_slide_ent>div:nth-child(7) {
    background-image: url('/images/innorix_exacoola/logo_new_comp/carrefour.png');
  }

  .from_right_slide_ent>div:nth-child(8) {
    background-image: url('/images/innorix_exacoola/logo_new_comp/cgv.png');
  }

  .from_right_slide_ent>div:nth-child(9) {
    background-image: url('/images/innorix_exacoola/logo_new_comp/cj.png');
  }

  .from_right_slide_ent>div:nth-child(10) {
    background-image: url('/images/innorix_exacoola/logo_new_comp/clinique.png');
  }

  .from_right_slide_ent>div:nth-child(11) {
    background-image: url('/images/innorix_exacoola/logo_new_comp/daewoo.png');
  }

  .from_right_slide_ent>div:nth-child(12) {
    background-image: url('/images/innorix_exacoola/logo_new_comp/dongbu.png');
  }

  .from_right_slide_ent>div:nth-child(13) {
    background-image: url('/images/innorix_exacoola/logo_new_comp/doosan.png');
  }

  .from_right_slide_ent>div:nth-child(14) {
    background-image: url('/images/innorix_exacoola/logo_new_comp/dun_bradstreet.png');
  }

  .from_right_slide_ent>div:nth-child(15) {
    background-image: url('/images/innorix_exacoola/logo_new_comp/ericsson.png');
  }

  .from_right_slide_ent>div:nth-child(16) {
    background-image: url('/images/innorix_exacoola/logo_new_comp/exxonmobil.png');
  }

  .from_right_slide_ent>div:nth-child(17) {
    background-image: url('/images/innorix_exacoola/logo_new_comp/food_for_thehungry.png');
  }

  .from_right_slide_ent>div:nth-child(18) {
    background-image: url('/images/innorix_exacoola/logo_new_comp/fuji_xerox.png');
  }

  .from_right_slide_ent>div:nth-child(19) {
    background-image: url('/images/innorix_exacoola/logo_new_comp/ge.png');
  }

  .from_right_slide_ent>div:nth-child(20) {
    background-image: url('/images/innorix_exacoola/logo_new_comp/gs_caltex.png');
  }

  .from_right_slide_ent>div:nth-child(21) {
    background-image: url('/images/innorix_exacoola/logo_new_comp/halla.png');
  }

  .from_right_slide_ent>div:nth-child(22) {
    background-image: url('/images/innorix_exacoola/logo_new_comp/hankook.png');
  }

  .from_right_slide_ent>div:nth-child(23) {
    background-image: url('/images/innorix_exacoola/logo_new_comp/hanwha.png');
  }

  .from_right_slide_ent>div:nth-child(24) {
    background-image: url('/images/innorix_exacoola/logo_new_comp/hardrock_cafe.png');
  }

  .from_right_slide_ent>div:nth-child(25) {
    background-image: url('/images/innorix_exacoola/logo_new_comp/hp.png');
  }

  .from_right_slide_ent>div:nth-child(26) {
    background-image: url('/images/innorix_exacoola/logo_new_comp/hynix.png');
  }

  .from_right_slide_ent>div:nth-child(27) {
    background-image: url('/images/innorix_exacoola/logo_new_comp/hyosung.png');
  }

  .from_right_slide_ent>div:nth-child(28) {
    background-image: url('/images/innorix_exacoola/logo_new_comp/hyundai.png');
  }

  .from_right_slide_ent>div:nth-child(29) {
    background-image: url('/images/innorix_exacoola/logo_new_comp/hyundai_group.png');
  }

  .from_right_slide_ent>div:nth-child(30) {
    background-image: url('/images/innorix_exacoola/logo_new_comp/hyundai_capital.png');
  }

  .from_right_slide_ent>div:nth-child(31) {
    background-image: url('/images/innorix_exacoola/logo_new_comp/hyundai_mobis.png');
  }

  .from_right_slide_ent>div:nth-child(32) {
    background-image: url('/images/innorix_exacoola/logo_new_comp/ibk.png');
  }

  .from_right_slide_ent>div:nth-child(33) {
    background-image: url('/images/innorix_exacoola/logo_new_comp/ibm.png');
  }

  .from_right_slide_ent>div:nth-child(34) {
    background-image: url('/images/innorix_exacoola/logo_new_comp/incheon_airport.png');
  }

  .from_right_slide_ent>div:nth-child(35) {
    background-image: url('/images/innorix_exacoola/logo_new_comp/kb.png');
  }

  .from_right_slide_ent>div:nth-child(36) {
    background-image: url('/images/innorix_exacoola/logo_new_comp/kbs.png');
  }

  .from_right_slide_ent>div:nth-child(37) {
    background-image: url('/images/innorix_exacoola/logo_new_comp/aia.png');
  }

  .from_right_slide_ent>div:nth-child(38) {
    background-image: url('/images/innorix_exacoola/logo_new_comp/american_express.png');
  }

  .from_right_slide_ent>div:nth-child(39) {
    background-image: url('/images/innorix_exacoola/logo_new_comp/aramark.png');
  }

  .from_right_slide_ent>div:nth-child(40) {
    background-image: url('/images/innorix_exacoola/logo_new_comp/bank_of_korea.png');
  }

  .from_right_slide_ent>div:nth-child(41) {
    background-image: url('/images/innorix_exacoola/logo_new_comp/belkin.png');
  }

  .from_right_slide_ent>div:nth-child(42) {
    background-image: url('/images/innorix_exacoola/logo_new_comp/bnp_paribas.png');
  }

  .from_right_slide_ent>div:nth-child(43) {
    background-image: url('/images/innorix_exacoola/logo_new_comp/carrefour.png');
  }

  .from_right_slide_ent>div:nth-child(44) {
    background-image: url('/images/innorix_exacoola/logo_new_comp/cgv.png');
  }

  .from_left_slide_ent>div:nth-child(1) {
    background-image: url('/images/innorix_exacoola/logo_new_comp/kdb_bank.png');
  }

  .from_left_slide_ent>div:nth-child(2) {
    background-image: url('/images/innorix_exacoola/logo_new_comp/kia.png');
  }

  .from_left_slide_ent>div:nth-child(3) {
    background-image: url('/images/innorix_exacoola/logo_new_comp/kolon.png');
  }

  .from_left_slide_ent>div:nth-child(4) {
    background-image: url('/images/innorix_exacoola/logo_new_comp/kt.png');
  }

  .from_left_slide_ent>div:nth-child(5) {
    background-image: url('/images/innorix_exacoola/logo_new_comp/lg.png');
  }

  .from_left_slide_ent>div:nth-child(6) {
    background-image: url('/images/innorix_exacoola/logo_new_comp/lg_chem.png');
  }

  .from_left_slide_ent>div:nth-child(7) {
    background-image: url('/images/innorix_exacoola/logo_new_comp/lock&lock.png');
  }

  .from_left_slide_ent>div:nth-child(8) {
    background-image: url('/images/innorix_exacoola/logo_new_comp/lotte.png');
  }

  .from_left_slide_ent>div:nth-child(9) {
    background-image: url('/images/innorix_exacoola/logo_new_comp/lotte_card.png');
  }

  .from_left_slide_ent>div:nth-child(10) {
    background-image: url('/images/innorix_exacoola/logo_new_comp/mbc.png');
  }

  .from_left_slide_ent>div:nth-child(11) {
    background-image: url('/images/innorix_exacoola/logo_new_comp/natioal_geographic.png');
  }

  .from_left_slide_ent>div:nth-child(12) {
    background-image: url('/images/innorix_exacoola/logo_new_comp/ncsoft.png');
  }

  .from_left_slide_ent>div:nth-child(13) {
    background-image: url('/images/innorix_exacoola/logo_new_comp/nh.png');
  }

  /* .from_left_slide_ent > div:nth-child(14) {
    background-image: url('/images/innorix_exacoola/logo_new_comp/dun_bradstreet.png');
  } */
  .from_left_slide_ent>div:nth-child(14) {
    background-image: url('/images/innorix_exacoola/logo_new_comp/ocn.png');
  }

  .from_left_slide_ent>div:nth-child(15) {
    background-image: url('/images/innorix_exacoola/logo_new_comp/orion.png');
  }

  .from_left_slide_ent>div:nth-child(16) {
    background-image: url('/images/innorix_exacoola/logo_new_comp/philips.png');
  }

  .from_left_slide_ent>div:nth-child(17) {
    background-image: url('/images/innorix_exacoola/logo_new_comp/posco.png');
  }

  .from_left_slide_ent>div:nth-child(18) {
    background-image: url('/images/innorix_exacoola/logo_new_comp/prudential.png');
  }

  .from_left_slide_ent>div:nth-child(19) {
    background-image: url('/images/innorix_exacoola/logo_new_comp/redcross.png');
  }

  .from_left_slide_ent>div:nth-child(20) {
    background-image: url('/images/innorix_exacoola/logo_new_comp/samsung.png');
  }

  .from_left_slide_ent>div:nth-child(21) {
    background-image: url('/images/innorix_exacoola/logo_new_comp/sbs.png');
  }

  .from_left_slide_ent>div:nth-child(22) {
    background-image: url('/images/innorix_exacoola/logo_new_comp/shinhan.png');
  }

  .from_left_slide_ent>div:nth-child(23) {
    background-image: url('/images/innorix_exacoola/logo_new_comp/siemens.png');
  }

  .from_left_slide_ent>div:nth-child(24) {
    background-image: url('/images/innorix_exacoola/logo_new_comp/sk.png');
  }

  .from_left_slide_ent>div:nth-child(25) {
    background-image: url('/images/innorix_exacoola/logo_new_comp/sk_telecom.png');
  }

  .from_left_slide_ent>div:nth-child(26) {
    background-image: url('/images/innorix_exacoola/logo_new_comp/soil.png');
  }

  .from_left_slide_ent>div:nth-child(27) {
    background-image: url('/images/innorix_exacoola/logo_new_comp/sony.png');
  }

  .from_left_slide_ent>div:nth-child(28) {
    background-image: url('/images/innorix_exacoola/logo_new_comp/standard_chartered.png');
  }

  .from_left_slide_ent>div:nth-child(29) {
    background-image: url('/images/innorix_exacoola/logo_new_comp/stx.png');
  }

  .from_left_slide_ent>div:nth-child(30) {
    background-image: url('/images/innorix_exacoola/logo_new_comp/theshilla.png');
  }

  .from_left_slide_ent>div:nth-child(31) {
    background-image: url('/images/innorix_exacoola/logo_new_comp/total.png');
  }

  .from_left_slide_ent>div:nth-child(32) {
    background-image: url('/images/innorix_exacoola/logo_new_comp/united_colors_of_benetton.png');
  }

  .from_left_slide_ent>div:nth-child(33) {
    background-image: url('/images/innorix_exacoola/logo_new_comp/us_army.png');
  }

  .from_left_slide_ent>div:nth-child(34) {
    background-image: url('/images/innorix_exacoola/logo_new_comp/vietnam_airlines.png');
  }

  .from_left_slide_ent>div:nth-child(35) {
    background-image: url('/images/innorix_exacoola/logo_new_comp/volkswagen.png');
  }

  .from_left_slide_ent>div:nth-child(36) {
    background-image: url('/images/innorix_exacoola/logo_new_comp/yokogawa.png');
  }

  .from_left_slide_ent>div:nth-child(37) {
    background-image: url('/images/innorix_exacoola/logo_new_comp/kdb_bank.png');
  }

  .from_left_slide_ent>div:nth-child(38) {
    background-image: url('/images/innorix_exacoola/logo_new_comp/kia.png');
  }

  .from_left_slide_ent>div:nth-child(39) {
    background-image: url('/images/innorix_exacoola/logo_new_comp/kolon.png');
  }

  .from_left_slide_ent>div:nth-child(40) {
    background-image: url('/images/innorix_exacoola/logo_new_comp/kt.png');
  }

  .from_left_slide_ent>div:nth-child(41) {
    background-image: url('/images/innorix_exacoola/logo_new_comp/lg.png');
  }

  .from_left_slide_ent>div:nth-child(42) {
    background-image: url('/images/innorix_exacoola/logo_new_comp/lg_chem.png');
  }

  .from_left_slide_ent>div:nth-child(43) {
    background-image: url('/images/innorix_exacoola/logo_new_comp/lock&lock.png');
  }

  .from_left_slide_ent>div:nth-child(44) {
    background-image: url('/images/innorix_exacoola/logo_new_comp/lotte.png');
  }

  .from_left_slide_ent>div:nth-child(45) {
    background-image: url('/images/innorix_exacoola/logo_new_comp/lotte_card.png');
  }





  .from_right_slide1>div:first-child {
    background-image: url('/images/innorix_exacoola/new_exacoola_img/roll_img_video/image_1.jpg');
  }

  .from_right_slide1>div:nth-child(2) {
    background-image: url('/images/innorix_exacoola/new_exacoola_img/roll_img_video/image_5.jpg');
  }

  .from_right_slide1>div:nth-child(4) {
    background-image: url('/images/innorix_exacoola/new_exacoola_img/roll_img_video/image_7.jpg');
  }

  .from_right_slide1>div:nth-child(5) {
    background-image: url('/images/innorix_exacoola/new_exacoola_img/roll_img_video/image_2.jpg');
  }

  .from_right_slide1>div:nth-child(7) {
    background-image: url('/images/innorix_exacoola/new_exacoola_img/roll_img_video/image_1.jpg');
  }

  .from_right_slide1>div:nth-child(8) {
    background-image: url('/images/innorix_exacoola/new_exacoola_img/roll_img_video/image_5.jpg');
  }

  .from_right_slide1>div:nth-child(10) {
    background-image: url('/images/innorix_exacoola/new_exacoola_img/roll_img_video/image_7.jpg');
  }

  .from_left_slide1>div:first-child {
    background-image: url('/images/innorix_exacoola/new_exacoola_img/roll_img_video/image_11.jpg');
  }

  .from_left_slide1>div:nth-child(2) {
    background-image: url('/images/innorix_exacoola/new_exacoola_img/roll_img_video/image_3.jpg');
  }

  .from_left_slide1>div:nth-child(4) {
    background-image: url('/images/innorix_exacoola/new_exacoola_img/roll_img_video/image_6.jpg');
  }

  .from_left_slide1>div:nth-child(5) {
    background-image: url('/images/innorix_exacoola/new_exacoola_img/roll_img_video/image_8.jpg');
  }

  .from_left_slide1>div:nth-child(7) {
    background-image: url('/images/innorix_exacoola/new_exacoola_img/roll_img_video/image_11.jpg');
  }

  .from_left_slide1>div:nth-child(8) {
    background-image: url('/images/innorix_exacoola/new_exacoola_img/roll_img_video/image_3.jpg');
  }

  .from_left_slide1>div:nth-child(10) {
    background-image: url('/images/innorix_exacoola/new_exacoola_img/roll_img_video/image_6.jpg');
  }




  .from_right_slide2>div:first-child {
    background-image: url('/images/innorix_exacoola/new_exacoola_img/roll_img_video/image_10.jpg');
  }

  .from_right_slide2>div:nth-child(2) {
    background-image: url('/images/innorix_exacoola/new_exacoola_img/roll_img_video/image_12.png');
  }

  .from_right_slide2>div:nth-child(4) {
    background-image: url('/images/innorix_exacoola/new_exacoola_img/roll_img_video/image_4.jpg');
  }

  .from_right_slide2>div:nth-child(5) {
    background-image: url('/images/innorix_exacoola/new_exacoola_img/roll_img_video/image_9.jpg');
  }

  .from_right_slide2>div:nth-child(7) {
    background-image: url('/images/innorix_exacoola/new_exacoola_img/roll_img_video/image_10.jpg');
  }

  .from_right_slide2>div:nth-child(8) {
    background-image: url('/images/innorix_exacoola/new_exacoola_img/roll_img_video/image_12.png');
  }

  .from_right_slide2>div:nth-child(10) {
    background-image: url('/images/innorix_exacoola/new_exacoola_img/roll_img_video/image_4.jpg');
  }

  .new_features_title {
    width: fit-content;
    font-size: 28px;
    font-weight: 400;
    line-height: normal;
    color: var(--dark-black-color);
    margin-bottom: 48px;
  }

  .new_features_wrapper {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 80px;
    padding: 20px;
    background-color: var(--white-color);
    border-radius: 24px;
  }

  .new_features_content_title {
    width: fit-content;
    height: auto;
    font-size: 22px;
  }

  .new_features_content_type_1 {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 24px;
    padding: 20px;
    background-color: #F2F2F2;
    border-radius: 24px;
    gap: 24px;
  }

  .new_features_content_type_1_text_wrapper {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 16px;
  }

  .new_features_content_type_1_text_wrapper>p {
    font-size: 16px;
    line-height: 22px;
  }

  .new_features_content_padding1 {
    padding-left: 20px;
  }

  .new_features_content_type_2 {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 24px;
    border-radius: 24px;
    gap: 24px;
  }

  .new_features_content_type_2_text_wrapper {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 16px;
  }

  .new_features_content_type_2_text_wrapper>p {
    font-size: 16px;
    line-height: 22px;
  }

  .new_features_content_image_type_1_wrapper {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 16px;
  }

  .new_features_content_image_type_1_img_wrapper {
    width: 100%;
    height: auto;
  }

  .new_features_content_image_type_1_text_wrapper {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 16px;
  }

  .new_features_content_image_type_1_text_wrapper>p {
    font-size: 16px;
    line-height: 22px;
  }

  .new_features_content_image_type_1_img_wrapper>img {
    width: 100%;
    height: auto;
  }


  .new_features_content_image_type_2_wrapper {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 16px;
  }

  .new_features_content_image_type_2_text_wrapper {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 16px;
  }

  .new_features_content_image_type_2_text_wrapper>p {
    font-size: 16px;
    line-height: 22px;
  }

  .new_features_content_image_type_2_img_wrapper {
    width: 240px;
    min-width: 240px;
    height: auto;
  }

  .new_features_content_image_type_2_img_wrapper>img {
    width: 100%;
    height: auto;
  }

  .table_content_type1 {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    overflow: hidden;
    border-radius: 10px;
    border: 1px solid #D1D1D1;
  }

  .table_content_type1>div {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: row;
    align-items: stretch;
    justify-content: flex-start;
  }

  .table_content_type1>div>p {
    width: 70%;
    padding: 10px;
    display: block;
  }

  .table_content_type1>div>p:first-child {
    width: 30%;
    min-width: 154px;
    background-color: #F2F2F2;
    color: var(--dark-black-color);
    font-size: 14px;
    line-height: normal;
  }

  .table_content_type2 {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    overflow: hidden;
    border-radius: 10px;
    border: 1px solid #D1D1D1;
  }

  .table_content_type2_title {
    height: 36px;
    padding: 10px;
    color: var(--dark-black-color);
    font-size: 12px;
    line-height: normal;
    background-color: #F2F2F2;
    font-weight: bolder;
  }

  .table_content_type2>div {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: row;
    align-items: stretch;
    justify-content: flex-start;
  }

  .table_content_type2>div>p {
    width: 90%;
    padding: 10px;
    display: block;
    font-weight: bolder;
  }

  .table_content_type2>div>p:first-child {
    width: 10%;
    min-width: 100px;
    color: var(--dark-black-color);
    font-size: 13px;
    line-height: normal;
  }

  .table_content_type3 {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    overflow: hidden;
    border-radius: 10px;
    border: 1px solid #D1D1D1;
  }

  .table_content_type3_title {
    height: 36px;
    padding: 10px;
    color: var(--dark-black-color);
    font-size: 12px;
    line-height: normal;
    background-color: #F2F2F2;
    font-weight: bolder;
  }

  .table_content_type3>div {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: row;
    align-items: stretch;
    justify-content: flex-start;
    padding: 10px;
  }

  .table_content_type3>div>pre {
    width: 100%;
    font-size: 14px;
    font-weight: bolder;
    line-height: normal;
  }

  .flex_row {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: space-between;
    gap: 80px;
  }

  .flex_align_box_title {
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    background-color: #F2F2F2;
  }

  .flex_align_box_title>p {
    color: var(--dark-black-color);
    font-size: 34px;
    font-weight: 700;
    line-height: 50px;
  }

  .flex_align_box {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    gap: 48px;
    background: var(--white-color);
    border-radius: 24px;
    padding: 40px;
    box-sizing: border-box;
    border: 1px solid #d1d1d1;
    box-shadow: 0px 2px 10px 0px rgba(0, 0, 0, 0.10);
  }

  .flex_align_box2 {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 48px;
    background: var(--white-color);
    border-radius: 24px;
    padding: 40px;
    box-sizing: border-box;
    border: 1px solid #d1d1d1;
    box-shadow: 0px 2px 10px 0px rgba(0, 0, 0, 0.10);
  }

  .flex_align_box2_reverse {
    flex-direction: column;
  }

  .exbyter_flex_box {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 48px;
  }

  .exabyter_flex_box2 {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 20px;
  }

  .text_wrapper {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 24px;
  }

  .text_wrapper_gray {
    color: #7F7F7F;
  }

  .animation_area_wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-width: fit-content;
    height: fit-content;
  }

  .animation_area {
    position: relative;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: flex-start;
    flex-wrap: wrap;
    padding: 20px;
    width: 100%;
    height: 455px;
    gap: 10px;
    background: #F2F2F2;
    border-radius: 5px;
  }

  .animation_area_half_wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: fit-content;
    min-width: fit-content;
    height: fit-content;
  }

  .animation_area1_2 {
    position: relative;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: flex-start;
    flex-wrap: wrap;
    padding: 15px 20px;
    width: 100%;
    height: 285px;
    gap: 15px;
    background: #F2F2F2;
    border-radius: 5px;
  }
}