* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}
body {
    font-family: "Manrope", sans-serif;
    font-style: normal;
    background-color: #FFFFFF;
}

a {
    text-decoration: none;
   color: black;
}
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 115px;
    padding: 30px;
    background-color: #FFFFFF;
    z-index: 9999;
}

header>div {
    width: min(1400px, 100%);
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;

}

.language_switch {
    width: 90px;
    height: 30px;
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid black;
}

.gr_button {
   padding: 10px 8px 10px 20px;
}

.eng_button {
    padding: 10px 20px 10px 8px;
}

.selected {
    background-color: black;
    color: #FFFFFF;
}
.hero {
    height: 100vh;
    min-height: 750px;
    background-color: #183f68;
    position: relative;
    overflow: hidden;
}
.hero-text {
    margin-left:100px;
    padding-top: 200px;
    color: white;
}

@media (max-width: 680px) {
    .hero-text {
        margin: auto;
        width: 90%;
    }
}
.hero-text img {
    filter: invert(1) brightness(100);
    margin-bottom: 50px;
}

h1 {
    margin-bottom: 30px;
    font-weight: 500;
    font-size: clamp(20px, 1.5vw, 32px);
    width: min(500px, 100%);
}

.hero-text h2{
    font-weight: 100;
    font-size: clamp(16px, 1.3vw, 22px);
    width: min(450px, 100%);
}

.crowdappshero {
    position: absolute;
    top: 40px;
    right: 40px;
}
.icons-system {
    position: relative;
    width: 800px;
    height: 800px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.center-image {
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: url('/assets/images_svgs/city.jpg') center/cover no-repeat;
    box-shadow: 0 0 30px rgba(0,0,0,0.3);
}

.icons-layer {
    position: absolute;
    width: 100%;
    height: 100%;
    animation: rotateRight 60s linear infinite; 
    pointer-events: none;
}
.rings-layer {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.ring {
    position: absolute;
    border-radius: 50%;
}
.ring-1 { width: 480px; height: 480px; border: 1px solid rgba(255, 255, 255, 0.3);}
.ring-2 { width: 620px; height: 620px; border: 2px solid rgba(255, 255, 255, 0.6);}
.ring-3 { width: 760px; height: 760px; border: 2px solid white;}

.icon-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(var(--angle)) translate(var(--radius)) rotate(calc(-1 * var(--angle)));
}

.crowdapp-icon {
    width: 80px;
    height: auto;
    animation: rotateLeft 60s linear infinite;
}

.crowdapp-icon img {
    width: 120px;
}
@keyframes rotateRight {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}
@keyframes rotateLeft {
    from { transform: rotate(360deg); }
    to { transform: rotate(0deg); }
}

@media (max-width: 1420px) {
    .crowdappshero {
        position: unset;
        margin: 5rem auto 9rem auto;
        width: fit-content;
    }

    .hero {
        height: fit-content;
    }
}

@media (max-width: 800px) {
    .crowdappshero {
        position: unset;
        margin: 5rem -55% 9rem auto;
        width: fit-content;
    }
}
.ellada2 {
    background-color: white;
    padding: 0.3rem 2rem;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}
@media (max-width: 1290px) {
    .ellada2 {
        flex-direction: column;
    }
    .ellada2 div {
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
    }
    .ellada2 p:first-of-type{
        width: 90% !important;
    }
    .ellada2 p:last-of-type{
        width: 90% !important;
    }
}

.ellada2 div {
    display: flex;
    gap: 1.5rem;
    font-weight: bold;
    font-size: 14px;
}
.ellada2 p:first-of-type{
    width: 70%;
}
.ellada2 p:last-of-type{
    width: 30%;
}
.ellada2 p a:hover{
    text-decoration: underline;
}

.espa {
    width: min(400px, 100%);
}

.section-two {
    width: min(1150px,90%);
    margin: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 7rem;
    padding: 100px 0;
}

.section-two>img {
    max-width: 330px;
}

.section-two>div{
    width: min(500px,90%);
}

.section-three {
    width: min(1250px,90%);
    margin: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    padding: 50px 0;
}
.section-three>div>h2 {
    max-width: 430px;
}
.section-three>div>p {
    max-width: 600px;
}
@media (max-width: 820px) {
    .section-two {
        flex-direction: column;
    }

    .section-three {
        flex-direction: column;
        align-items: start;
    }
}

.section-crowdapps {
    width: min(1400px, 90%);
    margin: auto;
    padding-top: 130px;
    PADDING-BOTTOM: 100px;
    text-align: center;
}

.section-crowdapps>div {
    display: flex;
    justify-content: space-between;
    margin-bottom: 150px;
}

.section-crowdapps>div>h2 {
    width: 250px;
}

.crowdapps-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    justify-items: end;
    gap: 35px;
    width: 100%;
}
.crowdapp-link {
    border: 1px solid #000000;
    border-radius: 30px;
    padding: 50px 20px 10px 30px;
    overflow: hidden;
    width: 260px;
    height: 260px;
    position: relative;
    transition: box-shadow 0.3s ease;
}
.crowdapp-link>div {
    height: 52px;
}

.crowdapp-link>h3 {
    margin-bottom: 15px;
}
.crowdapps-arrow {
    position: absolute;
    top: 15px;
    right: 25px;
    transition: transform 0.3s ease;
}

.crowdapp-link:hover {
    box-shadow: 0 1px 2px rgba(0,0,0,0.06), 0 10px 30px rgba(0,0,0,0.10);
}
.crowdapp-link:hover .crowdapps-arrow {
    transform: translateX(10px);
}
@media (max-width: 782px){
    .section-crowdapps>div {
        flex-direction: column;
        gap: 30px;
    }

    .crowdapps-container {
        justify-items: center;
    }
}

#video-suita{
    margin-bottom: 14rem;
    background-color: #F5F5F5;
    padding: 6rem 0;
}
.video-suita-wrapper {
    width: min(1400px, 90%);
    margin: auto;
    display: flex;
    flex-wrap: wrap;
    gap:2rem;
    align-items: center;
}

.video-suita-wrapper h2 {
    flex-grow: 1;
    flex-basis: 10;
    max-width: 400px;
}

.video-suita-wrapper h2 a:hover {
    text-decoration: underline;
}
.video-suita-wrapper video {
    flex-grow: 1;
    flex-basis: 10;
   width: min(850px, 90%);
}

.section-contact > div:first-of-type {
    width: min(1400px, 90%);
    margin: auto;
    padding-bottom: 40px;
}

.section-contact > div:nth-of-type(2) {
    width: 100%;
    background-color: #F7F7F8;
    padding: 140px 0 120px 0;
    position: relative;
}
.section-contact h2{
    max-width: 220px;
}

.section-contact h3{
    margin-top: 30px;
}
.contact-container {
    width: min(1400px, 90%);
    margin: auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(560px, 1fr));
}

.contact-left-content{
    display: flex;
    gap: clamp(1rem, 5vw, 115px);
    width: fit-content;
}

@media (min-width:1170px) and (max-width: 1400px){
    .contact-left-content{ flex-direction: column; }
}

@media (max-width: 660px){
    .contact-left-content{
        flex-direction: column;
    }

    .contact-right-card {
        width: fit-content;
    }
}
.contact-left-content div {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.contact-left-content a {
    font-size: 15px;
}

.contact-left-content a:hover {
    text-decoration: underline;
}

.contact-right-card {
    background-color: #F7F7F8;
    border-radius: 25px;
    overflow: hidden;
    padding: 80px 60px 90px 60px;
    position: absolute;
    top:-40%;
    right: 3%;
    display: flex;
    align-items: center;
    gap: 60px;
}

.contact-right-card::after {
    content: "";
    display: block;
    background: linear-gradient(90deg, #f26a6c, #f4911c, #fec41a, #91ce4c, #48b75b, #22afe4, #2a7fd9, #8d65ae);
    height: 35px;
    width: 100%;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
}
.contact-right-card div:first-of-type div{
    display: flex;
    align-items: end;
    gap: 0.5rem;
    margin-bottom: 20px;
}

.contact-link:hover {
    text-decoration: underline;
}

.media {
    display: flex;
    justify-content: start;
    gap: 0.8rem !important;
    margin-top: 2rem;
}

.contact-buttons-container {
    display: flex;
    align-items: end;
    gap: 60px;
}

@media (max-width: 420px) {
    .contact-buttons-container {
        flex-direction: column;
        align-items: start;
    }
}

.contact-buttons {
    max-width: 190px;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.contact-button-1, .contact-button-2 {
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    color: white;
    font-weight: 700;
    width: fit-content;
    transition: opacity 0.3s ease;
}
.contact-button-1{
    background-color: #F3911C;
}
.contact-button-2 {
    background-color: #2A80D8;
}

.contact-button-1:hover , .contact-button-2:hover {
    opacity: 0.7;
}

@media (max-width: 1170px){
    .contact-right-card {
        position: unset;
        gap: 60px;
        padding: 80px 0 90px 0;
        align-items: start;
    }

    .section-contact > div:nth-of-type(2) {
        padding: 40px 0 0 0;
    }
}

@media (max-width: 870px){
    .contact-right-card {
        flex-direction: column;
        
    }
}

footer {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap:10px;
    height: 110px;
}

footer>a {
    display: flex;
    align-items: center;
    gap: 8px;
}

footer>a:hover {
    text-decoration: underline;
}