/*setting-----------------------*/
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Cambria, Cochin, Georgia, Times, "Times New Roman", serif;
    outline: none;
    border: none;
    text-decoration: none;
}
html {
    font-size: 62.5%;
    min-height: 100%;
}
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: silver;
    height: 150px;
    width: 100%;
    z-index: 1000;
}
.landing {
    z-index: -1;
}
/*menubar-----------------------*/
nav {
    margin: auto;
    float: left;
    position: relative;
    top: 80px;
    margin-left: 50px;
}

.title {
    font-size: 50px;
    color: black;
    left: 0;
    right: 0;
    margin-inline: auto;
    margin-top: 50px;
    width: fit-content;
    position: absolute;
}

.menu li {
    display: inline-block;
    margin-left: 20px;
    font-size: 17px;
    z-index: 2;
}
.menu li a {
    display: block;
    color: black;
    text-decoration: none;
    font-weight: 700;
    letter-spacing: 1px;
}

.menu li > a::after {
    content: "";
    display: block;
    margin: auto;
    height: 3px;
    width: 0;
    top: 5px;
    background: transparent;
    transition: all 0.3s;
}
.menu li > a:hover::after,
li > .active-nav::after {
    width: 100%;
    background: black;
}
.menu #toggler {
    display: none;
}
.menu .fa-bars {
    font-size: 1.5rem;
    color: grey;
    border-radius: 0.5rem;
    padding: 0.5rem 1.5rem;
    display: none;
}

.loginbutton {
    position: absolute;
    right: 0;
    top: 0;
    margin-top: 95px;
    margin-right: 130px;
    outline: 0;
    cursor: pointer;
    border: 2px solid #000;
    border-radius: 3px;
    color: #000;
    background: rgba(12, 0, 0, 0.021);
    font-size: 15px;
    font-weight: 500;
    line-height: 25px;
    padding: 7px 15px;
    text-align: center;
    transition-duration: 0.15s;
    transition-property: all;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}

.loginbutton:hover {
    transform: translateY(-2px);
    background-color: rgb(255, 200, 0, 0.2);
}
/*home page-----------------------*/
.homepage {
    width: 100%;
    transition: 0.5s;
    z-index: 0;
    overflow: auto;
    margin-top: 150px;
}
.homeintro {
    margin-top: 40px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    display: inline-block;
}
.homeintro h1 {
    font-size: 70px;
}

.homeintro p {
    margin: 10px 0 40px;
    font-size: 20px;
}

.intro-btn {
    display: inline-block;
    text-decoration: none;
    color: #fff;
    border: 1px solid #fff;
    padding: 12px 34px;
    font-size: 13px;
    background: transparent;
    position: relative;
    cursor: pointer;
}

.intro-btn:hover {
    border: 1px solid yellow;
    background: yellow;
    transition: 1s;
}
/*about page------------------*/
.content {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    display: inline-block;
    z-index: 0;
    min-height: calc(100vh - 150px);
    background-size: cover;
    background-image: linear-gradient(rgba(4, 9, 30, 0), rgba(4, 9, 30, 0.7));
}
.aboutpage {
    width: 80%;
    margin: auto;
    text-align: center;
    padding-top: 100px;
}

.aboutus {
    font-size: 50px;
    text-align: center;
}
.aboutrow {
    margin-top: 10vh;
}

.about-col {
    display: inline-block;
    width: 400px;
    border-radius: 10px;
    margin-bottom: 5%;
    text-align: left;
    margin-left: 7vh;
}

.about-col img {
    width: 100%;
    max-width: 45vh;
    border-radius: 10px;
}

.about-col p {
    padding: 0;
}

.about-col h3 {
    margin-top: 16px;
    margin-bottom: 15px;
    text-align: left;
}
/*location page -------------*/

.location-container {
    margin-top: 50px;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
    align-items: center;
}
.locationcard iframe {
    height: 500px;
    width: 600px;
    max-width: 90%;
    margin-left: 20px;
    margin-right: 20px;
    flex: 1;
    box-sizing: border-box;
}

.locationtextarea {
    padding-left: 20px;
    font-size: 20px;
    flex: 1;
    box-sizing: border-box;
}
/*login page---------*/

.wrapper {
    margin-left: auto;
    margin-right: auto;
    width: 445px;
    height: 650px;
    margin-top: 7vh;
    background: transparent;
    border: 2px solid rgba(0, 0, 0, 0.5);
    border-radius: 20px;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
    display: flex;
    overflow-y: hidden;
    justify-content: center;
    align-items: center;
}

.wrapper.active {
    display: inline-block;
}
.wrapper .active-popup {
    transform: scale(1);
}
.wrapper.active {
    height: 520px;
}

.wrapper .form-box {
    width: 100%;
    padding: 40px;
}

.wrapper #cancelicon {
    position: absolute;
    top: 0;
    right: 0;
    width: 60px;
    height: 60px;
    font-size: 2.5em;
    display: flex;
    justify-content: center;
    align-items: center;
}

.form-box h2 {
    font-size: 1.5em;
}

.input-box {
    position: relative;
    width: 100%;
    height: 50px;
    border-bottom: 2px solid rgb(0, 0, 0);
    margin-bottom: 30px;
    margin-top: 20px;
    border-bottom: 2px solid #ffffff;
}

.input-box input {
    width: 100%;
    height: 100%;
    background: transparent;
    font-size: 2vh;
    color: #000000;
    font-weight: 600;
    padding: 0 35px 0 px;
    outline: none;
    font-family: Cambria, Cochin, Georgia, Times, "Times New Roman", serif;
}

.input-box input::-webkit-input-placeholder {
    color: rgba(0, 0, 0, 0.5);
    font-family: Cambria, Cochin, Georgia, Times, "Times New Roman", serif;
}

#mailicon,
#lockicon {
    position: absolute;
    right: 8px;
    font-size: 1.2em;
    color: rgb(255, 255, 255);
    line-height: 57px;
}

#userbtn {
    width: 100%;
    height: 45px;
    background: #00000080;
    border: none;
    outline: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 1em;
    color: rgb(255, 255, 255);
    font-family: Cambria, Cochin, Georgia, Times, "Times New Roman", serif;
}

.userloginbtn {
    width: 100%;
    height: 45px;
    background: #00000080;
    border: none;
    outline: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 1em;
    color: #fff;
    font-family: Cambria, Cochin, Georgia, Times, "Times New Roman", serif;
}

.userloginbtn:hover {
    background: rgb(221, 221, 221);
}

.userbtn:hover {
    background: rgb(221, 221, 221);
}

.login-register {
    font-size: 0.9em;
    color: #ffffff;
    text-align: center;
    font-weight: 500;
    margin: 15px 0 10px;
}

.input-boxregister {
    position: relative;
    width: 100%;
    height: 40px;
    border-bottom: 2px solid #ffffff;
    margin-bottom: 30px;
    margin-top: 15px;
}

.input-boxregister label {
    position: absolute;
    top: 30%;
    left: 10px;
    font-size: 2vh;
    color: #ffffff36;
    font-weight: 500;
    pointer-events: none;
    transition: 0.5s;
    color: rgba(0, 0, 0, 0.5);
}

.input-boxregister input:focus ~ label,
.input-boxregister input:valid ~ label {
    display: none;
}

#mail1icon,
#lock1icon,
#personicon,
#call1icon {
    position: absolute;
    right: 8px;
    font-size: 1.2em;
    color: #ffffff;
    line-height: 45px;
}

.input-boxregister input {
    width: 100%;
    height: 100%;
    background: transparent;
    font-size: 2vh;
    color: #000000;
    font-weight: 600;
    padding: 0 35px 0 px;
    outline: none;
    font-family: Cambria, Cochin, Georgia, Times, "Times New Roman", serif;
}

.remember-forgot {
    margin-bottom: 1vh;
}

#messageContainer {
    position: relative;
    width: 400px;
    font-size: 2vh;
    margin-left: 52.5vh;
}

.sendingmessage {
    background-color: rgba(185, 255, 185, 0.5);
    margin-top: 15px;
    border-radius: 3px;
    padding: 7px;
    color: rgb(1, 87, 1);
}

.sendingerror {
    background-color: rgba(223, 142, 142, 0.5);
    margin-top: 15px;
    border-radius: 3px;
    padding: 7px;
    color: rgb(89, 3, 3);
}
@media (max-width: 991px) {
    .homepage {
        margin-top: 150px;
    }
    html {
        font-size: 15px;
    }
    nav {
    }
    .title {
        font-size: 30px;
    }
}
/*coupon package deal*/

.couponcontainer {
    display: flex;
    flex-wrap: wrap;
    min-width: 100%;
}

.couponcard {
    margin-right: 5vh;
    height: 10vh;
    padding: 5px 10px;
    margin: 15px;
    margin-left: 10vh;
    background-color: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    min-width: 60%;
    display: flex;
    -webkit-box-pack: justify;
    justify-content: space-between;
}

.couponintro,
.couponquantity,
.couponimage {
    display: flex;
    flex-direction: column;
    -webkit-box-pack: center;
    justify-content: center;
}

#couponpurchaseinfo {
    padding: 20px;
}

.couponcard {
    max-width: 50%;
}

.coupondeal {
    font-size: 20px;
    margin-top: 50px;
    margin-left: 90px;
}

.couponimg {
    width: 100%;
    width: 10vh;
    height: 10vh;
}

.coupontype {
    border: none;
    display: inline;
    font-family: Cambria, Cochin, Georgia, Times, "Times New Roman", serif;
    padding: none;
    width: auto;
    font-size: 20px;
}

.couponquantity {
    max-width: 70px;
    padding: 2px;
    margin-top: 35px;
}

.languageswitch *{
    font-size: 15px;
}

.addpurchase {
    background-color: #ffd580;
    color: white;
    border: none;
    padding: 5px;
    text-align: center;
    display: inline-block;
    border-radius: 50px;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
    margin-top: 33px;
}   
@media (max-width: 768px) {
    .loginbutton{
        margin-right: 80px;
    }
    #pagetitle {
        font-size: 30px;
    }
    .navbar {
        padding-top: 22px;
    }
    nav{
        margin-left: 0px;
    }
    .menu .fa-bars {
        display: block;
    }
    .navbar {
        clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
    }
    .menu li {
        display: block;
        background: white;
    }
    .menu li a {
        display: block;
        background: white;
        border-bottom: 0.1rem solid;
    }
    header #toggler:checked ~ .navbar {
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    }
    .about-col img {
        width: 100%;
        max-width: 30vh;
        border-radius: 10px;
    }
    .wrapper {
        width: 300px;
        height: 400px;
    }
    select {
        font-size: 10px;
        width: 50px;
    }
    option {
        font-size: 10px;
        width: 50px;
    }
}
