@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+KR:wght@100;200;300;400;500;600;700;800;900&display=swap');

html,body {
    font-family:'Noto Sans KR', sans-serif;
    -webkit-user-select: none;
	  -moz-user-select: none;
	  -ms-user-select: none;
    background-color: #111217;
    -ms-overflow-style: none;
    scroll-behavior: smooth;
}
::-webkit-scrollbar {
  display: none;
}
text {
  color: #ffffff; 
}
img {
	max-width: 100%;
}

/* grid */
.grids {
  position: fixed;
  justify-content: space-between !important;
  display: flex;
  width: 100%;
  height: 100%;
  z-index: 0; }
  .grids div {
    width: 1px;
    height: 100%;
    background-color: rgba(174, 196, 240, 0.1); 
  }

  .grids div:first-child, .grids div:last-child {
    background-color: transparent; }
  
  .enter {
    display: none;
  }
  .pt_enter {
    display: none;
  }
/* header */
.header-area {
	width: 100%;
  padding: 20px 5%;
	top: 0;
	position: fixed;
  display: flex;
  align-items: center;
  justify-content: space-between;
	z-index: 50;
  transition: all 0.3s ease-in-out;

  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(2px);
}

.logo-area {
	float: left;
	display: inline-block;
}

.pc_nav {
	width: 40%;
	float: right;
	box-shadow: unset;
}

.pc_nav ul {
	list-style: none;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.pc_nav ul li {
	display: inline;
}

.pc_nav ul li a {
	padding: 40px 10px 15px;
	text-transform: uppercase;
	font-size: 14px;
	color: rgba(255, 255, 255, 0.6);
	font-weight: 500;
	position: relative;
  transition: all 0.4s;
}
.pc_nav ul li a:hover {
  color: #ffffff;
}

.pc_nav ul li a:after {
	position: absolute;
	content: "";
	width: 0;
	height: 2px;
	left: 15%;
  bottom: -10%;
	background: #8490ff;
	-webkit-transition: all 0.4s;
	-o-transition: all 0.4s;
	transition: all 0.4s;
}

.pc_nav ul li a:hover:after {
	width: 60px;
}

.pc_nav ul li.active>a:after {
	width: 45px;
}

.contact {
  padding: 1% 2%;
  margin-left: 3%;
  background: none;
  color: #fff;
  border: 1px solid #FFF;
  border-radius: 5px;

  cursor: pointer;
  transition: all 00.5s ease-in-out;
}

.contact:hover {
  background-color: rgba(255, 255, 255, 0.25);
  border: 1px solid  rgba(255, 255, 255, 0.25);
}

.mob_btn {
  display: none;
}

/* mobile header */
/* 모바일 */
.mob_btn {
  width: 40px;
  height: 40px;
  position: relative;
  border-radius: 5px;
  display: none;
  z-index: 9999;
}
.mob_btn span {
  display: inline-block;
  width: 30px;
  height: 2px;
  background-color: #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: 0.5s;
  border-radius: 2px;
}
 .mob_btn span::after, .mob_btn span::before {
  content: '';
  display: inline-block;
  width: inherit;
  height: inherit;
  background-color: #fff;
  position: absolute;
  top: -10px;
  transition: 0.5s;
  border-radius: 2px;
}

.mob_btn span::after {
  top: 10px;
}

.mob_btn.active span {
  background-color: transparent;
}

.mob_btn.active {
  background: radial-gradient(circle, rgb(0, 0, 0) 0%, rgba(92, 98, 106, 0) 100%);
}

.mob_btn.active span::before {
  top: 0;
  transform: rotate(45deg);
  background: linear-gradient(to left,rgba(132, 144, 255, 1),rgba(132, 144, 255, 0.7));
}

.mob_btn.active span::after {
  top: 0;
  transform: rotate(-45deg);
  background: linear-gradient(to right,rgba(132, 144, 255, 1),rgba(132, 144, 255, 0.7));
}

.mob_nav {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  right: 0;
  text-align: center;
  display: none;
}

.mob_nav ul {
  float: right;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, .8);
  padding: 30% 10%;
}

.mob_nav li {
  margin-bottom: 10px;
  font-size: 20px;
  transition: .4s;
  padding: 5% 0;
  text-align: right;
}

.mob_nav li a {
  display: inline-block;
  color: rgba(255, 255, 255, .8);
  font-weight: 200;
  position: relative;
  text-decoration: none;
  transition: all 0.5s ease-in-out;
}

.mob_nav li a:hover {
  font-weight: bold;
  color: #fff;
}

.mob_nav li a::before {
  content: '';
  display: block;
  width: 0;
  height: 2px;
  position: absolute;
  left: 0;
  bottom: -5px;
  background: linear-gradient(to left,rgba(132, 144, 255, 1),rgba(132, 144, 255, 0));
}

.mob_nav li a:hover::before {
  width: 100%;
  left: 0;
  transition: all .3s;
}

.mob_nav button {
  border: 1px solid #333;
  padding: 3px 10px;
  border-radius: 30px;
}

.mob_nav button:hover {
  background-color: #8490ff;
  color: #fff;
  border: none;
  transition: all 0.5s ease-in-out;
}

.mob_nav button img {
  max-width: 20px;
}

.down {
  background-color: rgba(36, 41, 54, 0.3);
  -webkit-transition-duration: 0.4s;
  -webkit-transition-timing-function: ease;
  transition-duration: 0.4s;
  transition-timing-function: ease;
}



/* scrollup */
#up {
  position: fixed;
  z-index: 2147483647;
  display: block;

    bottom: 60px;
    right: 60px;
    width: 60px;
    height: 60px;
    text-align: center;
    line-height: 60px;
    border-radius: 50%;
    transition-duration: 500ms;
    transition: all 0.3s ease-in-out;
}
#up:hover {
  background-color: rgba(255, 255, 255, 0.25);
}
#up-icon {
  scale: 0.6;
  display: block;
  margin: auto;
  width: 100%;
  height: auto;
}

/* section_home */
#home {
  width: 100%;
  height: 100vh;
  position: relative;
}

.bg-video{
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: absolute;
  left:0;
  top:0;
}
.bg-video video{
  width:100%;
  height:100%;
  object-fit: cover;
}

.main_info {
  width: 70%;
  position: absolute;
  left: 50%;
  top: 65%;
  text-align: center;
  transform: translate(-50%, -50%);
  color: #ffffff;
  text-shadow: 0px 2px 5px rgba(0, 0, 0, 0.95);
}
.main_info img {
  margin-bottom: 3%;
}
.main_info img span {
  display: block;
  position: relative;
  padding-bottom: 50px;
}
.main_info span::after {
  content: " ";
  width: 10%;
  height: 1px;
  border-bottom: 2px solid #fff;
  position: absolute;
  left: 50%;
  top: 12%;
  transform: translateX(-50%);
}
.main_info h1 {
  font-size: 2em;
  font-weight: 500;
}
.main_info h2 {
  color: rgba(255, 255, 255, 0.60);
  font-weight: 300;
  font-size: 1.3em;
  margin: 0 0 2% 0;
}
.main_info p {
  color: rgba(255, 255, 255, 0.90);
  font-weight: 200;
}
.scroll {
  margin-top: 15%;
  cursor: pointer;
  background: none;
  opacity: 0.6;
  transition: all 0.3s ease-in-out;
}
.scroll:hover {
  transform: translateY(-5px);
  opacity: 1;
}
.scroll img {
  transform: scale(0.8);
}

/* section_service */
#service {
  width: 100%;
  height: 100vh;
  padding: 13% 12.5%;
  position: relative;
}
#service::before {
  content: '';
  display: block;
  position: absolute;
  width: 100%;
  height: 40%;
  z-index: 0;
  top: 0;
  left: 0;
  background: linear-gradient(to bottom,rgba(0, 0, 1, 1),rgba(17, 18, 23, 0));
}
.service_wrap h3{
  font-weight: bold;
  color: #ffffff;
  margin-bottom: 2%;
}
.service_wrap p {
  font-weight: lighter;
  color: rgba(255, 255, 255, 0.80);
  margin-top: 3px;
}

.service_wrap {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
}

.service_title {
  width: 70%;
  color: #ffffff;
}
.service_title span {
  display: block;
  position: relative;
  margin-bottom: 35px;
}
.service_title span::after {
  content: " ";
  width: 15%;
  height: 2px;
  background: linear-gradient(to right,rgba(132, 144, 255, 1),rgba(132, 144, 255, 0));
  position: absolute;
  left: 8%;
  top: 100%;
  margin-top: 10px;
  transform: translateX(-50%);
}

.company_letter {
  padding: 1% 2%;
  background: none;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 5px;
  margin-bottom: 10%;
  position: relative;
  z-index: 1;

  cursor: pointer;
  transition: all 00.5s ease-in-out;
}
.company_letter:hover {
  background-color: rgba(255, 255, 255, 0.25);
  border: 1px solid  rgba(255, 255, 255, 0.25);
}
.company_letter a {
  color: #fff;
}

.service_box {
  width: 450px;
  height: 200px;
  padding: 1%;
  margin-bottom: 2%;
  border-radius: 5px;
  transition: all 0.3s ease-in-out;
}
.service_box:hover {
  color: #ffffff;
  filter: drop-shadow(0px 0px 4px rgba(255, 255, 255, 0.65));
}

.box_title {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.sb-icon {
  margin-right: 7px;
}

.service_info {
  display: flex;
  flex-wrap: wrap;
  align-content: space-around;
  justify-content: flex-start;
}

/* section_solution */
#solution {
  width: 100%;
  height: 100%;
  padding: 10% 12.5%;
  position: relative;
}

.solution_wrap {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.solution_title {
  width: 100%;
  color: #ffffff;
}
.solution_title span {
  display: block;
  position: relative;
  margin-bottom: 35px;
}
.solution_title span::after {
  content: " ";
  width: 15%;
  height: 2px;
  background: linear-gradient(to right,rgba(132, 144, 255, 1),rgba(132, 144, 255, 0));
  position: absolute;
  left: 8%;
  top: 100%;
  margin-top: 10px;
  transform: translateX(-50%);
}


.solution_info {
  margin-top: 60px;
  display: flex;
}

.solution_factory {
  height: 550px;
	width: 100%;
  border-radius: 5px;
  margin: 0 1%;
  
  background-size:cover;
  background-repeat:no-repeat;
  background-image: url(../img/solution_1.jpg);

	-o-transition: .8s;
	transition: .8s;
	-webkit-transition: .8s;
	-ms-transform: translateX(0);
	    transform: translateX(0);
	-webkit-transform: translateX(0);
	opacity: 1;
}

.solution_hybrid {
  height: 550px;
	width: 100%;
  border-radius: 5px;
  margin: 0 1%;
  
  background-size:cover;
  background-repeat:no-repeat;
  background-image: url(../img/solution_2.jpg);

	-o-transition: .8s;
	transition: .8s;
	-webkit-transition: .8s;
	-ms-transform: translateX(0);
	    transform: translateX(0);
	-webkit-transform: translateX(0);
	opacity: 1;
}
.solution_chatting {
  height: 550px;
	width: 100%;
  border-radius: 5px;
  margin: 0 1%;
  
  background-size:cover;
  background-repeat:no-repeat;
  background-image: url(../img/solution_3.jpg);

	-o-transition: .8s;
	transition: .8s;
	-webkit-transition: .8s;
	-ms-transform: translateX(0);
	    transform: translateX(0);
	-webkit-transform: translateX(0);
	opacity: 1;
}
.solution_company {
  height: 550px;
	width: 100%;
  border-radius: 5px;
  margin: 0 1%;
  
  background-size:cover;
  background-repeat:no-repeat;
  background-image: url(../img/solution_4.jpg);

	-o-transition: .8s;
	transition: .8s;
	-webkit-transition: .8s;
	-ms-transform: translateX(0);
	    transform: translateX(0);
	-webkit-transform: translateX(0);
	opacity: 1;
}

.solution_content {
	padding: 30px;
	height: 100%;
	background: rgba(13, 13, 13, 0.7);
  backdrop-filter: blur(1px);
	-webkit-transition: all 0.4s ease 0s;
	-o-transition: all 0.4s ease 0s;
	transition: all 0.4s ease 0s;
	opacity: 1;
}

.solution_content h2 {
  color: #fff;
	font-weight: bold;
	position: relative;
  top: 57%;
	-webkit-transition: all 0.6s ease 0s;
	-o-transition: all 0.6s ease 0s;
	transition: all 0.6s ease 0s;
}
.solution_content p {
	color: #fff;
	font-weight: 100;
	position: relative;
  top: 60%;
	-webkit-transition: all 0.4s ease 0s;
	-o-transition: all 0.4s ease 0s;
	transition: all 0.4s ease 0s;
}

.solution_info .solution_factory:hover .solution_content {
  opacity: 1;
}
.solution_info .solution_hybrid:hover .solution_content {
  opacity: 1;
}
.solution_info .solution_chatting:hover .solution_content {
  opacity: 1;
}
.solution_info .solution_company:hover .solution_content {
  opacity: 1;
}

/* section_history */
#history {
  position: relative;
  width: 100%;
  height: 100%;
  padding: 13% 12.5%;
}
.history_title h1 {
  position: relative;
  text-align: center;
  color: #fff;
}

.history_title span {
  display: block;
  position: relative;
  margin-bottom: 35px;
}
.history_title span::after {
  content: " ";
  width: 10%;
  height: 2px;
  background: #8490ff;
  position: absolute;
  left: 50%;
  top: 100%;
  margin-top: 10px;
  transform: translateX(-50%);
}

/* history_new */
.his {
  --col-gap: 2rem;
  --row-gap: 2rem;
  --line-w: 0.15rem;
  display: grid;
  grid-template-columns: var(--line-w) 1fr;
  grid-auto-columns: max-content;
  column-gap: var(--col-gap);
  list-style: none;
  width: min(60rem, 90%);
  margin-inline: auto;
  margin-top: 7%;
}

/* line */
.his::before {
  content: "";
  grid-column: 1;
  grid-row: 1 / span 20;
  background: linear-gradient(180deg,rgba(132, 144, 255, 1),rgba(132, 144, 255, 0));
  border-radius: calc(var(--line-w) / 2);
}

/* row gaps */
.his li:not(:last-child) {
  margin-bottom: var(--row-gap);
}

/* card */
.his li {
  grid-column: 2;
  --inlineP: 1.5rem;
  margin-inline: var(--inlineP);
  grid-row: span 2;
  display: grid;
  grid-template-rows: min-content min-content min-content;
}

/* date */
.his li .date {
  --dateH: 3rem;
  height: var(--dateH);
  margin-inline: calc(var(--inlineP) * -1);

  text-align: center;
  background-color: rgba(132, 144, 255, 0.1);

  color: white;
  text-shadow: 0px 2px 2px rgba(0, 0, 0, 0.6);
  font-size: 1.25rem;
  font-weight: 700;

  display: grid;
  place-content: center;
  position: relative;

  border-radius: calc(var(--dateH) / 2) 0 0 calc(var(--dateH) / 2);
  transition: all 0.3s ease-in-out;
}
.his li .date:hover {
  background-color: rgba(132, 144, 255, 0.8);
}

/* date flap */
.his li .date::before {
  content: "";
  width: var(--inlineP);
  aspect-ratio: 1;
  background-color: rgba(132, 144, 255, 0.6);
  background-image: linear-gradient(rgba(0, 0, 0, 0.2) 100%, transparent);
  position: absolute;
  top: 100%;

  clip-path: polygon(0 0, 100% 0, 0 100%);
  right: 0;
}

/* circle */
.his li .date::after {
  content: "";
  position: absolute;
  width: 1rem;
  aspect-ratio: 1;
  background: rgba(17, 18, 23, 0.7);
  border: 0.18rem solid var(--accent-color);
  border-radius: 50%;
  top: 50%;

  transform: translate(50%, -50%);
  right: calc(100% + var(--col-gap) + var(--line-w) / 2);
}

/* title descr */
.his li .title,
.his li .descr {
  background: rgba(17, 18, 23, 1);
  color: #fff;
  position: relative;
  padding-inline: 1.5rem;
}
.his li .title {
  overflow: hidden;
  padding-block-start: 1.5rem;
  padding-block-end: 1rem;
  font-weight: 500;
}
.his li .descr {
  padding-block-end: 1.7rem;
  font-weight: 100;
  line-height: 155%;
}

/* shadows */
.his li .title::before,
.his li .descr::before {
  content: "";
  position: absolute;
  width: 90%;
  height: 0.5rem;
  background: rgba(132, 144, 255, 0.8);
  left: 50%;
  border-radius: 50%;
  filter: blur(4px);
  transform: translate(-50%, 50%);
}
.his li .title::before {
  bottom: calc(100% + 0.125rem);
}

.his li .descr::before {
  z-index: -1;
  bottom: 0.25rem;
}

@media (min-width: 50rem) {
  .his {
    grid-template-columns: 1fr var(--line-w) 1fr;
  }
  .his::before {
    grid-column: 2;
  }
  .his li:nth-child(odd) {
    grid-column: 1;
  }
  .his li:nth-child(even) {
    grid-column: 3;
  }

  /* start second card */
  .his li:nth-child(2) {
    grid-row: 2/4;
  }

  .his li:nth-child(odd) .date::before {
    clip-path: polygon(0 0, 100% 0, 100% 100%);
    left: 0;
  }

  .his li:nth-child(odd) .date::after {
    transform: translate(-50%, -50%);
    left: calc(100% + var(--col-gap) + var(--line-w) / 2);
  }
  .his li:nth-child(odd) .date {
    border-radius: 0 calc(var(--dateH) / 2) calc(var(--dateH) / 2) 0;
  }
}

/* section_portfolio */
#portfolio {
  width: 100%;
  height: 100%;
  position: relative;
  padding: 11% 12.5%;
}

.portfolio_title h1 {
  position: relative;
  text-align: center;
  color: #fff;
}

.portfolio_title span {
  display: block;
  position: relative;
  margin-bottom: 35px;
}
.portfolio_title span::after {
  content: " ";
  width: 10%;
  height: 2px;
  background: #8490ff;
  position: absolute;
  left: 50%;
  top: 100%;
  margin-top: 10px;
  transform: translateX(-50%);
}


.row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-top: 6%;
  padding: 0 1%;
  justify-content: space-evenly;
}
.col-lg-3 {
  width: 30%;
  margin-top: 1%;
}
.project {
  position: relative;
  width: 100%;
  display: block;
  overflow: hidden;
  z-index: 0; 
  border-radius: 10px;
}
  
  .project:after {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    content: '';
    background: #2C2C38;
    opacity: 0;
    z-index: 1;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    transition: all 0.3s ease; }
  .project img {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -o-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
    z-index: -1;
    -moz-transition: all 0.6s ease;
    -o-transition: all 0.6s ease;
    -webkit-transition: all 0.6s ease;
    -ms-transition: all 0.6s ease;
    transition: all 0.6s ease; }
  .project .text {
    position: absolute;
    top: -100px;
    left: 0;
    right: 0;
    padding: 2em;
    opacity: 0;
    z-index: 2;
    -moz-transition: all 0.6s ease;
    -o-transition: all 0.6s ease;
    -webkit-transition: all 0.6s ease;
    -ms-transition: all 0.6s ease;
    transition: all 0.6s ease; }
    .project .text span {
      font-size: 14px;
      text-transform: uppercase;
      letter-spacing: 2px;
      line-height: 0;
      color: rgba(255, 255, 255, 0.8); }
    .project .text h3 {
      color: #fff; }
    .project .text h3 a {
      color: #fff; }


  .project .icon {
    position: absolute;
    bottom: -50px;
    left: 2em;
    width: 45px;
    height: 45px;
    /* bordeR: 1px solid #fff; */
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    border-radius: 50%;
    -moz-transition: all 0.6s ease;
    -o-transition: all 0.6s ease;
    -webkit-transition: all 0.6s ease;
    -ms-transition: all 0.6s ease;
    transition: all 0.6s ease;
    opacity: 0;
    z-index: 2; }
    .project .icon span {
      color: #fff;
      font-size: 20px; }
  .project:hover:after, .project:focus:after {
    opacity: .8; }
  .project:hover .text, .project:focus .text {
    opacity: 1;
    top: 0; }
  .project:hover .icon, .project:focus .icon {
    bottom: -5%;
    opacity: 1; }

  .project:hover img, .project:focus img {
    -webkit-transform: scale(1.2);
    -moz-transform: scale(1.3);
    -o-transform: scale(1.3);
    -ms-transform: scale(1.3);
    transform: scale(1.3); 
  }

  /* project_css */
  .projects_fillter .filter {
    text-align: center;
    margin-top: 70px;
    margin-bottom: 50px; }
    .projects_fillter .filter li {
      display: inline-block;
      margin-right: 30px; }
      .projects_fillter .filter li a {
        font-size: 13px;
        font-family: "Roboto", sans-serif;
        color: #777777; }
      .projects_fillter .filter li:last-child {
        margin-right: 0px; }
      .projects_fillter .filter li.active a {
        color: #8490ff; }
  
  .projects_inner {
    margin-bottom: -30px; }
  
  .projects_item {
    position: relative;
    border-radius: 5px;
    overflow: hidden;
    margin-bottom: 30px; }
    .projects_item:before {
      content: "";
      background: rgba(255, 255, 255, 0.8);
      position: absolute;
      left: 0px;
      top: 0px;
      width: 100%;
      height: 100%;
      opacity: 0;
      transition: all 300ms ease; }
    .projects_item .projects_text {
      position: absolute;
      left: 0px;
      bottom: 30px;
      padding-left: 30px;
      padding-right: 30px; }
      .projects_item .projects_text h4 {
        font-size: 21px;
        font-family: "Heebo", sans-serif;
        font-weight: bold;
        color: #222222;
        margin-bottom: 5px;
        transition: all 300ms linear 0s;
        text-transform: uppercase;
        cursor: pointer; }
      .projects_item .projects_text p {
        margin-bottom: 0px;
        font-size: 14px; }
    .projects_item:hover:before {
      opacity: 1; }
    .projects_item:hover .projects_text h4 {
      background: linear-gradient(to right, #8490ff 0%, #62bdfc 70%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent; }
  
  /* End Projects Area css
  ============================================================================================ */
  /* Portfolio Details Area css
  ============================================================================================ */

  #pt_project {
    width: 100%;
    height: 100vh;
    position: relative;
    overflow: hidden;
  }

  .img-bg {
    width: 100%;
    height: 100vh;
    right: 0;
    top: 0;
    object-fit: cover;
    position: absolute;
  }
  
  #close {
    position: absolute;
    top: 5%;
    right: 3%;
    z-index: 1;
  }
  .pt_project_info {
    bottom: 0;
    left: 0;
    width: 80%;
    height: 100vh;
    position: absolute;
    
    background: linear-gradient(90deg, #000 30%, rgba(0, 0, 0, 0.00) 100%);
  }
  .pt_project_text {
    bottom: 10%;
    position: absolute;
    padding: 0 5%;
    color: #ffffff;
  }
  .pt_project_text h2 {
    font-size: 3rem;
    margin: 0;
  }
  .pt_project_text h4 {
    font-size: 1.7rem;
    font-weight: 300;
    margin: 0;
  }
  .pt_project_text p {
    font-weight: lighter;
  }

  /* project_css end */



  /* section_partner */
  #partner {
    padding: 5% 12%;
  }

  .partner_title h1 {
    position: relative;
    text-align: center;
    color: #fff;
  }
  
  .partner_title span {
    display: block;
    position: relative;
    margin-bottom: 35px;
  }
  .partner_title span::after {
    content: " ";
    width: 10%;
    height: 2px;
    background: #8490ff;
    position: absolute;
    left: 50%;
    top: 100%;
    margin-top: 10px;
    transform: translateX(-50%);
  }
  :root {
    --secondary-color: #fff;
  }
  
  .container {
    width: 100%;
    margin: 4% auto 0 auto;
  }

  .logo-carousel-container {
    min-height: 70px;
    background-color: inherit;
    align-items: center;
    display: flex;
    position: relative;
    overflow: hidden;
  }
  
  .logo-gradient-l {
    z-index: 5;
    width: 100px;
    background-image: linear-gradient(
      90deg,
      #111217,
      #111217 25%,
      rgba(17, 18, 23, 0.4) 60%,
      rgba(17, 18, 23, 0)
    );
    position: absolute;
    top: 0%;
    bottom: 0%;
    left: 0%;
    right: auto;
  }
  .logo-gradient-r {
    z-index: 5;
    width: 100px;
    background-image: linear-gradient(
      267deg,
      #111217,
      #111217 21%,
      rgba(17, 18, 23, 0.4) 51%,
      rgba(17, 18, 23, 0)
    );
    position: absolute;
    top: 0%;
    bottom: 0%;
    left: auto;
    right: 0%;
  }
  
  .logo-carousel {
    position: absolute;
    white-space: nowrap;
    will-change: transform;
    animation: carousel-track 20s linear infinite;
  }
  
  @keyframes carousel-track {
    from {
      transform: translateX(-50%);
    }
  
    to {
      transform: translateX(0%);
    }
  }
  
  .logo-carousel:hover {
    -webkit-animation-play-state: paused;
    -moz-animation-play-state: paused;
    -o-animation-play-state: paused;
    animation-play-state: paused;
  }
  .logo-cont {
    display: flex;
    gap: 10px;
  }
  .logo-item {
    max-height: 50px;
    min-width: 130px;
    transition: background-color 0.3s;
    border-radius: 10px;
    padding: 12px 16px;
    cursor: pointer;
  }
  


  /* section_footer */
  .footer {
    width: 100%;
    height: 30%;
    position: relative;
    bottom: 0;
    padding: 5% 10%;

    background-color: #1b1b1d;
    color: #ffffff;
  }

  .footer_wrap {
    display: flex;
    justify-content: space-between;
  }
  .footer_left {
    width: fit-content;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
  }
  .footer_left img {
    transform: scale(1.7);
    margin-bottom: 6%;
  }
  .footer_left h1 {
    font-size: 1.5rem;
    font-weight: bold;
  }
  .footer_right {
    width: 35%;
    line-height: 175%;
    display: flex;
    justify-content: space-between;
  }
  .ft_info1 {
    font-weight: lighter;
    color: rgba(255, 255, 255, 0.7);
  }
  

