/* Local fonts */
@font-face {
  font-family: "Inter";
  src: url("assets/fonts/Inter-400.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  src: url("assets/fonts/Inter-600.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  src: url("assets/fonts/Inter-700.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Manrope";
  src: url("assets/fonts/Manrope-700.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}


* {
    box-sizing: border-box;
}

body{
  background: #08161d;
  direction: ltr;
  font-family: "Inter", "Segoe UI", Arial, sans-serif !important;
  font-size: 18px;
  margin: 0;
  padding: 0px;
  line-height: 1.25;
  color: #e8f7f7;
}

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: "Manrope", "Segoe UI", Arial, sans-serif;
  font-size: 21px;
  color: #bff7ef;
  text-align: center;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.2);
  border-bottom: 5px solid #2fbfa8;
  margin: 19px auto;
  padding-bottom: 10px;
  width: 80%;
}


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

}

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

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

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

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

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

:root {
  --white: #e9fbfa;
  --font-family: "Verdana", "Segoe UI", Arial, sans-serif;

  --1-bg: #158f7b;
  --1-color: #ecfffb;

  --2-bg: #f1b94d;
  --2-color: #1d2a2a;

}

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

@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, #8a63cc88, #1a143030), url(img/hero1.jpg?v=2);
  background-size: cover;
}

.slide2 {
  background: radial-gradient(circle, #8a63cc88, #1a143030), url(img/hero-2.jpg?v=2);
  background-size: cover;
}

.slide3 {
  background: radial-gradient(circle, #8a63cc88, #1a143030), url(img/hero-3.jpg?v=2);
  background-size: cover;
}

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

.indicator .btn{
  display: inline-block;
  height: 21px;
  width: 21px;
  background: #000;
  margin: 4px; 
  border-radius: 14px;
  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(11, 24, 45, 0.78);
  border-radius: 50px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  border: 1px solid rgba(148, 189, 245, 0.35);
}


.nav-bar-g12__list {
  gap: 28px;
  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-reverse;
  }
  .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: 400;
  }
  .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(10, 20, 36, 0.88);
    border-radius: 10px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border: 1px solid rgba(184, 214, 255, 0.28);
    position: absolute;
    z-index: 2;
    bottom: -50px;
    left: 50%;
    transform: translateX(-50%);
  }

.hamberger-menu .bar {
  display: flex;
  width: 40px;
  height: 5px;
  background-color: #d6e5ff;
  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: 22px;
}
.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: 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 19px;
  font-size: 26px;
  font-weight: 400;
  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: 28px;
  }
}
@media screen and (min-width: 576px) {
  .logo-link-g12 {
    font-size: 28px;
    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: "Manrope", 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: 72px 0;
  position: relative;
}
.aboutus-g12 .flex {
  gap: 48px;
}
.aboutus-g12-content {
  flex: 45%;
}

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

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


.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: 22px;
  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: 420px;
}



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

.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: 50px 0;
}

.statistics-g12 .flex {
  gap: 48px;
  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: 48px;
  font-family: var(--font-family);
  color: #1e90ff;
  font-style: italic;
  font-weight: 400;
}

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

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

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


.img-wrapper {
  border-radius: 22px;
  overflow: hidden;
  background-color: #0f1b31;
}

.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: 414px;
  direction: initial;
}

.img-ellement {
  width: 100%;
    height: 100%;
    object-fit: cover;
}
  
.div1 { 
    grid-area: 1 / 1 / 4 / 3; 
    background: #2f4f88;
    color: var(--white);
    padding: 19px;
    text-align: center;
    font-size: 28px;
  }
  .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: 374px;
}


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

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

}

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: 414px;
}

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

@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: 98px 0;
}

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

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

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

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

.picture {
  width: 200px;
  overflow: hidden;
  border-radius: 22px;
}
.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: #c7dbff;
  font-size: clamp(20px, 5vw, 24px);
  font-weight: 400;
}

.category-g12__contents p {
  color: #dde9ff;
  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: 14px;
    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: 420px;
    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: 48px;
  }
}

.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-reverse;
}
@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: 50px 10px 0 0;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 50px;
  color: #e6efff;
  background: rgba(15, 27, 49, 0.78);
  border: 1px solid rgba(186, 215, 255, 0.24);
  border-radius: 16px;
  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: 22px;
  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: 14px;
  font-weight: 400;
  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: 14px;
}

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

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

.form-section {
  background-image: url(picgallery/background/bg-all-3698ca134085dd.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: rgba(13, 23, 40, 0.92);
  padding: 19px;
  border-radius: 50px;
  margin: 0 auto;
}
@media screen and (min-width: 576px) {
  .form-block-g12 {
    padding: 35px 50px;
  }
}

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

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

.input-form-element__element,
.textarea-form-element__element,
.input-g12 {
  background-color: #0d1c32;
  font-size: 14px;
  font-weight: 400;
  color: #3f3e3e;
  border-radius: 4px;
  padding: 10px;
  transition: all .3s;
  line-height:1.2;
  margin: 7px 0;
  width: 100%;
  outline: none;
  border: none;
  color: #ecf3ff;
  border: 1px solid rgba(179, 206, 248, 0.3);
}

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

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

.input-form-element__element::placeholder,
.textarea-form-element__element::placeholder {
  font-size: 14px;
  font-weight: 400;
  color: #b7c9e7;

}

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

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

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

.disclamer-g12 {
  padding: 50px 0;
  position: relative;
  background: radial-gradient(circle at center, #1b3a67 0%, #081224 80%);
}

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

.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: 28px 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: 34px;
  margin: 0 auto;
}

.adult-g12 img {
  display: block;
  width: 100%;
  height: auto;
}

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

.footer-g12 {
  background-image: linear-gradient(to bottom, rgba(10, 18, 32, 0.95), rgba(16, 29, 52, 0.88)), url(picgallery/background/bg-all-4698ca13408602.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: 28px 0;
  margin-bottom: 28px;
}

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

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

.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: 28px;

  }
}

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

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

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

}

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

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

}

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

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

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

.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: 400;
}

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

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

.game-page-g12 {
  position: relative;
  padding: 73px 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 {
  iframe{
    width: 100%;
    height: 100vh;
  }
}

.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: 73px 0;
  color: #e4efff;
}

.privacy-g12 li {
    margin-left: 36px;
    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.3s 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 21px;
  font-size: 17px;
  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 21px;
  font-size: 17px;
  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 21px;
  font-size: 17px;
  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 21px;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s 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);
}




.footer-logos {
  display: flex;
  justify-content: center; 
  align-items: center;
  gap: 20px;
  padding: 20px;
  flex-direction: row;
  flex-wrap: wrap;

  a img {
    max-height: 50px;
    width: 100%;
    display: block;
    max-width: none;
    transition: 0.3s linear;
    
    &:hover,
    &:hover{
      transform: scale(0.96);
      opacity: 0.8;
    }
  }
}


#nav1{
  display: block;
  position: relative;
  margin: 0 auto;

  .header-g12{
    position: relative;
    margin: 15px auto 0;
  }
}

/* Mobile pages visual refresh */
body {
  font-family: "Segoe UI", "Inter", "Trebuchet MS", Arial, sans-serif;
  color: #e6edf8;
  background: #0b1320;
}

h1, h2, h3 {
  font-family: "Verdana", "Segoe UI", Arial, sans-serif;
  color: #f2f7ff;
}

.content-cover,
.about-item article,
.faq,
.offer-inner-block {
  background: rgba(10, 20, 36, 0.88);
  color: #edf4ff;
}

.offer-btn,
.button-3,
.button-4,
.button-5 {
  background: linear-gradient(135deg, #7c9cff, #6384f5) !important;
  color: #ffffff !important;
  border: 1px solid rgba(255, 255, 255, 0.14) !important;
}

/* Final global palette override */
:root {
  --white: #f3fbff;
  --1-bg: #0f9d8a;
  --1-color: #f3fbff;
  --2-bg: #f5b64f;
  --2-color: #16323a;
}

body {
  background: #0b1c24 !important;
  color: #eaf8ff !important;
}

.header-g12 {
  background: rgba(12, 36, 46, 0.84) !important;
  border: 1px solid rgba(110, 203, 190, 0.38) !important;
}

.hero-content h1,
.nav-bar-g12__links,
.politics-links,
.copyright-g12,
.aboutus-g12__text,
.features-g12__items,
.category-g12__contents p,
.card p {
  color: #e8f8ff !important;
}

.greek-title,
.category-g12__contents h3,
.logo-link-g12 {
  color: #9cefe0 !important;
}

.disclamer-g12 {
  background: radial-gradient(circle at center, #136454 0%, #0b1c24 85%) !important;
}

.footer-g12 {
  background-image: linear-gradient(to bottom, rgba(10, 30, 38, 0.95), rgba(15, 55, 65, 0.9)), url(picgallery/background/bg-all-4698ca13408602.jpg) !important;
}

.button-1,
.button-2,
.button-3,
.button-4,
.button-5,
.offer-btn {
  background: linear-gradient(135deg, #13aa95, #0f8474) !important;
  color: #f8fffd !important;
}

.button-1:hover,
.button-2:hover,
.button-3:hover,
.button-4:hover,
.button-5:hover,
.offer-btn:hover {
  background: linear-gradient(135deg, #26c4ad, #129987) !important;
}

/* Ultimate palette switch */
:root {
  --tv-bg: #161018;
  --tv-surface: #241729;
  --tv-text: #fff2e8;
  --tv-accent: #ff7a3d;
  --tv-accent-2: #ffd166;
}

body {
  background: #161018 !important;
  color: #fff2e8 !important;
}

.background-gradient {
  background: linear-gradient(180deg, rgba(255, 122, 61, 0.28) 0%, #161018 620px) !important;
}

.background-gradient-bottom {
  background: linear-gradient(180deg, #161018 0%, #25172a 46%, rgba(37, 23, 42, 0.76) 100%) !important;
}

.header-g12 {
  background: rgba(38, 23, 42, 0.86) !important;
  border: 1px solid rgba(255, 176, 122, 0.38) !important;
}

.greek-title,
.greek-header,
.logo-link-g12 {
  color: #ffd7bf !important;
}

.faq,
.card,
.about-item article,
.disclamer-wrap,
.privacy-txt {
  background: linear-gradient(180deg, rgba(50, 31, 56, 0.92), rgba(29, 18, 33, 0.9)) !important;
  border-color: rgba(255, 170, 120, 0.36) !important;
}

.offer-btn,
.button-3,
.button-4,
.button-5 {
  background: linear-gradient(135deg, #ff7a3d, #d95a21) !important;
  color: #fff7f1 !important;
}

.offer-btn:hover,
.button-3:hover,
.button-4:hover,
.button-5:hover {
  background: linear-gradient(135deg, #ff955f, #ea6f34) !important;
}

a {
  color: #ffd166 !important;
}

a:hover {
  color: #ffe3a3 !important;
}