/* -------------------------------------------------------------- */
/* Varibles */
/* -------------------------------------------------------------- */

:root {
  --Blue1: #03045E;
  --Blue2: #023E8A;
  --Blue3: #0077B6;
  --Blue4: #0096C7;
  --Blue5: #00B4D8;
  --Blue6: #48CAE4;
  --Blue7: #90E0EF;
  --Blue8: #ADE8F4;
  --Blue9: #CAF0F8;
  --White: #FFFFFF;
  --padding-100: 100px;
}

/* -------------------------------------------------------------- */
/* Global Rules */
/* -------------------------------------------------------------- */

html {
  scroll-behavior: smooth;
}

* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  text-decoration: none !important;
  /* direction: rtl; */
}

ul {
  margin: 0 !important;
}

body {
  /* font-family: is in body inline style */
  padding: 0;
  margin: 0;
  background-color: palegreen
}



.container {
  padding-left: 15px;
  padding-right: 15px;
  margin-left: auto;
  margin-right: auto;
}


/*  Small  */

@media (min-width: 768px) {
  .container {
    width: 750px;
  }
}

/* Medium */

@media (min-width: 992px) {
  .container {
    width: 970px;
  }
}

/* Larg */

@media (min-width: 1200px) {
  .container {
    width: 1170px;
  }
}


/* -------------------------------------------------------------- */
/* components */
/* -------------------------------------------------------------- */

/* scroll track */
::-webkit-scrollbar {
  width: 12px;
}

::-webkit-scrollbar-track {
  background-color: var(--Blue8);
}

::-webkit-scrollbar-thumb {
  background-color: var(--Blue5);
}

::-webkit-scrollbar-thumb:hover {
  background-color: var(--Blue1);
}

/* scroll track */
/* burger */

/* burger */
.circul-style {
  border: none;
  background-color: transparent;
  position: relative;
  overflow: hidden;
  transition: .6s;
  font-size: 21px;
  padding: 10px 20px;
  color: var(--Blue9);
}

.circul-style:hover {
  color: white;
}

.circul-style::before,
.circul-style::after {
  transition: bottom .6s, border-radius 1s ease;
  content: '';
  left: 0;
  bottom: 0;
  width: 100%;
  height: 120%;
  position: absolute;
  z-index: -1;
}

.circul-style::before {
  background-color: var(--Blue1);
  border-radius: 100% 100% 10% 10% / 90% 90% 10% 10%;
  bottom: -200%;
}

.circul-style:hover::before {
  border-radius: 0% 0% 10% 10% / 90% 90% 10% 10%;
  bottom: -10%;
}

.circul-style::after {
  background-color: var(--Blue4);
  z-index: -2;
}

.special-heading {
  color: #ebeced;
  font-size: 100px;
  text-align: center;
  font-weight: 800;
  letter-spacing: -3px;
  margin: 0;
}

.special-heading+p {
  margin: -30px 0 0;
  font-size: 20px;
  text-align: center;
  color: #797979;
}

@media (max-width: 767px) {
  .special-heading {
    font-size: 60px;
  }

  .special-heading+p {
    margin-top: -20px;
  }
}

/* -------------------------------------------------------------- */
/* header */
/* -------------------------------------------------------------- */

.contact-buttons {
  position: fixed;
  left: -80px;
  bottom: 100px;
  padding: 20px;
  z-index: 100;
  rotate: -90deg;
}

.header-hero {
  position: relative;
  height: 100vh;
  align-items: end;
}

.header {
  height: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 300;
  background-color: var(--White);
  transition: transform 0.3s ease;
}



.header.hidden {
  transform: translateY(-100%);
}

.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

ul li {
  list-style: none;
}

.header .logo {
  width: 100px;
}

.header ul {
  display: flex;
}

.header ul li {
  margin-right: 15px;
  position: relative;
  font-size: 21px;
}

.header ul li a {
  color: var(--Blue1);
}

.header ul li a:hover {
  color: var(--Blue5);
}

.header ul li::before {
  content: '';
  position: absolute;
  width: 0%;
  height: 2px;
  background-color: var(--Blue5);
  bottom: 0;
  transition: 1s width;
}

.header ul li:hover::before {
  width: 105%;
  transition: .3s width;
}

.header .fa-bars {
  display: none;
}

@media (max-width: 767px) {
  .header .fa-bars {
    display: block;
    cursor: pointer;
    font-size: 25px;
  }

  .fa-bars:hover {
    color: var(--Blue3);
  }

  .header .links {
    position: fixed;
    height: 100vh;
    width: 100%;
    top: 0;
    left: 0;
    background-color: var(--White);
    z-index: 0;
    transform: translate(-120%, 8.5%);
    z-index: -1;
    transition: .4s ease-in;
    opacity: 0;
  }

  .header .show {
    transform: translate(0%, 8.5%);
    opacity: 1;
  }

  .header .links ul {
    display: flex;
    flex-direction: column;
    width: 100%;
    align-items: flex-start;
    margin: 0 auto;
    padding: 0;
  }

  .header .links ul li {
    height: 100%;
    margin: 20px;
    display: grid;
    place-items: center;
    font-size: 30px;
  }

}

/* -------------------------------------------------------------- */
/* carousel */
/* -------------------------------------------------------------- */

.carousel-indicators {
  padding: 0;
}


.carousel-container {}


.carousel-item {
  position: relative;
  height: 100vh;
  overflow: hidden;

}

.carousel {
  height: 100vh;
}


.carousel-inner {
  height: 100vh;
}

.banner {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  display: grid;
  align-items: center;
  justify-items: center;
  grid-template-columns: repeat(2, 1fr);
  padding: 0 60px;
}

.about-banner {
  padding-right: 40px;
}

.about-banner .about-header {
  color: var(--Blue9);
  font-size: 5vw !important;
}

.about-banner .about h3 {
  color: var(--Blue8);
}

.about-banner .about h4 {
  color: var(--Blue7);
}

.about-banner .massage-rate p {
  color: white;
}

.about-banner .massage-rate p span {
  color: var(--Blue7);
}

.about-banner .massage-rate .stars {
  /* display: flex; */
  color: var(--White);
  margin-bottom: 10px !important;
  padding: 0;
}

.massage-rate p {}


.carousel-item .banner-img {
  object-fit: cover;
  object-position: center;
  width: 100%;
  height: 100%;
}

.banner .image {
  padding-left: 40px;
}

.banner .image img {
  object-fit: cover;
  object-position: center;
  width: 100%;
  height: 100%;
}

.carousel-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #03045ec2;
  mix-blend-mode: multiply;
}



@media (max-width: 1200px) {
  .banner {
    padding: 0;
    justify-content: center;
  }

  .about-banner .about-header {
    font-size: 41px !important;
  }

  .about-banner {
    padding: 0px;
  }

  .banner .image {
    width: 80%;
    padding: 0px;
  }
}

@media (max-width: 900px) {
  .banner {
    grid-template-columns: repeat(auto-fill, minmax(500px, 400px));
    direction: ltr;
  }

  .about-banner {
    text-align: center !important;
  }



  .banner .image {
    width: 70%;
  }
}

/* -------------------------------------------------------------- */
/* lahon-services */
/* -------------------------------------------------------------- */

.lahon-services {
  padding-top: var(--padding-100);
  padding-bottom: var(--padding-100);
  /* height: 100vh; */
}

.services-header {
  text-align: center;
  font-size: 60px;
  font-weight: 700;
  color: var(--Blue2);
}

.services-header span {
  color: var(--Blue3);
}

.cart-container {
  padding-top: var(--padding-100);
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  justify-items: center;
  gap: 50px;
}

.services-cart {
  width: 500px;
  height: 500px;
}

.services-cart .image {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.services-cart .image .cart-image {
  object-fit: cover;
  object-position: center;
  width: 100%;
  height: 100%;
  vertical-align: baseline;
}

.cart-section {
  position: absolute;
  background-color: hsla(214, 97%, 27%, 0.850);
  padding: 50px;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: 1;
  transition: top .4s ease-in-out;
  top: -100%;
}

.services-cart:hover .cart-section {
  top: 0;
}

.cart-icon {
  display: flex;
  align-items: center;
}

.cart-icon i {
  font-size: 60px;
  margin-left: 20px;
  margin-bottom: 20px;
  color: var(--Blue6);
}

.cart-icon h3 {
  color: var(--Blue9);
  font-size: 25px;
  font-weight: 400;
}

.cart-section {
  color: var(--Blue8);
}

.cart-footer {
  color: var(--White);
  position: absolute;
  width: 100%;
  height: 25%;
  background-color: hsla(214, 97%, 27%, 0.700);
  left: 0;
  bottom: -10px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: bottom .5s ease-in-out .2s;
}

.services-cart:hover .cart-footer {
  bottom: -100%;
}

@media (max-width: 1200px) {
  .services-cart {
    width: 350px;
    height: 350px;
  }

  .cart-container {
    row-gap: 50px;
  }
}

/* -------------------------------------------------------------- */
/* contact */
/* -------------------------------------------------------------- */

.contact {
  padding-top: var(--padding-100);
  padding-bottom: var(--padding-100);
  background-color: #caf0f847;
  position: relative;
}

.contact-logo {
  width: 250px;
  position: absolute;
  left: 0;
  top: 0;
}

@media (max-width:900px) {
  .contact-logo {
    display: none;
  }
}

.contact .main-heading h3 {
  color: var(--Blue1);
}

.contact .main-heading h4 {
  color: var(--Blue2);
}

.contact .main-heading p {
  color: gray;
}

.contact .content {
  display: flex;
  justify-content: space-between;
}

.contact .content form {
  flex-basis: 70%;
}

.contact .content form .main-input {
  padding: 20px;
  display: block;
  border: 1px solid #ccc;
  margin-bottom: 30px;
  width: 100%;
}

.contact .content form .main-input:focus {
  outline: none;
}

.contact .content form textarea.main-input {
  height: 200px;
  resize: none;
}

.contact .content .info {
  flex-basis: 25%;
}

.contact .content .info h4 {
  font-weight: normal;
  font-size: 21px;
  margin-bottom: 30px;
  font-weight: 400;
}

.contact .content .info span {
  font-size: 21px;
  font-weight: 300;
  cursor: pointer;
}

.contact .content .info span i {
  font-size: 31px;
}

.contact .content .info span:hover {
  color: var(--Blue2);
}

.contact .content .info h4:last-of-type {
  margin-top: 80px;
}

.contact .content .info address {
  line-height: 2;
  color: #777;
}

.contact .submit {
  position: relative;
  z-index: 1;
}

@media (max-width: 767px) {
  .contact .content {
    flex-direction: column-reverse;
  }

  .contact .main-heading {
    text-align: center;

  }

  .contact .content .info {
    text-align: center;
    margin-bottom: 40px;
  }

}

/* -------------------------------------------------------------- */
/* footer */
/* -------------------------------------------------------------- */

.footer {
  padding-top: 50px;
  padding-bottom: 50px;
  background-color: var(--Blue2);
  color: white;
}

.footer-contact-container {
  display: flex;
  justify-content: space-between;
}

.footer-contact-container .flex-item {
  flex: 1;
  text-align: center;
}

.footer-contact-container .flex-item:first-child {
  text-align: right;
}

.footer-contact-container .flex-item:last-child {
  text-align: left;
}


.footer .contact-info a {
  color: var(--White);
  cursor: pointer;
}

.footer .contact-info a:hover {
  color: var(--Blue5);
}

.social-media {
  color: var(--White);
}

.social-media i {
  color: var(--White);
  border: 1px solid var(--White);
  margin: 5px;
  padding: 10px;
  transition: .2s;
}

.social-media i:hover {
  background-color: var(--White);
  color: var(--Blue2);
}

.footer-of-footer {
  text-align: center;
}

.footer-of-footer p:last-child {
  margin: 0;
}

.footer-of-footer p:last-child a {
  color: var(--Blue8);
  text-decoration: underline !important;
}

.footer-of-footer p:last-child a:hover {
  color: var(--Blue5);
}

@media (max-width: 767px) {
  .footer-contact-container {
    flex-direction: column;

  }

  .footer-contact-container .flex-item:first-child {
    text-align: center;
  }

  .footer-contact-container .flex-item:last-child {
    text-align: center;
  }

  .footer {
    text-align: center;
  }

  .social-media {
    margin: 20px;
  }
}