header {
    position: sticky;
    top: 0;
    z-index: 9998;
}


.upperheader {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    background-color: #d1a127;
    height: 6vh;
    overflow-x: hidden;
}

.upperheadercontact {
    margin-left: 8vw;
}

.upperheader a {
    color: #000;
    text-decoration: none;
    margin-right: 20px;
}

.upperheader i {
    margin-right: 20px;
}

.icons {
    display: flex;
}

.icons a {
    margin-right: 4px;
}

nav {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    background-color: white;
}

.navlink ul {
    display: flex;
    list-style: none;
}

.navlink ul li {
    margin-right: 30px;
}

.navlink ul li a {
    text-decoration: none;
    position: relative;
    color: rgb(0, 0, 0);
}

#click {
    display: none;
}

.menubtn i {
    color: rgb(0, 0, 0);
    font-size: 24px;
    cursor: pointer;
    display: none;
    margin-left: 100px;
    margin-right: 30px;
}

nav ul li a::before {
    content: "";
    position: absolute;
    height: 0.1em;
    width: 0;
    background: rgb(248, 182, 13);
    background-size: 200% 100%;
    bottom: -0.2em;
    transition: 0.4s;
}

nav ul li a:hover::before {
    background-position: 100% 0;
    width: 100%;
}

.logo a img {
    width: 60%;
}

/* HAMBURGER MENUBAR */


@media (max-width:940px) {
    .navlink ul {
        position: fixed;
        top: 0;
        left: -100%;
        background-color: #000;
        height: 100vh;
        width: 100%;
        display: block;
        text-align: center;
        margin-left: 0;
        z-index: 999;
    }

    #click:checked~ul {
        left: -50%;
        transition: 0.8s;
    }

    .navlink ul li {
        margin: 50px 0 0 50%;
    }

    .navlink ul li a {
        color: white;

    }


    nav .menubtn i {
        display: block;
    }

    #click:checked~.menubtn i::before {
        content: "\f00d";
    }

}

/* UPPERHEADER CONTACT HIDE */

@media (max-width:685px) {
    .upperheadercontact a {
        display: none;
    }

    .upperheader {
        justify-content: center;
    }
}

/* HEADER END */
/* HEADER END */

/* POPUP STARTED */
/* POPUP STARTED */


.popup {
    position: fixed;
    top: 0%;
    display: none;
    width: 100%;
    height: 100%;
    background-color: #000000be;
    z-index: 9998;
    justify-content: center;
    align-items: center;
}

#form {
    max-width: 700px;
    width: 100%;
    background-color: #fff;
    padding: 15px 30px;
    border-radius: 5px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.15);
    position: fixed;
    display: none;
    z-index: 9999;
}

#close {
    font-size: 2.1vmax;
    position: absolute;
    top: 20px;
    right: 25px;
    cursor: pointer;
    display: inline;
}

.title {
    font-size: 2vmax;
    font-weight: 500;
    display: inline;
    position: relative;
}

.title::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    height: 3px;
    width: 30px;
    border-radius: 5px;
    background: linear-gradient(135deg, #71b7e6, #9b59b6);
}

.realform {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-top: 20px;
}

.formsingle {
    /* margin-bottom: 5px; */
    width: calc(100% / 2 - 20px);
}

.details {
    display: block;
    font-weight: 500;
    margin-bottom: 2px;
}

#remark,
select,
.formsingle input {
    height: 45px;
    width: 100%;
    outline: none;
    font-size: 16px;
    border-radius: 5px;
    padding-left: 15px;
    border: 1px solid #ccc;
    border-bottom-width: 2px;
    transition: all 0.3s ease;
}

#remark,
.formsingle input:focus,
#remark,
select,
.formsingle input:valid {
    border-color: #9b59b6;
}

.price-link {
    margin-top: 6%;
}

.price-link a {
    color: red;
}

.location {
    margin-bottom: 7%;
}

.location p span {
    color: red;
    font-size: x-large;
}

.submit {
    height: 60px;
    display: none;
}

.submit2 {
    height: 40px;
}

.submit input,.submit2 input {
    height: 100%;
    width: 100%;
    border-radius: 5px;
    border: none;
    color: #fff;
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 10px 0;
    background: linear-gradient(135deg, #71b7e6, #9b59b6);
}

.submit input:hover {
    background: linear-gradient(-135deg, #71b7e6, #9b59b6);
}


/* FOR MOBILE RESPONSIVE FORM */

@media(max-width: 584px) {

    .popup {
        top: 0%;
    }

    #form {
        max-width: 100%;
        height: 100%;
        left: 0;
        top: 0;
    }


    #close {
        font-size: 2.8vmax;
        top: 25px;
    }

    .realform .formsingle {
        margin-bottom: 5px;
        width: 100%;
    }

    .title {
        font-size: 3vmax;
    }


    .realform {
        max-height: 450px;
        flex-direction: column;
        flex-wrap: nowrap;
    }

    .submit{
        display: block;
    }

    .submit2{
        display: none;
    }

    .formsingle input {
        width: 100%;
    }

    .price-link {
        margin-top: 0%;
    }
    
    .location {
    margin-bottom: 2%;
}
}


/* POPUP END */
/* POPUP END */

/* FOOTER STARTED */
/* FOOTER STARTED */

.footer {
    border-top: 2px solid rgb(0, 0, 0);
    margin-top: 100px;
    background-color: rgb(236, 235, 235);
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding-top: 2%;
}

.icon_footer {
    margin-top: 20px;
    font-size: 1.5vmax;
    display: flex;
}

.icon_footer i {
    margin-right: 30px;
    cursor: pointer;
    color: #000;
}

.icon_footer i:hover {
    color: goldenrod;
}


.useful_links_footer {

    display: flex;
    flex-direction: column;
}


.useful_links_footer a {
    color: #000;
    text-decoration: none;
    margin-bottom: 10%;
    font-size: 1.2vmax;
}

.useful_links_footer a:hover {
    color: goldenrod;
}

.middle_footer h6 {
    font-weight: 400;
    font-size: 1.2vmax;
    margin-bottom: 25%;
}


footer {
    text-align: center;
    font-size: 1.2vmax;
}


@media(max-width: 450px) {

    .footer {
        margin-top: 50px;
    }

    .middle_footer {
        margin-right: 30px;
    }

    .useful_links_footer {
        margin-right: 30px;

    }

    .icon_footer {
        justify-content: center;
    }

    .icon_footer i {
        margin-right: none;
    }
}