body, html {
    margin: 0;
    padding: 0;
    width: 100%; 
    height: 100%; 
    max-width:100%;
    max-height:100%;
}



/*NAV-BAR//////////////////BURGER BUTTON*********************************************/
.nav-bar {
    border-bottom: 2px solid #fff;
    color: #fff;
    width: 100%;
    display: flex;
    justify-content:space-between;
    align-items: center;
    list-style: none;
    position: fixed; 
    top: 0; 
    left: 0;
    right: 0;
    padding: 10px;
    background: #000;
    z-index: 1000; 
    box-shadow: 0px 10px 20px #000;
}

.logo img {
    width: 70px;
    padding: 5%;
    max-height: 100%;
    border-radius: 50%;
}

.menu{
    display: flex;
}
.menu li {
    font-family: "Dosis", sans-serif;
    margin: 1rem;
    font-size: 1.35rem;
    font-weight: 450;
    padding-right: 15px;
    list-style-type: none; 
}
.menu li:hover{
    color: #c27f21db;
}
.menu li a {
    text-transform: uppercase;
    display: inline-block;
    text-decoration: none;
    color: var(--color1);
    text-align: center;
    transition: 0.1s ease-in-out;
    position: relative;
}
.menu li a::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background-color: #edb76ddb;
    transition: 0.05s ease-in-out;
}
.menu li a:hover:after {width: 100%;}
.open-menu , .close-menu {
    position: absolute;
    color: #fff;
    cursor: pointer;
    font-size: 2.2rem;
    display: none;
    transition: 0.01s ease-in-out;
}
.open-menu {
    top: 50%;
    right: 40px;
    transform: translateY(-50%);
}
.open-menu:hover{
    color: #edb76ddb;
}
.close-menu {
    position: absolute;
    top: 0px; 
    right: 20px;
    font-size: 2.3rem;
    font-weight: 900;
}
.close-menu:hover{
    transform: rotateY(180deg);
    transition: 0.6s ease-in-out;
    color: #edb76ddb;
}
#check {display: none;}



/*CALL NOW BUTTON/////////////////////////////////////////////////////////////////////////////////////////////////*/
.callbutton {
    text-align: center;
    margin-right: 40%;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background-color: #c27f21db;
    font-weight: 750;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: width 0.2s ease, border-radius 0.2s ease;
    overflow: hidden;
    border: 3px solid #fff;
    position: relative;
  }

  .svgIcon {
    padding: 5%;
    width: 25px;
    transition: visibility 0.2s ease;
  }

  .svgIcon path {
    fill: #fff;
  }

  .callbutton:hover,
  .callbutton:active {
    border: 3px solid #fff;
    font-family: "Dosis", sans-serif;
    width: 160px;
    height: 65px;
    border-radius:20px;
    justify-content: center;
  }

  .callbutton:hover .svgIcon,
  .callbutton:active .svgIcon {
    visibility: hidden;
  }

  .callbutton span {
    position: absolute;
    font-size: 0;
    color: #fff;
    transition: font-size 0.1s ease;
  }

  .callbutton:hover span,
  .callbutton:active span {
    font-size: 23px;
    font-style: italic;
    letter-spacing: 0.5px;  
  }
   

  


/*BODY CONTAINERS///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////



/*CONTAINER  MAIN BOOKING FORM*/
#booking-form-container {
  display: none;
}

.hidden-container {
  position: fixed;
  overflow-y: auto;
  z-index: 1001;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 40%;
  background: white;
  padding: 1%;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  height: auto;
  max-height: 100vh;
}

#booktitle {
  font-size: 1.8rem;
  text-decoration: underline 0.1px;
  font-family: "Dosis", sans-serif;
  text-align: center; 
  font-weight: 300;
}

.overlay {
  backdrop-filter: blur(15px);
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1000;
}

.close-button {
  position: absolute;
  top: 0px;
  right: 0px;
  font-weight: 500;
  background: none;
  border: none;
  font-size: 45px;
  cursor: pointer;
  color: #ff7b00e8;
}

.close-button:hover {
  transform: rotateY(180deg);
  transition: 0.6s ease-in-out;
  color: #efc07edb;
}

.submit-container {
  display: flex;
  justify-content: center;
  width: 100%;
}

.submitbutton {
  text-decoration: none;
  padding: 10px 10px;
  transition: 0.2s;
  background-size: 200% auto;
  color: white;
  border-radius: 5px;
  border: 0px;
  font-weight: 500;
  box-shadow: 0px 0px 14px -7px #f09819;
  background-image: linear-gradient(45deg, #FF512F 0%, #edb76ddb 51%, #FF512F 100%);
  cursor: pointer;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
}

.submitbutton:hover {
  background-position: right center;
  color: #fff;
  text-decoration: none;
}

.hidden-container input[type="text"], .hidden-container input[type="email"], .hidden-container input[type="tel"], .hidden-container input[type="date"], .hidden-container input[type="time"], .hidden-container textarea {
  width: 100%;
  box-sizing: border-box;
}

.hidden-container textarea{
  border: 0.5px solid #ccc;
  text-align: center;
}

.from-to-container, .date-time-container {
  display: flex;
  justify-content: space-around;
}

#thoughts2 {
  border-radius: 10px;
  padding: 1%;
}

.from-to-container input[type="text"], .date-time-container input[type="date"], .date-time-container input[type="time"] {
  width: 50%;
}

#time-input, #date-input {
  height: fit-content;
  border-radius: 10px;
  width: 50%;
  padding: 2%;
  border: 0.5px solid #ccc;
}
#time-input {
  width: 50%;
  padding: 2.019%;
}
input[type="submit"] {
  padding: 10px;
  color: white;
  border: none;
  width: 60%;
  border-radius: 5px;
  cursor: pointer;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .hidden-container {
    width: 80%;
    height: auto;
    max-height: auto;
  }
  .close-button {
    font-size: 2.5rem;
  }
  input[type="text"], input[type="email"], input[type="tel"], input[type="date"], input[type="time"], textarea {
    font-size: 14px;
  }
  .from-to-container, .date-time-container {
    flex-direction: column;
  }
  .from-to-container input[type="text"], .date-time-container input[type="date"], .date-time-container input[type="time"] {
    width: 100%;
  }
  #date-input, #time-input {
    width: 100%;
  }
  .submitbutton {
    padding: 5%;
  }
}



@media (max-height: 500px) {
  .hidden-container {
    padding: 1% 0.5%;
    max-height: 70vh;
  }
  .submitbutton {
    width: 80%;
    padding: 8px 16px;
  }
  input[type="text"], input[type="email"], input[type="tel"], input[type="date"], input[type="time"], textarea {
    font-size: 12px;
  }
}


/*CONTAINER  WELCOME*/
.welcome{
  background: linear-gradient(
      rgba(0, 0, 0, 0.1), 
      rgba(0, 0, 0, 0.1)
    ), url('images/heroimage.jpg') fixed;
  background-size: cover; 
  background-repeat: no-repeat; 
  background-position:center; 
  background-blend-mode: color-burn;
  text-align: center;
  padding-top: 27%;
  border-bottom: 1px solid #fff;
}
#title{
  filter: brightness(1.8);
  font-family: "Dosis", sans-serif;
  font-size: 5rem;
  font-weight: 450;
  text-shadow: 3px 2px #000;
  color:#fff;

}
#description{
  font-family: "Dosis", sans-serif;
  color:  #FFF;
  filter: brightness(1.3);
  font-weight: 400;
  font-size: 2.5rem;
  text-shadow: 3px 2px #000;
  letter-spacing: 3px;
}


/*CONTAINER  WHAT WE OFFER*/
.offers {   
  padding: 3%;
  background-color: #000;
  align-items: center;
  border-top: 1px solid #000;
  border-bottom: 1px solid #fff;
}

.offerscolumn {
  display: flex; 
  flex-direction: row;
  align-items: center; 
}

.offersrow{
  padding-left: 10%;
  width: auto;
  display: flex;
  align-items: center;
  justify-content: space-between; 
  width: 100%;
  text-align: center;
}

#offersicon {
  color: #c27f21db;
}

#offerstext {
  padding-left: 1%;
  padding-top: 3.5%;
  font-size: 1.1rem;
  font-weight: 550;
  color: #fff;
  font-family: "Dosis", sans-serif;
}


/*CONTAINER  ABOUT US */
.aboutus{
  padding: 1%;
    align-items: center;
    border-top: 2px solid #c27f21db;
    border-bottom: 2px solid #c27f21db;
    font-size: 1.2rem;
    font-family: "Dosis", sans-serif;
    color: #fff;
    background-color: #000;
}

 .readmore{
    text-decoration: none;
    width: 20%;
    padding: 1%;
    text-align: center;
    transition: 0.2s;
    background-size: 200% auto;
    color: white;
    border-radius: 5px;
    display: block;
    border: 0px;
    font-weight: 700;
    box-shadow: 0px 0px 14px -7px #f09819;
    background-image: linear-gradient(45deg, #FF512F 0%, #edb76ddb  51%, #FF512F  100%);
    cursor: pointer;
    user-select: none;
    -webkit-user-select: none;
    touch-action: manipulation;
}
.readmore:hover {
  background-position: center right;
  color: #fff;
  text-decoration: none;
}
.readmore:active {
    transform: scale(0.75);
  }


/*CONTAINER  HOW IT WORKS*/
.howitworks{
    padding: 5%;
    background-color: #000;
    border-bottom: 2px solid #c27f21db;
}
.steps{
    padding:  5%;
    font-family: "Dosis", sans-serif;
    background-color: #000;
    font-size: 1.2rem;
    color: #fff;
}
.icons{
    border-left: 1px solid #fff;
    font-family: "Dosis", sans-serif;
    text-align: center;
    color: #fff;
    display: flex;
    justify-content: space-evenly;
    flex-direction: column;
}
#icons{
    padding: 1%;
    font-size: 2rem;
}
#one, #two, #three, #four{
    display: flex;
    flex-direction: row;
    justify-items: center;
    text-align: center;
    padding: 5%;
    color: #c27f21db;
}
#icontext{
    padding: 1%;
    font-size: 1.3rem;
    color: #fff;
}


/*CONTAINER  QUICK RIDES*/
  .quickrides{
    display: flex;
    justify-content: space-around;
    padding: 1%;
    text-align: center;
  }

  .quickicons{
    justify-content: center;
    padding: 2%;
}
  #plane, #car, #quick, #ship{
    color: #c27f21db;
    padding-top: 3%;
    font-size: 2.5rem;
}

#icon-text{
    text-decoration: underline;
    font-family: "Dosis", sans-serif;
    font-size: 1.5rem;
    color: #000;
}

#icon-info{
    font-family: "Dosis", sans-serif;
    color: #000;
    font-size: 20px;    
}

.booknow{
    text-decoration: none;
    padding: 2%;
    transition: 0.2s;
    background-size: 200% auto;
    color: white;
    border-radius: 5px;
    width: 100%;
    border: 0px;
    font-weight: 500;
    box-shadow: 0px 0px 14px -7px #f09819;
    background-image: linear-gradient(45deg, #FF512F 0%, #edb76ddb  51%, #FF512F  100%);
    cursor: pointer;
    user-select: none;
    -webkit-user-select: none;
    touch-action: manipulation;
}
    .booknow:hover {
    background-position: right center;
    color: #fff;
    text-decoration: none;
}

           
/*CONTAINER  CONTACT*/
#map{
  border-radius: 0.5%;
}
.contact {
    height:auto;
    font-family: "Dosis", sans-serif;
    background-color: #fff;
    font-size: 1.2rem;
    padding-top: 5%;
    color: #000;
    border-bottom: 2px solid #c27f21db;
}

#contactus {
    text-align: center;
    text-decoration: underline 0.1px;
    font-family: "Dosis", sans-serif;
    font-size: 2rem;
    font-weight: 400;
    color: #000;
}


#contact-form{
    display: block;
    text-align: center;
    box-shadow: 0px 0px 15px 0px #000;
    padding: 30px 2px; 
    border-radius: 10px;
    width: 100%; 
    height: auto;
}





form input[type="text"],
form input[type="email"],
form input[type="tel"] {
    padding: 2%;
    border-radius: 10px;
    border: 1px solid #ccc;
    width: calc(100% - 22px); 
    margin-bottom: 15px; 
}

#contact-form textarea {
    border: 1px solid #ccc;
    padding: 1%;
    box-sizing: border-box;
    resize: none;
    width: calc(100% - 22px); 
    height: 150px;
}


.contactboxes {
padding: 0.5%;
display: flex;
flex-wrap: wrap;
text-align: center;
}

.contactboxesone,
.contactboxestwo,
.contactboxesthree {
    padding: 0.5%;
    background-color: #f5f5f5;
    display: grid;
    margin: 0.20%;
    width: auto;
    height: auto;
    box-shadow: 0px 0px 5px 0.5px #000;
}

#contacticon {
    color: #c09558db;
    font-size: 1.7rem;
}

#contactinfo {
    text-align: center;
    text-decoration: underline 0.9px;
    font-family: "Dosis", sans-serif;
    font-size: 1.4rem;
    font-weight: 500;
}

#contactinfos {
    text-align: center;
    font-family: "Dosis", sans-serif;
    font-size: 1.2rem;
    font-weight: 400;
}

#socialfollow{
  text-decoration: underline 0.1px solid #000;
  font-family: "Dosis", sans-serif;
  font-size: 2rem;
  font-weight: 400;
  color: #000;
}

.socialbuttons{
  padding: 1%;
  display:flex;
  justify-content: space-around;
}

#faa {
  border-radius: 50%;
  padding: 12px;          
  font-size: 20px;      
  height: 45px;          
  width: 65px;         
  text-align: center;
  text-decoration: none;
  opacity: 0.7;
}

  #faa:hover{
  opacity: 1;
  filter: brightness(1.1);
} 

.fa-facebook{
  background: #3B5998;
  color: white;}
.fa-facebook:hover{
  transform: scaleY(1.1);
  transition: 0.2s ease-out;}

.fa-google{
color: #022165;
box-shadow: 0px 1px 10px #000;
}

.fa-google:hover{
color: rgb(172, 83, 83);
transform: scaleY(1.1);
transition: 0.1s ease-in-out;
}


/*CONTAINER  REVIEWS*/
.reviews {
  text-align: center;
  background-color: #000;
  font-family: "Dosis", sans-serif;
  color: #fff; 
  padding: 3%;
  display: flex;
  flex-direction: column;
  align-items: center;
  border-bottom: 2px solid #c27f21db;
}

.reviewsrow {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between; 
  width: 100%;
  max-width: 70%; 
}

.review-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding-top: 3%;
  text-align: center;
  box-sizing: border-box;
  max-width: 300px;
  flex: 1; 
  margin: 20px; 
}

.reviewtext {
  font-size: 1.12rem;
}

#reviewtitle {
  text-decoration: overline 0.9px;
  font-size: 2rem;
}

#peoplesnames {
  font-size: 1rem;
}

.viagoogle {
  text-decoration: underline 1px solid #fff;
  color: #fff;
  font-size: 1.1rem;
}

.people {
  image-rendering: optimizeQuality;
  width: 100px;
  height: 100px;
  border-radius: 50%;
}

.stars {
  color: gold;
  font-size: 1.5em;
}

#safety{
  height: 300px;
  width: 300px;
  background: transparent;
  max-height: 100%;
  max-width:100%;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges; 
}


/*CONTAINER  MOBILE APP*/
.mobileapp{
  font-family: "Dosis", sans-serif;
  border-bottom: 2px solid #c27f21db;
}

#mp{
  height: 400px;
  image-rendering: optimizeQuality;
}

#gp{
  width: 150px;
  height: 150px;
  image-rendering: optimizeQuality;
  float: right;
}

#appone{
  font-size: 2.6rem;
  font-weight: 500;
}
#apptwo{
  font-size: 1.5rem;
  font-weight: 490;
}
#appthree{
  font-size: 1.1rem;
  font-weight: 500;
}

/*CONTAINER   PROTOCOLS*/
.protocols{
    display: flex;
    justify-content: space-between;
    font-family: "Dosis", sans-serif;
    background-color: #000;
    color: #fff;
    padding: 9%;
}

#protone{
  font-size: 2.1rem;
}
#prottwo{
  font-size: 1.2rem;
}


/*CONTAINER  FOOTER*/
.footer{
background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0.1, 0.1, 0, 0.55)), url(images/R.png);
background-color: #000;
background-position:top;
justify-content: center;
background-size:cover;
padding-top: 3%;
}
.footerbutton{
  display: flex;
  flex-direction: row;
  z-index: 99;
  top: 50px;
  justify-content: center;
  text-align: center;
  color: #fff;
  font-size: 1rem;
  font-family: "Dosis", sans-serif;
  text-decoration: none;
}
.footerbutton:hover{
  color: #c27f21db;
  transform: scaleY(1.3);
}
.bottomfooter {
  display: flex;
  justify-content: space-between; 
  width: 100%; 
  flex-wrap: wrap-reverse;
}
#copyright{
  padding-top: 1%;
  font-family: "Dosis", sans-serif;
  font-size: 1rem;
  color: #fff;
  text-shadow: 2px 1px #000;
}
#designcristian{
  padding-top: 1%;
  font-family: "Dosis", sans-serif;
  font-size: 1rem;
  color: #fff;
  text-shadow: 2px 1px #000;
}


#footertitles{
  text-align: center;
  font-size: 2rem;
  text-decoration: underline 0.5px solid #fff;
  color: #fff;
  font-family: "Dosis", sans-serif;
}
#footersection{
  padding: 3%;
  font-size: 1rem;
  color: #fff;
}

#bookingtermscontainer, #privacypolicycontainer, #termsandconditionscontainer, #cookiescontainer{
  display: none;
  padding-top: 1%;
  border-top: 2px solid #c27f21db;
}

.bookingterms, .privacypolicy, .termsandconditions, .cookies{
  background-color: #000;
  font-family: "Dosis", sans-serif;
}


























/*HIDDEN CONTAINERS////////////////////////////////////////////

/*CONTAINER  ABOUT US FULL*/ 
.aboutusfull {
    border-bottom: 2px solid #c27f21db;
    display: none; 
    background-color: #fff;
    color: #000;
    align-items: center;
    font-family: "Dosis", sans-serif;
}
#paragraphfull {
    font-size: 1.3rem;
    text-align: center;
    font-weight: 450;
}
#taxiservice {
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges; 
    width: 100%; 
    height: 100%; 
    max-width:100%;
    max-height:100%;
}

#servicetitle2{
    padding-top: 13%;
    text-align: center;
    font-size: 2.5rem;
    font-weight: 500;
    font-family: "Dosis", sans-serif;
    text-decoration: underline 0.9px;
}


/*CONTAINER  SERVICES*/
.ourservices{
    text-align: center;
    display: none;
    padding: 2%;
    justify-content: center;
}
#servicetitle{
    padding-top: 5%;
    font-size: 2.2rem;
    font-weight: 500;
    font-family: "Dosis", sans-serif;
    text-decoration: underline 0.9px;
}
#serviceimage{
    width: 100%;    
    height: 100%;
    padding-top: 5%;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges; 
}
.one, .two, .three, .four{
    padding: 3%;
}
.one, .two, .three{
  border-bottom: 0.5px solid #c27f21db;

}
#paragraph{
    font-size: 1.3rem;
    font-family: "Dosis", sans-serif;
    font-weight: 400;
}
.paragraph{
  font-size: 1.5rem;
}



/*CONTAINER  VEHICLES*/
#containerVehicles {
    display: none;
    border-bottom: 1px solid #c27f21db;
    font-family: "Dosis", sans-serif;
    padding-top: 5%;
    padding-bottom: 1%;
  }

  .vehiclesdescription{
    padding-top: 5%;
  }
  #vehiclestitle {
    text-decoration: underline 0.9px;
    text-align: center;
    font-size: 2.5rem;
  }
  #vehiclesinfo{
    padding-top: 3%;
    font-size: 1.3rem;
    font-weight: 500;
    text-align: center;
  }
    #overlaytitle{
    text-decoration: underline  0.1px;
    }
    #overlayinfo{
    font-size: 1.4rem;
    font-weight: 500;
    }
  .containercar, .containercars {
    box-shadow: 0px 0px 2px 0px #000;
    position: relative;
    overflow: hidden;
  }
  
  .image, .images {
    cursor: pointer;
    display: block;
    width: 100%;
    height: 700px;
    max-width: 100%;
    transition: transform 0.5s ease;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
  }
  
  .overlaycar, .overlays {
    box-shadow: 0px 0px 25px 0px #000;
    padding: 1%;
    cursor: pointer;
    position: absolute;
    bottom: 0;
    backdrop-filter: blur(50px);
    overflow: hidden;
    width: 100%;
    height: 100%;
    transform: translateX(0); 
    transition: transform 0.3s ease; 
  }
  
  .containercar .overlaycar {
    left: -100%; 
  }
  
  .containercars .overlays {
    right: -100%; 
  }
  
  .slider-container {
    display: flex;
  }
  
  .slider-container .col-lg-5 {
    flex: 0 0 50%; 
  }
  
  .containercar:hover .overlaycar {
    transform: translateX(100%);
  }
  
  .containercars:hover .overlays {
    transform: translateX(-100%); 
  }
  
  .text, .texts {
    color: white;
    font-size: 1.5rem;
    position: relative;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    box-sizing: border-box;
    max-width: 100%;
    opacity: 0;
    transition: opacity 0.5s ease; 
  }
  
  .containercar:hover .overlaycar .text,
  .containercars:hover .overlays .texts {
    opacity: 1; 
  }
  










































/**TOP BUTTON**/
#myButton {
    display: none;
    position: fixed;
    bottom: 45px;
    color: #a76f40;
    z-index: 99;
    font-size: 2.8rem;
    background: transparent;
    border: 0;
    opacity: 1;
    width: auto;
    height: auto;
    left: 98%;
    transform: translateX(-50%) translateY(35%);
    cursor: pointer;
}
#myButton:hover{
    opacity: 0.9;
    color: gold;
}


/**RESPONSIVE ADJUSTMENTS******************************************************************************************************************************************************/
/*burger menu & 1500px***********************************************/   
@media(max-width: 1500px){ 
    .nav-bar .callbutton {
    margin-right: 55%;
    }
    .hidden-container {
      width: 50%;
    }
    .welcome{
    background:linear-gradient(
            rgba(0, 0, 0, 0.1), 
            rgba(0, 0, 0, 0.1)
          ), url('images/heroimage.jpg') fixed;
    background-size: cover;
    padding-top: 25%;
    }
    #title{
    letter-spacing: 0;
    }
    #description{
    margin-top: 1%;
    }
    .one, .two, .three{
        padding: 10%;
        }
 
    .menu{
        background-color: rgba(0, 0, 0, 0.5); 
        backdrop-filter: blur(20px);
        border-left: 0.1px solid #fff;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        width: 50%;
        height: 100vh;
        position: fixed;
        top: 0;
        right: -100%;
        z-index: 100;
        transition: all 0.26s ease-in-out;
    }
    .menu li {margin-top: 40px;}
    .menu li a {padding: 10px;}
    .open-menu , .close-menu {display: block; position: absolute;}
    #check:checked ~ .menu {right: 0;
        background-color: rgba(0, 0, 0, 0.8); 
    }
.readmore{
    width: 30%;
}

}
/*max 991px***********************************************/
@media (max-width: 992px){
  .booknow{
    padding: 1.5%;
}
#icon-text{
  font-size: 1.6rem;
}
.quickcontainers{
    padding: 1%;
    margin: 5%;
}
#icon-text{
  font-size: 1.5rem;
}
#icon-info{
font-size: 21px;
}
.review-card {
  flex: 1 1 calc(50% - 40px);
}
}
/*max 1000px***********************************************/
@media (max-width: 1000px){
    .nav-bar .callbutton {
        margin-right: 55%;
        }
        .hidden-container {
          width: 80%;
          padding: 3%;
        }
    .welcome{
        padding-top: 40%;
      background-repeat: no-repeat; 
           background-size: auto;
           background-position: center;
  }
    #title{
        font-size: 4rem;
        letter-spacing: 0;
        }
        #description{
       font-size: 2rem;
        }
        #offerstext{
        font-size: 1.15rem;
        }
        #myButton{
        left: 95%;
        }
        form input[type="text"],
        form input[type="email"],
        form input[type="tel"] {
            padding: 2%;
            border-radius: 10px;
            border: 1px solid #ccc;
            width: calc(100% - 22px); 
            
        }
        #contact-form{
          height: auto;
          width: 100%;
        }
}

/*max 600px***********************************************/
@media (max-width: 600px){
    .nav-bar .callbutton {
        margin-right: 35%;
        }
        .welcome{
        padding-top: 80%;
        }
        #title{
        font-size: 2.9rem;
        letter-spacing: 0;
        }
        #description{
        font-size: 1.9rem;
        }
         .icons{
        border: 0;
        }
        .offersone{
            border-bottom: 1px solid #000;
        }
 
        
}

@media (max-width: 768px) {
  .welcome{
        padding-top: 40%;
      background-repeat: no-repeat; 
           background-size: auto;
           background-position: center;

  }
    .review-card {
        flex: 1 1 100%;
    }
          .offers {   
            display: grid;
                  }
                  #offerstext{
                    font-size: 1.1rem;
                  }
}
    





        @media screen and (max-width: 480px) {

          .menu li {
              font-size: 0.9rem;
              padding: 6px 8px;
          }
          .close-menu {
              font-size: 2rem;
          }
      
          .open-menu {
              font-size: 2rem;
          }
          #title{
            font-size: 2.5rem;
            padding-top: 10%;
          }
          #description{
            font-weight: 550;
            font-size: 1.3rem;
            text-shadow: none;
            letter-spacing: 2px;
          }
                 .welcome{
            padding-top: 63%;
            background: linear-gradient(
      rgba(0, 0, 0, 0.1), 
      rgba(0, 0, 0, 0.1)
    ), url('/images/heroimagesmall.jpg');
           background-repeat: no-repeat; 
           background-size: 100%;
           background-position: auto;
}
          #servicetitle, #servicetitle2{
            font-size: 1.5rem;
            text-decoration: underline;
          }
          .quickcontainers{
            padding:5%;
          }
    
          #paragraph{
            font-size: 1.1rem;
          }
          #icontext{
            font-size: 1.1rem;
          }
          #icons{
            font-size: 1.5rem;
          }
             .icons{
        border: 0;
        }
          #plane, #car, #quick, #ship{
            font-size: 2.3rem;
          }
          #icon-text{
            font-size: 1.3rem;
          }
          #icon-info{
            font-size: 17px;
          }
          .booknow{
            padding: 2.5%;
          }
          .socialbuttons{
            text-align: center;
            padding: 3%;
            display: flex;
            justify-content: center;
          }
          #qck{
            border-bottom: 1px solid #000;
          }
          .readmore{
            padding: 1%;
          }
          .contact{
          padding: 5%;
          display: flex;
          flex-wrap: wrap-reverse;
        }
          .contactboxes {
            display: grid;
            flex-wrap: wrap-reverse;
            padding: 6%;
        }
          .two{
        flex-direction: column-reverse;
      }
      #reviewtitle{
        padding-top: 3%;
        font-size: 1.1rem;
        text-decoration: underline;
      }
      .reviewsrow {
        justify-content: center;
      }
      .reviewtext{
        font-size: 1rem;
      }
      .paragraph{
        font-size: 1.3rem;
      }
      #socialfollow{
        text-decoration: underline 1px solid #000;
        font-size: 2rem;
      }
      #faa {
        height: 50px; 
        width: 50px;  
        border-radius: 50%; 
        text-align: center;
        display: flex;
        justify-content: center; 
        align-items: center; 
    }
      .mobileapp{
        text-align: center;
        height: 65%;
        padding: 0.5%;
      }
      #mp{
        height: 200px;
        image-rendering: optimizeQuality;
      }
      #appone{
        font-size: 2rem;
      }
      #apptwo{
        font-size: 1.15rem;
      }
      #appthree{
        font-size: 1rem;
      }
      #protone{
        font-size: 1.5rem;
      }
      #prottwo{
        font-size: 1rem;
      }
      #footertitles{
        font-size: 1.5rem;
      }
      .bottomfooter{
        display: grid;
        justify-content: space-around;
      }
      #copyright{
        font-size: 0.85rem;
        text-align: center;
      }
      #designcristian{
        font-size: 0.85rem;
        text-align: center;
      }
      #myButton {
        left: 90%;
        bottom: 25px;
      }
      #overlaytitle{
        text-decoration: underline;
        }
        #overlayinfo{
        font-size: 1.2rem;
        font-weight: 500;
        }
        #vehiclestitle {
          text-decoration: underline;
          font-size: 1.7rem;
        }
        #vehiclesinfo{
          font-size: 1.2rem;
        }
        #servicetitle2{
          font-size: 1.8rem;
        }
        #paragraphfull {
          font-size: 1.1rem;
      }
       .menu{
        backdrop-filter: blur(25px);
        width: 50%;
       }
       .overlaycar, .overlays {
          position: absolute;
          bottom: 0;
          background: #000;
          overflow: auto;
       }
          
       .hidden-container {
        width: 95%;
        max-width: 100%;
        height: auto;
        max-height: auto;
        padding: 5%;
      }
      .close-button {
        right: 0px;
        top: 0px;
        font-size: 2.2rem;
      }
    
      input[type="text"], input[type="email"], input[type="tel"], input[type="date"], input[type="time"], textarea {
        font-size: 1rem;
      }
          
          
      }
