*,
*::before,
*::after {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

.popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: #000000c0;
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 4000;
}

.popup__container {
    width: 100%;
    max-width: 400px;
}

.popup__card {
    position: relative;
    border: none;
    border-radius: 0px;
    background-color: #ffffff;
    display: none;
    flex-direction: column;
    animation: fadeIn 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

@keyframes fadeIn {
    from {
        transform: translateY(100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.popup__close-button {
    position: absolute;
    top: 25px;
    right: 30px;
    font-size: large;
    font-weight: bold;
    cursor: pointer;
    z-index: 2000;
}

.popup__card-body {
    padding: 5rem 1rem;
    display: flex;
    flex-direction: column;
}

.popup__card-button {
    text-decoration: none;
    padding: 0.5rem 1rem;
    background-color: #10397B;
    color: #ffffff;
}

.popup__card-button:hover {
    color: #ffffff;
}

.popup__img {
    width: 100%;
}

.blog__post {
    padding: 0 5rem;
}

.blog__date>span:first-child {
    font-weight: bold;
}

.blog__date>span:last-child {
    font-weight: bold;
    color: #73738C;
}

.blog__title {
    font-weight: 700;
}

.blog__img {
    border-radius: 10px !important;
    width: 100%;
    height: 600px;
}

.blog__content {
    width: 100%;
    max-width: 1150px;
}

.blog__quotes {
    border-left: 5px solid #10397B;
    padding-left: 1rem;
    margin-bottom: 1rem;
}

.blog__quotes p {
    font-family: 'Roboto', sans-serif;
    font-style: italic;
    font-size: larger;
    color: #73738C;
}

.blog__quotes span {
    font-weight: 700;
}

.blog__image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.blog__image img {
    border-radius: 10px;
    width: 70%;
    height: 350px;
}

@media (max-width: 500px) {
    .blog__post {
        padding: 0;
    }

    .blog__img {
        height: 200px;
    }

    .blog__quotes {
        border-left: 3px solid #7C4EE4;
    }

    .blog__image img {
        width: 100%;
        height: 200px;
    }
}

.popular-post__title {
    font-weight: 700;
}

.popular-post__button {
    text-decoration: none;
    border-radius: 5px;
    padding: 0.7rem 1.5rem;
    background-color: #10397B;
    color: #ffffff;
    font-size: small;
    font-weight: 700;
}

.popular-post__button:hover {
    color: #ffffff;
}

.popular-post__card {
    border: none !important;
}

.popular-post__card-image {
    border-radius: 10px;
    width: 100%;
    height: 300px;
}

.popular-post__date {
    padding-top: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.popular-post__date span {
    font-size: small;
    font-weight: 700;
}

.popular-post__date span:last-child {
    color: #73738C;
}

.popular-post__card-title,
.popular-post__card-text {
    padding: 10px 0;
}

.popular-post__card-expand-text {
    display: none;
}

.popular-post__card-expand-text.expand {
    display: inline;
}

.popular-post__card-button {
    color: #7C4EE4;
    font-weight: 700;
}

.popular-post__card-button:hover {
    color: #7C4EE4;
}

.start {
    position: relative;
    height: 80vh;
    background-color: #10397B;
    display: flex;
    justify-content: center;
    align-items: center;
}

.start__container {
    width: 100%;
    max-width: 700px !important;
}

.start__title {
    color: #ffffff;
    font-weight: 700;
}

.start__title,
.start__text {
    text-align: center;
    padding: 1rem 0;
}

.start__form {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
}

.start__input {
    width: 50%;
    border-radius: 5px;
    padding: 0.5rem 1rem;
    outline: none;
}

.start__button {
    border: 1px solid #ffffff;
    border-radius: 5px;
    padding: 0.5rem 1rem;
    background-color: transparent;
    color: #ffffff;
}

.start__text {
    color: #ffffff;
}

.start__icon1 {
    position: absolute;
    top: -220px;
    left: 0;
    width: 439px;
    height: 378px;
}

.start__icon2 {
    position: absolute;
    bottom: -250px;
    right: 0;
    width: 532px;
    height: 378px;
}

@media (max-width:500px) {
    .start {
        height: 60vh;
    }

    .start__icon1 {
        position: absolute;
        top: -80px;
        left: -180px;
        width: 500px;
        height: 220px;
    }

    .start__icon2 {
        position: absolute;
        bottom: -100px;
        right: -180px;
        width: 500px;
        height: 220px;
    }
}

.hero {
    padding-top: 50px;
}

.hero__container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.hero__title,
.hero__text,
.hero__tag {
    text-align: center;
    color: #10397B;
    font-weight: 700;
}

.hero__form-group {
    border: 1px solid #73738C;
    border-radius: 5px;
    padding: 0rem 1rem;
    width: fit-content;
    display: flex;
    align-items: center;
}

.hero__input {
    border: none;
    padding: 0.3rem 1rem;
    outline: none;
}

@media (max-width:500px) {
    .hero__tag {
        border-radius: 20px;
        padding: 0.5rem 1rem;
        background-color: #F9F5FF;
    }
}

.cards {
    position: relative;
    padding: 4rem 0;
}

.cards__column {
    margin-bottom: 3rem;
}

.cards__card {
    border: none !important;
    border-radius: 0 !important;
    padding: 1rem;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.cards__card>img {
    margin-bottom: 1rem;
}

.cards__card-body small {
    color: #10397B;
    font-weight: 700;
}

.cards__card-title {
    padding-top: 1rem !important;
}

.cards__card-title,
.cards__card-text {
    padding: 0.2rem 0rem;
}

.cards__card-profile {
    display: flex;
    align-items: center;
    gap: 10px;
}

.cards__card-profile img {
    border-radius: 100%;
    width: 40px;
    height: 40px;
    background-color: #10397B;
}

.cards__card-profile div {
    display: flex;
    flex-direction: column;
}

.cards__card-profile div>span:first-child {
    font-weight: 700;
}

.cards__card-profile div>span:last-child {
    color: #73738C;
}

.cards__load-more-button {
    display: flex;
    justify-content: center;
    align-items: center;
}

.cards__button {
    border: none;
    border-radius: 5px;
    padding: 0.5rem 1rem;
    background-color: #ACBBD1;
    color: #10397B;
    font-weight: 700;
}

.cards__button i {
    text-shadow: 0 0 1px #10397B;
}

.cards__bg {
    position: absolute;
    top: 0;
    left: 0;
    z-index: -2;
}

.cards__bg img {
    width: 100%;
    height: 400px;
}

.cards__button-bg {
    display: none;
}

@media (max-width:500px) {
    .cards__bg {
        display: none;
    }

    .cards__bg-mobile {
        position: relative;
        width: 100%;
        height: 200px;
    }

    .cards__load-more-button {
        display: none;
    }

    .cards__button-bg {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 200px;
        background-image: url('../../asset/images/mobile-bg.png');
        background-size: 100% 200px;
        background-repeat: no-repeat;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .cards__button-mobile {
        border: none;
        border-radius: 5px;
        background-color: #FFFBFB;
        padding: 0.5rem 1rem;
        color: #6941C6;
        font-weight: 700;
    }

    .cards__button-mobile i {
        text-shadow: 0 0 1px #10397B;
    }

    .hero__tag {
        border-radius: 20px;
        padding: 0.5rem 1rem;
        background-color: #F9F5FF;
    }
}