* {
    box-sizing: border-box;
}

.contact-form {
    margin-bottom: 100px;
}

.LogoContainer {
    display: flex;
    justify-content: center;
    margin-bottom: 50px;
}

.text_description {
    text-align: center;
    font-size: medium;
}

.paragraph_container {
    overflow: hidden;
    height: 60px;
}

.paragraph_container_expand {
    height: fit-content !important;
}

.read_more_button {
    color: rgb(40, 40, 255);
    font-weight: bold;
    text-align: center;
    cursor: pointer;
}
.read_more_button:hover {
    text-decoration: underline;
}

.col-md-12 {
    margin-top: 30px;
}

.notification_bar {
    display: flex;
    position: fixed;
    z-index: 10;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 120px;
    bottom: 0;
    left: 0;
    transition: 0.5s;
    transform: translateY(110px);
}

.notification_bar > div {
    padding: 15px 25px;
    border-radius: 100px;
    color: white;
    box-shadow: rgba(0, 0, 0, 0.25) 0px 54px 55px, rgba(0, 0, 0, 0.12) 0px -12px 30px, rgba(0, 0, 0, 0.12) 0px 4px 6px, rgba(0, 0, 0, 0.17) 0px 12px 13px, rgba(0, 0, 0, 0.09) 0px -3px 5px;
}

.successBacgroundColor {
    background-color: #35BD26;
}

.failBacgroundColor {
    background-color: #D44A3C;
}

.showNotification {
    transform: none;
}