html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  vertical-align: baseline;
}
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}
html,
body {
  height: 100%;
}
body {
  line-height: 1.2;
}
ol {
  padding-left: 0;
  list-style: none;
}
ul {
  padding-left: 0;
  list-style: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
a {
  text-decoration: none;
  color: inherit;
  display: inline-block;
}
p {
  line-height: 1.5;
}

/* */
html {
  box-sizing: border-box;
}
*,
* ::before,
::after {
  box-sizing: inherit;
}
/*************************************************/

@font-face {
  font-family: "Poppins";
  src: url("/fonts/Poppins-SemiBold.eot");
  src: url("/fonts/Poppins-SemiBold.eot?#iefix") format("embedded-opentype"),
    url("/fonts/Poppins-SemiBold.woff2") format("woff2"),
    url("/fonts/Poppins-SemiBold.woff") format("woff"),
    url("/fonts/Poppins-SemiBold.ttf") format("truetype"),
    url("/fonts/Poppins-SemiBold.svg#Poppins-SemiBold") format("svg");
  font-style: normal;
  font-weight: 600; /* Semibold */
  font-display: swap;
}

@font-face {
  font-family: "Poppins";
  src: url("/fonts/Poppins-Regular.eot");
  src: url("/fonts/Poppins-Regular.eot?#iefix") format("embedded-opentype"),
    url("/fonts/Poppins-Regular.woff2") format("woff2"),
    url("/fonts/Poppins-Regular.woff") format("woff"),
    url("/fonts/Poppins-Regular.ttf") format("truetype"),
    url("/fonts/Poppins-Regular.svg#Poppins-Regular") format("svg");
  font-style: normal;
  font-weight: 400; /* Regular */
  font-display: swap;
}
body {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  overflow-x: hidden !important;
}

/** blank */

:root {
  --color-blue: #4970d4;
  --color-dark: #2d2f36;
  --color-black: #221c1e;
  --color-yellow: #ffd758;
  --color-light-grey: #f7f7f7;
}
.wrap {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  position: relative;
  overflow-x: hidden !important;
}
.main {
  flex: auto;
}
.container {
  max-width: 1220px;
  margin: 0 auto;
  padding: 0 20px;
}
.header__container,
.footer__container {
  max-width: 1440px;
  padding: 0 30px;
  margin: 0 auto;
}
.section {
  padding: 80px 0;
}
.section__title {
  font-family: "Poppins";
  font-weight: 700;
  font-size: 2.875rem;
  margin-bottom: 30px;
}
.section__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.bg__custom-grey {
  background-color: var(--color-light-grey);
}
.c-yellow {
  color: var(--color-yellow);
}
.c-black {
  color: var(--color-dark);
}
.c-white {
  color: white;
}
.bg__dark {
  background-color: var(--color-dark);
}
.bg__black {
  background-color: var(--color-black);
}
/** blank */

/* * header*/

.header__wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 2px;
}
.logo__link {
  margin-right: 60px;
}
.logo__img {
  max-width: 160px;
  height: auto;
  object-fit: cover;
}
.nav__list {
  display: flex;
  align-items: center;
}
.header__nav {
  display: flex;
  align-items: center;
}
.header nav ul {
  list-style: none;
  text-align: center;
}
.header nav ul li {
  display: inline-block;
}
.header nav ul li a {
  display: block;
  padding: 22px 10px;
  text-decoration: none;
  color: var(--color-dark);
  font-weight: 700;
  border-bottom: 1px solid transparent;
  position: relative;
}
.header nav ul li.active {
  position: relative;
}
.header nav ul li.active::after {
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 5px;
  content: ".";
  color: transparent;
  background: var(--color-blue);
  border-radius: 2px;
}
.header nav ul li a,
.header nav ul li a:after,
.header nav ul li a:before {
  transition: all 0.5s;
}
.header nav ul li a:hover {
  color: #fff !important;
}

.header nav.shift ul li a {
  position: relative;
  z-index: 1;
}
.header nav.shift ul li a:hover {
  color: #91640f;
}
.header nav.shift ul li a:after {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  width: 100%;
  height: 1px;
  content: ".";
  color: transparent;
  background: var(--color-blue);
  visibility: none;
  opacity: 0;
  z-index: -1;
  border-radius: 2px;
}
.header nav.shift ul li a:hover:after {
  opacity: 1;
  visibility: visible;
  height: 100%;
}

.feedback {
  padding: 11px 22px;
  border-radius: 40px;
  border: 1px solid var(--color-blue);
  color: var(--color-blue);
  background-color: #fff;
  transition: 0.5s all;
}
.feedback:hover {
  scale: 1.06;
  background-color: var(--color-blue);
  color: #fff;
}
.burger-menu {
  display: none;
}

/* * header*/

/* * main */

/* * intro  */

.intro {
  background: #221c1e;
}
.intro__wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.intro__content {
  padding: 150px 70px;
}
.intro__img {
  mix-blend-mode: screen;
  height: 100%;
  width: 100%;
}

.intro__title {
  font-size: 4rem;
  font-family: "Poppins";
  font-weight: 700;
  color: #fff;
  margin-bottom: 16px;
}
.intro__text {
  font-size: 1.25rem;
  color: #fff;
  margin-bottom: 30px;
}
.contact__us {
  padding: 8px 50px;
  border-radius: 30px;
  background-color: var(--color-yellow) !important;
  font-weight: 600;
}

/* * intro  */

/* * services  */
.anchor-offset {
  position: absolute;
  top: -140px;
  height: 1px;
  width: 1px;
  visibility: hidden;
}
.services__items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: center;
  grid-gap: 25px;
  position: relative;
}
.services__item {
  background-color: #fff;
  padding: 20px;
  border-radius: 4px;
  box-shadow: 0 1px 3px 1px rgba(0, 0, 0, 0.15);
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.services__item-top {
  display: flex;
  gap: 30px;
  align-items: center;
  margin-bottom: 15px;
}
.services__item-img {
  max-width: 60px;
  width: 100%;
  object-fit: cover;
}
.services__item-title {
  font-family: "Poppins";
  font-size: 1.375rem;
  font-weight: bold;
}
/* * services  */

/* * solution */

.solutions__swiper {
  height: 370px;
  overflow-x: visible;
}

.solutions__swiper .swiper {
  width: 100%;
  height: 100%;
  z-index: 30;
  overflow: visible;
}

.solutions__swiper .swiper-slide {
  position: relative;
  overflow: hidden;
  width: calc(26.2% - 30px);
  transition: width 0.5s ease-in-out, transform 0.5s ease-in-out;
  border-radius: 10px;
  cursor: grab;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}
.solutions__swiper .swiper-slide:hover {
  width: calc(52.4% - 30px);
}
.solutions__swiper .swiper-slide:last-child {
  margin-right: 260px !important;
}

.solutions__swiper .swiper-slide img {
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  object-fit: cover;
}

.solution__content {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 20px;
  text-align: left;
  height: 100%;
  box-sizing: border-box;
}

.solution__content h3 {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 30px;
  max-width: 250px;
}

.solution__text {
  opacity: 0;
  transform: translateY(150px);
  transition: opacity 0.5s ease-in-out, transform 0.5s ease-in-out;
}

.solutions__swiper .swiper-slide:hover .solution__text {
  opacity: 1;
  transform: translateY(0);
}

.solutions .swiper-button-next,
.solutions .swiper-button-prev {
  position: relative;
  background: none;
  border: none;
  outline: none;
  cursor: pointer;
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: color 0.3s ease;
  border-radius: 50%;
  box-shadow: 0 1px 3px 1px rgba(0, 0, 0, 0.15);
}
.solutions .swiper-button-next {
  padding: 0 5px 0 0;
}
.solutions .swiper-button-prev {
  padding: 0 0 0 5px;
}
.solutions .swiper-button-next:hover::after,
.solutions .swiper-button-prev:hover::after {
  border-left: 2px solid var(--color-blue);
  border-bottom: 2px solid var(--color-blue);
}

.solutions .swiper-button-next::after,
.solutions .swiper-button-prev::after {
  content: "";
  display: inline-block;
  width: 16px;
  height: 16px;
  border-left: 2px solid var(--color-dark);
  border-bottom: 2px solid var(--color-dark);
}

.solutions .swiper-button-next::after {
  transform: rotate(-135deg);
}

.solutions .swiper-button-prev::after {
  transform: rotate(45deg);
}

.solutions-btns {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
}
/* * solution */

/* * contact us */

.contactus__block {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

/* * contact us */

/* * clients */

.client__items-wrap {
  overflow-x: auto;
  overflow-y: hidden;
  padding: 0 15px;
  scroll-behavior: smooth;
  z-index: 9999;
}
.client__items-wrap::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.061);
  border-radius: 10px;
  background-color: #f5f5f500;
}
.client__items-wrap::-webkit-scrollbar {
  width: 2px;
  background-color: #f5f5f500;
}

.client__items-wrap::-webkit-scrollbar-thumb {
  border-radius: 10px;
  background-color: #bababa55;
}
.clients__items {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
  flex-wrap: nowrap;
  margin-left: 0;
  padding-left: 0;
}

.client__item {
  flex: 0 0 auto;
}

.client__item img {
  max-width: 150px;
  width: 100%;
  object-fit: cover;
}

/* * clients */

/* * partners */
.partner__items-wrap {
  overflow: visible;
  padding: 0 15px;
  scroll-behavior: smooth;
  z-index: 9999;
}

.partner__items-wrap .swiper-wrapper {
  display: flex;
  align-items: center;
  justify-content: start;
}

.partner__item {
  flex: 0 0 auto;
  height: 100px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.partner__item img {
  max-width: 150px;
  width: 100%;
  object-fit: cover;
}

.partners-btns {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
}

.partners .swiper-button-next,
.partners .swiper-button-prev {
  position: relative;
  background: none;
  border: none;
  outline: none;
  cursor: pointer;
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: color 0.3s ease;
  border-radius: 50%;
  box-shadow: 0 1px 3px 1px rgba(0, 0, 0, 0.15);
}
.partners .swiper-button-next {
  padding: 0 5px 0 0;
}
.partners .swiper-button-prev {
  padding: 0 0 0 5px;
}
/* Принудительно оставляем кнопки активными */
.partners .swiper-button-next,
.partners .swiper-button-prev {
  opacity: 1 !important;
  pointer-events: auto !important;
}
.partners .swiper-button-next::after,
.partners .swiper-button-prev::after {
  content: "";
  display: inline-block;
  width: 16px;
  height: 16px;
  border-left: 2px solid var(--color-dark);
  border-bottom: 2px solid var(--color-dark);
}
.partners .swiper-button-next:hover::after,
.partners .swiper-button-prev:hover::after {
  border-left: 2px solid var(--color-blue);
  border-bottom: 2px solid var(--color-blue);
}

.partners .swiper-button-next::after {
  transform: rotate(-135deg);
}

.partners .swiper-button-prev::after {
  transform: rotate(45deg);
}
/* * partners */

/* * about us */

.about__us-id {
  position: absolute;
  top: -40%;
}

.aboutus__wrap {
  display: flex;
  align-items: flex-start;
  gap: 30px;
  position: relative;
  width: 100%;
}
.aboutus-left {
  flex-basis: 60%;
}
.aboutus-right {
  flex-basis: 40%;
  height: 100%;
}
.aboutus-right img {
  border-radius: 10px;
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.aboutus__img-tablet {
  width: 100%;
  margin-bottom: 20px;
  display: none;
}
.aboutus__stat {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: center;
  white-space: nowrap;
  grid-gap: 30px;
  padding-right: 30px;
}
.aboutus__stat-item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.aboutus__stat-item h2 {
  color: var(--color-blue);
  font-size: 2.875rem;
  font-family: "Poppins";
  font-weight: bold;
}
.aboutus__stat-item p {
  color: var(--color-dark);
  font-family: "Poppins";
  font-weight: 600;
}

/* * about us */

/* * values  */

.values__items {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}
.values__item-top {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 20px;
}
.values__icon {
  width: 60px;
  height: 40px;
}
.values__item-title {
  color: var(--color-blue);
  font-size: 1.875rem;
  font-family: "Poppins";
  font-weight: 600;
}

/* * values  */

/* * trust us */

.section__title {
  text-align: center;
  font-size: 32px;
  margin-bottom: 20px;
}

.testimonials-slider {
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  padding-top: 20px;
  padding-left: 50px;
  padding-right: 50px;
  overflow: visible;
}
.testimonials-slider .swiper-wrapper {
  display: flex;
  align-items: stretch;
  padding-bottom: 80px;
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.testimonials-slider .swiper-slide {
  display: flex;
  flex-direction: column;
  justify-content: start;
  height: auto;
  background: #fff;
  border-radius: 8px;
  padding: 20px;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
  box-sizing: border-box;
  flex-grow: 1;
}
.testimonial-card-top {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 20px;
}
.testimonial-logo {
  width: 80px;
  height: 80px;
  object-fit: contain;
}
.testimonial-card-top-desc h3 {
  color: var(--color-blue);
  font-size: 1.125rem;
  font-family: "Poppins";
  font-weight: 900;
}
.testimonial-card-top-desc p {
  font-size: 0.9rem;
  font-family: "Poppins";
  font-weight: 400;
  color: rgb(167, 167, 167);
}

.testimonials-slider .swiper-button-prev,
.testimonials-slider .swiper-button-next {
  position: relative;
  width: 36px;
  height: 36px;
  transform: translateY(4px);
}
.testimonials-slider .swiper-button-prev::after,
.testimonials-slider .swiper-button-next::after {
  font-size: 1rem;
  color: var(--color-dark);
  font-weight: 700;
}
.testimonials-slider .swiper-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.swiper-pagination-bullet {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  line-height: 20px;
  color: var(--color-dark);
  background-color: #fff;
  opacity: 1;
  font-family: "Poppins";
  font-weight: 500;
}

.swiper-pagination-bullet-active {
  background: var(--color-yellow);
}

.testimonials-slider-bottom {
  display: flex;
  align-items: center;
  justify-content: center;
}
.testimonials-slider-bottom-wrap {
  position: relative;
  display: flex;
  align-items: center;
  gap: 20px;
}

.testimonial-card p {
  flex-grow: 1;
}

/* * trust us */

/* * contact us form */

form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.form__group-email__number {
  display: flex;
  flex-direction: row;
  justify-content: center;
  width: 100%;
  gap: 20px;
}

form label {
  font-family: "Poppins";
  font-size: 1rem;
  color: #fff;
}

form input[type="text"],
form input[type="email"],
form textarea {
  width: 100%;
  padding: 12px;
  background-color: transparent;
  border: none;
  border-bottom: 1px solid #fff;
  color: #fff;
  font-family: "Poppins";
  font-size: 1rem;
  outline: none;
}

form textarea {
  resize: none;
}

form input[type="checkbox"] {
  margin-right: 10px;
}

.checkbox-group {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
  color: #fff;
}

.checkbox-group a {
  color: var(--color-yellow);
  text-decoration: underline;
}

.checkbox-group input[type="checkbox"] {
  /* Hide default checkbox */
  -webkit-appearance: none;
  appearance: none;
  background-color: transparent;
  border: 2px solid #fff;
  padding: 9px;
  border-radius: 5px;
  display: inline-block;
  position: relative;
  cursor: pointer;
  outline: none;
}

.checkbox-group input[type="checkbox"]:checked {
  background-color: transparent;
  border: 2px solid #fff;
}

.checkbox-group input[type="checkbox"]:checked::after {
  content: "✔";
  color: #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 0.9rem;
}

.checkbox-group input[type="checkbox"]:hover {
  border-color: var(--color-yellow);
}
.form__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.error-message {
  color: red;
  font-size: 0.875rem;
  margin-top: 5px;
  display: block;
}

/* * contact us form */

/* * main */

/* * footer */

.foooter__wrap {
  padding: 30px 0;
  display: flex;
  gap: 50px;
}
.ftlaccordion-items {
  display: flex;
  align-items: center;
  width: 100%;
  gap: 50px;
}
.ftlaccordion-item {
  width: 250px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  border: 1px solid #ddd;
  display: flex;
  flex-direction: column;
  margin-top: 0;
  margin-bottom: auto;
  width: 100%;
}

.ftlaccordion-button {
  background-color: white;
  border: none;
  width: 100%;
  text-align: left;
  padding: 10px 15px;
  font-weight: bold;
  cursor: pointer;
  outline: none;
  border-radius: 10px;
  position: relative;
}

.ftlaccordion-button .arrow {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  transition: transform 0.3s ease;
  border: solid black;
  border-width: 0 2px 2px 0;
  display: inline-block;
  padding: 3px;
}

.ftlaccordion-item.active .arrow {
  transform: translateY(-50%) rotate(225deg);
}

.ftlaccordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease;
  padding: 0 15px;
}

.ftlaccordion-content ul {
  list-style: none;
  padding-left: 0;
}

.ftlaccordion-content li {
  margin: 10px 0;
}

.ftlaccordion-content li a {
  transition: 0.3s all;
}

.ftlaccordion-content li a:hover {
  color: var(--color-blue);
}

.ftlaccordion-item.active .ftlaccordion-content {
  max-height: 999px;
}

.footer__logo-link {
  max-width: 200px;
  width: 100%;
  display: block;
}
.footer__logo-img {
  max-width: 200px;
  width: 100%;
}
.underfooter {
  background-color: var(--color-black);
}
.underfooter__wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.875rem;
  color: #fff;
  font-weight: 300;
  padding: 6px 0;
}
.underfooter__wrap a:hover {
  text-decoration: underline;
}
.underfooter__links {
  display: flex;
  gap: 10px;
  align-items: center;
}

/* * footer */

/* * button__hov  */

.button__hov {
  position: relative;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
  cursor: pointer;
  outline: none;
  overflow: hidden;
}
.button__hov span {
  position: relative;
  pointer-events: none;
}
.button__hov::before {
  --size: 0;
  content: "";
  position: absolute;
  left: var(--x);
  top: var(--y);
  width: var(--size);
  height: var(--size);
  background: radial-gradient(
    circle closest-side,
    rgba(34, 28, 30, 0.3) 30%,
    transparent 31%
  );

  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  transition: width 0.5s ease, height 0.5s ease;
}
.button__hov:hover::before {
  --size: 1000px;
}

/* * button__hov  */

/* * texting */

.texting__top {
  min-height: 250px;
}
.back__link {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-bottom: 40px;
}
.texting__wrap {
  margin-top: -150px;
  margin-bottom: 60px;
}
.texting {
  padding: 60px;
  border: solid 2px var(--color-dark);
  border-radius: 6px;
}
.texting__maintitle {
  font-size: 3.5rem;
  font-family: "Poppins";
  font-weight: bold;
  margin-bottom: 20px;
}
.texting__title {
  font-size: 2.25rem;
  font-family: "Poppins";
  font-weight: 900;
  margin-bottom: 10px;
}
.texting__block {
  margin-bottom: 20px;
}
.texting p {
  margin-bottom: 10px;
  font-weight: 500;
}
.texting ul {
  list-style-type: disc;
  list-style-position: inside;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

/* * texting */

/* * cookies */

.cookie-consent {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: white;
  border: 1px solid #ddd;
  padding: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  font-family: Arial, sans-serif;
  width: 100%;
}

.cookie-consent__wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cookie-consent p {
  margin: 0;
  font-size: 14px;
}

.cookie-consent .buttons {
  display: flex;
  justify-content: flex-end;
  font-family: "Poppins";
  margin-right: 10px;
}

.cookie-consent .cookie-button {
  border: none;
  padding: 10px 20px;
  margin-left: 10px;
  cursor: pointer;
  border-radius: 25px;
  transition: background-color 0.3s ease;
}

.cookie-consent .rules {
  background-color: var(--color-yellow);
  color: black;
}
.cookie-consent .accept {
  background-color: var(--color-blue);
  color: white;
}

.cookie-consent .cookie-button:hover {
  opacity: 0.8;
}
.cookie-consent .close-button {
  position: absolute;
  top: 5px;
  right: 5px;
  background: none;
  border: none;
  font-size: 2rem;
  cursor: pointer;
  font-family: "Poppins";
  font-weight: 400;
}

/* * cookies */

.go-home {
  color: #4970d4;
  font-size: 1.25rem;
  text-decoration: none;
}

.go-home:hover {
  text-decoration: underline;
}
