/*****************************************************/

* {
  box-sizing: border-box;
}

html {
  padding: 0;
  scroll-behavior: smooth;
}

body {
  height: 100%;
  width: 100%;
  padding: 0;
  margin: auto;
  position: relative;
}

#wrapper {
  width: 100%;
  text-align: center;
  margin: auto;
  padding: 0;
  overflow: hidden;
  font-family: 'EB Garamond', serif;
  position: relative;
}

/*------------- Font Families --------------*/

.fredericka-the-great-regular {
  font-family: 'Fredericka the Great', serif;
  font-weight: 400;
  font-style: normal;
}

.eb-garamond {
  font-family: 'EB Garamond', serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
}

/* html {
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
  width: 100%;
  overflow-x: hidden;
  font-family: 'Playfair Display', serif;
} */

/* ::-webkit-scrollbar {
  display: none;
} */

:root {
  --whitespace: 3rem;
}
/* body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 0;
  margin: auto;
  gap: 4rem;
  overflow: hidden;
}

#wrapper {
  width: 100%;
  text-align: center;
  margin: auto;
  padding: 0;
  overflow: hidden;
  position: relative;
} */

a:-webkit-any-link {
  text-decoration: none;
  color: black;
}

a:-moz-any-link {
  text-decoration: none;
  color: black;
}

a:any-link {
  text-decoration: none;
  color: black;
}

p {
  font-size: 1rem;
}

/**********Header Settings**************/

header {
  position: relative;
  height: 10vh;
  width: 100%;
  margin: 0;
  padding: 0;
  overflow: hidden;
  display: inline-block;
}

.banner-image {
  position: absolute;
  margin: auto;
  text-align: center;
  -webkit-transition: 1s all ease-in-out;
  -o-transition: 1s all ease-in-out;
  transition: 1s all ease-in-out;
  z-index: 2;
  width: 80%;
  height: 100%;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  overflow: hidden;
}

.banner-image a {
  margin: 0;
  padding: 0;

  width: 100%;
  height: 100%;
  overflow: hidden;
}

.banner-image a img {
  position: relative;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/*--THE WRAPPER THAT WRAPS ALL MAIN CONTENT ON THE PAGES--*/

.page-content-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  -webkit-transition: 0.5s all ease;
  -o-transition: 0.5s all ease;
  transition: 0.5s all ease;
  min-height: 100vh;
  position: relative;
}

/* .page-content-wrapper>div{
  justify-content: center;
  align-items: center;
  gap: var(--whitespace);
  width: 100%;
  overflow: hidden;
} */

.nav-menu {
  /*nav menu only for Desktops*/
  display: none;
}

#toggle {
  /*Toggle settings for the Hamburger menu*/
  position: absolute;
  top: 4vh;
  left: 5px;
  width: 40px;
  height: 40px;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  z-index: 9999;
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
}

.toggle-bar {
  width: 28px;
  height: 3px;
  background: black;
  -webkit-transition: 0.2s;
  -o-transition: 0.2s;
  transition: 0.2s;
  position: absolute;
  z-index: 99;
  -webkit-transform: translateY(0px);
  -ms-transform: translateY(0px);
  transform: translateY(0px);
  margin: 0;
}

#toggle::before {
  content: '';
  position: absolute;
  width: 28px;
  height: 3px;
  background: black;
  -webkit-transform: translateY(-8px);
  -ms-transform: translateY(-8px);
  transform: translateY(-8px);
  -webkit-transition: 0.2s;
  -o-transition: 0.2s;
  transition: 0.2s;
  opacity: 1;
}

#toggle::after {
  content: '';
  position: relative;
  width: 28px;
  height: 3px;
  background: black;
  -webkit-transform: translateY(8px);
  -ms-transform: translateY(8px);
  transform: translateY(8px);
  -webkit-transition: 0.2s;
  -o-transition: 0.2s;
  transition: 0.2s;
}

#toggle:hover {
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  -webkit-animation: hvr-pulse 1s infinite linear;
  animation: hvr-pulse 1s infinite linear;
  position: absolute;
}

#toggle.active::before {
  -webkit-transform: translateY(0px) rotate(45deg);
  -ms-transform: translateY(0px) rotate(45deg);
  transform: translateY(0px) rotate(45deg);
  width: 20px;
  position: absolute;
  -webkit-transition: 0.2s;
  -o-transition: 0.2s;
  transition: 0.2s;
}

#toggle.active::after {
  -webkit-transform: translateY(0px) rotate(-45deg);
  -ms-transform: translateY(0px) rotate(-45deg);
  transform: translateY(0px) rotate(-45deg);
  width: 20px;
  position: absolute;
  -webkit-transition: 0.2s;
  -o-transition: 0.2s;
  transition: 0.2s;
}

#toggle.active:hover {
  -webkit-animation: none;
  animation: none;
}

#toggle.active .toggle-bar {
  opacity: 0;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

#toggle.active {
  position: fixed;
  -webkit-transform: translateX(80vw);
  -ms-transform: translateX(80vw);
  transform: translateX(80vw);
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
  top: 1vh;
  background-color: white;
}

#sidebar-mobile-nav {
  /*Sidebar menu*/
  display: block;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  list-style: none;
  text-decoration: none;
  top: 0vh;
  left: -45vw;
  width: 45vw;
  height: 80vh;
  z-index: 1111;
  position: relative;
  background-size: cover;
  background-position: 50%;
  position: absolute;
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
}

#sidebar-mobile-nav .inner {
  /*Sidebar menu*/

  list-style: none;
  text-decoration: none;
  top: 0;
  left: -45vw;
  width: 45vw;
  height: 80vh;
  display: none;
}

#sidebar-mobile-nav.active {
  display: block;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100vw;
  height: 110vh;
  margin: auto;
  top: 0vh;
  left: 0;
  -webkit-transition: 0.5s ease;
  -o-transition: 0.5s ease;
  transition: 0.5s ease;
  position: fixed;
  overflow: hidden;
}

#sidebar-mobile-nav.active .inner {
  display: block;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 95vw;
  height: 100vh;
  margin: auto;
  left: 0;
  -webkit-transition: 0.5s ease;
  -o-transition: 0.5s ease;
  transition: 0.5s ease;
  background: linear-gradient(
      rgba(255, 255, 255, 0.1),
      rgba(255, 255, 255, 0.1)
    ),
    url(../Images/logo/TIES\ &\ KNOTS\ LOGO\ White_gold.png);
  background-size: cover;
  background-position: bottom;
  position: absolute;
  overflow: hidden;
  padding: 2rem;
}

#sidebar-mobile-nav ~ div {
  display: inline-block;
  position: relative;
  width: 100vw;
  left: 0vw;
  top: 0;
  margin: auto;
  opacity: 1;
  -webkit-transition: 0.5s ease;
  -o-transition: 0.5s ease;
  transition: 0.5s ease;
}

#sidebar-mobile-nav.active ~ div {
  display: inline-block;
  position: relative;
  width: 100vw;
  left: 55vw;
  top: 0;
  margin: auto;
  opacity: 0.1;
  position: fixed;
}

/*--------THE NAVIGATION DIV ITEMS-------------*/

#sidebar-mobile-nav.active .inner > div {
  position: relative;
  display: block;
  height: 5.5rem;
  width: 80%;
  text-decoration: none;
  font-weight: 500;
  margin: 5px;
  overflow: hidden;
}

#sidebar-mobile-nav.active .inner div > a {
  display: block;
  padding: 0;
  height: 100%;
  width: 100%;
  text-decoration: none;
  text-align: left;
  font-weight: 500;
  margin-left: 1rem;
  overflow: hidden;
}

#sidebar-mobile-nav.active .inner div ul {
  display: none;
}

#footicons a p {
  display: none;
}

/* The Button that sends you back to the top of the page */
.to-top {
  position: fixed;
  display: flex;
  background-color: rgba(255, 255, 255, 0.1);
  color: rgb(0, 139, 139);
  justify-content: center;
  align-items: center;
  width: 2rem;
  height: 2rem;
  right: 5vw;
  border: 1px solid darkgoldenrod;
  top: 85vh;
  border-radius: 30px;
  z-index: 99999;
  opacity: 0;
  text-decoration: none;
  pointer-events: none;
  transition: all 0.4s ease;
}

.to-top i {
  font-weight: 600;
  font-size: 1rem;
  color: darkgoldenrod;
}

.to-top.active {
  opacity: 1;
  pointer-events: auto;
}

.to-top:hover {
  background-color: rgba(184, 134, 11, 0.7);
  transition: background-color 0.3s ease;
}

.to-top:hover i {
  color: #fff;
}

/*********************THE FOOTER********************/
footer {
  margin: auto;
  display: flex;
  width: 100%;
  height: fit-content;
  padding: 1rem;
  background: linear-gradient(
    rgba(255, 255, 255, 0.1),
    rgba(255, 255, 255, 0.1)
  );
  border-top: 1.5px solid darkgoldenrod;
  overflow: hidden;
  position: relative;
  font-family: 'open sans';
  background: linear-gradient(
      rgba(255, 255, 255, 0.8),
      rgba(255, 255, 255, 0.7)
    ),
    url(../Images/20210616_223630_1.jpg);
  background-position: center;
  background-size: cover;
}

#footer-content {
  display: grid;
  -ms-grid-columns: 100%;
  grid-template-columns: 100%;
  -ms-grid-rows: 50% 10px 30% 10px 20%;
  grid-template-rows: 30% 30% 20% 20%;
  grid-template-areas:
    'copyright'
    'links'
    'social-media'
    'webdesigner';
  gap: 10px;
  justify-content: space-around;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
  min-height: 300px;
}

footer > * {
  margin: auto;
}

#footicons ul {
  grid-area: social-media;
  list-style: none;
  text-align: center;
  padding: 0;
  margin: 0;
}

#footicons ul li {
  width: fit-content;
  height: fit-content;
  color: darkgoldenrod;
  text-align: center;
  cursor: pointer;
  border-radius: 100%;
  border: 2px solid;
  display: inline-block;
  padding: 0.5rem;
}

#footicons .fab {
  color: darkgoldenrod;
  font-size: 1.3rem;
}

#footicons ul li:hover:nth-child(1) {
  border: 2px solid #3b5998;
  -webkit-box-shadow: 0 0 15px #3b5998;
  box-shadow: 0 0 15px #3b5998;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

#footicons ul li:hover .fa-facebook {
  color: #3b5998;
  text-shadow: 0 0 15px #3b5998;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

#footicons ul li:hover:nth-child(2) {
  border: 2px solid #a4515c;
  -webkit-box-shadow: 0 0 15px #a4515c;
  box-shadow: 0 0 15px #a4515c;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

#footicons ul li:hover .fa-instagram {
  color: #a4515c;
  text-shadow: 0 0 15px #a4515c;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

#footicons ul li:hover:nth-child(3) {
  border: 2px solid #2aa52a;
  -webkit-box-shadow: 0 0 15px #2aa52a;
  box-shadow: 0 0 15px #2aa52a;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

#footicons ul li:hover .fa-whatsapp {
  color: #2aa52a;
  text-shadow: 0 0 15px #2aa52a;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

#footicons ul li:hover:nth-child(4) {
  border: 2px solid red;
  -webkit-box-shadow: 0 0 15px red;
  box-shadow: 0 0 15px red;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

#footicons ul li:hover .fa-pinterest {
  color: red;
  text-shadow: 0 0 15px red;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

#footicons a p {
  display: none;
}

.copyright {
  grid-area: copyright;
  text-align: justify;
  text-justify: inter-character;
  font-weight: 500;
}

.copyright p {
  font-size: 0.8rem;
  text-align: center;
  margin: auto;
  padding: 0;
  font-weight: 400;
}

.copyright p span {
  display: inline-block;
  font-size: 0.75rem;
}

.web-developer {
  grid-area: webdesigner;
  margin: auto;
  font-size: 0.8rem;
}

#footicons a,
.copyright p,
.web-developer a {
  color: darkgoldenrod;
}

.usefullinks {
  grid-area: links;
  color: darkgoldenrod;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.usefullinks p {
  font-size: 0.8em;
  font-weight: 400;
  text-decoration: underline;
}

.usefullinks ul {
  margin: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
}

.usefullinks ul li {
  font-size: 0.8em;
}

.usefullinks ul li a {
  color: darkgoldenrod;
}

.usefullinks ul li a:hover {
  color: #000;
  transition: all 0.3s ease-in-out;
}

.usefullinks ul li a::before {
  content: '|';
}

.usefullinks ul li:nth-child(1) a::before {
  content: '';
}

/*-----------------FOR TABLETS--------------*/

@media screen and (min-width: 601px) {
  .page-content-wrapper {
    -webkit-transition: 0.7s;
    -o-transition: 0.7s;
    transition: 0.7s;
  }

  #toggle.active {
    position: fixed;
    -webkit-transform: translateX(35vw);
    -ms-transform: translateX(35vw);
    transform: translateX(35vw);
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
    top: 5vh;
    background-color: rgba(255, 255, 255, 1);
  }

  #sidebar-mobile-nav {
    /*Sidebar menu*/
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-pack: distribute;
    justify-content: space-around;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    list-style: none;
    text-decoration: none;
    top: 0vh;
    left: -45vw;
    width: 40vw;
    height: 100vh;

    z-index: 1111;
    position: relative;
    background-size: cover;
    background-position: 50%;
    position: absolute;
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
    display: none;
  }

  #sidebar-mobile-nav.active {
    height: 100vh;
    width: 40vw;
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
  }

  #sidebar-mobile-nav.active .inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    width: 40vw;
    height: 100vh;
    margin: auto;
    left: 0;
    top: 5vh;
    -webkit-transition: 0.5s ease;
    -o-transition: 0.5s ease;
    transition: 0.5s ease;
  }

  #sidebar-mobile-nav ~ div {
    -webkit-transition: 0.5s;

    -o-transition: 0.5s;

    transition: 0.5s;
  }

  #sidebar-mobile-nav.active ~ div {
    display: inline-block;
    position: relative;
    width: 100vw;
    left: 30vw;
    top: 0;
    margin: auto;
    padding-left: 0;
    opacity: 1;
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
  }

  /*--------THE NAVIGATION DIV ITEMS-------------*/

  #sidebar-mobile-nav.active .inner > div {
    position: relative;
    display: block;
    height: 6.5rem;
    width: 100%;
    text-decoration: none;
    font-weight: 500;
    margin: 5px;
    overflow: hidden;
  }

  #sidebar-mobile-nav.active .inner div > a {
    padding: 0;
    height: 100%;
    width: 100%;
    text-decoration: none;
    font-size: 0.9rem;
    margin: auto;
    overflow: hidden;
  }

  #sidebar-mobile-nav.active .inner div ul {
    display: none;
  }

  /*---------------------- FOOTER---------------------*/

  #footer-content {
    max-width: 850px;
    display: grid;
    grid-template-columns: repeat(3, 33%);
    grid-template-rows: repeat(2, 80% 20%);
    grid-template-areas:
      'copyright  social-media links'
      'webdesigner webdesigner webdesigner  ';
    gap: 10px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    height: 180px;
  }
}

/*-----------------FOR LAPTOPS AND DESKTOPS--------------*/

@media screen and (min-width: 1025px) {
  #sidebar-mobile-nav.active .inner {
    background: #fff;
  }

  .page-content-wrapper {
    -webkit-transition: 0.7s all ease;
    -o-transition: 0.7s all ease;
    transition: 0.7s all ease;
  }

  /*------The Navi Bar--------*/

  #toggle.active {
    position: fixed;
    /*transform: translateX(87vw);*/
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
    top: 0;
    line-height: 10vh;
    background-color: rgba(255, 255, 255, 1);
    height: 10vh;
    left: 54vw;
  }

  #sidebar-mobile-nav {
    /*Sidebar menu*/
    display: inline-block;
    top: 0vh;
    left: -100vw;
    width: 100vw;
    height: 0vh;
    position: relative;
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
  }

  #sidebar-mobile-nav.active {
    position: fixed;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 100%;
    height: 10vh;
    margin: auto;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    top: 0;
    -webkit-transition: 0.5s ease;
    -o-transition: 0.5s ease;
    transition: 0.5s ease;
    padding: 0;
    overflow: visible;
    background: none;
  }

  #sidebar-mobile-nav.active .inner {
    position: fixed;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 80%;
    margin: auto;
    height: 100%;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    top: 0;
    -webkit-transition: 0.5s all ease;
    -o-transition: 0.5s all ease;
    transition: 0.5s all ease;
    padding: 0;
    overflow: visible;
  }

  #sidebar-mobile-nav ~ div {
    display: block;
    -webkit-transition: 1s ease;
    -o-transition: 1s ease;
    transition: 1s ease;
    width: 100vw;
    left: 0vw;
    top: 0vh;
    margin: auto;
    padding-left: 0;
  }

  #sidebar-mobile-nav.active ~ div {
    -webkit-transition: 1s ease;
    -o-transition: 1s ease;
    transition: 1s ease;
    width: 100vw;
    left: 0vw;
    top: 1vh;
    margin: auto;
    padding-left: 0;
  }

  /*--------THE NAVIGATION DIV ITEMS-------------*/

  #sidebar-mobile-nav.active .inner > div {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    height: 100%;
    margin-top: 10vh;
    overflow: hidden;
    position: relative;
    display: inline-block;
  }

  /* #sidebar-mobile-nav.active .inner > div:after,
  #sidebar-mobile-nav.active .inner > div:before {
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    border: 1px solid white;
    bottom: 0px;
    content: ' ';
    display: block;
    margin: 0 auto;
    position: relative;
    -webkit-transition: all 280ms ease-in-out;
    -o-transition: all 280ms ease-in-out;
    transition: all 280ms ease-in-out;
    width: 0;
  }

  #sidebar-mobile-nav.active .inner > div:hover:after,
  #sidebar-mobile-nav.active .inner > div:hover:before {
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    border-color: black;
    -webkit-transition: width 350ms ease-in-out;
    -o-transition: width 350ms ease-in-out;
    transition: width 350ms ease-in-out;
    width: 70%;
  } */

  #sidebar-mobile-nav.active .inner > div:hover:before {
    bottom: auto;
    top: 0;
    width: 70%;
  }

  #sidebar-mobile-nav.active .inner div > a {
    display: flex;
    justify-content: center;
    font-size: 0.9rem;
    margin: auto;
    height: auto;
  }

  #sidebar-mobile-nav.active .inner > div:hover a {
    /* padding: 3px 5px; */
    -webkit-transition: 0.3s ease;
    -o-transition: 0.3s ease;
    transition: 0.3s ease;
    transform: scale(1.1);
  }

  /*#sidebar-mobile-nav.active .inner > div a:after,
  #sidebar-mobile-nav.active .inner > div a:before {
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    border: 1px solid white;
    bottom: 0px;
    content: ' ';
    display: block;
    margin: 0 auto;
    position: relative;
    -webkit-transition: all 280ms ease-in-out;
    -o-transition: all 280ms ease-in-out;
    transition: all 280ms ease-in-out;
    width: 0;
  }

  #sidebar-mobile-nav.active .inner > div a:hover:after,
  #sidebar-mobile-nav.active .inner > div a:hover:before {
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    border-color: black;
    -webkit-transition: width 350ms ease-in-out;
    -o-transition: width 350ms ease-in-out;
    transition: width 350ms ease-in-out;
    width: 20%;
    height: 2px;
  } */

  #sidebar-mobile-nav.active .inner div ul {
    display: none;
    opacity: 0;
  }

  #sidebar-mobile-nav.active .inner div:hover ul {
    display: block;
    position: absolute;
    opacity: 1;
    top: 1.3rem;
    left: 10%;
    -webkit-transform: translate(-10, 0%);
    -ms-transform: translate(-10, 0%);
    transform: translate(-10, 0%);
    width: 100%;
    height: 120px;
    margin: 0;
    padding: 0;

    list-style-type: none;
    -webkit-transition: 0.1s all ease;
    -o-transition: 0.1s all ease;
    transition: 0.1s all ease;
    background-color: white;
  }

  #sidebar-mobile-nav.active .inner div ul {
    width: 200px;
    display: block;
    padding: 2px;
    margin: auto;
  }

  #sidebar-mobile-nav.active .inner div ul li {
    list-style-type: none;
    padding: 0;
    margin: 0;
    margin-left: 0;
  }

  #sidebar-mobile-nav.active .inner div:hover ul li a {
    font-size: 0.8rem;
    text-decoration: none;
    padding: 2 0;
    margin-left: 0;
    margin: 0;
    display: block;
    text-align: left;
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
    background-color: rgba(0, 0, 0, 0.1);
    color: black;
  }

  #sidebar-mobile-nav.active .inner div ul li:hover a {
    background-color: rgba(0, 0, 0, 0.5);
    overflow: hidden;
    color: black;
  }
}

/***************************************************************/

/****************** THE INDEX/HOME PAGE **************************/

#index-page {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin: auto;
  gap: 3rem;
}

/*----------------Slider with the food and decor images----------*/
#index-page .slider-head {
  position: relative;
  width: 100vw;
  height: 90vh;
  display: block;
  overflow: hidden;
  margin: auto;
  aspect-ratio: 16 / 9;
}

.slider-head .slider {
  display: flex;
  justify-content: center;
  align-items: center;
  background-size: cover;
  background-position: center;
  width: auto;
  height: 100%;
  background-image: url(../Images/Eliss\ Studios-13.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  -webkit-animation: slide 40s linear infinite;
  animation: slide 60s linear infinite;
  overflow: hidden;
  -webkit-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  z-index: 999;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

@keyframes slide {
  0% {
    background-image: url(../Images/Eliss\ Studios-13.jpg);
    background-size: cover;
    background-position: 30%;
    padding: 0;
    margin: 0;
  }

  10% {
    background-image: url(../Images/Eliss\ Studios-13.jpg);
    background-size: cover;
    background-position: 30%;
    padding: 0;
    margin: 0;
  }

  10.5% {
    background-image: url(../Images/Ties&Knots24.03.24-92.jpg);
    background-size: cover;
    background-position: center;
    padding: 0;
    margin: 0;
  }

  20% {
    background-image: url(../Images/Ties&Knots24.03.24-92.jpg);
    background-size: cover;
    background-position: center;
    padding: 0;
    margin: 0;
  }

  20.5% {
    background-image: url(../Images/untitled-107.jpg);
    background-size: cover;
    background-position: center;
    padding: 0;
    margin: 0;
  }

  30% {
    background-image: url(../Images/untitled-107.jpg);
    background-size: cover;
    background-position: center;
    padding: 0;
    margin: 0;
  }

  30.5% {
    background-image: url(../Images/Edited/C.Media-1438.jpg);
    background-size: cover;
    background-position: center;
    padding: 0;
    margin: 0;
  }

  40% {
    background-image: url(../Images/Edited/C.Media-1438.jpg);
    background-size: cover;
    background-position: center;
    padding: 0;
    margin: 0;
  }

  40.5% {
    background-image: url(../Images/Eliss\ Studios-1546.jpg);
    background-size: cover;
    background-position: center;
    padding: 0;
    margin: 0;
  }

  50% {
    background-image: url(../Images/Eliss\ Studios-1546.jpg);
    background-size: cover;
    background-position: center;
    padding: 0;
    margin: 0;
  }

  50.5% {
    background-image: url(../Images/C.Media--7.jpg);
    background-size: cover;
    background-position: center;
    padding: 0;
    margin: 0;
  }

  60% {
    background-image: url(../Images/C.Media--7.jpg);
    background-size: cover;
    background-position: center;
    padding: 0;
    margin: 0;
  }

  60.5% {
    background-image: url(../Images/Edited/IMG_9716.jpg);
    background-size: cover;
    background-position: center;
    padding: 0;
    margin: 0;
  }

  70% {
    background-image: url(../Images/Edited/IMG_9716.jpg);
    background-size: cover;
    background-position: center;
    padding: 0;
    margin: 0;
  }

  70.5% {
    background-image: url(../Images/Edited/C.Media-1152.jpg);
    background-size: cover;
    background-position: center;
    padding: 0;
    margin: 0;
  }

  80% {
    background-image: url(../Images/Edited/C.Media-1152.jpg);
    background-size: cover;
    background-position: center;
    padding: 0;
    margin: 0;
  }

  80.5% {
    background-image: url(../Images/bridegroom1.jpg);
    background-size: cover;
    background-position: center;
    padding: 0;
    margin: 0;
  }

  90% {
    background-image: url(../Images/bridegroom1.jpg);
    background-size: cover;
    background-position: center;
    padding: 0;
    margin: 0;
  }

  90.5% {
    background-image: url(../Images/Edited/C.Media-94.jpg);
    background-size: cover;
    background-position: center;
    padding: 0;
    margin: 0;
  }

  100% {
    background-image: url(../Images/Edited/C.Media-94.jpg);
    background-size: cover;
    background-position: center;
    padding: 0;
    margin: 0;
  }
}

/********************Welcome To Ties & Knots Events****************************/

#welcome-banner {
  display: flex;
  color: darkgoldenrod;
  font-weight: 400;
  font-size: 2.2rem;
  margin: auto;
}

#index-page .welcome-intro {
  color: #fff;
  height: auto;
  margin: auto;
  padding: var(--spacer);
  width: 80%;
  max-width: 900px;
  background-color: rgb(184, 134, 11, 0.5);
}

.main-intro-text {
  height: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.main-intro-text h2 {
  font-size: 1.2rem;
}

.main-intro-text h3 {
  font-size: 2.3rem;
  text-transform: uppercase;
  color: darkgoldenrod;
  font-weight: 400;
}

#index-page .welcome-intro p {
  margin: auto;
  text-align: center;
  padding: 1rem;
}

/***************THE SERVICES AND FOUNDERS SECTION*******************/

#index-page .services_home {
  display: grid;
  width: 99%;
  grid-auto-columns: 100%;
  grid-auto-rows: 500px;
  height: auto;
  justify-content: center;
  align-items: center;
  gap: 2px;
  margin: auto;

  position: relative;
  overflow: hidden;
  perspective: 200px;
  z-index: 1;
}

.services_home-textarea {
  display: flex;
  flex-direction: column;
  margin: auto;
  gap: 1.5rem;
  padding: 1.2rem;
}

.services_home h2 {
  font-size: 2em;
  margin: 0;
}

.services_home-textarea h3 {
  font-size: 1.2rem;
  margin: auto;
  text-transform: uppercase;
}

.services_home-images#imgTile1,
.services_home-images#imgTile2 {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 500px;
}

.services_home-images {
  height: 500px;
  width: 500%;
  margin: 0;
  padding: 0;
  overflow: hidden;
  position: relative;
}

.services_home-images img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  overflow: hidden;
}

#services_home-area1 {
  position: relative;
  margin: auto;
  overflow: hidden;
}

#services_home-area2 {
  position: relative;
  margin: auto;
  overflow: hidden;
}

button.learn-more {
  position: relative;
  margin: auto;
  padding: 5px;
  background-color: rgba(255, 255, 255, 0.5);
  -webkit-box-shadow: 0 0 5px 5px white;
  box-shadow: 0 0 3px 5px white;
  overflow: hidden;
  font-family: arial;
  border: none;
}

.learn-more a {
  display: flex;
  font-size: 1rem;
  color: white;
  font-weight: 600;
  background-color: rgba(184, 134, 11, 0.8);
  padding: 10px 1rem;
  border: 1px double #fff;
  font-family: 'open sans';
}

.learn-more:hover a {
  display: flex;
  background-color: rgba(255, 255, 255, 0.6);
  color: goldenrod;
  transition: all 0.2s ease;

  border: 1px solid rgb(184, 134, 11);
}

/* ------------------The Food slideshows on the home page------------------------- */

.home-food-intro {
  position: relative;
  min-height: 100vh;
  width: 100%;
  margin: auto;
  overflow: hidden;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  gap: 1rem;
}

.foodTitle {
  display: flex;
  flex-direction: column;
  margin: auto;
  width: 85%;
  max-width: 900px;
}

.home-food-intro h3 {
  text-transform: uppercase;
}

.home-food-intro .foodTilesContainer {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 70%;
  gap: 0.3rem;
  width: 100%;
  height: 100%;
  max-height: 300px;
  overflow: scroll hidden;
  overscroll-behavior-inline: contain;
  padding: var(--spacer);
  margin: auto;
}

.home-food-intro #swipe2view,
.home-food-intro #scroll2view {
  z-index: 99;
  border: 1px solid darkgoldenrod;
  font-size: 2rem;
  display: flex;
  position: absolute;
  top: 60%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: rgba(255, 255, 255, 0.8);
  padding: 0 1rem;
}

#swipe2view p,
#scroll2view p {
  color: #000;
  font-family: 'open sans';
}

#swipe2view p span,
#scroll2view p span {
  font-weight: 900;
}

@media (max-width: 1024px) {
  .home-food-intro #scroll2view {
    display: none;
  }
}

@media (min-width: 1025px) {
  .home-food-intro #swipe2view {
    display: none;
  }
}

.snaps-inline {
  scroll-snap-type: inline mandatory;
  scroll-padding-inline: 0.1rem;
}

.snaps-inline > * {
  scroll-snap-align: start;
}

.foodTiles {
  overflow: hidden;
  gap: 0.1rem;
  background: rgba(0, 0, 0, 0.1);
  margin: auto;
}

/* .foodTilesText {
  width: 100%;
  margin: auto;
} */

.foodTilesImg {
  height: 100%;
  width: 100%;
  padding: 0.5rem;
}

.foodTilesImg img {
  inline-size: 100%;
  height: 100%;
  aspect-ratio: 16 / 9;
  margin: auto;
  object-fit: cover;
  object-position: center;
}

/* ------homepage_introduction_section ribbon below the image slider-----------*/

.services_home .homepage_intro_section {
  display: flex;
  width: 100%;
  margin: 0;
  flex-direction: column;
  justify-content: center;
  align-content: center;
  text-align: center;
  color: black;
  text-decoration: none;
  overflow: hidden;
}

.reveal {
  position: relative;
  transform: translateY(150px);
  opacity: 0;
  transition: all 1.2s ease;
}

.reveal.active {
  position: relative;
  transform: translateY(0);
  opacity: 1;
}

.services_home .homepage_intro_section #company-profile {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  margin: 0;
  gap: 3rem;
  padding: var(--spacer);
}

.services_home .homepage_intro_section h3 {
  font-size: 0.9rem;
  margin: 0;
  padding: 5;
  font-weight: normal;
}

#vision {
  width: 100vw;
  height: 60vh;
  background: url(../Images/logo/TIES\ &\ KNOTS\ LOGO\ FILES\ 1\ copy\ 3.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

.services_home .homepage_intro_section #company-profile a {
  font-size: 0.9rem;
}

/*----------- The Introduction of the Sister Co-Founders---------------- */

.homepage_intro_section.founders {
  display: grid;
  margin: auto;
  overflow: hidden;
  grid-auto-flow: row;
  grid-auto-columns: 100%;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
}

.services_home-textarea#founders_sisters {
  overflow: hidden;
  position: relative;
}

.services_home-textarea#founders_sisters h2 {
  font-weight: 400;
}
#founders_sisters p span {
  font-weight: 400;
  font-size: 1.3rem;
  color: darkgoldenrod;
  line-height: 3rem;
}

.services_home-images {
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.services_home-images#image {
  width: 100%;
  height: 100%;
}

/*******************************************/
#index-page #contact-homepage_intro_section {
  position: relative;
  width: 100%;
  height: 500px;
  display: block;

  overflow: hidden;
  -webkit-animation: bounce-back 10s ease-in infinite;
  animation: bounce-back 10s ease-in infinite;
  background-image: url(../Images/Edited/C.Media-3.jpg);
  background-size: cover;
  background-position: top;
  background-attachment: fixed;
  background-repeat: no-repeat;
  padding: var(--spacer);
}

#index-page #contact-homepage_intro_section .title-block {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 80%;

  border: 5px solid white;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  margin: 0;
  padding: 0;
}

#index-page #contact-homepage_intro_section .title-block h1 {
  font-size: 2.5rem;
  color: white;
  padding: 0;
}

#index-page #contact-homepage_intro_section .title-block h3 {
  color: white;
  padding: 0;
}

#index-page #contact-homepage_intro_section #contact-text {
  position: absolute;
  top: 90%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  padding: 5px;
  background-color: rgba(255, 255, 255, 0.5);
  -webkit-box-shadow: 0 0 5px 5px white;
  box-shadow: 0 0 3px 5px white;
  overflow: hidden;
}

#index-page #contact-homepage_intro_section #contact-text a {
  color: black;
  font-weight: bold;
  overflow: hidden;
}

#index-page #contact-homepage_intro_section #contact-text:hover {
  background-color: rgba(255, 255, 255, 0.6);
  -webkit-box-shadow: 0 0 5px 5px white;
  box-shadow: 0 0 5px 5px white;
}

#contact-homepage_intro_section #contact-text a:hover {
  font-weight: bold;
  color: black;
}

/************** FOR TABLETS AND IPAD DEVICES********************/

@media screen and (min-width: 601px) and (max-width: 1024px) {
  /*-----------THE SERVICES AND FOUNDERS SECTION--------------*/

  #index-page .services_home {
    display: grid;
    grid-template-areas:
      'text1 text2'
      'img1 img2';
    grid-template-columns: repeat(2, 50%);
    gap: 1em;
    grid-auto-rows: 500px;
    max-width: 700px;
  }

  #index-page .services_home.vision {
    display: flex;
  }

  #services_home-area1 {
    grid-area: text1;
    position: relative;
  }

  #services_home-area2 {
    grid-area: text2;
    position: relative;
  }

  .homepage_intro_section.founders {
    display: grid;
    grid-auto-flow: row;
    grid-template-columns: repeat(2, 50%);
    grid-template-rows: 600px;
    margin: auto;
    overflow: hidden;
    width: 100%;

    padding: 1rem;
    max-width: 700px;
  }

  .homepage_intro_section.founders .images-container {
    overflow: hidden;
    margin: auto;
  }

  .homepage_intro_section.founders img {
    object-fit: cover;
  }

  #index-page .services_home p {
    font-size: 0.9rem;
    text-align: justify;
    text-justify: auto;
    min-height: 280px;
  }

  .services_home-textarea {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    gap: 0.5em;
  }

  .services_home-images {
    height: 600px;
  }

  .services_home-textarea#founders_sisters {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: auto;
  }

  .homepage_intro_section .learn-more a {
    -webkit-transition: 0.3s ease-in-out;
    -o-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
    margin: auto;
    width: 100%;
    height: 100%;
    font-size: 1rem;
  }

  .homepage_intro_section .learn-more:hover {
    background-color: rgba(218, 165, 32, 0.5);
    color: black;
    font-weight: normal;
    border: 2px solid black;
  }

  .home-food-intro .foodTilesContainer {
    grid-auto-columns: 40%;
    gap: 0.3rem;
    width: 100%;
    height: 100%;
    overflow: scroll hidden;
    overscroll-behavior-inline: contain;
    padding: var(--spacer);
    margin: auto;
  }
}

/************** FOR DESKTOPS AND LARGER SCREENS ********************/

@media screen and (min-width: 1025px) {
  #index-page .services_home {
    display: grid;
    grid-template-areas:
      'text1 text2'
      'img1 img2';
    grid-template-columns: repeat(2, 50%);
    gap: 1em;
    grid-auto-rows: auto;
    max-width: 900px;
  }

  #services_home-area1 {
    grid-area: text1;
    position: relative;
  }

  #services_home-area2 {
    grid-area: text2;
    position: relative;
  }

  #index-page .services_home h3 {
    text-transform: uppercase;
    letter-spacing: 1pt;
    font-kerning: 2px;
  }

  .homepage_intro_section.founders {
    display: grid;
    grid-auto-flow: row;
    grid-template-columns: repeat(2, 50%);
    grid-template-rows: auto;
    margin: auto;
    overflow: hidden;
    width: 100%;
    padding: var(--spacer);
    max-width: 900px;
  }

  .homepage_intro_section.founders h2 {
    grid-column: span 2;
  }

  .homepage_intro_section.founders .images-container {
    overflow: hidden;
    margin: auto;
  }

  .homepage_intro_section.founders img {
    object-fit: cover;
  }

  #index-page .services_home p {
    font-size: 0.9rem;
    text-align: justify;
    text-justify: auto;
  }

  .services_home-textarea {
    align-self: flex-start;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #000;
    padding: var(--spacer);
    height: 100%;
  }

  .services_home-images {
    height: 600px;
  }

  .services_home-textarea#founders_sisters {
    display: flex;
    height: auto;
    align-self: flex-start;
    justify-self: start;
  }

  .services_home-textarea#founders_sisters p {
    padding: 1rem;
  }

  .services_home-textarea .learn-more a {
    -webkit-transition: 0.3s ease-in-out;
    -o-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
    margin: auto;
    width: 100%;
    height: 100%;
    font-size: 1rem;
  }

  .home-food-intro .foodTilesContainer {
    grid-auto-columns: 26%;
    max-width: 1300px;
  }

  /*******************************************/
  #index-page #contact-homepage_intro_section {
    position: relative;
    width: 100%;
    height: 700px;
  }

  #index-page #contact-homepage_intro_section .title-block {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 40%;

    border: 5px solid white;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    margin: 0;
    padding: 0;
  }

  #index-page #contact-homepage_intro_section .title-block h1 {
    font-size: 2.5rem;
    font-weight: 500;
    color: white;
    padding: 0;
  }

  #index-page #contact-homepage_intro_section #contact-text {
    position: absolute;
    top: 90%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    border: 1px solid white;
    padding: 5px;
    background-color: rgba(0, 0, 0, 0.6);
    -webkit-box-shadow: 0 0 5px 5px white;
    box-shadow: 0 0 5px 5px white;
    overflow: hidden;
  }

  #index-page #contact-homepage_intro_section #contact-text a {
    color: white;
    font-weight: bold;
    overflow: hidden;
  }

  #index-page #contact-homepage_intro_section #contact-text:hover {
    background-color: rgba(255, 255, 255, 0.6);
    border: 3px solid #fddcd9;
    -webkit-box-shadow: 0 0 5px 5px white;
    box-shadow: 0 0 5px 5px white;
  }

  #index-page #contact-homepage_intro_section #contact-text a:hover {
    font-weight: bold;
    color: black;
  }
}

/*************************************************************/
/****************THE DECOR PAGE*******************/
/************************************************************/

.decor-page {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-content: center;
  gap: 3rem;
  width: 100%;
  padding-bottom: 2rem;
}

#heading {
  position: relative;
  margin: auto;
  padding: 1rem;
  width: 100%;
  max-width: 800px;
  overflow: hidden;
  height: fit-content;
}

#heading h2 {
  margin: auto;
  padding: 1rem;
  font-size: 1.3rem;
  text-transform: uppercase;
  font-weight: 400;
}

#heading p {
  margin: auto;
}

#decor-album-grid {
  width: 99%;
  max-width: 900px;
  columns: 3;
  margin: 0 auto;
  gap: 3px;
  margin: auto;
  overflow: hidden;
}

#decor-album-grid > * {
  break-inside: avoid;
  margin-bottom: 3px;
}

@supports (grid-template-rows: masonry) {
  #decor-album-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: masonry;
    justify-content: center;
    align-items: center;
  }
  #decor-album-grid > * {
    break-inside: avoid;
    margin-bottom: 0;
  }
}

.decor-album-pic {
  position: relative;
  box-shadow: 0 0 5px 4px rgba(0, 0, 0, 0.1);
  text-align: center;
  width: 100%;
  max-width: 300px;
  margin: 3px;
  overflow: hidden;
  break-inside: avoid;
}
.decor-album-pic img {
  position: relative;
  width: 100%;
  object-fit: contain;
  transition: all 0.5s ease;
}

.decor-album-pic:hover img {
  position: relative;
  transform: scale(1.1);
  transition: all 0.5s ease;
  cursor: pointer;
}

/* #decor-album-grid > .decor-album-pic:hover::after{
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, .5);
  cursor: pointer;
} */

/*****************THE EVENT PLANNING PAGE********************/

.event-planning-page {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  padding-bottom: 2rem;
}

#event-planning-row-hdr {
  margin: 0;
  padding: 1rem;
  max-width: 900px;
}

#event-planning-row-hdr p span {
  display: block;
  font-size: 1.3rem;
  margin: 4rem auto 0;
}

#event-planning-column {
  margin: 0;
  padding: 0;
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
  align-items: center;

  perspective: 50px;
}

#event-planning-column ol {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  list-style: upper-roman;
  -webkit-padding-start: 0;
}

#event-planning-column li {
  margin: auto;
  color: darkgoldenrod;
  font-size: 1.4rem;
}

#event-planning-column li::marker {
  display: inline-block;
}

#event-planning-column h3 {
  font-size: 1.3rem;
  color: darkgoldenrod;
  text-transform: uppercase;
}

#event-planning-column h4 {
  width: 100%;
  font-size: 1.4rem;
  color: darkgoldenrod;
  line-height: 2rem;
  font-weight: 400;
}

#event-planning-column p {
  margin: auto;
  text-align: justify;
  text-justify: inter-character;
  width: 90%;
  max-width: 900px;
  height: 100%;
  z-index: 1;
}

#consultation,
#management-planning,
#execution,
#wrap-up {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: fit-content;
  padding: 1rem;
}

#consultation.image-background,
#management-planning.image-background,
#execution.image-background,
#wrap-up.image-background {
  width: 100%;
  min-height: 500px;
}

#consultation.image-background {
  width: 100vw;
  background: linear-gradient(rgb(255, 255, 255, 0.1), rgb(255, 255, 255, 0.2)),
    url(../Images/ElissStudios-19.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  background-attachment: fixed;
}

#management-planning.image-background {
  background: linear-gradient(rgb(255, 255, 255, 0.1), rgb(255, 255, 255, 0.2)),
    url(../Images/ElissStudios-34.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top;
  background-attachment: fixed;
}

#execution.image-background {
  background: linear-gradient(rgb(255, 255, 255, 0.1), rgb(255, 255, 255, 0.2)),
    url(../Images/C.Media-94.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top;
  background-attachment: fixed;
}

#wrap-up.image-background {
  background: linear-gradient(rgb(255, 255, 255, 0.1), rgb(255, 255, 255, 0.2)),
    url(../Images/C.Media-4621-1.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top;
  background-attachment: fixed;
}

/*****************THE CATERING PAGE********************/
.catering-page {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-content: center;
  gap: 3rem;
  width: 100%;
}

/*------------Menu Selections---------------*/

#food-menus-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  align-items: center;
  gap: 10px;
  width: 90%;
  max-width: 800px;
  margin: auto;
}

#food-menus-container .menu-items {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  width: 100%;
  max-width: 250px;
  margin: auto;
  height: 50px;
  padding: 2px;
  border: 2px solid darkgoldenrod;
}

#food-menus-container .menu-items {
  padding: 1rem;
  text-align: center;
  margin: auto;
}

#food-menus-container .menu-items:hover {
  background-color: rgba(184, 134, 11, 0.7);
  transition: all 0.3s ease;
  border: 2px solid #fff;
}

#food-menus-container .menu-items:hover a h4 {
  color: #fff;
}

.menu-items a h4 {
  color: #000;
  width: 100%;
  font-weight: 500;
  padding: 0;
}

.menu-items a p {
  color: #fff;
  font-size: 1rem;
  text-decoration: none;
  margin: auto;
  text-align: center;
}

/*------------------ The CATERING GRID-----------------  */

#catering-column {
  width: 100%;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  padding: 1rem;
}

#catering-image-grid {
  width: 99%;
  max-width: 900px;
  columns: 3;
  margin: auto;
  gap: 3px;
  margin: auto;
}

#catering-image-grid > * {
  break-inside: avoid;
  margin-bottom: 3px;
}

@supports (grid-template-rows: masonry) {
  #catering-image-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(20rem, 1fr));
    grid-template-rows: masonry;
  }
  #catering-image-grid > * {
    break-inside: avoid;
    margin-bottom: 0;
  }
}

.catering-album-pic {
  position: relative;
  text-align: center;
  width: 100%;
  margin: 3px;
  overflow: hidden;
  break-inside: avoid;
}
.catering-album-pic img {
  position: relative;
  width: 100%;
  object-fit: contain;
  transition: all 0.5s ease;
}

.catering-album-pic:hover img {
  position: relative;
  transform: scale(1.1);
  transition: all 0.5s ease;
  cursor: pointer;
}

/*-----------We Love Food Floating text with image background-----------*/

#image-text {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  background-color: white;
  z-index: 0;
  text-align: center;
  width: 100%;
  margin: auto;
  padding: 5rem 1rem;
  overflow: hidden;
}

#image-text span {
  display: inline-block;
  width: 100%;
  max-width: 900px;
  margin: auto;
  font-family: 'Fredericka the Great', serif;
  text-align: center;
  position: relative;
  font-size: clamp(10vw, 7rem, 180px);
  text-align: center;
  font-weight: 700;
  color: rgba(255, 255, 255, 0);
  background-image: url(../Images/C.Media-0335.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  -webkit-text-fill-color: rgba(255, 255, 255, 0.2);
  -webkit-background-clip: text;
  background-clip: text;
  z-index: 3;
  -webkit-transition: 1.2s all ease-in-out;
  -o-transition: 1.2s all ease-in-out;
  transition: 1.2s all ease-in-out;
  -webkit-animation: food-slide 16s infinite linear;
  animation: food-slide 16s infinite linear;
  overflow: hidden;
}

#image-text span:hover {
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
  -webkit-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  cursor: pointer;
  text-align: center;
}

#image-text span::before {
  display: none;
  content: '';
  -webkit-transition: none;
  -o-transition: none;
  transition: none;
}

/*--------------Animating the images in the bakground of the floating text--------------*/

@-webkit-keyframes food-slide {
  0% {
    background-image: url(../Images/C.Media-0335.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: right;
  }

  25% {
    background-image: url(../Images/DSCF1604.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
  }

  50% {
    background-image: url(../Images/DSCF9552.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: left;
  }

  75% {
    background-image: url(../Images/ties\ and\ knots-0880.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: right;
  }

  100% {
    background-image: url(../Images/C.Media-0335.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: left;
  }
}
@keyframes food-slide {
  0% {
    background-image: url(../Images/C.Media-0335.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: right;
  }

  25% {
    background-image: url(../Images/DSCF1604.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
  }

  50% {
    background-image: url(../Images/DSCF9552.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: left;
  }

  75% {
    background-image: url(../Images/ties\ and\ knots-0880.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: right;
  }

  100% {
    background-image: url(../Images/C.Media-0335.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: left;
  }
}

#food-subhead {
  position: relative;
  font-size: 0.9rem;
  color: black;
  text-align: center;
  margin: auto;
  padding: var(--spacer);
}

#food-subhead h5 {
  font-weight: 400;
  font-size: 1rem;
}

/**********CONTACT US SECTION*******************/

.contact-text-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 500px;
  background-position: center;
  background-attachment: fixed;
  background-image: url(../Images/Edited/C.Media-4613-1.JPG);
  background-repeat: no-repeat;
  background-size: cover;
}

#contact-text {
  display: flex;
  justify-content: center;
  margin: auto;
}

#contact-text a {
  font-size: 1rem;
  font-family: 'open sans';
  color: white;
  font-weight: 600;
  background-color: rgba(184, 134, 11, 0.8);
  padding: 10px 1rem;
  border: 1px double #fff;
}

#contact-text a:hover {
  display: flex;
  font-size: 1rem;
  background-color: rgba(255, 255, 255, 0.6);
  color: goldenrod;
  transition: all 0.2s ease;
  border: 1px solid rgb(184, 134, 11);

  padding: 10px 1rem;
}

/******************************************************/

/**************** THE TESTIMONIALS PAGE ********************/

#testimonials-page {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: auto;
  padding: 1rem;
  overflow: hidden;
}

.testimonials-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 600px;
  margin: auto;
  gap: 5rem;
}

.testimonial-item-wrapper {
  width: 100%;
  overflow: hidden;
  max-width: 350px;
  min-height: 400px;
  height: 100%;
  padding: 1rem;
}

.testimonial-item {
  display: flex;
  justify-content: center;
  position: relative;
  text-align: center;
  break-inside: avoid;
  width: 100%;
  height: 100%;
}

.testimonial-thumbnail {
  position: relative;
  width: 40%;
  min-width: 100px;
  min-height: 300px;
  max-height: 400px;
  margin-left: -1rem;
}

.testimonial-title {
  width: 100%;
}

.testimonial-title p {
  color: goldenrod;
  font-size: 1.2rem;
}

.testimonial-text {
  display: flex;
  justify-content: center;
  align-items: center;
  height: auto;
  background: linear-gradient(
    to right,
    rgba(255, 255, 255, 0.7),
    rgba(255, 255, 255, 0.6)
  );
  border: 1px solid darkgoldenrod;
  padding: 0.5rem;
  width: 70%;
  margin-top: 1.5rem;
  margin-left: -1rem;
  backdrop-filter: blur(0.5px);
  z-index: 1;
}

.testimonial-text p {
  color: darkgoldenrod;
  font-size: 0.8rem;
  font-family: 'open sans';
}

blockquote {
  border-left: 10px solid #ccc;
  margin: 1.5em 10px;
  padding: 0;
  quotes: '\201C''\201D';
}

blockquote:before {
  color: #ccc;
  content: open-quote;
  font-size: 3em;
  line-height: 0.1em;
  margin-left: -85%;
  vertical-align: -0.4em;
}

.testimonial-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  overflow: hidden;
}

.testimonial-item img:hover {
  position: relative;
  transform: scale(1.1);
  transition: all 0.5s ease;
  cursor: pointer;
}

.testimonials-container h3 {
  font-weight: 300px;
}

/*--- Settings for the Tablets and larger handheld device--- */

@media screen and (min-width: 601px) and (max-width: 850px) {
  .testimonials-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    width: 100%;
    max-width: 830px;
    margin: 0 auto;
    gap: 10px;
    text-align: center;
  }

  .testimonial-item-wrapper {
    width: 100%;
    overflow: hidden;
    max-width: 450px;
    min-height: 450px;
    height: 100%;
    padding: 1rem;
  }

  .testimonial-text {
    height: fit-content;
  }

  .testimonial-thumbnail {
    position: relative;
    width: 50%;
    min-width: 100px;
    min-height: 300px;
    max-height: 400px;
    margin-left: -1rem;
  }
}

/* Settings for Laptops/Desktops and Larger screens */

@media screen and (min-width: 851px) {
  .testimonials-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    width: 90%;
    max-width: 1000px;
    columns: 2;
    margin: 0 auto;
    gap: 10px;
    text-align: center;
  }

  .testimonial-item-wrapper {
    width: 100%;
    overflow: hidden;
    max-width: 550px;
    min-height: 420px;
    height: 100%;
    padding: 1rem;
  }
  .testimonial-thumbnail {
    position: relative;
    width: 50%;
    max-height: 400px;
    margin-left: -1rem;
  }

  .testimonial-item img {
    width: 100%;
    min-width: 250px;
    height: 100%;
    object-fit: cover;
    overflow: hidden;
  }

  .testimonial-text {
    height: max-content;
    width: 200px;
    padding: 0;
  }
}

/*******************************************************/

/******************THE MEET US PAGE*********************/

#theabout {
  display: block;
  width: 100%;
  min-height: 100%;
  text-align: center;
  margin: auto;
}

#theabout #sistersvw {
  position: relative;
  display: block;
  width: 80%;
  min-height: 100%;
  overflow: hidden;
  margin: auto;
}

.sislider {
  width: 100%;
  margin: auto;
}

.sislider h3 {
  font-size: 1.8rem;
}

#the-founders {
  display: -ms-grid;
  display: grid;
  grid-template-areas:
    'main-sub-hdr'
    'main-bio-pic'
    'first-bio-text'
    'first-bio-pic'
    'second-bio-text'
    'second-bio-pic';
  -ms-grid-columns: 100%;
  grid-template-columns: 100%;
  -ms-grid-rows: auto;
  grid-template-rows: auto;
  margin: auto;
  gap: 1rem;
}

#the-founders p {
  padding: 0 10px;
  text-align: justify;
  text-justify: inter-word;
}
/* 
#heading {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
  grid-area: main-sub-hdr;
  height: fit-content;
  border: 1px solid darkgoldenrod;
  max-width: 340px;
  margin: auto;
  position: relative;
  padding: 10px;
} */

#founder-bio {
  overflow: hidden;
  height: auto;
  padding: 2px;
}

#founder-bio span {
  font-size: 0.7em;
}

#founder-bio #lead-text {
  font-size: 0.7em;
}

#the-founders p span {
  color: rgb(184, 134, 11);
  position: relative;
  margin: auto;
  font-size: 1.5rem;
  text-align: center;
  display: block;
}

#sistersvw h4 {
  color: darkgoldenrod;
  font-size: 1.4rem;
  text-align: center;
  font-weight: 500;
}

.founder-pic#sisters {
  grid-area: main-bio-pic;
  animation: sisterPics 15s infinite linear;
  width: 100%;
}

.founder {
  overflow: hidden;
  height: auto;

  max-width: 340px;
  margin: auto;
}

.founder#sanji {
  grid-area: first-bio-text;
  text-align: center;
  height: auto;
  margin: auto;

  width: 100%;
  overflow: hidden;
  padding: 1rem;
}

.founder-pic#sanji {
  grid-area: first-bio-pic;
}

.founder-pic#koko {
  grid-area: second-bio-pic;
}

.founder-pic {
  height: 500px;
  display: block;
  overflow: hidden;
}

.founder-pic img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  -o-object-position: center;
  object-position: center;
}

.founder#koko {
  grid-area: second-bio-text;
  text-align: justify;
  text-justify: inter-word;
  height: auto;
  padding: 1rem;
}

/************** FOR TABLETS AND IPAD DEVICES********************/
/****************************************************************/

@media screen and (min-width: 601px) and (max-width: 1024px) {
  #theabout #sistersvw {
    position: relative;
    width: 90%;
    max-width: 800px;
    min-height: 100%;
    overflow: hidden;
    margin: auto;
  }

  #the-founders {
    width: 100%;
    grid-template-columns: repeat(2, 1fr);
    -ms-grid-rows: auto;
    grid-template-rows: auto;
    grid-template-areas:
      ' main-sub-hdr main-bio-pic'
      ' first-bio-pic first-bio-text'
      ' second-bio-text second-bio-pic';
    margin: auto;
    gap: 2rem;
  }

  #the-founders #heading {
    max-width: 100%;
    margin: auto;
    /* height: 550px; */
  }

  #the-founders #heading p {
    margin-top: 5px;
  }

  .founder {
    overflow: hidden;
    max-width: 100%;
    min-height: 550px;
    height: 550px;
    margin: 0;
    padding: 0;
  }

  #the-founders h4 {
    padding: 3px;
    margin: 5 0;
  }

  .founder-pic {
    height: 550px;
    display: block;
    overflow: hidden;
    padding: 0;
    margin: 0;
  }

  .founder-pic img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
  }

  #the-founders p span {
    margin: auto;
    font-size: 1.7rem;
    width: 90%;
  }
}

/************** FOR LAPTOPS AND DESKTOPS DEVICES********************/
/****************************************************************/

@media screen and (min-width: 1025px) {
  #theabout {
    display: block;
    text-align: center;
    width: 100vw;
    height: 100vh;
    position: relative;
  }

  #theabout #sistersvw {
    position: absolute;
    display: block;
    width: 100vw;
    min-height: 180vh;
    margin: auto;
    -webkit-transform: rotate(-90deg) translateX(-100vh);
    -ms-transform: rotate(-90deg) translateX(-100vh);
    transform: rotate(-90deg) translateX(-100vh);
    -webkit-transform-origin: top left;
    -ms-transform-origin: top left;
    transform-origin: top left;
    overflow-y: auto;
    overflow-x: hidden;
    scrollbar-width: none;
  }

  .sislider {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    width: 100vw;
    height: auto;
    -webkit-transform: rotate(90deg) translateY(-100vh);
    -ms-transform: rotate(90deg) translateY(-100vh);
    transform: rotate(90deg) translateY(-100vh);
    -webkit-transform-origin: top left;
    -ms-transform-origin: top left;
    transform-origin: top left;
    overflow-x: visible;
  }

  #textblock {
    width: 100vh;
    height: 10vh;
  }

  #textblock h3 {
    display: block;
    margin: 0;
    padding: 0;
    font-weight: 500;
    font-size: 3rem;
    text-align: center;
    color: rgb(184, 134, 11);
    line-height: 15vh;
    overflow: hidden;
  }

  #the-founders {
    min-height: 80vh;
    min-width: 100vw;
    -ms-grid-columns: 25% 15px 25% 15px 25% 15px 25% 15px 25% 15px 25%;
    grid-template-columns: repeat(6, 25%);
    -ms-grid-rows: 100%;
    grid-template-rows: 100%;
    grid-template-areas: 'main-sub-hdr main-bio-pic first-bio-text first-bio-pic  second-bio-text second-bio-pic';
    margin: auto;
    gap: 1rem;
    overflow: visible;
  }

  #the-founders #heading {
    grid-area: main-sub-hdr;
    max-width: 480px;
    margin: auto;
    min-height: 500px;
  }

  #the-founders p {
    margin: auto;
    font-size: 0.8rem;
  }

  .founder {
    overflow: hidden;
    max-width: 480px;
    min-height: 550px;
    height: 550px;
    margin: auto;
    padding: 0;
  }

  .founder-pic {
    min-height: 500px;
    height: 550px;
    display: block;
    overflow: hidden;
    padding: 0;
    margin: auto;

    max-width: 480px;
  }

  .founder-pic img {
    margin: auto;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
  }

  #the-founders p span {
    color: black;
    position: relative;
    margin: 0 auto;
    padding: 0;
    font-size: 1.8rem;
    width: 80%;
    text-align: center;
    display: block;
  }
}

/*******************************************************/

/**************** THE CONTACT US PAGE ******************/

.contactpage {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
}

.contact-us-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin: auto;
  gap: 3rem;
}

.contactitems-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: fit-content;
  width: 100%;
}

.contact-info {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 950px;
  gap: 1rem;
  justify-content: center;
  align-items: center;
  margin: auto;
}

.contact-logo {
  width: 100%;
  height: 200px;
}

.contact-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.contactitems {
  margin: auto;
  width: 100%;
  padding: 0.5rem;
}

.contactitems h4 {
  color: darkgoldenrod;
  text-transform: capitalize;
}

.contactitems span:nth-child(n + 1) {
  font-weight: 600;
}

.contactitems span#boldGold {
  color: darkgoldenrod;
}

.contactitems-wrapper a {
  color: darkgoldenrod;
}

.contact-divider {
  height: 500px;
  width: 100%;
}

.contact-divider#top-div {
  background: linear-gradient(rgba(255, 255, 255, 0), rgba(255, 255, 255, 0)),
    url(../Images/Edited/untitled-209.jpg);
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.contact-divider#bottom-div {
  background: linear-gradient(rgba(255, 255, 255, 0), rgba(255, 255, 255, 0)),
    url(../Images/Edited/untitled-210.jpg);
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

/*****-------------The Contact Form-------------*****/

#contact-us-form {
  position: relative;
  display: block;
  width: 100%;
  max-width: 700px;
  height: auto;
  margin: auto;
  overflow: hidden;
  border-radius: 5px;
  text-align: center;
  padding: 1rem;
  background: linear-gradient(
      rgba(255, 255, 255, 0.5),
      rgba(255, 255, 255, 0.5)
    ),
    url(../Images/Edited/untitled-210.jpg);
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

#contact-us-hdr {
  height: auto;
}

#contact-us-hdr h4 {
  font-size: 1.1rem;
  font-weight: 500;
  letter-spacing: normal;
}

#contact-us-form .inputBox {
  position: relative;
  color: black;
  font-size: 0.9rem;
  width: 85%;
  padding: 15px;
  margin: auto;
  margin-top: 10px;
  border: 5px solid rgba(255, 255, 255, 0);
  border-radius: 5px;
  outline: none;
  overflow: hidden;
  resize: none;
}

/* #contact-us-form .inputBox:nth-child(6) input {
  color: transparent;
} */

#contact-us-form .inputBox input,
#contact-us-form .inputBox textarea {
  color: ghostwhite;
  font-size: 1rem;
  height: 30px;
  width: 100%;
  resize: none;
  outline: none;
  background-color: rgba(0, 0, 0, 0.5);
  border: solid 3px rgba(255, 255, 255, 0);
  border-radius: 2px;
}

#contact-us-form .inputBox textarea {
  height: 250px;
  font-size: 0.9rem;
}

#contact-us-form .inputBox span {
  font-size: 1em;
  color: rgba(255, 255, 255, 0.8);
  position: absolute;
  padding: 5px;
  left: 15px;
  pointer-events: none;
  -webkit-transition: 0.5s ease;
  -o-transition: 0.5s ease;
  transition: 0.5s ease;
  outline: none;
  width: inherit;
  text-align: left;
  overflow: hidden;
}

#contact-us-form .inputBox input:focus ~ span,
#contact-us-form .inputBox input:valid ~ span,
#contact-us-form .inputBox textarea:focus ~ span,
#contact-us-form .inputBox textarea:valid ~ span {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.8rem;
  -webkit-transform: translateY(-22px);
  -ms-transform: translateY(-22px);
  transform: translateY(-22px);
  outline: none;
  border: none;
  background-color: rgba(0, 0, 0, 0);
}

#contact-us-form .buttonz {
  width: 90%;
  padding: 2px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  text-align: center;
  margin: auto;
}

#contact-us-form button#submit-btn,
#contact-us-form button#reset-btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  position: relative;
  margin: auto;
  color: ghostwblhite;
  font-size: 0.9em;
  line-height: 0.9em;
  border: 2px solid white;
  width: 150px;
  height: 20px;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
  border-radius: 50px;
  background-color: rgba(0, 0, 0, 0.2);
  outline: none;
}

#contact-us-form #submit-btn span,
#contact-us-form #reset-btn span {
  font-size: 1em;
  text-align: center;
  margin: auto;
  color: white;
}

#contact-us-form button#submit-btn:hover {
  background-color: rgba(0, 255, 0, 0.2);
  -webkit-box-shadow: rgba(0, 255, 0, 0.9) 0px 0px 10px;
  box-shadow: rgba(0, 255, 0, 0.9) 0px 0px 10px;
  border: 2px solid;
  border-radius: 15px;
  color: rgba(0, 255, 0, 0.5);
  font-weight: 500;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
  -webkit-transition: 0.2s ease-out;
  -o-transition: 0.2s ease-out;
  transition: 0.2s ease-out;
  cursor: pointer;
  padding: 0;
}

#contact-us-form button#reset-btn:hover {
  background-color: rgba(255, 85, 0, 0.2);
  -webkit-box-shadow: rgba(255, 85, 0, 0.9) 0px 0px 10px;
  box-shadow: rgba(255, 85, 0, 0.9) 0px 0px 10px;
  border: 2px solid;
  border-radius: 15px;
  color: rgba(255, 85, 0, 0.9);
  font-weight: 500;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
  -webkit-transition: 0.2s ease-out;
  -o-transition: 0.2s ease-out;
  transition: 0.2s ease-out;
  cursor: pointer;
  padding: 0;
}

/*css for alert messages*/

#alert-area {
  grid-area: alerts;
  width: 100%;
  height: auto;
  z-index: 30;
  overflow: hidden;
  text-align: center;
  margin: auto;
}

.alert-success,
.alert-error {
  width: 99%;
  height: auto;

  margin: auto;
  padding: 3 0;
}

.alert-success {
  background-color: rgba(0, 250, 100, 0.6);

  border-radius: 3px;
}

.alert-error {
  background-color: rgba(255, 105, 0, 0.5);

  border-radius: 3px;
}

.alert-success span,
.alert-error span {
  color: white;
  font-weight: 590;
  line-height: normal;
  background: none;
  font-size: 1rem;
}

/************** FOR TABLETS AND IPAD DEVICES********************/
/****************************************************************/

@media screen and (min-width: 601px) and (max-width: 1024px) {
  /*   .contact-info {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    width: 100vw;
    height: max-content;
    gap: 0.5rem;
    align-items: stretch;
    margin: auto;
  }*/
  .contactitems-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    min-height: fit-content;
    max-width: 300px;
  }

  /* .contactitems {
    width: auto;
    min-width: 200px;
    min-height: 200px;
  } */
}

/************** FOR LAPTOPS AND LARGER SCREENS********************/
/****************************************************************/

@media screen and (min-width: 1025px) {
  /* .contact-info {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    width: 100vw;
    height: max-content;
    gap: 0.5rem;
    align-items: stretch;
    margin: auto;
  }*/
  .contactitems-wrapper {
    max-width: 950px;
  }

  /* .contactitems {
    min-width: 200px;
    width: max-content;
    min-height: 200px;
  } */

  .contact-divider {
    height: 600px;
  }
}
