@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@200;300;400;500;600;700;800&display=swap');

/***
====================================================================
  Reset
====================================================================
 ***/
* {
  margin:0px;
  padding:0px;
  border:none;
  outline:none;
}

/***
====================================================================
  Global Settings
====================================================================
 ***/

body {
  font-family: 'Montserrat', sans-serif;
  background: #edf1f7;
}

a{
  text-decoration:none;
  transition:all 500ms ease;
  -moz-transition:all 500ms ease;
  -webkit-transition:all 500ms ease;
  -ms-transition:all 500ms ease;
  -o-transition:all 500ms ease;
}

.navbar-nav .nav-item>a {
  margin: 0;
  padding: 0 13px;
  display: inline-block;
  float: none;
  width: 100%;
  color: #232323;
  font-size: 14px;
  font-weight: 600;
  line-height: 50px;
  position: relative;
  text-transform: uppercase;
}

header {
  box-shadow: 3px 3px 9px rgba(164,164,186,0.2);
  background: #edf1f7;
}

.callnow-btn {
  font-weight: 600;
  color: #ee1e77;
  line-height: 25px;
}

/*1st*/
.home {
  position: relative;
  /*overflow: hidden;*/
  background: url("banner.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  margin-bottom: 150px;
}

.home-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 420px;
  width: 100%;
  padding: 40px 0 0px;
  position: relative;
  z-index: 3;
}

.home-title {
  position: relative;
  z-index: 2;
  color: #ffffff;
  font-weight: 600;
  font-size: 30px;
  margin-bottom: 0;
  line-height: 50px;
  text-transform: uppercase;
}

.home-title2 {
  position: relative;
  z-index: 2;
  color: #fafafa;
  font-weight: 600;
  font-size: 22px;
  margin-bottom: 0;
  line-height: 40px;
  text-transform: uppercase;
  background: -webkit-linear-gradient(64deg, #ee1e77, #338fc8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.home-text {
  position: relative;
  z-index: 2;
  color: #c1c1c1;
  font-size: 16px;
  line-height: 28px;
  margin-bottom: 0;
  margin-top: 15px;
}

.title {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  margin-bottom: 5px;
  margin-top: 40px;
}

.title h2 {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  font-weight: 500;
  color: #33334f;
  font-size: 28px;
  line-height: 38px;
  margin-bottom: 0;
  position: relative;
}

.link {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  font-size: 14px;
  color: #4e5d78;
  font-weight: 500;
  margin-bottom: 5px;
  text-decoration: none;
  transition: 0.5s ease;
  transition-property: color, background-color, border-color, box-shadow;
}

.link:hover {
  color: #33334f;
}

.link svg {
  width: 18px;
  height: auto;
  fill: #4e5d78;
  margin-left: 5px;
  transition: fill 0.5s ease;
  margin-right: -3px;
  margin-top: 2px;
}

.link:hover svg {
  fill: #189cf4;
}


@media (min-width: 768px) {
  /*.home:before {*/
  /*  content: '';*/
  /*  position: absolute;*/
  /*  z-index: 1;*/
  /*  border-radius: 24px;*/
  /*  background-image: linear-gradient(90deg, #6cc4ff 6%, #189cf4);*/
  /*  pointer-events: none;*/
  /*  overflow: hidden;*/
  /*  left: 66%;*/
  /*  right: -40px;*/
  /*  top: 25px;*/
  /*  bottom: 40px;*/
  /*}*/

  .home__bg {
    display: block;
    position: absolute;
    z-index: 2;
    border-radius: 24px;
    overflow: hidden;
    right: -40px;
    left: 66%;
    top: 25px;
    bottom: 40px;
    background: url(banner.png) no-repeat center/cover;
    pointer-events: none;
  }

  .home__content {
    padding: 70px 0;
  }

  .home__content {
    padding: 70px 0;
  }
}

@media (min-width: 1200px) {
  /*.home:before {*/
  /*  right: 40px;*/
  /*  left: 50%;*/
  /*}*/

  .home__bg {
    right: 40px;
    left: 50%;
  }

  .home__content {
    height: calc(100vh - 70px);
  }
}
/*1st end*/

/*2nd start*/
.car {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  border-radius: 20px;
  position: relative;
  margin-bottom: 32px;
  padding: 10px;
  background: linear-gradient(1turn, #f1f6fd 30%, #edf1f7);
  box-shadow: 3px 3px 9px rgba(164,164,186,0.2);
  border: 1px solid #fff;
}

.carimage {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  background-color: transparent;
  border-radius: 16px;
  margin-bottom: 20px;
  overflow: hidden;
  position: relative;
}

.car-title {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  position: relative;
  width: 100%;
  padding: 0 10px;
}

.car-name {
  font-size: 22px;
  line-height: 30px;
  color: #33334f;
  margin-bottom: 0;
  font-weight: 500;
  padding-right: 70px;
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
  word-wrap: break-word;
}

.car-whatsapp {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  height: 30px;
  padding: 0 12px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 600;
  border: 2px dashed rgb(63 187 136 / 58%);
  position: absolute;
  right: 10px;
}

.car-whatsapp:hover {
  background: rgb(118 201 167 / 60%);
}

.car-whatsapp:hover path {
  fill: #00af5e !important;
}

.car-list {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
  width: 100%;
  padding: 0 10px 0px;
  margin-top: 5px;
  list-style: none;
  gap: 10px;
}

.car-list li {
  display: flex;
  align-items: center;
}

.car-list svg {
  width: 20px;
  height: 20px;
  color: #189cf4;
  margin-right: 6px;
}

.car-footer {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 20px 10px 10px;
  margin-top: 10px;
  position: relative;
}

.car-footer:before {
  content: '';
  position: absolute;
  top: 0;
  left: 10px;
  right: 10px;
  height: 1px;
  background-color: rgba(138,148,166,0.22);
}

.car-price {
  font-size: 24px;
  line-height: 100%;
  font-family: 'Nunito', sans-serif;
  font-weight: 400;
  color: #33334f;
}

.car-price sub {
  font-size: 14px;
  bottom: 0;
  font-weight: 400;
}

.car-phone {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  height: 36px;
  width: 36px;
  border-radius: 12px;
  background-color: rgb(244 24 24 / 12%);
  color: #ee1e77;
  margin-left: auto;
  margin-right: 15px;
}

.car-phone:hover {
  color: #ee0052;
}

.car-book {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  position: relative;
  font-size: 14px;
  color: #fff;
  font-weight: 600;
  background-color: #189cf4;
  height: 36px;
  padding: 0 16px;
  border-radius: 12px;
  transition: 0.5s ease;
  transition-property: color, background-color, border-color, box-shadow, transform, margin-top, height;
}

.car-book:hover {
  background-color: #0080d7;
  color: #ffffff;
}
/*2nd end*/

/*3rd start*/

.box {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  flex-wrap: wrap;
  position: relative;
  margin-bottom: 24px;
  padding: 20px;
  border-radius: 20px;
  background: linear-gradient(1turn, #f1f6fd 30%, #edf1f7);
  border: 1px solid #fff;
  box-shadow: 3px 3px 9px rgba(164,164,186,0.2);
}

.box-icon {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  border-radius: 14px;
}

.box-icon svg {
  fill: #189cf4;
  width: auto;
  height: 30px;
}

.box.first .box-icon {
  background-color: rgba(210,55,135,0.2);
}
.box.second .box-icon {
  background-color: rgba(24,156,244,0.2);
}
.box.third .box-icon {
  background-color: rgba(41,180,116,0.2);
}
.box.four .box-icon {
  background-color: rgba(128,81,212,0.2);
}
.box.first .box-icon svg {
  fill: #d23787;
}
.box.second .box-icon svg {
  fill: #189cf4;
}
.box.third .box-icon svg {
  fill: #29b474;
}
.box.four .box-icon svg {
  fill: #8051d4;
}

.box-title {
  font-size: 18px;
  line-height: 24px;
  font-weight: 400;
  color: #33334f;
  margin-bottom: 0;
  margin-top: 20px;
}

.box-text {
  display: block;
  width: 100%;
  font-size: 16px;
  line-height: 26px;
  color: #4e5d78;
  margin-bottom: 0;
  margin-top: 15px;
}

/*3rd end*/

/*4th start*/

.footer {
  margin-top: 80px;
  background-color: #e5eaf2;
  padding-top: 20px;
  position: relative;
  overflow: hidden;
}

.footer-logo {
  margin-top: 50px;
}

.footer-logo img {
  width: auto;
  height: 50px;
  display: block;
  margin-bottom: 20px;
}

.footer-tagline {
  margin-top: 10px;
  display: block;
  font-size: 14px;
  line-height: 24px;
  /*color: #4e5d78;*/
  color: #212529;
  margin-bottom: 0;
}

.footer-title {
  display: block;
  margin-top: 50px;
  font-size: 16px;
  color: #33334f;
  font-family: 'Nunito', sans-serif;
  font-weight: 600;
  margin-bottom: 15px;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
}

.footer-nav a {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 12px;
  color: #4e5d78;
  font-family: 'Nunito', sans-serif;
  font-weight: 400;
}

.footer-content {
  position: relative;
  margin-top: 60px;
  padding: 0 20px 20px;
  background: linear-gradient(1turn, #f1f6fd 30%, #edf1f7);
  box-shadow: 3px 3px 9px rgba(164,164,186,0.2);
  border: 1px solid #fff;
  border-bottom: none;
  border-radius: 20px 20px 0 0;
}

.footer-social {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  flex-wrap: wrap;
  width: 100%;
}

.footer-copyright {
  display: block;
  font-size: 14px;
  color: #4e5d78;
  margin-top: 20px;
  font-family: 'Nunito', sans-serif;
  font-weight: 400;
}

.footer-copyright a {
  color: #4e5d78;
}

.footer-social a {
  margin-top: 0px;
  margin-right: 20px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 20px;
  height: 20px;
  position: relative;
}

.footer-social a svg {
  width: 100%;
  height: auto;
  fill: #4e5d78;
  transition: fill 0.5s ease;
}

.navbar-toggler {
  color: #000;
}

.navbar-toggler svg {
  width: 30px;
}

.navbar-toggler:focus, .navbar-toggler:active {
  outline: none !important;
  border: 0 !important;
}

.book-btn {
  width: max-content;
  height: 46px;
  padding-inline: 20px;
  border-radius: 16px;
  background-color: #189cf4;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-size: 14px;
  position: relative;
  z-index: 2;
  text-transform: uppercase;
  font-family: 'Nunito', sans-serif;
  font-weight: 600;
}

.book-btn:hover {
  color: #fff;
  background-color: #0590ed;
}

.wedding-cars-clz {
  margin-bottom: -150px;
}

.float-whatsapp-btn {
  position:fixed;
  width:60px;
  height:60px;
  line-height: 60px;
  bottom:40px;
  right:40px;
  background-color:#25d366;
  color:#FFF;
  border-radius:50px;
  text-align:center;
  box-shadow: 2px 2px 3px #999;
  z-index:100;
}

@media (min-width: 768px) {
  .footer-content {
    margin-top: 70px;
    padding: 30px 20px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width: 100%;
  }
  .footer-social {
    width: auto;
    order: 2;
  }
  .footer-copyright {
    margin-top: 0;
    order: 1;
  }
}

@media (max-width: 767px) {
  .weserve .footer-title, .footer-logo, .footer-content, .footer-title {
      margin-top: 30px;
  }

  .title h2 {
    font-size: 20px;
  }

  .title {
    margin-top: 30px;
  }

  .footer {
    margin-top: 40px;
  }

  .car-list li {
    font-size: 14px;
  }

  .car-name {
    font-size: 20px;
  }

  .home__content {
    min-height: auto;
    padding: 40px 0 20px;
  }

  .home__title {
    font-size: 24px;
    line-height: 36px;
  }

  .navbar-brand img {
    width: 150px;
  }

  .navbar-brand {
    margin-right: 0;
  }

  .navbar-nav .nav-item>a {
    line-height: 40px;
  }

  .navbar-nav {
    margin-top: 10px;
  }

  .home-title {
    font-size: 18px;
    line-height: 36px;
  }

  .home-text {
    font-size: 15px;
  }

  .footer-social {
    justify-content: center;
    align-items: center;
  }

  .footer-copyright {
    text-align: center;
  }

  .wedding-cars-clz {
    margin-bottom: -50px;
  }

  .home {
    margin-bottom: 50px;
  }

  .home-content {
    padding: 40px 0 30px;
  }

  .home-title2 {
    font-size: 18px;
    line-height: 30px;
  }

  .footer-social a {
    margin-top: 20px;
  }

}