/* You can add global styles to this file, and also import other style files */
* {
    box-sizing: border-box;
}
h1, h2, h3, h4, h5, h6, p {
    margin: 0;
    padding: 0;
}
input:focus, select:focus, button:focus, textarea:focus {
    outline: none;
}
a:hover, a:focus {
    text-decoration: none;
    outline: none;
}
ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}
/* End Global Style */
.submit-button {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 10px;
}
.submit-button button {
    background-color: #f24e54;
    color: #fff;
    border: 1px solid #f24e54;
    cursor: pointer;
    padding: 13px 20px;
    font-weight: bold;
    font-size: 14px;
    text-transform: capitalize;
    border-radius: 4px 0 0 4px;
    transition: all 0.4s;
}
.submit-button .icon {
    background-color: #ee363c;
    color: #fff;
    border: 1px solid #f24e54;
    cursor: pointer;
    padding: 13px 15px;
    font-weight: bold;
    font-size: 14px;
    border-radius: 0 4px 4px 0;
}
.active-link {
    color: #53c0ff !important;
}
.cursor-pointer {
    cursor: pointer;
}

a{
    color: #fff;
}

a:hover{
    color: #fff;
}

/* main nav header */

.contact-us-header {
    position: relative;
    height: 35vh;
}
.contact-us-header .back-ground-img {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-position: bottom;
    background-repeat: no-repeat;
    background-size: cover;
    background-image: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.5)), url(/assets/img/contact-us/bg2.png);
}
.contact-us-header .bred-crub-section {
    display: flex;
    justify-content: space-between;
    color: #fff;
}
.contact-us-header .bred-crub-section .page-title {
    font-size: 25px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: capitalize;
}
.contact-us-header .bred-crub-section .bred-crub p {
    font-size: 17px;
    font-weight: 600;
    letter-spacing: 1px;
}

@media(max-width:576px){
    .contact-us-header {
        height: 45vh !important;
    }
}
