@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
a, a:focus, a:hover {
    color: #fff;
}
/* Custom default button */
.btn-secondary, .btn-secondary:hover, .btn-secondary:focus {
    color: #343434;
    text-shadow: none; /* Prevent inheritance from `body` */
    background-color: #fff;
    border: .05rem solid #fff;
}
html, body {
    height: 100%;
    background-color: #FFF6EB;
}
body {
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
    -ms-flex-pack: center;
    -webkit-box-pack: center;
    justify-content: center;
    color: #343434;
    font-family: "Montserrat", serif;
}
.cover-container {
    max-width: 42em;
}
/*
 * Header
 */
.masthead {
    margin-bottom: 2rem;
}
.masthead-brand {
    margin-bottom: 0;
}
.nav-masthead .nav-link {
    padding: .25rem 0;
    font-weight: 700;
    color: rgba(255, 255, 255, .5);
    background-color: transparent;
    border-bottom: .25rem solid transparent;
}
.nav-masthead .nav-link:hover, .nav-masthead .nav-link:focus {
    border-bottom-color: rgba(255, 255, 255, .25);
}
.nav-masthead .nav-link + .nav-link {
    margin-left: 1rem;
}
.nav-masthead .active {
    color: #fff;
    border-bottom-color: #fff;
}
.cover-heading {
    font-weight: 600;
}
.lead-txt {
    font-weight: 500;
    margin: 30px 0 0;
    font-size: 17px;
}
.lead-field {
    width: 320px;
    padding: 0 20px;
    font-size: 14px;
    height: 50px;
    color: #343434;
    font-weight: 500;
    outline: none;
    border:1px solid #ced4da;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
    transition: 0.2s linear;
    font-family: "Montserrat", serif;
    margin: 10px auto;
}
.lead-field:focus {
    background: none;
}
.browse-text {
    background: linear-gradient(to right, #45B76D 0%, #EDB61D 50%, #E81850 100%) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent;
    font-weight: 500;
    text-decoration: none;
    position: relative;
    display: inline-block; /* Ensure proper positioning */
    font-size: 16px;
}

.browse-text::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    height: 2px;
    width: 100%;
    background: linear-gradient(to right, #45B76D 0%, #EDB61D 50%, #E81850 100%);
}
@media (min-width: 48em) {
    .masthead-brand {
        float: left;
    }
    .nav-masthead {
        float: right;
    }
}
@media (max-width: 700px) {
    .cover-heading {
        font-size: 35px;
    }
}
@media (max-width: 423px) {
    .cover-heading {
        font-size: 30px;
    }
    .lead-field {
        width: 100%;
    }
}
/*
 * Cover
 */
.cover {
    padding: 0 1.5rem;
}
.cover .btn-lg {
    background: #E81850;
    border: 0px;
    color: #ffffff;
    font-weight: 600;
    font-size: 15px;
    padding: 14px 35px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
    margin-top: 20px;
    transition: 0.3s;
}
/*
 * Footer
 */
.mastfoot {
    color: rgba(255, 255, 255, .5);
}