/*-----------------Home Page CSS--------------*/
*{
    margin: 0;
}

.full{
    width: 100vw;
    height: fit-content;
}

#landing_Page{
    width: 100%;
    height: 100vh;
}

#header_Div{
    width: 100%;
    height: 63%;
    background-color: #52889F;
    display: flex;
    flex-direction: column;
    align-items: center;
}

#top_Header_Div{
    width: 75%;
    height: 10%;
    display: flex;
    justify-content: space-between;
    align-items: end;
}

#logo_Div{
    width: fit-content;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: end;
}

#logo_H1{
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    font-size: 2vw;
    letter-spacing: -0.05vw;
    color: #FDFEFF;
}

#signin_Signup_Div{
    width: 13%;
    height: 60%;
}

#signin_Signup_Button{
    width: 100%;
    height: 100%;
    background-color: #FCC013;
    border-radius: 4vw;
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    font-size: 0.8vw;
    font-weight: 600;
    color: #000000;
    border-style: none;
    cursor: pointer;
    /* background-color: #0000002b; */
    /* color: #FDFEFF; */
}

#signin_Signup_Button:hover{
    background-color: #1A75BC;
    color: #FDFEFF;
    /* background-color: #0000005e; */
}

#landing_Page_Hero_Div{
    width: 75%;
    height: 90%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

#left_Hero_Div{
    width: 60%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

#hero_Text_P{
    margin-top: 17%;
    font-family: monospace;
    font-size: 5vw;
    font-weight: 900;
    letter-spacing: -0.3vw;
    word-spacing: -1vw;
    line-height: 4.4vw;
    color: #000000c1;
}

#hero_Text_Message_P{
    margin-top: 5%;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    font-size: 1vw;
    font-weight: 200;
    line-height: 1.4vw;
    color: #FDFEFF;
    text-align: center;
}

#hero_Search_Box{
    margin-top: 5%;
    width: 85%;
    height: 9%;
    display: flex;
    flex-direction: row;
    border-radius: 10px;
}

#search_Input_Box{
    width: 70%;
    height: 100%;
    background-color: #FDFEFF;
    border-radius: 10px 0 0 10px;
    border-style: none;
}

#search_Input{
    width: 100%;
    height: 100%;
    background-color: #FDFEFF;
    color: #000000a6;
    border-radius: 10px 0 0 10px;
    border-style: none;
    font-size: 1.1vw;
    padding-left: 1vw;
    padding-right: 0.3vw;
}

#search_Input:focus{
    outline: none;
}

/* #search_Input::-webkit-search-cancel-button{
    display: none;
} */


#search_Button{
    width: 30%;
    height: 100%;
    background-color: #FCC013;
    border-radius: 0 10px 10px 0;
    cursor: pointer;
}

#search_Button_P{
    width: 100%;
    height: 100%;
    background-color: #FCC013;
    border-radius: 0 10px 10px 0;
    cursor: pointer;
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    color: #000000;
    font-weight: 600;
    font-size: 1vw;
    border-style: none;
}

#search_Button_P:hover{
    background-color: #1A75BC;
    color: #FDFEFF;
}

#right_Hero_Div{
    width: 32%;
    height: 80%;
}

#parking_Sign{
    width: 100%;
    height: 100%;
    border-radius: 5vw;
}

#footer_Div{
    width: 100%;
    height: 37%;
    background-color: #FDFEFF;
    /* background-color: #151A24; */
    display: flex;
    flex-direction: column;
    align-items: center;
}

#how_To_Works_Div{
    width: 52%;
    height: 20%;
    display: flex;
    justify-content: left;
    align-items: center;
    margin-top: 1vw;
}

#how_To_Works_P{
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
    font-size: 2.5vw;
    color: #000000;
    font-weight: 500;
    letter-spacing: -0.1vw;
}

#how_To_Works_Three_Div{
    width: 52%;
    height: 63%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    margin-top: 1vw;
}

.three_Div{
    width: 31%;
    height: 100%;
    border-radius: 10px;
    box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.25);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.three_Div_Image{
    width: 4vw;
    height: 4vw;
    margin-top: 1.5vw;
}

.three_Div_Header{
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    font-size: 1.5vw;
    font-weight: 600;
    margin-top: 1vw;
    text-align: center;
    color: #000000;
    letter-spacing: -0.1vw;
}

.three_Div_Message{
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 0.9vw;
    font-weight: 400;
    margin-top: 0.5vw;
    text-align: center;
    color: #706d6d;
}

/*-----------------Home Page CSS End---------*/


/*-----------------Pop Up Css---------------*/


.popup {
    display: none; /* Hidden by default */
    position: fixed;
    z-index: 999;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.5); /* semi-transparent background */
    justify-content: center;
    align-items: center;
}

.car_Parking_Signin_Signup_Popup {
    background-color: #FDFEFF;
    padding-top: 1vw;
    padding-left: 1.5vw;
    padding-right: 1.5vw;
    padding-bottom: 1.5vw;
    border-radius: 15px;
    width: 20vw;
    max-width: 90%;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    display: flex;
    flex-direction: column;
    align-items: center;
    border-style: none;
}

.car_Parking_Signin_Signup_Popup:hover{
    transform: scale(1.04);
    transition: transform 0.3s ease-in-out;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    cursor: pointer;
}

#parking_Signin_Signup_Popup{
    margin-left: 1vw;
}

.signin_Signup_Popup_Img{
    width: 15%;
    height: 5%;
    margin-bottom: 1vw;
}

.signin_Signup_Popup_Header{
    font-family: Arial, Helvetica, sans-serif;
    font-size: 1.2vw;
    font-weight: 700;
    color: #000000;
    letter-spacing: -0.05vw;
}

.signin_Signup_Popup_P{
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 0.8vw;
    font-weight: 400;
    margin-top: 0.5vw;
    text-align: center;
    color: #706d6d;
}

.close {
    color: #aaa;
    float: right;
    font-size: 2vw;
    font-weight: bold;
    cursor: pointer;
    position: absolute;
    right: 2vw;
    top: 1vw;
}

.close:hover {
    color: #000000;
}

/*-------------Pop Up Css End--------------*/

/*-------------Car Parking Signin Signup Popup Div CSS--------*/

.car_Parking_Signin_Or_Signup_Popup_Div{
    display: none; /* Hidden by default */
    position: fixed;
    z-index: 999;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.5); /* semi-transparent background */
    justify-content: center;
    align-items: center;
}

/*-------------Car Signin Signup Popup Div CSS--------*/

.car_Signin_Or_Signup_Tab_Div{
    background-color: #FDFEFF;
    width: 25vw;
    height: 35vw;
    max-width: 90%;
    border-width: 1px;
    border-color: #000000;
    border-style: solid;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    display: none;
    flex-direction: column;
    align-items: center;
}

/*-----------Car Signup Tab CSS----------*/

#car_Signup_Tab_Signup_Form_P_Div{
    width: 100%;
    padding: 2vw;
    display: flex;
    justify-content: center;
    align-items: center;
}

#car_Signup_Tab_Signup_Form_P{
    font-family: Arial, Helvetica, sans-serif;
    font-size: 2vw;
    font-weight: 700;
    initial-letter: -0.2vw;
}

#car_Signup_Tab_Div{
    width: 80%;
    height: 2vw;
    border-radius: 10px;
    border-width: 1px;
    border-color: #706d6d;
    border-style: solid;
    display: flex;
    flex-direction: row;
    background-color: #FDFEFF;
}

#car_Signup_Tab_Signup_Button{
    width: 50%;
    height: 100%;
    border-style: none;
    border-radius: inherit;
    background-color: #FDFEFF;
    color: #000000;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 1vw;
    font-weight: 400;
}

#car_Signup_Tab_Signup_Button:hover{
    background-color: #1A75BC;
    color: #FDFEFF;
}

#car_Signup_Tab_Signup_Button:active{
    background-color: #FCC013;
    color: #000000;
}

#car_Signup_Tab_Signin_Button{
    width: 50%;
    height: 100%;
    border-style: none;
    border-radius: inherit;
    background-color: #FDFEFF;
    color: #000000;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 1vw;
    font-weight: 400;
}

#car_Signup_Tab_Signin_Button:hover{
    background-color: #1A75BC;
    color: #FDFEFF;
}

#car_Signup_Tab_Signin_Button:active{
    background-color: #FCC013;
    color: #000000;
}

#car_Signup_Form{
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

#car_Signup_Form_Name_Input_Div{
    margin-top: 2vw;
    width: 80%;
    display: flex;
    justify-content: space-between;
}

.car_Signup_Form_Name_Input{
    width: 45%;
    padding: 0.4vw;
    border: 1px solid #706d6d;
    border-radius: 5px;
}

#car_Signup_Form_Dateofbirth_Number_Input_Div{
    margin-top: 0.4vw;
    width: 80%;
    display: flex;
    justify-content: space-between;
}

.car_Signup_Form_Dateofbirth_Number_Input{
    width: 45%;
    padding: 0.4vw;
    border: 1px solid #706d6d;
    border-radius: 5px;
}

#car_Signup_Form_Email_Password_Input_Div{
    margin-top: 0.4vw;
    width: 80%;
    display: flex;
    justify-content: space-between;
}

.car_Signup_Form_Email_Password_Input{
    width: 45%;
    padding: 0.4vw;
    border: 1px solid #706d6d;
    border-radius: 5px;
}

#car_Signup_Form_Create_Account_Button{
    margin-top: 3vw;
    width: 40%;
    padding: 0.4vw;
    color: #FDFEFF;
    background-color: #1A75BC;
    border: 1px solid #000000;
    border-radius: 5px;
    cursor: pointer;
}

#car_Signup_Form_Create_Account_Button:hover{
    background-color: #52889F;
}

/*-----------Car Signup Tab CSS End----------*/

/*-----------Car Signin Tab CSS----------------*/

#car_Signin_Tab_Signin_Form_P_Div{
    width: 100%;
    padding: 2vw;
    display: flex;
    justify-content: center;
    align-items: center;
}

#car_Signin_Tab_Signin_Form_P{
    font-family: Arial, Helvetica, sans-serif;
    font-size: 2vw;
    font-weight: 700;
    initial-letter: -0.2vw;
}

#car_Signin_Tab_Div{
    width: 80%;
    height: 2vw;
    border-radius: 10px;
    border-width: 1px;
    border-color: #706d6d;
    border-style: solid;
    display: flex;
    flex-direction: row;
    background-color: #FDFEFF;
}

#car_Signin_Tab_Signup_Button{
    width: 50%;
    height: 100%;
    border-style: none;
    border-radius: inherit;
    background-color: #FDFEFF;
    color: #000000;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 1vw;
    font-weight: 400;
}

#car_Signin_Tab_Signup_Button:hover{
    background-color: #1A75BC;
    color: #FDFEFF;
}

#car_Signin_Tab_Signup_Button:active{
    background-color: #FCC013;
    color: #000000;
}

#car_Signin_Tab_Signin_Button{
    width: 50%;
    height: 100%;
    border-style: none;
    border-radius: inherit;
    background-color: #FDFEFF;
    color: #000000;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 1vw;
    font-weight: 400;
}

#car_Signin_Tab_Signin_Button:hover{
    background-color: #1A75BC;
    color: #FDFEFF;
}

#car_Signin_Tab_Signin_Button:active{
    background-color: #FCC013;
    color: #000000;
}

#car_Signin_Form{
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

#car_Signin_Form_Number_Password_Input_Div{
    margin-top: 3.5vw;
    width: 80%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.car_Signin_Form_Number_Password_Label{
    display: flex;
    align-self: flex-start;
    margin-bottom: 0.3vw;
    margin-left: 1.8vw;
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    font-size: 0.9vw;
}

.car_Signin_Form_Number_Password_Input{
    width: 80%;
    padding: 0.4vw;
    font-size: 0.8vw;
    border: 1px solid #706d6d;
    border-radius: 5px;
}

#car_Signin_Form_Password_Label{
    margin-top: 1vw;
}

#car_Signin_Form_Login_Button{
    margin-top: 3vw;
    width: 40%;
    padding: 0.4vw;
    color: #FDFEFF;
    background-color: #1A75BC;
    border: 1px solid #000000;
    border-radius: 5px;
    cursor: pointer;
}

#car_Signin_Form_Login_Button:hover{
    background-color: #52889F;
}

/*-----------Car Signin Tab CSS End----------------*/

#car_Signin_Or_Signup_Popup_Close{
    color: #aaa;
    float: right;
    font-size: 2vw;
    font-weight: bold;
    cursor: pointer;
    position: absolute;
    right: 38.2vw;
    top: 10vw;
}

#car_Signin_Or_Signup_Popup_Close:hover{
    color: #000000;
}

/*-------------Car Signin Signup Popup Div CSS End--------*/

/*-------------Parking Signin Signup Popup Div CSS--------*/

.parking_Signin_Or_Signup_Tab_Div{
    background-color: #FDFEFF;
    width: 25vw;
    height: 35vw;
    max-width: 90%;
    border-width: 1px;
    border-color: #000000;
    border-style: solid;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    display: none;
    flex-direction: column;
    align-items: center;
}

/*-----------Parking Signup Tab CSS----------*/

#parking_Signup_Tab_Signup_Form_P_Div{
    width: 100%;
    padding: 2vw;
    display: flex;
    justify-content: center;
    align-items: center;
}

#parking_Signup_Tab_Signup_Form_P{
    font-family: Arial, Helvetica, sans-serif;
    font-size: 2vw;
    font-weight: 700;
    initial-letter: -0.2vw;
}

#parking_Signup_Tab_Div{
    width: 80%;
    height: 2vw;
    border-radius: 10px;
    border-width: 1px;
    border-color: #706d6d;
    border-style: solid;
    display: flex;
    flex-direction: row;
    background-color: #FDFEFF;
}

#parking_Signup_Tab_Signup_Button{
    width: 50%;
    height: 100%;
    border-style: none;
    border-radius: inherit;
    background-color: #FDFEFF;
    color: #000000;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 1vw;
    font-weight: 400;
}

#parking_Signup_Tab_Signup_Button:hover{
    background-color: #1A75BC;
    color: #FDFEFF;
}

#parking_Signup_Tab_Signup_Button:active{
    background-color: #FCC013;
    color: #000000;
}

#parking_Signup_Tab_Signin_Button{
    width: 50%;
    height: 100%;
    border-style: none;
    border-radius: inherit;
    background-color: #FDFEFF;
    color: #000000;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 1vw;
    font-weight: 400;
}

#parking_Signup_Tab_Signin_Button:hover{
    background-color: #1A75BC;
    color: #FDFEFF;
}

#parking_Signup_Tab_Signin_Button:active{
    background-color: #FCC013;
    color: #000000;
}

#parking_Signup_Form{
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

#parking_Signup_Form_Name_Input_Div{
    margin-top: 2vw;
    width: 80%;
    display: flex;
    justify-content: space-between;
}

.parking_Signup_Form_Name_Input{
    width: 45%;
    padding: 0.4vw;
    border: 1px solid #706d6d;
    border-radius: 5px;
}

#parking_Signup_Form_Dateofbirth_Number_Input_Div{
    margin-top: 0.4vw;
    width: 80%;
    display: flex;
    justify-content: space-between;
}

.parking_Signup_Form_Dateofbirth_Number_Input{
    width: 45%;
    padding: 0.4vw;
    border: 1px solid #706d6d;
    border-radius: 5px;
}

#parking_Signup_Form_Email_Password_Input_Div{
    margin-top: 0.4vw;
    width: 80%;
    display: flex;
    justify-content: space-between;
}

.parking_Signup_Form_Email_Password_Input{
    width: 45%;
    padding: 0.4vw;
    border: 1px solid #706d6d;
    border-radius: 5px;
}

#parking_Signup_Form_Create_Account_Button{
    margin-top: 3vw;
    width: 40%;
    padding: 0.4vw;
    color: #FDFEFF;
    background-color: #1A75BC;
    border: 1px solid #000000;
    border-radius: 5px;
    cursor: pointer;
}

#parking_Signup_Form_Create_Account_Button:hover{
    background-color: #52889F;
}

/*-----------Parking Signup Tab CSS End----------*/

/*-----------Parking Signin Tab CSS----------------*/

#parking_Signin_Tab_Signin_Form_P_Div{
    width: 100%;
    padding: 2vw;
    display: flex;
    justify-content: center;
    align-items: center;
}

#parking_Signin_Tab_Signin_Form_P{
    font-family: Arial, Helvetica, sans-serif;
    font-size: 2vw;
    font-weight: 700;
    initial-letter: -0.2vw;
}

#parking_Signin_Tab_Div{
    width: 80%;
    height: 2vw;
    border-radius: 10px;
    border-width: 1px;
    border-color: #706d6d;
    border-style: solid;
    display: flex;
    flex-direction: row;
    background-color: #FDFEFF;
}

#parking_Signin_Tab_Signup_Button{
    width: 50%;
    height: 100%;
    border-style: none;
    border-radius: inherit;
    background-color: #FDFEFF;
    color: #000000;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 1vw;
    font-weight: 400;
}

#parking_Signin_Tab_Signup_Button:hover{
    background-color: #1A75BC;
    color: #FDFEFF;
}

#parking_Signin_Tab_Signup_Button:active{
    background-color: #FCC013;
    color: #000000;
}

#parking_Signin_Tab_Signin_Button{
    width: 50%;
    height: 100%;
    border-style: none;
    border-radius: inherit;
    background-color: #FDFEFF;
    color: #000000;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 1vw;
    font-weight: 400;
}

#parking_Signin_Tab_Signin_Button:hover{
    background-color: #1A75BC;
    color: #FDFEFF;
}

#parking_Signin_Tab_Signin_Button:active{
    background-color: #FCC013;
    color: #000000;
}

#parking_Signin_Form{
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

#parking_Signin_Form_Number_Password_Input_Div{
    margin-top: 3.5vw;
    width: 80%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.parking_Signin_Form_Number_Password_Label{
    display: flex;
    align-self: flex-start;
    margin-bottom: 0.3vw;
    margin-left: 1.8vw;
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    font-size: 0.9vw;
}

.parking_Signin_Form_Number_Password_Input{
    width: 80%;
    padding: 0.4vw;
    font-size: 0.8vw;
    border: 1px solid #706d6d;
    border-radius: 5px;
}

#parking_Signin_Form_Password_Label{
    margin-top: 1vw;
}

#parking_Signin_Form_Login_Button{
    margin-top: 3vw;
    width: 40%;
    padding: 0.4vw;
    color: #FDFEFF;
    background-color: #1A75BC;
    border: 1px solid #000000;
    border-radius: 5px;
    cursor: pointer;
}

#parking_Signin_Form_Login_Button:hover{
    background-color: #52889F;
}

/*-----------Parking Signin Tab CSS End----------*/

#parking_Signin_Or_Signup_Popup_Close{
    color: #aaa;
    float: right;
    font-size: 2vw;
    font-weight: bold;
    cursor: pointer;
    position: absolute;
    right: 38.2vw;
    top: 10vw;
}

#parking_Signin_Or_Signup_Popup_Close:hover{
    color: #000000;
}

/*-------------Parking Signin Signup Popup Div CSS End--------*/