/* 
======================================       
    >>> DOCUMENT INFORMATION <<<

	- Document: Airport Parking Booking
	- Version:  1.0.0
	- Client:   Mr. Irfan Ali
	- Author:   shohel mahamud   

====================================== 
*/


/*
--------------------------------------
    >>>     index  <<
--------------------------------------

1. GOOGLE FONT
2. COMMON CSS
3. MENU BAR
4. BANNER
5. FOOTER


6. HOME PAGE :
    - HOME PAGE FORM
    - SLIDER
    - WHAT WE OFFER
    - STATISTICS
    - AIRPORT WE SERVE
    - NEWSLETTER


7. SEARCH PAGE :
    - START SEARCH PARKING FORM
    - START FILTER SECTION


8. BOOKING PAGE :
    - BOOKING FORM
    - BOOKING SUMMARY
    -

9. CONFIRMATION PAGE

10.FAQ PAGE :
    - FAQ'S
    - CONTACT-US

11.TERMS & CONDITION

*/


/* --- 1. START GOOGLE FONT --- */

/* Font Name : Raleway */
@import url('https://fonts.googleapis.com/css2?family=Raleway:wght@100;200;300;400;500;600;700&display=swap');

/* Font Name : Roboto */
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@100;300;400;500;700&display=swap');

/* --- END GOOGLE FONT --- */


/* 2. START COMMON CSS */

* { 
    margin:0;
    padding:0;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -ms-box-sizing: border-box;
    -o-box-sizing: border-box;
    box-sizing: border-box;
}

body {
    width:100vw;
    height: auto;
    min-height: 100vh;
    overflow-x: hidden;
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.2;
    margin:0;
    padding:0;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -ms-box-sizing: border-box;
    -o-box-sizing: border-box;
    box-sizing: border-box;
}


p {
    color: #5E6A75;
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
    margin-bottom: 0;
}

a {
    text-decoration: none;
    cursor: pointer;
}

img {
    width:100%;
    height:120px;
}
.flex {
    position:relative;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    width:100%;
    height:auto;
    margin:0;
    padding:0;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -ms-box-sizing: border-box;
    -o-box-sizing: border-box;
    box-sizing: border-box;
}

body {
    flex-direction: column;
    justify-content: flex-start !important;
}


.section-heading {
    width:auto;
    height:50px;
}

.section-heading h2 {
    font-family:'Roboto', sans-serif;
    color:#2C292A;
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 20px;
    text-align: center;
    line-height: 1;
}

 .heading-underline {
    position:absolute;
    bottom:0px;
    width:300px;
    height:1px;
    background-color: #125FA0;
}

.heading-underline-thick {
    position:absolute;
    bottom:-3px;
    width:100px;
    height:5px;
    background-color: #125FA0;
    border-radius:20px;
}

.hide {
    display : none !important;
}

.page-header {
    position:absolute;
    justify-content: flex-start;
    top:130px;
    z-index:100;
    width:890px;
    height:75px;
    padding:20px;
    background-color:#125FA0;
}

.page-header h1 {
   font-size: 24px;
   font-weight: 700;
   color:white;
   text-transform: uppercase;
}


/* END COMMON CSS */

/* 3. START MENU BAR CSS */

.menu-bar {
    position:fixed;
    top:0;
    left:0;
    z-index: 10000;
    color: white;
    height:50px;
    justify-content: flex-start;
    background-color:#125FA0;
    
}

.menu-bar a {color:white}

.menu-logo {
    width:25%;
}

#menu-open {
    display: none;
}

#menu-close {
    display:none;
}

.menu-items {
    width:60%;
    justify-content:flex-start;
}

.menu-items a {
    margin:0px 2%;
}

/* END MENU BAR CSS */


/* 4. START BANNER CSS */

.home-page-banner {
    position: relative;
    width:100%;
    height:315px;
    background-image: url(/img/banner-img.jpg);
    background-repeat: no-repeat;
    background-position:50% 80%;
    background-size: 115%;
    z-index:1;
}

.banner {
    position: relative;
    width:100%;
    height:175px;
    background-image: url(/img/banner-img.jpg);
    background-repeat: no-repeat;
    background-position:75% 65%;
    background-size: 115%;
    z-index:1;
}

/* END BANNER CSS */


/* 5. START FOOTER SECTION CSS */

.Footer {
    justify-content:space-between;
    align-items: flex-start;
    height:300px;
    background-color: #125FA0;
    padding:50px 75px;

}

.Footer h3 {
    color:white;
    font-weight: 600;
    font-size: 24px;
    margin-bottom:10px;
}

.ml3{
    margin-left: 10px !important;
}

.Footer a {
    color:white;
    font-size: 14px;
    font-weight: 300;
    margin-bottom:10px;
}

.footer-content {
    flex-direction:column;
    align-items: flex-start;
    width:22%;
}


.footer-content img {
    width:70%;
    height: auto;
}

/* END FOOTER SECTION CSS */



/*
--------------------------
    === 6. HOME PAGE ===
-------------------------- */


/* START HOME PAGE FORM CSS */

.home-page-form-container {
    justify-content: space-between;
    align-items: flex-start;
    position: absolute;
    top:150px;
    z-index:10;
    width:70%;
    height:auto;
    padding:25px 20px;
    background:#125FA0;
}



.home-page-form-text {
    flex-direction: column;
    justify-content:flex-start;
    width:52%;
    height: 100%;

}

.home-page-form-text h2 {
    color:white;
    font-size: 30px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
}

.home-page-form-text p {
    color:white;
    font-size: 16px;
    font-weight:200;
    line-height: 1.2;
    text-align:left;
}


.home-page-form {
    width:45%;
    justify-content: space-between;
}


.home-page-form .form-items {
    flex-direction: column;
    justify-content: flex-start;
    width: 48%;
    margin:10px 0%;
}

.home-page-form .form-items:nth-of-type(1) {
    width: 100%;
}


.home-page-form .form-items label {
    color: white;
    font-family: 'Raleway', sans-serif;
    font-size: 12px;
    font-weight:300;
    line-height: 1.2;
}

.home-page-form .form-items select, .home-page-form .form-items input {
    width: 100%;
    height:30px;
    font-size: 10px;
    color:#5E6A75;
    padding:5px;
}


.home-page-form input[type=submit] {
    width: 50%;
    height:40px;
    font-family: 'Raleway', sans-serif;
    color:#125FA0;
    font-size: 14px;
    font-weight:400;
    line-height: 1.2;
    border:none;
    background-color:#FFD000 ;
    margin: 25px 0% 0% 100px;

}

/* END HOME PAGE FORM CSS */


/* START SLIDER SECTION CSS */

.slider-container {
    align-items: flex-start;
    height:auto;
    background-color: #F4F5F6;
    padding-top:270px;
    padding-bottom: 50px;
}


.slider-wrapper {
    width:50%;
    height:auto;
    padding:0% 2.5% 0% 5%;
    
}

.slider-bg {
    position:absolute;
    left:15%;
    margin-top:-75px;
    width:65%;
    height:275px;
    background-color: #125FA0;
}


/* Slideshow container */
.slideshow-container {
    width: 75%;
    height:300px;
    margin-top:2.5%;
    z-index: 10;
}

.mySlides {
    display: none;
    width:100%;
    height:100%
}

/* The dots/bullets/indicators */
.dot {
    height: 12px;
    width: 12px;
    margin: 15px 15px 0px 0px;
    background-color: #C4C4C4;
    border-radius: 50%;
    transition: background-color 0.6s ease;
  }


.active {
    background-color: #125FA0;
  }
  
  /* Fading animation */
  .fade {
    animation-name: fade;
    animation-duration: .5s;
  }
  
  @keyframes fade {
    from {opacity: .4} 
    to {opacity: 1}
  }
  


.slider-text {
    width:45%;
    height:auto;
    padding:0% 4% 0% 2.5%;
    justify-content: flex-start;
    color:#5E6A75;
}

.slider-text h1 {
    color:#2C292A;
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 20px;
}

.slider-text p {
    color:#5E6A75;
    font-size: 16px;
    font-weight: 300;
    text-align:justify;
}

.slider-text button {
    width:150px;
    height: 40px;
    background-color: #125FA0;
    border: none;
    margin-top: 30px;
    margin-left:25%;
}

.slider-text a {
    font-family:'Raleway', sans-serif;
    color:white;
    font-size: 14px;
    font-weight: 400;
}

/* END SLIDER SECTION CSS */


/* START WHAT WE OFFER SECTION CSS */

.what-we-offer {
    align-items: flex-start;
    width:100%;
    height:auto;
    padding-top:75px;
    background-color: white;
}

.offers-container {
    justify-content: space-around;
    padding:75px 50px;
}

.offer {
    width:200px;
    flex-direction: column;
    font-family:'Roboto', sans-serif;
    color:#5E6A75;
    font-size: 14px;
    font-weight: 300;
}


.offer img {
    width:65px;
    height:auto;
}

.offer h3 {
    color:#2C292A;
    font-size: 20px;
    font-weight:400;
    margin-top: 15px;
    margin-bottom: 15px;
    text-align: center;
    line-height: 1;
}

.offer p {
    color:#5E6A75;
    font-size: 14px;
    font-weight: 300;
    text-align: justify;
}

/* END WHAT WE OFFER SECTION CSS */


/* START STATISTICS SECTION CSS */

.stats-container {
    justify-content:space-around;
    height:150px;
    background-color: #125FA0;
}

.stats h3 {
    color:#FFFFFF;
    font-size: 60px;
    font-weight:700;
    margin-top: 15px;
    text-align: center;
    line-height: 1;
}

.stats h3 span {
    font-size: 34px;
}

.stats p {
    color:#FFFFFF;
    font-size: 24px;
    font-weight: 300;
    text-align: justify;
}

/* END STATISTICS SECTION CSS */

/* START AIRPORT WE SERVE SECTION CSS */

.airport-we-served-container {
    padding-top:75px;
    background-color: white;
}

.airport-we-served {
    justify-content: space-between;
    padding:75px 50px;
}

.airport-we-served button {
    width:200px;
    height:50px;
    background-color: #125FA0;
    border:none;
    margin-bottom: 25px;
}

.airport-we-served button a {
    color:white;
    font-family:'Roboto', sans-serif;
    font-size: 20px;
    font-weight: 300;
}

/* END AIRPORT WE SERVE SECTION CSS */


/* START NEWSLETTER SECTION CSS */

.newsletter-container {
    flex-direction: column;
    height:auto;
    padding: 50px;
    padding-bottom: 75px;
    background-color: #F4F5F6;
}

.newsletter-container h2 {
    font-family:'Roboto', sans-serif;
    color:#125FA0;
    font-size: 40px;
    font-weight:700;
}

.newsletter-container p {
    font-family:'Roboto', sans-serif;
    color:#5E6A75;
    font-size: 18px;
    font-weight: 400;
    text-align: justify;
    margin-bottom: 35px;
}

#NewsletterEmail {
    width:500px;
    height:50px;
    background-color:white ;
    border: 1px solid #5E6A75;
    padding:25px;
    font-size: 18px;
    margin-right:15px;

}

.newsletterForm input[type="submit"] {
    width:150px;
    height:52px;
    background-color:#FFD000 ;
    color: #125FA0;
    border:none;
    padding:0px;
    font-size: 18px;
}
/* END NEWSLETTER SECTION CSS */




/*
--------------------------
    === 7. SEARCH PAGE ===
-------------------------- */

/* 7.1 START SEARCH PARKING FORM CSS */

.search-parking-form-container {
    justify-content: space-between;
    align-items: center;
    position: absolute;
    top:120px;
    z-index:10;
    width:90%;
    height:100px;
    background:#125FA0;
}


.search-parking-form {
    width:100%;
    height:auto;
    justify-content:center;
    align-items: center;
}


.form-items {
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
    width: 14%;
    height:45px;
    margin:0px 5px;
}

.form-items label {
    color: white;
    font-family: 'Raleway', sans-serif;
    font-size: 12px;
    font-weight:300;
    line-height: 1.2;
}

.form-items select, .form-items input {
    width: 100%;
    height:30px;
    font-size: 10px;
    color:#5E6A75;
    border:none;
}


.form-submit {
    width:100%;
    height:30px;
    color:#125FA0;
    background-color:#FFD000 ;
    margin:0;


}

/* END SEARCH PARKING FORM CSS */

/* 7.2 START FILTER SECTION CSS */

.search-filter {
    width:90%;
    height:50px;
    justify-content: space-between;
    margin:60px 5% 20px 5%;
    padding:0px 15px;
    border:1px solid #E5E5E5;
}

.search-filter b {
    font-family: 'Raleway';
    font-size:12px;
    font-weight: 700;
    color:#2C292A;
}

.search-filter button {
    font-family: 'Raleway';
    font-size:12px;
    font-weight: 400;
    color:#2C292A;
    padding:0px 5px;
    background-color:transparent;
    border:none;
    border-right:.2px solid #93A0AD;
}

.search-filter div button:last-child {
    border:none;
}

.search-result-container {
    justify-content: flex-start;
    min-height: 500px;
    padding:60px;
    margin-bottom: 50px;
    background-color: #F4F5F6;
}


.search-result {
    flex-direction: column;
    justify-content: flex-start;
    width:300px;
    height:auto;
    padding-bottom:35px;
    margin:30px 8px;
    box-shadow: 4px 6px 10px -1px rgba(0, 0, 0,.25); 
    -webkit-box-shadow: 4px 6px 10px -1px rgba(0, 0, 0,.25); 
}

.search-result:hover{
    /* border: 1px solid; */
    /* padding: 10px; */
    box-shadow: 5px 10px 18px #888888;
    }

.search-result-head {
    position: absolute;
    top:-17px;
    width:250px;
    height:35px;
    color: white;
    font-size: 18px;
    text-transform: uppercase;
    background-color: #125FA0;
}
.search-result-head img {
    width:100%;
    height:auto;
}

.parking-price {
    height:50px;
    color: white;
    background-color: #125FA0;
}

.parking-price h3 {
    /* font-size: 40px;
    font-weight: 700; */
}

.parking-price b {
    position: absolute;
    right:10px;
    bottom:5px;
    font-size: 11px;
    font-weight: 400;
}

.parking-info button {
    width:50%;
    height:40px;
    font-size: 12px;
    color:#848484;
    background-color: rgba(0, 135, 255, .05);
    border:.05px solid #E3E3E3;
}


.benifits img {
    width:20px;
    height:20px;
}

.benifits {
    padding:20px;
}

.benifits div {
    margin-bottom:10px;
    justify-content: space-between;
}

.benifits strong {
    width:90%;
    font-size: 12px;
    font-weight: 400;
    color:#2C292A;
}

.search-result .book-now {
    width:100px;
    height:40px;
    background-color: #125FA0;
    color: white;
    font-size: 16px;
    text-transform: uppercase;
    border:none;
}

/* END SEARCH PARKING FORM CSS */






/*
--------------------------
 === 8. BOOKING PAGE ===
-------------------------- */

/* START BOOKING FORM CSS */

.booking-form-container {
    justify-content:center;
    align-items:flex-start;
    padding:90px ;
}

.booking-form {
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    color:#5E6A75;
    width:540px;
    height:auto;
    background-color: #F4F5F6;
    padding-bottom: 50px;
    margin-right: 45px;
}

.booking-form h2 {
    width:100%;
    padding:8px 10px;
    background-color: #125FA0;
    font-size: 18px;
    font-weight: 700;
    color:white;
    line-height: 1.2;
}

.booking-form h3 {
    width:100%;
    margin-top:25px;
    font-size: 14px;
    font-weight: 400;
    color:#5E6A75;
    line-height: 1.1;
}

.booking-form strong {
    margin:20px 0px;
    font-size: 24px;
    font-weight:300;
}

.booking-form > div > span {
    font-size: 14px;
    font-weight:300;
}

.booking-form-section {
    flex-direction: column;
    justify-content:flex-start;
    align-items: flex-start;
    padding:15px 10px;
    margin-bottom: 15px;
}

.booking-form-section > div {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}


.booking-form-section > div > img {
    height:50px;
    width:auto;
    margin-right: 5%;
}

.booking-form input, .booking-form select  {
    height:35px;
    padding:5px 10px;
    font-size: 12px;
    font-weight: 300;
    border:1px solid #E5E5E5;
    margin:10px 0px;
}

.booking-form input[type="checkbox"]  {
    width:20px;
    height:20px;
    background-color: white;
    border:1px solid #E5E5E5;
    margin-right:10px;
}

.booking-form input[type="submit"]  {
    width:200px;
    height:50px;
    font-size: 20px;
    font-weight: 700;
    color:white;
    background-color: #FFD000;
    border:none;
    margin-left:auto;
    margin-right:auto;
}

#male-female {
    width:12%;
}

#first-name, #last-name {
    width:40%;
}

#addressL1, #addressL2, #email, #contact, #cardNumber, #cardHolderName {
    width:100%;
}

#regNumber, #vehicleColor, #expireDate, #CVV {
    width:45%
}



#postcode {
    width:35%;
}

/* END BOOKING FORM CSS */

/* START BOOKING SUMMARY CSS */

.booking-summary-container {
    width:300px;
    background-color: #F4F5F6;
}

.booking-summary {
    padding:20px;
}

.booking-summary-container h2 {
    width:100%;
    padding:8px 10px;
    background-color: #125FA0;
    font-size: 18px;
    text-align: center;
    font-weight: 700;
    color:white;
    line-height: 1.2;
}

.summary-table > div {
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    width:48%;
    
}

.summary-table > div > span {
    font-size: 12px;
    color:#5E6A75;
    margin:8px 0px;
}

/* END BOOKING SUMMARY CSS */


/*
--------------------------
 === 9. CONFIRMATION PAGE ===
-------------------------- */


.confirmation-message {
    flex-direction: column;
    justify-content: flex-start;
    height:500px;
    padding:75px 120px;
}

.confirmation-message img {
    width:150px;
    height: auto;
    margin-bottom:25px;
}

.confirmation-message h2 {
    font-size: 24px;
    font-weight: 700;
    color:#125FA0;
    margin-bottom: 25px;
}


/*
--------------------------
 === 10. FAQ PAGE ===
-------------------------- */

/* START FAQ CSS */

.faq-container {
    justify-content: center;
    align-items: flex-start;
    padding:100px;
}

.faq-wrapper {
    width:450px;
    margin-right: 20px;
}


.faqs {
    width:100%;
    box-shadow:0px 5px 5px rgba(0, 0, 0, .25);
    margin-bottom: 20px;
}

.faq-question {
    height:50px;
    padding:0px 10px;
    color:#5E6A75;
    justify-content: space-between;
    background-color: #F4F5F6;
    border-bottom: 1px solid rgba(0, 0, 0, .10);
}

.faq-question b {
    color:#5E6A75;
    font-size: 16px;
    font-weight: 700;
}

.faq-question span {
    color:#5E6A75;
    font-size: 30px;
    font-weight: 700;
    cursor: pointer;
}

.faq-answer {
    padding:10px;
    font-size: 10px;
    display: none;
}

.faq-answer p {
    font-size: 14px;
    font-weight: 300;
    text-align: left;
}

/* END FAQ CSS */

/* START CONTACT-US CSS */

.contact-us {
    width:400px;
    padding:0px 10px;
    justify-content:flex-start;
    align-items: flex-start;
}

.contact-us > div {
    width:65%;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
}

.contact-us > img {
    width:28%;
}

.contact-us h2 {
    color:#2E3E4A;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 10px;
}

.contact-us h3 {
    color:#125FA0;
    font-size: 18px;
    font-weight: 700;
}

.contact-us p {
    width:200px;
    color:#535353;
    font-size: 14px;
    font-weight: 400;
    margin:5px 0px;
}

/* END CONTACT-US CSS */



/*
-------------------------------------
 === 11. TERMS & CONDITION PAGE ===
------------------------------------- */

.terms-condition {
    width:890px;
    justify-content: flex-start;
    align-items: flex-start;
    margin:100px;
    background-color: #F4F5F6;
}

.terms-condition h2 {
    width:100%;
    padding:10px;
    background-color: #5E6A75;
    font-size: 18px;
    font-weight: 400;
    color:white;
    line-height: 1.2;
    
}

.terms-condition p {
    margin:25px;
    font-size: 16px;
    font-weight: 300;
    color:#5E6A75;
    line-height: 1.5;
    
}
.price-lg {
    font-size: 24px;
    padding: 10px;
    /* background-color: #125FA0; */
    color: #0000bd;
    text-align: center;
}

.icons-custom {
    width: 25px;
    height: auto;
    display: inline block;
    text-decoration: none;
    /* padding:  5px; */
    margin: 2px;
  
}

.icons-custom li {

    /* text-decoration: none; */
  
}



ul, ol, li {
	list-style:none;
}