/* Please see documentation at https://docs.microsoft.com/aspnet/core/client-side/bundling-and-minification
for details on configuring this project to bundle and minify static web assets. */

* {
    font-family: "Calibri";
}

*::-webkit-scrollbar {
    width: 8px;
    height: 8px;
    background-color: #FAFAFA;
}

*::-webkit-scrollbar-track {
    background-color: #FAFAFA;
    -webkit-box-shadow: inset 1px 0px 0px #E8E8E8, inset -1px 0px 0px #F0F0F0;
}

*::-webkit-scrollbar-thumb {
    border-radius: 4px;
    background-color: #C1C1C1;
}

*::-webkit-scrollbar-corner {
    width: 14px;
    height: 14px;
    background: #E7E7E7;
}

body {
    font-family: 'Calibri';
    font-style: normal;
}

header {
    height: 150px;
}

header .logo {
    width: 100%;
    height: 70px;
    position: absolute;
    left: 0px;
    top: 0px;
    padding: 20px 30px;
    background: #FFFFFF;
}

header .line {
    position: absolute;
    width: 100%;
    height: 80px;
    left: 0px;
    top: 70px;
    background: #33ACE6;
}

#Contact_Us_Div {
    background: #FFFFFF;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 70px 0;
}

#Contact_Us_Div .header {
    display: flex;
    justify-content: center;
    align-items: center;
}

#Contact_Us_Div .header h1 {
    margin-bottom: 20px;
    font-style: normal;
    font-weight: 300;
    font-size: 48px;
    line-height: 59px;
    text-transform: capitalize;
    color: #0097E0;
}

#Contact_Us_Div .header img {
    width: 15px;
    height: 15px;
    cursor: pointer;
    position: absolute;
    right: 0px;
    top: 0px;
}

#Contact_Us_Div .body {
    width: 1000px;
}

.dropdown {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding: 10px 20px;
    gap: 10px;
    width: 100%;
    height: 57px;
    background: #54C3F1;
    border-radius: 5px;
    font-weight: 700;
    font-size: 30px;
    line-height: 37px;
    text-transform: capitalize;
    color: #FFFFFF;
    fill: #FFFFFF;
}

.Contact-zone .title h3 {
    width: 100%;
    margin-bottom: 20px;
    font-weight: 700;
    font-size: 30px;
    line-height: 37px;
    display: flex;
    align-items: center;
    text-transform: capitalize;
    color: #54C3F1;
}

.Contact-zone .body p {
    width: 100%;
    margin-bottom: 20px;
    font-weight: 700;
    font-size: 22px;
    line-height: 27px;
    display: flex;
    align-items: center;
    color: #000000;
}

.Contact-zone .contact {
    margin-bottom: 30px;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
}

.Contact-zone .contact .btn {
    padding: 8px 16px;
    gap: 6px;
    box-sizing: border-box;
    border: 1px solid #54C3F1;
    border-radius: 5px;
    font-weight: 700;
    font-size: 16px;
    line-height: 20px;
    color: #54C3F1;
    display: flex;
    align-items: center;
    text-align: center;
    background: none;
}

footer {
    width: 100%;
    height: 50px;
    padding: 11px 40px;
    position: relative;
    left: 0;
    right: 2.78%;
    bottom: 0;
    background-color: #54C3F1;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

@media screen and (max-width: 1700px) {
    header {
        height: 120px;
    }

    header .logo {
        height: 55px;
        padding: 15px 20px;
    }

    header .line {
        height: 65px;
        top: 55px;
    }

    #Contact_Us_Div {
        margin: 55px 0;
    }

    #Contact_Us_Div .header h1 {
        font-size: 42px;
    }

    #Contact_Us_Div .body {
        width: 900px;
    }

    .dropdown {
        height: 47px;
        margin-bottom: 20px;
        font-size: 24px;
    }

    .Contact-zone .title h3 {
        font-size: 24px;
        margin-bottom: 15px;
    }

    .Contact-zone .body p {
        font-size: 16px;
        margin-bottom: 15px;
    }

    .Contact-zone .contact {
        margin-bottom: 20px;
    }

    .Contact-zone .contact .btn {
        font-size: 14px;
    }
}