.landing-bg {
    /* background-color: #F8F9F9; */
}

.pupt-title {
    color: #ffffff;
    font-size: 20px;
}

/* .landing-navbar {
    background-color: #7B241C;
} */

body {
    overflow-x: hidden;
  }

.text-shadow {
    color: #ffffff;
    text-shadow: 6px 4px 8px rgba(0, 0, 0, 0.78);
}

#navbar, #navbar-title {
    transition: .5s ease-in-out;
}

.container-greetings {
    padding-top: 100px;
    padding-bottom: 30px;
    padding-left: 30px;
    padding-right: 30px;
    color: #ffffff;
}

.welcome-title {
    font-size: 40px;
    font-weight: 600;
}

.button-learn-more {
    border: none;
    background: #7B241C;
    color: #ffffff;
    padding: 10px 25px;
    border-radius: 5px;
    font-size: 18px;
    transition: 0.5s ease-in-out;
}

.button-learn-more:hover {
    /* transform: scale(1.1); */
    background: #ffffff;
    color: #7B241C;
    font-weight: bold;
}

.icon-socials {
    color: #ffffff;
    text-decoration: none;
    padding: 15px;
}

.icon-socials:hover {
    color: #7B241C;
}

.img-features {
    height: 210px;
    width: 100%;
    overflow: hidden;
    border-bottom: 1px solid #D5D8DC;
}

.card-content {
    height: 200px;
    overflow: hidden;
}

.card-text-title {
    font-size: 30px;
    font-weight: 500;
}

footer {
    margin-top: 100px;
}

.footer-icon-links {
    font-size: 36px;
}

.footer-landing {
    background: #EAECEE;
}

/* Login and Registration */

.auth-navbar {
    background-color: #7B241C;
    color: #ffffff;
    padding: 0;
    margin: 0;
}

.auth-login-button {
    background: #ffffff;
    text-decoration: none;
    color: #7B241C;
    padding: 6px;
    width: 100px;
    text-align: center;
    transition: all 0.3s ease-in-out;
    border-radius: 5px;
    font-size: 14px;
}

.auth-login-button:hover {
    transform: scale(1.1);
    background: #ffffff;
    color: #7B241C;
    border-radius: 5px;
    font-weight: bold;
    box-shadow: rgba(0, 0, 0, 0.25) 0px 14px 28px, rgba(0, 0, 0, 0.22) 0px 10px 10px;
}

.card-login {
    background: #ffffff;
    padding: 15px 0px;
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
}

.card-login-title {
    background: #7B241C;
    color: #ffffff;
    padding: 15px;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
}

@media only screen and (max-width: 1200px) {
    .login-box-border {
        border-radius: 8px;
    }
}

@media only screen and (min-width: 1200px) {
    .login-box-border {
        border-top-right-radius: 7px;
        border-bottom-right-radius: 7px;
    }
}

.landing-banner {
    background: #7B241C;
    color: #ffffff;
    padding-top: 10px;
    padding-bottom: 5px;
    padding-left: 15px;
    padding-right: 15px;
}


/* Features Card */
.features-card {
    position: relative;
}

.features-header {
    width: 100%;
    overflow: hidden;
    transition: .3s ease-in-out;
    height: 280px;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    border-radius: 5px;
}

.features-img {
    width: 100%;
    transition: .3s ease-in-out;
    height: 100%;
}

.features-card:hover .features-img {
    transform: scale(1.3);
    filter: blur(2px);
}

.features-card:hover .features-header {
    filter: brightness(.3);
}

.features-body {
    position: absolute;
    bottom: 0;
    margin: 0 20px;
    z-index: 0;
    opacity: 0;
    transition: .7s ease-in-out;
}

.features-title, .features-p {
    color: #ffffff;
}

.features-card:hover .features-body{
    opacity: 1;
    bottom: 0;
    color: #ffffff;
}

/* Careers CSS Display */

@keyframes slideInFromLeft {
    0% {
      transform: translateX(-100%);
    }
    100% {
      transform: translateX(0);
    }
  }

.container-career {
    width:100%;
    background-color: #832d25;
}

.career-card {
    position: relative;
    background-color: #f5f5f5;
    border-radius: 5px;
}
.career-header {
    width: 100%;
    overflow: hidden;
    transition: .3s ease-in-out;
    height: 280px;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    border-radius: 5px;
}

.career-title {
    color:#ffffff;
}

.c {
    width: 100%;
    overflow: hidden;
    animation: 1s ease-out 0s 1 slideInFromLeft;
    background-color: rgb(247, 247, 247);
    height: 280px;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    border-radius: 5px;
}

.hr-white {
    background-color: #ffffff;
    color:rgb(255, 255, 255);
    width:100%;
    border-width: 6px;
}