section {
    position: relative;
    width: 100%;
    padding: var(--spacing-xxxl) 0;
}

.license-button {
    padding: var(--spacing-xs) var(--spacing-xxl);
    border: none;
    border-radius: var(--border-m);
    font-size: var(--fsize-xs);
    cursor: pointer;
}

.license-button-blue {
    background-color: var(--color-blue);
}

.license-button-grey {
    background-color: var(--color-grey);
}

.license-banner {
    display: flex;
    justify-content: space-between;
    gap: var(--spacing-xl);
}

.license-banner-content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.license-banner-title {
    font-size: var(--fsize-xl);
    font-weight: var(--fweight-regular);
    text-align: left;
}

.license-banner-subtitle {
    font-size: var(--fsize-m);
    font-weight: var(--fweight-light);
}

.license-banner-list {
    font-weight: var(--fweight-extralight);
    padding: var(--spacing-s) 0 var(--spacing-l) 0;
}

.license-banner-text {
    max-width: 400px;
    text-align: left;
    font-weight: var(--fweight-extralight);
    padding: var(--spacing-s) 0 var(--spacing-l) 0;
}

.license-banner-buttons {
    display: flex;
    gap: var(--spacing-m);
}

.license-banner-image-container {
    position: relative;
    width: 50%;
}

.license-banner-image-container::after {
    content: "";
    display: block;
    padding-bottom: 60%;
}

.license-banner-image-container img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--border-l);
}

.license-steps {
    width: 100%;
}

.license-steps-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr;
    gap: var(--spacing-xxl);
    align-items: center;
    margin-bottom: var(--spacing-l);
}

.license-steps-item svg {
    color: var(--color-lblue);
    height: 28px;
    width: 28px;
    margin-bottom: var(--spacing-xxxs);
}

.license-steps-item-title {
    font-size: var(--fsize-l);
    font-weight: var(--fweight-regular);
    text-align: left;
}

.license-steps-item-text {
    text-align: left;
    font-weight: var(--fweight-extralight);
    padding: var(--spacing-xxs) 0 0 0;
}

.license-steps-arrow {
    filter: invert();
}

.license-steps-arrow img {
    width: 50px;
}

.license-pricing-image-container {
    position: absolute;
    width: 600px;
    left: 40%;
    top: -10%;
}

.license-pricing-image-container::after {
    content: "";
    display: block;
    padding-bottom: 60%;
}

.license-pricing-image {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--border-l);
}

.license-pricing-title {
    font-size: var(--fsize-l);
    font-weight: var(--fweight-regular);
}

.license-pricing-display {
    position: relative;
    z-index: 2;
    background-color: var(--color-grey);
    border-radius: var(--border-l);
    padding: 0 var(--spacing-m);
    margin: var(--spacing-m) 0;
    z-index: 1;
    box-shadow: 4px 4px 10px 3px rgba(0, 0, 0, 0.25);
    width: 450px;
    max-width: 100%;
    box-sizing: border-box;
}

.license-pricing-item {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: var(--spacing-xl);
    padding: var(--spacing-s) 0;
    border-bottom: 1px solid var(--color-lgrey);
}

.license-pricing-item:last-of-type {
    border-bottom: none;
}

.license-pricing-item-name h1 {
    font-size: var(--fsize-s);
    font-weight: var(--fweight-regular);
    margin-bottom: var(--spacing-xxxs);
}

.license-pricing-item-name span {
    font-size: var(--fsize-xxs);
    font-weight: var(--fweight-extralight);
}

.license-pricing-item-price {
    font-size: var(--fsize-xs);
    font-weight: var(--fweight-regular);
    justify-self: end;
}

@media (max-width: 768px) {
    .license-banner-list {
        list-style-position: inside;
    }

    .license-steps-grid {
        grid-template-columns: 1fr;
    }

    .license-steps-arrow img {
        transform: rotate(90deg);
    }
}

@media (max-width: 575.98px) {
    .license-banner {
        flex-direction: column-reverse;
    }

    .license-banner-image-container {
        width: 100%;
        align-self: flex-end;
    }

    .license-pricing-item-price {
        justify-self: end;
    }

    .license-pricing-image-container {
        width: 450px;
        top: 10%;
    }
}
