:root {
  --blue: rgb(32 252 255);
  --factor: 1;
}

* {
  box-sizing: border-box;
}
body {
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.range-slider {
  padding-left: 10px;
  padding-right: 10px;
  background-color: #eeeeee;
}
.noUi-target {
  border-radius: 0px;
  border: none;
  box-shadow: none;
  height: 6px;
  border-radius: 3px;
}
.noUi-handle {
  background: white;
  border: 1px solid black;
  border-radius: 50%;
  height: 20px;
  width: 20px;
  cursor: pointer;
}
.noUi-connect {
  background: rgb(0, 0, 0);
}
.noUi-connects {
  background-color: #eeeeee;
  width: 100%;
  border-radius: 3px;
  border-color: rgb(203, 23, 23);
}
.noUi-handle.noUi-handle-upper,
.noUi-handle.noUi-handle-lower {
  background-color: white;
  border: 1px solid black;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  box-shadow: none;
  outline: none;
  right: -10px;
  top: -7px;
}
.noUi-handle.noUi-handle-upper::before,
.noUi-handle.noUi-handle-upper::after,
.noUi-handle.noUi-handle-lower::before,
.noUi-handle.noUi-handle-lower::after {
  content: none;
}
.noUi-tooltip {
  display: block;
  position: absolute;
  border: none;
  border-radius: 0px;
  background: transparent;
  color: black;
  padding: 5px;
  text-align: center;
  white-space: nowrap;
  font-family: IBM Plex Mono, sans-serif;
  font-size: 16px;
  font-weight: 300;
  bottom: -160% !important;
}
.noUi-horizontal.noUi-handle {
  right: -11px;
  top: -3px;
}
/* .photo-wrapper {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center; */

.domfilter-toggle.pressed {
  background-color: black;
  color: white;
}

.domain-cat {
  position: relative;
  overflow: hidden;
  top: 0px;
}

.domain-cat .bg-image {
  width: 110%;
  height: 110%;
  position: absolute;
  top: 0%;
  left: 0%;
  filter: blur(0px);
  transition: filter 750ms cubic-bezier(0.25, 1, 0.5, 1),
  transform 1500ms cubic-bezier(0.25, 1, 0.5, 1);
  will-change: filter, transform;
}
.domain-cat .bg-image::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.5),
    rgba(0, 0, 0, 0)
  );
  pointer-events: none;
}

.back-button-wrapper.is-hidden {
  display: none;
}

@media (hover: hover) {
  .domain-cat:hover .bg-image {
    filter: blur(10px);
    transform: scale(1.1);
  }
}

.search-hero {
  width: 100%;
  height: 100%;
  row-gap: 25px;
  background-color: white;
  flex-direction: column;
  justify-content: flex-end;
  align-self: flex-end;
  align-items: center;
  padding-left: 0px;
  padding-right: 0px;
  display: flex;
}

.search-hero-wrapper {
  height: auto;
  object-fit: cover;
  object-position: 50% 50%;
  background-color: #fff;
  justify-content: center;
  align-items: flex-start;
  padding: 5vw;
  display: flex;
  position: relative;
  margin-top: 50px;
}

.search-heading {
  width: 100%;
  max-width: 1200px;
  color: black;
  justify-content: flex-start;
  margin-top: 0;
  margin-bottom: 0px;
  font-size: 50px;
  font-weight: 400;
  line-height: 1;
  display: flex;
}

.search-heading-wrapper {
  width: 100%;
  max-width: 1200px;
  column-gap: 20px;
  color: black;
  justify-content: flex-start;
  align-items: flex-end;
  margin-left: 20px;
  margin-right: 20px;
  padding-left: 0;
  padding-right: 0;
  font-family: Poppins, sans-serif;
  font-weight: 500;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  row-gap: 5px;
}

.search-numb {
  width: auto;
  max-width: 1200px;
  color: black;
  justify-content: flex-start;
  margin-top: 0;
  margin-bottom: 0px;
  font-size: 50px;
  font-weight: 400;
  line-height: 1;
  display: flex;
}

.search-query {
  width: auto;
  max-width: 1200px;
  opacity: 0.2;
  color: black;
  justify-content: flex-start;
  margin-top: 0;
  margin-bottom: 0px;
  font-size: 50px;
  font-weight: 400;
  line-height: 1;
  display: flex;
}

.search-title {
  column-gap: 15px;
  display: flex;
  align-self: start;
}

.domain-categories {
  height: 22px;
  column-gap: 8px;
  flex-flow: wrap;
  flex: none;
  align-content: flex-start;
  margin-top: 0px;
  display: flex;
  overflow: visible;
}

.domain-category-item {
  column-gap: 8px;
  color: black;
  background-color: white;
  border: 1px solid black;
  border-radius: 10px;
  flex-wrap: nowrap;
  padding: 0 10px;
  font-family: Poppins, sans-serif;
  display: flex;
  overflow: visible;
}

.domain-category-item.is-active {
  color: #4d00ff;
  border-color: #4d00ff;
}

.footer {
  width: 100%;
  height: auto;
  background-color: black;
  padding-left: 25px;
  padding-right: 25px;
}

.menu-bg {
  border-width: .75px;
}

header {
  top: 1vw;
}

header[type="white"] button {
  color: white;
}



.footer-content {
  max-width: 100%;
  row-gap: 10px;
  color: black;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  display: flex;
}

section {
  position: fixed;
  width: 100vw;
  height: 100vh;
  display: flex;
  z-index: 100000;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  padding: 10vh 1vw;
}

.intro {
  width: 100%;
  color: black;
  font-family: 'Poppins';
  font-weight: 400;
  font-size: 75px;
  position: relative;
  line-height: 125%;
  text-transform: none;
  align-self: center;
  text-align: center;
  width: 80%
}

header {
  z-index: 10000;
  width: 100%;
  height: auto;
  justify-content: center;
  align-self: center;
  margin-left: 0;
  margin-right: 0;
  padding-left: 0;
  padding-right: 0;
  display: flex;
  position: relative;
}

.hero-section {
  width: 100%;
  min-height: 100vh;
  column-gap: 40px;
  flex-direction: column;
  justify-content: top;
  align-items: center;
  margin-left: 0;
  margin-right: 0;
  margin-top: 90px;
  display: flex;
}

.search-section {
  width: 100%;
  min-height: 100vh;
  column-gap: 40px;
  flex-direction: column;
  justify-content: top;
  align-items: center;
  display: flex;
  padding: 5vw;
}

.domain-name {
  color: black;
  margin-top: 0;
  margin-bottom: 0;
  font-family: Poppins, sans-serif;
  font-size: 35px;
  font-weight: 200;
  line-height: 125%;
  grid-area: name;
  overflow: hidden;
  white-space: nowrap;
  position: relative;
}

.domain-name.is-white {
  opacity: 1;
  color: white;
  font-family: Poppins, sans-serif;
  font-weight: 200;
}

.text {
  color: black;
}

.text.is-white {
  opacity: 0.5;
  color: white;
  font-family: Poppins, sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 20px;
  letter-spacing: .5px;
}

.body {
  flex-direction: column;
  display: flex;
  padding-top: 0px;
}

.text-block {
  font-family: Poppins, sans-serif;
  font-size: 14px;
  font-weight: 300;
}

.empty-state {
  width: 100%;
  background-color: white;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-left: 0;
  padding-right: 0;
  display: flex;
}

.heading {
  color: black;
  font-family: Poppins, sans-serif;
  font-size: 30px;
  font-weight: 400;
  display: flex;
}

.collection-categories {
  width: 100%;
  flex-direction: column;
  margin-top: 50px;
  margin-bottom: 50px;
  margin-right: 0;
  padding-right: 0;
  display: flex;
  position: relative;
}

.button-regular.w--current {
  background-color: #1aabff;
  border-radius: 6px;
  margin-top: 25px;
  padding-bottom: 9px;
  font-family: Poppins, sans-serif;
  font-weight: 400;
}

.categories {
  width: 100%;
  min-height: 100px;
  column-gap: 1px;
  row-gap: 1px;
  border-radius: 0;
  flex-direction: column;
  grid-template-rows: auto auto auto;
  grid-template-columns: repeat(auto-fill, minmax(calc((100vw / 3) - 3px), 1fr));
  grid-auto-columns: 1fr;
  margin-bottom: 0;
  display: grid;
  overflow: visible;
  grid-auto-flow: dense
}

.collection-list {
  width: 100%;
  column-gap: 25px;
  row-gap: 25px;
  flex-direction: column;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  grid-auto-flow: row;
  align-content: start;
  justify-content: flex-start;
  align-items: flex-start;
  justify-items: start;
  margin-left: 0;
  margin-right: 0;
  display: grid;
  position: static;
}


.domain-cat {
  height: auto;
  min-height: 400px;
  background-color: white;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  margin-bottom: 0;
  padding: 1.5vw 2vw;
  display: flex;
  position: relative;
  overflow: hidden;
  gap: 20px
}

.domain-cat[var="large"] {
  height: 801px;
  grid-column: span 2;
  grid-row: span 2
}

/* .domain-cat[var="large"] .cat-name {
  font-size: 5vw;
  font-weight: 100;
} */

.domain-cat[var="wide"] {
  height: 400px;
  grid-column: span 2;
  grid-row: span 1
}

.domain-cat[var="tall"] {
  height: 801px;
  grid-column: span 1;
  grid-row: span 2
}

.domain-cat[var="base"] {
  height: 400px;
  grid-column: span 1;
  grid-row: span 1
}

h2 {
  font-weight: 200;
}

.cat-name {
  width: 100%;
  color: white;
  text-transform: capitalize;
  white-space: nowrap;
  margin-bottom: 0;
  margin-left: 0;
  font-family: Poppins, sans-serif;
  font-size: 50px;
  font-weight: 200;
  line-height: 115%;
  position: relative;
  top: auto;
  bottom: 0%;
  left: 0%;
  right: auto;
}

.img-wrapper {
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
  overflow: hidden;
}

.group-background {
  width: 100%;
  max-width: 150%;
  object-fit: cover;
  object-position: 50% 50%;
  display: block;
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.nested-collection {
  z-index: 99;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(
    black,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0.2) 50%,
    rgba(0, 0, 0, 0.5)
  );
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.name-div {
  z-index: 50;
  width: auto;
  row-gap: 10px;
  cursor: pointer;
  flex-direction: column;
  align-self: flex-start;
  padding-right: 25px;
  display: flex;
  position: relative;
  top: auto;
  right: 0%;
}

.link-icon {
  z-index: 101;
  width: 32px;
  filter: invert();
  position: absolute;
  top: 10px;
  bottom: auto;
  left: auto;
  right: 10px;
}

.photo-section {
  height: auto;
  max-width: none;
  object-fit: cover;
  flex-direction: column;
  justify-content: center;
  padding-left: 15px;
  padding-right: 15px;
  display: flex;
  position: relative;
  overflow: hidden;
}

.domains-block {
  width: 100%;
  max-width: 1200px;
  align-self: flex-start;
  padding-top: 0;
  padding-bottom: 0;
}

.domitem {
  row-gap: 0px;
  color: black;
  cursor: pointer;
  border: 0 solid black;
  border-bottom-width: 1px;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 0;
  display: flex;
  position: relative;
}

.domitem:hover {
  background-color: rgba(0, 0, 0, 0);
}

.domlist-list {
  row-gap: 0px;
  border-top: 0 solid black;
  border-bottom: 1px solid black;
  flex-direction: column;
  display: flex;
}

.domain-parameters {
  height: auto;
  gap: 8px;
  flex-flow: wrap;
  flex: none;
  align-content: flex-start;
  margin-top: 15px;
  display: flex;
  overflow: visible;
}

.domitem-year-wrapper,
.domitem-letter-wrapper,
.domitem-tld-wrapper,
.domitem-registrar-wrapper,
.domain-category-item {
  column-gap: 8px;
  color: black;
  background-color: rgba(0, 0, 0, 0);
  border: 1px solid black;
  border-radius: 4px;
  flex-wrap: nowrap;
  padding: 0 10px;
  font-family: Poppins, sans-serif;
  display: flex;
  overflow: visible;
  position: relative;
}


.domitem-letters,
.domitem-text,
.domitem-year,
.tld,
.domitem-registrar,
.domitem-category {
  color: inherit;
  font-family: IBM Plex Mono, sans-serif;
  font-weight: 400;
}

.link-block {
  z-index: 1000;
  width: 100%;
  height: 100%;
  cursor: pointer;
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.photo-block {
  width: 100%;
  height: 40vh;
  max-width: 1200px;
  object-fit: cover;
  flex-direction: column;
  justify-content: space-between;
  align-self: center;
  align-items: flex-start;
  padding-top: 25px;
  padding-bottom: 0;
  display: flex;
  position: relative;
  overflow: hidden;
}

.text-overlay {
  opacity: 0.25;
  color: black;
  text-transform: uppercase;
  -webkit-text-fill-color: transparent;
  background-color: black;
  -webkit-background-clip: text;
  background-clip: text;
  font-family: Poppins, sans-serif;
  font-size: 125px;
  font-weight: 800;
  line-height: 125px;
  display: block;
  position: absolute;
}

.navbar {
  width: 600px;
  max-width: none;
  /*  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(15px);
  background-color: rgba(255, 255, 255, 0.4); */
  /* border: 1px solid black; */
  border-bottom-width: 1px;
  flex-direction: column;
  justify-content: flex-start;
  align-self: flex-start;
  padding: 0px 0px;
  display: flex;
  position: absolute;
  z-index: 10000;
  top: -0px;
  align-items: flex-end;
  grid-row-gap: 0px;
  opacity: 0;
}

.navbar-container {
  width: 100%;
  max-width: 1200px;
  min-width: 100%;
  flex: 0 auto;
  justify-content: space-between;
  align-self: center;
  align-items: center;
  margin-left: 0;
  margin-right: 0;
  display: flex;
  border-bottom-width: 1px;
  padding: 0px 25px;
  margin-top: 10px;
}

.navbar-menu {
  width: 100%;
  border-top: 0px;
  margin-bottom: 10px;
  margin-top: 0px;
  display: flex;
  flex-direction: column;
  align-items: left;
  justify-content: flex-start;
  height: auto;
  overflow: hidden;
  grid-row-gap: 0px;
  padding: 0px 25px 0px;
  transform-origin: top right;
  position: relative;
  top: 0px;
}

.logo-div {
  text-decoration: none;
  position: relative;
}

.logo-text {
  color: black;
  margin-top: 0;
  margin-bottom: 0;
  font-family: Poppins, sans-serif;
  font-size: 24px;
  font-weight: 300;
  text-decoration: none;
}

.burger-menu {
  width: 32px;
  height: 32px;
  color: black;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
}

.ham-top {
  width: 20px;
  height: 1px;
  background-color: black;
}

.ham-mid {
  width: 20px;
  height: 1px;
  background-color: black;
  margin-top: 5px;
  margin-bottom: 5px;
  padding-top: 0;
  padding-bottom: 0;
}

.ham-bot {
  width: 20px;
  height: 1px;
  background-color: black;
}

.link-block-2 {
  z-index: 99;
  column-gap: 10px;
  row-gap: 10px;
  justify-content: flex-start;
  padding: 5px 20px;
  text-decoration: none;
  display: flex;
  position: relative;
}

.collection-list-3 {
  column-gap: 5px;
  row-gap: 0px;
  flex-direction: column;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  margin: -1px 5px;
  display: grid;
}

.nav-link {
  color: black;
  margin-top: 0;
  margin-bottom: 0;
  font-family: Poppins, sans-serif;
  font-size: 20px;
  font-weight: 300;
  line-height: 35px;
  position: relative;
}

.logo-wrapper {
  width: 50%;
  column-gap: 12px;
  align-items: center;
  display: flex;
}

.burger-wrapper {
  width: 50%;
  column-gap: 10px;
  justify-content: flex-end;
  align-items: center;
  display: flex;
  margin-right: -4px
}

.menu-button {
  background-color: rgba(0, 0, 0, 0);
  padding: 0;
  cursor: pointer;
}

.menu-button.w--open {
  background-color: white;
}

.collection-list-wrapper {
  width: 100%;
  max-width: none;
  margin-top: 20px;
  margin-bottom: 20px;
  font-size: 16px;
}

.collection-item-3 {
  position: relative;
  overflow: visible;
}

.link-arrow {
  line-height: 16px;
  display: block;
}

.cat-names {
  width: 100%;
  flex-direction: column;
  display: flex;
  position: relative;
}

.cat-name-large {
  color: black;
  text-transform: uppercase;
  -webkit-text-fill-color: transparent;
  background-color: white;
  /* background-image: url("https://d3e54v103j8qbb.cloudfront.net/img/background-image.svg"); */
  background-position: 50%;
  background-size: 100%;
  -webkit-background-clip: text;
  background-clip: text;
  font-family: Poppins, sans-serif;
  font-size: 125px;
  font-weight: 800;
  line-height: 125px;
}

.back-button-wrapper {
  width: 100%;
  max-width: 1200px;
  justify-content: flex-start;
  align-items: center;
  margin: 75px 20px 0px;
  padding: 0;
  display: flex;
}

.back-button {
  column-gap: 0px;
  color: black;
  cursor: pointer;
  background-color: rgba(0, 0, 0, 0);
  border: 1.5px solid white;
  border-radius: 25px;
  align-items: center;
  margin-top: 0;
  padding: 8px 11px;
  font-family: Poppins, sans-serif;
  font-size: 14px;
  text-decoration: none;
  transition: none;
  display: flex;
}

.back-button:hover {
  background-color: rgba(0, 0, 0, 0);
  padding-top: 8px;
  padding-bottom: 8px;
}

.back-button.is-black {
  border-color: black;
}

.back-icon {
  height: 25px;
  filter: invert();
  line-height: 18px;
  transform: rotate(180deg);
}

.back-icon.is-black {
  filter: none;
}

.back-label {
  width: auto;
  color: white;
  margin-left: 0;
  padding-left: 8px;
  padding-right: 5px;
  font-size: 16px;
  font-weight: 400;
  display: flex;
  overflow: hidden;
}

.back-label.is-black {
  color: black;
}

.domitem-bottom {
  width: 100%;
  height: auto;
  row-gap: 10px;
  flex-flow: column wrap;
  align-content: flex-start;
  justify-content: flex-start;
  padding-top: 0;
  display: flex;
  overflow: visible;
  grid-area: properties;
  flex-wrap: nowrap;
  position: relative;
}

.domain-content {
  width: 100%;
  height: auto;
  row-gap: 8px;
  flex-flow: column;
  align-content: flex-start;
  justify-content: flex-end;
  padding-top: 0;
  display: flex;
  overflow: visible;
  height: fit-content;
  flex-shrink: 0
}

.button-text {
  color: black;
  text-transform: capitalize;
  padding: 10px 0;
  font-family: Poppins, sans-serif;
  font-size: 16px;
  font-weight: 300;
}

button {
  background-color: black;
  text-decoration-color: none;
  color: white;
  -webkit-appearance: none;
  -moz-appearance: none;
  text-decoration: none;
  display: flex;
  position: relative;
  border-radius: 5px;
  padding: 8px 20px;
  font-weight: 300;
  font-family: 'IBM Plex Mono';
  font-size: 16px;
  letter-spacing: 2px;
  text-transform: uppercase;
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
}

.domitem-template button {
  /* color: rgb(255, 221, 120) */
  color: var(--blue);
}

.domitem-template .domitem-button-wrapper {
  overflow: visible
}

header button .button-text {
  color: black;
}

header button {
  border: 1px solid transparent;
  background-color: transparent;
  color: black;
  padding: 0
}

.domitem-button-wrapper {
  width: 100%;
  justify-content: flex-start;
}

.domitem-template[state="open"] .domitem-button-wrapper {
  margin-top: 20px
}

.domitem-template[state="closed"] .domitem-button-wrapper {
  margin-top: 0;
  opacity: 0
}

:hover .button-text {
  transition: all .25s ease
}

.domlist-count {
  opacity: 0.25;
  color: black;
  margin: 0;
  font-family: Poppins, sans-serif;
  font-size: 32px;
  font-weight: 300;
  line-height: 35px;
}

.form-block {
  display: none;
}

.domain-counter {
  column-gap: 10px;
  align-items: center;
  margin-top: 0;
  margin-bottom: 13px;
  margin-left: 0;
  display: flex;
}

.domlist-caption {
  opacity: 0.25;
  color: black;
  margin: 0;
  font-family: Poppins, sans-serif;
  font-size: 32px;
  font-weight: 300;
  line-height: 35px;
}

.div-block-3 {
  column-gap: 25px;
  align-items: flex-end;
  display: flex;
  position: relative;
  top: 0;
}

.text-block-6 {
  font-family: IBM Plex Mono, sans-serif;
}

.search-icon {
  z-index: 400;
  margin-left: 0px;
  margin-right: 0px;
  position: relative;
}

.search-wrapper {
  height: 30px;
  /* background-color: #f94ef9; */
  border: 0 solid #ff3665;
  display: flex;
  border: 0px solid black;
  border-radius: 0px;
  overflow: hidden;
  padding-top: 0px;
}

.search-module {
  width: 100%;
  column-gap: 0px;
  align-self: center;
  align-items: center;
  margin-top: 5px;
  display: flex;
}

.search-input {
  color: black;
  font-size: 15px;
  border: 1px solid transparent;
  border-radius: 0;
  align-self: center;
  justify-items: start;
  margin-top: 0;
  margin-bottom: 0;
  font-family: IBM Plex Mono;
  font-weight: 300;
  display: block;
  width: 100%;
  height: 40px;
  padding: 0px 0px 0px 0px;
  line-height: 1.5;
  background-color: rgba(255, 255, 255, 0);
  outline: none;
}

.search-input.white {
  color: rgb(255, 255, 255);
}

.search-input:focus {
  border-color: none;
}

.search-input:focus-visible {
  border-color: transparent;
  outline: none;
}

.search-input[data-wf-focus-visible] {
  border-color: transparent;
}

.search-input::-ms-input-placeholder {
  color: rgba(119, 27, 27, 0.5);
}

.search-input::placeholder {
  color: rgba(0, 0, 0, 0.25);
}

.search-input.white::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.search-button {
  /* width: 200px; */
  background-color: rgba(255, 255, 255, 0);
  align-self: center;
  font-family: 'IBM Plex Mono';
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 16px;
  font-weight: 300;
  /* padding: 8px 15px !important; */
  display: flex;
  width: auto;
  padding: 0;
  color: black;
  border: 0;
  line-height: inherit;
  text-decoration: none;
  cursor: pointer;
  border-radius: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.search-div {
  z-index: 1000;
  cursor: pointer;
  display: flex;
  position: relative;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}

.search {
  display: none;
}

.search-result-list {
  row-gap: 0px;
  border-bottom: 0 solid black;
  flex-direction: column;
  display: flex;
}

.search-result-item {
  row-gap: 15px;
  border-bottom: 1px solid black;
  flex-direction: column;
  padding: 30px 5px;
  display: flex;
}

.search-results {
  width: 100%;
  max-width: none;
  min-height: 100vh;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  margin-top: 0;
  margin-bottom: 0;
  padding-top: 50px;
  padding-bottom: 50px;
  display: flex;
  position: relative;
}

.search-results-wrapper {
  width: 100%;
  max-width: 1200px;
  flex-direction: column;
  align-self: center;
  align-items: flex-start;
  padding-left: 25px;
  padding-right: 25px;
  display: flex;
  position: relative;
}

.search-result-wrapper {
  width: 100%;
  max-width: 1200px;
}

.properties-content {
  border: 1px solid black;
  border-radius: 20px;
  align-self: flex-start;
  padding: 3px 10px;
  display: flex;
  position: relative;
}

footer {
  width: auto;
  height: auto;
  row-gap: 10px;
  flex-direction: column;
  justify-content: flex-end;
  display: flex;
  padding: 5vw;
}

footer .text {
  font-family: 'Poppins';
  font-size: 15px;
}

.section {
  width: 100%;
  height: 100vh;
  justify-content: center;
  display: flex;
}

.block {
  width: 100%;
  height: auto;
  max-width: 1200px;
  row-gap: 20px;
  color: black;
  flex-direction: column;
  justify-content: flex-start;
  align-self: flex-start;
  align-items: flex-start;
  padding-top: 75px;
  padding-bottom: 50px;
  display: flex;
  position: relative;
}

.heading-2 {
  align-self: flex-start;
  margin-top: 0;
  margin-bottom: 0;
  font-family: Poppins, sans-serif;
  font-size: 75px;
  font-weight: 300;
  line-height: 75px;
}

.text-block-10 {
  font-family: IBM Plex Mono, sans-serif;
  font-size: 25px;
  font-weight: 300;
  line-height: 30px;
}

.registered-in {
  column-gap: 15px;
  border: 1px solid black;
  border-radius: 20px;
  padding: 5px 10px;
  font-family: IBM Plex Mono, sans-serif;
  display: flex;
}

.properties-wrapper {
  column-gap: 5px;
  row-gap: 5px;
  flex-wrap: wrap;
  display: flex;
}

.text-block-11 {
  color: black;
  font-family: Poppins, sans-serif;
}

.domain-table {
  width: 100%;
  column-gap: 0px;
  row-gap: 0px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 0.25fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.div-block-4 {
  z-index: 1000;
  background-color: #ff3131;
  position: relative;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.domitem-template {
  width: 100%;
  height: 100%;
  column-gap: 16px;
  row-gap: 0px;
  cursor: pointer;
  border: 1px solid transparent;
  display: flex;
  flex-flow: column nowrap;
  justify-content: space-between;
  margin-top: -1px;
  transition: border .15s ease;
  border-radius: 5px;
}

.domitem-template:hover {
  border: 1px solid rgb(227, 227, 227);
  transition: border .15s ease;
}

.domitem-template[state="closed"] {
  border: 1px solid transparent;
  background-color: white;
  transition: background-color .3s ease, padding .3s cubic-bezier(0,.25,.4,1);
  padding: 1vw 2vw
}

.domitem-template[state="open"] {
  border: 1px solid transparent;
  background-color: var(--blue);
  transition: background-color .3s ease, padding .3s cubic-bezier(0,.25,.4,1);
  padding: 3vw 3vw
}

.counter, .counter-text {
  z-index: 1000;
  color: white;
  background-color: transparent;
  font-family: Poppins, sans-serif;
  font-weight: 400;
  line-height: 100%;
  position: relative;
  top: 0;
  bottom: auto;
  left: 0;
  right: auto;
}

.domcount {
  z-index: 10;
  column-gap: 10px;
  border: 1px solid white;
  border-radius: 6px;
  justify-content: flex-start;
  align-self: flex-start;
  padding: 5px 10px;
  display: flex;
  position: absolute;
  bottom: 2.25vw;
  left: 2vw;
  right: auto;
  flex-shrink: 0;
  opacity: 0
}

.domain-cat .name-div {
  bottom: 0;
  transition: bottom 0.5s ease;
}

.domain-cat .domcount {
  transition: opacity 0.5s ease;
}

.domain-cat[state="inactive"] .cat-name {
  bottom: 0px;
  transition: bottom .3s cubic-bezier(.25,0,.5,1)
}

.domain-cat[state="inactive"] .domcount {
  opacity: 0;
  bottom: 2.75vw;
  transition: bottom .3s cubic-bezier(.25,0,.5,1), opacity .3s cubic-bezier(0,.25,.4,1)
}

.domain-cat[state="active"] .cat-name {
  bottom: 3vw;
  transition: bottom .3s cubic-bezier(.25,0,.5,1)
}

.domain-cat[state="active"] .domcount {
  opacity: 1;
  bottom: 2vw;
  transition: bottom .3s cubic-bezier(.25,0,.5,1), opacity .3s cubic-bezier(.6,0,.5,1)
}

.promo {
  color: inherit;
  border: 1px solid black;
  letter-spacing: .5px;
  padding: 1px 8px 2.5px;
  border-radius: 8px;
  font-weight: inherit;
  cursor: pointer;
  margin-left: 2px;
  user-select: none;
  -webkit-user-select: none;
  white-space: nowrap;
  flex-wrap: nowrap;
  font-size: inherit
  }
  
  .promo:hover {
    background-color: rgba(0, 0, 0, 1 );
    color: white;
  }

  .promo::after {
    content: url("../img/promo.svg");
    height: 8px;
    margin-left: 3px;
    display: inline-block;
    vertical-align: center;
  }

  .promo:hover::after {
    filter: invert(1);
  }

@keyframes bounce {
  0% {
    opacity: 0;
  }

  50% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

.placeholder {
  height: auto;
  min-height: 400px;
  background-color: #f7f7f7;
  margin-bottom: 0;
  opacity: 0;
}

.domains-block  .placeholder {
    height: 40px;
    background-color: #eee;
    margin-top: 0vw;
    margin-bottom: 3vw;
    min-height: unset;
    width: 100%
}

.template-container {
  display: none;
}

.domitem-wrapper {
  display: none;
}

.photo-wrapper {
  height: 60vh;
  z-index: 100;
  object-fit: cover;
  object-position: 50% 50%;
  background-color: #eee;
  justify-content: center;
  align-items: flex-end;
  padding-left: 0;
  padding-right: 0;
  display: flex;
  position: relative;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}

.bg-heading-wrapper {
  width: 100%;
  max-width: 1200px;
  color: black;
  justify-content: center;
  align-items: flex-end;
  margin-left: 20px;
  margin-right: 20px;
  padding-left: 0;
  padding-right: 0;
  font-family: Poppins, sans-serif;
  font-weight: 500;
  display: flex;
}

.bg-heading {
  width: 100%;
  max-width: 1200px;
  color: white;
  justify-content: flex-start;
  margin-top: 0;
  margin-bottom: 25px;
  font-size: 100px;
  font-weight: 200;
  line-height: 1.2;
  display: flex;
}

.bg-heading-shadow {
  width: 100%;
  height: 100%;
  row-gap: 25px;
  background-image: linear-gradient(rgba(0, 0, 0, 0.25), rgba(0, 0, 0, 0.5));
  flex-direction: column;
  justify-content: flex-end;
  align-self: flex-end;
  align-items: center;
  padding-left: 20px;
  padding-right: 20px;
  display: flex;
}

.section-2 {
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  padding-left: 20px;
  padding-right: 20px;
  display: flex;
  grid-row-gap: 50px;
}

.domain-wrapper {
  display: flex;
  width: 100%;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  max-width: 1200px;
  overflow: scroll;
}

.domain-cont {
  width: 50%;
  max-width: 1200px;
  column-gap: 0px;
  row-gap: 25px;
  flex-direction: column;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  align-content: start;
  align-self: flex-start;
  justify-items: start;
  padding-top: 0;
  padding-bottom: 0px;
  display: flex;
}

.dompage-name {
  color: black;
  margin-top: 0;
  margin-bottom: 0;
  line-height: 150%;
  font-family: Poppins, sans-serif;
  font-size: 4vw;
  font-weight: 200;
  overflow: scroll;
  align-self: start;
}

.dompage-letters,
.dompage-tld,
.dompage-registrar,
.dompage-year,
.dompage-cats {
  color: black;
  font-family: IBM Plex Mono, sans-serif;
  font-size: 16px;
  font-weight: 300;
  text-align: end;
}

.dompage-parameters {
  column-gap: 10px;
  row-gap: 10px;
  flex-flow: column wrap;
  padding-top: 10px;
  padding-bottom: 10px;
  display: flex;
  min-width: max-content;
}

.dompage-sections {
  width: 100%;
  max-width: 1200px;
  justify-content: space-between;
  align-items: center;
  padding-left: 0;
  padding-right: 0;
  display: flex;
  align-items: flex-end;
}

.dompage-prop-text {
  color: black;
  font-family: IBM Plex Mono, sans-serif;
  font-size: 16px;
  font-weight: 300;
}

.inquire-form {
  width: 40%;
  position: relative;
  display: flex;
  flex-direction: column;
  grid-row-gap: 25px;
}

.submit-button {
  width: 100%;
  background-color: black;
  font-family: Poppins, sans-serif;
  font-size: 16px;
  display: inline-block;
  padding: 9px 15px;
  margin-top: 5px;
  color: white;
  border: 0;
  line-height: inherit;
  text-decoration: none;
  cursor: pointer;
  border-radius: 0;
}

.form-input {
  color: black;
  border: 1px solid transparent;
  font-family: IBM Plex Mono;
  font-size: 16px;
  font-weight: 300;
  display: block;
  width: 100%;
  height: 40px;
  padding: 8px 15px;
  margin-bottom: -1px;
  line-height: 1.5;
  background-color: #ffffff;
  -webkit-appearance: none;
  -moz-appearance: none;
  border-radius: 0px;
  z-index: 1000;
}

.form-input:hover {
  border-color: transparent;
}

.form-input:focus {
  border: 1px solid transparent;
  z-index: 10000;
  outline: 0;
}

.form-input:focus-visible {
  outline-color: transparent;
  z-index: 10000;
}

.inquire-heading {
  color: black;
  margin-top: 13px;
  margin-left: 0;
  font-family: Poppins, sans-serif;
  font-size: 30px;
  font-weight: 300;
}

.inquire-subheading {
  color: black;
  -webkit-text-stroke-color: black;
  font-family: Poppins, sans-serif;
  font-size: 14px;
  font-weight: 300;
  line-height: 20px;
  display: none;
}

.dom-inquire-form {
  color: #00d188;
  margin-top: 25px;
  padding-top: 5px;
  font-family: Poppins, sans-serif;
  font-weight: 300;
  margin: 0 0 15px;
  border: 1px solid black;
}

.domfliters {
  width: 100%;
  max-width: 400px;
  row-gap: 50px;
  flex-direction: column;
  align-items: flex-start;
  display: flex;
}

.domfilter-heading {
  color: black;
  margin-top: 0;
  margin-bottom: 25px;
  font-family: Poppins, sans-serif;
  font-weight: 400;
}

.domfilter-category-wrapper, .domfilter-registrar-wrapper {
  column-gap: 10px;
  row-gap: 10px;
  flex-wrap: wrap;
  align-content: flex-start;
  margin-right: 0;
  display: flex;
}




.category-toggle, .registrar-toggle, .tld-toggle {
  color: black;
  cursor: pointer;
  border: 1px solid transparent;
  background-color: #f4f4f4;
  margin-right: 0;
  padding: 5px 10px;
  font-family: IBM Plex Mono, sans-serif;
  font-size: 16px;
  font-weight: 300;
  display: flex;
  border-radius: 4px
}


.category-toggle.template,
.registrar-toggle.template,
.tld-toggle.template {
  color: black;
}

.category-toggle.is-active,
.registrar-toggle.is-active,
.tld-toggle.is-active {
  color: white;
  -webkit-text-stroke-width: 0px;
  -webkit-text-stroke-color: #ff3665;
  cursor: pointer;
  background-color: black;
  transition: background-color 0.2s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.category-toggle.active,
.registrar-toggle.active,
.tld-toggle.active {
  color: white;
  background-color: black;
  margin-right: 0;
}

.domains-section {
  width: 100%;
  max-width: 1200px;
  column-gap: 100px;
  flex: 1;
  justify-content: space-between;
  display: flex;
}

.domfilter-toggle-hide {
  display: none;
}

.dompage-prop-wrapper,
.dompage-registrar-wrapper,
.dompage-year-wrapper {
  column-gap: 10px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  border-bottom: 1px dotted black;
  padding-bottom: 5px;
  column-gap: 10px;
}

.domitem-category {
  font-family: IBM Plex Mono, sans-serif;
}

.back-wrapper {
  width: 0;
  padding-left: 0;
  display: flex;
  overflow: hidden;
}

.back-wrapper.is-black {
  color: black;
}

.back-space {
  width: 10px;
  display: flex;
}

.bg-image {
  z-index: 1;
  width: 110%;
  height: 110%;
  cursor: pointer;
  object-fit: cover;
  object-position: 0% 50%;
  /* background-image: url("https://d3e54v103j8qbb.cloudfront.net/img/background-image.svg"); */
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: scroll;
  flex: none;
  justify-content: center;
  align-self: flex-start;
  align-items: center;
  margin-top: 0;
  display: flex;
  position: absolute;
  top: -5%;
  bottom: 0%;
  left: -5%;
  right: 0%;
  overflow: hidden;
}

.arrow {
  filter: invert();
  position: absolute;
  top: 20px;
  bottom: auto;
  left: auto;
  right: 20px;
}

.bg-wrapper {
  z-index: 1;
  filter: brightness(90%);
  object-fit: none;
  justify-content: center;
  align-self: center;
  align-items: center;
  display: flex;
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
  overflow: hidden;
}

.domfilter-tld-wrapper {
  column-gap: 10px;
  row-gap: 10px;
  flex-wrap: wrap;
  align-content: flex-start;
  margin-right: 0;
  display: flex;
}

.html-background {
  background-color: #ce6868;
}

.registrar-toggle-copy {
  color: black;
  cursor: pointer;
  border: 1px solid black;
  padding: 5px 10px;
  font-family: IBM Plex Mono, sans-serif;
  font-size: 16px;
  font-weight: 300;
  display: flex;
}

.registrar-toggle-copy:active {
  color: white;
  background-color: black;
}

.registrar-toggle-copy.template {
  color: black;
}

.registrar-toggle-copy.is-active {
  color: white;
  -webkit-text-stroke-width: 0px;
  -webkit-text-stroke-color: #ff3665;
  cursor: pointer;
  background-color: black;
  transition: background-color 0.2s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.registrar-toggle-copy.active {
  color: white;
  background-color: black;
}

.domitem-counter {
  column-gap: 10px;
  width: 100%;
  color: #999;
  font-family: IBM Plex Mono, sans-serif;
  font-weight: 300;
  display: flex;
}

.success-message {
  background-color: rgba(0, 209, 136, 0.2);
  border: 0 solid #00d188;
  padding-top: 10px;
  padding-bottom: 10px;
  display: none;
  margin-top: 10px;
  padding-left: 15px;
  padding-right: 15px;
  text-align: center;
  position: absolute;
  font-family: Poppins;
}

.text-block-12 {
  opacity: 0.75;
  color: #ff3665;
  padding-left: 0;
  padding-right: 0;
  font-size: 12px;
}

.error-message {
  background-color: rgba(255, 54, 101, 0.15);
  padding: 15px 20px;
  display: none;
  margin-top: 10px;
  padding: 10px;
  text-align: center;
}

.text-block-13 {
  opacity: 1;
  font-size: 14px;
}

.form-input:hover {
  border-color: transparent;
}

#name {
  color: #aaa;
  cursor: not-allowed;
  background-color: #f0f0f0;
  display: none;
}

.form-input #name::placeholder {
  color: rgb(208, 208, 208);
}

.domfilter-leng {
  width: 100%;
}

.range-slider {
  width: 100%;
  column-gap: 10px;
  row-gap: 10px;
  flex-wrap: wrap;
  align-content: flex-start;
  margin-top: 5px;
  margin-right: 0;
  display: block;
  position: relative;
}

.noui-target {
  width: 100%;
  height: 18px;
  background-color: #eee;
  border-radius: 10px;
  padding-top: 4px;
  display: none;
  position: relative;
}

.noui-base {
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}

.noui-connects {
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
}

.noui-connect {
  width: auto;
  height: 100%;
  background-color: #eee;
  border: 1px solid black;
  border-radius: 2px;
  position: absolute;
}

.noui-origin {
  width: 0;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.noui-origin.right {
  left: 130px;
}

.noui-handle {
  width: 20px;
  height: 20px;
  background-color: white;
  border: 1px solid black;
  border-radius: 50%;
  position: absolute;
  top: -1px;
  left: -10px;
}

.noui-tooltip {
  min-width: 20px;
  color: white;
  text-align: center;
  background-color: black;
  border-radius: 0;
  padding: 2px 7px;
  position: absolute;
  top: 25px;
  left: -6px;
}

.noui-touch-area {
  width: 20px;
  height: 20px;
  position: absolute;
  top: -1px;
  left: -10px;
}

.tooltip-text {
  font-family: IBM Plex Mono, sans-serif;
  font-weight: 300;
}

.no-results-message {
  height: 100px;
  background-color: white;
  border: 1px dashed black;
  justify-content: center;
  align-items: center;
  margin-bottom: 15px;
  display: none;
}

.no-res-message {
  width: 100%;
  color: black;
  text-align: center;
  justify-content: center;
  align-self: center;
  align-items: center;
  padding-left: 25px;
  padding-right: 25px;
  font-family: IBM Plex Mono, sans-serif;
  font-size: 18px;
  font-weight: 300;
  line-height: 30px;
  display: flex;
}

.domitem-sort {
  margin-left: 0;
  margin-right: 0;
  font-family: Poppins, sans-serif;
  font-size: 16px;
  display: none;
}

.menu-link {
  text-decoration: none;
  display: flex;
  height: 31px;
  
}

.menu-bg {
  height: 100%;
  width: 100%;
  left: 0px;
  display: flex;
  position: absolute;
  border-width: .75px;
  border-color: black;
  border-style: solid;
  background-color: rgba(255, 255, 255, 0.5);
  -webkit-backdrop-filter: blur(15px);
  backdrop-filter: blur(15px);
  opacity: 1;
  z-index: -1;
  border-radius: 6px
}

a {
  text-decoration: none;
}

.blur {
  width: 100vw;
  height: 100vh;
  position: fixed;
  z-index: 100;
  background-color: rgba(255, 255, 255, 0.01);
  backdrop-filter: blur(0px);
  -webkit-backdrop-filter: blur(0px);
}

.description {
  font-family: IBM Plex Mono;
  color: black;
  font-weight: 300;
  font-size: 14px;
  line-height: 125%;
  display: block;
  padding-top: 20px;
  padding-bottom: 20px;
}

.email-div {
  cursor: pointer;
}

.input-wrap {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: start;
  position: relative;
}

.input-star {
  position: absolute;
  width: auto;
  height: auto;
  font-family: IBM Plex Mono;
  font-weight: 300;
  font-size: 18px;
  color: red;
}
@media (min-width: 1440px) {
  .categories {
    grid-template-columns: repeat(auto-fill, minmax(calc((100vw / 4) - 3px), 1fr));

  }

  .cat-name {
    font-size: 3vw;
  }
}
@media (max-width: 991px) {
  .inquire-form {
    grid-row-gap: 10px;
  }

  .dompage-name {
    font-size: 6vw;
    scrollbar-width: none; /* for Firefox */
    -ms-overflow-style: none; /* for IE and Edge */
    padding: 0px;
    align-self: center;
    text-align: center;
    white-space: nowrap;
    overflow: hidden; 
    text-overflow: ellipsis; 
    width: 100%
  }

  .dompage-name::-webkit-scrollbar {
    width: 0;
    display: none;
    background-color: transparent;
    }

  .domain-wrapper {
    width: 100%;
    scrollbar-width: none; /* for Firefox */
    -ms-overflow-style: none; /* for IE and Edge */
  }

  .domain-wrapper::-webkit-scrollbar {
    width: 0;
    display: none;
    background-color: transparent;
    }

    .domain-name::-webkit-scrollbar {
      display: none;
      color: transparent
    }

  .section-2 {
    overflow: hidden;
    grid-row-gap: 25px;
    padding-left: 20px;
    padding-right: 20px;
  }

  .photo-wrapper {
    height: 35vh;
    min-height: 300px;
  }

  .domitem-template {
    height: auto;
    grid-template-rows: auto auto auto;
    padding-left: 0;
    padding-right: 0;
    align-items: start;
  }

  .domitem-template[state="closed"] {
    padding: 2vw 2vw
  }
  
  .domitem-template[state="open"] {
    padding: 4vw 4vw
  }

  .domfilter-category-wrapper, .domfilter-tld-wrapper, .domfilter-registrar-wrapper {
    column-gap: 6px;
    row-gap: 6px;
  }

  .search-button {
    border-radius: 0px;
    line-height: 100%;
  }

  .domains-block {
    width: 100%;
  }

  .search-numb {
    margin-bottom: 0px;
    line-height: 1;
    font-size: 50px;
  }

  .bg-heading {
    line-height: 1;
    font-size: 13vw;
    margin-bottom: 15px;

  }

  .domain-name.is-white {
    font-size: 30px;
    font-weight: 200;
  }

  .domain-name {
    font-size: 40px
  }

  .domfilter-category {
    width: 100%
  }

  .domfilter-registrar, .domfilter-tld {
    width: auto;
    max-width: 45%;
  }

  .domfilter-leng {
    width: 45%
  }


  .domfliters {
    flex-direction: row;
    max-width: 100%;
    column-gap: 5%;
    flex-wrap: wrap;
  }

  .text.is-white {
    line-height: 18px;
  }

  .categories {
    grid-template-columns: 1fr 1fr;
  }

  .img-wrapper {
    width: 100%;
    height: 100%;
  }

  .group-background {
    width: 100%;
    height: auto;
    max-height: 300px;
    max-width: none;
    min-height: 250px;
    object-fit: cover;
    position: relative;
    top: auto;
    bottom: auto;
    left: auto;
    right: auto;
  }

  .nested-collection {
    width: auto;
    height: auto;
  }

  .link-icon {
    width: 32px;
  }

  .domitem {
    border-top-style: solid;
    border-bottom-style: solid;
    border-bottom-width: 1px;
    position: relative;
  }

  .photo-block {
    height: 25vh;
  }

  .text-overlay {
    outline-offset: 0px;
    border: 0 black;
    outline: 3px black;
  }

  .logo-text {
    font-size: 30px;
  }

  .cat-name-large {
    background-position: 50%;
    background-size: 100%;
  }

  .back-button-wrapper {
    margin: 50px 20px 0px;
    padding-right: 0;
    display: flex;
  }

  .back-button {
    padding: 8px;
    display: none;
  }

  .back-button:hover {
    background-color: rgba(0, 0, 0, 0);
    padding-top: 8px;
    padding-bottom: 8px;
  }

  .back-icon {
    height: 20px;
  }

  .back-label {
    font-weight: 300;
  }

  button {
    z-index: 100;
    transition-property: none;
    position: relative;
    margin-top: 0px;

  }

  .search-icon {
    width: 32px;
  }

  footer {
    justify-content: flex-end;
  }

  .section {
    padding-left: 25px;
    padding-right: 25px;
  }

  .block {
    align-self: flex-start;
    padding-left: 0;
    padding-right: 0;
  }

  .heading-2 {
    margin-top: 0;
    margin-bottom: 0;
    font-size: 50px;
  }

  .text-block-10 {
    font-size: 20px;
  }

  .registered-in {
    padding-left: 10px;
    padding-right: 10px;
  }

  .dompage-sections {
    padding-left: 0;
    padding-right: 0;
    grid-row-gap: 25px;
  }

  .submit-button {
    text-transform: uppercase;
    font-size: 14px;
  }

  .domains-section {
    column-gap: 50px;
    row-gap: 50px;
    flex-direction: column;
  }

  .no-res-message {
    width: 100%;
    font-size: 16px;
    line-height: 24px;
  }

  .domain-categories {
    margin-top: 0;
  }

  .search-hero-wrapper {
    margin-top: 100px;
  }
}

@media screen and (max-width: 767px) {
  .domain-name {
    width: 100%;
    font-size: 32px;
    overflow-x: scroll;
  }

  .domcount::after {
    content: '';
    position: absolute;
    height: 100%;
    width: 100%;
    background-color: transparent;
    border: .75px solid white;
    border-radius: 6px;
    top: -.5px;
    left: -.5px
  }

  .domain-cat[state="inactive"] .domcount {
    opacity: 1;
    bottom: 0;
    left: 0;
    margin-bottom: 0;
    border: none;
    position: relative;
    align-items: center;
    flex-shrink: 0
  }

  .search-button {
    font-size: 14px;
  }
  
  .domain-cat[state="active"] .domcount {
    opacity: 1;
    bottom: 0;
    left: 0;
    border: none;
    margin-bottom: 0;
    position: relative;
    align-items: center;
    flex-shrink: 0
  }

  .domitem-letters,
  .domitem-text,
  .domitem-year,
  .domitem-registrar,
  .tld,
  .domitem-category {
    font-size: 12px;
    line-height: 100%;
    font-weight: 300
  }

  button {
    font-size: 14px
  }

  header {
    top: 0
  }

  .name-div {
    order: 2;
  }

  .cat-name {
    margin-top: 0;
    margin-bottom: 0;
    margin-left: 0;
    line-height: 125%;
    font-size: 12vw;
    font-weight: 100
  }

  .burger-wrapper {
    margin-right: -6px;
    column-gap: 2vw
  }

  .bg-heading-shadow {
    padding: 0 5vw
  }

  header button {
    margin-top: 0;
  }

  header .domitem-button-wrapper {
    height: fit-content
  }

  .domitem-template[state="open"] .domitem-button-wrapper {
    margin-top: 10px
  }

  header .domitem-button-wrapper button {
    margin-bottom: 2.25vw
  }

  .navbar-menu {
    padding-left: 5vw;
    padding-right: 5vw;
    margin-bottom: 1vw;
  }

  .domitem-letter-wrapper,
  .domitem-year-wrapper,
  .domitem-tld-wrapper,
  .domitem-registrar-wrapper,
  .domain-category-item  {
    border: none;
    align-items: center;
    flex-shrink: 0;
    padding: 5px 7px;
    position: relative;
    height: fit-content
  }

  .domitem-letter-wrapper::after,
  .domitem-year-wrapper::after,
  .domitem-tld-wrapper::after,
  .domitem-registrar-wrapper::after,
  .domain-category-item::after {
    content: '';
    position: absolute;
    height: calc(100% - 1px);
    width: calc(100% - 1px);
    background-color: transparent;
    border-radius: 4px;
    border: .75px solid black;
    top: 0px;
    left: 0px
  }
    

  .navbar-container {
    padding: 0 5vw
  }

  .menu-bg {
    border-radius: 0;
    border-top: 0px solid transparent;
    border-left: 0px solid transparent;
    border-right: 0px solid transparent;
    border-bottom: .75px solid white;
  }

  .domain-cat {
    border-bottom: .75px solid white;
    padding: 5vw
  }
  
  .domain-cat[state="active"] .cat-name {
    bottom: 0;
  }

  .footer-content {
    flex-direction: column;
    justify-content: start;
    align-items: start;
  }

  .domitem-template {
    overflow: hidden;
    padding: 3vw 5vw;
  }

  .domitem-template[state="closed"] {
    border: none;
    padding: 3vw 5vw 5vw 5vw;
    transition: background-color calc(var(--factor) * .25s) cubic-bezier(0,.25,.4,1), padding calc(var(--factor) * .25s) cubic-bezier(0,.25,.4,1);
  }

  .domitem-template[state="open"] {
    border: none;
    padding: 5vw 5vw 6vw 5vw;
    transition: background-color calc(var(--factor) * .25s) cubic-bezier(0,.25,.4,1), padding calc(var(--factor) * .25s) cubic-bezier(0,.25,.4,1);
  }

  .domitem-template[state="closed"] .domain-name {
    left: 0vw;
    /* transition: all .3s cubic-bezier(0,.25,.4,1) */
    transition: all calc(var(--factor) * .25s) cubic-bezier(0,.25,.4,1)
  }
  .domitem-template[state="open"] .domain-name {
    left: 3vw;
    transition: all calc(var(--factor) * .25s) cubic-bezier(0,.25,.4,1)
  }

  .inquire-heading {
    font-size: 25px;
  }

  .domfliters {
    width: 100%;
  }

  .domain-name.is-white {
    font-size: 35px;
  }

  .text.is-white {
    font-size: 15px;
    line-height: 20px;
  }

  .heading {
    font-size: 30px;
  }

  .categories {
    display: flex;
    align-content: start;
    justify-content: stretch;
  }

  .collection-list {
    grid-template-columns: 1fr;
  }


  .group-background {
    width: 100%;
  }

  .photo-section {
    padding-left: 15px;
    padding-right: 15px;
  }

  .domitem {
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
  }

  .domain-parameters {
    flex-wrap: wrap;
    height: auto;
    align-content: flex-start;
    margin-top: 2vw
  }

  .text-overlay,
  .cat-name-large {
    font-size: 100px;
  }

  .back-button.is-black {
    padding-left: 9px;
    padding-right: 9px;
  }

  .back-icon {
    height: 24px
  }

  .domitem-bottom {
    flex-wrap: nowrap;
    align-content: flex-start
  }

  .domain-content {
    flex-wrap: wrap;
    align-content: flex-start;
    row-gap: 0
  }

  .button-text {
    padding-top: 8px;
    padding-bottom: 8px;
  }

  button {
    justify-content: flex-start;
    align-self: flex-start;
    margin-top: 10px;
    padding-left: 15px;
    padding-right: 15px;
    top: 0;
  }

  .div-block-3 {
    flex-direction: column;
    align-items: flex-start;
    padding-left: 5px;
    padding-right: 5px;
  }

  footer {
    width: auto;
  }

  .heading-2 {
    font-size: 35px;
  }

  .domain-table {
    grid-template-rows: auto auto auto;
    grid-template-columns: 1fr 0.5fr;
  }

  .domitem-button-wrapper {
    margin-top: 0;
    grid-area: button
  }

  .placeholder {
    margin-bottom: 0;
    height: 250px;
    min-height: unset
  }

  .domain-cont {
    row-gap: 0px;
    flex: 1;
    align-self: flex-start;
    align-items: stretch;
    width: 100%;
  }

  .dompage-name {
    font-size: 35px;
  }

  .dompage-name::-webkit-scrollbar {
    width: 0;
    display: none;
    background-color: transparent
  }

  .dompage-sections {
    flex-direction: column;
    align-items: stretch;
  }

  .inquire-form {
    width: 100%;
  }

  .domains-section {
    row-gap: 50px;
    flex-direction: column;
  }

  .back-wrapper {
    width: 0;
  }

  .no-results-message {
    height: auto;
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .search-hero {
    row-gap: 25px;
    justify-content: center;
  }

  .search-hero-wrapper {
    margin-top: 50px;
  }

  .search-heading {
    margin-bottom: 0;
    font-size: 40px;
    line-height: 1;
  }

  .search-heading-wrapper {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: flex-start;
    overflow: hidden
  }

  .search-numb {
    margin-bottom: 0;
    font-size: 40px;
    line-height: 1;
    margin-bottom: 0px;
  }

  .search-query {
    font-size: 40px;
    line-height: 1;
    align-self: start;
  }

  .domfilter-heading {
    margin-bottom: 10px;
    font-size: 24px;
    width: max-content;
  }

  .domain-categories {
    flex-wrap: wrap;
    align-content: flex-start;
    margin-top: 8px
  }

  .back-button-wrapper {
    display: none;
  }

  .navbar {
    width: 100%;
    position: relative;
  }

  .section-2 {
    margin-top: 25px;
    margin-bottom: 25px;
    width: 100%;
    align-content: center;
    align-items: center;
    display: flex;
    flex-direction: column;
    padding-left: 50px;
    padding-right: 50px;
  }

  .dompage-parameters {
    max-width: none;
    width: 100%;
    min-width: auto;
  }
}

@media screen and (max-width: 479px) {
  .domfilter-registrar, .domfilter-tld, .domfilter-leng, .domfilter-category {
    width: 100%;
    max-width: 100%;
  }

  .search-section {
    padding: 5vw 0px;
  }

  header[var="main"] .menu-bg {
    border-width: 0px 0px .75px 0px;
    border-radius: 0px
  }

  .domain-cat[var="base"] {
    height: 250px;
  }

  .navbar-menu {
    margin-bottom: 0
  }

  .text.is-white {
    font-size: 13px;
    line-height: 17px;
  }

  header .domitem-button-wrapper button {
    margin-bottom: 4vw
  }

  .search-input {
    font-size: 16px;
  }

  .photo-wrapper {
    height: 45vh;
    min-height: 300px;
    background-size: 200%;
    margin-top: -1vw
  }

  header {
    height: auto;
    padding-left: 0;
    padding-right: 0;
    position: relative;
    margin-top: 0px
  }

  .hero-section {
    min-height: 50vh;
    margin-top: 0;
  }

  header[var="main"] {
    top:0;
  }

  .domain-name {
    color: black;
    margin-bottom: 0;
    font-size: 24px;
    line-height: 35px;
    grid-area: name;
    overflow-x: auto;
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none
  }


  .heading {
    font-size: 20px;
  }

  .categories {
    box-shadow: none;
    border-radius: 0;
    display: flex;
    grid-row-gap: 0
  }

  .collection-list {
    grid-template-columns: 1fr;
  }

  .domain-cat {
    height: 250px;
    justify-content: flex-end;
    margin-bottom: 0;
    min-height: unset;
    padding: 5vw;
    gap: 10px
  }

  .group-background {
    max-height: 400px;
    min-height: 0;
    object-fit: cover;
    object-position: 0% 100%;
    position: relative;
    top: 0%;
    bottom: 0%;
    left: 0%;
    right: 0%;
  }

  .name-div {
    position: relative;
    bottom: 0px;
    left: 0px;
  }

  .link-icon {
    z-index: 101;
  }

  .domitem {
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding-left: 5px;
    padding-right: 5px;
  }

  .domlist-list {
    border-bottom-width: 0;
  }

  .domitem-letter-wrapper,
  .domitem-year-wrapper,
  .domitem-tld-wrapper,
  .domitem-registrar-wrapper,
  .domain-category-item  {
    flex: none;
    align-self: center;
    font-size: 13px;
  }

  .domain-parameters {
    width: 100%;
    height: auto;
    gap: 6px;
    flex-wrap: wrap;
    flex: 1;
    align-items: flex-end;
    overflow: visible;
  }

  .photo-block {
    height: 15vh;
  }

  .text-overlay {
    opacity: 0;
    background-color: black;
    background-image: url("https://d3e54v103j8qbb.cloudfront.net/img/background-image.svg");
    background-position: 50% 100%;
    background-size: cover;
    background-attachment: scroll;
    font-size: 60px;
    line-height: 6px;
  }

  .navbar {
    width: 100%;
    padding-left: 0;
    padding-right: 0;
    position: relative;
  }

  .logo-text {
    margin-top: 0;
    margin-bottom: 0;
    font-size: 20px;
    display: none;
  }

  .burger-menu {
    margin-right: -5px;
  }

  .link-block-2 {
    column-gap: 0px;
    align-items: center;
    padding-left: 10px;
    padding-right: 10px;
  }

  .collection-list-3 {
    column-gap: 0px;
    row-gap: 5px;
    grid-template-columns: 1fr;
    margin-left: 0;
    margin-right: 0;
  }

  .nav-link {
    font-size: 16px;
  }

  .burger-wrapper {
    margin-right: auto
  }

  .collection-list-wrapper {
    margin: 5px 0;
    padding-left: 15px;
    padding-right: 15px;
  }

  .link-arrow {
    height: 20px;
    line-height: 16px;
  }

  .cat-name-large {
    background-color: white;
    font-size: 60px;
    line-height: 60px;
  }

  .back-button-wrapper {
    margin-top: 15px;
    margin-bottom: 0;
    padding-left: 0px;
    padding-right: 0px;
    display: none;
  }

  .back-button {
    column-gap: 0px;
    padding: 8px 7px;
  }

  .back-button.is-black {
    border-width: 1px;
    padding: 5px;
  }

  .back-icon {
    height: 20px;
  }

  .back-label {
    font-size: 15px;
  }

  .domitem-bottom {
    flex-wrap: nowrap;
    align-content: flex-start;
    row-gap: 6px;
  }

  .domain-content {
    flex-wrap: wrap;
    align-content: flex-start
  }

  .button-text {
    padding-top: 6px;
    padding-bottom: 6px;
    font-size: 16px;
  }

  button {
    column-gap: 3px;
    flex: none;
    margin-top: 10px;
    padding-left: 15px;
    padding-right: 15px;
  }

  header button {
    margin-bottom: 10px
  }

  .domitem-template button {
    font-size: 14px
  }
  

  .domlist-count {
    font-size: 20px;
  }

  .domain-counter {
    column-gap: 5px;
  }

  .domlist-caption {
    font-size: 20px;
  }

  .div-block-3 {
    flex-direction: column;
    align-items: flex-start;
  }

  .text-block-6 {
    align-self: center;
    font-size: 12px;
  }

  .search-icon {
    width: 28px
  }

  .search-wrapper {
    height: auto;
    padding-left: 0px;
    padding-right: 0px;
  }

  .search-module {
    row-gap: 10px;
    justify-content: space-between;
  }

  .search-button {
    width: auto;
  }

  .image-7 {
    width: 25px;
  }

  .search-results {
    min-height: 50vh;
    justify-content: flex-start;
    padding-left: 15px;
    padding-right: 15px;
  }

  .search-results-wrapper {
    padding-left: 0;
    padding-right: 0;
  }

  .properties-content {
    color: black;
    border: 1px solid black;
    border-radius: 20px;
    align-self: flex-start;
    padding: 1px 10px;
    display: block;
  }

  .section {
    padding-left: 15px;
    padding-right: 15px;
  }

  .block {
    row-gap: 15px;
    justify-content: center;
  }

  .heading-2 {
    font-size: 30px;
    line-height: 30px;
  }

  .text-block-10 {
    font-size: 14px;
  }

  .registered-in {
    column-gap: 10px;
    padding: 0 10px;
  }

  .text-block-11 {
    color: black;
    font-family: Poppins, sans-serif;
    font-weight: 300;
  }

  .domain-table {
    height: auto;
    grid-template-rows: auto auto auto;
    grid-template-columns: 1fr;
    overflow: hidden;
  }

  .domitem-template {
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: start;
    padding: 5vw;
    border-radius: 0
  }

  .domitem-template:hover {
    border: none
  }

  .domitem-button-wrapper {
    margin-top: 0;
    display: flex;
    overflow: hidden;
    height: fit-content;
    justify-self: start !important;
  }

  .counter, .counter-text {
    font-size: 12px;
    line-height: 18px;
    font-weight: 300
  }

  .domcount {
    column-gap: 8px;
    margin-bottom: 10px;
    padding-left: 8px;
    padding-right: 8px;
  }

  .placeholder {
    margin-bottom: 0;
  }

  .template-container {
    width: 100%;
    height: 150px;
    display: block;
  }

  .domitem-wrapper {
    display: block;
  }

  .bg-heading {
    padding-left: 0px;
    padding-right: 0px;
    font-size: 50px;
    line-height: 1.2;
    margin-bottom: 10px;
    margin-top: 10px;
  }

  .bg-heading-shadow {
    row-gap: 0px;
    padding-left: 5vw;
    padding-right: 5vw;
  }

  .section-2 {
    min-height: auto;
    padding-left: 15px;
    padding-right: 15px;
  }

  .domain-cont {
    row-gap: 0px;
    padding-bottom: 0;
    width: 100%;
  }

  .dompage-name {
    color: black;
    font-size: 30px;
    line-height: normal;
  }

  .dompage-letters,
  .dompage-tld,
  .dompage-registrar,
  .dompage-prop-text,
  .dompage-cats,
  .dompage-year {
    font-size: 14px;
  }

  .dompage-parameters {
    row-gap: 5px;
    color: black;
    font-size: 14px;
    font-family: IBM Plex Mono;
    font-weight: 300;
  }

  .dompage-sections {
    padding-left: 0px;
    padding-right: 0px;
  }

  .inquire-form {
    width: 100%;
  }

  .inquire-heading {
    width: 100%;
    margin-top: 50px;
    font-size: 20px;
  }

  .domfliters {
    width: 100%;
    row-gap: 30px;
    flex-direction: column;
    padding: 0px 5vw;
  }

  .domfilter-heading {
    margin-bottom: 10px;
    font-size: 18px;
  }

  .domfilter-category-wrapper,
  .domfilter-tld-wrapper,
  .domfilter-registrar-wrapper {
    gap: 6px;
    width: 100%;
  }

  .category-toggle,
  .tld-toggle,
  .registrar-toggle {
    margin-right: 0px;
    margin-bottom: 0px;
    padding: 2px 7px;
    font-size: 13px;
    font-weight: normal;
    transition: color 0.15s cubic-bezier(0.77, 0, 0.175, 1),
    background-color 0.15s cubic-bezier(0.77, 0, 0.175, 1);
  }

  .category-toggle.template,
  .tld-toggle.template,
  .registrar-toggle.template {
    margin-bottom: 0;
    padding: 2px 7px;
    font-size: 14px;
  }
  
  footer {
    padding-left: 5vw;
    padding-right: 5vw
  }

  footer .text {
    font-size: 14px;
  }
  .category-toggle.active,
  .tld-toggle.active,
  .registrar-toggle.active {
    margin-bottom: 0;
    margin-right: 0px;
    margin-bottom: 0px;
    padding: 2px 7px;
  }

  .domfilter-toggle-hide {
    display: none;
    overflow: visible;
  }

  .back-wrapper,
  .back-wrapper.is-black {
    width: 0;
  }

  .domitem-counter {
    margin-top: 10px;
  }

  .range-slider {
    width: 100%;
    column-gap: 0px;
    row-gap: 0px;
  }

  .no-res-message {
    font-size: 14px;
    line-height: 21px;
  }

  .search-hero {
    row-gap: 15px;
    padding-left: 0;
    padding-right: 0;
  }

  .search-hero-wrapper {
    height: auto;
    padding-left: 5vw !important;
    padding-right: 5vw !important;
    margin-top: 30px;
    margin-bottom: 30px;
  }

  .search-heading {
    padding-left: 0;
    padding-right: 0px;
    font-size: 35px !important;
    line-height: 1;
    margin-bottom: 0px;
  }

  .search-heading-wrapper {
    height: auto;
    flex-direction: column;
    align-items: flex-start;
  }

  .search-numb {
    padding-left: 0px;
    padding-right: 0px;
    font-size: 35px !important;
    line-height: 1 !important;
    margin-bottom: 0px;
  }

  .search-query {
    height: auto;
    margin-bottom: 0;
    padding-left: 0px;
    padding-right: 15px;
    font-size: 35px !important;
    line-height: 35px;
  }

  .search-title {
    column-gap: 10px;
    line-height: 21px;
    font-size: 40px;
    flex-direction: row;
  }

  .domain-categories {
    width: 100%;
    height: auto;
    column-gap: 6px !important;
    row-gap: 6px;
    flex-wrap: wrap;
    flex: 1;
    align-items: flex-end;
    margin-top: 6px;
    overflow: visible;
  }

  .domain-category-item {
    flex: none;
    align-self: center;
    padding-left: 7px;
    padding-right: 7px;
  }

  .domitem-category {
    font-size: 12px;
    line-height: 12px;
  }

  .menu-bg {
    border-width: 0px 0px .75px 0px;
    border-color: black;
    border-radius: 0;
    border-style: solid;
  }

  .navbar-container {
    padding: 1vw 5vw;
  }
}



#w-node-_9644aa73-3151-4840-22d2-8dc457d36cd8-2b532f09 {
  grid-area: 2 / 3 / 3 / 4;
}

#w-node-dfdb00dc-619c-9e59-5f0a-57c18517b056-2b532f09 {
  grid-area: 2 / 1 / 3 / 2;
}

#w-node-_33807b1f-d90e-c647-6824-65c479344e55-2b532f09 {
  grid-area: 1 / 1 / 2 / 2;
}

#w-node-c4bd3945-a997-1c80-a6f9-6eda8bb9d626-2b532f09 {
  grid-area: 2 / 2 / 3 / 3;
}

#w-node-_55161a9d-e3fd-8088-d4bb-2508f1f23afb-2b532f09 {
  grid-area: 1 / 3 / 2 / 4;
}

#w-node-_31b26dd0-5651-9dab-c5db-2ad2f1078979-2b532f09 {
  grid-area: 1 / 2 / 2 / 3;
}

#w-node-f980d050-d468-6070-b3a4-14e774a21fd5-2b532f09 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  align-self: center;
}

#w-node-_3cd0de44-dc41-f5a1-55f6-7460977beefe-977beef9 {
  align-self: center;
  justify-self: start;
}

#w-node-_72071aed-7b11-229a-60d2-65c288d33fa1-18532f0e {
  grid-area: 2 / 1 / 3 / 2;
}

#domain-parameters-wrapper {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#domain-inquire-button {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: end;
}

#domain-inquire-button-div {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_53febcd0-6747-b45d-d6ae-029601dd61f2-e3532f11 {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-_7d81f87e-5455-3b81-e48f-e06508537457-e3532f11 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#header-overlay {
  position: absolute;
}


@media screen and (max-width: 767px) {
  #w-node-_9644aa73-3151-4840-22d2-8dc457d36cd8-2b532f09 {
    grid-area: 3 / 2 / 4 / 3;
  }
  #domain-inquire-button {
    justify-self: start;
  }

  #w-node-_55161a9d-e3fd-8088-d4bb-2508f1f23afb-2b532f09 {
    grid-area: 3 / 1 / 4 / 2;
  }
}

@media screen and (max-width: 479px) {
  #domain-name-content,
  #domain-bottom-wrapper {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }

  #w-node-a6921f49-0240-ed81-6bda-26d5e1987788-18532f0e {
    grid-area: 3 / 1 / 4 / 2;
    justify-self: start;
  }

}