@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
* {
  margin: 0;
  border: 0;
  padding: 0;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

:focus,
:active {
  outline: none;
}

a:focus,
a:active {
  outline: none;
}

nav,
footer,
header,
aside {
  display: block;
}

html,
body {
  width: 100%;
  height: 100%;
  -webkit-text-size-adjust: 100%;
     -moz-text-size-adjust: 100%;
          text-size-adjust: 100%;
  font-size: 16px;
  scroll-behavior: smooth;
}

input,
button,
textarea {
  font-family: inherit;
}

input::-ms-clear {
  display: none;
}

button {
  cursor: pointer;
  background: transparent;
}

button::-moz-focus-inner {
  border: 0;
  padding: 0;
}

a,
a:visited {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

ul,
li {
  list-style: none;
}

img {
  vertical-align: top;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: inherit;
  font-size: inherit;
}

body {
  font-family: "Poppins", sans-serif;
  background: #FFF;
}

.lock {
  overflow: hidden;
}

.wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  overflow: hidden;
  background: #FFF;
}

[class*=__container] {
  max-width: 1230px;
  width: 100%;
  margin: 0 auto;
  padding: 0 15px;
}

.main {
  flex: 1 1 auto;
}

.title {
  font-size: clamp(34px, 7vw, 90px);
  color: #00A3D4;
  font-weight: 900;
  line-height: 100%;
  text-transform: uppercase;
}

[class*=__text] {
  color: #1E1E1E;
  font-size: 14px;
  font-weight: 400;
}

.btn {
  text-align: center;
  white-space: nowrap;
  width: -moz-fit-content;
  width: fit-content;
  display: inline-block;
  color: #FFF;
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
  border-radius: 60px;
  background: #00A3D4;
  padding: 24px 50px;
}

.p-60 {
  padding: 60px 0;
}

.pb-60 {
  padding-bottom: 60px;
}

.text-center {
  text-align: center;
}

section {
  scroll-margin-top: 260px;
}

@font-face {
  font-family: "SF Pro Display";
  src: url(/wp-content/themes/caladryxstone/assets/fonts/SFProDisplay-Regular.woff2) format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "SF Pro Display";
  src: url(/wp-content/themes/caladryxstone/assets/fonts/SFProDisplay-Bold.woff2) format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "SF Pro Display";
  src: url(/wp-content/themes/caladryxstone/assets/fonts/SFProDisplay-Medium.woff2) format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
.footer {
  padding-bottom: 20px;
  background: #FFF;
}
.footer__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.footer__social {
  display: flex;
  align-items: center;
  gap: 20px;
}
.footer__text {
  color: rgba(30, 30, 30, 0.6);
}
@media (max-width: 767px) {
  .footer .header__menu {
    flex-direction: column;
    gap: 20px;
  }
}

.cookies {
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 1000;
  padding: 20px;
  max-width: 800px;
  width: 100%;
  border-radius: 26px;
  border: 4px solid #00A3D4;
  background: #FFF;
  transform: translateY(100%);
  opacity: 0;
  transition: transform 0.5s ease, opacity 0.5s ease;
}
.cookies.is-visible {
  transform: translateY(0);
  opacity: 1;
}
.cookies.is-hiding {
  transform: translateY(100%);
  opacity: 0;
}
.cookies__content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.cookies__title {
  color: #1E1E1E;
  font-size: 30px;
  font-weight: 400;
  text-transform: uppercase;
}
.cookies__text a {
  color: #1E1E1E;
  text-decoration: underline;
}
.cookies__btns {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media (max-width: 429px) {
  .cookies__btns {
    flex-direction: column;
    width: 100%;
  }
}
.cookies__btn {
  width: 100%;
}
.cookies__btn:last-child {
  color: #00A3D4;
  border: 2px solid #00A3D4;
  background: transparent;
}

.header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 60;
  background: #FFF;
}
.header__content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
}
@media (max-width: 575px) {
  .header__content {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
}
.header__logo {
  position: relative;
  z-index: 40;
  display: flex;
  align-items: center;
  gap: 12px;
  color: #1E1E1E;
  font-size: 24px;
  font-weight: 900;
  text-transform: uppercase;
}
.header__menu {
  display: flex;
  align-items: center;
  gap: 20px;
}
.header__menu a {
  color: #1E1E1E;
  font-size: 14px;
  font-weight: 400;
}

@media (max-width: 1023px) {
  .hero__content {
    display: flex;
    flex-direction: column-reverse;
    gap: 20px;
  }
}
.hero__row {
  display: flex;
  align-items: center;
}
@media (max-width: 991px) {
  .hero__row {
    flex-direction: column;
    gap: 20px;
  }
}
.hero__column {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.hero__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.hero__img {
  max-width: 707px;
  width: 100%;
}
.hero__text {
  max-width: 262px;
}
@media (max-width: 991px) {
  .hero__text {
    max-width: 100%;
  }
}
.hero__title {
  color: #00A3D4;
  font-size: clamp(36px, 10vw, 131px);
  font-weight: 900;
  line-height: 100%;
  text-transform: uppercase;
  text-align: center;
  margin-top: -50px;
}
@media (max-width: 1023px) {
  .hero__title {
    margin: 0;
  }
}

.about {
  background: rgba(0, 163, 212, 0.1);
  margin-bottom: 60px;
}

.games__grid {
  display: flex;
  align-items: center;
  gap: 20px;
}
.games__grid img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 767px) {
  .games__grid {
    flex-direction: column;
  }
}
.games__item {
  display: flex;
  gap: 20px;
}
@media (max-width: 767px) {
  .games__item {
    gap: 15px;
  }
}
.games__card {
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
  height: -moz-fit-content;
  height: fit-content;
}
.games__card a {
  position: absolute;
  inset: 0;
}

.gallery__text {
  max-width: 1000px;
}
.gallery__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.gallery__grid img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 767px) {
  .gallery__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 575px) {
  .gallery__grid {
    grid-template-columns: repeat(1, 1fr);
  }
  .gallery__grid img {
    max-width: 285px;
  }
}

.product__bg {
  background: rgba(0, 163, 212, 0.1);
}
.product__subtitle {
  font-size: clamp(34px, 5vw, 70px);
}
.product .contact__text {
  color: #1E1E1E;
}

.contact {
  padding: 60px 0;
  margin-bottom: 60px;
  background: #00A3D4;
}
.contact__content {
  display: flex;
  align-items: center;
  gap: 30px;
}
@media (max-width: 1023px) {
  .contact__content {
    flex-direction: column;
  }
}
.contact__column {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
@media (max-width: 575px) {
  .contact__img {
    max-width: 330px;
  }
  .contact__img img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
.contact__title, .contact__text {
  color: #FFF;
}
.contact__address {
  display: flex;
  flex-direction: column;
}
.contact__address p,
.contact__address a {
  color: #FFF;
  font-size: 18px;
  font-weight: 900;
  text-transform: uppercase;
}

.policy {
  margin: 75px 0 0;
}
@media (max-width: 575px) {
  .policy {
    margin: 116px 0 0;
  }
}
.policy__content {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.policy__content_center {
  align-items: center;
}