:root {
    --primary-dark-blue: #0C1C33;
    --secondary-space-cadet: #142A4A;
    --primary-white: #ffffff;
    --primary-blue: #4C7EFF;
    --alt-light-gray: #ECEDEF;
  }  

html, body {
    background-color: var(--secondary-space-cadet);
    color: var(--primary-white);
    font-family: "Manrope", sans-serif;
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    -webkit-box-sizing: border-box; 
    -moz-box-sizing: border-box;    
    box-sizing: border-box;
}

button {
    cursor: pointer;
    font-family: "Manrope", sans-serif;
}

.body-container {
    padding: 24px;
}

.main-container {
    width: 100%;
    height: 100%;
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border-radius: 24px;
    background: url('./imgs/Grid.svg') no-repeat center center, var(--primary-dark-blue);
    background-size: cover;
    -webkit-box-sizing: border-box; 
    -moz-box-sizing: border-box;    
    box-sizing: border-box;
    overflow: hidden;
    position: relative;
}

.top-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: start;
}

.top-wrapper-left {
    display: flex;
    flex-direction: column;
    gap: 64px;
    padding-left: 24px;
    padding-top: 24px;
}

.logo {
    width: 166px;
    height: 25px;
}

.p-top-description {
    font-size: 16px;
    font-weight: 500;
    color: var(--primary-white);
    opacity: 0.75;
    width: 300px;
}

.p-top-description-bold {
    font-weight: 800;
}

.top-wrapper-right {
    width: 128px;
    height: 128px;
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: end;
    padding: 12px;
    gap: 12px;
    border-radius: 12px;
    background: radial-gradient(ellipse 101.82% 114.05% at 8.20% 104.30%, var(--primary-blue) 40%, var(--primary-dark-blue) 98%);
}   

.h5-top-title {
    font-size: 18px;
    font-weight: 500;
    color: var(--primary-white);
    text-align: left;
    margin: 0;
    padding: 0;
}

.h5-top-title-bold {
    font-weight: 800;
}

.button-top-alt {
    font-size: 14px;
    font-weight: 500;
    color: var(--primary-white);
    background-color: transparent;
    width: 100%;
    padding: 8px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.35);
    box-shadow: none;
    transition: all 0.3s ease-in-out;
}

.button-top-alt:hover {
    background-color: var(--primary-white);
    color: var(--primary-blue);
    font-weight: 800;
}

.bottom-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: end;
    padding: 0 24px 24px 24px;
}

.bottom-wrapper-left {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.bottom-wrapper-left-headings {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.h3-bottom-sub-title {
    font-size: 32px;
    font-weight: 500;
    color: var(--primary-white);
    margin: 0;
    padding: 0;
    opacity: 0;
    transform: translateY(32px);
    animation: fadeIn 0.5s ease-in-out forwards;
}

.h3-bottom-sub-title-bold {
    font-weight: 800;
}

.h1-bottom-title {
    font-size: 128px;
    font-weight: 800;
    color: var(--primary-white);
    margin: 0;
    padding: 0;
    line-height: 1.1;
    opacity: 0;
    transform: translateY(32px);
    animation: fadeIn 0.5s ease-out forwards;
    animation-delay: 0.5s;
}

.h1-bottom-title-blue {
    color: var(--primary-blue);
    opacity: 0;
    transform: translateY(32px);
    animation: fadeIn 0.5s ease-out forwards;
    animation-delay: 1s;
}

.bottom-wrapper-left-description {
    display: flex;
    flex-direction: column;
    width: 355px;
}

.p-description {
    font-size: 16px;
    font-weight: 500;
    color: var(--primary-white);
    margin: 0;
    padding: 0;
    opacity: 0;
    transform: translateY(32px);
    animation: fadeInHalf 0.5s ease-out forwards;
    animation-delay: 1.5s;
}

.p-description-bold {
    font-weight: 800;
}

.bottom-wrapper-right {
    display: flex;
    gap: 12px;
    align-items: end;
    justify-content: end;
    opacity: 0;
    transform: translateY(32px);
    animation: fadeIn 0.5s ease-out forwards;
    animation-delay: 2s;
}

.chip-alt {
    font-size: 16px;
    font-weight: 500;
    color: var(--primary-white);
    border: 1px solid var(--primary-white);
    padding: 12px 32px;
    border-radius: 32px;
    transition: all 0.5s ease-in-out;
}

.chip {
    font-size: 16px;
    font-weight: 500;
    color: var(--primary-dark-blue);
    background-color: var(--primary-white);
    padding: 12px 32px;
    border-radius: 32px;
    transition: all 0.5s ease-in-out;
    border: 1px solid var(--primary-white);
}

.chip-alt:hover {
    background-color: var(--primary-white);
    color: var(--primary-dark-blue);
}

.chip:hover {
    background-color: transparent;
    color: var(--primary-white);
}

.absolute-image {
    position: absolute;
    top: -12%;
    right: 15%;
    height: 95vh;
    pointer-events: none;
}

@keyframes fadeIn{
    to{
      opacity: 1;
      transform: translateY(0);
    }
}

@keyframes fadeInHalf{
    to{
      opacity: 0.75;
      transform: translateY(0);
    }
}

@media (max-width: 1500px) {
    .absolute-image {
        top: -12%;
        right: 5%;
        height: 95vh;
    }
    
}

@media (max-width: 1214px) {
    .absolute-image {
        top: -2%;
        right: 0;
        height: 60vw;
        z-index: 1;
    }

    .top-wrapper {
        z-index: 2;
    }
}

@media (max-width: 1024px) {
    .absolute-image {
        top: 0;
        right: 0;
        height: 60vh;
    }

    .bottom-wrapper-right {
        flex-direction: column;
        gap: 12px;
    }
    
}

@media (max-width: 768px) {

    .body-container {
        padding: 12px;
    }

    .main-container {
        padding: 12px;
    }

    .absolute-image {
        top: 4%;
        right: -4%;
        height: 80vw;
    }

    .top-wrapper-left {
        padding-left: 12px;
        padding-top: 32px;
    }

    .p-top-description {
        display: none;
    }

    .top-wrapper-right {
        width: 89px;
        height: 89px;
        padding: 8px;
        gap: 8px;
    }

    .h5-top-title {
        font-size: 14px;
        line-height: 1.1;
    }

    .button-top-alt {
        font-size: 12px;
        padding: 6px 8px;
    }

    .bottom-wrapper-left {
        gap: 24px;
    }

    .h3-bottom-sub-title {
        font-size: 24px;
    }

    .h1-bottom-title {
        font-size: 84px;
    }

    .p-description {
        font-size: 12px;
    }

    .bottom-wrapper-left-description {
        width: 260px;
    }

    .bottom-wrapper {
        flex-direction: column;
        gap: 24px;
        align-items: start;
        padding: 0 12px 12px 12px;
    }

    .bottom-wrapper-right {
        flex-direction: row;
        gap: 12px;
    }

    .chip-alt {
        font-size: 12px;
        padding: 8px 24px;
    }

    .chip {
        font-size: 12px;
        padding: 8px 24px;
    }

}

@media (max-width: 480px) {
    .absolute-image {
        top: 4%;
        right: -4%;
        height: 85vw;
    }
}

@media (max-width: 390px) {
    .h3-bottom-sub-title {
        font-size: 16px;
    }

    .h1-bottom-title {
        font-size: 64px;
    }
    
}
