/* ADV99 CUSTOM */

.landing-logo {
  background-size: contain;
  background-repeat: no-repeat;
  border-image-width: none;
  min-height: 500px;
}
.bg-gradient-glass {
  background: var(--color-bg);
  background: linear-gradient(30deg, var(--color-bg) 80%, rgba(255, 255, 255, 1) 200%);
}
.bg-gradient-lime {
  background: var(--color-bg);
  background: linear-gradient(30deg, var(--color-bg) 80%, rgba(253, 187, 45, 1) 200%);
}
.bg-gradient-strawberry {
  background: var(--color-bg);
  background: linear-gradient(30deg, var(--color-bg) 80%, rgb(253, 45, 80) 200%);
}
.bg-gradient-blueberry {
  background: var(--color-bg);
  background: linear-gradient(30deg, var(--color-bg) 80%, rgb(62, 48, 184) 200%);
}
.bg-gradient-avocado {
  background: var(--color-bg);
  background: linear-gradient(30deg, var(--color-bg) 80%, rgb(81, 140, 36) 200%);
}
.bg-gradient-lilly {
  background: var(--color-bg);
  background: linear-gradient(30deg, var(--color-bg) 80%, rgb(45, 194, 253) 200%);
}
#chat-history {
  /* border: 1px solid red; */
}
.chat-message {
  padding: 15px 30px 15px 30px!important;
  border-radius: 16px;
  margin-bottom: 10px;
  max-width: 40%;
}
.chat-message.user-message {
  align-self: flex-end;
  font-weight: 500;
  line-height: 22px;
  color: var(--color-message-user-text);
  background-color: var(--color-message-user-bg);
  border-top-right-radius: 0!important;
}
.chat-message.ai-message {
  align-self: flex-start;
  font-weight: 500;
  line-height: 22px;
  color: var(--color-message-ai-text);
  background-color: var(--color-message-ai-bg);
  border-top-left-radius: 0!important;
  animation: fade-in 0.5s ease-in-out;
}
.chat-message.ai-message a {
  font-weight: 500;
  text-decoration: none;
  border-radius: 4px;
  padding: 2px 6px 4px 6px;
  background-color: var(--color-text); 
  font-size: 13px;
  color: var(--color-bg);
}
@keyframes fade-in {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.footer {
  position: fixed;
  bottom: 10px;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 30px;
  overflow: hidden;
}


/* BASIC */

body {
  height: 100vh;
  margin: 0;
  background-color: var(--color-bg-gradient-mid);
}
.body-lock {
  overflow: hidden;
}
* {
  font-family: var(--font-all);
  font-weight: 200;
  color: var(--color-secondary);
  /* border: 0.1px dashed rgba(255,0,0,1); */
  /*font-size: 24px;*/
  transition: all 0.3s ease-in-out;
}
strong {
  font-weight: 600;
}
h1 {
  font-size: 32px !important;
  line-height: 34px;
  margin: 0 60px 0 60px;
  text-align: center;
}
h2 {
  font-size: 25px !important;
  line-height: 34px;
  margin: 0 60px 0 60px;
  text-align: center;
}
/* p {
  font-size: 24px;
  margin: 4px;
} */
p {
  font-size: 20px;
}
.small {
  font-size: 14px;
}
a {
  font-weight: 500;
  text-decoration: underline;
}
.text-left {
  text-align: left;
}
.text-center {
  text-align: center;
}
.text-right {
  text-align: right;
}
.d-flex {
  display: flex;
}
.d-none {
  display: none;
}
.d-block {
  display: block;
}
.column {
  display: flex;
  flex-direction: column;
}
.column.between {
  justify-content: space-between;
}
.column.top {
  justify-content: flex-start;
}
.row {
  display: flex;
  flex-direction: row;
}
.row-between {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}
.center {
  display: flex;
  align-items: center;
  justify-content: center;
}
.wrap {
  flex-wrap: wrap;
}
.column {
  flex-direction: column;
}
.p-absolute {
  position: absolute;
}
.p-relative {
  position: relative;
}
.p-fixed {
  position: fixed;
}
.p-0 {
  padding: 0;
}
.p-1 {
  padding: 5px;
}
.p-2 {
  padding: 10px;
}
.p-3 {
  padding: 15px;
}
.p-4 {
  padding: 30px;
}
.p-5 {
  padding: 60px;
}
.pl-0 {
  padding-left: 0;
}
.pl-1 {
  padding-left: 5px;
}
.pl-2 {
  padding-left: 10px;
}
.pl-3 {
  padding-left: 15px;
}
.pl-4 {
  padding-left: 30px;
}
.pl-5 {
  padding-left: 60px;
}
.pr-0 {
  padding-right: 0;
}
.pr-1 {
  padding-right: 5px;
}
.pr-2 {
  padding-right: 10px;
}
.pr-3 {
  padding-right: 15px;
}
.pr-4 {
  padding-right: 30px;
}
.pr-5 {
  padding-right: 60px;
}
.pt-0 {
  padding-top: 0;
}
.pt-1 {
  padding-top: 5px;
}
.pt-2 {
  padding-top: 10px;
}
.pt-3 {
  padding-top: 15px;
}
.pt-4 {
  padding-top: 30px;
}
.pt-5 {
  padding-top: 60px;
}
.pb-0 {
  padding-bottom: 0;
}
.pb-1 {
  padding-bottom: 5px;
}
.pb-2 {
  padding-bottom: 10px;
}
.pb-3 {
  padding-bottom: 15px;
}
.pb-4 {
  padding-bottom: 30px;
}
.pb-5 {
  padding-bottom: 60px;
}
.m-0 {
  margin: 0 !important;
}
.m-1 {
  margin: 5px !important;
}
.m-2 {
  margin: 10px !important;
}
.m-3 {
  margin: 15px !important;
}
.m-4 {
  margin: 30px !important;
}
.m-5 {
  margin: 60px !important;
}
.ml-0 {
  margin-left: 0 !important;
}
.ml-1 {
  margin-left: 5px !important;
}
.ml-2 {
  margin-left: 10px !important;
}
.ml-3 {
  margin-left: 15px !important;
}
.ml-4 {
  margin-left: 30px !important;
}
.ml-5 {
  margin-left: 60px !important;
}
.mr-0 {
  margin-right: 0 !important;
}
.mr-1 {
  margin-right: 5px !important;
}
.mr-2 {
  margin-right: 10px !important;
}
.mr-3 {
  margin-right: 15px !important;
}
.mr-4 {
  margin-right: 30px !important;
}
.mr-5 {
  margin-right: 60px !important;
}
.mt-0 {
  margin-top: 0 !important;
}
.mt-1 {
  margin-top: 5px !important;
}
.mt-2 {
  margin-top: 10px !important;
}
.mt-3 {
  margin-top: 15px !important;
}
.mt-4 {
  margin-top: 30px !important;
}
.mt-5 {
  margin-top: 60px !important;
}
.mb-0 {
  margin-bottom: 0 !important;
}
.mb-1 {
  margin-bottom: 5px !important;
}
.mb-2 {
  margin-bottom: 10px !important;
}
.mb-3 {
  margin-bottom: 15px !important;
}
.mb-4 {
  margin-bottom: 30px !important;
}
.mb-5 {
  margin-bottom: 60px !important;
}
.h-0 {
  height: 0px;
}
.h-1 {
  height: 5px;
}
.h-2 {
  height: 10px;
}
.h-3 {
  height: 15px;
}
.h-4 {
  height: 30px;
}
.h-5 {
  height: 60px;
}
.h-6 {
  height: 80px;
}
.h-7 {
  height: 100px;
}
.br-0 {
  border-radius: 0px;
}
.br-1 {
  border-radius: 5px;
}
.br-2 {
  border-radius: 10px;
}
.br-3 {
  border-radius: 15px;
}
.br-4 {
  border-radius: 30px;
}
.br-5 {
  border-radius: 60px;
}
.br-6 {
  border-radius: 80px;
}
.br-7 {
  border-radius: 100px;
}
.w-0 {
  width: 0px;
}
.w-1 {
  width: 5px;
}
.w-2 {
  width: 10px;
}
.w-3 {
  width: 15px;
}
.w-4 {
  width: 30px;
}
.w-5 {
  width: 60px;
}
.w-6 {
  width: 80px;
}
.w-7 {
  width: 100px;
}
.w-100 {
  width: 100%;
}
.h-100 {
  height: 100%;
}
.lvv-100 {
  height: 100lvh;
}
.gap-5 {
  gap: 5px;
}
.gap-10 {
  gap: 10px;
}
.gap-15 {
  gap: 15px;
}
.gap-30 {
  gap: 30px;
}
#background {
  position: fixed;
  background-image: radial-gradient(var(--color-bg-gradient-inner) 0%,
      var(--color-bg-gradient-mid) 110%,
      var(--color-bg-gradient-outer) 130%);
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
  width: 100%;
  height: 100vh;
}
.blur {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: var(--color-text-light);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
}
.dev {
  border: 0.1px dashed var(--color-secondary);
}
.code {
  background-color: var(--color-secondary-20);
  font-family: var(--font-code);
  padding: 20px 30px 20px 30px;
  border-radius: 8px;
  width: 80%;
}

/* HEAD */

#head {
  left: 0;
  position: fixed;
  width: calc(100% - 40px);
  height: 50px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
}
#logo-outline {
  left: 0;
  position: fixed;
  height: 50px;
  cursor: pointer;
  padding: 20px;
  cursor: pointer;
}
#logo-outline:hover {
  transform: rotate(30deg);
  transition: 1s cubic-bezier(0.24, -0.52, 0.28, 1.54) !important;
}
#icon-hamburger {
  left: calc(50% - 25px);
  position: fixed;
  bottom: 10px;
  height: 45px;
  cursor: pointer;
  padding: 0px;
  cursor: pointer;
}

/* BUTTONS */

input,
textarea {
  padding: 20px 30px 20px 30px;
  border-radius: 30px;
  font-size: 14px;
  line-height: 14px;
  /* text-transform: uppercase; */
  font-weight: 500;
  color: var(--color-text);
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--color-secondary);
  /* cursor: pointer; */
}
.outline {
  border: 1px solid var(--color-secondary);
}
.outline-20 {
  border: 1px solid var(--color-text-20);
}
input::placeholder,
textarea::placeholder {
  color: var(--color-text-50);
}
input:-ms-input-placeholder,
textarea:-ms-input-placeholder {
  color: var(--color-text-50);
}
input::-ms-input-placeholder,
textarea::-ms-input-placeholder {
  color: var(--color-text-50);
}
input,
textarea:focus {
  outline: none !important;
}
input[type=button] {
  padding: 20px 30px 20px 30px;
  border-radius: 30px;
  font-size: 14px;
  line-height: 14px;
  /* text-transform: uppercase; */
  /* min-width: 120px; */
  font-weight: 500;
  cursor: pointer;
  margin: 4px 0 4px 0;
}
input[type=button].selected,
input[type=button].selected:hover {
  color: var(--color-bg) !important;
  background-color: var(--color-text) !important;
  border: none !important;
  transition: all 0.3s ease-in-out;
}
input.action {
  color: #021d1f;
  background-color: var(--color-action);
  border: none;/* 1px solid var(--color-action); */
  transform: scale(1);
  transition: all 0.1s ease-in-out;
}
input.action:hover {
  color: #021d1f;
  background-color: var(--color-action-50) !important;
  transition: all 0.1s ease-in-out;
  transform: scale(1.05);
}
input.outline {
  color: var(--color-secondary);
  background-color: transparent !important;
  border: none !important;
  transform: scale(1);
  transition: all 0.3s ease-in-out;
}
input.outline:hover {
  color: var(--color-bg);
  /* border: 1px solid var(--color-secondary-0)!important; */
  background-color: var(--color-secondary-20) !important;
  /* transform: scale(1.05); */
}
.inputOutlineHighlight {
  border: 1px solid var(--color-secondary-0) !important;
  background-color: var(--color-secondary-20) !important;
  /* transform: scale(1.05); */
}
#btn-geet-started {
  margin-right: 10px;
}
#btn-learn-more {
  margin-left: 10px;
}

/* SEARCH */

#search-box {
  position: relative;
  /* display: flex; */
  display: none;
  align-items: center;
  justify-content: flex-end;
  height: 100%;
  width: 0px;
}
#search-box.open {
  width: calc(100% - 200px);
}
#search-text {
  background-color: var(--color-black-20);
  display: none;
  position: absolute;
  width: calc(100% - 60px);
  height: calc(100% - 40px);
}
#search-box.open #search-text {
  display: block;
  cursor: text;
}
#search-box.open #search-icon {
  opacity: 0;
  right: -100px;
}
#search-box.open #search-close-icon {
  opacity: 1;
  right: 15px;
}
#search-close-icon {
  position: absolute;
  height: 50%;
  cursor: pointer;
}
#search-icon {
  position: absolute;
  height: 80%;
  cursor: pointer;
}
#search-icon {
  opacity: 1;
  right: 0px;
}
#search-close-icon {
  opacity: 0;
  right: -100px;
}

/* SLIDES */

#slides {
  position: relative;
  height: 100vh;
  /* transform-origin: 50% 0%;
  transform: scale(1); */
  transition: all 1s ease-in-out;
}
.slide {
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 0px;
  overflow: hidden;
}
.slide-container {
  display: flex;
  min-width: 100%;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
.slide.multiple {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: start;
  align-items: center;
  padding: 0px;
}
.scroller {
  height: 300px;
  overflow: scroll;
  scroll-snap-type: y mandatory;
}
.scroller .slide {
  scroll-snap-align: center;
}
.scroller::-webkit-scrollbar {
  display: none;
}
.scroller {
  -ms-overflow-style: none;
  /* IE and Edge */
  scrollbar-width: none;
  /* Firefox */
}
.scroller-x {
  width: 300px;
  overflow-x: scroll;
  scroll-snap-type: x mandatory;
}
.scroller-x .subslide {
  scroll-snap-align: start;
  min-width: 100vw;
  margin-top: -50px;
}
.scroller-x::-webkit-scrollbar {
  display: none;
}
.scroller-x {
  -ms-overflow-style: none;
  /* IE and Edge */
  scrollbar-width: none;
  /* Firefox */
}

/* MODAL */

.modal {
  position: absolute;
  bottom: 0px;
  left: 0;
  width: 100%;
  height: 355px;
  transform: translateY(375px);
  opacity: 1;
  transition: all var(--animation-general-bounce);
}
.modal.show {
  opacity: 1;
  transform: translateY(0px);
}
.modal-background {
  position: absolute;
  top: 0px;
  left: 0px;
  background-color: rgba(0, 0, 0, 0.7);
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
  transform: translateX(-100%);
  transition: opacity 0.3s ease-in, translateX 0s linear, -webkit-backdrop-filter 0.3s linear;
  backdrop-filter: blur(0px);
  -webkit-backdrop-filter: blur(0px);
}
.modal-background.show {
  position: absolute;
  background-color: rgba(0, 0, 0, 0.3);
  /* backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px); */
  width: 100%;
  height: 100%;
  transform: translateX(0%);
  opacity: 1;
}
.modal-panel {
  position: absolute;
  bottom: 0px;
  width: 100%;
  height: 355px;
  background-color: transparent;
  border-radius: 24px 24px 0 0;
  overflow: hidden;
}
.modal-panel-background {
  position: absolute;
  background-color: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  width: 100%;
  height: 100%;
}
.modal-items {
  position: relative;
  margin-top: 20px;
  width: 100%;
}
.modal-item {
  width: 33%;
  height: 100px;
  margin: 15px 0 15px 0;
  overflow: hidden;
  cursor: pointer;
}
.modal-item p {
  color: var(--color-secondary);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 12px;
}
.modal-close {
  position: relative;
  padding: 8px 10px 8px 10px !important;
  background-color: var(--color-primary);
  border-radius: 10px !important;
  border: none;
  margin-bottom: 40px !important;
}

/* DOTS */

#dots {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  overflow: visible;
  width: 10px;
  height: auto;
  right: 10px;
  top: 50%;
}
.dot {
  position: relative;
  width: 6px;
  height: 6px;
  background-color: var(--color-secondary);
  border-radius: 5px;
  margin: 4px 0 4px 0;
  opacity: 0.5;
}

/* DOTS ABOUT */

#dots-about {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  overflow: visible;
  width: auto;
  height: 10px;
  top: 0px;
  left: 50%;
}
.dot-about {
  position: relative;
  width: 4px;
  height: 4px;
  background-color: var(--color-secondary);
  border-radius: 5px;
  margin: 0 15px 0 15px;
  opacity: 0.5;
}
.dots-marker {
  position: absolute;
  bottom: 25px;
  width: 40px;
  z-index: 10;
}
.dots-about-text {
  position: absolute;
  top: -50px;
  font-size: 10px;
  text-transform: uppercase;
}

/* SECTION LEARN MORE */

#learn-more-buttons input[type=button],
#experiences-buttons input[type=button] {
  width: 300px;
}
#introduction p {
  padding: 20px;
  max-width: 60%;
}

/* MOBILE */

@media screen and (max-width: 480px) {
  p {
    font-size: 18px;
  }
  .andy-logo-text {
    width: 385px;
    height: calc(470px * 0.6);
    position: relative;
    transform: scale(0.6);
    margin-top: 1vh;
  }
  .andy-claim {
    top: -90px;
    width: 320px;
    /* height: 470px;  */
    position: absolute;
  }  
  .andy-claim h2 {
    text-transform: uppercase;
    font-size: 20px!important;
    line-height: 28px!important;
  }
  /* input[type=button]{
    padding: 10px 60px 10px 60px;
  } */
  #logo-outline {
    bottom: 0;
  }
  #icon-hamburger {
    bottom: 20px;
  }
  .navigation {
    position: absolute;
    top: 20px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .navigation-content {
    position: fixed;
    top: 20px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border: 1px solid var(--color-text-light);
    background-color: var(--color-text-light);
    border-radius: 50px;
    padding: 5px;
    max-height: 35px;
    overflow: hidden;
  }
  .navigation-content input[type=button] {
    padding: 10px 10px 10px 10px;
    border-radius: 30px;
    font-size: 14px;
    line-height: 14px;
    /* text-transform: uppercase; */
    /* min-width: 120px; */
    font-weight: 500;
    cursor: pointer;
    margin: 4px 0 4px 0;
  }
  input[type=button] {
    padding: 20px 10px 20px 10px;
    border-radius: 30px;
    font-size: 14px;
    line-height: 14px;
    /* text-transform: uppercase; */
    /* min-width: 120px; */
    font-weight: 500;
    cursor: pointer;
    margin: 4px 0 4px 0;
  }
  input[type=button].selected {
    color: var(--color-bg) !important;
    background-color: var(--color-text) !important;
  }
  #btn-get-started {
    margin-right: 0px;
    margin-bottom: 10px;
  }
  #btn-learn-more {
    margin-left: 0px;
  }
  #search-box.open {
    width: calc(100% - 60px);
  }
  .slide-container {
    /* margin-top: -120px; */
  }
  /* Remove the hover override for mobile since we want selected state to work */
  #introduction p {
    max-width: 100%;
    font-size: 14px;
    padding: 20px;
  }
  .code {
    padding: 10px 20px 10px 20px;
    width: 70%;
  }
  [data="subslide-xmedia"] .slide-container,
  [data="subslide-freelance"] .slide-container,
  [data="subslide-armosia"] .slide-container,
  [data="subslide-customergauge"] .slide-container,
  [data="subslide-touchtribe"] .slide-container,
  [data="subslide-starred"] .slide-container,
  [data="subslide-adv99"] .slide-container {
    padding-top: 80px;
  }
  #contact-form {
    width: calc(100vw - 40px) !important;
    max-width: 100vw !important;
    box-sizing: border-box;
    padding: 0 20px;
    margin: 0 auto;
  }
  #contact-form input,
  #contact-form textarea {
    width: 100% !important;
    min-width: 0;
    box-sizing: border-box;
    font-size: 14px;
    padding-top: 20px;
    padding-bottom: 20px;
  }
  .chat-message {
    padding: 4px 12px 4px 12px!important;
    border-radius: 8px!important;
    margin-bottom: 5px!important;
    max-width: 80%!important;
    font-size: 12px!important;
  }
  #chat-container {
    padding-top: 150px!important;
  }
}
@media (orientation: landscape) and (max-width: 960px) {
  #introduction p {
    max-width: 100%;
    font-size: 14px;
    padding: 20px;
  }}

/* DESKTOP ONLY */

@media screen and (min-width: 480px) {
  .andy-logo-text {
    width: 385px;
    height: calc(470px * 1);
    position: relative;
    transform: scale(1);
    margin-top: 20vh;
  }
  .andy-claim {
    top: 0px;
    width: 300px;
    /* height: 470px;  */
    text-transform: uppercase;
    position: absolute;
  }
  .andy-claim h2 {
    text-transform: uppercase;
    font-size: 18px!important;
    line-height: 28px!important;
  }
  #logo-outline {
    top: 0;
  }
  .navigation {
    position: absolute;
    top: 20px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .navigation-content {
    position: fixed;
    top: 20px;
    display: flex;
    flex-direction: row;
    gap: 10px;
    border: 1px solid var(--color-text-light);
    background-color: var(--color-text-light);
    border-radius: 50px;
    padding: 5px;
    overflow: hidden;
  }
  .slide-container {
    margin-top: 0px;
  }
  .modal {
    left: calc(50% - 230px);
    width: 460px;
    height: 355px;
  }
  [data="subslide-xmedia"] .slide-container,
  [data="subslide-freelance"] .slide-container,
  [data="subslide-armosia"] .slide-container,
  [data="subslide-customergauge"] .slide-container,
  [data="subslide-touchtribe"] .slide-container,
  [data="subslide-starred"] .slide-container,
  [data="subslide-adv99"] .slide-container {
    margin: auto;
    max-width: 50%;
    min-width: 50%;
  }}
.row {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}
.column {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

/* CAMERA */

#slides.zoom-out {
  height: 1000vh;
  transform-origin: 50% 0%;
  transform: scale(0.1);
  transition: all 1s ease-in-out;
}
input[type="submit"].disabled,
input[type="submit"]:disabled {
  opacity: 0.5;
  pointer-events: none;
}
/* Remove yellow background from autofilled inputs */

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active,
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover,
textarea:-webkit-autofill:focus,
textarea:-webkit-autofill:active {
  -webkit-box-shadow: none !important;
  -webkit-text-fill-color: var(--color-secondary) !important;
  caret-color: var(--color-secondary) !important;
  transition: background-color 5000s ease-in-out 0s;
}
#gallery {
  scroll-snap-type: x mandatory;
  overflow-x: scroll;
  overflow-y: hidden;
  display: flex;
  justify-content: center;
  width: 100%;
  height: 70%;
  margin-top: 20px;
  /* background-color: red; */
  /* scroll-padding-left: 15vw; */
}
#gallery::-webkit-scrollbar {
  display: none;
}
#gallery .cell {
  margin-left: 10px;
  margin-right: 10px;
  min-width: 300px;
  max-width: 300px;
  max-height: calc(100% - 32px);/* 100%; */
  scroll-snap-align: start;
}
#gallery .cell p {
  flex: 1;
}
#gallery img {
  width: 100%;
  height: auto;
  /* margin-left: 20px; */
  border-radius: 30px;
}