*{
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
}
body,html{
    width: 100%;
    height: 100%;
}
/*====================== HEADER========================== */
/*====================== HEADER========================== */
/*====================== HEADER========================== */
/*====================== HEADER========================== */
.header{
    width: 100%;
    padding: 0px;
    margin: 0px;
}
#topContact{
    width: 100%;
    height: 5vh;
    padding: 1vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
#topContact li{
    width: 25vh;
    display: flex;
    align-items: center;
}
#topContact a{
    text-decoration: none;
    color: white;
}
#topContact a:hover{
    font-weight: bold;
    font-size: large;
}
/* -------------------------------------- */
.navbar{
    padding: 0px 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.navbar-brand a{
    display: flex;
    align-items: center;
    gap: 5px;
    text-decoration: none;
}
.navbar-brand img{
    border: solid 1px white;
    border-radius: 50%;
    width: 40px;
}
/* =============================================== */
.navbtn{
    margin-top: 8px;
    display: none;
    justify-content: center;
    align-items: end;
}
.navbtn img{
    width: 40px;
    border: 1px solid gray;
    padding: 5px 8px;
    border-radius: 5px;
    /* filter: invert(100%); */
}
.navbtn img:hover{
    background-color: yellow;
    cursor: pointer;
    filter: invert(100%);
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
}
.navlist>.navbtn{
    filter: invert(100%);
}
.navlist>.navbtn img:hover{
    filter: invert(0%);
}
input{
    display: none;
}
/* ================================= */
.navlist{
    display: flex;
    align-items: center;
    margin: 0px;
}
.navlist li{
    list-style: none;
    color: white;
    font-size: large;
    padding: 6px;
    display: flex;
}
.nav-item{
    width: 90px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}
.nav-item a{
    text-decoration: none;
    color: blue;
}
.nav-item:hover{
    background-color: white;
    font-weight: bold;
    transition: 0.1s ease;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    z-index: 1;
}
/* Dropdown container */
/* =================================== */
.dropdown {
    position: relative;
    display: inline-block;
}
.dropbtn {
    background-color: transparent;
    border: none;
}
button:focus{
    outline: none;
}
.dropdown-content {
    display: none;
    position: absolute;
    top: 28px;
    left: -10.4px;
    min-width: 120px;
    background-color: white;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    z-index: 1;
}
.dropdown-content a {
    color: blue;
    padding: 5px 8px;
    text-decoration: none;
    font-weight: normal;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 25%;
}
.dropdown:hover .dropbtn {
    font-weight: bold;
}
.dropdown-content a:hover {
    background-color: blue;
    color: white;
    font-weight: bold;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
}
.dropdown:hover .dropdown-content {
    display: block;
    border: none;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
}
/* ================= Tablets Responsive================ */
/* ======================= Header ==================== */
@media (max-width:900px) and (min-width:599px){
    .navbar-brand img{
        border-radius: 50%;
        width: 40px;
    }
    .navbar-brand h1{
        font-size: 40px;
        padding-top: 5px;
    }
    /* --------------------------------------- */
    .navbtn{
        display: flex;
        justify-content: center;
        align-items: end;
    }
    .navbtn img{
        width: 35px;
        border: 1px solid gray;
        padding: 5px 8px;
        border-radius: 5px;
    }

    input{
        display: none;
    }
    .navlist{
        background-color: rgba(0, 0, 0, 0.875);
        width: 100%;
        height: 100vh;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: start;
        position: fixed;
        padding: 100px 0px 0px 0px;
        top: 0px;
        left: -900px;
        z-index: 5;
    }
    .navlist>.navbtn{
        position: absolute;
        top: 42px;
        right: 10px;
    }
    #click:checked ~ .navlist{
        top: 0px;
        left: 0px;
        width: 100%;
        height: 100vh;
        transition: all 1.1s ease-in-out;
    }

    .nav-item a{
        color: white;
    }
    .nav-item:hover a{
        color: blue;
    }
    .dropdown-content a{
        color: blue;
    }
    .dropdown-content a:hover{
        color: white;
    }
    .dropdown:hover .dropbtn a{
        color: blue;
    }
    
    .dropdown-content {
        display: none;
        position: absolute;
        top: -6px;
        left: 78px;
    }
}
/* ============== Mobile Responsive ======================= */
/*====================== HEADER ========================== */
@media (max-width:600px) and (min-width:425px){
    .navbar-brand img{
        border-radius: 50%;
        width: 30px;
    }
    .navbar-brand h1{
        font-size: 27px;
        padding-top: 5px;
    }
    /* -------------------------------------------*/
    .navbtn{
        display: flex;
        justify-content: center;
        align-items: end;
    }
    .navbtn img{
        width: 35px;
        border: 1px solid gray;
        padding: 5px 8px;
        border-radius: 5px;
    }
    .navlist{
        background-color: rgba(0, 0, 0, 0.875);
        width: 100%;
        height: 100vh;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: start;
        position: fixed;
        padding: 100px 0px 0px 0px;
        top: 0px;
        left: -600px;
        z-index: 5;
    }
    .navlist>.navbtn{
        position: absolute;
        top: 35px;
        right: 10px;
    }
    #click:checked ~ .navlist{
        left: 0px;
        width: 100%;
        height: 100vh;
        transition: all 1.1s ease-in-out;
    }
    .dropdown-content {
        display: none;
        position: absolute;
        top: -6px;
        left: 76px;
    }
    .nav-item a{
        color: white;
    }
    .nav-item:hover a{
        color: blue;
    }
    .dropdown-content a{
        color: blue;
    }
    .dropdown-content a:hover{
        color: white;
    }
    .dropdown:hover .dropbtn a{
        color: blue;
    }
}
/* ================== Small Display======================= */
/*====================== HEADER========================== */
@media (max-width:426px) and (min-width:200px){
    .navbar-brand img{
        border-radius: 50%;
        width: 25px;
    }
    .navbar-brand h1{
        font-size: 20px;
        padding-top: 5px;
    }
    /* ---------------------------------------------- */
    .navbtn{
        display: flex;
        justify-content: center;
        align-items: end;
    }
    .navbtn img{
        width: 30px;
        border: none;
        padding: 5px 8px;
        border-radius: 5px;
    }

    .navlist{
        background-color: rgba(0, 0, 0, 0.875);
        width: 100%;
        height: 100vh;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: start;
        position: fixed;
        padding: 100px 0px 0px 0px;
        top: 0px;
        left: -600px;
        z-index: 5;
    }
    .navlist>.navbtn{
        position: absolute;
        top: 35px;
        right: 10px;
    }
    #click:checked ~ .navlist{
        left: 0px;
        width: 100%;
        height: 100vh;
        transition: all 1.1s ease-in-out;
    }
    .dropdown-content {
        display: none;
        position: absolute;
        top: 32px;
    }
    .nav-item a{
        color: white;
    }
    .nav-item:hover a{
        color: blue;
    }
    .dropdown-content a{
        color: blue;
    }
    .dropdown-content a:hover{
        color: white;
    }
    .dropdown:hover .dropbtn a{
        color: blue;
    }
}
/* ========================= FOOTER ============================ */
/* ========================= FOOTER ============================ */
/* ========================= FOOTER ============================ */
/* ========================= FOOTER ============================ */
.footer{
    width: 100%;
    padding: 0px;
    margin: 0px;
}
/* --------------------- */
.forms{
    background-color: whitesmoke;
    display: flex;
    justify-content: space-between;
    color: white;
}
.form{
    width: 49.9%;
    padding: 20px;
    display: flex;
    background-color: dodgerblue;

}
.form>h3{
    display: flex;
    align-items: center;
    justify-content: center;
    writing-mode: vertical-lr;
    margin: 0px;
}
.form>.row{
    padding: 20px 0px 0px 20px;
}
.btn{
    background-color: black;
    color: white;
}
.btn:hover{
    font-weight: bold;
    width: 70px;
    background-color: white;
    color: red;
    transition: all 4ms ease-in;
}
/* --------------------------------------- */
.footer-top{
    background-color:white;
    display: flex;
    justify-content: space-between;
}
.com-details{
    width: 33.2%;
    background-color: whitesmoke;
    margin-bottom: 2px;
    padding: 20px 20px 20px 20px;
}
.meta-dta br{
    display: none;
}
.social-icon img{
    width: 30px;
}
.links{
    display: flex;
    justify-content: space-evenly;
}
.links ul{
    display: flex;
    flex-direction: column;
    padding: 0px;
    width: 22vh;
}
.links a{
    text-decoration: none;
    padding: 0px 30px;
    color: black;
}
.links a:hover{
    color: red;
    font-weight: bold;
    padding-left: 20px;
    transition: all 0.4s ease;
}
.adress br{
    display: none;
}
/* -------------------------------------------- */
.footer-low{
    height: 10vh;
    background-color: black;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0px 15px;
}
.footer-low h6{
    color: white;
    font-size: small;
}
.footer-low a{
    color: lightblue;
    text-decoration: none;
}
/* ---------- Top Sender --------- */
.toTop{
    display: flex;
    justify-content: end;
    align-items: center;
    position: relative;
    right: -10px;
}
.toTop a{
    text-decoration: none;
    padding-bottom: 2px;
    width: 30px;
    height: 25px;
    color: white;
    background-color: blue;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 5px;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
}
/* ------------------------------ */
/* ================ Tablets Responsive =================== */
/* =================== Footer =========================== */
@media (max-width:860px) and (min-width:600px){
    .footer{
        width: 100%;
    }
    /* --------------------- */
    .forms{
        background-color: whitesmoke;
        display: flex;
        justify-content: space-between;
        color: white;
    }
    .form{
        width: 49.9%;
        padding: 20px;
        display: block;
        background-color: dodgerblue;
    
    }
    .form>h3{
        display: flex;
        align-items: center;
        justify-content: center;
        writing-mode: horizontal-tb;
        margin: 0px;
    }
    .form>.row{
        padding: 20px 0px 0px 0px;
    }
    /* --------------------------------- */
    .footer-top{
        background-color: white;
        display: flex;
        justify-content: space-around;
    }
    .com-details{
        background-color: whitesmoke;
        margin-bottom: 2px;
        padding: 20px 20px 0px 20px;
    }
    .detail{
        width: 35%;
    }
    .meta-dta{
        width: 100%;
        padding-top: 10px;
    }
    .meta-dta br{
        display: none;
    }
    .social-icon img{
        width: 30px;
    }
    .links{
        display: inline-block;
        justify-content: center;
        width: 30%;
        margin-left: 2px;
    }
    .links ul{
        display: flex;
        flex-direction: column;
        padding: 0px;
        width: 22vh;
    }
    .q-link h5{
        display: none;
        margin-top: 0px;
        padding: 0px;
    }
    .adress{
        margin-left: 2px;
        width: 40%;
    }
    .adress br{
        display: none;
    }
}
/* ============== Mobile Responsive ======================= */
/* =================== Footer ============================ */
@media (max-width:599px) and (min-width:415px) {
    .footer{
        width: 100%;
    }
    /* --------------------- */
    .forms{
        background-color: dodgerblue;
        display: inline-block;
        color: white;
    }
    .form{
        width: 100%;
        margin-bottom: 2px;
        padding: 20px;
        display: inline-block;
    }
    .form>h3{
        display: flex;
        align-items: center;
        justify-content: center;
        writing-mode: horizontal-tb;
        margin: 0px;
    }
    .form>.row{
        padding: 20px 0px 0px 0px;
    }
    /* --------------------------------------- */
    .footer-top{
        width: 100%;
        display: inline;
        background-color: aqua;
    }
    .com-details{
        width: 100%;
        padding: 20px 40px;
    }
    .f-logo img{
        width: 40px;
    }
    .meta-dta br{
        display: none;
    }
    .social-icon img{
        width: 25px;
    }
    .links{
        display: flex;
        justify-content: space-around;
    }
    .links ul{
        display: flex;
        flex-direction: column;
        padding: 0px;
        width: 22vh;
    }
    .links a{
        text-decoration: none;
        padding: 0px 30px;
        color: black;
    }
    .links a:hover{
        color: red;
        font-weight: bold;
        padding-left: 20px;
        transition: all 0.4s ease;
    }
/* -------------------------------------------- */
    .footer-low{
        background-color: black;
        display: flex;
        flex-direction: column;
        padding: 10px;
    }
    .footer-low h6{
        color: white;
        font-size: 12px;
    }
}
/* ================= Small Display======================== */
/* ==================== Footer ========================== */
@media (max-width:414px) and (min-width:200px){
    /* --------------------- */
    .forms{
        background-color: dodgerblue;
        display: inline-block;
        color: white;
    }
    .form{
        width: 100%;
        margin-bottom: 2px;
        padding: 20px;
        display: inline-block;
    }
    .form>h3{
        display: flex;
        align-items: center;
        justify-content: center;
        writing-mode: horizontal-tb;
        margin: 0px;
    }
    .form>.row{
        padding: 20px 0px 0px 0px;
    }
    /* --------------------------------------- */
    .footer-top{
        width: 100%;
        display: inline;
        background-color: aqua;
    }
    .com-details{
        width: 100%;
        padding: 20px 20px 20px 20px;
    }
    .f-logo img{
        width: 40px;
    }
    .meta-dta br{
        display: none;
    }
    .links{
        display: flex;
        justify-content: space-between;
    }
    .links ul{
        display: flex;
        flex-direction: column;
        padding: 0px;
        width: 22vh;
    }
    .links a{
        text-decoration: none;
        padding: 0px 30px;
        color: black;
    }
    .links a:hover{
        color: red;
        font-weight: bold;
        padding-left: 20px;
        transition: all 0.4s ease;
    }
/* -------------------------------------------- */
    .footer-low{
        height: 8vh;
        display: flex;
        flex-direction: column;
        padding: 7px;
    }
    .footer-low h6{
        color: white;
        font-size: 10px;
    }
}
