/* pagecover */
.page-cover {
    min-height: 100vmin;
    overflow: hidden;
    position: relative;
    padding-top: 5%;
    background-size: cover;
    background-repeat: no-repeat;
    width: 100%;
    min-width: 100%;
    z-index: 0;
    background-image: radial-gradient(circle at 46% 76%, rgba(255, 255, 255, 0.03) 0px, rgba(255, 255, 255, 0.03) 3%, transparent 3%, transparent 100%), radial-gradient(circle at 36% 87%, rgba(255, 255, 255, 0.02) 0px, rgba(255, 255, 255, 0.02) 3%, transparent 3%, transparent 100%), radial-gradient(circle at 50% 78%, rgba(255, 255, 255, 0.01) 0px, rgba(255, 255, 255, 0.01) 3%, transparent 3%, transparent 100%), radial-gradient(circle at 22% 99%, rgba(255, 255, 255, 0.03) 0px, rgba(255, 255, 255, 0.03) 7%, transparent 7%, transparent 100%), radial-gradient(circle at 38% 63%, rgba(255, 255, 255, 0.02) 0px, rgba(255, 255, 255, 0.02) 7%, transparent 7%, transparent 100%), radial-gradient(circle at 55% 50%, rgba(255, 255, 255, 0.02) 0px, rgba(255, 255, 255, 0.02) 7%, transparent 7%, transparent 100%), radial-gradient(circle at 93% 55%, rgba(255, 255, 255, 0.01) 0px, rgba(255, 255, 255, 0.01) 7%, transparent 7%, transparent 100%), radial-gradient(circle at 24% 100%, rgba(255, 255, 255, 0.01) 0px, rgba(255, 255, 255, 0.01) 7%, transparent 7%, transparent 100%), radial-gradient(circle at 26% 53%, rgba(255, 255, 255, 0.03) 0px, rgba(255, 255, 255, 0.03) 5%, transparent 5%, transparent 100%), radial-gradient(circle at 17% 5%, rgba(255, 255, 255, 0.03) 0px, rgba(255, 255, 255, 0.03) 5%, transparent 5%, transparent 100%), radial-gradient(circle at 53% 51%, rgba(255, 255, 255, 0.02) 0px, rgba(255, 255, 255, 0.02) 5%, transparent 5%, transparent 100%), radial-gradient(circle at 10% 25%, rgba(255, 255, 255, 0.02) 0px, rgba(255, 255, 255, 0.02) 5%, transparent 5%, transparent 100%), radial-gradient(circle at 31% 56%, rgba(255, 255, 255, 0.01) 0px, rgba(255, 255, 255, 0.01) 5%, transparent 5%, transparent 100%), radial-gradient(circle at 40% 69%, rgba(255, 255, 255, 0.02) 0px, rgba(255, 255, 255, 0.02) 5%, transparent 5%, transparent 100%), radial-gradient(circle at 33% 89%, rgba(255, 255, 255, 0.02) 0px, rgba(255, 255, 255, 0.02) 5%, transparent 5%, transparent 100%), radial-gradient(circle at 96% 22%, rgba(255, 255, 255, 0.03) 0px, rgba(255, 255, 255, 0.03) 5%, transparent 5%, transparent 100%), linear-gradient(296deg, var(--background-color), color-mix(in srgb, var(--background-color) 90%, white 10%));
    background-position: 50% 50%;
}

@media all and (min-width:1100px) {
    .page-cover {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(50%, 1fr));
    }
}

@media all and (max-width : 1100px) {
    .page-cover {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
}



.page-cover .left-box {
    padding: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    p {
        margin-left: 30px;
    }
}

.page-cover .right-box {
    display: grid;
    place-content: center;
    place-items: center;
}

@media all and (max-width : 425px) {
    .service-form {
        width: 80%;
    }

    .service-title {
        font-size: 1rem;
    }
}

.service-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-width: 350px;
    background-color: #fff;
    padding: 20px;
    border-radius: 20px;
    position: relative;


    .service-title {
        font-size: 1.8rem;
        color: royalblue;
        font-weight: 600;
        letter-spacing: -1px;
        position: relative;
        display: flex;
        align-items: center;
        padding-left: 30px;
    }

    .service-title::before,
    .service-title::after {
        position: absolute;
        content: "";
        height: 16px;
        width: 16px;
        border-radius: 50%;
        left: 0px;
        background-color: royalblue;
    }
}

@media all and (min-width:425px) {
    .service-form {
        animation: anim 3s infinite;
    }

    .service-title {
        font-size: 1.8rem;
    }

    @keyframes anim {
        0% {
            transform: translateY(0) scale(1.04) rotate(-1deg);
        }

        50% {
            transform: translateY(-20px) scale(1) rotate(0deg);
        }

        100% {
            transform: translateY(0) scale(1.04) rotate(-1deg);
        }
    }
}



.service-title::before {
    width: 18px;
    height: 18px;
    background-color: royalblue;
}

.service-title::after {
    width: 18px;
    height: 18px;
    animation: pulse 1s linear infinite;
}

@keyframes pulse {
    from {
        transform: scale(0.9);
        opacity: 1;
    }

    to {
        transform: scale(1.8);
        opacity: 0;
    }
}


.service-form label {
    position: relative;
}

.service-form label .input {
    width: 100%;
    padding: 10px 10px 20px 10px;
    outline: 0;
    border: 1px solid rgba(105, 105, 105, 0.397);
    border-radius: 10px;
}

.service-form label .input+span {
    position: absolute;
    left: 10px;
    top: 15px;
    color: grey;
    font-size: 0.9em;
    cursor: text;
    transition: 0.3s ease;
}

.service-form label .input:placeholder-shown+span {
    top: 15px;
    font-size: 0.9em;
}

.service-form label .input:focus+span,
.service-form label .input:valid+span {
    top: 30px;
    font-size: 0.7em;
    font-weight: 600;
}

.service-form label .input:valid+span {
    color: green;
}

.service-form .submit {
    border: none;
    outline: none;
    background-color: royalblue;
    padding: 10px;
    border-radius: 10px;
    color: #fff;
    font-size: 16px;
    transform: .3s ease;
}

.service-form .submit:hover {
    background-color: rgb(56, 90, 194);
}



/* 
breadcrumbs */
.breadcrumb-container {
    min-width: 100%;

}

.breadcrumb {
    display: flex;
    border-radius: 10px;
    width: 100%;
    height: 40px;
    z-index: 1;
    justify-content: flex-start;
}


.breadcrumb-item {
    height: 100%;
    font-family: 'Oswald', sans-serif;
    border-radius: 7px;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    text-transform: capitalize;
    position: relative;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    font-size: 16px;
    transform: skew(-21deg);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.26);
    margin: 5px;
    padding: 0 40px;
    cursor: pointer;
}


.breadcrumb-item:is(:hover, :focus) {
    background-color: var(--primary_blue);
    color: #FFF;
}


.breadcrumb-inner {
    display: flex;
    flex-direction: column;
    margin: auto;
    z-index: 2;
    transform: skew(21deg);
}

.breadcrumb-title {
    font-size: 16px;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
}


@media all and (max-width: 1000px) {
    .breadcrumb {
        height: 35px;
    }

    .breadcrumb-title {
        font-size: 11px;
    }

    .breadcrumb-item {
        padding: 0 30px;
    }
}

@media all and (max-width: 710px) {
    .breadcrumb {
        height: 30px;
    }

    .breadcrumb-item {
        padding: 0 20px;
    }

}

/* 
information center */
.information-center {
    z-index: 10;
    width: 90%;
    max-width: 75rem;
    margin-left: auto;
    margin-right: auto;
}

.information-center-wrapper {
    justify-content: space-between;
    align-items: flex-start;
    width: 100%;
    display: flex;
    position: relative;

}

.content-navigation {

    width: 100%;
    max-width: 17rem;
    height: calc(98vh - 7.5rem);
    position: sticky;
    top: 7.5rem;
    overflow: auto;
}

@media screen and (max-width: 991px) {
    .content-navigation {
        width: 100%;
        height: auto;
        margin-bottom: 20px;
        margin-left: 0;
        padding: 0;
        display: none;
        position: static;
    }
}

.registration-content-section {
    grid-column-gap: .5rem;
    grid-row-gap: .5rem;
    margin-bottom: 6rem;
}

.content-navigation-wrapper {
    width: 100%;
    height: 100%;
}

.navigation-container {
    grid-column-gap: .625rem;
    grid-row-gap: .625rem;
    flex-direction: column;
    align-items: stretch;
    display: flex;
}

.navigation-title {
    color: #5269a4;
    font-size: .8rem;
    font-weight: 700;
    line-height: 1.5;
}

.navigation-link {
    color: var(--primary_blue);
    padding-top: .625rem;
    padding-bottom: .625rem;
    padding-right: .5rem;
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    line-height: 1.5;
}

.navigation-link.active {
    color: var(--accent-color);
    font-weight: bold;
}

.document-section {
    position: relative;
}

.document-section::after {
    content: "";
    width: 100%;
    height: 2px;
    position: absolute;
    background-color: var(--primary_blue);
    opacity: 0.4;
    /* left: 10%; */
    bottom: -10px;
}

.document-section:last-child::after {
    content: "";
    border: none;
    height: 0;
    width: 0;
    background-color: transparent;
}


.content-container {
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
    border-left: .0625rem solid #cdd4e4;
    flex-direction: column;
    align-items: flex-start;
    max-width: 70%;
    margin-right: auto;
    padding-left: 2.5rem;
    display: flex;
}

@media screen and (max-width: 991px) {
    .content-container {
        border-left-style: none;
        max-width: 100%;
        padding-top: 0;
        padding-left: 0;
    }
}

.button-primary {
    color: white;
    border-radius: 15px;
    background-color: var(--primary_blue);
}

.button-primary:hover {
    color: white;
    background-color: var(--blue-hover);
}

.bd-placeholder-img {
    font-size: 1.125rem;
    text-anchor: middle;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
}

@media (min-width: 768px) {
    .bd-placeholder-img-lg {
        font-size: 3.5rem;
    }
}
@media screen and (max-width: 480px) and (max-width: 992px) {
  #one {
    transform: translateX(50px);
    width: 275px;
  }
}

@media screen and (max-width: 992px) {
  #one {
    transform: translateX(50px);
    width: 800px;
  }
}