/*! HTML5 Boilerplate v9.0.1 | MIT License | https://html5boilerplate.com/ */

/* main.css 3.0.0 | MIT License | https://github.com/h5bp/main.css#readme */
/*
 * What follows is the result of much research on cross-browser styling.
 * Credit left inline and big thanks to Nicolas Gallagher, Jonathan Neal,
 * Kroc Camen, and the H5BP dev community and team.
 */

/* ==========================================================================
   Base styles: opinionated defaults
   ========================================================================== */

*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html,body {
  color: #222;
  font-size: 1em;
  line-height: 1.4;
  scroll-behavior: smooth;
  font-family: 'Poppins', sans-serif;
}
img {
  width: 100%;
  height: auto;
}
/*
 * Remove text-shadow in selection highlight:
 * https://twitter.com/miketaylr/status/12228805301
 *
 * Customize the background color to match your design.
 */

::-moz-selection {
  background: #b3d4fc;
  text-shadow: none;
}

::selection {
  background: #b3d4fc;
  text-shadow: none;
}

/*
 * A better looking default horizontal rule
 */

hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #ccc;
  margin: 1em 0;
  padding: 0;
}

/*
 * Remove the gap between audio, canvas, iframes,
 * images, videos and the bottom of their containers:
 * https://github.com/h5bp/html5-boilerplate/issues/440
 */

audio,
canvas,
iframe,
img,
svg,
video {
  vertical-align: middle;
}

/*
 * Remove default fieldset styles.
 */

fieldset {
  border: 0;
  margin: 0;
  padding: 0;
}

/*
 * Allow only vertical resizing of textareas.
 */

textarea {
  resize: vertical;
  font-family: 'Poppins', sans-serif;
}

/* ==========================================================================
   Author's custom styles
   ========================================================================== */

/* ==========================================================================
   Helper classes
   ========================================================================== */

/*
 * Hide visually and from screen readers
 */

.hidden,
[hidden] {
  display: none !important;
}
.hidden1{
  display: none;
}
/*
 * Hide only visually, but have it available for screen readers:
 * https://snook.ca/archives/html_and_css/hiding-content-for-accessibility
 *
 * 1. For long content, line feeds are not interpreted as spaces and small width
 *    causes content to wrap 1 word per line:
 *    https://medium.com/@jessebeach/beware-smushed-off-screen-accessible-text-5952a4c2cbfe
 */

.visually-hidden {
  border: 0;
  clip: rect(0, 0, 0, 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  white-space: nowrap;
  width: 1px;
  /* 1 */
}

/*
 * Extends the .visually-hidden class to allow the element
 * to be focusable when navigated to via the keyboard:
 * https://www.drupal.org/node/897638
 */

.visually-hidden.focusable:active,
.visually-hidden.focusable:focus {
  clip: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  position: static;
  white-space: inherit;
  width: auto;
}

/*
 * Hide visually and from screen readers, but maintain layout
 */

.invisible {
  visibility: hidden;
}

/*
 * Clearfix: contain floats
 *
 * The use of `table` rather than `block` is only necessary if using
 * `::before` to contain the top-margins of child elements.
 */

.clearfix::before,
.clearfix::after {
  content: "";
  display: table;
}

.clearfix::after {
  clear: both;
}

/* ==========================================================================
   EXAMPLE Media Queries for Responsive Design.
   These examples override the primary ('mobile first') styles.
   Modify as content requires.
   ========================================================================== */

@media only screen and (min-width: 35em) {
  /* Style adjustments for viewports that meet the condition */
}

@media print,
  (-webkit-min-device-pixel-ratio: 1.25),
  (min-resolution: 1.25dppx),
  (min-resolution: 120dpi) {
  /* Style adjustments for high resolution devices */
}

/* ==========================================================================
   Print styles.
   Inlined to avoid the additional HTTP request:
   https://www.phpied.com/delay-loading-your-print-css/
   ========================================================================== */

@media print {
  *,
  *::before,
  *::after {
    background: #fff !important;
    color: #000 !important;
    /* Black prints faster */
    box-shadow: none !important;
    text-shadow: none !important;
  }

  a,
  a:visited {
    text-decoration: underline;
  }

  a[href]::after {
    content: " (" attr(href) ")";
  }

  abbr[title]::after {
    content: " (" attr(title) ")";
  }

  /*
   * Don't show links that are fragment identifiers,
   * or use the `javascript:` pseudo protocol
   */
  a[href^="#"]::after,
  a[href^="javascript:"]::after {
    content: "";
  }

  pre {
    white-space: pre-wrap !important;
  }

  pre,
  blockquote {
    border: 1px solid #999;
    page-break-inside: avoid;
  }

  tr,
  img {
    page-break-inside: avoid;
  }

  p,
  h2,
  h3 {
    orphans: 3;
    widows: 3;
  }

  h2,
  h3 {
    page-break-after: avoid;
  }
}

/* ==========================================================================
   Print styles.
   ========================================================================== */
  /* ==========================================================================
   Modals
   ========================================================================== */

.termsOfServiceModal{
  display: none;
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}
.privacyPolicyModal{
  display: none;
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}
.is-closed{
  display: block;
}
.serviceModal{
 /* display: none;*/
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}
.modal-title{

}
.modal-content{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: white;
  padding: 2rem;
  border-radius: 10px;
  width: 50%;
}
.termsGServices{
  padding: 1rem;
}
.privacyList{
  padding: 1rem;
}
.modal-group{
  display: flex;
  justify-content: space-between;
  margin-bottom: 2rem;
}
.close-terms{
  font-size: 1.3rem;
  cursor: pointer;
}
.close-privacy{
  font-size: 1.3rem;
  cursor: pointer;
}
.termsList li {
  margin-bottom: 1rem;
  padding: 0.3rem;

}

/* ==========================================================================
   Header
   ========================================================================== */
.top-bar {
  background-color: black;
  position: sticky;
  top: 0;
  z-index: 1000;
  height: 4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5rem;
  transition: background-color 0.3s ease;

}

  .contact-info {

    height: 100%;
    display: flex;
    gap:2rem;
    align-items: center;
    color: white;
    font-size: 1rem;
  }
  .contact-info img{
    width: 1.8rem;
    margin-right: 0.6rem;
  }
  .open-hours{
    height: 100%;
    display: flex;
    align-items: center;
    color: white;
  }
  .social-icons{
    display: flex;
    gap:2rem;
  }
  .social-icon{
    height: 100%;
  }
  .social-icon img{
    border-radius: 10px;
    width: 2.5rem;
    padding: 0.2rem;
  }

  /* ==========================================================================
   Navigation
   ========================================================================== */
  .hamburger-bar{
    display: none;
    cursor: pointer;
    width: 2rem;
  }
  .nav--active{
    display: flex !important;
  }
  .navbar {
    background-color: #31572C;
    height: 5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 5rem;
  }
  .nav-list{
    display: flex;
    align-items: center;
    height: 100%;
    gap: 2rem;
    list-style: none;

  }
  .nav-item{
    position: relative;
    font-size: 1.1rem;
    letter-spacing: 1px;
    color: white;
    cursor: pointer;
    transition: border-bottom 0.3s ease-in-out;
  }
  .dropdown-item{
    border-left:1px solid white;
    border-right:1px solid white;
  }
.nav-item::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -2px;
  left: 0;
  background-color: #4CAF50;
  transition: width 0.3s ease-in-out;
}

.nav-item:hover::after {
  width: 100%;
}
  .nav-link{
    text-decoration: none;
    color: white;
  }
  .logo{
    height: 100%;
display: flex;
align-items: center;
  }
  .logo img{
    width: 4rem;
  }
  .contact-phone{
    display: flex;
    gap: 1rem;
  }
  .phone-icon{
    display: flex;
    align-items: center;
  }
   .phone-info{
     display: flex;
     flex-direction: column;
     gap: 0.1rem;
   }
   .phone-info span{
     font-size: 1.1rem;
     color: white;
   }
  .contact-phone img{
    width: 2.5rem;
    background-color: black;
    border-radius: 20px;
    padding: 6px;
  }
  .dropdown{
    position: relative;
  }
  .dropdown-menu{
    width: 200px;
    justify-content: center;
    z-index: 2;
    position: absolute;
    top:200%;
    left: 0;
    background-color: #31572C;
    list-style: none;

    display: none;
    flex-direction: column;
  }
  .dropdown-menu li{
    text-align: start;
    padding: 0.9rem 0.4rem 0.9rem 0.9rem;
    border-bottom: 1px solid white;
    width: 100%;
  }
  .dropdown-menu li:hover{
    background-color: #4CAF50;
  }
  .dropdown-item:hover {
  }
  .dropdown-menu li a {
    color: white;
    text-decoration: none;
    width: 100%;
  }
   .down-arrow{
     width: 1.2rem;
     color: white;
   }
  .title-color{
    color: #4CAF50;
  }
   /* ==========================================================================
   Main Section
    ========================================================================== */
#main {
  height: 80vh;
  position: relative;

}

.main-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../img/image.jpg");
  background-size: cover;
  background-position: center;
  filter: brightness(0.5);
}

.main-content{
  width: 70%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: white;
}
.main-logo__title{
  font-size: 1.8rem;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 1rem;
}
.main-title{
  font-size: 5.5rem;
  width: 100%;
  font-weight: 600;
  letter-spacing: 1px;
  line-height: 1;

}
.main-text{
  font-size: 1.5rem;
  font-weight: 300;
  letter-spacing: 1px;
margin-top: 1rem;
}
.main-button{
  font-size: 1.3rem;
  font-weight: 500;
  letter-spacing: 1px;
  margin-top: 1rem;
  padding: 0.8rem 2rem;
  background-color: white;
  border-radius: 15px;
  color: #31572C;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s;
}
.main-button:hover{
  background-color: #4CAF50;
  color: #31572C;
}
.main-button:hover a{
  color: white;
}

.main-button a{
  transition: background-color 0.3s;
  text-decoration: none;
  color: #31572C;
}
.is-active{
  display: block;
}


/* ==========================================================================
   Services Section
    ========================================================================== */


.services{
  text-align: center;

}
.services-title{
  font-size: 2rem;
  font-weight: 600;
  letter-spacing: 1px;
  margin: 2rem 0 0.5rem 0;
  color: #4CAF50;
}
.services-title__title{
  font-size: 2.5rem;
  font-weight: 600;
  letter-spacing: 1px;
  color: #2E7D32;
  width: 60%;
  line-height: 1.1;
  margin: 0 auto;
}
.services-text{
  width: 60%;
  margin: 1rem auto 0;
  font-family: 'Poppins', sans-serif;
  font-size: 1.2rem;
  font-weight: 300;
  color: #666;

}
.services-container{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  padding: 3rem 15rem;
}
.service-box{
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
  transition: 0.3s;
  background-color: #F2F7F0;
  display: flex;
  flex-direction: column;
  height: 35rem;
  border:1px solid #4CAF50;
}
.service-box__text{
  margin-top: 1rem;
}
.service-title{
  font-size: 1.5rem;
}
.service-list{
  list-style:disc ;
  margin-left: 1rem;
  text-align: start;
  font-size: 1.1rem;
  padding:0.5rem 1.4rem;
  letter-spacing: 0.06em;
}


.service-box:hover{
  box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.2);
  background-color: #4CAF50;
  color: white;
  cursor: pointer;
}
.service--img{
}
.service--img img{
  width: 100%;
  height: 15rem;
}



/*
  ==========================================================================
    Contact Section
      ==========================================================================
 */
#contact-us {
  padding: 3rem 0;
  background-color: #122017;
  overflow: hidden;
}
.contact-us{
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  color: white;
  height: 100%;

}
.contact-us__title{
  font-family: 'Staatliches', sans-serif;
  font-size: 3.5rem;
  text-align: center;
  font-weight: 600;
  letter-spacing: 3.5px;
  margin: 0.5rem 0 0 0;
}
.contact-us__text{
  text-align: center;
  width: 90%;
  margin:0 auto;
  font-family: 'Poppins', sans-serif;
  font-size: 1.4rem;
  font-weight: 300;
}
.contact-form{
  padding: 4rem;
  background-color: #31572C;
  border-radius: 15px;
  width: 50%;
  display: flex;
  flex-direction: column;
  gap: 4rem;
}
.contact-form__group{
  width: 100%;
}
.contact-form__input{
  padding: 0.5rem;
  border-radius: 10px;
  border: none;
  width: 100%;
}
.row{
  display: flex;
  justify-content: space-between;
  gap: 5rem;
}
.contact-form__label {
  display: block;
}

.contact-form__input {
  width: 100%;
  background-color: transparent;
  border-radius: 0;
  color: #CFCD7B;
  font-size: 1rem;
  border-bottom: 1px solid #4CAF50;
  margin-top: 0.5rem; /* Optional: adds some space between the input and any following elements */
  position: relative;

}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  margin: 0;
}
.contact-form__input::placeholder
{
  color: #CFCD7B;
  font-size: 1rem;
}
.contact-form__input:focus {
  outline: none;
}
.contact-form__button{
  padding: 0.8rem 2rem;
  background-color: #4CAF50;
  font-size: 1.2rem;
  letter-spacing: 1px;
  color: white;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: background-color 0.3s;
}
.contact-form__textarea{
  padding: 0.5rem;
  background-color: transparent;
  border: none;
  border-bottom:1px solid #4CAF50 ;
  resize: none;

}
.contact-form__button:hover{
  color: black;
  background-color: #CFCD7B;
}



.about{
  display: none;
  overflow: hidden;
  background-color: #192C20;
}
.about-title{
  font-size: 2rem;
  font-weight: 600;
  letter-spacing: 1px;
  margin: 2rem 0 0.5rem 0;
  color: white;
}
.about-container{
  display:grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  padding: 3rem 20rem;

}.about-container .about-box:nth-child(1),
.about-container .about-box:nth-child(3) {
   justify-content: end;
 }
.about-box{
  background-color: #F2F7F0;
  border-radius: 15px;
  padding: 1.2rem;
  display: flex;
  border: 1px solid #4CAF50;
  height: 25rem;
  width: 25rem;

}

.about-box:hover{
  background-color: #4CAF50;
  color: white;
  cursor: pointer;
}

.about-box--img{
  margin-right: 1rem;
  border-radius: 15px;
}
.about-box--img img{
  width: 100%;
  height: 100%;
  border-radius: 15px;

}
/* ==========================================================================
   Customer Reviews Section
    ========================================================================== */
.customer-reviews{
     padding: 0 0 3rem 0;
     background-color: #192C20;
     overflow: hidden;

   }
.customer-review__container{
     padding: 7rem 0;
     text-align: center;
     width: 70%;
     margin: 0 auto;
     color: white;
     position: relative;
   }
.quotes img{
     width: 5rem;
   }
.customer-review__text{
      font-family: 'Poppins', sans-serif;
      font-size: 1.5rem;
      font-weight: 300;
      margin: 1rem 0;
     position: relative;
     line-height:0.9 ;

   }
.customer-review__text, .customer-review__name, .customer-review__title, .customer-review__stars {
      width: 100%;
      transition: transform 0.5s ease-in-out, opacity 0.5s ease-in-out;
    }
   .customer-review__text::before{
    content: open-quote;
     font-size: 3rem;
     color: #4CAF50;
   }

.customer-review__text::after{
     content: close-quote;
     font-size: 3rem;
     color: #4CAF50;
   }
.customer-review__name{
     font-size: 1.4rem;
     font-weight: 500;
   }
.customer-review__title{
     font-size: 1.2rem;
     font-weight: 300;
     margin: 1rem 0 0.5rem;
     color: #CFCD7B;
   }
.customer-review__stars{
     display: flex;
     justify-content: center;
     gap: 0.5rem;
   }
.customer-review__stars img{
      width: 1.5rem;
    }
.line{
      width: 10%;
      margin: 2rem auto;
      height: 1px;
      background-color: gray;

    }
.customer-slider{
      position: absolute;
      bottom: 0;
      left: 50%;
      transform: translateX(-50%);
      display: flex;
      justify-content: center;
      gap: 1rem;
      margin-top: 4rem;
    }
.customer-slider__button{
      width: 0.85rem;
      height: 0.85rem;
      border-radius: 50%;
      background-color: gray;
      cursor: pointer;

    }
.customer-slider__button--active{
      width: 1rem;
      height: 1rem;
      background-color: #CFCD7B;

    }
    /*
    ==========================================================================
    For Animations
    ==========================================================================
     */

.customer-review__text, .customer-review__name {
  transition: transform 0.5s ease-in-out, opacity 0.5s ease-in-out;
}
.slide-down-enter {
  transform: translateX(-20px);
  opacity: 0;
}

.slide-down-enter-active {
  transform: translateX(0);
  opacity: 1;
}

.slide-down-exit {
  transform: translatex(0);
  opacity: 1;
}

.slide-down-exit-active {
  transform: translateX(20px);
  opacity: 0;
}

/* ==========================================================================
   Footer
    ========================================================================== */


  .footer{
    background-color: #122017;
    color: white;
    padding: 3rem 0;
    display: flex;
    align-items: center;
    overflow: hidden;
  }

.footer-container{

    display: flex;
    justify-content: space-between;
    gap: 2rem;
    border-bottom: 1px solid gray;
    border-top: 1px solid gray;
    width: 100%;
    padding: 2.5rem 5rem;
  }
.footer-medias{
    color:#CFCD7B ;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 1rem;
    flex-direction: column;
  }
.footer-medias__list{
    display: flex;
    align-items: center;
    gap:0.4rem;
  }
.footer-media{
    border-radius: 50%;
  }
.footer__bottom-links{
  display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 1rem;
}
.footer__bottom-links p{
  font-size: 1rem;
  cursor: pointer;
}
  .footer-media img {
    width: 2.5rem;
    border-radius: 50%;
  }

.footer-nav__list{
  list-style: none;
  display: flex;
  gap: 1rem;
  flex-direction: column;
}
.footer-nav__title{
  font-size: 1.5rem;
  font-weight: 500;
  margin-bottom: 1rem;
}
.footer-nav__item{
  font-size: 1.1rem;
  cursor: pointer;
}
.footer-nav__link{
  text-decoration: none;
  color: #CFCD7B;
}
.footer-working-hours__title{
  font-size: 1.5rem;
  font-weight: 500;
  margin-bottom: 1rem;
}
.footer-working-hours__text{
  font-size: 1.1rem;
  font-weight: 300;
  color: #CFCD7B;
  margin: 0.5rem 0;
}
.footer-info__title{
  font-size: 1.5rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

.footer-info__text{
  font-size: 1.1rem;
  font-weight: 300;
  color: #CFCD7B;
  margin: 0.5rem 0;
}
.footer-contact__title{
  font-size: 1.5rem;
  font-weight: 500;
  margin-bottom: 1rem;
}
.footer-contact__text{
  font-size: 1.1rem;
  font-weight: 300;
  color: #CFCD7B;
  margin: 0.5rem 0;
}
.footer-bottom{
  background-color: #122017;
  text-align: center;
  color:#CFCD7B;
  padding: 0 0 1rem;
}

.footer-bottom a{
  text-decoration: none;
  color: #8a8844;
  margin-left: 1.5rem;
  margin-top: 2rem;
}



@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
/* ==========================================================================
    Mobile Responsive
    ========================================================================== */

@media screen and (max-width: 1400px){
  .modal-text{
    font-size: 1.05rem;
  }
  .termsList{
   font-size: 0.9rem;
  }
  .modal-content{
    width: 70%;
  }
  .main-content{
    width: 80%;
  }
  .main-title{
    font-size: 5rem;
  }
  .services-container{
    padding: 3rem 5rem;
  }
}
@media screen and (max-width:1200px){
   .phone-info span{
    font-size: 0.95rem;
   }
   .main-title{
    font-size: 4.3rem;
  }

  .services-container{
    grid-template-columns: repeat(2, 1fr);
  }
  .contact-form{
    width: 80%;
  }
  .customer-review{
    padding: 0 0 1rem 0;
  }
  .customer-review__container{
    width: 80%;
    padding: 5rem 0;
  }
  .customer-review__text{
    font-size: 1.4rem;

  }

}
@media screen and (max-width: 1050px){
  .contact-info{
    font-size: 0.9rem;
    gap:0.5rem;
  }
  .social-icons{
    gap:1rem;
  }
  .social-icon img{
    width: 2rem;
  }
  .nav-item{
    font-size: 1rem;
    font-weight: 500;
  }
  .main-title{
    font-size: 4rem;
  }
  .main-logo__title{
    font-size: 1.2rem;
  }
  .main-text{
    font-size: 1.2rem;
  }
  .services-container{
    padding: 3rem 2rem;
  }
  /* FOOTER */
  .footer-container{
    padding: 2.5rem 2rem;
  }
  .footer-container h5{
    font-size: 1.2rem;
  }
  .footer-container p{
    font-size: 1.1rem;
  }


}
@media screen and (max-width: 970px){
  /* Top bar responsive */

  .phone-info span{
    font-size: 0.8rem;
  }

  .modal-content{
    width: 85%;
  }
  .navbar{
    padding: 0 2rem;
  }
  .top-bar{
    padding: 0 2rem;
  }
  .contact-info{
    gap:0.2rem;
  }
  .contact-info span{
    font-size: 0.8rem;
  }
  .social-icons{
    gap:0rem;
  }
  .social-icon img{
    width: 1.8rem;
  }
   ol{
    padding: 0 1rem !important;
   }
  /* Services */
  .services-title__title{
    font-size: 2.3rem;
    width: 90%;
  }
  /* Navigation responsive */
  .nav-list{
    gap: 1rem;
  }
  .nav-item{
    font-size: 1rem;
    font-weight: 500;
  }
  .contact-phone img{
    width: 2rem;
  }
  .phone-info span{
    font-size: 0.8rem;
  }
  .main-title{
    font-size: 3rem;
  }
  .services-container{
    padding: 3rem 1rem;
  }
  .footer-container{
    padding: 2.5rem 1rem;
  }
}
@media screen and (max-width: 768px) {
  .modal-content{
    overflow: auto;
    height:90vh ;
  }
  .hidden1{
    display: block;
  }
  .main-title{
    font-size: 2.5rem;
  }
  .top-bar {
    height: auto;
    padding: 1rem 2rem;
    position: relative;
  }
  .nav-list{
    background-color: #31572C;
    width: 100%;
    height:16rem;
    display: none;
    position: absolute;
    top: 8rem;
    left: 0;
    z-index: 2;
    flex-direction: column;
  }
  .nav-item:first-child{
    margin-top: 2rem;
  }
  .nav-item{
    min-width:90%;
    text-align: center;
    font-size: 1.2rem;
    font-weight: 500;
    border-bottom: 1px solid white;
  }
  /*.nav-list li!*:not(:first-child)*! {
     display: none;
   }*/

  .hamburger-bar{
    display: block;
  }
  .contact-phone{
    display: none;
  }
  .social-icons {
    display: none;
  }
  .dropdown-menu{
    top:100% ;
  }
  .contact-info {
    display:flex;
    width: 100%;
    justify-content: space-between;
    align-items: center;
  }
  .contact-info span{
    font-size: 0.75rem;
  }
  .social-icons {
    padding-top: 1rem;
  }
   .main-content{
     width: 90%;
   }
  .social-icon img {
    width: 2rem;
  }
  .main-text{
    font-size: 1.1rem;
  }
  /* Services */
  .service-box{
    min-height: 30rem;
  }

  .services-title__title{
    font-size: 2rem;
  }

  /* Contact */
  .contact-us__title{
    font-size: 2.5rem;
  }
  .contact-form{
    padding: 2rem;
  }
  .row{
    gap: 3rem;
  }
  .customer-review__container{
    padding: 1rem 0;
  }
   .customer-review__title{
     margin: 0 0 1rem 0;
   }
  .customer-review__text{
    line-height: 1.4;
  }
  .customer-slider{
    position: relative;
    margin-top: 1rem;
  }
   .footer-container{
     gap: 1rem;
   }
  .footer-container p{
    font-size: 1rem;
  }
  .footer-container{
    flex-direction: column;
  }
  .service-box__text{
    overflow: auto;
  }
  .dropdown-menu{
    width: 100%;
  }
  .dropdown-item{
    text-align: center;
  }
}@media screen and (max-width: 650px){
  .services-container{
    grid-template-columns:repeat(1, 1fr);
  }
  .service-title{
      font-size: 1.4rem;
    }
  .service-text{
    font-size: 1.2rem;
    letter-spacing: 0.3px;
  }
}

@media screen and (max-width:550px){
  .top-bar{
    padding: 1rem 0.5rem;
  }
  .top-bar span{
    font-size: 0.7rem;
  }
  .main-content{
    width: 95%;
  }
  .main-title{
  margin-top: 4rem;
    font-size: 2.4rem;
  }
 /* Services */
  .services-title__title{
    font-size: 1.5rem;
  }
  .service-text{
    font-size: 1rem;
  }
  .contact-us__title{
    font-size: 2.3rem;
  }
  .contact-us__text{
    font-size: 1.2rem;
  }
  .contact-form{
    width: 90%;
  }
  .row{
    gap: 1rem;
  }
  .customer-review__text::before{
     display: block;
   }
  .customer-review__text::after{
    display: block;
  }
  .main-button{
     margin-top: 5rem;
   }
}
@media screen and (max-width:450px){
  .service-text{
    font-size: 0.9rem;
    padding:0.5rem 0.8rem;
  }
  .contact-info{
    flex-direction: column;
    gap: 0.5rem;
  }
  .contact-us__title{
    font-size: 2rem;
  }
  .contact-us__text{
    font-size: 0.9rem;
  }
  .main-title{
    font-size: 1.7rem;
  }
  .main-text{
    font-size: 0.9rem;
  }
  .customer-review__text{
    font-size: 1.1rem;
  }
  /* FOOTER*/
  .footer-bottom a{
    margin-top: 2rem;
  }
}
