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

body {
  font-family: "Roboto", sans-serif;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

li {
  list-style: none;
}

a {
  text-decoration: none;
}

.container {
  width: 1280px;
  margin: 0 auto;
}

.btn-shkr {
  outline: none;
  border: unset;
  color: #fff;
  background: #0455c0;
  padding: 8px 20px;
  border-radius: 10px;
  cursor: pointer;
  transition: 0.5s ease-in-out;

  font-size: 16px;
  font-weight: 400;
  list-style: 150%;
}

.btn-shkr a {
  color: #fff;
}

.btn-shkr:hover {
  box-shadow: 0 2px 16px #ffffff47;
}

.btn-bordered-active {
  min-width: 96px;
  height: 46px;
  border: 1px solid #fff;
  color: #fff;
  background: unset;
  border-radius: 15px;
  outline: none;
  cursor: pointer;
  padding: 0 10px;
}
.btn-bordered-active a {
  color: #fff;
}

.btn-bordered-inactive {
  min-width: 96px;
  height: 46px;
  color: #fff;
  background: unset;
  border-radius: 15px;
  outline: none;
  border: none;
  cursor: pointer;

  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 10px;
}

.btn-bordered-inactive a {
  color: #fff;
}

.btn-bordered-inactive:hover {
  border: 1px solid #fff;
}

/* start header */
.header {
  background: #080d14;
  position: sticky;
  top: 0;
  z-index: 9999;
}

.header__wrapper {
  height: 72px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header__menu .header__menu-list {
  display: flex;
  gap: 30px;
  align-items: center;
}

.header__menu-item {
  font-size: 16px;
  font-weight: 400;
  line-height: 150%;
  letter-spacing: 0;
  transition: 0.5s ease-in-out;
  padding: 12px;
  border-radius: 10px;
  border: 1px solid #080d14;
  cursor: pointer;
}

.header__menu-item:hover {
  border: 1px solid #fff;
}

.header__menu-item a {
  color: #fff;
}

/* end header */
/* start banner */
.banner {
  width: 100%;
  background: #080d14;
  min-height: 200vh;
  z-index: 2;
  position: relative;
}

.banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("./assets/images/banner-fn.svg");
  background-repeat: no-repeat;
  background-size: 100%;
  background-position-x: 10%;
  background-position-y: 0;
  z-index: 1;
  opacity: 0.1;
}

.banner::after {
  content: "";
  position: absolute;
  top: -32px;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("./assets/images/banner-container.png");
  background-repeat: no-repeat;
  background-size: 100%;
  background-position-x: 10%;
  background-position-y: 412px;
  z-index: 1;
  opacity: 0.9;
}

.banner-wrapper {
  padding-top: 120px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 24px;
  z-index: 3;
}

.banner-wrapper h1 {
  font-weight: 700;
  font-size: 56px;
  line-height: 120%;
  color: #fff;
  text-align: center;
  max-width: 768px;
  z-index: 3;
}

.banner-wrapper p {
  font-size: 18px;
  font-weight: 400;
  line-height: 150%;
  text-align: center;
  color: #fff;
  max-width: 768px;
  z-index: 3;
}

.banner-wrapper .btn-shkr {
  width: 146px;
  z-index: 3;
  height: 56px;
}

.banner-wrapper-action {
  position: absolute;
  bottom: 50px;
  left: 50%;
  transform: translate(-50%, 0);

  width: 172px;
  height: 172px;
  background: #fcfcfc7b;
  border-radius: 50%;

  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2;
}

.banner-wrapper-action1 {
  width: 136px;
  height: 136px;
  background: #fff;
  border-radius: 50%;

  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.banner-wrapper-action1 img {
  width: 75px;
  height: 40px;
  object-fit: cover;
}

/* end banner */

/* start explore */
.explore {
  width: 100%;
  background: #080d14;
}

.explore-wrapper {
  padding: 0 0 50px 0;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.explore-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 80px;
}

.explore-header h2 {
  width: 50%;
  font-size: 22px;
  font-weight: 700;
  line-height: 120%;
  color: #fff;
}

.explore-header p {
  width: 50%;
  font-size: 18px;
  font-weight: 400;
  line-height: 150%;
  color: #fff;
}

.explore-cards {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.explore-card {
  width: 400px;
  max-height: 344px;
  background: #fff;
  padding: 8px;
  border-radius: 10px;
  display: flex;
  align-items: flex-start;
  gap: 26px;
  flex-direction: column;
  transition: 0.5s background ease-in-out;
  position: relative;
  z-index: 10;
}

.explore-card::before {
  width: 100%;
  height: 100%;
  position: absolute;
  content: "";
  right: 0;
  top: 0;
  background-image: url("./assets/images/card-bg.svg");
  background-repeat: no-repeat;
  background-size: 100%;
  background-position-x: right;
  z-index: 2;
  opacity: 0.1;
  pointer-events: none;
}

.explore-card a {
  background-color: unset;
  background: none;
  border: none;
  outline: unset;
  cursor: pointer;
  color: #000;
  font-size: 16px;
  font-weight: 400;
  line-height: 150%;
  text-align: left;
  display: flex;
  align-items: center;
  gap: 10px;
  position: relative;
  z-index: 20;
  text-decoration: none;
}

.explore-card h3 {
  font-size: 24px;
  font-weight: 700;
  line-height: 140%;
  color: #000;
}

.explore-card p {
  font-size: 16px;
  font-weight: 400;
  line-height: 150%;
  color: #000;
}
.explore-card:hover {
  background: #0455c0;
  color: #fff !important;
  cursor: pointer;
}

.explore-card:hover a {
  color: #fff !important;
}

.explore-card:hover h3 {
  color: #fff !important;
}

.explore-card:hover p {
  color: #fff !important;
}
.explore-card svg {
  width: 50px;
  height: 50px;
}
.explore-card svg path {
  stroke: #000 !important;
}

.explore-card:hover svg path {
  stroke: #fff !important;
}
/* end explore */

/* start tagline */
.tagline {
  width: 100%;
  background: #080d14;
  position: relative;
}

.tagline::before {
  content: "";
  position: absolute;
  bottom: -50px;
  left: 20%;
  width: 160px;
  height: 160px;
  background-image: url("./assets/images/star.svg");
  background-repeat: no-repeat;
  background-size: 100%;
  background-position-x: 10%;
  background-position-y: 0;
  z-index: 1;
  filter: drop-shadow(0 0 46px white);
}

.tagline-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 80px 0;
}

.tagline-left {
  display: flex;
  gap: 24px;
  flex-direction: column;
}

.tagline-left span {
  font-size: 16px;
  font-weight: 600;
  line-height: 150%;
  color: #fff;
}

.tagline-left h3 {
  font-size: 48px;
  font-weight: 700;
  line-height: 120%;
  color: #fff;
}
.tagline-left p {
  font-size: 18px;
  font-weight: 800;
  line-height: 150%;
  color: #fff;
}
.tagline-left ul {
  display: flex;
  gap: 24px;
  flex-direction: column;
}

.tagline-left ul li {
  display: flex;
  gap: 10px;
}

.tagline-left ul li p {
  font-size: 16px;
  font-weight: 400;
  line-height: 150%;
  color: #fff;
}

.toglle-action {
  display: flex;
  gap: 16px;
}

.tagline-right img {
  border-radius: 10px;
}

/* end tagline */
/* start excellence */
.excellence {
  width: 100%;
  background: #080d14;
  padding: 180px 0 80px 0;
}

.excellence-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.excellence-left {
  display: flex;
  gap: 24px;
  flex-direction: column;
  width: 50%;
}

.excellence-left span {
  font-size: 16px;
  font-weight: 600;
  line-height: 150%;
  color: #fff;
}

.excellence-left h3 {
  font-size: 48px;
  font-weight: 700;
  line-height: 120%;
  color: #fff;
}

.excellence-right {
  width: 50%;
}

.excellence-right p {
  font-size: 18px;
  font-weight: 400;
  line-height: 150%;
  color: #fff;
}

.excellence-right-action {
  padding-top: 24px;
  display: flex;
}
.excellence-right-action a:nth-child(1) {
  padding-right: 24px;
  padding: 12px 16px;
  color: #fff;
  border: 1px solid #fff;
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
}

.excellence-right-action a:nth-child(2) {
  padding: 12px 16px;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 10px;
}
/* end excellence */
/* start connect */
.connect {
  width: 100%;
  background: #080d14;
  padding: 80px 0;
}

.connect-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.connect-left {
  display: flex;
  gap: 24px;
  flex-direction: column;
  width: 65%;
}

.connect-left span {
  font-size: 16px;
  font-weight: 600;
  line-height: 150%;
  color: #fff;
}

.connect-left h3 {
  font-size: 48px;
  font-weight: 700;
  line-height: 120%;
  color: #fff;
}

.connect-left p {
  font-size: 18px;
  font-weight: 400;
  line-height: 150%;
  color: #fff;
}

.connect-right {
  width: 35%;
}

.connect-right ul {
  display: flex;
  gap: 24px;
  flex-direction: column;
}

.connect-right ul li {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.connect-right-item {
  display: flex;
  gap: 10px;
  flex-direction: column;
}

.connect-right-item h4 {
  font-size: 16px;
  font-weight: 600;
  line-height: 150%;
  color: #fff;
}

.connect-right-item p {
  font-size: 16px;
  font-weight: 400;
  line-height: 150%;
  color: #fff;
}

/* end connect */

/* start prefooter   */
.prefooter {
  width: 100%;
  background: #080d14;
  padding: 100px 0;
}

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

.prefooter-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}

/* end prefooter */

/* start footer */
.footer {
  background-color: #080d14;
  color: #ffffff;
  padding: 80px 0 32px 0;
  position: relative;
  z-index: 1;
}

.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("./assets/images/banner-fn.svg");
  background-repeat: no-repeat;
  background-size: 100%;
  background-position-x: -50%;
  background-position-y: 25%;
  z-index: 1;
  opacity: 0.1;
}

.footer-wrapper {
  display: flex;
  justify-content: space-between;
  gap: 64px;
  margin-bottom: 64px;
  z-index: 3;
  user-select: text;
}

.footer-left {
  flex: 1;
  z-index: 3;
}

.footer-logo {
  margin-bottom: 32px;
}

.footer-logo img {
  height: 40px;
}

.footer-info {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.footer-address h4,
.footer-contact h4 {
  font-weight: 500;
  margin-bottom: 8px;
}

.footer-address p,
.footer-contact a {
  color: #ffffff;
  text-decoration: none;
  display: block;
  margin-bottom: 4px;
}

.footer-contact a:hover {
  text-decoration: underline;
}

.footer-social {
  display: flex;
  gap: 16px;
  margin-top: 24px;
}

.footer-social a {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-social img {
  width: 20px;
  height: 20px;
}

.footer-right {
  flex: 1;
  z-index: 3;
}

.footer-links {
  display: flex;
  gap: 64px;
}

.footer-links-column {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-links-column a {
  color: #ffffff;
  text-decoration: none;
  font-weight: 400;
  cursor: pointer;
  transition: 0.3s ease;
}

.footer-links-column a:hover {
  text-decoration: underline;
  opacity: 0.8;
}

.footer-bottom {
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 3;
}

.footer-bottom p {
  color: #ffffff;
}

.footer-bottom-links {
  display: flex;
  gap: 24px;
}

.footer-bottom-links a {
  color: #ffffff;
  text-decoration: none;
}

.footer-bottom-links a:hover {
  text-decoration: underline;
}

@media (max-width: 1920px) {
  .banner-wrapper-action  {
    bottom: 12%;
  } 
.banner::after {
    top: -34px;
  }
}

@media (max-width: 1440px) {
  .banner-wrapper-action  {
    bottom: 16%;
  } 
  .banner::after {
    top: -34px;
  }
}

@media (max-width: 768px) {
  .footer-wrapper {
    flex-direction: column;
    gap: 48px;
  }

  .footer-links {
    gap: 32px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 24px;
    text-align: center;
  }

  .footer-bottom-links {
    flex-direction: column;
    gap: 16px;
  }
}
/* end footer */

/* start media */
@media (max-width: 1080px) {
  .container {
    width: 100%;
  }

  .header__wrapper {
    padding: 0 16px;
  }

  .banner {
    min-height: 150vh;
  }

  .banner::after {
    top: -34px;
  }

  .banner-wrapper-action {
    bottom: 9%;
  }
  .explore-wrapper {
    padding: 0 0 24px 0;
  }

  .explore-header {
    flex-direction: column;
    padding: 0 16px;
  }
  .explore-header h2 {
    width: 100%;
    margin-bottom: 16px;
    font-size: 24px;
  }

  .explore-header p {
    width: 100%;
    font-size: 16px;
  }

  .explore-cards {
    flex-direction: column;
    gap: 16px;
    padding: 0 16px;
  }

  .explore-card {
    width: 100%;
  }

  .tagline::before {
    bottom: -10%;
  }

  .tagline-wrapper {
    padding: 16px;
    flex-direction: column;
  }

  .tagline-right {
    margin-top: 16px;
    width: 100%;
  }
  .tagline-right img {
    width: 100%;
  }

  .excellence {
    padding: 80px 0;
  }

  .excellence-wrapper {
    flex-direction: column;
    padding: 0 16px;
  }
  .excellence-left {
    width: 100%;
  }

  .excellence-right {
    width: 100%;
  }

  .connect {
    padding: 16px 0;
  }
  .connect-wrapper {
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 0 16px;
  }
  .connect-left {
    width: 100%;
    margin-bottom: 24px;
  }
  .connect-right {
    width: 100%;
  }
  .prefooter {
    padding: 16px 0;
  }
  .prefooter-wrapper {
    padding: 0 16px;
  }
  .footer-wrapper {
    flex-direction: column;
    padding: 0 16px;
  }
  .footer-bottom {
    flex-direction: column;
    padding: 0 16px;
  }
  .footer-bottom p {
    margin: 16px 0;
  }
}

@media (max-width: 768px) {
  .container {
    width: 100%;
  }

  .header__menu {
    display: none;
  }

  .banner {
    min-height: 120vh;
  }

  .banner::after {
    top: -34px;
  }

  .banner-wrapper-action {
    bottom: 2%;
  }

  .banner-wrapper p {
    font-size: 14px;
  }

  .tagline::before {
    bottom: -12%;
  }

  .tagline-left h3 {
    font-size: 28px;
  }

  .tagline-left p {
    font-size: 16px;
  }
  .tagline-left ul li img {
    width: 24px;
    margin-right: 12px;
  }
  .tagline-left ul li p {
    font-size: 14px;
  }
  .excellence-left h3 {
    font-size: 28px;
  }
  .excellence-right p {
    font-size: 16px;
  }
  .connect-left h3 {
    font-size: 28px;
  }
}

@media (max-width: 480px) {
  .container {
    width: 100%;
  }

  .header__menu {
    display: none;
  }

  .banner-wrapper h1 {
    font-size: 28px;
  }

  .banner {
    min-height: 85vh;
  }

  .banner::after {
    top: -105px;
  }

  .banner-wrapper-action {
    bottom: 10%;
  }

  .banner-wrapper-action {
    width: 80px;
    height: 80px;
  }

  .banner-wrapper-action1 {
    width: 60px;
    height: 60px;
  }

  .banner-wrapper-action1 img {
    width: 30px;
    height: 15px;
    object-fit: cover;
  }

  .tagline::before {
    bottom: -16%;
  }

  .tagline-left h3 {
    font-size: 28px;
  }

  .tagline-left p {
    font-size: 16px;
  }
  .tagline-left ul li img {
    width: 24px;
    margin-right: 12px;
  }
  .tagline-left ul li p {
    font-size: 14px;
  }

  .header__logo img {
    width: 130px;
  }
}

@media (max-width: 375px) {
  .container {
    width: 100%;
  }

  .header__menu {
    display: none;
  }

  .banner {
    min-height: 85vh;
  }

  .banner-wrapper-action {
    bottom: 15%;
  }

  .tagline::before {
    bottom: -16%;
  }

  .tagline-left h3 {
    font-size: 28px;
  }

  .tagline-left p {
    font-size: 16px;
  }
  .tagline-left ul li img {
    width: 24px;
    margin-right: 12px;
  }
  .tagline-left ul li p {
    font-size: 14px;
  }

  .header__logo img {
    width: 135px;
  }
}
/* end media */
