* {
    margin: 0;
    padding: 0;

    /* background: red; */
}

html, body {
  height: 100%;
  width: 100%;
  margin: 0;
  padding: 0;
}

body {
  position: relative;
  background: url(../images/ha-lgm.png) no-repeat center top / cover;
  background-color: #0E1397; 
  overflow-x: hidden;
}


body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    rgba(204, 39, 136, 0.8),
    rgba(14, 19, 151, 0.8)
  );
  pointer-events: none; 
  z-index: -1;
}

.header {
    width: 100%;
    height: 76px;
    
    background-color: #0E1397;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    
    padding: 2.5px 15px;
}

nav img {
    width: 200px;
}

.nav-links {
    flex: 1;
    text-align: right;
}

.nav-links ul li {
    list-style: none;
    padding: 0 15px;
    display: inline-block;
    position: relative;
}

.nav-links ul li a {
    font-family: Inter;
    text-decoration: none;
    color: #fff;
    font-size: 20px;
}

.nav-links ul li::after {
    content: '';
    width: 0%;
    height: 3px;
    background: #fff;
    display: block;
    margin: auto;
    
    transition: 0.75s width;
}

.nav-links ul li:hover::after {
    width: 100%;
}

.main-content {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: flex-start;

    gap: 30px;
    margin-left: 50px;
    margin-top: 65px;
}

.main-content img {
    width: 100px;
    height: 100px;

    margin-left: 50px;
    margin-top: 110px;
}

.box {
    display: flex;  
    flex-direction: column;

    width: 770px;
    height: 325px;

    gap: 22.5px;

    color: #fff;
    font-family: "P22UndergroundCYProMedium", sans-serif;
    margin-left: 50px;
}

.box h1 {
    font-size: 50px;
}

.box p {
    font-size: 23px;
    color: rgba(245,245,245,50%);
    letter-spacing: 2px;
}

.card-register {
    display: flex;
    
    width: 505px;
    height: 265.18px;

    background-color: #fff;
    border: 2px solid #fff;
    border-radius: 15px;

    margin-left: 50px;
}

.card-register .text {
    margin-top: 32.5px;
    margin-left: 30px;
}

.card-register img {
    width: 38px;
    height: 38px;

    margin-top: 30px;
    margin-left: 30px;
}

.card-register .text h1 {
    font-size: 30px;
    font-family: Inter;
    font-weight: 600;
}

.card-register .text p {
    width: 90%;
    font-size: 17.5px;
    font-family: Inter;
    margin-top: 15px;
    letter-spacing: 1.25px;
    color: #757575;
}

.card-register .text .button {
    display: flex;

    width: 136px;
    height: 50px;

    background-color: #CC2788;
    border: 1.15px solid #CC2788;
    border-radius: 9px;
    margin-top: 20px;

    align-items: center;
    justify-content: center;

    transition: 0.7s;
}

.card-register .text .button a {
    text-decoration: none;
    font-family: Inter;
    color: #fff;
}

.card-register .text .button:hover {
    background-color: #BA257A;
    cursor: pointer;
}

.card-box {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.card-box .box1, .card-box .box2 {
    display: flex;
    flex-direction: row;
    gap: 50px;
}

.card-box .card {
    display: flex;

    width: 440px;
    height: 350px;

    background-color: #fff;
    border: 1px solid #fff;
    border-radius: 9px;

    /* margin-left: 50px; */
}

.card-box .card .text {
    margin-top: 35px;
    margin-left: 30px;
}

.card-box .card.fcom .text {
    margin-top: 30px;
}

.card-box .card img {
    width: 38px;
    height: 38px;

    margin-top: 30px;
    margin-left: 30px;
}

.card-box .card .text h1 {
    font-size: 22.5px;
    font-family: Inter;
    font-weight: 600;
}

.card-box .card .text p {
    width: 90%;
    font-size: 17.5px;
    font-family: Inter;
    margin-top: 15px;
    letter-spacing: 1.5px;
    line-height: 1;
    color: #757575;
}

.card-box .card.acars .text p {
    margin-top: 30px;
}

.card-box .card.routes .text p {
    margin-top: 30px;
}

.partners-band {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 40px; 
    width: 100%;
    background: #818181;
    padding: 50px 0;
    margin-top: 60px;
}

.partners-band .logo {
    height: auto;
    max-height: 100px;
    object-fit: contain;
    transition: transform 0.2s ease, opacity 0.2s ease;
    margin: 0 auto;
}

.partners-band .logo:hover {
    transform: scale(1.05);
    opacity: 0.9;
}