* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --nav-main-color: rgba(0, 0, 0, 0.45);
}

body {
  overflow: auto;
  font-family: "Lato", sans-serif;
}

/* H E A D E R */
.header {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  z-index: 10;

  /* backdrop-filter: blur(25px); */
}
.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header .logo img {
  padding: 10px 0;
  width: 60px;
  vertical-align: middle;
}

.header .menu .head {
  display: none;
}

.header .menu ul {
  list-style: none;
}

.header .menu > ul > li {
  display: inline-block;
}

.header .menu > ul > li:not(:last-child) {
  margin-right: 40px;
}

.header .menu .dropdown {
  position: relative;
}

.header .menu a:link,
.header .menu a:visited {
  text-decoration: none;
  /* text-transform: capitalize; */
  font-size: 16px;
  color: #fff;
  line-height: 1.5;
  display: block;
}
.header .menu a:hover,
.header .menu a:active {
  background-color: transparent;
}
.header .menu a::first-letter {
  text-transform: uppercase;
}

.header .menu > ul > li > a {
  padding: 24px 0;
}

.header .menu > ul > .dropdown > a {
  padding-right: 15px;
}

.header .menu i {
  font-size: 10px;
  pointer-events: none;
  user-select: none;
  position: absolute;
  color: #ffffff;
  top: calc(50% - 5px);
}

.header .menu > ul > li > i {
  right: 0;
}

.header .menu .sub-menu {
  position: absolute;
  top: 100%;
  left: 0;
  width: 230px;
  padding: 15px 0;
  background-color: var(--nav-main-color);
  /* backdrop-filter: blur(80px); */
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
  z-index: 1;
  transform-origin: top;
  transform: scaleY(0);
  visibility: hidden;
  opacity: 0;
}

.header .menu .sub-menu-right {
  left: 100%;
  top: 0;
  /* background-color: var(--nav-main-color); */
}

.header .menu .sub-menu-left {
  top: 0;
  left: auto;
  right: 100%;
}

.header .menu li:hover > .sub-menu {
  opacity: 1;
  transform: none;
  visibility: visible;
  transition: all 0.5s ease;
}

.header .menu .sub-menu a {
  padding: 6px 24px;
}

.header .menu .sub-menu .dropdown > a {
  padding-right: 34px;
}

.header .menu .sub-menu span {
  background-image: linear-gradient(rgb(255, 255, 255), rgb(255, 255, 255));
  background-size: 0 1px;
  background-repeat: no-repeat;
  background-position: 0 100%;
  transition: background-size 0.5s ease;
}

.header .menu .sub-menu li:hover > a > span {
  background-size: 100% 1px;
}

.header .menu .sub-menu i {
  transform: rotate(-90deg);
  right: 24px;
}

.header-right {
  display: flex;
}

.header-right > * {
  margin-left: 25px;
}

.header-right .icon-btn {
  background-color: transparent;
  border: none;
  cursor: pointer;
  color: rgb(255, 255, 255);
  font-size: 32px;
  margin: 0 10px;
}
.header-right .icon-btn img {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  margin-top: 4px;
}
.header-right .open-menu-btn {
  display: none;
}

@media (max-width: 991px) {
  .header {
    padding: 12px 0;
  }
  .header .menu {
    position: fixed;
    right: 0;
    top: 0;
    width: 320px;
    height: 100%;
    /* background-color: var(--nav-main-color); */
    backdrop-filter: blur(80px);
    padding: 15px 30px 30px;
    overflow-y: auto;
    z-index: 1;
    transform: translateX(100%);
  }
  .header .menu.open {
    transform: none;
    border-left: 1px solid #ddd;
  }
  .header .menu .head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 25px;
  }
  .header .menu .close-menu-btn {
    height: 35px;
    width: 35px;
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: transparent;
    cursor: pointer;
    border: none;
  }
  .header .menu .close-menu-btn::before,
  .header .menu .close-menu-btn::after {
    content: "";
    position: absolute;
    width: 80%;
    height: 2px;
    background-color: #ffffff;
  }
  .header .menu .close-menu-btn::before {
    transform: rotate(45deg);
  }
  .header .menu .close-menu-btn::after {
    transform: rotate(-45deg);
  }
  .header .menu > ul > li {
    display: block;
  }
  .header .menu > ul > li:not(:last-child) {
    margin-right: 0;
  }
  .header .menu li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.25);
  }
  .header .menu li:first-child {
    border-top: 1px solid rgba(255, 255, 255, 0.25);
  }
  .header .menu > ul > li > a {
    padding: 12px 0;
  }
  .header .menu > ul > .dropdown > a {
    padding-right: 34px;
  }
  .header .menu i {
    height: 34px;
    width: 34px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    pointer-events: auto;
    cursor: pointer;
    top: 7px;
  }
  .header .menu .dropdown.active > i {
    background-color: rgba(255, 255, 255, 0.25);
    transform: rotate(180deg);
  }
  .header .menu .sub-menu {
    position: static;
    opacity: 1;
    transform: none;
    visibility: visible;
    padding: 0;
    transition: none;
    box-shadow: none;
    width: 100%;
    display: none;
  }
  .header .menu .dropdown.active > .sub-menu {
    display: block;
  }
  .header .menu .sub-menu li:last-child {
    border: none;
  }
  .header .menu .sub-menu a {
    padding: 12px 0 12px 15px;
  }
  .header .menu .sub-menu .sub-menu a {
    padding-left: 45px;
  }
  .header .menu .sub-menu .sub-menu .sub-menu a {
    padding-left: 60px;
  }
  .header .menu .sub-menu span {
    background-image: none;
  }
  .header .menu .sub-menu i {
    transform: none;
    right: 0;
  }
  .header-right .open-menu-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    width: 44px;
    cursor: pointer;
    position: relative;
    background-color: transparent;
    border: none;
  }
  .header-right .open-menu-btn .line {
    height: 2px;
    width: 30px;
    background-color: #ffffff;
    position: absolute;
  }
  .header-right .open-menu-btn .line-1 {
    transform: translateY(-8px);
  }
  .header-right .open-menu-btn .line-3 {
    transform: translateY(8px);
  }
}

@media (max-width: 460px) {
  .header-right .icon-btn {
    font-size: 26px;
    margin: 0 10px;
  }
  .header-right .icon-btn img {
    width: 26px;
    height: 26px;
    margin-top: 4px;
  }
}
/* *** *** I N D E X *** *** */
.index-main-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: url("./img/background-sp-1200x800.webP");
  min-height: 100vh;
  background-size: cover;
  background-position: center;
  background-position-y: top;
}
.index-main-container-top {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.index-logo-top {
  padding-top: 10px;
  width: 250px;
}
@media (max-width: 1050px) {
  .index-logo-top {
    width: 175px;
  }
}

.index-logo-top img {
  width: 100%;
}
.index-mzs-title,
.index-mzs-subtitle {
  text-align: center;
  margin: 5px 0;
  color: #e6e6e6;
  font-weight: bold;
  text-shadow: 0 0 10px #000000;
}
.index-mzs-title {
  text-transform: uppercase;
  padding-top: 10px;
  font-size: 48px;
}
.index-mzs-subtitle {
  font-size: 30px;
}

.index-school-title {
  text-transform: uppercase;
  font-size: 20px;
  color: #e6e6e6;
  z-index: 100;
}

.index-item-3 .index-school-title {
  line-height: 20px;
}

.index-container {
  margin-top: 25px;
  display: flex;
  justify-content: center;
}
.index-container-logo {
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.index-container-logo img {
  width: 150px;
}
@media (max-width: 1050px) {
  .index-container-logo img {
    width: 100px;
  }
}

.index-container a:link,
.index-container a:visited {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  width: 300px;
  height: 300px;
  margin: 25px;
  padding: 16px 50px;
  text-decoration: none;
  border: 3px solid #fff;
  background-size: cover;
  border-radius: 15px;
  box-shadow: 12px 12px 12px rgba(0, 0, 0, 0.6);
  transition: all 0.15s ease-in-out;
}
.index-container a:hover,
.index-container a:active {
  transform: scale(1.1);
  box-shadow: 24px 24px 24px rgba(0, 0, 0, 0.3);
  font-weight: bold;
}
.index-item::after {
  content: "";
  left: 0;
  top: 72%;
  background-color: rgba(1, 1, 1, 0.4);
  position: absolute;
  width: 100%;
  height: 28%;
  border-radius: 0 0 15px 15px;
  transition: all 0.15s ease-in-out;
}

.index-item-1 {
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
    url("./img/background-sp-300x300.webP");
  background-size: cover;
}
.index-item-2 {
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    url("./img/background-lo-300x300.webP");
  background-size: cover;
}
.index-item-3 {
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    url("./img/background-sms-300x300.webP");
  background-size: cover;
}
@media (max-width: 1050px) {
  .index-container a:link,
  .index-container a:visited {
    width: 200px;
    height: 200px;
    margin: 20px;
    padding: 8px 25px;
  }
  .index-school-title {
    font-size: 14px;
  }
  .index-item-3 .index-school-title {
    line-height: 14px;
  }
  .index-mzs-title {
    font-size: 24px;
  }
  .index-mzs-subtitle {
    font-size: 20px;
  }
}

@media (max-width: 720px) {
  .index-container {
    flex-direction: column;
    align-items: center;
    margin-top: 10px;
  }
  .index-container a:link,
  .index-container a:visited {
    margin: 10px;
  }
  .index-mzs-title {
    margin-top: 10px;
  }
}

/* A L L     N A V I G A T I O N */
.container {
  max-width: 1170px;
  margin: auto;
  padding: 0 15px;
}

/* S T A R T E R */

.starter-sp {
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
    url("./img/background-sp-1200x800.webP");
  background-size: cover;
}
.starter-sms {
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    url("./img/background-sms-1200x800.webP");
  background-size: cover;
}
.starter-lo {
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    url("./img/background-lo-1200x800.webP");
  background-size: cover;
}

.starter-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 9;
  max-width: 1170px;
  margin: auto;
  padding: 25px;
  padding-top: 100px;
  color: #f1f1f1;
  text-align: center;
  height: 100%;
  min-height: 100vh;
}

.starter-title {
  font-size: 48px;
}

.starter-subtitle {
  margin-top: 30px;
}

.starter-logo-duszniki {
  z-index: 1;
  margin-bottom: 10px;
  width: 300px;
}

@media (max-width: 991px) {
  .starter-title {
    font-size: 36px;
  }
  .starter-subtitle {
    font-size: 20px;
  }
  .starter-logo-duszniki {
    width: 250px;
  }
}
@media (max-width: 601px) {
  .starter-title {
    font-size: 28px;
  }
  .starter-subtitle {
    font-size: 18px;
  }
  .starter-logo-duszniki {
    width: 200px;
  }
}

@media (max-width: 601px) {
  .logo-duszniki {
    width: 200px;
  }
}

/* I N T R O */
.intro-sp {
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
    url("./img/background-sp-1200x800.webP");
  background-size: cover;
}
.intro-lo {
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    url("./img/background-lo-1200x800.webP");
  background-size: cover;
}
.intro-sms {
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    url("./img/background-sms-1200x800.webP");
  background-size: cover;
}
.intro-container {
  max-width: 1170px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  padding: 100px 30px 30px 30px;
  color: #f1f1f1;
  min-height: 45vh;
}
.intro-top {
  align-self: flex-end;
}
.intro-top img {
  margin-top: 25px;
  width: 300px;
  border-radius: 5px;
}
@media (max-width: 980px) {
  .intro-top img {
    width: 250px;
  }
}
@media (max-width: 630px) {
  .intro-top img {
    width: 200px;
  }
}
@media (max-width: 460px) {
  .intro-top img {
    width: 150px;
  }
}
/* * * S E C T I O N * * */

.section-h1 {
  margin-top: 20px;
  font-size: 60px;
  text-shadow: 0 0 10px #000000;
}
.section-h2 {
  font-size: 46px;
  margin-bottom: 35px;
  font-weight: bold;
  color: #0e1e4d;
}
.section-h3 {
  font-size: 28px;
  margin: 16px 0px;
  color: #0e1e4d;
}
.section-p {
  color: #0e1e4d;
  font-size: 16px;
  margin-bottom: 10px;
  line-height: 28px;
}
.section-h3:first-child {
  margin: 0 0 16px 0;
}
.section-li {
  color: #0e1e4d;
  font-size: 16px;
  margin-bottom: 10px;
  margin-left: 20px;
  line-height: 28px;
}

.section {
  min-height: 600px;
  max-width: 1170px;
  margin: 0 auto;
  padding: 30px;

  display: flex;
  flex-direction: column;
  justify-content: center;
}

.section-bottom {
  display: flex;
  column-gap: 50px;
}
.section-bottom-content {
  flex: 1 1 50%;
}
.section-bottom-image {
  flex: 1 1 50%;
  display: flex;
  justify-content: center;
  align-items: flex-start;
}
.section-bottom-image img {
  max-width: 100%;
  border-radius: 10px;
}
.triple-container {
  display: flex;
  column-gap: 25px;
  align-items: center;
  height: 100%;
  flex: 1 1 250px;
}
.triple-content img {
  max-width: 100%;
  border-radius: 10px;
  transition: all 0.15s linear;
}
.triple-content img:hover {
  transform: scale(1.1);
}
.text-orange {
  color: #996100;
  padding: 30px 0 15px;
  display: inline-block;
  font-weight: bold;
  font-size: 16px;
}
.text-bold {
  font-weight: bold;
}
.light-blue-background {
  background: #e6e9f6;
}
.m-l-30 {
  margin-left: 30px;
}

@media (max-width: 980px) {
  .section-bottom {
    flex-direction: column;
    row-gap: 30px;
  }
  .section-bottom-image {
    order: 2;
  }
  .section-bottom-content {
    order: 1;
  }
  .section-h1 {
    font-size: 48px;
  }
  .section-h2 {
    font-size: 42px;
    margin-bottom: 30px;
  }
  .section-h3 {
    font-size: 26px;
    margin: 14px 0px;
  }
}
@media (max-width: 630px) {
  .section-h1 {
    font-size: 34px;
  }
  .section-h2 {
    font-size: 34px;
    margin-bottom: 34px;
  }
  .section-h3 {
    font-size: 22px;
    margin: 12px 0px;
  }
  .image {
    max-width: 350px;
  }
}
@media (max-width: 460px) {
  .section-h1 {
    font-size: 28px;
  }
  .section-h2 {
    font-size: 28px;
    margin-bottom: 28px;
  }
  .section-h3 {
    font-size: 20px;
    margin: 10px 0px;
  }
}

/* R E K R U T A C J A */
.unordered-list {
  list-style: none;
  /* background-color: rgba(0, 0, 0, 0.3);
  display: inline-block;
  padding: 10px 20px;
  border-radius: 5px;
  box-shadow: 1px 1px 5px rgba(255, 255, 255, 0.1); */
}
.unordered-list-item {
  margin-left: 20px;
}

.unordered-list-item a:link,
.unordered-list-item a:visited {
  color: #0e1e4d;
  padding: 10px 20px;
  text-decoration: none;
  display: inline-block;
  font-weight: bold;
  transition: all 0.1s linear;
}

/* color: #0e1e4d;
  font-size: 16px;
  margin-bottom: 10px;
  line-height: 28px; */

.unordered-list-item a:hover,
.unordered-list-item a:active {
  transform: scale(1.05);
}

.unordered-list-item a::after {
  content: "";
  border-bottom: 1px solid #0e1e4d;
  display: block;
  transform: scaleX(0);
  transform-origin: 0% 50%;
  transition: all 0.3s linear;
}

.unordered-list-item a:hover::after {
  transform: scaleX(1);
}
/*NEW*/
.unordered-list-item-new {
  list-style: none;
  margin-left: 20px;
}
.unordered-list-item-new a:link,
.unordered-list-item-new a:visited {
  color: #0e1e4d;
  padding: 10px 20px;
  text-decoration: none;
  display: inline-block;
  font-weight: bold;
  transition: all 0.1s linear;
}
.unordered-list-item-new a:hover,
.unordered-list-item-new a:active {
  transform: scale(1.05);
}

ol li {
  font-weight: bold;
}

ol li ul li {
  font-weight: normal;
}

.background {
  background-color: rgba(0, 0, 0, 0.3);
  display: inline-block;
  padding: 10px 20px;
  border-radius: 5px;
  box-shadow: 1px 1px 5px rgba(255, 255, 255, 0.1);
  line-height: 1.5;
}

/* N E W    K O N T A K T */
.section-bottom-content-contact {
  display: flex;
  align-items: flex-start;
  margin: 30px 0px;
}
.section-bottom-content-contact i {
  color: #0e1e4d;
  margin-right: 20px;
  font-size: 25px;
  width: 20px;
}
.section-bottom-content-contact-icon {
  position: relative;
}
.section-bottom-content-contact-icon::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 56px;
  height: 2px;
  background-color: #996100;
}
.section-bottom-content-contact-content .section-p {
  margin-bottom: 0;
}
/* New Kontakty Links*/
.contact-link a:link,
.contact-link a:visited {
  color: #0e1e4d;
  /* padding: 0px 0px 5px; */
  text-decoration: none;
  display: inline-block;
  font-weight: bold;
  transition: all 0.1s linear;
}

.contact-link a:hover,
.contact-link a:active {
  transform: scale(1.05);
}

.contact-link a::after {
  content: "";
  border-bottom: 1px solid #0e1e4d;
  display: block;
  transform: scaleX(0);
  transform-origin: 0% 50%;
  transition: all 0.3s linear;
}

.contact-link a:hover::after {
  transform: scaleX(1);
}

/* OLD */
.border-top {
  border-top: 1px solid #ddd;
}
.footer {
  min-height: 250px;
  max-width: 1170px;
  margin: 0 auto;
  padding: 30px;
}

.footer-top {
  display: flex;
  column-gap: 25px;
  justify-content: space-between;
  flex-wrap: wrap;
}
.footer-column {
  min-width: 180px;
  padding: 25px;
}
.footer-column i {
  color: #0e1e4d;
  margin-right: 8px;
  width: 20px;
}
.footer-heading {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 15px;
  padding-bottom: 15px;
  /* border-bottom: 1px solid #0e1e4d; */
  position: relative;
}
.footer-heading::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0px;
  width: 35px;
  height: 2px;
  background-color: #996100;
}
.footer-heading p {
  font-size: 20px;
  font-weight: bold;
  color: #0e1e4d;
}
.footer-content p {
  font-size: 16px;
  color: #252525;
  margin-bottom: 10px;
}

/* N E W    F O O T E R */
.border-top {
  border-top: 1px solid #ddd;
}
.new-footer {
  min-height: 250px;
  max-width: 1170px;
  margin: 0 auto;
  padding: 35px 0px 0px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.new-footer h4 {
  margin-bottom: 20px;
  color: #0e1e4d;
  font-size: 20px;
  font-weight: bold;
}
/* .new-footer i,
.new-footer p {
  color: #252525;
} */
.new-footer-top {
  display: flex;
  justify-content: space-evenly;
  column-gap: 25px;
}
.new-footer-info {
  display: flex;
  column-gap: 10px;
  margin-bottom: 5px;
}
.new-footer-info i {
  color: #0e1e4d;
}
.new-footer-info-content p {
  color: #0e1e4d;
  /* font-weight: bold; */
}
.new-footer-bottom {
  text-align: center;
  padding: 10px 0;
}

.copyright {
  font-size: 14px;
}
/*Links on the left side in footer*/

/* .new-footer-link {
  margin-left: 20px;
} */
.new-footer-link a:link,
.new-footer-link a:visited {
  color: #0e1e4d;
  /* padding: 0px 0px 5px; */
  text-decoration: none;
  display: inline-block;
  font-weight: bold;
  transition: all 0.1s linear;
}

.new-footer-link a:hover,
.new-footer-link a:active {
  transform: scale(1.05);
}

.new-footer-link a::after {
  content: "";
  border-bottom: 1px solid #0e1e4d;
  display: block;
  transform: scaleX(0);
  transform-origin: 0% 50%;
  transition: all 0.3s linear;
}

.new-footer-link a:hover::after {
  transform: scaleX(1);
}

/*Links on the right side in footer*/
.unordered-list-item-new-footer {
  margin-left: 20px;
}

.unordered-list-item-new-footer a:link,
.unordered-list-item-new-footer a:visited {
  color: #0e1e4d;
  padding: 0px 20px 5px;
  text-decoration: none;
  display: inline-block;
  font-weight: bold;
  transition: all 0.1s linear;
}

.unordered-list-item-new-footer a:hover,
.unordered-list-item-new-footer a:active {
  transform: scale(1.05);
}

.unordered-list-item-new-footer a::after {
  content: "";
  border-bottom: 1px solid #0e1e4d;
  display: block;
  transform: scaleX(0);
  transform-origin: 0% 50%;
  transition: all 0.3s linear;
}

.unordered-list-item-new-footer a:hover::after {
  transform: scaleX(1);
}
/*Footer media*/
@media (max-width: 700px) {
  .new-footer-top {
    display: flex;
    flex-direction: column;
    row-gap: 40px;
    margin: 0 auto;
    margin-bottom: 10px;
  }
}

/* C O O K I E S */
.cookies-link:link,
.cookies-link:visited {
  color: #3b8a3d;
}
.cookies-link:hover,
.cookies-link:active {
  color: #588d5a;
}
.cookies-p {
  padding: 10px 10px;
}
.cookies-banner {
  filter: opacity(0.97);
  position: fixed;
  bottom: 0;
  left: 0px;
  width: 100%;
  background-color: #1f1d1d;
  color: white;
  text-align: center;
  padding: 15px;
  display: none; /* Domyślnie ukryty */
  justify-content: center;
  align-items: center;
  gap: 20px;
  z-index: 1000000;
}
@media (max-width: 1100px) {
  .cookies-banner {
    flex-direction: column;
  }
}
.cookies-banner p {
  margin: 0;
  font-size: 14px;
}
.cookies-content {
  max-width: 900px;
}
.cookies-buttons {
  min-width: 270px;
  padding: 15px;
}

button.cookies-button {
  margin: 0px 5px;
  padding: 10px 20px;
  font-size: 14px;
  background-color: #3b8a3d;
  color: white;
  border: none;
  cursor: pointer;
  border-radius: 5px;
  transition: background-color 0.3s;
}

button.cookies-button:hover {
  background-color: #27612a;
}

button#decline-btn.cookies-button {
  background-color: #f44336;
}

button#decline-btn.cookies-button:hover {
  background-color: #7e1f1e;
}
