/****************************************
* Typography
****************************************/

h1 {
  font-size: 36px;
}

h2 {
  font-size: 30px;
}

h3 {
  font-size: 24px;
}

h4 {
  font-size: 20px;
}

/****************************************
* Header
****************************************/

header.sticky {
  position: sticky;
  top: 0;
}

header > .d-flex {
  justify-content: center;
  align-items: center;
  gap: 2rem;
  margin: 0 auto;
}

header .nav-toggle {
  display: none;
}

.anchor::before {
  content: '';
  display: block;
  margin: -110px 0 0;
  background-color: transparent;
  height: 110px;
  visibility: hidden;
}

.anchor.full::before {
  margin-top: -182px;
  height: 182px;
}

/****************************************
* Navigation
****************************************/

nav {
  position: unset;
  border-top: none;
  box-shadow: none;
  background-color: transparent;
  width: unset;
  max-width: unset;
  max-height: 100%;
  overflow: unset;
  transition: none;
}

nav ul {
  display: flex;
  flex-direction: row;
  gap: .25rem;
  border: none;
  width: auto;
  padding: 0;
}

nav a,
nav button {
  font-size: 14px;
  cursor: pointer;
  padding: .25rem .5rem;
}

nav button svg {
  transition: none;
}

nav .btn + .btn {
  margin-left: 1rem;
}

nav .menu {
  position: relative;
}

nav .menu button {
}

nav .dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  max-height: unset;
}

nav .dropdown .wrapper {
  border-radius: 15px;
  border: none;
  background-color: #ffffff;
  padding: 1rem;
  text-align: left;
}

nav .dropdown .wrapper::before {
  border-color: transparent transparent #ffffff transparent;
}

nav .menu:hover .dropdown,
nav .menu .dropdown:hover {
  display: block;
}

nav .dropdown a {
  color: #595959;
}

nav .dropdown a:focus,
nav .dropdown a:hover,
nav .dropdown a.active {
  background-color: transparent;
  color: var(--tt-color-1);
}

/****************************************
* Inside banner
****************************************/

.inside-banner {
  position: sticky;
  top: 79px;
  z-index: -1;
}

/****************************************
* Banner curve
****************************************/

.curve {
  top: calc(-41px + (-94 - -41) * (100vw - 768px) / (1800 - 768));
}

.curve svg {
  width: 100%;
  fill: var(--tt-color-1);
}

/****************************************
* Swiper
****************************************/

.swiper-slide {
  width: 33.33%;
}

.swiper-slide h3 {
  bottom: -5px;
  font-size: 30px;
}
