@import url('./base.css');

.cta-btn {
    background-color: #335FF9;
    color: #ffffff;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-size: 1.25rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    max-width: 15rem;
}

.cta-btn .right-arrow {
    display: block;
    background: url('../icons/right-arrow-28px-white.svg') no-repeat center;
    width: 24px;
    height: 18px;
    margin-left: .5rem;
}

.hero-container .left-container {
    width: 50%;
}

.hero-text {
    display: flex;
    flex-direction: column;
    font-size: clamp(4rem, 6vw, 6.5rem);
    line-height: 1.25;
}

.hero-sub-text {
    margin-top: 1rem;
    font-weight: 400;
}

.ribbon-section {
    margin-top: 2.5rem;
    background-color: #335FF9;
}

.hero-image-container {
    position: relative;
    height: 1px;
}

.hero-image {
    position: absolute;
    right: 5vw;
    bottom: 0;
    height: clamp(500px, 50vw, 850px);
}

.ribbon-content {
    padding: 2rem 0;
    color: #ffffff;
    display: flex;
    justify-content: space-between;
}

.ribbon-item {
    width: 30%;
}

.ribbon-link {
    font-size: 2rem;
    font-weight: 600;
    display: flex;
    align-items: center;
}

.ribbon-arrow {
    display: block;
    background: url('../icons/right-arrow-38px-white.svg') no-repeat center;
    width: 38px;
    height: 38px;
    margin-left: 1rem;
}

.ribbon-text {
    font-weight: 400;
    margin-top: 1.5rem;
}

.ribbon-divider {
    width: 1px;
    background-color: #ffffff;
    margin: 1rem 0;
}

.stack-section {
    margin-top: 4rem;
}

.stack-item {
    padding: 5rem 0;
    display: flex;
    justify-content: space-between;
}

.stack-primary,
.stack-secondary {
    width: 45%;
}

.stack-primary {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.stack-header {
    font-size: 4rem;
    font-weight: 700;
    width: 80%;
}

.stack-sub-header {
    font-size: 1.5rem;
    font-weight: 400;
}

.stack-link {
    display: flex;
    align-items: center;
}

.stack-link-text {
    font-size: 1.5rem;
    font-weight: 700;
}

.stack-link-arrow {
    display: block;
    background: url('../icons/right-arrow-28px-black.svg') no-repeat center;
    width: 28px;
    height: 28px;
    margin-left: 1rem;
}

.stack-secondary {
    display: flex;
    justify-content: center;
    align-items: center;
}