
@font-face {
  font-family: 'Neoneon'; 
  src: url('../Cherry-Fonts/Neoneon/neoneon-webfont.woff2') format('woff2'),
       url('../Cherry-Fonts/Neoneon/neoneon-webfont.woff') format('woff');

}


body {
  
  letter-spacing: 1.4px;
  min-height: 100vh;
  margin: 0;
  overflow-x: hidden;
}

a:link {
  text-decoration: none;
  color: inherit !important;
  }

.btn {
  cursor: pointer;
  transform: scale(1.1);
    transition: transform .5s ease-in-out;
}

@media only screen and (min-width: 768px) {
  .btn {
    transform: scale(1.2);
  }
  .btn:hover {
    transform: scale(1.2);
    transition: transform .5s ease-in-out;
  }
}

@media only screen and (max-width: 768px) {
.padding-bott-sm-3 {
  padding-bottom: 3vh;
}
}

.dark-section {
  background-color: #404143;
 }

 .light-section {
  background: rgb(230, 223, 218, 0.95);
} 


/* Basic styling */

.navbar {
  /* background-image: url('../assets/Homepage/navbar_background.png'); /* Specify the path to your image */
  background: linear-gradient(180deg, rgb(28, 24, 24), rgba(46, 25, 25, 0.083));
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  background-size: cover; /* Ensure the background image covers the entire navbar */
  background-position: center; /* Center the background image */
  background-repeat: no-repeat; /* Do not repeat the background image */
  font-weight: 200;
  font-size: x-large;
  flex-wrap: nowrap;
  /* border-bottom: 5px solid #f1e1c4; */
  position: fixed !important;
  top: 0;
  width: 100%;
  z-index: 1000; /* Ensure the navbar is above other content */
  transition: opacity 0.3s; /* Smooth transition for opacity */
}

  .nav-link{
    width: auto;
    color: #f1e1c4 !important;
    box-shadow: none !important;
  }

  .dropdown-menu {
    background-color: #52668dd1 !important;
    --bs-dropdown-link-hover-bg: none !important;
    color: #f1e1c4 !important;
    opacity: 1 !important;
    vertical-align: auto;
  }

  .nav-item .dropdown-item {
    font-weight: 200;
    font-size: large;
  }

  
  /* write Name under this class in html if want to replace logo */
  .text-secondary {
    padding-left: 2vw;
  }

  .logo {
    width: 20vw;
    /*padding: 4px 10px 4px 0;*/

  }

  /* Smartphones Portrait */
  @media only screen and (max-width: 540px) {


    .navbar-toggler {
      border: none !important;
      outline: none !important;
      box-shadow: none !important;
    }

    .navbar-toggler-icon {
      background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255, 255, 255, 0.9)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
    }

    .logo {
      width: 15vw;
    }
    .nav-item {
      text-align: center;
      font-size: large;
    }
    .navbar {
      opacity: 1;

    }
    .navbar-nav {
      display: flex;
      flex-direction: column;
      align-items: center;
      margin-top: -5%; /* Adjust this value as needed to move the menu upwards */
    }

    .navbar-nav .nav-item:last-child {
      padding-bottom: 10%; /* Adjust this value to match the space above the menu items */
    }

  }

/* Medium screen */
@media only screen and (min-width: 540px) {
  .logo {
    width: 15vw;
  }
  .nav-item {
    text-align: center;
    font-size: large;
  }
  
  .navbar-toggler {
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
  }

  .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255, 255, 255, 0.9)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
  }
}

  /* Large screen */
  @media only screen and (min-width: 992px) {
    .logo {
      width: 5vw;
    }
    .nav-item {
      font-size: large;
      padding: 0.8rem;
    }
  }


/* Opening */
/* Parallax section */

.wrapper {
  height: 100vh;
  overflow-y: auto;
  overflow-x: hidden;
  perspective: 20px;
}

 header {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    transform-style: preserve-3d;
    z-index: -1;
  }

  .background {
    transform: translateZ(-10px) scale(2);
    transition: transform .3s;
  }

  .foreground {
    transform: translateZ(-5px) scale(1.5);
    transition: transform .3s;
  }
  
  .background, 
  .foreground {
    position: absolute;
    height: 100%;
    width: 100%;
    object-fit: cover;
   
  }

/* Everything underneath is for a fucking insane NEON sign, if you can believe that shit */

.opening-text {
  text-align: center;
  padding-top: 1vh;
  padding-left: 5vw;
  padding-right: 5vw;
}

.box-opening-text {
  font-family: 'Neoneon', sans-serif;
  padding: 1vh 4vw 2vh 4vw;
  background-color: transparent;
  border: transparent;
  transform-style: preserve-3d;
}

.neon{
  /* petal-pink core text */
  color:#ffe8f3;                 /* very light cherry blossom */

  /* soft-edge glow stack */
  text-shadow:
    0 0   2px  #ffe8f3,          /* crisp inner contour             */
    0 0   6px  #ffb7e1,          /* subtle blossom mid-glow         */
    0 0  14px  #ff91ce,          /* deepen to richer rose           */
    0 0  26px  #ff7fba,          /* blooming outer neon line        */
    0 0  48px  #d36b96,          /* long halo drifting into the dark*/
    0 0  65px  #b45c7b,          /* faint lamp-amber crossover      */
    0 0  90px  #8e475f;          /* whisper of warmth, not a blaze  */

  letter-spacing:8px;            /* keep your original tracking */
}

.flicker-slow {
  animation: flicker 3s linear infinite;
}

.flicker-fast {
  animation: flicker 1s linear infinite;
}

@keyframes flicker {
  0%, 20%, 63%, 65%, 100% {
      opacity: 0.99;
  }
  21%, 64% {
      opacity: 0.4;
  }
}

/* Add hover effect to trigger flickering animation */
.box-opening-text:hover .neon {
  animation: flicker 1s ease-in-out infinite;
}



/* Smartphones Portrait */
@media only screen and (max-width: 540px) {
.box-opening-text {
  font-size: 11vw;
}  
}

/* Large screens */
@media only screen and (min-width: 540px) {
  .box-opening-text {
    font-size: 80px;
    font-weight: 400;
    letter-spacing: 15px;
  }
  }

/* Intro Kicthens Homepage */

#intro {
  padding-top: 4vh;
  padding-bottom: 15vh;
  background-color: white;
}



.viewourkitchens-btn {
  font-weight: 100;
  text-align: center;
  padding-top: 10vh;
  }


/* Cards deck homepage */

#kitchencardssection {
  padding-top: 10vh;
  padding-bottom: 10vh;
}

.card:hover {
  transform: scale(1.05);
  transition: transform .5s;
  cursor: pointer;
}

.card-img-top1 .card-img-top2 .card-img-top3 {
 width: 100%;
 height: 40vh;
  object-fit: cover;
}

.card-title {
  padding: 2vw;
  text-align: center;
  color: white;
}

.card-text {
  padding: 2vw;
  font-size: small;
  color: #cecbc9;
  text-align: center;
}

.bg-custom-1 {
  background:  #404143 10%;
}


/* Homepage - Design consultation section */

.bg-image1 {
  position: relative;
}

.designconsulttext {
  color: white;
  font-family: 'Dancing Script', cursive, Georgia, 'Times New Roman', Times, serif;
  font-weight: lighter;
  font-size: 8vw;
  transition: transform .5s ease-in-out;
}

@media only screen and (min-width: 540px) {
  .designconsulttext {
    font-size: 5vw !important;
  }
  }

.designconsulttext:hover {
  transform: scale(1.1);
  cursor: pointer;
}



/* Libraries Section */

#libraries {
  background: rgb(230, 223, 218, 0.95);
}


  .librariestext {
    padding-top: 10vh;
    padding-bottom: 10vh;
    
  }
  

@media only screen and (min-width: 768px) {
.librariestext {
  padding-left: 4vw;
}
}

/* Dressing rooms Section */

#dressingrooms {
  background-color: #404143;
}

.dark-section-text {
  color: #e2dad3 !important;
}


  .dressingrooms-text {

    padding-top:10vh;
    padding-bottom: 10vh;
  }
  

@media only screen and (min-width: 768px) {
  .dressingrooms-text {
  padding-right: 4vw;
}
}

/* Complete Interiors section Homepage */

#interiors-hmpg {
  background: rgb(230, 223, 218, 0.95);
}


  .interiors-hmpg-text {
    padding-top:10vh;
    padding-bottom: 10vh;
  }

@media only screen and (min-width: 768px) {
.interiors-hmpg-text {
  padding-left: 4vw;
}
}
  
/* Home offices and studies */

#offices-hmpg {
  background: rgb(230, 223, 218, 0.95);
}


  .offices-hmpg-text {
    padding-top:10vh;
    padding-bottom: 10vh;
  }

@media only screen and (min-width: 768px) {
.offices-hmpg-text {
  padding-left: 4vw;
}
}


/* Testimonials About Us */

  #testimonials_aboutus {
    font-weight: lighter;
    color: #f4f1ee;
    background-color: #404143;
    padding-top: 8vh;
    text-align:justify;
    padding-bottom: 8vh;
  }

  @media only screen and (max-width: 540px) {
    #testimonials_aboutus {
      font-size:small;

      
    }
  }
  #christinalead {
    font-style: italic;
  }

  #blockquote1 {
    padding-top: 3vh;
    color: #f5f1f1;
    text-align: center;
  }

  #testimonialsblock {
    padding-top: 6vh;
    padding-left: 8vw;
    padding-right: 8vw;
  }

  #aboutusblock {
    padding-top: 6vh;
    padding-left: 8vw;
    padding-right: 8vw;
  }

  #readmore-homepagebtn {
    font-family: Georgia, 'Times New Roman', Times, serif;
  }


  /* Homepage - Contact Us Section */

  .bg-image-contact-hmpg {
    position: relative;
    padding-top: 10vh;
    padding-bottom: 10vh;
  }

  .contactustext-hmpg {
    color: rgb(90, 86, 86);
    font-family: 'Dancing Script', cursive, Georgia, 'Times New Roman', Times, serif;
    font-weight: lighter;
    font-size: 8vw;
    transition: transform .5s ease-in-out;
  }
  
  @media only screen and (min-width: 540px) {
    .contactustext-hmpg {
      font-size: 5vw !important;
    }
    }
  
  .contactustext-hmpg:hover {
    transform: scale(1.1);
    cursor: pointer;
  }

/* Kitchens page */

/* Intro Kitchens page */

.titlekitpage {
  font-weight: lighter;
  position: absolute;
  top: 50%;
  width: 100%;
  padding-left: 30%;
  padding-right: 30%;
  font-size: 5vw;
}

@media only screen and (min-width: 540px) {
  .titlekitpage {
    top: 45%;
    font-size: 4vw;
  }
}

.border {
  padding-inline: 4vw;
  padding-top: 1vh;
}


.imgintrokitpage {
  position: relative;
}

.main-kitpage {
  max-width: 100%;
  
  padding-top: 10vh;
  padding-bottom: 10vh;
}

.title-kitpage {
  font-family: Georgia, 'Times New Roman', Times, serif;
  padding-top: 10vh;
  padding-bottom: 4vh;
    font-size: 30px;
    text-align: center;
  }

    @media only screen and (max-width: 540px) {
      .title-kitpage {
        padding-top: 8vh;
        font-size: 6vw;
      }
      }

    

.introkitchenstext {
  padding-left: 18%;
  padding-right: 18%;
  font-family: Georgia, 'Times New Roman', Times, serif;
  font-size: 4vw;
  text-align: justify;
}
      @media only screen and (min-width: 540px) {
        .introkitchenstext {
          padding-left: 30%;
          padding-right: 30%;
          font-size: 20px;
          text-align: justify;
        }
        } 
        
        
        .kitcard {
          background-color: white;
          border-radius: 0.25rem;
          display: flex;
          flex-direction: column;
          overflow: hidden;
          transition: transform .5s;
        }
        
        .kitcard:hover {
          transform: scale(1.1);
        }

        

/* Dressing rooms and wardrobes */

/* Intro Dressing rooms */

.titledress-roomspage {
  font-weight: lighter;
  position: absolute;
  top: 45%;
  width: 100%;
  padding-left: 20%;
  padding-right: 20%;
  font-size: 5vw;
}

@media only screen and (min-width: 540px) {
  .titledress-roomspage {
    top: 40%;
    font-size: 4vw;
  }
}


.border {
  padding-inline: 4vw;
  padding-top: 1vh;
}

.imgintrodress-roomspage {
  position: relative;
}

.titleintro-dress-roomspage {
  font-family: Georgia, 'Times New Roman', Times, serif;
  padding-top: 15vh;
  padding-bottom: 4vh;
  padding-right: 30vw;
  padding-left: 30vw;
    font-size: 30px;
    text-align: center;
  }

    @media only screen and (max-width: 540px) {
      .titleintro-dress-roomspage {
        padding-right: 10vw;
        padding-left: 10vw;
        padding-top: 8vh;
        font-size: 6vw;
      }
      }

.introdress-roomstext {
  padding-right: 10vw;
  padding-left: 10vw;
  font-family: Georgia, 'Times New Roman', Times, serif;
  font-size: 4vw;
  text-align: justify;
}
      @media only screen and (min-width: 540px) {
        .introdress-roomstext {
          padding-right: 30vw;
          padding-left: 30vw;
          padding-bottom: 10vh;
          font-size: 20px;
          text-align: justify;
        }
        }


 .main-dress-roomspage {
          max-width: 100%;
          margin: 0 auto;
          padding-top: 10vh;
          padding-bottom: 10vh;
        }

        .dress-roomsbtn {
          color: #6a6864;
          padding: 0.8rem;
          font-size: 1vw;
          text-transform: uppercase;
          border-radius: 4px;
          font-weight: 400;
          display: block;
          width: 100%;
          cursor: pointer;
          background: transparent;
        }
        
        .dress-roomsbtn:hover {
          background-color: rgba(205, 192, 180, 0.3);
        }
        
        
        
        .dress-roomscard {
          background-color: white;
          border-radius: 0.25rem;
          display: flex;
          flex-direction: column;
          overflow: hidden;
         transition: transform .5s;
        }
        
        .dress-roomscard:hover {
          transform: scale(1.1);
        }
      
/* Libraries and Bookcases page */

.titlelibrariespage {
  font-weight: lighter;
  position: absolute;
  top: 45%;
  width: 100%;
  padding-left: 20%;
  padding-right: 20%;
  font-size: 5vw;
}

@media only screen and (min-width: 540px) {
  .titlelibrariespage {
    top: 45%;
    font-size: 4vw;
  }
}


.imgintrolibrariespage {
  position: relative;
}

.main-librariespage {
  max-width: 100%;
  
  padding-top: 10vh;
  padding-bottom: 10vh;
}

.title-librariespage {
  font-family: Georgia, 'Times New Roman', Times, serif;
  padding-top: 10vh;
  padding-bottom: 4vh;
    font-size: 30px;
    text-align: center;
  }

    @media only screen and (max-width: 540px) {
      .title-librariespage {
        padding-top: 8vh;
        font-size: 6vw;
      }
      }

    

.introlibrariestext {
  padding-left: 18%;
  padding-right: 18%;
  padding-bottom: 6vh;
  font-family: Georgia, 'Times New Roman', Times, serif;
  font-size: 4vw;
  text-align: justify;
}
      @media only screen and (min-width: 540px) {
        .introlibrariestext {
          padding-left: 30%;
          padding-right: 30%;
          font-size: 20px;
          text-align: justify;
        }
        } 
      


    .holland-pk-title {
      font-weight: 200;
      font-size:xx-large;
      padding-left: 3vw;
      padding-right: 3vw;
    }

    @media only screen and (max-width: 768px) {
      .holland-pk-title {
        font-size:x-large;
    padding-top: 6vh;
    padding-bottom: 4vh;
    padding-left: 3vw;
        padding-right: 3vw;
  }
}

    .holland-pk-text {
      font-weight: 200;
      font-size: medium;
    }

    .holland-pk-subtext {
      text-align: justify;
    }
    
    @media only screen and (max-width: 768px) {
      .holland-pk-subtext {
        padding-bottom: 4vh;
        padding-left: 6vw;
        padding-right: 6vw;
      }
      }

    @media only screen and (min-width: 768px) {
    .holland-pk-subtext {
      padding-left: 3vw;
      padding-right: 3vw;
    }
    }

    .holland-small-img {
      text-align: center;
    }

    @media only screen and (min-width: 768px) {
      .holland-small-img {
        padding-top: 20vh;
        padding-bottom: 20vh;
      }
      .holland-3rd-row {
        padding-bottom: 20vh;
      }
    }

/* Complete Interiors page */

.titleinteriorspage {
  font-weight: lighter;
  position: absolute;
  top: 45%;
  width: 100%;
  padding-left: 20%;
  padding-right: 20%;
  font-size: 5vw;
}

@media only screen and (min-width: 540px) {
  .titleinteriorspage {
    top: 45%;
    font-size: 4vw;
  }
}


.imgintrointeriorspage {
  position: relative;
}

.main-interiorspage {
  max-width: 100%;
  
  padding-top: 10vh;
  padding-bottom: 10vh;
}

.title-interiorspage {
  font-family: Georgia, 'Times New Roman', Times, serif;
  padding-top: 10vh;
  padding-bottom: 4vh;
    font-size: 30px;
    text-align: center;
  }

    @media only screen and (max-width: 540px) {
      .title-interiorspage {
        padding-top: 8vh;
        font-size: 6vw;
      }
      }

    

.introinteriorstext {
  padding-left: 18%;
  padding-right: 18%;
  padding-bottom: 6vh;
  font-family: Georgia, 'Times New Roman', Times, serif;
  font-size: 4vw;
  text-align: justify;
}
      @media only screen and (min-width: 540px) {
        .introinteriorstext {
          padding-left: 30%;
          padding-right: 30%;
          font-size: 20px;
          text-align: justify;
        }
        } 
        
        .interiors-title {
          font-weight: 200;
          font-size:xx-large;
          padding-left: 3vw;
          padding-right: 3vw;
        }
    
        @media only screen and (max-width: 768px) {
          .interiors-title {
            font-size:x-large;
        padding-top: 6vh;
        padding-bottom: 4vh;
        padding-left: 3vw;
            padding-right: 3vw;
      }
    }
    
        .interiors-text {
          font-weight: 200;
          font-size: medium;
        }
    
        .interiors-subtext {
          text-align: justify;
        }
        
        @media only screen and (max-width: 768px) {
          .interiors-subtext {
            padding-bottom: 4vh;
            padding-left: 10vw;
            padding-right: 10vw;
          }
          }
    
        @media only screen and (min-width: 768px) {
        .interiors-subtext {
          padding-left: 3vw;
          padding-right: 3vw;
        }
        }
    
        .interiors-small-img {
          text-align: center;
        }
    
        @media only screen and (min-width: 768px) {
          .interiors-small-img {
            padding-top: 20vh;
            padding-bottom: 20vh;
          }
          .interiors-3rd-row {
            padding-bottom: 20vh;
          }
          .padding-top-lg-3 {
            padding-top: 3vh;
          }
        }

        
/* Modal */

#view-card-kitchens {
  border: 0;
}

.modal-content {
  height: auto;
  background-color: rgba(41, 38, 38, 0.9) !important;
}

@media only screen and (max-width: 768px) {
  .modal-content {
    overflow-y: scroll;
  }
}

.modal-title {
  color: #cfc5bc; 
  padding-left: 3vw;
  padding-right: 6vw; 
  font-weight: 100;
}

@media only screen and (min-width: 768px) {
  .modal-title {
    font-size: 22px;
  }
}

.modal-text {
  text-align: justify;
  font-size: small;
  font-weight: 200;
  color: #cfc5bc;
}

.modal-img {
  transition: transform .5s;
}

@media only screen and (max-width: 768px) {
  .modal-img {
    padding-bottom: 3vh;
    padding-left: 3vw;
    padding-right: 3vw;
  }

  .modal-text {
    padding-left: 6vw;
    padding-right: 6vw;
    padding-top: 4vh;
  }
}

@media only screen and (min-width: 768px) {
  .fill {
    padding-top: 5vh;
  }

  .modal-upper-text {
    padding-top: 2vh;
    padding-bottom: 2vh;
    padding-left: 4vw;
    padding-right: 4vw;
  }

  .padding-img-modal {
    padding-left: 15vw;
    padding-right: 15vw;
  }

  .padding-bromley {
    padding-top: 10vh;
  }

  .padding-harbourside {
    padding-left: 3vw;
    padding-right: 3vw;
  }

  .modal-upper-text-watermill {
    padding-top: 2vh;
    padding-left: 2vw;
    padding-right: 2vw;
  }

  .top-pic {
    padding-bottom: 3vh;
  }

  .modal-img:hover {
    transform: scale(1.2);
    cursor: pointer;
  }

  .modal-text {
    padding-right: 4vw;
    font-size: medium;
    font-weight: 100;
  }

}

.modal-footer {
  margin-top: auto;
}

.close {
  position: absolute;
  right: 8px; 
  top: 8px;
  font-size: 30px;
  opacity: 0.8;
  border: none;
  color: white;
  background-color: rgba(41, 38, 38, 0.736);
}

.close:hover {
  color: rgb(85, 143, 143);
}


/* Design consultation */


.titledesign-conspage {
  font-weight: lighter;
  position: absolute;
  top: 45%;
  width: 100%;
  padding-left: 20%;
  padding-right: 20%;
  font-size: 5vw;
}

@media only screen and (min-width: 540px) {
  .titledesign-conspage {
    top: 40%;
    font-size: 4vw;
  }
}

.imgintrodesign-conspage {
  position: relative;
}

.bg-image-sketch {
  position:fixed;
}


#design-consform {
        font-family: Georgia, 'Times New Roman', Times, serif;
      }

      .book_free_cons {
        padding-top: 6vh;
        padding-left: 4vw;
        padding-right: 4vw;
        text-align: center;
      }

      .please_fillform-design {
        font-size: medium;
        text-align: center;
        padding-bottom: 6vh;
        padding-left: 4vw;
        padding-right: 4vw;
      }
      
      @media only screen and (min-width: 992px) {
      .please_fillform-design {
        padding-left: 30vw;
        padding-right: 30vw;
        text-align: justify;
      }
      }
  
      #form_cons {
        padding-top: 8vh;
        padding-left: 4vw;
        padding-right: 4vw;
        font-family: 'Montserrat', sans-serif, Georgia, 'Times New Roman', Times, serif;
        font-weight: lighter;
      }

      @media only screen and (min-width: 992px) {
      #form_cons {
        padding-left: 20vw;
        padding-right: 20vw;
      }
    }


/* Contact Form */

.imgintrocontactpage {
  position: relative;
}

.titlecontactpage{
  font-weight: lighter;
  position: absolute;

  width: 100%;
  padding-left: 30%;
  padding-right: 30%;
  font-size: 5vw;
}

.titlecontactpage h1 {
  font-weight: lighter;
  line-height: inherit;
  font-size: 5vw;
  display:flex; align-content: center; flex-wrap: wrap; align-items: center; justify-content: center; flex-direction: column;
}


@media only screen and (min-width: 540px) {
  .titlecontactpage{
    font-size: 4vw;
  }
  .titlecontactpage h1{
    font-size: 4vw;
  }
}

  #contactdetails {
    padding-top: 8vh;
    padding-left: 20vw;
    padding-right: 20vw;
    font-family: Georgia, 'Times New Roman', Times, serif;
  }

  @media only screen and (max-width: 540px) {
    #contactdetails {
      padding-top: 3vh;
      padding-left: 5vw;
    padding-right: 5vw;
    }
  }

.contactbox {
  font-family: 'Montserrat', sans-serif, Georgia, 'Times New Roman', Times, serif;
  font-weight: 100;
  color:rgb(76, 75, 75);
  background-color: rgba(238, 234, 231, 0.95);
  padding: 10px;
  border: 1px solid rgb(205, 203, 199);
}


#contact-title-box {
  font-size: large;
  font-family: Georgia, 'Times New Roman', Times, serif;
}

.any_question {
  padding-top: 10vh;
  padding-left: 4vw;
  padding-right: 4vw;
  text-align: center;
  font-family: Georgia, 'Times New Roman', Times, serif;
}

.please_fillform {
  font-size: medium;
  font-family: Georgia, 'Times New Roman', Times, serif;
  text-align: center;
  padding-bottom: 6vh;
  padding-left: 4vw;
  padding-right: 4vw;
}

@media only screen and (min-width: 992px) {
.please_fillform {
  text-align: center;
}
}

#form-contact {
  padding-top: 8vh;
  padding-left: 5vw;
  padding-right: 5vw;
  font-family: 'Montserrat', sans-serif, Georgia, 'Times New Roman', Times, serif;
  font-weight: lighter;
}

@media only screen and (min-width: 768px) {
#form-contact {
  padding-left: 20vw;
  padding-right: 20vw;
}
}

#submit-btn-form {
  padding-top: 10vh;
  padding-bottom: 15vh;
  text-align: center;
}

/* About Us */

#bordercontacttitle {
  color: #0e0e0d;
}

.imgintroaboutuspage {
  position: relative;
}


.titleaboutuspage {
  font-family: 'Montserrat', sans-serif, Georgia, 'Times New Roman', Times, serif;
  font-weight: lighter;
  position: absolute;
  top: 50%;
  width: 100%;
  padding-left: 30%;
  padding-right: 30%;
  font-size: 5vw;
}

@media only screen and (min-width: 540px) {
  .titleaboutuspage {
    top: 45%;
    font-size: 4vw;
  }
}

.title-ourservice {
  font-family: Georgia, 'Times New Roman', Times, serif;
  padding-top: 10vh;
  padding-bottom: 4vh;
    font-size: 30px;
  text-align: center;
  }

    @media only screen and (max-width: 540px) {
      .title-ourservice {
        padding-top: 10vh;
        padding-bottom: 4vh;
        font-size: 6vw;
      }
      }

  .introaboutustext {
        padding-left: 15vw;
        padding-right: 15vw;
        padding-bottom: 6vh;
        font-family: Georgia, 'Times New Roman', Times, serif;
        font-size: 14px;
        text-align: justify;
      }

     

.title-meettheteam {
  font-family: Georgia, 'Times New Roman', Times, serif;
  padding-top: 10vh;
  padding-bottom: 8vh;
  font-size: 30px;
  text-align: center;
}

@media only screen and (max-width: 540px) {
.title-meettheteam {
  padding-top: 8vh;
  padding-bottom: 6vh;
  font-size: 6vw;
}
}

#timjasper-aboutus {
  padding-left: 10vw;
  padding-right: 10vw;
  padding-bottom: 8vh;
}
  
#timjaspertext {
  font-family: Georgia, 'Times New Roman', Times, serif;
  font-size: 14px;
  text-align: justify;
}

@media only screen and (min-width: 768px) {
    #timjaspertext {
          padding-left: 6vw;
          font-size: 15px;
          text-align: justify;
      }   
    #timjasper-aboutus {
      padding-left: 10vw;
      padding-right: 10vw;
      padding-bottom: 15vh;
      }
}
    
#craftsmentext {
  padding-top: 8vh;
  padding-bottom: 4vh;
  padding-left: 15vw;
  padding-right: 15vw;
  font-family: Georgia, 'Times New Roman', Times, serif;
  font-size: 15px;
  text-align: justify;
}

#crafstmen-aboutus {
  padding-right: 10vw;
  padding-left: 10vw;
  font-size: 14px;
}

      @media only screen and (min-width: 768px) {
        .introaboutustext {
          padding-left: 30vw;
          padding-right: 30vw;
          font-size: 16px;
          text-align: justify;
        }
        #craftsmentext {
          padding-left: 30vw;
          padding-right: 30vw;
          padding-top: 20vh;
          padding-bottom: 20vh;
          font-size: 15px;
          text-align: justify;
        }
        
        } 



.embed-responsive {
  position: relative;
width: 100%;
height: 0;
padding-bottom: 56.25%;
}

.embed-responsive-item {
margin: 0 auto;
display: block;
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
}

#howwework {
  padding-top: 10vh;
  padding-left: 10vw;
  padding-right: 10vw;
  padding-bottom: 10vh;
  font-size: 14px;
}

.howweworktext {
  font-family: Georgia, 'Times New Roman', Times, serif;
  font-size: 14px;
  padding-left: 4vw;
  padding-right: 4vw;
}

      @media only screen and (min-width: 768px) {
        
        #howwework {
          padding-left: 15vw;
          padding-right: 15vw;
          padding-bottom: 20vh;
          padding-top: 20vh;
        }
        .howweworktext {
          font-size: 20px;
        }
        } 

.bg-image2 {
    position: relative;
  }

.howweworktext:hover {
    cursor: pointer;
  }

  

  /* Cards other than homepage */

  .cards {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    margin: 0;
    padding-left: 3vw;
    padding-right: 3vw;
  }

  
  .cards_item1 {
    padding: 1rem;
  }
  
  @media (max-width: 40rem) {
    .cards_item1 {
      width: 100%;
    }
  }
  
  @media (min-width: 768px) {
    .cards_item1 {
      width: 33%;
    }
  }
  
  @media (min-width: 992px) {
    .cards_item1 {
      width: 33%;
      padding: 2rem;
    }
  }
        
  .card_content {
    text-align: center;
    border-bottom-right-radius: 0.25rem;
    border-bottom-left-radius: 0.25rem; 
  }
  
  .card_text {
    font-weight: 200;
    font-size: 1rem;
    text-align: center;
    line-height: 1.5;
    padding: 1rem;
  }


/* Appliance brands */

#appliancebrands {
  max-width: 40vw;
  padding-top: 3vh;
  padding-bottom: 3vh;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
}

@media only screen and (max-width: 540px) {
  #appliancebrands {
padding-bottom: 10vh;
  }
}

/* Footer */


/* Footer height */
#content-wrap {
  padding-bottom: 2.5rem; 
  margin-top: auto;
}

#footer-container {
  font-weight: 100;
  text-align: center;
  padding-top: 4vh;
  padding-bottom: 2vh;
  color:#f1e1c4;
  background-color: #52668ddd;
  background-image: url('../assets/Homepage/navbar_background.png'); 

}


@media only screen and (max-width: 540px){
  #footer-container {
  font-size: 10px;
  line-height: 2.5vh;
  }
}

#footericons {
  color: #f1ece9;
  font-size: 20px;
  transition: all .5s ease;
}



@media only screen and (min-width: 540px) {
  #footer-container {
  line-height: 3vh;
  }
  #footercontact {
    font-size: 14px; 
  }
  #footericons {
    font-size: 25px;
  }
  } 

  



            