@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Noto+Sans+JP:wght@100..900&family=Noto+Sans:ital,wght@0,100..900;1,100..900&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  padding: 0 0 20px;
  font-family: "Noto Sans", sans-serif;
}

.banner {
  position: relative;
  color: #fff;
}

.banner .banner_img {
  width: 100%;
  /* border-radius: 50px; */
  background-image: url('../images/70918fb24c99f45645f6742d6bd74e6d7dab6788.jpg');
  height: 440px;
  background-position: center;
}

@media screen and (min-width: 1200px) {
  body {
    padding: 20px 0;
  }

  .banner {
    padding: 0 15px;
  }

  .banner .banner_img {
    display: block;
    height: 691px;
    border-radius: 40px;
    background-attachment: fixed;
  }

}

.main-header {
  padding: 0 15px;
}

.main-header {
  height: 120px;
  position: absolute;
  inset: 0px;
}

#header-top.active {
  background-color: #fff;
}


#header-top.active .navbar {
  /* background: #00071a; */
}

.scroll_icon {
  position: absolute;
  width: 64px;
  height: 64px;
  bottom: -32px;
  left: 50%;
  transform: translateX(-50%);
}

@media screen and (min-width:1200px) {
  .scroll_icon {
    width: 104px;
    height: 104px;
      bottom: -52px;
  }
}


.navbar {
  border-radius: 50px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: fixed;
  padding: 8px 24px;
  width: calc(100vw - 30px);
  left: 50%;
  right: 0;
  transform: translateX(-50%);
  z-index: 99;
}

.logo img {
  display: none;
}

@media screen and (min-width:1200px) {
  .navbar {
    padding: 0 120px;
    height: 80px;
    background-color: #00071A80;
  }

  #bar {
    display: none;
  }

  .navbar {
    border-radius: 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    padding: 15px 24px;
    /* width: inherit; */
    /* left: 15px; */
    /* right: 15px; */
    z-index: 99;
  }

  .logo img {
    display: block;
  }
}

@media screen and (min-width:1200px) {
  .navbar {
    padding: 11.25px 120px;
  }

  #bar {
    display: none;
  }
}

@media screen and (min-width: 991px) {
  .navbar .logo {
    display: block;
  }
}


@media screen and (max-width: 1199px) {
  .nav-links {
    display: none;
    gap: 20px;
    flex-direction: column;
    width: 65%;
    height: 100vh;
    position: absolute;
    top: 0;
    right: -15px;
    background-color: rgb(255 255 255);
    padding: 36px 22px 0;
  }

  .nav-links.show+.shadown {
    content: "";
    position: absolute;
    top: -20px;
    right: -15px;
    width: 100vw;
    height: 100vh;
    background-color: rgba(43, 43, 43, 0.502);
    z-index: -1;
  }
}

@media screen and (min-width: 1200px) {
  .nav-links {
    display: flex;
    list-style: none;
    gap: 25px;
    transition: all 0.3s ease;
    align-items: center;
    padding: 0;
  }
}

.nav-links li {
  position: relative;
  display: block;
  padding: 10px;
  width: 100%;
}

@media screen and (min-width: 1200px) {
  .nav-links li {
    width: unset;
  }
}

@media screen and (max-width: 1199px) {
  .nav-links li:not(:last-child) {
    margin-bottom: 8px;
  }
}

.nav-links a {
  color: #5C636B;
  text-decoration: none;
  font-weight: 300;
  padding: 3px 8px;
  border-radius: 6px;
  transition: all 0.3s ease;
}

@media screen and (min-width: 1200px) {
  .nav-links a {
    color: white;
    font-weight: 300;
    font-size: 1.06vw;
    padding: 8px 15px;
  }

  .nav-links a:hover {
    background: rgba(255, 255, 255, 0.1);
    /* transform: translateY(-2px); */
  }
}

.nav-links a.active {
  position: relative;
  font-weight: 700;
  color: #00071A;
  display: block;
}

.nav-links a.active::after {
  content: "";
  position: absolute;
  width: 100%;
  top: 100%;
  left: 0;
  height: 2px;
  background-color: rgba(14, 168, 218, 1);
}

@media screen and (max-width: 1199px) {
  .nav-links .nav-close {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
}

@media screen and (min-width: 1200px) {
  .nav-links a.active {
    display: inline-block;
    color: #FFFFFF;
  }

  .nav-links a.active::after {
    content: "";
    position: absolute;
    width: 80%;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    height: 2px;
    background-color: rgba(14, 168, 218, 1);
  }

  .nav-links .nav-close {
    display: none;
  }
}

.nav-close a {
  flex: 1;
}

/*  */

.hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #fff;
}

.hero-image {
  position: absolute;
  width: 104px;
  height: 104px;
  bottom: -52px;
  left: 50%;
  transform: translateX(-50%);
}

.strength-section {
  display: grid;
  gap: 8px;
  grid-template-columns: 1fr;
  max-width: 100%;
  margin: 40px 0;
  padding: 0 20px 30px;
}

@media screen and (min-width:992px) {
  .strength-section {
    display: grid;
    gap: 20px;
    grid-template-columns: 1fr 1fr;
    max-width: 1200px;
    margin: 92px auto 80px;
  }

}

.card {
  background-color: rgba(0, 7, 26, 1);
  border-radius: 16px;
  color: #fff;
  padding: 16px;
  display: flex;
  align-items: center;
  gap: 20px;
}

.card div:first-child {
  flex-basis: 44px;
}

@media screen and (min-width: 1200px) {
  .card {
    padding: 85.5px 60px;
  }

  .card div:first-child {
    flex-basis: 65px;
  }
}

.card div:last-child {
  flex: 1;
}

.card div:last-child p {
  padding-top: 8px;
}

.card div img {
  width: 44px !important;
  height: 44px;
  display: block;
}

@media screen and (min-width:1200px) {
  .card div img {
    width: 64px !important;
    height: 64px;
    display: block;
  }

}


.bl {
  position: absolute;
  bottom: -52px;
  left: 50%;
  transform: translateX(-50%);
}

.title_banner {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -45%);
  color: #fff;
  text-align: center;
  width: 80%;
}

.title_banner h1 {
  font-size: 44px;
  font-weight: 600;
  line-height: 1.2;
}

.title_banner div {
  font-size: 21px;
  font-weight: 700;
  line-height: 1.5;
}

@media screen and (min-width: 992px) {
  .title_banner {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -45%);
    color: #fff;
  }

  .title_banner h1 {
    font-size: 64px;
  }

  .title_banner div {
    font-size: 24px;
  }
}

@media screen and (max-width: 1199px) {
    .navbar {
        flex-direction: row-reverse;
    }
}