@font-face {
  font-family: "Overused Grotesk";
  src: url("../fonts/OverusedGrotesk-VF.woff2") format("woff2"),
  url("../fonts/OverusedGrotesk-VF.woff") format("woff"),
  url("../fonts/OverusedGrotesk-VF.ttf") format("truetype");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

:root {
  --ui-font: "Overused Grotesk", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

body {
  font-family: var(--ui-font), sans-serif;
}

p h1 h2 h3 h4 h5 a span {
  font-family: var(--ui-font), sans-serif;
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translate3d(0, 100%, 0);
  }
  100% {
    opacity: 1;
    transform: none;
  }
}

#main_wiinvent {
  width: 100%;
  height: 100%;
  
  .icon_menu {
    display: none;
  }
  
  .icon_menu img {
    width: 21px;
    height: auto;
  }
  
  .scroll_top {
    position: fixed;
    bottom: 10px;
    right: 10px;
    border: none;
    border-radius: 10px;
    background: #0058ae9c;
    width: 48px;
    height: 48px;
  }
  
  .scroll_top i {
    color: #FFFFFF;
    font-size: 20px;
  }
}

/*-----------------------------------*/

header {
  width: 100%;
  position: sticky;
  top: 0;
  background: #ffffff;
  z-index: 100;
}

header .header_top {
  width: 100%;
  height: 80px;
}

header .header_top .logo img {
  width: 180px;
  height: 50px;
}

header .header_menu {

}

header .header_menu a, header .header_menu .product {
  color: #666666;
  padding: 10px 15px;
  font-size: 18px;
  font-style: normal;
  font-weight: bold;
  text-decoration: none;
  border-radius: 0 0 15px 15px;
  cursor: pointer;
}

header .header_menu .product .list_item {
  display: flex;
  flex-direction: column;
  width: 170px;
  
  .list_item-wrap {
    display: flex;
    align-items: center;
    height: 30px;
    border-bottom: solid 1px #EDEDED;
  }
}

header .header_menu .product .content {
  width: 190px;
  display: none;
  background-color: white;
}

header .header_menu .product:hover .content {
  display: block !important;
  width: 190px;
  top: 100%;
  border: solid 1px #a59e9e42;
  border-radius: 5px;
  padding: 10px;
}

header .header_menu .product .list_item a {
  font-size: 16px;
  font-weight: 500;
  width: 100%;
  color: #666666;
  margin: 10px 0 10px 10px;
}

header .header_menu a:hover, header .header_menu .product:hover {
  color: #207CEA;
}

header .header_menu .product .list_item a:hover {
  color: #207CEA;;
  background-color: transparent;
}

.header_content, .header_content-telecom, .header_content-other, .header_content-career {
  width: 100%;
  height: 500px;
  padding-top: 50px;
  background-image: url("../images/slider_1.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  
  .header_content-text h1 {
    color: #ffffff;
    text-transform: uppercase;
    font-size: 48px;
    font-weight: bold;
    animation: 0.8s 0.8s fadeInUp both
    
  }
  
  .header_content-text h2 {
    color: #FFFFFF;
    font-size: 48px;
    font-weight: bold;
    animation: 1s 1.2s fadeInUp both
    
  }
  
  .header_content-text p {
    color: #FFFFFF;
    font-size: 24px;
    margin: 20px 0;
    animation: 1s 1.6s fadeInUp both
    
  }
  
  .header_content-text button {
    background: #FFFFFF;
    color: #207CEA;
    font-weight: bold;
    font-size: 24px;
    padding: 10px 20px;
    border: solid 2px #FFD213;
    border-radius: 40px;
    margin-top: 20px;
    animation: 1s 1.6s fadeInUp both
  }
  
  .header_content-img {
    animation: 0.8s 0.8s fadeInUp both
  }
  
  .header_content-img img {
    width: 650px;
  }
}

.header_content-telecom {
  background-image: url("../images/banner_7.png");
}

.header_content-other {
  background-image: url("../images/banner_6.png");
}

.header_content-career {
  background-image: url("../images/banner_5.jpg");
}

/*-----------------------------------*/

#main_wiinvent .wrapper {
  width: 100%;
  height: auto;
}

.platformProvides {
  padding: 80px 0;
  background: #F5F8FB;
}

.platformProvides .title h2 {
  font-weight: bold;
  font-size: 40px;
}

.platformProvides .title h2 span {
  font-weight: bold;
  font-size: 40px;
}

.platformProvides .title p {
  color: #232323;
  font-size: 16px;
}

.platformProvides .content {
  flex-wrap: wrap;
  margin: 40px 0;
  
  .content-wrap {
    height: 100%;
    background: #FFFFFF;
    padding: 10px;
    border-radius: 10px;
  }
  
  .content-wrap:hover {
    border-bottom: solid 2px #2196F3;
    box-shadow: 0 1px 5px rgba(0, 0, 0, 0.3);
  }
  
  .content-img {
    width: 64px;
  }
  
  .content-title {
    font-size: 24px;
    font-weight: bold;
    color: #4A4A4A;
  }
  
  .content-text {
    font-size: 16px;
    color: #4A4A4A;
    margin-bottom: 5px !important;
    
    .fa-circle-check {
      font-size: 14px;
      color: #2196F3;
    }
  }
}

.platformProvides .content-iSport {
  margin-top: 40px;
  
  .contentRow {
    display: flex;
    align-items: center;
  }
  
  .contentBox {
    margin: 10px;
  }
}

.platformProvides .rowContact {
  display: flex;
  width: 100%;
  padding: 0 !important;
}

.platformProvides .boxContact {
  width: 33%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #FFFFFF;
  border-radius: 10px;
  margin: 10px;
  padding: 10px;
}

.platformProvides .boxContact span {
  font-weight: bold;
  font-size: 20px;
}

.platformProvides .boxContact p {
  font-size: 16px;
  padding: 0 25px;
  text-align: center;
}

.platformProvides .rowInfo {
  padding: 40px 20px;
  background: #FFFFFF;
  
  .title {
    text-align: center;
    font-weight: bold;
    font-size: 24px;
  }
  
  .rowBox {
    margin-top: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    
    .bt_sendForm {
      font-size: 16px;
      font-weight: bold;
      color: #FFFFFF;
      background: #207CEA;
      padding: 10px 40px;
      border-radius: 5px;
      border: none;
    }
    
    .boxInfo {
      display: flex;
      flex-direction: column;
    }
    
    .boxInfo input {
      height: 44px;
      border-radius: 5px;
      border: solid 1px #CCCCCC;
    }
    
    .boxInfo textarea {
      height: 100px;
      border-radius: 5px;
      border: solid 1px #CCCCCC;
    }
  }
}

.platformProvidesCbos {
  padding: 80px 0;
  background-image: url("../images/BgGreyWave.png");
  background-repeat: no-repeat;
  
  .box-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    
    .box {
      margin-right: 10px;
    }
    
    .box img {
      width: 100%;
    }
  }
  
  .content-wrapper {
    color: #4A4A4A;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    margin-top: 40px;
    
    .text-wrap i {
      color: #207CEA;
      font-size: 14px;
    }
    
    .img-wrap {
      width: 600px;
      height: 250px;
      padding: 0 50px;
      
      img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
      }
    }
    
  }
  
  .content-wrapper h5 {
    font-size: 48px;
    font-weight: bold;
  }
  
  .content-wrapper span {
    font-size: 48px;
    font-weight: bold;
  }
  
  .content-wrapper p {
    font-size: 16px;
  }
}

.platformProvidesCbos .title h2 {
  font-weight: bold;
  font-size: 40px;
}

.platformProvidesCbos .title h2 span {
  font-weight: bold;
  font-size: 40px;
}

.platformProvidesCbos .title p {
  color: #232323;
  font-size: 16px;
}

.partnership {
  padding: 80px 0;
  background-image: url("../images/BgGrey.png");
  background-repeat: no-repeat;
  background-size: cover;
}

.partnership .content {
  width: 100%;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin: 40px 0;
  
  .partner_image {
    display: flex;
    justify-content: center;
    width: calc(100% / 6);
  }
  
  .partner_image img {
    width: 100px;
  }
}

.partnership .title h2 {
  font-weight: bold;
  font-size: 40px;
  margin-bottom: 36px;
}

.partnership .title h2 span {
  font-weight: bold;
  font-size: 40px;
  margin-bottom: 36px;
}

.questions {
  align-items: center;
  justify-content: center;
  display: flex;
  flex-direction: column;
  
  .content {
    width: 65%;
    display: flex;
    flex-direction: column;
  }
  
  .questions_title {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: solid 1px #E1E1E1;
    padding: 10px;
    cursor: pointer;
  }
  
  .questions_title h5 {
    color: #232323;
    font-size: 16px;
    font-weight: bold;
    margin: 0 !important;
  }
  
  .questions_title i {
    color: #207CEA;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
  }
  
  .expand-container {
    overflow: hidden;
    padding: 15px;
    
    .expanded {
      border-left: 1px solid #207CEA;
      margin-top: 0;
      transition: all 0.5s;
      padding-left: 10px;
    }
    
    .collapsed {
      border-left: 1px solid #207CEA;
      margin-top: -200%;
      transition: all 1s;
      padding-left: 10px;
    }
    
    .expanded p {
      color: #4A4A4A;
      font-size: 16px;
    }
    
    .collapsed p {
      color: #4A4A4A;
      font-size: 16px;
    }
  }
}

/*-------------------------------*/

footer {
  width: 100%;
  height: 250px;
  background: white;
  display: flex;
  align-items: center;
}

footer .container {
  max-width: 1220px;
}

footer h5 {
  color: #4A4A4A;
  font-weight: bold;
  font-size: 20px;
  margin-bottom: 15px;
}

footer p {
  color: #4A4A4A;
  font-size: 16px;
  margin: 0 !important;
}

footer i {
  color: #4A4A4A;
  font-size: 14px;
  margin-right: 10px;
}

footer h4 a{
  font-weight: bold;
  text-decoration: none;
  color: #4A4A4A;
  font-size: 20px;
}

footer a {
  text-decoration: none;
  color: #4A4A4A;
  font-size: 14px;
}

/*-----------------------*/

@media only screen and (min-width: 600px) and (max-width: 1400px) {
  .swiper {
    h1 {
      font-size: 18px;
    }
  }
  
  .header_content-career {
    height: 500px;
  }
  
  .header_content {
    padding-top: 20px;
    
    
    .header_content-text h1 {
      font-size: 24px;
      font-weight: bold;
    }
    
    .header_content-text h2 {
      font-size: 24px;
      font-weight: bold;
    }
    
    .header_content-text p {
      font-size: 18px;
      margin: 20px 0;
    }
    
    .header_content-text button {
      background: #FFFFFF;
      color: #207CEA;
      font-weight: bold;
      font-size: 14px;
      border: solid 2px #FFD213;
      border-radius: 40px;
    }
    
    .header_content-text {
      display: flex;
      align-items: flex-start;
      flex-direction: column;
      justify-content: center;
      width: 50%;
    }
    
    .header_content-img {
      width: 50%;
    }
    
    .header_content-img img {
      width: 100%;
    }
  }
  
  .partnership .content {
    justify-content: space-evenly;
    
    .partner_image {
      width: auto;
    }
  }
  
  .platformProvidesCbos {
    .content-wrapper {
      .img-wrap img {
        width: 100%;
      }
    }
  }
  
  .partnership .title {
    flex-direction: column;
    align-items: center;
  }
}

@media only screen and (max-width: 600px) {
  .swiper {
    height: 250px !important;
  }
  
  .swiper-slide h1 {
    font-size: 18px !important;
    left: 10px !important;
  }
  
  .swiper-button-next {
    font-size: 12px;
  }
  
  .swiper-button-prev {
    font-size: 12px;
  }
  
  header .header_top .logo img {
    width: 160px;
    height: 40px;
  }
  
  header .header_top {
    .icon_menu {
      display: flex !important;
      align-items: center;
      gap: 10px;
      font-size: 20px;
      color: #207CEA;
    }
    
    .header_menu {
      display: none !important;
    }
  }
  
  header .dropdown-menu {
    padding: 0;
    display: none;
    min-width: 7rem !important;
    transform: translate3d(-140px, 30px, 0px) !important;
    
    .dropdown-item {
      padding: 10px;
      border-bottom: solid 1px #EDEDED;
    }
  }
  
  .header_content-telecom, .header_content-other, .header_content-career {
    height: 250px;
    padding: 30px;
    flex-direction: column;
    justify-content: start;
    
    .header_content-text {
      h1 {
        font-size: 24px;
        font-weight: bold;
      }
      
      h2 {
        font-size: 24px;
        font-weight: bold;
      }
    }
  }
  
  .header_content {
    padding-top: 20px;
    
    .container {
      flex-direction: column;
    }
    
    .header_content-text h1 {
      font-size: 24px;
      font-weight: bold;
    }
    
    .header_content-text h2 {
      font-size: 24px;
      font-weight: bold;
    }
    
    .header_content-text p {
      font-size: 18px;
      margin: 10px 0;
    }
    
    .header_content-text button {
      background: #FFFFFF;
      color: #207CEA;
      font-weight: bold;
      font-size: 14px;
      border: solid 2px #FFD213;
      border-radius: 40px;
    }
    
    .header_content-img {
      margin-top: 10px;
    }
    
    .header_content-img img {
      width: 100%;
    }
  }
  
  .header_content-career {
    .container {
    }
    
    .title {
      font-size: 24px;
    }
    
    .banner {
      height: 600px;
    }
    
    .banner img {
      height: 100%;
      object-fit: cover;
      object-position: top;
    }
    
  }
  
  .platformProvides {
    padding: 20px 0;
  }
  
  .platformProvides .title p {
    font-size: 16px !important;
  }
  
  .platformProvides .title h2 {
    font-weight: bold;
    font-size: 24px;
  }
  
  .platformProvides .title h2 span {
    font-weight: bold;
    font-size: 24px;
  }
  
  .platformProvides .content {
    .col-4 {
      width: 100% !important;
      margin-bottom: 10px;
    }
  }
  
  .platformProvides .content-iSport {
    margin-top: 20px;
    
    .contentRow {
      flex-direction: column;
    }
    
    .contentBox {
    
    }
  }
  
  .platformProvidesCbos {
    padding: 40px 0;
    
    .box-wrapper {
      display: flex;
      align-items: center;
      justify-content: center;
      flex-wrap: wrap;
      
      .box {
        margin-right: 10px;
        margin-bottom: 10px;
        width: 45%;
      }
    }
    
    .content-wrapper {
      flex-direction: column !important;
      
      .text-wrap-isport {
        text-align: center;
      }
      
      .text-wrap i {
        color: #207CEA;
        font-size: 14px;
      }
      
      .img-wrap {
        width: 100%;
        margin: 10px 0;
      }
      
      .img-wrap img {
        width: 100%;
      }
    }
    
    .content-wrapper h5 {
      font-size: 24px;
      font-weight: bold;
    }
    
    .content-wrapper span {
      font-size: 24px;
      font-weight: bold;
    }
    
    .content-wrapper p {
      font-size: 16px;
    }
  }
  
  .platformProvides .rowContact {
    flex-direction: column;
    padding: 10px !important;
  }
  
  .platformProvides .boxContact {
    width: 100%;
    margin: 10px 0;
    padding: 10px;
  }
  
  .platformProvides .rowInfo {
    padding: 40px 20px;
    background: #FFFFFF;
    
    .title {
      text-align: center;
      font-weight: bold;
      font-size: 24px;
    }
    
    .rowBox {
      margin-top: 20px;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-direction: column;
      
      .bt_sendForm {
        width: 100%;
      }
      
      .boxInfo {
        display: flex;
        flex-direction: column;
        width: 100% !important;
      }
      
      .boxInfo input {
        margin-top: 5px;
        height: 44px;
        border-radius: 5px;
        border: solid 1px #CCCCCC;
      }
      
      .boxInfo textarea {
        height: 100px;
        border-radius: 5px;
        border: solid 1px #CCCCCC;
      }
    }
  }
  
  .platformProvidesCbos .title h2 {
    font-weight: bold;
    font-size: 24px;
  }
  
  .platformProvidesCbos .title h2 span {
    font-weight: bold;
    font-size: 24px;
  }
  
  .platformProvidesCbos .title p {
    color: #232323;
    font-size: 16px;
  }
  
  .partnership {
    padding: 20px 0;
  }
  
  .partnership .content_wrap {
    display: flex;
  }
  
  .partnership .content {
    width: 50%;
    flex-direction: column;
    margin: 20px 0;
    
    .partner_image {
      align-items: center;
      width: 100%;
      height: 100px;
    }
  }
  
  .partnership .title {
    flex-direction: column;
    align-items: center;
  }
  
  .partnership .title h2 {
    font-size: 24px;
    margin-bottom: 20px;
  }
  
  .partnership .title h2 span {
    font-size: 24px;
    margin-bottom: 20px;
  }
  
  .questions {
    margin-top: 20px;
    
    .content {
      width: 100%;
    }
  }
  
  
  footer {
    width: 100%;
    height: auto;
    padding: 20px 0;
  }
  
  footer .row {
  }
  
  footer .col-3 {
    width: 100%;
    margin: 10px 0;
  }
  
  footer h5 {
    font-size: 20px;
  }
  
  footer p {
    font-size: 16px;
    margin: 5px 0 !important;
  }
  
  footer i {
    font-size: 14px;
  }
}

.services_wrap {
  padding: 20px;
}

.grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 60px 80px;
  margin-top: 40px;
}

.icon-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  background: #ffffff;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.icon-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.icon-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 180px;
  margin-bottom: 20px;
}

.icon-item img {
  max-width: 160px;
  max-height: 160px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.1));
  transition: transform 0.3s ease;
}

.icon-item:hover img {
  transform: scale(1.05);
}

.icon-title {
  font-size: 18px;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 8px;
  line-height: 1.3;
}

.icon-description {
  font-size: 14px;
  color: #7f8c8d;
  line-height: 1.4;
  max-width: 200px;
}

/* Responsive design */
@media (max-width: 768px) {
  .grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .icon-wrapper {
    min-height: 150px;
    margin-bottom: 15px;
  }
  
  .icon-item img {
    max-width: 140px;
    max-height: 140px;
  }
  
  .icon-title {
    font-size: 16px;
  }
  
  .icon-description {
    font-size: 13px;
  }
  
  .icon-item {
    padding: 15px;
  }
}

@media (max-width: 480px) {
  body {
    padding: 20px 10px;
  }
  
  .grid {
    gap: 25px;
  }
  
  .icon-item img {
    max-width: 120px;
    max-height: 120px;
  }
  
  .icon-title {
    font-size: 15px;
  }
  
  .icon-description {
    font-size: 12px;
  }
  
  .icon-item {
    padding: 12px;
  }
}

/* Loading animation */

.icon-item {
  opacity: 0;
  animation: fadeIn 0.6s ease forwards;
}

.icon-item:nth-child(1) {
  animation-delay: 0.1s;
}

.icon-item:nth-child(2) {
  animation-delay: 0.2s;
}

.icon-item:nth-child(3) {
  animation-delay: 0.3s;
}

.icon-item:nth-child(4) {
  animation-delay: 0.4s;
}

.icon-item:nth-child(5) {
  animation-delay: 0.5s;
}

.icon-item:nth-child(6) {
  animation-delay: 0.6s;
}

.icon-item:nth-child(7) {
  animation-delay: 0.7s;
}

.icon-item:nth-child(8) {
  animation-delay: 0.8s;
}

.icon-item:nth-child(9) {
  animation-delay: 0.9s;
}

.icon-item:nth-child(10) {
  animation-delay: 1.0s;
}

.icon-item:nth-child(11) {
  animation-delay: 1.1s;
}

.icon-item:nth-child(12) {
  animation-delay: 1.2s;
}

.icon-item:nth-child(13) {
  animation-delay: 1.3s;
}

.icon-item:nth-child(14) {
  animation-delay: 1.4s;
}

.icon-item:nth-child(15) {
  animation-delay: 1.5s;
}

.icon-item:nth-child(16) {
  animation-delay: 1.6s;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Hover effect for entire item */

.icon-item:hover .icon-title {
  color: #3498db;
  transition: color 0.3s ease;
}

.icon-item:hover .icon-description {
  color: #5a6c7d;
  transition: color 0.3s ease;
}

.lang-switch {
  display: flex;
  align-items: center;
  background: #eee;
  border-radius: 25px;
  overflow: hidden;
  width: 80px;
  cursor: pointer;
  border: 1px solid #ccc;
}

.lang-switch span {
  flex: 1;
  text-align: center;
  padding: 0;
  transition: background 0.3s, color 0.3s;
}

.active {
  background: #4CAF50;
  color: white;
}

.swiper {
  width: 100%;
  height: 500px;
}

.swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.swiper-slide h1 {
  position: absolute;
  top: 50px;
  left: 50px;
  transform: translate(-50%, -50%);
  z-index: 1000;
  white-space: nowrap;
  width: 100%;
  color: #FFFFFF;
  text-transform: uppercase;
  font-size: 48px;
  font-weight: bold;
  animation: 0.8s 0.8s fadeInUp both
}


.swiper-button-next {
  color: #FFFFFF;
}

.swiper-button-prev {
  color: #FFFFFF;
}