@import url('http://fonts.cdnfonts.com/css/gotham');
@import "./constants.css";

::-webkit-scrollbar {
  background: transparent;
  width: 10px;
  background: var(--white-btn-color);
}

::-webkit-scrollbar-thumb {
  background: var(--gray-color);
}

* {
  padding: 0px;
  margin: 0px;
}

html {
  font-size: 10px;
  scroll-snap-type: y mandatory;
  overflow-y: auto;
  scroll-behavior: smooth;
  overflow: overlay;
}

body {
  font-family: var(--font-family);
  background-color: var(--gray-color);
  color: var(--black-color);
  text-align: center;
 
}

h1 {
  font-size: 42px;
  font-size: 4.2rem;
  font-weight: 500;
}

h2 {
  font-size: 15px;
  font-size: 1.5rem;
  font-weight: 400;
}

p {
  font-size: 15px;
  font-size: 1.5rem;
}

ol {
  list-style-type: none;
}

#nav__indicator {
  border-radius: 10px;
  background-color: var(--tds-pill--blur-color-highlight);
  position: fixed;
  pointer-events: none;
  transition: 500ms cubic-bezier(0.8, 0.01, 0.01, 0.8);
}

.row {
  display: flex;
  flex-direction: row;
}

.link {
  font-weight: 400;
  text-decoration: none;
  color: var(--black-color);
  font-size: 15px;
  font-size: 1.5rem;
}

.link--normal {
  color: var(--black-color-2);
  box-shadow: 0px 1px 0 0 currentColor;
  transition: 300ms var(--a-animation);
}

.link--normal:hover {
  color: var(--black-color-2);
  box-shadow: 0 2px 0 0 currentColor;
}

.link--button {
  font-weight: 400;
  width: 200px;
  font-size: 13px;
  padding: 13px 30px;
  display: block;
  border-radius: 200px;
}

.link--button--transparent {
  width: auto;
  padding: 4px 15px;
  font-weight: 500;
  display: inline;
  font-size: 15px;
}

.link--button--primary {
  color:white;
  background: var(--black-btn-color);
  backdrop-filter: blur(10px);
}

.link--button--secondary {
  font-weight: 500;
  background: var(--white-btn-color);
  backdrop-filter: blur(50px);
}

.txt-align {
  text-align: center;  
}

.txt-align--end {
  text-align: end;
}


.txt-align--start {
  text-align: start;
}

.banner {
  height: var(--banner-size-height-normal);
  display: flex;
  justify-content: center;
  align-items: center;  
}

.banner--light {
  background: var(--banner-color-light);
}

.static-content {
  width: 100%;
  z-index: 2;
  position: fixed;
}

.nav {
  height: var(--banner-size-height-normal);
  color: transparent;
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  align-items: center;
  justify-content: space-between;
  box-sizing: border-box;
  padding: 20px 18px;
  list-style: none;
}

.nav__logo {
  color: var(--black-color);
  width: 120px;
  margin-left: 30px;
}

.nav__link-button {
  padding: 5px 15px;
  border: none;
  font-size: 14px;
  outline: none;
  font-weight: 500;
  color: var(--black-color-2);
  background: transparent;
}

.pictures-slider {
  display: flex;
  flex-direction: column;
  position: relative;
  height: 100vh;

}

.pictures-slider__pic {
  width: 100%;
  height: 100%;
  -webkit-user-drag: none;
  display: block;
  scroll-snap-align: start;
  background-size: cover;
  object-fit: cover;
  image-rendering: optimizeQuality;

}

.heading__desc-wp {
  align-items: center;
  justify-content: center;
}

.heading__title {
  margin: 20px 0px 10px 0;
}

.static-content__opacity-wp {
  transition-duration: 300ms;
}

.order {
  width: 100%;
  bottom: 0;
  position: fixed;
  margin-bottom: 20px;
}

.order__buttons-wp {
  display: flex;
  flex-direction: row;
  justify-content: center;
}

.order__secondary-button {
  margin-left: 25px;
}

.order__arrow-down {
  margin-top: 50px;
  margin-bottom: 20px;
  position: relative;
  text-align: center;
  cursor: pointer;
  animation: bouncearrow 3s infinite cubic-bezier(.14, .75, .2, 1.01);
}

@keyframes bouncearrow {
  0%, 20%, 50%, 80%, 100% {transform: translateY(0);} 
  40% {transform: translateY(10px);} 
  60% {transform: translateY(2px);} 
}