@import url('https://fonts.googleapis.com/css2?family=Yantramanav:wght@100;300;400;500;700;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Viaoda+Libre&display=swap');


* {
    box-sizing: border-box;
}

body{
  background: #87CEEB;
  direction: ltr;
  font-family: 'Yantramanav', sans-serif !important;
  font-size: 18px;
  margin: 0;
  padding: 0px;
  line-height: 1.25;
  color: #24486a;
}

a {
    text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin-top: 0;
    margin-bottom: 0;
}

.list {
    padding-left: 0;
    margin-top: 0;
    margin-bottom: 0;
    list-style: none;
    padding-inline-start: 0;
}

img {
    display: block;
}

.link {
    text-decoration: none;
}

.link:hover,
.link:focus {
    cursor: pointer;
}

.greek-title {
  font-family: 'Viaoda Libre', sans-serif;
  font-size: 24px;
  color: #1E90FF;
  text-align: center;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.2);
  border-bottom: 5px solid #FFD700;
  margin: 19px auto;
  padding-bottom: 10px;
  width: 80%;
}


@media screen and (min-width: 575px) {
  .greek-title {
    margin-bottom: 25px;
    font-size: 27px;
}

}

@media screen and (min-width: 768px) {
  .greek-title {
    margin-bottom: 41px;
    font-size: 37px;
  }
}
@media screen and (min-width: 991px) {
  .greek-title {
    padding: 20px 50px 0 20px;
    margin-bottom: 41px;
    font-size: 41px;
  }
}

@media screen and (min-width: 1200px) {
  .greek-title {
    font-size: 55px;
  }
}

  
.container-g12 {
    padding-left: 12px;
    padding-right: 12px;
    margin-left: auto;
    margin-right: auto;
    max-width: 1200px !important;
}

@media screen and (min-width: 576px) and (max-width: 990px) {
    .container-g12 {
        padding-left: 16px;
        padding-right: 16px;
    }
}

@media screen and (min-width: 991px) {
    .container-g12 {
        padding-left: 20px;
        padding-right: 20px;
    }
}

:root {
  --white: #fff;
  --font-family: 'Viaoda Libre', sans-serif;

  --1-bg: #007bff;
  --1-color: #fff;

  --2-bg: #ffd700;
  --2-color: #333;

}

.flex {
  display: flex;
  flex-direction: column;
}

@media screen and (min-width: 576px) {
  .flex {
    flex-direction: row;
  }
}

.hero {
  position: relative;
}

.slider {
  width: 100%;
  height: 100vh;
  overflow: hidden;
  position: absolute;
  direction: initial;
}

.slide-wrapper {
  display: flex;
  width: 300%;
  transition: 0.4s ease-in-out;
}

.slide {
  opacity: 0;
  transition: opacity 2s ease-in-out;
  height: 100vh;
  width: 100vw;
}

.slide1 {
  background: radial-gradient(circle, #7a7c7b8a, #68656515), url(content/background/bg-all-068701272d16c0.jpg);
  background-size: cover;
}

.slide2 {
  background: radial-gradient(circle, #7a7c7b8a, #68656515), url(content/background/bg-all-168701272d16ea.jpg);
  background-size: cover;
}

.slide3 {
  background: radial-gradient(circle, #7a7c7b8a, #68656515), url(content/background/bg-all-268701272d1711.jpg);
  background-size: cover;
}

.indicator {
  display: flex;
  justify-content: center;
  margin-top: 25px;
  position: relative;
  bottom: 10%;
  z-index: 1;
}

.indicator .btn{
  display: inline-block;
  height: 24px;
  width: 24px;
  background: #000;
  margin: 4px; 
  border-radius: 16px;
  cursor: pointer;
  transition: all 0.4s ease-in-out;
}

.indicator .btn.active{
  width: 40px;
  background: var(--white);
}

.hero .container-g12 {
  padding-top: 20px;
  height: 100vh;
}
.header-g12 {
  background: rgba(255, 255, 255, 0.2);
  border-radius: 41px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  border: 2px solid rgba(255, 255, 255, 0.3);
}


.nav-bar-g12__list {
  gap: 25px;
  justify-content: center;
  align-items: center;
  flex-direction: row;

}

.nav-bar-g12__links {
  padding: 19px 0;
  font-size: 18px;
  display: inline-block;
  color: var(--white);
}

@media screen and (max-width: 990px) {
  .header-g12 {
    position: absolute;
    width: 93%;
    z-index: 1;
    padding: 19px 0;
  }
  .nav-bar-g12__list {
    gap: 0;
    flex-direction: column;
  }
  .nav-bar-g12__item.menu {
    display: none;
    transition: all 0.4s ease-in-out;
  }
  .header-g12.active .nav-bar-g12__item.menu {
    display: block;
  }
  .header-g12.active .nav-bar-g12__item.nav-logo{
    display: none;
  }
  .header-g12.active .nav-bar-g12__item.menu a {
    color: #131313;
    font-weight: 700;
  }
  .indicator {
    display: none;
  }

}

.hamberger-menu {
  display: flex;
  justify-content: center;
  flex-direction: column;
  height: 50px;
  width: 60px;
  flex-shrink: 0;
  cursor: pointer;
  align-items: center;
  background: rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    position: absolute;
    z-index: 2;
    bottom: -50px;
    left: 50%;
    transform: translateX(-50%);
  }

.hamberger-menu .bar {
  display: flex;
  width: 40px;
  height: 5px;
  background-color: #110d35;
  margin: 3px 0;
  transition: 0.1s;
}

@media screen and (min-width: 991px) {
  .navigation-block {
    display: none;
  }
}

.navigation-block.is-active .bar {
  width: 30px;
  border-radius: 18px;
}
.navigation-block.is-active  .bar:nth-child(1) {
  transform: rotateZ(45deg) translate(7.5px, 7.5px);
}
.navigation-block.is-active  .bar:nth-child(2) {
  transform: translateX(0px) rotateZ(45deg);
}
.navigation-block.is-active  .bar:nth-child(3) {
  transform: rotateZ(-45deg) translate(7.5px, -7.5px);
}



.logo-link-g12 {
  font-family: var(--font-family);
  font-size: 25px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 19px;
  font-size: 27px;
  font-weight: 700;
  color: #9ff1ff;
  word-break: break-word;
  line-height:1.2;
  margin: 0 19px;
  padding: 0 10px;
  flex-direction: column;
  text-align: center;
}

@media screen and (min-width: 425px) {
  .logo-link-g12 {
    font-size: 25px;
  }
}
@media screen and (min-width: 576px) {
  .logo-link-g12 {
    font-size: 25px;
    flex-direction: row;
  }
}

@media screen and (min-width: 768px) {
  .logo-link-g12 {
    align-items: center;
    justify-content: center;
    text-align: center;
  }
}

.hero-content {
  align-content: center;
  width: 80%;
  margin: 0 auto;
  position: relative;
  top: 25%;
}
.hero-content h1 {
  text-align: center;
  color: var(--white);
  font-size: clamp(28px, 3vw, 36px);
  font-family: var(--font-family);
  text-shadow: #3f7982 1px 0 10px;
}

@media screen and (max-width: 767px) {
  .hero-content h1 {
    font-size: clamp(21px, 6vw, 28px);
  }
}

@media screen and (max-width: 990px) {
  .hero-content {
    top: 45%;
  }
}

.wave {
  position: absolute;
  bottom: -1px;
}

.aboutus-g12 {
  padding: 68px 0;
  position: relative;
}
.aboutus-g12 .flex {
  gap: 55px;
}
.aboutus-g12-content {
  flex: 45%;
}

.aboutus-g12__text {
  font-size: 18px;
  color: #24486a;
}

.aboutus-g12__text.cut {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: 25px;
}


.about-images-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 55%;
}

.about-images {
  aspect-ratio: 1 / 2;
  border: solid 5px var(--white);
  border-radius: 18px;
  transform: skew(0, -6deg);
}

.about-images:nth-child(1) {
  height: 50%;
  margin-top: 16%;
  width: 30%;
}
.about-images:nth-child(2) {
  height: 70%;
  width: 35%;
  margin-top: 9%;
}
.about-images:nth-child(3) {
  width: 45%;
  height: 100%;
  max-height: 354px;
}



.about-images img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
}

.bg-element {
  filter: grayscale(1);
  position: absolute;
  width: 200px;
  transform: rotate(5deg);
  z-index: -1;
  opacity: 0.1;
}

@media screen and (max-width: 400px) {
  .bg-element {
    max-width: 200px;
  }
}

.el-01 {
  top: 10%;
  left: 5%;
}

.el-02 {
  bottom: 0;
  right: 8%;
  transform: rotate(-10deg);
}

.statistics-g12 {
  padding: 41px 0;
}

.statistics-g12 .flex {
  gap: 55px;
  justify-content: space-between;
  align-items: baseline;
}
@media screen and (max-width: 575px) {
  .statistics-g12 .flex {
    align-items: center;
  }
}

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

.statistics-g12__item h3 {
  font-size: 55px;
  font-family: var(--font-family);
  color: #1e90ff;
  font-style: italic;
  font-weight: 700;
}

.statistics-g12__item p {
  font-size: 19px;
  color: var(--white);
}

.features-g12 {
  position: relative;
  padding: 87px 0;
}

.features-g12 .flex{
  gap: 25px;
}


.img-wrapper {
  border-radius: 18px;
  overflow: hidden;
  background-color: var(--white);
}

.img-wrapper-inn {
  position: relative;
  justify-content: flex-end;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-template-rows: repeat(5, 1fr);
  grid-column-gap: 5px;
  grid-row-gap: 5px;
  max-height: 582px;
  direction: initial;
}

.img-ellement {
  width: 100%;
    height: 100%;
    object-fit: cover;
}
  
  .div1 { 
    grid-area: 1 / 1 / 4 / 3; 
    background: #1e90ff;
    color: var(--white);
    padding: 19px;
    text-align: center;
    font-size: 25px;
  }
  .div2 { grid-area: 1 / 3 / 4 / 6; }
  .div3 { grid-area: 4 / 3 / 6 / 6; }
  .div4 { 
    grid-area: 3 / 1 / 6 / 4;
    z-index: 1;
    border-top-right-radius: 20px;
    border-top: 5px solid var(--white);
    border-right: 5px solid var(--white);
  }

  .div1 h3 { 
    display: none;
}

.img-ellement img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  max-height: 344px;
}


.features-g12__list {
  display: flex;
  flex-direction: column;
  gap: 19px;
}

.features-g12__items {
  font-size: 18px;
  color: #24486a;

}

ul.features-g12__list li.features-g12__items::before {
  content: '';
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' class='ionicon' viewBox='0 0 512 512'%3e%3cpath fill='none' stroke='%231E90FF' stroke-linecap='round' stroke-linejoin='round' stroke-width='32' d='M416 128L192 384l-96-96'/%3e%3c/svg%3e");
  height: 20px;
  width: 20px;
  display: inline-block;
  background-size: 20px;
  background-repeat: no-repeat;
  background-position: 0 0;
}

.el-03 {
  left: 50px;
  top: 20px;
  width: 250px;
  max-height: 582px;
}

.el-04 {
  right: 25px;
  bottom: 0;
  width: 350px;
  max-height: 582px;
}

@media screen and (min-width: 576px) {
  .features-gallery {
    width: 60%;
  }
  .features-g12__content {
    width: 40%;
  }
  .div1 h3 { 
    display: block;
    font-size: clamp(20px, 3vw, 30px);
  }
}

.category-g12 {
  padding: 87px 0;
}

.category-g12__list {
  padding-top: 68px;
  padding-left: 0;
  padding-right: 0;
  display: flex;
  align-items: center;
  flex-direction: column;
}

.category-g12__item {
  display: flex;
  gap: 37px;
  margin-bottom: 68px;
  align-items: center;
  text-align: center;
  flex-direction: column;
}

.category-g12_imgs {
  height: 354px;
  flex: 1;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;}

.picture-border {
  width: 200px;
  height: 200px;
  transform: rotate(45deg);
  border-radius: 18px;
  border: 4px solid var(--white);
  position: relative;
  z-index: 0;
}

.picture {
  width: 200px;
  overflow: hidden;
  border-radius: 18px;
}
.picture > img {
  max-width: 100%;
  transform: rotate(-45deg) scale(1.42);
  aspect-ratio: 1;
  object-fit: cover;
}


.category-g12__contents {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.category-g12__contents h3 {
  color: #1e90ff;
  font-size: clamp(20px, 5vw, 24px);
  font-weight: 700;
}

.category-g12__contents p {
  color: #365e7e;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  text-overflow: ellipsis;

}

@media screen and (min-width: 576px) {
  .category-g12__item {
    margin-top: -100px;
    text-align: left;
    gap: 12px;
    flex-direction: row;
  }
  .category-g12__item:nth-child(even) {
    flex-direction: row-reverse;
  }

}

@media screen and (min-width: 768px) {
    .category-g12__item {
      gap: 19px;
    }  
  .picture {
    position: absolute;
    left: calc(20px* 1.42);
    bottom: calc(20px* 1.42);
    z-index: 1;  
  }

  .category-g12__item:nth-child(even) .picture {
    right: calc(20px* 1.42);
    top: calc(20px* 1.42);
    left: unset;
    bottom: unset;
  }

  .category-g12__line {
    width: 4px;
    height: 354px;
    background-color: var(--white);
    position: relative;
    direction: initial;
  }
  
  .category-g12__line::before {
    content: "";
    width: 20px;
    height: 20px;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    transform: translateX(-40%);
    background: var(--white);
    z-index: 1;
  }
}

@media screen and (min-width: 991px) {
  .category-g12__item {
    gap: 55px;
  }
}

.comments-g12 {
  position: relative;
}
.comments-g12 .greek-title {
  margin-bottom: 90px;
}

.cards {
  display: flex;
  transition: transform 0.4s ease-in-out;
  justify-content: space-around;
  flex-direction: column;
}
@media screen and (min-width: 768px) {
  .cards {
    flex-direction: row;
  }
}

@media screen and (min-width: 991px) {
  .cards {
    gap: 10%;

  }
}

.card {
  flex: 1;
  text-align: center;
  padding: 19px;
  margin: 41px 10px 0 0;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 41px;
  color: #365e7e;
  align-items: center;
  max-width: 500px;
  margin: 0 auto;
}

@media screen and (min-width: 991px) {
  .card.active {
    transform: scale(1.1);
    transform: scale(1.2) translateY(-10px); 
  }
}

.comment-g12__img {
  width: 100px;
  transform: rotate(45deg);
  overflow: hidden;
  border-radius: 18px;
  border: 4px solid var(--white);

}
.comment-g12__img > img {
max-width: 100%;
transform: rotate(-45deg) scale(1.42);
aspect-ratio: 1;
object-fit: cover;
}


.card h3 {
  font-size: 16px;
  font-weight: 700;
  font-family: var(--font-family);
}

.card p {
  font-size: 18px;
}

@media screen and (min-width: 991px) {
  .comment-g12__img {
    width: 200px;
  }  
  .card h3 {
    font-size: 18px;
  }  
  .card p {
    font-size: 19px;
  }
  
}

.card.active h3{
  font-size: 16px;
}

.card.active p{
  font-size: 18px;
}

.el-05 {
  left: 20px;
  transform: rotate(-1deg);
  width: 300px;
  max-height: 344px;
  top: 0;
}
.el-06 {
  right: 30px;
  transform: rotate(2deg);
  width: 300px;
  max-height: 344px;
  bottom: -20px;
}

.form-section {
  background-image: url(content/background/bg-all-368701272d1737.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  padding: 120px 0;
  margin: 80px 0 0 0;
}

.form-block-g12 {
  width: 96%;
  max-width: 500px;
  background-color: #3f3e3ede;
  padding: 19px;
  border-radius: 41px;
  margin: 0 auto;
}
@media screen and (min-width: 576px) {
  .form-block-g12 {
    padding: 35px 41px;
  }
}

.form-g12 {
  margin-top: 25px;
}

.form-block-g12 h2 {
  color: var(--white);
  text-transform: capitalize;
  font-weight: 700;
  text-align: center;
}

.input-btn-rowgroup,
.textarea-btn-rowgroup,
.input-g12 {
  background-color: var(--white);
  font-size: 16px;
  font-weight: 700;
  color: #3f3e3e;
  border-radius: 4px;
  padding: 10px;
  transition: all .2s;
  line-height:1.2;
  margin: 7px 0;
  width: 100%;
  outline: none;
  border: none;
  color: #365e7e;
}

.input-btn-rowgroup:focus,
.textarea-btn-rowgroup:focus,
.input-g12:focus {
  border-color: var(--bg-first);
}

.form-g12 label:not(.form-g12-check-label) {
  font-size: 16px;
  color: var(--white);
  margin: 10px;
}

.input-btn-rowgroup::placeholder,
.textarea-btn-rowgroup::placeholder {
  font-size: 16px;
  font-weight: 700;
  color: #365e7e;

}

.form-g12-check {
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
  margin: 19px 0;
}

.form-g12-check a {
  color: #1e90ff;
}

.form-section button {
  margin: 0 auto;
}

.disclamer-g12 {
  padding: 41px 0;
  position: relative;
  background: radial-gradient(transparent, #0a6dce);
}

.disclamer-g12 .flex {
  align-items: center;
  justify-content: center;
  gap: 25px;
}

.disclamer-g12 > .flex > div {
  flex: 1;
}

.disclamer-wrap {
  text-align: center;
  flex: 2 !important;
}

.disclamer-g12-content p {
  border-width: 3px;
  border-style: solid;
  border-image: 
  linear-gradient(to right, rgba(0, 0, 0, 0),      #0858a8,       rgba(0, 0, 0, 0)    ) 100 0%;
  border-right: 0;
  border-left: 0;
  padding: 25px 0;
  color: var(--white);
  font-size: 19px;
  text-shadow: 2px -1px 10px rgba(0, 0, 0, 0.8);
}

.disclamer-g12-content .greek-title {
  border-bottom: none;
  color: var(--white);
}

.adult-g12 {
  width: 250px;
  margin: 0 auto;
}

.el-07 {
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 300px;
  max-height: 344px;
}

.footer-g12 {
  background-image: linear-gradient(to bottom, #3d3e3f, #68676787 ), url(content/background/bg-all-468701272d175a.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.footer-p1 {
  border-width: 3px;
  border-style: solid;
  border-image: 
  linear-gradient(to right, rgba(0, 0, 0, 0), var(--white), rgba(0, 0, 0, 0)) 100 0%;
  border-right: 0;
  border-left: 0;
  border-top: 0;
  padding: 25px 0;
  margin-bottom: 25px;
}

.politics-list {
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
  justify-content: center;
  flex-direction: row;
}

.politics-links {
  font-size: 18px;
  color: var(--white);
  padding: 16px;
  font-weight: 100;
}

.politics-links:hover,
.politics-links:focus  {
  color: #1e90ff;
}

.footer-p3 {
  justify-content: space-between;
  margin: 19px 0;
}

@media screen and (min-width: 576px) {
  .footer-p3 {
    gap: 25px;

  }
}

.footer-p3 .politics-links {
  font-size: 16px;
}

.copyright-g12 {
  text-align: center;
  font-size: 12px;
  color: var(--white);
  padding-bottom: 19px;
}

.copyright-g12 a {
  color: var(--white);

}

.contact-g12 {
  position: relative;
  padding: 99px 0;
}

.contact-g12__img {
  width: 99px;
  height: 99px;
  transform: rotate(45deg);
  border-radius: 18px;
  border: 4px solid var(--white);
  position: relative;
  z-index: 0;

}

.contact-g12__img svg {
  width: 45px;
  fill: var(--white);
  transform: rotate(-45deg) scale(1.42);
}

.contact-g12 .cards {
  gap: 55px;
}

@media screen and (min-width: 768px) {
  .contact-g12 .cards {
    flex-direction: row;
    gap: 37px;
  }
}

.contact-g12 .card {
  position: relative;
}

.contact-g12 .card:not(.active) .contacts-g12_det {
  top: 50%;
  font-size: 19px;
}

.contacts-g12_det {
  position: absolute;
  font-weight: 700;
}

.contacts-g12_det > * {
  color: inherit;
}

.form-section.contact-page {
  background: unset;
  margin: unset;
}

.game-page-g12 {
  position: relative;
  padding: 99px 0;
}
.game-page-g12 .container-g12 > div {
  display: flex;
  flex-direction: column;
}

.game-page-g12 .picture-border {
  margin: 120px auto;
  width: clamp(200px, 40vw, 400px);
  height: clamp(200px, 40vw, 400px);
}

.game-page-g12 .picture {
  width: clamp(200px, 40vw, 400px);
}

.game-page-g12 .picture img {
  object-fit: contain;
}

.game-g12-content__text {
  font-size: 18px;
}

.game-frame-g12 {
  margin: 56px 0;
}

.el-08 {
  left: 30px;
  top: 0;
  transform: rotate(-1deg);
}

.el-09 {
  right: 20px;
  top: 25%;
  transform: rotate(1deg);
}
.el-10 {
  left: 40px;
  bottom: 50%;
}
.el-11 {
  right: 30px;
  bottom: 30%;
  transform: rotate(-1deg);
}

.privacy-g12 {
  padding: 99px 0;
  color: #365e7e;
}

.privacy-g12 li {
    margin-left: 34px;
    padding: 11px 0;
    list-style: inside;
}

.privacy-txt {
  word-break: break-all;
}
@media (max-width:767px) {
  .contact-g12 .card {
    width: 100%;
  }
}

 .button-1 {
  background-color: #e0e0e0; 
  color: #333;
  border: 2px solid #ccc;
  padding: 10px 19px;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
  background-color: var(--2-bg);
  color: var(--2-color);
}

.button-1:hover {
  background-color: #f0f0f0;
  box-shadow: 0 5px #999;
  transform: translateY(-2px);
}

.button-2 {
  background-color: #f0f0f0;
  color: #333;
  border: none;
  padding: 12px 24px;
  font-size: 15px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  transition-duration: 0.4s;
  cursor: pointer;
  border-radius: 4px;
  background-color: var(--2-bg);
  color: var(--2-color);
}

.button-2:hover {
  background-color: #ddd;
  box-shadow: 0 5px #999;
  transform: translateY(-2px);
}

 .button-3 {
  background-color: var(--2-bg);
  color: var(--2-color);
  border: none;
  padding: 12px 24px;
  font-size: 15px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  transition-duration: 0.4s;
  cursor: pointer;
  box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.2);
  border-radius: 4px;
}

.button-3:hover {
  box-shadow: 4px 4px 4px rgba(0, 0, 0, 0.3);
  transform: translateY(-2px);
}

.button-4 {
  background: linear-gradient(to bottom, #007bff, #ffd700);
  color: #fff;
  border: none;
  padding: 12px 24px;
  font-size: 15px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  transition-duration: 0.4s;
  cursor: pointer;
  border-radius: 4px;
}

.button-4:hover {
  background: linear-gradient(to bottom, #005cbf, #b29400);
}

.button-5 {
  background-color: var(--2-bg);
  color: var(--2-color);
  border: none;
  padding: 12px 24px;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
  box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1);
}

.button-5:hover {
  background-color: #f0f0f0;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.15);
  transform: translateY(-2px);
}

