html {
  -ms-overflow-style: none;
  /* Internet Explorer 10+ */
  scrollbar-width: none;
  /* Firefox */
}

html::-webkit-scrollbar {
  display: none;
  /* Safari and Chrome */
}

body {
  font-family: "Zen Kaku Gothic Antique", sans-serif !important;
}
/* Background */

/* Header */

.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 80px;
  position: fixed;
  top: 0;
  background: #ffffff;
  width: 100%;
  box-shadow: 0px 4px 40px #e6e6e6;
}

.header .overview__logo {
  display: flex;
  align-items: center;
  margin-left: 48px;
  color: #3a3b7b;
  font-weight: bold;
}

.header .overview__logo img {
  width: 32px;
  height: auto;
}

.header .overview__logo span {
  font-family: "Lilita One", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 24px;
}

.header ul {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-right: 48px;
}

.header ul li a {
  color: #4a5568;
  text-decoration: none;
  outline: none;
  font-weight: 700;
}

.header ul li .flag img {
  width: 32px;
  height: auto;
}

.overview {
  height: calc(100vh - 120px);
  background: #ffffff;
}

.overview__content {
  display: flex;
  height: calc(100% - 80px);
  align-items: center;
  margin: 80px 7% 0px 7%;
}

.overview__content__left {}

.overview__content__left p:first-child {
  color: #1a202c;
  font-size: 45px;
  font-weight: 900;
  margin-bottom: 12px;
  user-select: none;
}

.overview__content__left p:first-child span {
  background: linear-gradient(to right, #f76680, #57007b);
  background-clip: text;
  color: transparent;
}

.overview__content__left p:nth-child(2) {
  color: #1a202c;
  font-weight: bold;
  font-size: 53px;
  margin-bottom: 12px;
  user-select: none;
}

.overview__content__left p:nth-child(3) {
  color: #4a5568;
  font-size: 18px;
  font-weight: 400;
  line-height: 116%;
  margin-bottom: 12px;
  user-select: none;
}

.overview__content__left p:nth-child(4) {
  color: #4a5568;
  font-size: 18px;
  font-weight: 400;
  line-height: 116%;
  user-select: none;
}

.overview__content__right {
  display: flex;
  align-items: center;
  justify-content: center;
}

.overview__content__right img {
  width: 90%;
  height: auto;
}

/* Our Tech Stack */
.our-tech-stack {
  padding: 68px 0px;
}

.our-tech-stack .container {
  text-align: center;
}

.title {
  display: inline-block;
  color: #1a202c;
  font-size: 35px;
  font-weight: bold;
  margin-bottom: 30px;
  border-top-width: 4px;
  border-image: linear-gradient(to right, #f76680 0%, #57007b 100%) 1;
  border-radius: 5px;
  border-style: solid;
  padding: 10px;
}

.our-tech-stack .tabcontent {
  display: none;
  padding: 6px 12px;
  border-top: none;
}

.our-tech-stack .tab {
  margin-bottom: 32px;
}

.tablinks {
  color: #1a202c;
  border: none;
  background: none;
}

.active {
  background: linear-gradient(to right, #f76680, #57007b);
  background-clip: text;
  color: transparent;
  font-weight: bold;
}

/* Services */
.services {
  background: #f9f9ff;
  padding: 68px 0px;
}

.services .container {
  flex-direction: column;
  display: flex;
  align-items: center;
  justify-content: center;
}

.services .services__content {
  display: flex;
  max-width: 900px;
  gap: 24px;
}

.services .services__item {
  background: #FFFF;
  padding: 36px 16px;
  border: 1px solid #57007B;
  border-radius: 8px;
}

.services .services__item .services__item-logo {
  display: inline-block;
  border-width: 1px;
  border-style: solid;
  border-radius: 50%;
  margin-bottom: 16px;
  padding: 8px;
}

.services .services__item .services__item-logo img {
  width: 42px;
  height: auto;
}

.services .services__item h4 {
  color: #2D3748;
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 16px;
  line-height: 116%;
}

.services .services__item p {
  color: #718096;
  font-size: 14px;
  line-height: 116%;
}

/* footer */
footer p {
  border-top: 1px solid #cbd5e0;
  color: #cbd5e0;
  text-align: center;
  padding: 12px;
  font-size: 14px;
}