@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;500;600&display=swap');
@import url('./footer.css');
@import url('./sidebar.css');
@import url('./header.css');
* {
    margin: 0;
    padding: 0;
    outline:none;
    border: none;
    box-sizing: border-box;
    font-style: normal;
    user-select: none !important;
    -ms-user-select: none !important;
    -moz-user-select: none !important;
}
html {
    scroll-behavior: smooth;
    width: 100%;
}

:root {
    --white:#FFFFFF;
    --red:#e61601;
    --blue: #1c1475;
    --orange:#FFCC00;
    --light-white:#f0f0f0;
    --grey:	#696969;
    --light-grey:#E8E8E8;
    --black:#000000;
    --always-black:#000000;
    --green: #0f853c;
    --tag-color: #1c1475;
}


a {
    text-decoration: none;
    color: currentColor;
}

button {
    background-color: transparent;
}

.desktop-hide {
    display: none !important;
}

body {
    width: 100%;
    margin: 0;
    padding: 0;
    /* overflow-y: scroll; */
    overflow-x: hidden;
    height: 100%;
    font-family:'Poppins', sans-serif;
    background-color: var(--always-black);
    user-select: none !important;
    -ms-user-select: none !important;
    -moz-user-select: none !important;
}






.addthis_inline_share_toolbox {
    margin: 10px 0;
}







main {
    width: 100%;
    height:auto;
    display: grid;
    grid-template-columns: 1fr ;
    gap: 20px;
    padding: 0 100px 10px;
    margin-top: 92px;
    background-color: var(--white);
}

main section {
    margin-top: 50px;
}

main .contact-container {
    display: grid;
    place-items: center;
    width: 500px;
    margin: auto;
    height: auto;
    /* background-color: #a39b9b; */
    border: 1px solid grey;
    padding: 20px;
    margin-top: 50px;
    color: black;
}
.section-title {
    width: 100%;
    margin-bottom: 16px;
}
.contact-container .section-title {
    text-align: center;
}
section form label {
    font-weight: 580;
}

section form input {
    width: 100%;
    padding: 10px;
    background-color: var(--light-grey);
    color: var(--black);
    margin-bottom: 10px;
    font-size: 16px;
}

section form textarea {
    width: 100%;
    height: 150px;
    padding: 10px;
    background-color: var(--light-grey);
    color: var(--black);
    margin-bottom: 10px;
    font-size: 16px;
}

section form button {
    width: 100%;
    padding: 10px;
    background-color: var(--orange);
    color: var(--black);
    font-weight: 700;
    font-size: 18px;
    cursor: pointer;
    border-radius: 6px;
    margin-bottom: 20px;
}


/* ============================  RESPONSIVE DESIGN ==================================*/
@media (min-width:768px) and (max-width:992px) { 

    html {
        width: 100%;
    }

    main {
        padding: 0 20px 10px;
    }
}


@media only screen and (max-width:768px) {
    body {
        overflow-x: hidden !important;
    }

    .mobile-hide {
        display: none !important;
    }

    .mobile-d-flex {
        display: flex !important;
    }

    main .contact-container {
        display: grid;
        place-items: center;
        width: 500px;
        margin: auto;
        height: auto;
        /* background-color: #a39b9b; */
        border: 1px solid grey;
        padding: 20px;
        margin-top: 50px;
        color: black;
    }
}



@media only screen and (max-width:600px) {
    
    main {
        padding: 0 10px;
        margin-top: 50px;
    }

    main .contact-container {
        width: 100%;
        place-items: start;
        margin: 0;
        border: none;
        padding: 20px;
        margin-top: 10px;
    }
}