@font-face {
  font-family: "Creato";
  src: url("fonts/CreatoDisplay-Black.otf");
  font-weight: 900;
  font-style: normal;
}
@font-face {
  font-family: "Creato";
  src: url("fonts/CreatoDisplay-BlackItalic.otf");
  font-weight: 900;
  font-style: italic;
}
@font-face {
  font-family: "Creato";
  src: url("fonts/CreatoDisplay-Bold.otf");
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: "Creato";
  src: url("fonts/CreatoDisplay-BoldItalic.otf");
  font-weight: 700;
  font-style: italic;
}
@font-face {
  font-family: "Creato";
  src: url("fonts/CreatoDisplay-ExtraBold.otf");
  font-weight: 800;
  font-style: normal;
}
@font-face {
  font-family: "Creato";
  src: url("fonts/CreatoDisplay-ExtraBoldItalic.otf");
  font-weight: 800;
  font-style: italic;
}
@font-face {
  font-family: "Creato";
  src: url("fonts/CreatoDisplay-Light.otf");
  font-weight: 300;
  font-style: normal;
}
@font-face {
  font-family: "Creato";
  src: url("fonts/CreatoDisplay-LightItalic.otf");
  font-weight: 300;
  font-style: italic;
}
@font-face {
  font-family: "Creato";
  src: url("fonts/CreatoDisplay-Medium.otf");
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: "Creato";
  src: url("fonts/CreatoDisplay-MediumItalic.otf");
  font-weight: 500;
  font-style: italic;
}
@font-face {
  font-family: "Creato";
  src: url("fonts/CreatoDisplay-Regular.otf");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "Creato";
  src: url("fonts/CreatoDisplay-RegularItalic.otf");
  font-weight: 400;
  font-style: italic;
}
@font-face {
  font-family: "Creato";
  src: url("fonts/CreatoDisplay-Thin.otf");
  font-weight: 100;
  font-style: normal;
}
@font-face {
  font-family: "Creato";
  src: url("fonts/CreatoDisplay-ThinItalic.otf");
  font-weight: 100;
  font-style: italic;
}
/*
//DARK THEME
$dark-theme-background: darkolivegreen;              //dark
$dark-theme-section-background: rgb(17, 44, 35);               //dark

//REGULAR TEXT
$dark-theme-text-1: white;                           //light
$dark-theme-text-2: khaki;                           //light towards dark
$dark-theme-text-3: rgb(139, 69, 19);                //light towards dark
$dark-theme-text-4: rgb(160, 82, 45);                //light towards dark
$dark-theme-text-5: rgb(128, 0, 0);                  //light towards dark

$dark-theme-text-1: rgb(230, 246, 252);                      //light
$dark-theme-text-2: rgb(179, 198, 206);         //light towards dark
$dark-theme-text-3: rgb(138, 151, 156);         //light towards dark
$dark-theme-text-4: rgb(95, 95, 95);            //light towards dark
$dark-theme-text-5: rgb(59, 59, 59);            //light towards dark

//REGULAR CARD TEXT
$dark-theme-card-1: rgb(38, 95, 76);               //dark but lighter than background of section/
$dark-theme-regular-card-text-1: white;
$dark-theme-regular-card-text-2: rgb(253, 249, 215); //light towards dark
$dark-theme-regular-card-text-3: rgb(139, 69, 19);   //light towards dark
$dark-theme-regular-card-text-4: rgb(160, 82, 45);   //light towards dark
$dark-theme-regular-card-text-5: rgb(128, 0, 0);     //light towards dark

$dark-theme-card-2: olive;                           //lighter than card 1

//ACCENT CARD TEXT
$dark-theme-accent-card-1: rgb(252, 255, 75);                  //lighter accent, different from white
$dark-theme-accent-card-text-1: rgb(64, 65, 21);          //dark, towards light
$dark-theme-accent-card-text-2: saddlebrown;         //dark, towards light    
$dark-theme-accent-card-text-3: peru;                //dark, towards light
$dark-theme-accent-card-text-4: sienna;              //dark, towards light
$dark-theme-accent-card-text-5: rgb(139, 69, 19);    //dark, towards light  

$dark-theme-accent-text-1: rgb(252, 255, 75);                     //light

$dark-theme-devider: rgb(69, 179, 142);                          //dark, slightly lighter than
*/
body {
  font-family: "Creato";
  letter-spacing: 0.8px;
  line-height: 1.4;
  background: rgb(17, 17, 17);
  padding: 0px;
  margin: 0px;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 100vh;
  justify-content: flex-end;
}

.Main-Content[data-for=Home] {
  display: flex;
  flex-direction: column;
  width: 100%;
  padding: 0px;
  margin: 0px;
  gap: 0px !important;
}
.Service-Toggle {
  display: flex;
  padding: 4px;
  margin: 13px;
  border: 2px solid grey;
  border-radius: 8px;
  gap: 5px;
  /* Style for labels as buttons */
}
.Service-Toggle input[type=radio] {
  display: none;
}
.Service-Toggle input[type=radio]:checked + label {
  background: grey;
  color: white;
  display: flex !important;
  font-weight: 400;
}
.Service-Toggle label {
  display: inline-block;
  padding: 10px 15px;
  background-color: transparent;
  border-radius: 5px;
  cursor: pointer;
  font-weight: 500;
  color: grey;
}

#Deep-Clean {
  display: flex;
}

@keyframes grow {
  from {
    height: 0vh;
  }
  to {
    height: 100vh;
  }
}
@keyframes shrink {
  from {
    height: 100vh;
  }
  to {
    height: 67px;
  }
}
.Hamburger-Menu.open-animation {
  height: 67px;
  animation: grow 1s cubic-bezier(0.23, 1, 0.32, 1) forwards;
}

.Hamburger-Menu.close-animation {
  height: calc(100vh - 30px);
  animation: shrink 1s cubic-bezier(0.23, 1, 0.32, 1) forwards;
  animation-delay: 0.77s !important;
}

.Hamburger-Menu {
  width: calc(100vw - 40px);
  flex-direction: column;
  z-index: 100000;
  position: fixed;
  top: 0px;
  left: 0px;
  padding: 15px 20px;
  overflow-y: hidden;
  height: 1px;
  transition: background-color 0.3s ease;
}
.Hamburger-Menu .Hamburger-Menu-Content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  height: 100vh;
  gap: 10px;
}
.Hamburger-Menu .Hamburger-Menu-Content .Hamburger-Header[data-view-state=closed] .Company-Location {
  display: none !important;
}
.Hamburger-Menu .Hamburger-Menu-Content .Hamburger-Header[data-view-state=closed] .Hamburger-Icon {
  display: block;
  width: 25px;
  padding: 10px;
  background: rgb(92, 92, 92);
  border-radius: 5px;
}
.Hamburger-Menu .Hamburger-Menu-Content .Hamburger-Header[data-view-state=open] .Company-Location {
  display: flex !important;
}
.Hamburger-Menu .Hamburger-Menu-Content .Hamburger-Header[data-view-state=open] .Hamburger-Icon {
  display: none;
}
@keyframes viewIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes viewOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
.Hamburger-Menu .Hamburger-Menu-Content .open-animation {
  animation: viewIn 1s forwards;
}
.Hamburger-Menu .Hamburger-Menu-Content .close-animation {
  animation: viewOut 1s forwards;
}
.Hamburger-Menu .Hamburger-Menu-Content .Hamburger-Header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 67px;
}
.Hamburger-Menu .Hamburger-Menu-Content .Hamburger-Header .Company-Name[data-logo=true] {
  background-image: url(images/logo-transparent-white.png);
  background-size: 120%;
  background-position: center;
  background-repeat: no-repeat;
  width: 100px;
  height: 50px;
}
.Hamburger-Menu .Hamburger-Menu-Content .Hamburger-Header .Company-Name {
  margin: 0px;
  font-weight: 500;
  font-size: 2.5rem;
  margin-left: 2px;
}
.Hamburger-Menu .Hamburger-Menu-Content .Hamburger-Header .Company-Location {
  display: flex;
  align-items: center;
  gap: 10px;
}
.Hamburger-Menu .Hamburger-Menu-Content .Hamburger-Header .Company-Location .Location-Icon {
  width: 30px;
  height: 30px;
}
.Hamburger-Menu .Hamburger-Menu-Content .Hamburger-Header .Company-Location .Location {
  display: flex;
  font-size: 1.1rem;
  color: grey;
}
.Hamburger-Menu .Hamburger-Menu-Content .Hamburger-Header .Get-A-Quote-Header {
  border: none;
  border-radius: 50px;
  background-color: rgb(245, 245, 220);
  color: rgb(13, 28, 51);
  padding: 10px 20px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  display: none;
}
.Hamburger-Menu .Hamburger-Menu-Content .Hamburger-Main {
  display: flex;
  flex-direction: column;
  gap: 5px;
  overflow-y: scroll;
  padding-bottom: 250px;
  overflow-x: hidden;
}
.Hamburger-Menu .Hamburger-Menu-Content .Hamburger-Main::-webkit-scrollbar {
  width: 12px; /* Width of the scrollbar */
  display: none;
}
.Hamburger-Menu .Hamburger-Menu-Content .Hamburger-Main::-webkit-scrollbar-track {
  background-color: transparent; /* Color of the track */
  display: none;
}
.Hamburger-Menu .Hamburger-Menu-Content .Hamburger-Main::-webkit-scrollbar-thumb {
  background-color: transparent; /* Color of the scrollbar */
  border-radius: 6px; /* Rounded corners of the scrollbar thumb */
  display: none;
}
.Hamburger-Menu .Hamburger-Menu-Content .Hamburger-Main .Page-Link {
  background: #424242;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-radius: 7px;
  padding: 10px;
}
.Hamburger-Menu .Hamburger-Menu-Content .Hamburger-Main .Page-Link .Page-Link-Icon {
  height: 28px;
  padding-left: 5px;
  opacity: 0.9;
}
.Hamburger-Menu .Hamburger-Menu-Content .Hamburger-Main .Page-Link .Page-Link-Name {
  margin: 0px;
  text-decoration: none;
  padding: 10px;
  color: rgb(182, 182, 182);
  font-size: 1.1rem;
}
.Hamburger-Menu .Hamburger-Menu-Content .Hamburger-Main .Page-Link-Sub-Options[data-open=false] .Service-Options {
  display: none;
}
.Hamburger-Menu .Hamburger-Menu-Content .Hamburger-Main .Page-Link-Sub-Options {
  width: 100%;
  background-color: transparent;
  border: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  text-align: center;
  gap: 5px;
  padding: 0px;
  margin: 0px;
  background: #424242;
  border-radius: 7px;
}
.Hamburger-Menu .Hamburger-Menu-Content .Hamburger-Main .Page-Link-Sub-Options .Page-Link {
  width: calc(100% - 20px);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px;
  margin-top: 1px !important;
  animation: none;
}
.Hamburger-Menu .Hamburger-Menu-Content .Hamburger-Main .Page-Link-Sub-Options .Page-Link .Page-Link-Icon {
  height: 30px;
}
.Hamburger-Menu .Hamburger-Menu-Content .Hamburger-Main .Page-Link-Sub-Options .Page-Link .Page-Link-Name {
  color: rgb(182, 182, 182);
  font-size: 1.1rem;
  font-weight: 500;
  margin: 0px;
  text-decoration: none;
  padding: 10px;
}
.Hamburger-Menu .Hamburger-Menu-Content .Hamburger-Main .Page-Link-Sub-Options .Service-Options {
  display: flex;
  flex-direction: column;
  gap: 7px;
  justify-content: flex-end;
  align-items: flex-start;
  width: calc(100% - 30px);
  padding: 15px;
  padding-top: 0px;
}
.Hamburger-Menu .Hamburger-Menu-Content .Hamburger-Main .Page-Link-Sub-Options .Service-Options .Service-Option {
  width: calc(100% - 30px);
  text-align: left;
  background: #2e2e2e;
  padding: 15px 15px;
  border-radius: 5px;
  font-size: 1.15rem;
  color: rgb(209, 209, 188);
}
.Hamburger-Menu .Hamburger-Menu-Content .Hamburger-Main a {
  text-decoration: none;
  color: pink;
}
.Hamburger-Menu .Hamburger-Menu-Content .Hamburger-Footer .Get-A-Quote {
  display: none;
}
.Hamburger-Menu .Hamburger-Menu-Content .Hamburger-Footer .Sign-Options {
  display: flex;
  justify-content: space-between;
  align-items: center;
  opacity: 0.9;
  gap: 10px;
}
.Hamburger-Menu .Hamburger-Menu-Content .Hamburger-Footer .Sign-Options a {
  text-decoration: none;
}
.Hamburger-Menu .Hamburger-Menu-Content .Hamburger-Footer .Sign-Options .Sign-Up {
  padding: 15px;
  background: pink;
  color: rgb(36, 36, 36);
  border-radius: 7px;
  width: 100%;
  text-align: center;
  font-weight: bold;
  font-size: 1.2rem;
  margin: 0px;
}
.Hamburger-Menu .Hamburger-Menu-Content .Hamburger-Footer .Sign-Options .Sign-In {
  width: 100%;
  padding: 13px;
  border: 2px solid pink;
  border-radius: 7px;
  color: pink;
  font-size: 1.2rem;
  text-align: center;
  font-weight: bold;
}
@keyframes translateIn {
  from {
    transform: translateY(100px);
  }
  to {
    transform: translateY(0);
  }
}
@keyframes translateOut {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(100px);
  }
}
.Hamburger-Menu .open-animation {
  animation: viewIn 0.25s ease forwards;
  animation-delay: 0.4s;
}
.Hamburger-Menu .open-animation .Quick-Button {
  animation: translateIn 0.25s ease forwards;
  animation-delay: 0.4s;
}
.Hamburger-Menu .open-animation .Quick-Button:nth-child(1) {
  animation-delay: 0.4s;
}
.Hamburger-Menu .open-animation .Quick-Button:nth-child(2) {
  animation-delay: 0.45s;
}
.Hamburger-Menu .open-animation .Quick-Button:nth-child(3) {
  animation-delay: 0.5s;
}
.Hamburger-Menu .open-animation .Hamburger-Menu-Exit {
  animation: translateIn 0.25s ease forwards;
  animation-delay: 0.55s;
}
.Hamburger-Menu .close-animation {
  animation: viewOut 0.8s forwards;
}
.Hamburger-Menu .close-animation .Quick-Button {
  animation: translateOut 0.5s ease forwards;
}
.Hamburger-Menu .close-animation .Quick-Button:nth-child(1) {
  animation-delay: 0.15s;
}
.Hamburger-Menu .close-animation .Quick-Button:nth-child(2) {
  animation-delay: 0.1s;
}
.Hamburger-Menu .close-animation .Quick-Button:nth-child(3) {
  animation-delay: 0.05s;
}
.Hamburger-Menu .close-animation .Hamburger-Menu-Exit {
  animation: translateOut 0.5s ease forwards;
  animation-delay: 0s;
}
.Hamburger-Menu .Hamburger-Quick-Buttons[data-view-state=closed] {
  opacity: 0;
}
.Hamburger-Menu .Hamburger-Quick-Buttons[data-view-state=closed] .Quick-Button {
  transform: translateY(100px);
}
.Hamburger-Menu .Hamburger-Quick-Buttons[data-view-state=closed] .Hamburger-Menu-Exit {
  transform: translateY(100px);
}
.Hamburger-Menu .Hamburger-Quick-Buttons {
  width: calc(100vw - 30px);
  background: rgba(29, 29, 29, 0.596);
  backdrop-filter: blur(15px);
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: fixed;
  bottom: 0px;
  left: 0px;
  height: -moz-max-content;
  height: max-content;
  padding: 15px 15px;
  padding-bottom: 20px;
  padding-top: 10px;
  border-top: 1px solid rgb(136, 136, 136);
}
.Hamburger-Menu .Hamburger-Quick-Buttons .Quick-Button-Contact {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: 5px;
}
.Hamburger-Menu .Hamburger-Quick-Buttons .Quick-Button-Contact .Quick-Button {
  text-decoration: none;
  height: -moz-max-content;
  height: max-content;
}
.Hamburger-Menu .Hamburger-Quick-Buttons .Quick-Button-Contact .Quick-Button .Quick-Button-Text {
  color: grey;
  font-size: 0.7rem;
  margin: 0px;
  text-align: center;
}
.Hamburger-Menu .Hamburger-Quick-Buttons .Quick-Button-Contact .Quick-Button .Quick-Button-Icon {
  width: 35px;
  height: 30px;
  padding: 10px;
  background: rgba(255, 245, 220, 0.781);
  border-radius: 10px;
  border: 1px solid rgb(100, 100, 100);
  margin: 0px;
}
.Hamburger-Menu .Hamburger-Quick-Buttons .Hamburger-Menu-Exit {
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  height: -moz-max-content;
  height: max-content;
  gap: 4px;
}
.Hamburger-Menu .Hamburger-Quick-Buttons .Hamburger-Menu-Exit .Exit-Text {
  margin-right: 10px;
  font-size: 0.7rem;
  color: grey;
  text-align: center;
  margin: 0px;
}
.Hamburger-Menu .Hamburger-Quick-Buttons .Hamburger-Menu-Exit .Exit-Icon {
  width: 27px;
  height: 27px;
  padding: 12px;
  margin: 0px 0px;
  border-radius: 50px;
  background: transparent;
  border: 1px solid rgb(143, 143, 143);
  transform: rotate(-90deg);
}

.Hamburger-Menu:Hover {
  height: calc(100vh - 30px);
}

.Hamburger-Menu[data-view-state=open] {
  height: calc(100vh - 30px);
  background: rgb(37, 37, 37) !important;
}
.Hamburger-Menu[data-view-state=open] .Hamburger-Menu-Content {
  justify-content: flex-start;
}
.Hamburger-Menu[data-view-state=open] .Hamburger-Icon {
  display: none;
}

.Hamburger-Menu[data-view-state=closed] {
  height: 67px;
}
.Hamburger-Menu[data-view-state=closed] .Hamburger-Menu-Content {
  display: flex;
  height: -moz-max-content;
  height: max-content;
  justify-content: space-between;
}
.Hamburger-Menu[data-view-state=closed] .Hamburger-Menu-Content .Hamburger-Header {
  display: flex;
}
.Hamburger-Menu[data-view-state=closed] .Hamburger-Menu-Content .Hamburger-Header .Company-Location {
  display: none;
}
.Hamburger-Menu[data-view-state=closed] .Hamburger-Menu-Content .Hamburger-Header .Hamburger-Icon {
  width: 25px;
  padding: 10px;
  background: rgb(92, 92, 92);
  border-radius: 5px;
}
.Hamburger-Menu[data-view-state=closed] .Hamburger-Menu-Content .Hamburger-Main {
  display: none;
}
.Hamburger-Menu[data-view-state=closed] .Hamburger-Menu-Content .Hamburger-Footer {
  display: none;
}
.Hamburger-Menu[data-view-state=closed] .Hamburger-Quick-Buttons {
  display: none;
}

#About-Hero, #Residential-Hero, #Airbnb-Hero, #Office-Hero, #Moving-Hero, #Post-Renovation-Hero, #FAQS-Hero {
  height: 500px;
}
#About-Hero .Image-Overlay, #Residential-Hero .Image-Overlay, #Airbnb-Hero .Image-Overlay, #Office-Hero .Image-Overlay, #Moving-Hero .Image-Overlay, #Post-Renovation-Hero .Image-Overlay, #FAQS-Hero .Image-Overlay {
  display: flex;
}
#About-Hero .Image-Elipse, #Residential-Hero .Image-Elipse, #Airbnb-Hero .Image-Elipse, #Office-Hero .Image-Elipse, #Moving-Hero .Image-Elipse, #Post-Renovation-Hero .Image-Elipse, #FAQS-Hero .Image-Elipse {
  display: flex;
}
#About-Hero .Hero-Title, #Residential-Hero .Hero-Title, #Airbnb-Hero .Hero-Title, #Office-Hero .Hero-Title, #Moving-Hero .Hero-Title, #Post-Renovation-Hero .Hero-Title, #FAQS-Hero .Hero-Title {
  display: none;
}

#About-Hero {
  background-image: url(images/about-us-better_DESKTOP_COMPRESSED.webp);
}

#FAQS-Hero {
  background-image: url(images/residential-cleaning-services-Peterborough-Ontario-2-1024x768_DESKTOP_COMPRESSED.webp);
}

#Residential-Hero {
  background-image: url(images/residential-cleaning-services-Peterborough-Ontario-1_DESKTOP_COMPRESSED.webp);
}

#Airbnb-Hero {
  background-image: url(images/airbnb-better_DESKTOP_COMPRESSED.webp);
}

#Office-Hero {
  background-image: url(images/office-cleaning_DESKTOP_COMPRESSED.webp);
}

#Moving-Hero {
  background-image: url(images/moving-cleaning-services-peterborough-ontario_DESKTOP_COMPRESSED.webp);
}

#Post-Renovation-Hero {
  background-image: url(images/post-renovation-change_DESKTOP_COMPRESSED.webp);
}

.Hero[data-default=true] {
  position: relative;
  width: 100vw;
  height: 75vh;
  background-image: url(images/about-us-better.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  margin: 0px;
  padding: 0px;
  display: flex;
  justify-content: center;
  align-items: flex-end;
}
.Hero[data-default=true] .Hero-Image {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  z-index: 1;
}
.Hero[data-default=true] .Image-Overlay {
  position: absolute;
  background: radial-gradient(ellipse at center, transparent 0%, rgba(41, 41, 41, 0.884) 70%);
  background-size: 180% 100%;
  background-position: center;
  background-repeat: no-repeat;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  z-index: 2;
}
.Hero[data-default=true] .Image-Elipse {
  position: absolute;
  box-shadow: inset 0 0 10px 5px rgb(0, 0, 0); /* Apply an inset shadow */
  background: radial-gradient(ellipse at center, transparent 20%, rgba(0, 0, 0, 0) 70%);
  background-size: 160% 100%;
  background-position: center;
  background-repeat: no-repeat;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  z-index: 3;
}
.Hero[data-default=true] .Hero-Content {
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 15px;
  padding: 4vh;
}
.Hero[data-default=true] .Hero-Content .Hero-Title {
  color: white;
  width: 80%;
  text-align: center;
  margin: 0px;
  margin-bottom: 10px;
  text-shadow: 0px 0px 30px black;
  font-weight: 800;
  font-size: 2rem;
  backdrop-filter: blur(1px);
}
.Hero[data-default=true] .Hero-Content .Hero-Text {
  width: 70%;
  color: white;
  text-shadow: 0px 0px 30px black;
  text-align: center;
  backdrop-filter: blur(1px);
}
.Hero[data-default=true] .Hero-Content div {
  width: 55%;
  display: flex;
  justify-content: space-around;
}
.Hero[data-default=true] .Hero-Content div .Call-To-Action {
  border: none;
  border-radius: 50px;
  background-color: rgb(245, 245, 220);
  color: rgb(13, 28, 51);
  padding: 15px 35px;
  font-size: 1.2rem;
  font-weight: bold;
  text-decoration: none;
  text-align: center;
}

#Why-Us-2 {
  margin-bottom: 30px;
}

#Why-Us-3 {
  margin-top: 70px;
  align-self: center;
}

#Why-Us-5 {
  margin-top: 50px;
  align-self: center;
  margin-bottom: 0px;
  padding-bottom: 0px;
}

.Why-Us[data-theme=dark] {
  background-color: rgb(22, 22, 22);
}
.Why-Us[data-theme=dark] .Why-Us-Title {
  color: rgb(196, 174, 134) !important;
}
.Why-Us[data-theme=dark] .Why-Us-Description {
  color: rgba(241, 238, 233, 0.8);
}

.Why-Us {
  padding: 25px 3%;
  color: rgb(13, 28, 51);
}
.Why-Us .Why-Us-Title {
  font-size: 2.2rem;
}
.Why-Us .Why-Us-Description {
  margin-bottom: 0px;
  width: 80%;
  line-height: 1.5rem;
}

#Additionl-Services {
  width: 90%;
}
#Main-Services .Service {
  height: -moz-max-content;
  height: max-content;
}
#Main-Services .Service .Service-Description {
  max-width: 100% !important;
}

.Services[data-theme=dark] {
  background-color: rgb(22, 22, 22);
}
.Services[data-theme=dark] .Services-Title {
  color: rgb(196, 174, 134);
}
.Services[data-theme=dark] .Services-Container .Service {
  background-color: rgb(36, 36, 36);
}
.Services[data-theme=dark] .Services-Container .Service .Service-Description {
  color: white !important;
}
.Services[data-theme=dark] .Services-Container .Service .Service-Price {
  background-color: rgb(22, 22, 22);
  color: #f1eee9;
}
.Services[data-theme=dark] .Services-Container .Service .Service-Info {
  background-color: transparent;
}
.Services[data-theme=dark] .Services-Container .Service .Service-Details {
  background-color: transparent;
  color: rgba(241, 238, 233, 0.8);
}

.Services {
  display: flex;
  justify-content: center;
  flex-direction: column;
  padding: 2% 3%;
  padding-bottom: 5%;
  background: rgba(231, 121, 69, 0.952) !important;
  width: 94%;
}
.Services[data-with-title=false] {
  padding-top: 20px !important;
}
.Services[data-with-title=false] .Services-Title {
  display: none !important;
}
.Services .Services-Title {
  text-align: center;
  margin-top: 0px;
}
.Services .Services-Container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}
.Services .Services-Container .Service {
  border-radius: 3px;
  width: 310px;
  box-shadow: 0px 0px 20px 1px rgba(0, 0, 0, 0.651);
  height: -moz-max-content;
  height: max-content;
  background-color: rgb(255, 248, 238);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 0px;
  text-decoration: none;
  border-radius: 10px;
}
.Services .Services-Container .Service .Service-Image {
  width: 100%;
  height: 180px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 5px;
}
.Services .Services-Container .Service .Service-Info {
  width: -moz-max-content;
  width: max-content;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.Services .Services-Container .Service .Service-Info .Service-Description {
  max-width: 50%;
  margin: 0px;
  font-size: 1.1rem !important;
  font-weight: 600;
  color: white !important;
  margin-bottom: 0px !important;
  font-weight: 400;
  padding: 10px 15px;
  background-color: rgba(100, 100, 100, 0.103);
  backdrop-filter: blur(7px);
  border-radius: 7px;
  text-shadow: 0px 0px 10px black;
  box-shadow: 0px 0px 30px 5px rgba(0, 0, 0, 0.877);
}
.Services .Services-Container .Service .Service-Info .Service-Price {
  max-width: 40%;
  border-radius: 5px;
  border: 1px solid rgba(128, 128, 128, 0.219);
  padding: 5px 7px;
  margin: 0px;
  background: rgba(30, 35, 44, 0.87);
  color: white;
}
.Services .Services-Container .Service .Service-Info .Service-Details {
  width: 90%;
  font-size: 0.8rem;
  margin: 0px;
  margin-top: 20px;
  color: rgb(146, 146, 146);
  display: none;
}

.Card-Carousel[data-theme=light] .Reviews {
  background-color: transparent !important;
}
.Card-Carousel[data-theme=light] .Reviews .Review {
  background-color: rgba(122, 108, 84, 0.5) !important;
}
.Card-Carousel[data-theme=light] .Reviews .Review .Review-Text {
  color: rgba(241, 238, 233, 0.8) !important;
}
.Card-Carousel[data-theme=light] .Reviews .Review .Review-Author {
  color: rgba(241, 238, 233, 0.5) !important;
}
.Card-Carousel[data-theme=light] .Reviews .Review .Review-Navigation {
  border-color: rgba(164, 146, 113, 0.3);
  background-color: rgba(164, 146, 113, 0.15);
}
.Card-Carousel[data-theme=light] .Reviews .Review .Review-Navigation .Navigation-Text {
  color: rgb(196, 174, 134);
}

.Card-Carousel[data-theme=dark] .Reviews {
  background-color: transparent !important;
}
.Card-Carousel[data-theme=dark] .Reviews .Review {
  background-color: rgb(36, 36, 36);
}
.Card-Carousel[data-theme=dark] .Reviews .Review .Review-Text {
  color: #f1eee9 !important;
}
.Card-Carousel[data-theme=dark] .Reviews .Review .Review-Author {
  color: rgba(241, 238, 233, 0.8) !important;
}

.Reviews {
  display: flex;
  justify-content: flex-start;
  gap: 32px;
  padding: 0px 30px;
  width: 100% !important;
  max-width: 100% !important;
  align-items: flex-start;
  left: 0px;
  top: 0px;
  scroll-behavior: smooth;
  overflow-x: scroll !important;
  scroll-snap-type: x mandatory;
  scroll-padding: 0px; /* Optional: adds offset for snapping */
  scroll-snap-stop: always;
  box-sizing: border-box;
}
.Reviews::-webkit-scrollbar {
  display: none;
}
.Reviews .Review {
  display: none;
}
.Reviews .Review {
  width: 280px !important;
  min-width: 280px !important;
  background: rgb(36, 36, 36);
  padding: 25px;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  gap: 25px;
  flex-grow: 0;
  scroll-snap-align: center;
}
.Reviews .Review:nth-child(even) {
  margin-top: 20px;
  margin-bottom: 0px;
}
.Reviews .Review:nth-child(odd) {
  margin-bottom: 20px;
  margin-top: 0px;
}
.Reviews .Review .Review-Header {
  display: flex;
  justify-content: space-between;
  width: 100%;
  margin-bottom: 5px;
}
.Reviews .Review .Review-Header .Review-Quotation-Icon {
  width: 20px;
}
.Reviews .Review .Review-Header .Review-Source-Icon {
  width: 25px;
}
.Reviews .Review .Review-Content {
  max-height: 255px;
  min-height: 255px;
  position: relative;
  overflow-y: hidden;
}
.Reviews .Review .Review-Content .Review-Text {
  color: rgb(165, 164, 164);
  margin-top: 0px;
  line-height: 1.9;
  font-weight: 500;
  letter-spacing: 0.8px;
}
.Reviews .Review .Review-Footer {
  width: 100%;
  display: flex;
  justify-content: space-between;
  gap: 8px;
  align-items: center;
}
.Reviews .Review .Review-Footer .Review-Author {
  color: white;
  margin: 0px;
  font-weight: 500;
}
.Reviews .Review .Review-Footer .NavigationButton {
  background-color: #dbb485 !important;
}
.Reviews .Review .Review-Footer .Review-Navigation {
  display: flex;
  align-items: center;
  gap: 10px;
  border-radius: 10px;
  padding: 8px 12px;
  background: rgba(128, 128, 128, 0.158);
  width: -moz-max-content;
  width: max-content;
  border: transparent;
  border: 1.5px solid rgba(255, 255, 255, 0.251);
  transition: transform 0.2s ease;
}
.Reviews .Review .Review-Footer .Review-Navigation:hover {
  transform: scale(1.03);
}
.Reviews .Review .Review-Footer .Review-Navigation .Navigation-Text {
  color: rgb(175, 175, 175);
  margin: 0px;
  font-size: 0.9rem;
  width: -moz-max-content;
  width: max-content;
  line-height: 1.5;
  font-weight: 500;
}
.Reviews .Review .Review-Footer .Review-Navigation .Navigation-Icon.toTop {
  transform: rotate(-90deg);
}
.Reviews .Review .Review-Footer .Review-Navigation .Navigation-Icon {
  width: 12px;
  transform: rotate(90deg);
}

/*
.Reviews {
    position: absolute;
    display: flex;
    justify-content: flex-start;
    gap: 20px;
    //overflow-x: hidden;
    padding: 20px;
    width: max-content;
    //width: calc(100%);
    //padding-left: 5%;
    //padding-right: 5%;
    align-items: flex-start;
    left: 0px;
    top: 0px;
    padding-left: 0px;
    padding-right: 0px;
    overflow-y: hidden;



    .Review[data-even=true] {
        margin-top: 20px;
        margin-bottom: 0px;
    }

    .Review[data-even=false] {
        margin-bottom: 20px;        
        margin-top: 0px;
    }

    .Review {
        width: 300px;
        min-width: 300px;
        background: rgba(30, 35, 44, 0.952);
        //box-shadow: 0px 1px 20px 0px rgba(0, 0, 0, 0.753);
        padding: 25px;
        border-radius: 10px;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: space-between;
        gap: 20px;
        flex-grow: 0;

        .ReadMoreButton {
            position: absolute;
            cursor: pointer;
            bottom: 15px;
            right: 15px;
            //width: 50%;
            margin-left: 75%;
            background: rgba(218, 218, 218, 0.836);
            border-radius: 50px;
            color: rgb(26, 31, 37);
            text-align: center;
            display: flex;
            padding-top: 8px;
            padding-bottom: 8px;
            justify-content: center;
            align-items: center;
            font-weight: 500;
            font-size: 0.8rem;
            padding: 10px 15px;
            width: max-content;
            border: transparent;
            font-weight: bold;
        }

        .Review-Quotation {
            width: 15px;
        }

        .Review-Text {
            color: rgb(165, 164, 164);
            font-size: 1.1rem;
            margin: 0px;
            max-height: 250px;
            min-height: 250px;
            overflow-y: hidden;
            position: relative;

            .Read-More-Container {
                position: absolute;
                bottom: 0px;
                left: 0px;
                background: rgba(46, 46, 46, 0.815);
                width: 40%;
                display: flex;
                justify-content: center;
                margin-left: 60%;
            }
        }

        .Review-Text.expanded::-webkit-scrollbar {
            -webkit-appearance: none;
            width: 10px; 

        }

        .Review-Text.expanded::-webkit-scrollbar-track {
            background-color: #f1f1f10a !important; 
            border-radius: 5px; 
        }

        .Review-Text.expanded::-webkit-scrollbar-thumb {
            background-color: #d6d6d6; 
            border-radius: 5px;
        }

        .Review-Text.expanded::-webkit-scrollbar-thumb:hover {
            background-color: #555;
        }

        .Review-Text.expanded {
            overflow-y: scroll; 
            -webkit-overflow-scrolling: touch;

            .ReadMoreButton {
                position: relative;
                margin-top: 20px;
            }
        }

        .Review-Author {
            color: white;            
            margin: 0px;
            width: 60%;
            //background: blue;
        }

    }

}
*/
.Founder[data-theme=dark] {
  background: rgb(22, 22, 22);
}
.Founder[data-theme=dark] .Founder-About-Details .Founder-Title {
  color: #f1eee9;
}
.Founder[data-theme=dark] .Founder-About-Details .Founder-Text {
  color: rgba(241, 238, 233, 0.5) !important;
}
.Founder[data-theme=dark] .Founder-About-Details .CTA-Founder {
  background-color: #dbb485;
  color: #333029;
}

.Founder {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4%;
  gap: 50px;
  width: 92%;
}
.Founder .Founder-Image {
  width: 200px;
  height: 280px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 50px;
}
.Founder .Founder-About-Details {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.Founder .Founder-About-Details .Founder-Title {
  margin: 0px;
  color: rgba(30, 35, 44, 0.952);
  font-size: 3rem;
  font-weight: 500;
}
.Founder .Founder-About-Details .Founder-Text {
  margin: 0px;
  color: rgba(30, 35, 44, 0.712);
  max-width: 800px;
  font-weight: 500;
  line-height: 1.6;
  font-size: 1.1rem;
}
.Founder .Founder-About-Details .CTA-Founder {
  background: rgba(30, 35, 44, 0.952);
  color: rgb(255, 248, 238);
  padding: 12px 25px;
  border-radius: 15px;
  text-decoration: none;
  width: -moz-max-content;
  width: max-content;
  font-weight: 600 !important;
}

.Core-Values-Container[data-theme=dark] {
  background-color: rgb(22, 22, 22);
}
.Core-Values-Container[data-theme=dark] .Core-Values-Title {
  color: rgb(196, 174, 134);
}
.Core-Values-Container[data-theme=dark] .Core-Values .Core-Value .Core-Value-Title {
  color: #f1eee9;
}
.Core-Values-Container[data-theme=dark] .Core-Values .Core-Value .Core-Value-Text {
  color: rgba(241, 238, 233, 0.5);
}

.Core-Values-Container {
  background-color: rgba(30, 35, 44, 0.952);
  padding: 5%;
  display: flex;
  flex-direction: column;
  width: 90%;
}
.Core-Values-Container .Core-Values-Title {
  color: white;
  margin: 0px;
  font-weight: 300;
}
.Core-Values-Container .Core-Values {
  display: flex;
  gap: 30px;
}
.Core-Values-Container .Core-Values .Core-Value {
  width: 33%;
}
.Core-Values-Container .Core-Values .Core-Value .Core-Value-Title {
  color: rgb(255, 248, 238);
  font-weight: 500;
  margin-top: 0px;
}
.Core-Values-Container .Core-Values .Core-Value .Core-Value-Text {
  color: rgba(255, 242, 222, 0.651);
}

.Image-Gallery {
  width: 90%;
  padding: 2% 5%;
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  align-items: center;
  display: none;
}
.Image-Gallery .Gallery-Image:nth-child(odd) {
  justify-content: flex-end;
}
.Image-Gallery .Gallery-Image:nth-child(odd) .Image {
  order: 2;
}
.Image-Gallery .Gallery-Image:nth-child(odd) .Description {
  order: 1;
}
.Image-Gallery .Gallery-Image:nth-child(even) .Description {
  order: 1;
}
.Image-Gallery .Gallery-Image {
  width: 85%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 20px;
  gap: 20px;
  border-radius: 10px;
  background: rgba(128, 128, 128, 0.192);
}
.Image-Gallery .Gallery-Image .Image {
  width: 50%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 5px;
  max-width: 700px;
  order: 1;
  box-shadow: 0px 0px 20px 5px rgba(0, 0, 0, 0.116);
}
.Image-Gallery .Gallery-Image .Description {
  color: rgba(30, 35, 44, 0.63);
  font-size: 1.2rem;
  margin-top: 5px;
  font-weight: bold;
  max-width: 500px;
  order: 2;
  padding: 50px;
  text-align: center;
  margin: auto;
}

.Gallery-Wheel {
  padding: 2% 5%;
  width: 90%;
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: center;
  flex-wrap: wrap;
}
.Gallery-Wheel .Gallery-Image {
  height: 200px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 5px;
}

.Descriptive-CTA {
  width: 86%;
  background: rgba(30, 35, 44, 0.952);
  padding: 2% 5%;
  margin: 2%;
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 20px;
  border-radius: 10px;
  align-items: center;
  max-width: 1000px;
}
.Descriptive-CTA .Description {
  color: rgb(255, 245, 220);
  margin: 0px;
  text-align: center;
}
.Descriptive-CTA .CTA {
  background: rgb(255, 242, 222);
  padding: 15px 25px;
  border-radius: 10px;
  width: -moz-max-content;
  width: max-content;
  text-decoration: none;
  color: rgba(30, 35, 44, 0.952);
  font-weight: bold;
}

#Founder-2 {
  align-items: flex-start;
}

.card-view-animation.animation-played {
  opacity: 1 !important;
  transform: translateY(0) !important;
}

@keyframes slideIn {
  0% {
    transform: translateX(-100%);
  }
  60% {
    transform: translateX(20%);
  }
  80% {
    transform: translateX(7.5%);
  }
  100% {
    transform: translateX(0%);
  }
}
.list-slide-animation {
  transform: translate(-100%);
}

.list-slide-animation.play-in {
  animation: slideIn 1s linear forwards;
}

@keyframes slideOut {
  0% {
    transform: translateX(0%);
  }
  20% {
    transform: translateX(-7.5%);
  }
  40% {
    transform: translateX(-20%);
  }
  100% {
    transform: translateX(-100%);
  }
}
.list-slide-animation.play-out {
  animation: slideOut 1s linear forwards;
}

.card-view-animation {
  opacity: 0;
  transform: translateY(-20px);
  transition: opacity 1s, transform 0.5s;
  transition-delay: -2s;
}

.Testimonials {
  display: flex;
  justify-content: space-evenly;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 15px; /* Add gap between grid items */
  padding: 2.5%;
  width: auto;
}
.Testimonials .Review-Testimonial {
  width: 240px;
  height: auto;
  background-color: rgba(30, 35, 44, 0.952);
  padding: 20px 30px;
  border-radius: 10px;
  float: left;
}
.Testimonials .Review-Testimonial .Review-Text {
  color: grey;
}
.Testimonials .Review-Testimonial .Review-Author {
  color: white;
}
.Testimonials .Video-Testimonial {
  position: relative;
  width: 300px;
  height: 100%;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  margin-bottom: 50px;
}
.Testimonials .Video-Testimonial .Video-Subject {
  position: absolute;
  bottom: -35px;
  left: 10px;
  margin: 0px;
  font-size: 1.2rem;
}
.Testimonials .Video-Testimonial video {
  width: 300px;
  height: auto;
  border-radius: 10px;
}
.Testimonials .Video-Testimonial .Video-Overlay {
  position: absolute;
  background: rgba(0, 0, 0, 0.397);
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  border-radius: 10px;
}
.Testimonials .Video-Testimonial .View-Play-Icon {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 15px;
  height: 15px;
  transform: translate(-50%, -50%);
  background: rgba(255, 255, 255, 0.267);
  background-image: url(icons/play-white.png);
  border: 1px solid rgba(255, 255, 255, 0.295);
  background-size: 25px;
  background-position-x: 60%;
  background-position-y: 50%;
  background-repeat: no-repeat;
  opacity: 0.8;
  box-shadow: 0px 0px 25px 10px rgba(0, 0, 0, 0.671);
  padding: 20px;
  border-radius: 50px;
  z-index: 10;
}

#Additional-Services .Service {
  margin-top: 0px;
  box-shadow: none;
  border: 1px solid rgba(0, 0, 0, 0.212);
}

.Service- {
  background: rgb(253, 251, 243);
  width: 100%;
  display: flex;
  display: none;
}
.Service- .Service-Header {
  padding: 30px;
  background: rgb(90, 90, 90);
  margin: 15px;
  display: flex;
  justify-content: center;
  margin-top: 0px;
  display: none;
}
.Service- .Service-Header .Service-Title {
  color: white;
  font-weight: 400;
  font-size: 2rem;
  letter-spacing: 0.3rem;
  margin-bottom: 5px;
  writing-mode: vertical-lr;
  height: -moz-max-content;
  height: max-content;
  text-orientation: upright;
  margin: 0px;
}
.Service- .Service-Header .Service-Meta-Title {
  display: none;
  color: rgb(88, 88, 88);
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.5rem;
  margin-top: 0px;
  writing-mode: vertical-lr;
  height: -moz-max-content;
  height: max-content;
  transform: rotate(180deg);
  margin-top: 0px;
}
.Service- .Service-Main {
  gap: 1px;
  display: flex;
  justify-content: space-evenly;
  flex-direction: row;
  padding: 20px;
  width: 98%;
  padding-left: 1%;
  padding-right: 1%;
  margin-bottom: 20px;
}
.Service- .Service-Main .Service-Page {
  padding: 20px 12px;
  background: white;
  max-width: 45%;
  height: -moz-max-content;
  height: max-content;
  display: flex;
  flex-wrap: wrap;
  gap: 1px;
  box-shadow: 0px 10px 30px 10px rgba(0, 0, 0, 0.171);
}
.Service- .Service-Main .Service-Page .Page-Header {
  background: rgb(236, 236, 236);
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-top: 0px;
  padding: 20px 30px;
}
.Service- .Service-Main .Service-Page .Page-Header .Service-Title {
  color: grey;
  font-weight: 300;
  font-size: 1.5rem;
  margin-bottom: 5px;
  height: -moz-max-content;
  height: max-content;
  letter-spacing: 0.3rem;
  margin: 0px;
}
.Service- .Service-Main .Service-Page .Page-Header .Service-Meta-Title {
  color: rgb(70, 70, 70);
  font-weight: 600;
  font-size: 0.8rem;
  margin: 0px;
  letter-spacing: 0.3rem;
  margin-top: 7px;
}
.Service- .Service-Main .Service-Page .Columns {
  width: 100%;
  display: flex;
  margin-top: 20px;
}
.Service- .Service-Main .Service-Page .Columns .Area-Column-1 {
  width: calc(50% - 1px);
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 1px;
}
.Service- .Service-Main .Service-Page .Columns .Area-Column-1 .Area:first-child {
  padding-top: 0px;
}
.Service- .Service-Main .Service-Page .Columns .Area-Column-1 .Area:last-child {
  border-bottom: none;
}
.Service- .Service-Main .Service-Page .Columns .Area-Column-2 {
  width: 50%;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 1px;
}
.Service- .Service-Main .Service-Page .Columns .Area-Column-2 .Area {
  border-right: none;
}
.Service- .Service-Main .Service-Page .Columns .Area-Column-2 .Area:first-child {
  padding-top: 0px;
}
.Service- .Service-Main .Service-Page .Columns .Area-Column-2 .Area:last-child {
  border-bottom: none;
}
.Service- .Service-Main .Area {
  background: white;
  padding: 25px;
  flex: 1;
  border-right: 1px solid rgb(172, 172, 172);
  border-bottom: 1px solid rgb(172, 172, 172);
}
.Service- .Service-Main .Area .Area-Title {
  margin-top: 0px;
  margin-left: 0px;
  font-weight: 500;
  font-size: 0.9rem;
  color: rgb(70, 70, 70);
  background: rgba(30, 35, 44, 0.185);
  width: -moz-max-content;
  width: max-content;
  padding: 5px 10px;
  border-radius: 5px;
}
.Service- .Service-Main .Area .Area-Checks {
  margin: 0px;
  height: calc(100% - 30px);
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  padding-left: 10px;
}
.Service- .Service-Main .Area .Area-Checks .Check {
  color: rgb(133, 133, 133);
  font-size: 0.9rem;
  margin-top: 5px;
  margin-bottom: 5px;
}
.Service- .Service-Main #Classic-Kitchen {
  grid-area: kitchen;
  height: calc(100% - 50px);
}
.Service- .Service-Main #Classic-Kitchen .Area-Checks {
  height: calc(100% - 30px);
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  padding-left: 10px;
}
.Service- .Service-Main #Classic-Living-Room {
  flex: 0;
}
.Service- .Service-Main #Classic-Living-Room .Area-Checks .Check {
  margin-top: 5px;
  margin-bottom: 5px;
}
.Service- .Service-Main #Classic-Bathrooms {
  flex: 1;
}
footer {
  background: rgba(30, 35, 44, 0.952);
  width: 97%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 1.5%;
  padding-top: 0px;
  padding-bottom: 0px;
}
footer a:hover {
  color: white !important;
}
footer .Footer-Header {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-around;
  padding-top: 7px;
  padding-bottom: 7px;
  border-bottom: 1px solid rgb(66, 66, 66);
}
footer .Footer-Header .Footer-Website-Pages {
  padding: 0px;
  display: flex;
  justify-content: space-between;
  width: 60%;
}
footer .Footer-Header .Footer-Website-Pages .Footer-Website-Page {
  text-decoration: none;
  color: rgba(253, 247, 238, 0.76);
  font-size: 0.9rem;
}
footer .Footer-Header .Main-Call-To-Action {
  margin-left: 5%;
}
footer .Footer-Header .Main-Call-To-Action .Get-A-Quote {
  border: none;
  border-radius: 50px;
  background-color: rgb(245, 245, 220);
  color: rgb(13, 28, 51);
  padding: 5px 20px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
}
footer .Footer-Main {
  width: 100%;
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid rgb(66, 66, 66);
  padding: 1.8% 0%;
}
footer .Footer-Main .Footer-Logo-Container {
  width: 30%;
  max-width: 300px;
  color: white;
  background-image: url();
  background-size: 120%;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
}
footer .Footer-Main .Social-Medias {
  display: flex;
  gap: 10px;
  align-self: center;
}
footer .Footer-Main .Social-Medias .Social-Media {
  width: 50px;
  height: 50px;
  background: rgba(128, 128, 128, 0.274);
  border-radius: 50px;
}
footer .Footer-Main .Social-Medias #Facebook {
  background-image: url(icons/facebook-icon-white_LARGE_COMPRESSED.png);
  background-position: center;
  background-size: 60%;
  background-repeat: no-repeat;
}
footer .Footer-Main .Social-Medias #Tiktok {
  background-image: url(icons/tiktok-white_LARGE_COMPRESSED.png);
  background-position: center;
  background-size: 50%;
  background-repeat: no-repeat;
}
footer .Footer-Main .Social-Medias #Instagram {
  background-image: url(icons/instagram-white_LARGE_COMPRESSED.png);
  background-position: center;
  background-size: 55%;
  background-repeat: no-repeat;
}
footer .Footer-Main .Footer-Company-Details {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
footer .Footer-Main .Footer-Company-Details .Company-Info-Title {
  color: rgb(253, 247, 238);
  font-size: 1.2rem;
  margin-bottom: 0px;
  margin-top: 0px;
}
footer .Footer-Main .Footer-Company-Details .Company-Detail {
  display: flex;
  gap: 5px;
}
footer .Footer-Main .Footer-Company-Details .Company-Detail .Icon-Container {
  display: flex;
  justify-content: flex-start;
  width: 40px;
}
footer .Footer-Main .Footer-Company-Details .Company-Detail .Icon-Container .Detail-Icon {
  height: 20px;
}
footer .Footer-Main .Footer-Company-Details .Company-Detail .Detail-Text {
  color: grey;
  text-decoration: none;
  margin: 0px;
}
footer .Footer-Main .Footer-Services-Container {
  display: flex;
  flex-direction: column;
}
footer .Footer-Main .Footer-Services-Container .Services-Title {
  color: rgb(253, 247, 238);
  font-size: 1.2rem;
  margin-top: 0px;
}
footer .Footer-Main .Footer-Services-Container .Footer-Services {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
footer .Footer-Main .Footer-Services-Container .Footer-Services .Footer-Website-Page {
  text-decoration: none;
  color: grey;
}
footer .Footer-Bottom {
  display: flex;
  padding: 1.5% 2.5%;
  width: 95%;
  justify-content: space-between;
  align-items: center;
}
footer .Footer-Bottom .Website-Designer {
  color: rgb(102, 102, 102);
  margin: 0px;
  font-size: 0.8rem;
}
footer .Footer-Bottom .Terms {
  display: flex;
  opacity: 0;
}
footer .Footer-Bottom .Terms .Term {
  text-decoration: none;
  color: rgb(109, 109, 109);
  font-size: 0.9rem;
  border-right: 1px solid rgb(77, 77, 77);
  padding-left: 15px;
  padding-right: 15px;
  margin: 0px;
}
footer .Footer-Bottom .Terms .Term:last-child {
  border-right: none;
  padding-right: 0px;
}

@media screen and (min-width: 960px) {
  .Hamburger-Menu {
    overflow: visible;
    height: -moz-max-content;
    height: max-content;
    padding-top: 5px;
    padding-bottom: 5px;
  }
  .Hamburger-Menu .Hamburger-Menu-Content {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    height: -moz-max-content;
    height: max-content;
  }
  .Hamburger-Menu .Hamburger-Menu-Content .Hamburger-Header {
    min-width: -moz-max-content;
    min-width: max-content;
    justify-content: center;
    padding: 0px;
  }
  .Hamburger-Menu .Hamburger-Menu-Content .Hamburger-Header .Company-Location {
    display: none;
  }
  .Hamburger-Menu .Hamburger-Menu-Content .Hamburger-Header .Hamburger-Icon {
    display: none !important;
  }
  .Hamburger-Menu .Hamburger-Menu-Content .Hamburger-Header .Get-A-Quote-Header {
    display: none !important;
  }
  .Hamburger-Menu .Hamburger-Menu-Content .Hamburger-Main {
    display: flex !important;
    flex-direction: row;
    justify-content: space-between;
    padding-bottom: 0px;
    overflow: visible;
    width: 50%;
  }
  .Hamburger-Menu .Hamburger-Menu-Content .Hamburger-Main #Contact-Us {
    display: none;
  }
  .Hamburger-Menu .Hamburger-Menu-Content .Hamburger-Main .Page-Link {
    background: transparent;
    padding: 0px;
    height: -moz-max-content;
    height: max-content;
  }
  .Hamburger-Menu .Hamburger-Menu-Content .Hamburger-Main .Page-Link .Page-Link-Icon {
    display: none;
  }
  .Hamburger-Menu .Hamburger-Menu-Content .Hamburger-Main .Page-Link .Page-Link-Name {
    margin: 0px;
    width: -moz-max-content;
    width: max-content;
  }
  .Hamburger-Menu .Hamburger-Menu-Content .Hamburger-Main .Page-Link-Sub-Options[data-open=false] {
    background-color: transparent;
  }
  .Hamburger-Menu .Hamburger-Menu-Content .Hamburger-Main .Page-Link-Sub-Options[data-open=open] {
    box-shadow: 0px 0px 20px 2px rgba(0, 0, 0, 0.404);
  }
  .Hamburger-Menu .Hamburger-Menu-Content .Hamburger-Main .Page-Link-Sub-Options {
    padding: 0px;
    height: -moz-max-content;
    height: max-content;
    position: relative;
    width: -moz-max-content;
    width: max-content;
  }
  .Hamburger-Menu .Hamburger-Menu-Content .Hamburger-Main .Page-Link-Sub-Options .Page-Link {
    width: -moz-max-content;
    width: max-content;
    padding: 0px;
    margin: 0px;
  }
  .Hamburger-Menu .Hamburger-Menu-Content .Hamburger-Main .Page-Link-Sub-Options .Page-Link .Page-Link-Icon {
    display: none;
  }
  .Hamburger-Menu .Hamburger-Menu-Content .Hamburger-Main .Page-Link-Sub-Options .Page-Link .Page-Link-Name {
    margin: 0px;
  }
  .Hamburger-Menu .Hamburger-Menu-Content .Hamburger-Main .Page-Link-Sub-Options .Service-Options {
    background: rgb(41, 41, 41);
    position: absolute;
    width: -moz-max-content;
    width: max-content;
    top: 50px;
    left: 0px;
    padding-top: 5px;
    padding-bottom: 5px;
    border-radius: 5px;
    min-width: 350px;
    border: 1px solid rgba(128, 128, 128, 0.329);
    box-shadow: 0px 0px 40px 0px rgba(0, 0, 0, 0.295);
    gap: 0px;
  }
  .Hamburger-Menu .Hamburger-Menu-Content .Hamburger-Main .Page-Link-Sub-Options .Service-Options .Service-Option {
    color: rgb(209, 209, 188);
    background-color: transparent;
    border-radius: 0px;
    border-top: 1px solid rgba(63, 63, 63, 0.26);
    font-size: 1rem;
  }
  .Hamburger-Menu .Hamburger-Menu-Content .Hamburger-Main .Page-Link-Sub-Options .Service-Options .Service-Option:first-child {
    border-top: none;
  }
  .Hamburger-Menu .Hamburger-Menu-Content .Hamburger-Main .Page-Link-Sub-Options .Service-Options .Service-Option .Cleaning {
    color: rgba(121, 121, 121, 0.438);
    margin-left: 10px;
  }
  .Hamburger-Menu .Hamburger-Menu-Content .Hamburger-Footer {
    display: flex !important;
    justify-content: center;
    min-width: -moz-max-content;
    min-width: max-content;
    padding-right: 10px;
    padding-left: 10px;
  }
  .Hamburger-Menu .Hamburger-Menu-Content .Hamburger-Footer .Get-A-Quote {
    display: flex;
    padding: 20px;
    background: rgb(209, 209, 188);
    width: -moz-max-content;
    width: max-content;
    margin: 0px;
    padding: 10px 15px;
    border-radius: 20px;
    font-weight: bold;
    border: none;
    border-radius: 50px;
    background-color: rgb(245, 245, 220);
    color: rgb(13, 28, 51);
    padding: 10px 20px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
  }
  .Hamburger-Menu .Hamburger-Quick-Buttons {
    display: none;
  }
}
@media screen and (max-width: 1000px) {
  footer .Footer-Main .Social-Medias {
    flex-direction: column;
  }
}
@media screen and (min-width: 700px) and (max-width: 1050px) {
  .Main-Content[data-for=Home] {
    width: 100% !important;
    padding: 0px;
  }
}
@media screen and (min-width: 800px) and (max-width: 1300px) {
  .Service- {
    display: flex;
    justify-content: center;
  }
  .Service- .Service-Main {
    flex-direction: column;
    gap: 30px;
    justify-content: center;
    align-items: center;
  }
  .Service- .Service-Main .Service-Page {
    width: 95%;
    max-width: 95%;
  }
  .Image-Gallery .Gallery-Image {
    width: 100%;
  }
  .Image-Gallery .Gallery-Image .Image {
    width: 60%;
  }
  .Image-Gallery .Gallery-Image .Description {
    font-size: 0.8rem;
    padding: 10px;
  }
  .Hero[data-default=true] {
    height: 63vh;
    align-items: flex-start;
    margin: 0px;
    background-image: url(images/about-us-better.jpg);
  }
  .Hero[data-default=true] .Image-Overlay {
    position: absolute;
    box-shadow: inset 0 0 40px 5px rgba(0, 0, 0, 0.623); /* Apply an inset shadow */
    background: radial-gradient(ellipse at center, transparent 0%, rgba(36, 43, 54, 0.884) 70%);
    background-size: 250% 150%;
    background-position: center;
    background-repeat: no-repeat;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    z-index: 2;
  }
  .Hero[data-default=true] .Image-Elipse {
    position: absolute;
    background: radial-gradient(ellipse at center, transparent 0%, rgba(20, 24, 31, 0.541) 70%);
    background-size: 200% 120%;
    background-position: center;
    background-repeat: no-repeat;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    z-index: 3;
  }
  .Hero[data-default=true] .Hero-Content {
    height: calc(100% - 60px);
    width: calc(100% - 50px);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    gap: 0px;
    padding: 30px 15px;
    position: relative;
  }
  .Hero[data-default=true] .Hero-Content .Hero-Title {
    width: 90%;
    margin: 0px;
    margin-bottom: 20px;
    position: absolute;
    top: 100px;
    left: 50%;
    transform: translateX(-50%) !important;
    border-radius: 5px;
    backdrop-filter: blur(1px);
    color: white;
    text-shadow: 0px 0px 2px rgb(119, 119, 119);
    font-size: 2rem;
  }
  .Hero[data-default=true] .Hero-Content .Hero-Text {
    width: 65%;
    backdrop-filter: blur(1px);
    border-radius: 10px;
    padding: 10px 20px;
    font-size: 1.2rem;
    font-weight: 500;
    color: white;
    margin-bottom: 0px;
    text-shadow: 0px 0px 2px rgb(119, 119, 119);
  }
  .Hero[data-default=true] .Hero-Content div {
    width: 55%;
    display: flex;
    justify-content: center;
    gap: 20px;
  }
  .Hero[data-default=true] .Hero-Content div .Call-To-Action {
    font-size: 1rem;
    margin: 10px 0px;
    box-shadow: 0px 0px 50px 2px rgba(0, 0, 0, 0.151);
  }
}
@media screen and (max-width: 800px) {
  /*
  header {
      display: none;

      .Logo-Container {}

      .Website-Pages {

          .Website-Page {}

      }

      .Main-Call-To-Action {

          .Get-A-Quote {}

      }

  }
  */
  .Hero[data-default=true] {
    height: 90vh;
    align-items: flex-start;
    margin: 0px;
    background-image: url(images/about-us-better.jpg);
  }
  .Hero[data-default=true] .Image-Overlay {
    position: absolute;
    box-shadow: inset 0 0 40px 5px rgba(0, 0, 0, 0.623); /* Apply an inset shadow */
    background: radial-gradient(ellipse at center, transparent 0%, rgba(36, 43, 54, 0.884) 70%);
    background-size: 250% 150%;
    background-position: center;
    background-repeat: no-repeat;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    z-index: 2;
  }
  .Hero[data-default=true] .Image-Elipse {
    position: absolute;
    background: radial-gradient(ellipse at center, transparent 0%, rgba(20, 24, 31, 0.541) 70%);
    background-size: 200% 120%;
    background-position: center;
    background-repeat: no-repeat;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    z-index: 3;
  }
  .Hero[data-default=true] .Hero-Content {
    height: calc(100% - 100px);
    width: calc(100% - 30px);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    gap: 0px;
    padding: 50px 15px;
    position: relative;
  }
  .Hero[data-default=true] .Hero-Content .Hero-Title {
    width: 90%;
    margin: 0px;
    margin-bottom: 20px;
    position: absolute;
    top: 100px;
    left: 50%;
    transform: translateX(-50%) !important;
    border-radius: 5px;
    backdrop-filter: blur(1px);
    color: white;
    text-shadow: 0px 0px 2px rgb(119, 119, 119);
    font-size: 2rem;
  }
  .Hero[data-default=true] .Hero-Content .Hero-Text {
    width: calc(100% - 20px);
    backdrop-filter: blur(1px);
    border-radius: 10px;
    padding: 10px 20px;
    font-size: 1.2rem;
    font-weight: 500;
    color: white;
    margin-bottom: 0px;
    text-shadow: 0px 0px 2px rgb(119, 119, 119);
  }
  .Hero[data-default=true] .Hero-Content div {
    width: 100%;
    display: flex;
    justify-content: space-around;
  }
  .Hero[data-default=true] .Hero-Content div .Call-To-Action {
    font-size: 1rem;
    margin: 10px 0px;
    box-shadow: 0px 0px 50px 2px rgba(0, 0, 0, 0.151);
  }
  .Why-Us {
    padding: 25px 5%;
    color: rgb(13, 28, 51);
    width: 90%;
    padding-top: 0px;
    padding-bottom: 0px;
  }
  .Why-Us .Why-Us-Title {
    font-size: 1.6rem;
    width: 80%;
  }
  .Why-Us .Why-Us-Description {
    margin-bottom: 0px;
    width: 100%;
    line-height: 1.5rem;
  }
  .Testimonials .Video-Testimonial {
    width: 90%;
    height: 100%;
  }
  .Testimonials .Video-Testimonial video {
    width: 100%;
  }
  #Additional-Services {
    width: 90%;
  }
  #Additional-Services .Services-Title {
    width: -moz-max-content;
    width: max-content;
  }
  #Additional-Services .Services-Container .Service {
    width: 100%;
    position: relative;
    border-radius: 3px;
    height: -moz-max-content;
    height: max-content;
    padding: 0px;
  }
  #Additional-Services .Services-Container .Service .Service-Image {
    height: 170px;
    border-radius: 3px;
    margin: 0px;
    padding: 0px;
  }
  #Additional-Services .Services-Container .Service .Service-Info {
    display: flex;
    flex-direction: row;
  }
  #Additional-Services .Services-Container .Service .Service-Info .Service-Description {
    position: static;
    background: transparent;
    color: unset;
    display: block;
    font-size: 1.2rem;
    color: rgb(20, 24, 31);
    /*
    position: absolute;
    top: 0px;
    left: 0px;
    padding: 0px;
    width: 100%;
    height: 100%;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 3px;
    */
  }
  #Additional-Services .Services-Container .Service .Service-Info .Service-Details {
    color: rgb(37, 37, 37);
    font-size: 1rem;
    display: none;
  }
  .Services {
    padding: 15px;
    padding-bottom: 40px;
    padding-left: 5%;
    padding-right: 5%;
    width: 90%;
  }
  .Services .Services-Container .Service {
    width: 100%;
    position: relative;
    border-radius: 3px;
    height: -moz-max-content;
    height: max-content;
    padding: 0px;
  }
  .Services .Services-Container .Service .Service-Image {
    height: 170px;
    border-radius: 3px;
    margin: 0px;
    padding: 0px;
  }
  .Services .Services-Container .Service .Service-Info {
    display: flex;
    flex-direction: column;
  }
  .Services .Services-Container .Service .Service-Info .Service-Description {
    position: absolute;
    top: 0px;
    left: 0px;
    background: rgba(0, 0, 0, 0.486);
    padding: 0px;
    width: 100%;
    height: 100%;
    color: white;
    font-size: 1.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 3px;
    margin-bottom: 0px !important;
  }
  #Main-Services {
    position: relative;
  }
  #Main-Services .Service .Service-Info {
    padding: 0px;
    width: 100%;
    max-width: 100%;
  }
  #Main-Services .Service .Service-Info .Service-Description {
    height: 100%;
    max-width: 100%;
  }
  .Reviews {
    overflow-x: scroll;
  }
  .Reviews .Review {
    min-width: 65vw;
    width: 70vw;
  }
  .Core-Values-Container {
    justify-content: center;
    padding-top: 12%;
    padding-bottom: 12%;
    padding-left: calc(5% + 15px);
    padding-right: calc(5% + 15px);
    width: calc(90% - 30px);
  }
  .Core-Values-Container .Core-Values-Title {
    margin-bottom: 15px;
  }
  .Core-Values-Container .Core-Values {
    flex-direction: column;
    gap: 20px;
  }
  .Core-Values-Container .Core-Values .Core-Value {
    width: 100% !important;
    gap: 10px;
  }
  .Core-Values-Container .Core-Values .Core-Value .Core-Value-Title {
    margin: 0px;
    font-size: 1.3rem;
    margin-bottom: 7px;
  }
  .Core-Values-Container .Core-Values .Core-Value .Core-Value-Text {
    font-size: 1rem;
    line-height: 1.5rem;
    margin-top: 0px;
  }
  .Founder {
    flex-direction: column;
    padding-top: 12%;
    padding-bottom: 12%;
    padding-left: 7%;
    padding-right: 7%;
    align-items: center;
    gap: 35px;
    width: 86%;
  }
  .Founder .Founder-About-Details {
    gap: 15px;
    align-items: center;
    text-align: center;
  }
  .Image-Gallery {
    padding: 5%;
    padding-top: 10%;
    padding-bottom: 10%;
    gap: 25px;
  }
  .Image-Gallery .Gallery-Image {
    width: 100%;
    padding: 0px;
    flex-direction: column;
    box-shadow: none;
    background-color: transparent;
    height: -moz-max-content;
    height: max-content;
    gap: 0px;
    margin-top: 20px;
    margin-bottom: 20px;
  }
  .Image-Gallery .Gallery-Image .Image {
    width: 100%;
    order: 1 !important;
    box-shadow: none;
    margin-bottom: 5px;
  }
  .Image-Gallery .Gallery-Image .Description {
    width: calc(100% - 20px);
    padding: 10px;
    font-size: 0.8rem;
    height: -moz-max-content;
    height: max-content;
    padding-top: 10px;
  }
  .Gallery-Wheel {
    padding: 5%;
    width: 90%;
    gap: 10px;
  }
  .Gallery-Wheel .Gallery-Image {
    width: 100%;
  }
  .Descriptive-CTA {
    justify-content: center;
    align-items: center;
    padding: 10% 5%;
    gap: 25px;
  }
  .Descriptive-CTA .Description {
    text-align: center;
  }
  #About-Hero {
    background-image: url(images/about-us-better.jpg);
  }
  #Post-Renovation-Hero {
    background-image: url(images/renovation-mobile-better_TABLET_COMPRESSED.webp);
  }
  .Service- {
    width: 100%;
    display: flex;
    justify-content: center;
  }
  .Service- .Service-Main {
    flex-direction: column;
    gap: 30px;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 0px;
  }
  .Service- .Service-Main .Service-Page {
    width: 100% !important;
    max-width: 100%;
    padding: 0px;
  }
  .Service- .Service-Main .Service-Page .Columns {
    flex-direction: column;
  }
  .Service- .Service-Main .Service-Page .Columns .Area {
    border-right: 0px;
    border-bottom: 0px;
  }
  .Service- .Service-Main .Service-Page .Columns .Area-Column-1 {
    width: 100%;
  }
  .Service- .Service-Main .Service-Page .Columns .Area-Column-2 {
    width: 100%;
  }
  footer .Footer-Header {
    flex-direction: column;
    padding-bottom: 20px;
  }
  footer .Footer-Header .Footer-Website-Pages {
    gap: 10px;
    text-align: center;
    flex-wrap: wrap;
    width: 90%;
  }
  footer .Footer-Header .Footer-Website-Pages .Footer-Website-Page {
    margin: 15px;
  }
  footer .Footer-Header .Main-Call-To-Action {
    width: 100%;
    display: flex;
    justify-content: center;
    margin: 0px;
  }
  footer .Footer-Header .Main-Call-To-Action .Get-A-Quote {
    width: 80%;
    margin: 0px;
    padding: 15px;
    text-align: center;
  }
  footer .Footer-Main {
    flex-direction: column;
    padding: 5%;
    width: 90%;
    gap: 30px;
    align-items: center;
  }
  footer .Footer-Main .Social-Medias {
    flex-direction: row;
  }
  footer .Footer-Main .Footer-Company-Details {
    width: 100%;
    align-items: center;
  }
  footer .Footer-Main .Footer-Company-Details .Company-Info-Title {
    text-align: center;
  }
  footer .Footer-Main .Footer-Services-Container {
    width: 100%;
  }
  footer .Footer-Main .Footer-Services-Container .Services-Title {
    text-align: center;
  }
  footer .Footer-Main .Footer-Services-Container .Footer-Services {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    text-align: center;
  }
  footer .Footer-Main .Footer-Services-Container .Footer-Services .Footer-Website-Page {
    width: 45%;
  }
  footer .Footer-Bottom {
    flex-direction: column;
    gap: 20px;
    padding-top: 20px;
    padding-bottom: 20px;
  }
  footer .Footer-Bottom .Website-Designer {
    order: 2;
  }
}
.Card-Carousel[data-theme=dark] .NavigationButton {
  background-color: rgba(219, 180, 133, 0.7);
}

.Card-Carousel {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding-top: 30px;
  padding-bottom: 30px;
  gap: 60px;
  flex-wrap: wrap;
  overflow-x: hidden;
}
.Card-Carousel .Carousel-Controls {
  display: flex;
  justify-content: center;
  justify-content: center;
  margin: 20px;
  gap: 20px;
}
.Card-Carousel .Carousel-Controls .NavigationButton {
  background-image: url("/icons/arrow-right-beige.png");
}
.Card-Carousel .Carousel-Controls #Left {
  z-index: 10;
  position: relative !important;
  order: 3 !important;
}
.Card-Carousel .Carousel-Controls #Right {
  position: relative !important;
  z-index: 10;
  order: 4 !important;
}
.Card-Carousel .Carousel-Window {
  position: relative;
  width: -moz-max-content;
  width: max-content;
  max-width: 100%;
  height: -moz-max-content;
  height: max-content;
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow-x: hidden;
}
.Card-Carousel .Carousel-Window .Reviews-Title {
  text-align: center;
  margin-top: 0px;
  width: 100%;
}
.Card-Carousel .Carousel-Window .Reviews {
  padding-top: 0px;
}
.Card-Carousel .NavigationButton {
  width: 50px;
  height: 50px;
  background-color: rgba(255, 255, 255, 0.075) !important;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.5rem;
  border-radius: 50%;
  transition: background-color 0.3s;
  border: none;
  background-image: url(icons/arrow-right-pink.png);
  background-size: 40%;
  background-position: center !important;
  background-repeat: no-repeat;
  opacity: 1;
  position: absolute;
  box-shadow: 0 0 20px 2px rgba(0, 0, 0, 0.103);
}
.Card-Carousel .NavigationButton:disabled {
  opacity: 0.1;
}
.Card-Carousel #Left {
  transform: rotate(180deg) !important;
  background-position: 60% 47%;
}
/*
@media (hover: none) {



    .Reviews {
        position: relative !important;
        //padding: 10px;

        .Review {


            .Review-Text {
                max-height: unset;
            }
        }

    }

    .Carousel-Window {
        overflow-x: scroll !important;
        width: 100% !important;
    }

    .Card-Carousel {
        display: flex;
        flex-wrap: wrap;
        justify-content: flex-end;
        gap: 15px;
    }

    .Carousel-Window {
        height: max-content !important;
        overflow: visible;


        order: 0;

        .Reviews {
            //width: 100% !important;
            //flex-basis: 100%;
        }
    }

    #Left {
        //position: relative;
        display: none;
        order: 1;
    }

    #Right {
        position: relative;
        display: none;
        order: 2;
        margin-right: 15px;

    }


    .Review {
        flex: 0 0 auto;
    }
}
    */
@media (hover: hover) {
  /*


  .Reviews {
      position: relative;   

  }

  .NavigationButton {
      position: absolute;
      top: 50%;
      //transform: translateY(-25%);
      width: 50px;
      height: 50px;
      background-color: rgba(0, 0, 0, 0.452);
      color: #fff;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      font-size: 1.5rem;
      border-radius: 50%;
      transition: background-color 0.3s;
      border: none;
      background-image: url(/icons/arrow-right-pink.png);
      background-size: 40%;
      background-position: 60% 55%;
      background-repeat: no-repeat;

  }

  .NavigationButton:hover {

      background-color: rgba(0, 0, 0, 0.8);
  }

  #Left {
      left: 2%;
      transform: translateY(-50%) rotate(180deg) !important;
      background-position: 60% 47%;
  }

  #Right {
      transform: translateY(-50%) !important;
      right: 2%;
  }
  */
}/*# sourceMappingURL=index.css.map */