@import url('https://fonts.googleapis.com/css?family=Bitter:400i&display=swap');
@import url('https://fonts.googleapis.com/css?family=Roboto:500,900&display=swap');

body,
html {
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
}

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

#web-navbar {
    background-color: #1f2133;
    padding: 0 50px;
}

.navbar-brand label {
    font-weight: bold;
    font-family: 'Bitter', serif;
    font-size: 35px;
    cursor: pointer;
}

nav ul li a {
    font-size: 21px;
    font-weight: 800;
    font-family: 'Roboto', sans-serif;
    color: white !important;
    margin-right: 8px;
}

li.active a {
    color: #FFD271 !important;
}

.dropdown-menu {
    background-color: rgba(0, 0, 0, 0.418) !important;
}

.dropdown-item:hover {
    background-color: transparent !important;
}

nav ul li a:hover {
    text-decoration: none !important;
    color: #FFD271 !important;
}

nav button.navbar-toggler:focus,
nav button.navbar-toggler:active {
    outline: none !important;
}

.web-header {
    background-image: url(img/Ask-Us.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    width: 100%;
    height: auto;
    overflow: hidden;
    padding-bottom: 10px;
}

.header-container {
    z-index: 1;
    height: auto;
    width: 100%;
    background-color: rgba(24, 24, 24, 0.281);
    padding-top: 130px;
}

header h1 {
    font-family: 'Roboto', sans-serif;
    color: white;
    font-size: 40px;
    font-weight: bold;
}

span {
    color: #FFD271;
}

form label {
    color: #FFD271;
    font-family: 'Roboto', sans-serif;
}

form i {
    font-size: 14px;
}

form textarea {
    border-radius: 5px;
    width: 100%;
}

form input,
form textarea {
    font-family: 'Roboto', sans-serif;
}

form input:focus,
button:focus,
textarea:focus {
    outline: none !important;
    text-decoration: none;
}

form button {
    background-color: transparent !important;
    color: #FFD271 !important;
    border: 2px solid #FFD271 !important;
    border-radius: 5px;
    padding: 15px 35px;
    font-family: 'Roboto', sans-serif;
    font-size: 20px;
    width: 50%;
}

form button:hover {
    background-color: #FFD271 !important;
    color: black !important;
    box-shadow: 0 0 50px #FFD271 !important;
    -webkit-box-reflect: below 1px linear-gradient(transparent, rgba(0, 0, 0, 0.13));
    transition: 0.1s;
    text-decoration: none;
}

.button-col {
    margin-left: 33%;
}

.web-footer {
    background-color: #F67280;
    height: auto;
    overflow: hidden;
    padding: 50px;
}

.footer-logo {
    padding-top: 25px;
    border-right: 1px solid white;
}

.footer-content {
    border-right: 1px solid white;
}

footer h1 {
    font-family: 'Bitter', serif;
    font-size: 35px;
    font-weight: bold;
    color: white;
}

footer h3 {
    font-family: 'Roboto', sans-serif;
    font-size: 20px;
    color: white;
    font-weight: bold;
}

footer p {
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    color: white;
}

::-webkit-scrollbar {
    background: #ddd;
    width: 14px;
}

::-webkit-scrollbar-track {
    box-shadow: inset 0 0 10px #00000070;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(125deg, black, #FFD271);
}

::-webkit-scrollbar-button {
    background-color: #dfa529;
}

*::selection {
    background: rgb(221, 215, 215);
}

@media (max-width: 991px) {
    .web-footer {
        padding: 20px 50px;
    }

    .footer-logo {
        padding-top: 25px;
        border-right: none;
        border-bottom: 1px solid white;
        margin-bottom: 20px;
    }

    .footer-content {
        border-right: none;
        border-bottom: 1px solid white;
        margin-bottom: 20px;
    }

    footer h1 {
        text-align: center;
    }

    footer h3 {
        text-align: center;
    }

    footer p {
        text-align: center;
    }
}

@media (max-width: 700px) {
    #web-navbar {
        padding: 0 20px;
    }

    .navbar-brand label {
        font-size: 30px;
    }

    .header-container {
        padding-top: 85px;
    }

    header h1 {
        font-size: 32px;
    }

    .button-col {
        margin-left: 0;
        text-align: center;
    }

    footer h1 {
        font-size: 30px;
    }

    footer h3 {
        font-size: 17px;
    }

    footer p {
        font-size: 13px;
    }
}