@import url('https://fonts.googleapis.com/css2?family=Roboto+Serif:ital,opsz,wght@0,8..144,100..900;1,8..144,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');
/* @font-face {
  font-family: "Arial Regular";
  src: url("../fonts/Arial-Regular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
} */

html {
  scroll-behavior: smooth;
}
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Prevent font size inflation */
html {
  -moz-text-size-adjust: none;
  -webkit-text-size-adjust: none;
  text-size-adjust: none;
  height: 100%;
}

/* Remove default margin in favour of better control in authored CSS */
body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul[role="list"],
ol[role="list"] {
  list-style: none;
}

ul,
ol {
  list-style: none;
  margin: 0;
  padding: 0;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  line-height: 1.5;
}

/* Set shorter line heights on headings and interactive elements */
h1,
h2,
h3,
h4,
button,
input,
label {
  line-height: 1.1;
}

/* Balance text wrapping on headings */
h1,
h2,
h3,
h4 {
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  text-decoration-skip-ink: auto;
  color: currentColor;
}
a:not([class]):hover {
  text-decoration-line: underline;
}
a {
  text-decoration: none;
}
.wrap {
  word-wrap: break-word;
}
/* Make images easier to work with */
img,
picture {
  max-width: 100%;
  display: block;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

/* Anything that has been anchored to should have extra scroll margin */
:target {
  scroll-margin-block: 5ex;
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}

@keyframes pulse2 {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.01);
  }
  100% {
    transform: scale(1);
  }
}

@keyframes wobble {
  0% { transform: rotate(0deg); }
  25% { transform: rotate(-1deg); }
  50% { transform: rotate(1deg); }
  75% { transform: rotate(-1deg); }
  100% { transform: rotate(0deg); }
}

@keyframes jump {
  0% { transform: translateX(0); }
  30% { transform: translateX(20px); }
  50% { transform: translateX(0); }
  70% { transform: translateX(-2px); }
  100% { transform: translateY(0); }
}

@keyframes marquee {
  from {
      transform: translateX(0%);
  }
  to {
      transform: translateX(-100%);
  }
}

/* ===================Font=========== */

body {
  font-family: "Roboto", sans-serif;
  color: #000;
  font-weight: 400;
  font-style: normal;
  font-size: 20px;
  width: 100%;
  overflow-x: hidden;
  line-height: normal;
  background-color: #FFF;
  height: 100%;
}

:root {
  --light-color: #DDECE2;
  --accent-color: #313D34;
  --white: #FFF;
  --black: #191919;
  --hero-gradient: linear-gradient(180deg, #FFF 0%, #AAC6B3 100%);
  --cta-gradient: linear-gradient(0deg, #FFF 0%, #AAC6B3 100%);
}

.palette-one {
  --light-color: #DDECE2;
  --accent-color: #313D34;
  --hero-gradient: linear-gradient(180deg, #FFF 0%, #AAC6B3 100%);
  --cta-gradient: linear-gradient(0deg, #FFF 0%, #AAC6B3 100%);
}


.neon-red-wave {
  --light-color: #B5ABF3;
  --accent-color: #22166F;
  --hero-gradient: linear-gradient(180deg, #FFF 0%, #B5ABF3 100%);;
  --cta-gradient: linear-gradient(0deg, #FFF 0%, #B5ABF3 100%);
}

.palette-three {
  --light-color: #F7CD8D;
  --accent-color: #8C5809;
  --hero-gradient: linear-gradient(180deg, #FFF 0%, #F7CD8D 100%);;
  --cta-gradient: linear-gradient(0deg, #FFF 0%, #F7CD8D 100%);;
}

.palette-four {
  --light-color: #F8AEAE;
  --accent-color: #6B0000;
  --hero-gradient: linear-gradient(180deg, #FFF 0%, #F8AEAE 100%);;
  --cta-gradient: linear-gradient(0deg, #FFF 0%, #F8AEAE 100%);;
}

.palette-five {
  --light-color: #F8AEAE;
  --accent-color: #595959;
  --hero-gradient: linear-gradient(180deg, #FFF 0%, #F8AEAE 100%);;
  --cta-gradient: linear-gradient(0deg, #FFF 0%, #F8AEAE 100%);;
}

.gilded-orange-shine {
  min-height: 100%;
  display: flex;
  flex-direction: column;
}

.gold-leaf {
  position: relative;
  flex: 1 0 auto;
}

.sea-green {
  max-width: 1187px;
  padding: 0 15px;
  width: 100%;
  margin: 0 auto;
}

/* ================== HEADER START ================== */

.graphite-gray {
  position: relative;
  z-index: 11;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 150px;
  background-color: var(--accent-color);
}

.lime {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 45px 0;
}

.gilded-purple-aura {
  color: var(--light-color);
  font-family: "Roboto Serif";
  font-size: 45px;
  font-weight: 600;
  line-height: normal;
}

.desert-blue-glow {
}

.stormy-white-mist {
  display: flex;
  gap: 32px;
  align-items: center;
}

.dusty-pink-mist {
}

.linen-white {
  color: var(--white);
  text-align: center;
  font-family: "Roboto Serif";
  font-size: 25px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.prism-cyan-glow {
  display: none;
  gap: 4px;
  max-width: 44px;
  width: 100%;
  cursor: pointer;
  flex-wrap: wrap;
}

.prism-cyan-glow.active {
  display: flex;
}

.prism-cyan-glow span {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  aspect-ratio: 1/1;
  background-color: var(--light-color);
  border-radius: 50%;
}

@media (max-width: 1100px) {

  .graphite-gray {
    height: 120px;
  }

  .lime {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 0;
  }

  .prism-cyan-glow {
    display: flex;
  }
  .desert-blue-glow {
    display: none;
  }
}

@media (max-width: 568px) {

  .graphite-gray {
    height: 80px;
  }

  .lime {
    padding: 18px 0;
  }

  .gilded-purple-aura {
    font-size: 30px;
  }
}

@media (max-width: 1100px) {
  #mobileMenu {
    position: fixed;
    top: -100%;
    right: 0;
    width: 100%;
    height: fit-content;
    background: var(--white);
    padding: 50px 0px;
    display: block; /* замість none */
    transition: .5s ease-in-out;
    z-index: 5;
  }

  #mobileMenu.active {
    top: 120px;
  }

  .stormy-white-mist {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
  }

  .linen-white {
    color: var(--accent-color);
    text-align: center;
    font-family: "Roboto Serif";
    font-size: 25px;
    font-weight: 600;
    line-height: normal;
  }
}

@media (max-width: 568px) {
  #mobileMenu.active {
    top: 80px;
  }
}

.lock-scroll {
  overflow: hidden;
}


/* ================== HEADER END ================== */


/* ================== HERO START ================== */

.sunset-gray-light {
  background: var(--hero-gradient);
}

.marble-yellow-sheen {
  display: flex;
  flex-direction: column;
  gap: 50px;
  align-items: center;
  padding: 100px 0px 110px 0px;
}

.frozen-pink-shade {
  color: var(--accent-color);
  text-align: center;
  font-family: "Roboto Serif";
  font-size: 45px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  max-width: 1023px;
}

.sunset-purple-light {
  color: var(--black);
  text-align: center;
  font-family: Roboto;
  font-size: 25px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  max-width: 825px;
}

@media (max-width: 768px) {

  .marble-yellow-sheen {
    gap: 35px;
    padding: 70px 0px 70px 0px;
  }

  .frozen-pink-shade {
    font-size: 35px;
  }

  .sunset-purple-light {
    font-size: 20px;
  }

}

@media (max-width: 568px) {

  .marble-yellow-sheen {
    gap: 25px;
    padding: 50px 0px 50px 0px;
  }

  .frozen-pink-shade {
    font-size: 25px;
  }

  .sunset-purple-light {
    font-size: 16px;
  }

}

/* ================== HERO END ================== */



/* ================== CARDS START ================== */

.solar-pink-shine {
}

.velvet-yellow-light {
  display: flex;
  flex-direction: column;
  gap: 50px;
  padding: 50px 0;
}

.marble-white-sheen {
  display: flex;
  align-items: center;
  gap: 60px;
}

.burgundy-red {
  flex-direction: row-reverse;
}

.dusty-black-glow {
  max-width: 520px;
  width: 100%;
  border-radius: 48px;
  background: #D9D9D9;
  overflow: hidden;
  flex: 1;
}

.dusty-black-glow img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.medium-seagreen {
  display: flex;
  flex-direction: column;
  gap: 55px;
  max-width: 574px;
  flex: 1;
}

.obsidian-black {
  color: var(--accent-color);
  text-align: center;
  font-family: "Roboto Serif";
  font-size: 45px;
  font-weight: 600;
  line-height: normal;
}

.prism-pink-aura {
  color: var(--black);
  text-align: center;
  font-family: Roboto;
  font-size: 25px;
  font-weight: 400;
  line-height: normal;
}

@media (max-width: 768px) {

  .marble-white-sheen{
    flex-direction: column;
  }

  .marble-white-sheen {
    gap: 25px;
  }

  .medium-seagreen {
    gap: 25px;
  }

  .obsidian-black {
    font-size: 35px;
  }

  .prism-pink-aura {
    font-size: 20px;
  }

}

@media (max-width: 568px) {

  .burgundy-red {
    flex-direction: column-reverse;
  }

  .obsidian-black {
    font-size: 25px;
  }

  .prism-pink-aura {
    font-size: 16px;
  }

}

/* ================== CARDS END ================== */


/* ================== CTA START ================== */

.gilded-purple-shine {
  background: var(--cta-gradient);
}

.lunar-orange-wave {
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: center;
  padding: 84px 0 65px 0;
}

.icy-gray-light {
  color: var(--accent-color);
  text-align: center;
  font-family: "Roboto Serif";
  font-size: 45px;
  font-weight: 600;
  line-height: normal;
}

.sunset-green-shine {
  color: var(--black);
  text-align: center;
  font-family: Roboto;
  font-size: 25px;
  font-weight: 400;
  line-height: normal;
}

@media (max-width: 768px) {

  .lunar-orange-wave {
    gap: 20px;
  }

  .icy-gray-light {
    font-size: 35px;
  }
  
  .sunset-green-shine {
    font-size: 20px;
  }

} 

@media (max-width: 568px) {

  .icy-gray-light {
    font-size: 25px;
  }
  
  .sunset-green-shine {
    font-size: 16px;
  }
}
/* ================== CTA END ================== */


/* ================== FORM START ================== */

.shadow-orange-wave {
  background: var(--light-color);
}
 
.stormy-orange-flare {
  display: flex;
  flex-direction: column;
  gap: 50px;
  align-items: center;
  padding: 65px 0 90px 0;
}

.volcano-green-shine {
  display: flex;
  flex-direction: column;
  gap: 25px;
  align-items: center;
}

.marble-orange-light {
  color: var(--accent-color);
  text-align: center;
  font-family: "Roboto Serif";
  font-size: 45px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}

.prism-orange-wave {
  color: var(--black);
  text-align: center;
  font-family: Roboto;
  font-size: 25px;
  font-weight: 400;
  line-height: normal;
}

.lunar-orange-tone {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  max-width: 660px;
  width: 100%;
  margin: 0 auto;
  font-family: Roboto;
  font-size: 25px;
  font-weight: 400;
  line-height: normal;
}

.yellowgreen-green {
  width: 100%;
  padding: 17px 28px;
  outline: none;
  border: none;
  border-radius: 50px;
  border: 1px solid rgba(49, 61, 52, 0.50);
  background: var(--white);

}

.volcano-cyan-shine {
  color: rgba(49, 61, 52, 0.50);
  width: 100%;
  padding: 17px 28px;
  outline: none;
  border: none;
  border-radius: 50px;
  border: 1px solid rgba(49, 61, 52, 0.50);
  background: var(--white);
  resize: none;
  height: 250px;
}

.skyblue-blue {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 18px 25px;
  outline: none;
  border: none;
  border-radius: 50px;
  background: var(--accent-color);
  color: var(--White, #FFF);
  text-align: center;
  font-family: Roboto;
  font-size: 25px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  cursor: pointer;
  transition: .3s ease-in-out;
  margin-top: 34px;
  width: 100%;
}

.impressum-text {
    text-align: center;
    margin-top: 5px;
    font-size: 16px;
    font-weight: 300;
}

.skyblue-blue:hover {
  background: var(--light-color);
}

@media (max-width: 768px) {

  .stormy-orange-flare {
    gap: 25px;
    padding: 50px 0 50px 0;
  }

  .volcano-green-shine {
    gap: 20px;
  }

  .marble-orange-light {
    font-size: 35px;
  }

  .prism-orange-wave {
    font-size: 20px;
  }

  .lunar-orange-tone {
    font-size: 16px;
  }

  .yellowgreen-green {
    padding: 11px 21px;
  }

  .volcano-cyan-shine {
    padding: 11px 21px;
    height: 130px;
    border-radius: 17px;
  }

  .skyblue-blue {
    margin-top: 10px;
    padding: 13px 25px;
    font-size: 16px;
  }
}

@media (max-width: 568px) {
  
  .marble-orange-light {
    font-size: 25px;
  }

  .prism-orange-wave {
    font-size: 16px;
  }

}

/* ================== FORM END ================== */


/* ================== CONTACTS START ================== */

.neon-black-shine {
}

.icy-yellow-light {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 100px;
  padding: 50px 0;
}

.neon-purple-shine {
  display: flex;
  flex-direction: column;
  gap: 50px;
}

.shadow-yellow-glow {
  color: var(--accent-color);
  font-family: "Roboto Serif";
  font-size: 45px;
  font-weight: 600;
  line-height: normal;
}

.violet-purple {
  display: flex;
  flex-direction: column;
  color: var(--black);
  font-family: Roboto;
  font-size: 25px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.stormy-cyan-flare {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 420px;
  width: 100%;
  border-radius: 50px;
  overflow: hidden;
}

.stormy-cyan-flare iframe {
  max-width: 420px;
  width: 100%;;
  height: 420px;
}

@media (max-width: 768px) {
  .icy-yellow-light {
    flex-direction: column;
    align-items: center;
    gap: 50px;
    width: 100%;
  }

  .neon-purple-shine {
    gap: 16px;
    width: 100%;
  }

  .shadow-yellow-glow {
    font-size: 35px;
  }

  .violet-purple {
    font-size: 20px;
  }

  .stormy-cyan-flare {
    max-width: 100%;
  }

  .stormy-cyan-flare iframe {
    max-width: 100%;
    width: 100%;
    height: 320px;
  }
}

@media (max-width: 568px) {
  
  .shadow-yellow-glow {
    font-size: 25px;
  }

  .violet-purple {
    font-size: 16px;
  }

}

/* ================== CONTACTS END ================== */


/* ================== POLICY START ================== */

.gilded-black-sheen {
}

.twilight-red-tone {
  display: flex;
  flex-direction: column;
  gap: 50px;
  padding: 50px 0;
}

.dusty-yellow-light {
  display: flex;
  flex-direction: column;
  gap: 32px;
  align-items: center;
}

.desert-black-sheen {
  color: var(--accent-color);
  text-align: center;
  font-family: "Roboto Serif";
  font-size: 45px;
  font-weight: 600;
  line-height: normal;
}

.dusty-yellow-shine {
  color: var(--black);
  font-family: Roboto;
  font-size: 25px;
  font-weight: 400;
  line-height: normal;
}

.dusty-yellow-shine ul {
  display: flex;
  flex-direction: column;
  list-style: disc;
  padding-left: 25px;
}

@media (max-width: 768px) {
  
  .dusty-yellow-light {
    gap: 20px;
  }

  .desert-black-sheen {
    font-size: 35px;
  }

  .dusty-yellow-shine {
    font-size: 20px;
  }

}

@media (max-width: 568px) {
  
  .desert-black-sheen {
    font-size: 25px;
  }

  .dusty-yellow-shine {
    font-size: 16px;
  }
}

/* ================== POLICY END ================== */

/* ================== FOOTER START ================== */

.neon-gray-shine {
  flex-shrink: 0;
  background-color: var(--accent-color);
}

.cosmic-red-tone {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 20px;
  padding: 52px 0 56px 0;
}

.arctic-white-tone {
  display: flex;
  gap: 5px;
}

.sand-beige {
  color: var(--white);
  text-align: center;
  font-family: Roboto;
  font-size: 25px;
  font-weight: 400;
  line-height: normal;
}

.golden-brown {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.arctic-green-shine {
  color: var(--white);
  text-align: center;
  font-family: Roboto;
  font-size: 25px;
  font-weight: 400;
  line-height: normal;
  cursor: pointer;
}

.arctic-green-shine:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {

  .sand-beige {
    font-size: 20px;
  }

  .arctic-green-shine {
    font-size: 20px;
  }
  
}

@media (max-width: 568px) {

  .cosmic-red-tone {
    padding: 25px 0 25px 0;
  }
  
  .arctic-white-tone {
    flex-direction: column;
  }

  .sand-beige {
    font-size: 16px;
  }

  .golden-brown {
    gap: 3px;
  }
  
  .arctic-green-shine {
    font-size: 16px;
  }
}

/* ================== FOOTER END ================== */

/* ================== COOKIES START ================== */

#hbgBDAgqmW-cookie {
    display: none;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: fixed;
    bottom: 15px;
    left: 50%;
    width: 100%;
    max-width: 90%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    padding: 15px;
    background-color: #1a1a1a;
    border-radius: 20px;
    -webkit-box-shadow: 2px 3px 10px rgba(0, 0, 0, 0.5);
    box-shadow: 2px 3px 10px rgba(0, 0, 0, 0.5);
    gap: 15px;
    z-index: 999999;
    font-size: 15px;
    color: #fff;
}

#hbgBDAgqmW-cookie.show {
    display: block;
}

#hbgBDAgqmW-cookie div {
    display: inline-block;
}

#hbgBDAgqmW-cookie button {
    float: right;
    border-radius: 8px;
    background: var(--btn-gradient);
    color: var(--color-black);
    font-family: var(--font-family);
    transition: all 0.3s ease;
    text-align: center;
    cursor: pointer;
    border: none;
}

/* ================== COOKIES END ================== */