*{
    padding: 0;
    }
    .navbar{
        box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 6px -1px, rgba(0, 0, 0, 0.06) 0px 2px 4px -1px;
        background-color: rgba(170, 101, 101, 0.726)!important;
        color: white;
    }

    .navbar ul li{
        list-style: none;
        display: inline-block;
        text-decoration: none;
        color: white;
        position: relative;
    }
    .navbar ul li::after{
        content: '';
        height: 3px;
        width: 0;
        background-color: white;
        position: absolute;
        left: 0;
        bottom: -.25px;
        transition: .5s;
    }
    .navbar ul li:hover::after{
        width: 100%;
    }

    ul{
        margin-left: 10%;
    }
    .heading{
        text-align: center;
        margin-top: 120px;
    }
    body{
        margin-bottom: 0;
        padding: 0;
        min-height: 100%;
    }
    .contact{
        display: flex;
        column-gap: 100px;
        font-size: x-large;
        margin-left: 80px;
        margin-right: 80px;
        padding: 30px;
    }
    .map{
        text-align: center;
    }
    .location{
        border-radius: 10px;
        background: #0c5844;
        color: White;
        width: 40%;
    }
    .location a {
                    text-decoration: none;
                    color: White;
                }
    .call{
        border-radius: 10px;
        background: #0c5844;
        color: White;
        width: 40%;
        text-align: center;
    }
    .call a {
                    text-decoration: none;
                    color: White;
                }
    .email{
        border-radius: 10px;
        background: #0c5844;
        color: White;
        width: 40%;
        text-align: center;
    }
    
     .email a {
                    text-decoration: none;
                    color: White;
                }
                
    .copyrights{
        display: flex;
        column-gap: 2%;
        background-color: rgba(173, 123, 123, 0.959);
        color: white;
    }
    .footer{
        background-color: rgba(170, 101, 101, 0.521);
        text-align: center;
        line-height: 10px;
        padding: 10px;
    }

    .preloader{
        background: rgba(255, 255, 255, 0.63);
        background-size: 20%;
        height: 100vh;
        width: 100%;
        position: fixed;
        z-index: 1100;
        transition: opacity 2s, visibility 2s;
    }
    .preloader-hidden{
        opacity: 0;
         visibility: hidden;
    }
    .preloader::after{
        content: "";
        width: 75px;
        height: 75px;
        border-radius: 15px;
        animation: loading 2s ease infinite;
    }
    @keyframes loading {
        from{
            transform: rotate(0turn);
        }
        to{
            transform: rotate(1turn);
        }
    }
