/* styles.css */

@font-face {
    font-family: 'Sofia Sans';
    src: url('/fonts/SofiaSans-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Sofia Sans';
    src: url('/fonts/SofiaSans-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'Sofia Sans';
    src: url('/fonts/SofiaSans-SemiBold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
}

@font-face {
    font-family: 'Sofia Sans';
    src: url('/fonts/SofiaSans-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: 'Sofia Sans';
    src: url('/fonts/SofiaSans-Black.ttf') format('truetype');
    font-weight: 800;
    font-style: normal;
}

.in-app-browser {
-webkit-text-size-adjust: 100% !important;
text-size-adjust: 100% !important;
line-height: 1.5 !important;
font-smooth: always;
}

.facebook-browser body,
.instagram-browser body {
margin: 0 !important;
padding: 0 !important;
}

.facebook-browser * {
line-height: 1.4;
}

.instagram-browser * {
line-height: 1.6;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


html,
body {
    font-size: 16px;
    font-family: Sofia Sans, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #e1e1e1;
    height: 100%;
    width: 100%;
    overflow: hidden;
    overflow-y: auto;
}

html {
    -webkit-text-size-adjust: 100%;
    /* Prevents font resizing */
    -ms-text-size-adjust: 100%;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}


body a {
    text-decoration: none;
}

/* NAVBAR */
/* Sidebar initially hidden */

.brnav {
    display: none;
}

#menuToggle {
    display: none;
    position: relative;
    top: 2px;
    left: 10px;

    z-index: 1;

    -webkit-user-select: none;
    user-select: none;
}

#menuToggle a {
    text-decoration: none;
    color: white;


    text-shadow: 0px 2px 3px rgba(255, 255, 255, 0.2);
    transition: color 0.3s ease;
}

#menuToggle a:hover {
    color: tomato;
}


#menuToggle input {
    display: block;
    width: 60px;
    /* Increase width for a larger clickable area */
    height: 60px;
    /* Increase height for a larger clickable area */
    position: absolute;
    top: -15px;
    /* Center it around the icon */
    left: -15px;
    /* Center it around the icon */
    cursor: pointer;
    opacity: 0;
    /* Keep input invisible */
    z-index: 1;
    /* Keeps input behind the spans */
    -webkit-touch-callout: none;
}

/*
 * Just a quick hamburger
 */
#menuToggle span {
    display: block;
    width: 33px;
    height: 4px;
    margin-bottom: 6px;
    position: relative;
    background: white;
    border-radius: 3px;
    z-index: 2;
    /* Span is in front of input initially */
    transform-origin: 4px 0px;
    transition: transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1.0),
        background 0.5s cubic-bezier(0.77, 0.2, 0.05, 1.0),
        opacity 0.55s ease;
}

#menuToggle span:first-child {
    transform-origin: 0% 0%;
}

#menuToggle span:nth-last-child(2) {
    transform-origin: 0% 100%;
}


#menuToggle input:checked~span:nth-of-type(1) {
    opacity: 1;
    transform: rotate(46deg) scale(1.2);
    background: white;
    z-index: 999;
}

#menuToggle input:checked~span:nth-of-type(2) {
    opacity: 0;
    transform: scale(0);
}

#menuToggle input:checked~span:nth-of-type(3) {
    opacity: 1;
    transform: rotate(-50deg) scale(1.2);
    background: white;
    z-index: 999;
}

/*
 * Make this absolute positioned
 * at the top left of the screen
 */
#menu {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(51, 51, 51, 0.99);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-80px);
    /* Start slightly above */
    transition: opacity 0.8s ease, visibility 0.8s ease, transform 0.8s ease;
    /* Added transform transition */
    list-style: none;
}

#menuToggle input:checked~#menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    /* Slide to original position */
}

#menu li {
    padding: 15px 0;
    font-size: 22px;
    color: #ffffff;
    font-family: Arial, sans-serif;
    text-align: center;
    opacity: 0;
    /* Start invisible */
    transform: translateY(70px);
    /* Start slightly below */
    transition: opacity 0.6s ease, transform 0.8s ease;
    /* Smooth animation */
}

/* Use a common style for all li items when checked */
#menuToggle input:checked~#menu li {
    opacity: 1;
    /* Make them visible */
    transform: translateY(0);
    /* Move to original position */
}

/* Staggered delay for all list items */
#menuToggle input:checked~#menu li:nth-child(1) {
    transition-delay: 0.2s;
}

#menuToggle input:checked~#menu li:nth-child(2) {
    transition-delay: 0.4s;
}

#menuToggle input:checked~#menu li:nth-child(3) {
    transition-delay: 0.6s;
}

#menuToggle input:checked~#menu li:nth-child(4) {
    transition-delay: 0.8s;
}

#menuToggle input:checked~#menu li:nth-child(5) {
    transition-delay: 1s;
}

#menuToggle input:checked~#menu li:nth-child(6) {
    transition-delay: 1.2s;
}

#menuToggle input:checked~#menu li:nth-child(7) {
    transition-delay: 1.4s;
}

#menuToggle input:checked~#menu li:nth-child(8) {
    transition-delay: 1.6s;
    margin-top: 3rem;
}

#menuToggle input:checked~#menu li:nth-child(9) {
    transition-delay: 1.8s;
}

.con {
    color: #65BAFF !important;
}


/*
 * And let's slide it in from the left
 */
#menuToggle input:checked~ul {
    opacity: 1;
    visibility: visible;
}


.sidebar {
    display: none;
}




.navbar {
    background-color: #333333;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px 20px;
    height: 61px;
    width: 75%;
    margin-top: 50px;
    color: rgb(255, 250, 220);
    text-shadow: 0px 4px 4px rgba(0, 0, 0, 1);
}

.navbar .logo {
    color: white;
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    text-decoration: none;
    margin-right: auto;
    text-shadow: 0px 4px 4px rgba(0, 0, 0, 1);
}

.navbar ul {
    list-style: none;
    display: flex;
    font-size: 1.2rem;
	
}

.navbar ul li {
    position: relative;
}

.navbar ul li a {
    color:  rgb(255, 255, 255);;
    text-decoration: none;
    display: block;
    padding-right: 10px;
    text-shadow: 0px 4px 4px rgba(0, 0, 0, 1);
}

.dropdown-menu a {

    padding: 15px 20px;
}

.navbar ul li a:hover {
    background-color: #333333;
}

/* Dropdown container */
.navbar ul li:hover .dropdown {
    display: block;

}

.navbar ul li:hover .dropdown {
    display: block;

}

/* Dropdown styles */

.dropdown-menu {
    display: none;
    /* Hide dropdowns by default */
    position: absolute;
    /* Dropdown position */
    top: 20px;
    /* Align to the bottom of the parent */
    left: 0;
    background-color: #333333;
    min-width: 200px;
    z-index: 1;
}

.dropdown-menu.show {
    display: block;
    /* Show when active */
}

.dropdown-menu a {
    padding: 20px 20px;
    padding-top: 50px;
}

.dropdown-menu a:hover {
    background-color: #555;
    border-bottom: 1px solid white;
    padding: 35px 15px !important;

    text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.9);
}

/* Right side link */
.call-link {
    color:  #65BAFF;
    text-decoration: none;
    font-size: 1.2rem;
    margin-left: auto;
}

.call-link:hover {
    text-decoration: underline;
}


#btn {
    display: none;
}


/* Header */


header {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    box-sizing: border-box;
    width: 100%;
}

.HellenicLogo {
    width: 500px;
    height: 500px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
}

.ImageWrapper {
    margin-left: auto;
    margin-right: auto;
    display: flex;
    margin-top: 2.2rem;
}

h1 {
    font-size: 4.9rem;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    font-weight: 600;
    text-shadow: 0px 1px 1px rgb(0, 0, 0);
    line-height: 5rem;
}

.WordWrapper {
    margin-left: auto;
    margin-right: auto;
	margin-bottom: 15rem !important;
    margin-top: 15rem;
    display: flex;
    width: 75%;
    height: 470px;
    padding-top: 1.8rem;
    color: rgb(0, 0, 0);
}

/*  MAIN   */
main {
    display: flex;
    flex-direction: column;
    width: 100%;
}


.bold {
    font-weight: 700;
}

.FirstSection,
.SecondSection {
    margin-top: 7rem;
    height: 900px;
    display: flex;
}

/*  first Section */


.s1Article {
    display: flex;
    flex-direction: column;
    padding-top: 20%;
    margin-left: 1rem;

}

.s1Heading {
    font-size: 3.3rem;
    font-weight: 500;
    letter-spacing: -0.15rem;
    line-height: 4rem;
    text-align: center;
    text-shadow: 0px 2px 3px rgba(0, 0, 0, 0.2);
}


.s1Left {
    width: 45%;
    display: flex;
    justify-content: center;
}

.Map {
    width: 50rem;
    height: 29rem;
    margin-top: 3rem;
    margin-left: auto;
    margin-right: auto;

}

.s1Right {
    width: 45%;
    display: flex;
    flex-direction: column;
    /* Two cards per20row */
    /* Spacing between the cards */
    margin-left: 1rem;
    margin-top: 5.7rem;

}

.s1Right a,
.s3Right a {
    text-decoration: none;
    font-size: 0.94rem;
}

.s1Right p,
.s3Right p {
    font-weight: 500;
    font-size: 1rem;
}

.card-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    height: 300px;
    min-width: 400px;
    margin-left: 100px;
}

.card {
    background-color: rgb(255, 255, 255);
    border-radius: 5px 5px 5px 5px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
    text-align: center;
    padding: 20px;
    max-width: 400px;
    height: 100%;
    z-index: 1;
    /* Ensure the card is on top */
    position: relative;
}

.card h3 {
    width: 100%;
    margin-top: 3rem;
    font-size: 1.25rem;
    text-shadow: 0px 1px 1px rgba(0, 0, 0, 0.2);
}

.cardMg {
    margin-top: 2.65rem !important;
}

.row {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-around;
}

.row2 {
    margin-top: 7rem;
}

.icon-container {
    background-color: #C80D10;
    /* Red background */
    width: 75px;
    height: 75px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
    box-shadow: 0px 4px 5px rgba(0, 0, 0, 0.8);
}

.icon-container img {
    width: 35px;
    height: 35px;
    z-index: 500;
}

.button-wrapper {
    background-color: #333333;
    /* Light grey background behind button */
    padding: 15px 0;
    position: absolute;
    bottom: -25px;
    left: 50%;
    transform: translateX(-50%);
    width: 110%;
    /* Extend the width to be wider than the card */
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
    border-radius: 1%;
    height: 57px;

    box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.cta-button {
    background-color: #333333;
    color: white;
    border: solid 2px white;
    border-radius: 10px;
    padding: 10px 10px;
    cursor: pointer;
    font-size: 14px;
    width: 50%;
    align-items: center;
    justify-content: center;
    display: flex;
    height: 40px;
}

.cta-button:hover {
    background-color: #555;
    transition: cubic-bezier(0.23, 1, 0.320, 1);
    transition-duration: 0.5s;
}

.card h2 {
    margin-top: 1.5rem;
    font-size: 1.5rem;
}

.card p {
    margin-top: 2rem;
    text-align: left;
}

.card button {
    font-size: 0.96rem;
    font-weight: 500;
    text-shadow: 0px 2px 2px rgba(0, 0, 0, 0.2);
    letter-spacing: 0.01rem;

}

/* second Section */

.SecondSection h2,
.s2Action {
    margin-left: auto;
    margin-right: auto;
    font-size: 3.5rem;
    text-align: center;
    font-weight: 500;
    text-shadow: 0px 2px 2px rgba(0, 0, 0, 0.2);
}

.action {
    display: none !important;
    width: 15rem;
    height: 7rem;
    font-size: 1rem !important;
    margin-right: 0.5rem !important;
}

.action a {
    display: none !important;
    text-decoration: none;
    color: black;
}

.s2Action {
    margin-top: 3rem;
}

.SecondSection {
    flex-direction: column;
}


.s2Articles {
    display: flex;
    justify-content: center;
    text-align: center;
    width: 100%;
}

.s2Articles h3 {
    width: 100%;
    text-align: center;
    font-weight: 700;
    font-size: 1.4rem;

}

.s2Articles article {
    width: 30%;
    height: 30rem;
    margin-top: 5rem;
}

.s2Articles p {
    text-align: left;
    width: 80%;
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
    margin-top: 2.5rem;
    letter-spacing: -0.05rem;
    line-height: 24px;
    font-size: 1.16rem;
    font-weight: 500;
}

.s2Articles a {
    text-decoration: none;
    color: #FF6062;
}


.action {
    color: black;
    border: solid 2px black;
    border-radius: 10px;
    padding: 10px 10px;
    cursor: pointer;
    font-size: 14px;
    align-items: center;
    justify-content: center;
    display: flex;
    height: 40px;
}

.action:hover {
    background-color: lightgrey;
    transition: cubic-bezier(0.23, 1, 0.320, 1);
    transition-duration: 0.5s;
}


/* thirdSection */


.break {
    display: none;
}

.thirdSection {
    display: flex;
    height: 900px;
}

.section3Article {
    width: 55%;
    justify-content: center;
    padding-top: 4.5%;
}

.section3Article h2 {
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 4rem;
    text-align: center;
    font-size: 3.5rem;
    font-weight: 600;
    letter-spacing: -0.2rem;
    width: 100%;
    text-shadow: 0px 2px 2px rgba(0, 0, 0, 0.2);
}

.section3Article p {
    margin-left: auto;
    margin-right: auto;
    margin-top: 1.5rem;
    text-align: left;
    width: 75%;
    font-size: 1.3rem;
    font-weight: 500;
    letter-spacing: -0.01rem;
    line-height: 30px;
}


.section3Article a {
    text-decoration: none;
    color: #F11216;
}



.card-container-s3 {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    height: 250px;
    min-width: 300px;
    margin-left: 100px;
}

.card-s3 {
    background-color: white;
    border-radius: 5px 5px 5px 5px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
    text-align: center;
    padding: 20px;
    max-width: 400px;
    height: 100%;
    z-index: 1;
    position: relative;
}


.icon-container-s3 {
    background-color: #C80D10;
    width: 75px;
    height: 75px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
    box-shadow: 0px 4px 5px rgba(0, 0, 0, 0.8);
}

.icon-container-s3 img {
    width: 35px;
    height: 35px;
    z-index: 500;
}

.button-wrapper-s3 {
    background-color: #333333;
    padding: 15px 0;
    position: absolute;
    bottom: -25px;
    left: 50%;
    transform: translateX(-50%);
    width: 110%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
    border-radius: 1%;
    height: 57px;
    box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.cta-button-s3 {
    background-color: #333333;
    color: white;
    border: solid 2px white;
    border-radius: 10px;
    padding: 10px 10px;
    cursor: pointer;
    font-size: 14px;
    width: 50%;
    align-items: center;
    justify-content: center;
    display: flex;
    height: 40px;
    font-size: 0.96rem;
}

.cta-button-s3:hover {
    background-color: #555;
    transition: cubic-bezier(0.23, 1, 0.320, 1);
    transition-duration: 0.5s;
}

.mg3 {
    padding-top: 0.5rem;
}

.cardMg-s3 {
    margin-top: 2.5rem !important;
    text-shadow: 0px 1px 1px rgba(0, 0, 0, 0.2);
}

.card-s3 p {
    margin-top: 0.7rem !important;
    text-align: left;
}

.s3Right {
    margin-right: 4rem;
    padding-top: 3%;
}

/* section 4 */

.section4 {
    height: 1000px;
    display: flex;
    padding-top: 3%;
}

.section4 .s4-container a {
    color: #fff
}

.s4-article {
    flex-direction: column;
    text-align: center;
}

.s4-article h2 {
    font-size: 4.5rem;
    font-weight: 600;
    margin-bottom: 2rem;
    text-shadow: 0px 2px 2px rgba(0, 0, 0, 0.2);
    position: absolute;
    left: 0px;
    top: -40px;
    white-space: nowrap;
    overflow: visible;
}

.s4-article p {
    width: 68%;
    text-align: left;
    margin-left: 20rem;
    margin-right: auto;
    line-height: 1.7rem;
    font-size: 1.4rem;
}

.s4-left a {
    text-decoration: none;
    color: #F11216;
}

.s4-left {
    width: 50%;
    display: flex;
    height: 100%;
    flex-direction: column;
    padding-top: 10rem;
    position: relative;
    margin-left: 5rem;
}

.row3 {
    display: flex;
    align-items: center;
    margin-top: 11rem;
    margin-left: 12rem;
}

.s4r {
    margin-left: 11rem !important;
}

.s4-right {
    width: 40%;
    margin-top: -4.6rem;
    margin-left: 7rem;
    align-items: center;
    justify-content: center;
    display: flex;
    flex-direction: column;
}

.Web {
    width: 25rem;
    height: 20rem;
    margin-top: 0rem;
}

.Web2 {
    width: 35rem;
    height: 20rem;
    margin-top: 5.8rem;
}

.cardMg-s4 {
    margin-top: 1.5rem;
    text-shadow: 0px 1px 1px rgba(0, 0, 0, 0.2);
}

.cardMg-s4p {
    padding-left: 0.2rem;
}

.cardMg-s4-1 {
    margin-top: 2rem;
    text-shadow: 0px 1px 1px rgba(0, 0, 0, 0.2);
}

.cardMg-s4p-2 {
    padding-top: 1rem;
    padding-left: 0.8rem;
}

.s4card {
    width: 20rem !important;
    text-align: center !important;
    justify-content: center !important;
}


/* section 5 */

.break1 {
    display: none;
}

.section5 {
    display: flex;
    flex-direction: column;
    height: 1300px;
    width: 100%;
    align-items: center;
    justify-content: center;
}

.section5 h2 {
    margin-bottom: 5rem;
    font-size: 4rem;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    text-shadow: 0px 2px 2px rgba(0, 0, 0, 0.2);
    font-weight: 500;
}

.row4 {
    display: flex;
    justify-content: center;
    width: 100%;
    margin-top: 5rem;
    margin-right: 5rem;
    flex-wrap: wrap;
    gap: 20px;
}

/* section 6 */


.section6 {
    display: flex;
    height: 1000px;
    justify-content: center;
    align-items: center;
}

.section6 h2 {
    font-size: 3.6rem !important;
}

.s6-left {
    display: flex;
    flex-direction: column;
    width: 40%;
    align-items: center;
    height: 80%;
    padding-top: 4%;
}

.s6-left h2 {
    font-size: 4rem;
    font-weight: 500;
    text-align: center;
    text-shadow: 0px 2px 2px rgba(0, 0, 0, 0.2);
}

.s6-left p {
    font-size: 1.3rem;
    line-height: 1.6rem;
    width: 75%;
    margin-left: auto;
    margin-right: auto;
    margin-top: 8rem;
}

.s6-left a {
    text-decoration: none;
    color: #F11216;
}

.s6-right {
    display: flex;
    flex-direction: column;
    width: 40%;
    align-items: center;
    justify-content: center;
    height: 80%;
}

.s6-right a {
    font-size: 14px !important;
}

.Web3 {
    margin-left: 18.7rem;
    width: 45rem;
    height: 25rem;
}

.row6 {
    width: 100%;
    margin-right: 4rem !important;
    margin-top: 3rem !important;
}


.mg6 {
    margin-top: 1.7rem;
}


.b6 {
    font-size: 0.9rem !important;
}

/* section7 */

.section7 {
    width: 100%;
    height: 1350px;
    padding-top: 3.5%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 3%;
}

.section7 h2 {
    font-size: 4rem;
    text-align: center;
    margin-bottom: 5rem;
    text-shadow: 0px 2px 2px rgba(0, 0, 0, 0.2);
}


.faq-container {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background-color: #fff;
    border: 1px solid #333333;
    margin-bottom: 20px;
    border-radius: 5px;
}

.faq-question {
    padding: 15px;
    font-size: 1.3rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-answer {
    display: none;
    /* Initially hidden */
    padding: 30px;
    background-color: #f1f1f1;
    border-top: 1px solid black;
    font-size: 1.2rem;
}

.icon {
    font-size: 1.5rem;
    transition: transform 0.3s;
}

.faq-item.active .icon {
    transform: rotate(45deg);
    /* Rotates when active */
}

.faq-item.active .faq-answer {
    display: block;
    /* Shows answer when active */
}




/* footer */

footer {
    height: 70px;
    justify-content: center;
}



.footer-class {
    display: flex;
    flex-direction: column;
    background-color: #333333;
    align-items: center;
    width: 85%;
    height: 90%;
    margin-left: auto;
    margin-right: auto;
    border-radius: 10px;

    box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.7);
}

.foo-nav {
    margin-top: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px 20px;
    height: 61px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;

}


.foo-nav ul {
    list-style: none !important;
    display: flex;
    font-size: 1.2rem !important;
}

.foo-nav ul li {
    position: relative;
}

.foo-nav ul li a {
    color: white !important;
    text-decoration: none !important;
    padding: 15px 35px;
    display: block;

}

.foo-nav ul li a:hover {
    color: tomato !important;
}

.mail-phone a {
    color: #FF6062
}





/* MEDIA QUERIES */

@media screen and (max-width: 1890px) {
    /* Your CSS styles go here */



    .section6 h2 {
        font-size: 3.5rem !important;
    }

    .s1Article {
        width: 47rem;
    }

    .card-container {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        position: relative;
        height: 250px;
        min-width: 300px;
        margin-left: 5rem;
    }

    .card p {
        margin-top: 0.5rem !important;

    }

    .card h3 {
        font-size: 1.2rem;
        margin-top: 1.3rem;
    }

    .mgp p {
        margin-top: 1.8rem !important;
    }

    .c3h {
        font-size: 1.1rem !important;
    }

    .c3p p {
        margin-top: 1rem !important;
    }

    .c1p p {
        margin-top: 1.1rem !important;
    }

    .c1p h3 {
        margin-top: 1.6rem !important;
    }

    .cardMg {
        margin-top: 1.5rem !important;
    }

    .Map {
        width: 50rem;
        height: 29rem;
        margin-top: 3rem;
        margin-left: auto;
        margin-right: auto;

    }

    .s1Right {
        width: 45%;
        display: flex;
        flex-direction: column;
        /* Two cards per row */
        /* Spacing between the cards */
        margin-left: 5rem;
        margin-top: 5.7rem;

    }

    .s1Right a,
    .s3Right a {
        text-decoration: none;
        font-size: 0.937rem;
    }

    .s1Right p,
    .s3Right p {
        font-weight: 500;
        font-size: 0.9rem;
    }



}



@media screen and (max-width: 1822px) {
    .foo-nav ul li a {
        font-size: 1rem !important;
    }
}

@media screen and (max-width: 1793px) {
    /* Your CSS styles go here */

    .card a {
        font-size: 0.8rem !important;
    }


}

@media screen and (max-width: 1794px) {
    /* Your CSS styles go here */

    .small-hide {
        display: none;
    }

    .c1p p {
        margin-top: 2rem !important;
    }

    .c2p p {
        margin-top: 2rem !important;
    }

    .c2p h3 {
        margin-top: 1.68rem !important;
    }

    .card h3 {
        font-size: 1.4rem !important;
        margin-top: 2.5rem;
    }
}



@media screen and (max-width: 1744px) {
    /* Your CSS styles go here */

    .section3Article h2 {
        font-size: 3rem;

    }

    .section3Article p {
        font-size: 1.3rem;
    }

    h1 {
        font-size: 4.4rem;
    }

    .s4-left {
        margin-left: 2rem;
    }

    .s4-article p {
        margin-left: 11rem;
    }

    .s4-article h2 {
        font-size: 3.7rem;
    }

    .s4r {
        margin-left: -1rem !important;
    }

    .Web2 {
        margin-right: 8rem;
    }

    .Web {
        margin-right: 8rem;
    }

    .c3p h3 {
        margin-top: 1.7rem !important;

    }


    .small-hide {
        display: none;
    }

    .cta-button-s3 {
        font-size: 0.9rem !important;
    }





}


@media screen and (max-width: 1700px) {
    /* Your CSS styles go here */

    .section6 h2 {
        font-size: 3rem !important;
    }

    .navbar ul,
    .navbar .logo,
    .call-link {
        font-size: 1rem !important;
    }

    .HellenicLogo {
        width: 435px;
        height: 435px;
    }

    h1 {
        font-size: 4rem !important;
        margin-top: 0rem !important;
    }

}


@media screen and (max-width: 1620px) {
    /* Your CSS styles go here */

    .foo-nav ul li a {
        font-size: 0.9rem !important;
    }

    .s1Heading {
        font-size: 2.7rem !important;
    }

    .Map {
        width: 41rem !important;
        height: 24rem !important;
    }

    .s1Right {
        margin-left: 1.5rem !important;
    }

    .small-hide {
        display: none;
    }


    .s2Articles p {
        font-size: 1.1rem !important;
    }

    .cta-button-s3 {
        font-size: 0.8rem !important;
    }

    .section3Article p {
        font-size: 1.2rem !important;
    }

    .row4 {
        margin-right: 5.5rem !important;
    }

    .s6-left {
        margin-left: -5rem !important;
    }

    .s6-right {
        margin-right: 5rem !important;
    }


}

@media screen and (max-width: 1539px) {

    .row4 {
        gap: 50px;
    }


    .section5 {

        height: 1850px;

        .row4 {
            gap: 60px;
        }

    }


}


@media screen and (max-width: 1518px) {


    .foo-nav ul li a {
        font-size: 0.9rem !important;
        padding: 15px 30px
    }

}

@media screen and (max-width: 1500px) {
    /* Your CSS styles go here */

    .FirstSection {
        margin-top: 4rem !important;
    }

    .SecondSection {
        margin-top: 0rem !important;
    }

    .s2Articles article {
        width: 33% !important;
    }


    .section3Article h2 {
        font-size: 2.6rem !important;
    }

    .section3Article p {
        font-size: 1.1rem !important;
        margin-top: 0.5rem !important;
    }

    .s4-article h2 {
        margin-left: 20% !important;
    }

    .s4-article p {
        margin-top: -3rem !important;
    }

    .Web {
        margin-top: -23rem !important;
    }

    .Web2 {
        display: none;
    }

    .s4r {
        margin-left: 18rem !important;
    }

    .section5 {
        justify-content: flex-start;
        padding-top: 4% !important;
    }

    .Web3 {
        margin-left: 20.7rem !important;
        width: 41rem !important;
        height: 20rem !important;
    }


    .section6 {
        margin-top: 9rem;
    }

    .section6 h2 {
        font-size: 2.8rem !important;
    }

    .foo-articles {
        justify-content: center;
    }

    .section5 {
        height: 1350px;

    }

    .section5 h2 {
        font-size: 3.2rem !important;
    }



}



@media screen and (max-width: 1460px) {
    /* Your CSS styles go here */


    .FirstSection {
        height: 890px !important;
        padding-top: 5rem !important;
    }


    .s1Right {
        margin-left: 4.5rem !important;
    }

    .c2p p {
        margin-top: 1.3rem !important;
    }

    .c3p p {
        margin-top: 1.8rem !important;
    }


    .section3Article {
        margin-left: 2rem !important;
        padding-top: 1.5% !important;

    }


    .section3Article h2 {
        font-size: 2.3rem !important;
    }

}


@media screen and (max-width: 1434px) {
    /* Your CSS styles go here */

    .c2p {
        display: none;
    }

    .s4r {
        margin-left: 17rem !important;
    }

    .hide-small {
        display: none;
    }

    .card-s3 p {
        font-size: 0.93rem !important;
    }

    .mgp {
        display: none;
    }

    .FirstSection {
        justify-content: center;
        padding-top: 2rem !important;
    }

    .small-hide {
        display: none;
    }

    .s1Article {
        margin-right: 5rem !important;
    }

    .SecondSection {
        margin-top: -1rem !important;
    }



    .s1Heading {
        font-size: 2.8rem !important;
    }

    .section6 h2 {
        font-size: 2.5rem !important;
        margin-top: 1.9rem !important;
    }

    .s6-right {
        margin-right: 8rem !important;
    }


}


@media screen and (max-width: 1400px) {

    /* Your CSS styles go here */
    .s4r {
        margin-left: 29% !important;

    }

    .s2Articles h3 {
        margin-left: -1rem !important;
    }

    .s4-article h2 {
        margin-left: 17% !important;
    }

    .s4-article p {
        font-size: 1.2rem !important;
    }

    .action {
        margin-left: -1rem !important;
    }

    .SecondSection h2 {
        margin-left: 14.5rem !important;
    }
}


@media screen and (max-width: 1375px) {

    .foo-nav ul li a {
        font-size: 0.9rem !important;
        padding: 15px 20px
    }


}

@media screen and (max-width: 1300px) {


    .SecondSection h2 {
        margin-left: 12rem !important;
    }

    .section5 h2 {
        font-size: 3rem !important;
    }


    .section5 {
        height: 1550px;
    }

    .section6 {
        margin-top: -5rem !important;
    }


    .row6 {
        margin-right: 8rem !important;
    }

    .s6-left p {
        font-size: 1.1rem !important;
        margin-top: 4rem !important;
    }

    .s1Article {
        margin-right: 0rem !important;
    }
}




@media screen and (max-width: 1258px) {
    /* Your CSS styles go here */

    .s2Articles p {
        width: 94% !important;
        font-size: 0.99rem !important;
    }

    .s4-article h2 {
        margin-left: 10% !important;
    }

    .hide-small {
        display: none;
    }


    .s3Right {
        margin-right: 6rem !important;
    }

    .section3Article p {
        margin-left: 6.8rem !important;
    }

}


@media screen and (max-width: 1234px) {

    .foo-nav ul li a {
        font-size: 0.9rem !important;
        padding: 15px 15px
    }

}

@media screen and (max-width: 1200px) {



    .Map {
        width: 34rem !important;
        height: 19rem !important;
    }


    .s1Heading {
        font-size: 2.5rem !important;
    }


    .SecondSection h2 {
        margin-left: 9rem !important;
    }

    .section5 h2 {
        font-size: 2.7rem !important;
    }


    .s4-article h2 {
        margin-left: 5% !important;
    }

    .s4r {
        margin-left: 19% !important;
    }

    .small-hide {
        font-display: none;
    }



}


@media screen and (max-width: 1165px) {
    footer {
        height: 300px;
    }

    .foo-nav {
        height: 100%;
    }

    .foo-nav ul {
        display: flex !important;
        flex-direction: column !important;
    }

    .footer-class {
        width: 25% !important;
        height: 98% !important;
    }
}

@media screen and (max-width: 1145px) {

    .section3Article p {
        margin-left: 5rem !important;
    }

    .s4-article h2 {
        margin-left: 16% !important;
        font-size: 3rem !important;
    }

    .s4-article p {
        margin-left: 8rem !important;
    }

    .Web {
        margin-right: 14rem !important;
    }

    .row4 {
        flex: 1 1 45%;
        /* This will allow only 2 cards per row */
        gap: 50px;
    }

    .section5 {
        height: 1500px;
    }

    .section6 {
        margin-top: 3rem !important;
        display: flex;
        flex-direction: column;
        height: 1200px;
    }


    .s6-left {
        width: 100% !important;
        margin-left: 0rem !important;
        height: 300px;
    }


    .s6-left p {
        font-size: 1.2rem !important;
        width: 60% !important;
        text-align: center;
    }

    .Web3 {
        margin-top: 4rem !important;
    }


    .foo-nav ul li a {
        padding: 12px 15px !important;
    }

}


@media screen and (max-width: 1115px) {

    .SecondSection h2 {
        margin-left: 6rem !important;
    }

}

@media screen and (max-width: 1050px) {

    .s4r {
        margin-left: 9% !important;
    }

    .row4 {
        gap: 100px !important;
    }

    .section6 {
        margin-top: 57rem !important;

        justify-content: center;
        align-items: center;
    }


    .foo-nav ul li a {
        padding: 10px 10px !important;
    }

}

@media screen and (max-width: 1000px) {



    .WordWrapper{
        height: 305px !important;
    }


    .navbar {
        margin-bottom: 3rem !important;
    
    }


    h1 {
        line-height: 3rem !important;
        font-size: 3rem !important;
    }

    .HellenicLogo {
        width: 300px;
        height: 293px;
    }

    .FirstSection {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        margin-top: 3rem !important;
        margin-top: 11rem !important;

    }

    .SecondSection {
        margin-top: 21rem !important;
        height: 1255px;
    }

    .SecondSection h2 {
        font-size: 3rem !important;
    }


    .s2Articles {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }


    .s2Articles article {
        width: 62% !important;
        height: 20rem !important;
        margin-top: 2.5rem !important;
    }

    small-hide {
        display: none;
    }

    .Map {
        width: 40rem !important;
        height: 23rem !important;
    }

    .s1Right {
        margin-left: -6.5rem !important;
    }

    .foo-nav ul li a {
        font-size: 0.9rem !important;
    }

}



@media screen and (max-width: 913px) {


    .navbar {
        position: fixed;
        top: -50px !important;
        z-index: 100;

   

    }


    #menuToggle {
        display: block !important;
    }


    .navbar .logo {
        display: block !important;
        font-size: 1.4rem !important;
        margin-left: 3%;
        margin-right: auto;
    }

    .nav-links a {
        display: none !important;
    }

    .call-link {
        font-size: 1.2rem !important;
    }



    .c3p {
        margin-top: 0.2rem !important;
    }


    .SecondSection h2 {
        margin-left: auto !important;
        margin-right: auto !important;
        width: 100% !important;
    }

    .card-container {
        margin-right: auto !important;
        margin-left: auto !important;
    }



    .s1Right {
        margin: 0px !important;
        width: 100% !important;
        margin-top: 2rem !important;
    }

    .s2Articles h3 {
        margin-left: auto !important;
        margin-right: auto !important;
    }



    .thirdSection {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        height: 1150px;
    }


    .section3Article {
        margin: 0% !important;
        width: 100% !important;
    }

    .section3Article p {
        width: 70% !important;
        margin-left: auto !important;
        text-align: center;
    }

    .row {
        width: 100% !important;
    }

    .s3Right {
        width: 100% !important;
        justify-content: center;
        align-items: center;
        margin-top: 5rem !important;
    }


    .section4 {
        display: flex;
        flex-direction: column;
        align-items: center;
        height: 1260px;
        padding-top: 20%;

    }

    .s4-article h2 {
        margin-left: auto !important;
        margin-right: auto !important;
        font-size: 2.5rem !important;
        position: inherit;
        margin-bottom: 8rem !important;
    }

    .s4-article p {
        text-align: center;
    }

    .s4-left {
        width: 100% !important;
        margin-left: auto !important;
        margin-right: auto !important;
        height: 30rem !important;
        padding: 0px !important;
    }

    .s4-right {
        display: none;
        margin-left: auto !important;
        margin-right: auto !important;
    }

    .s4r {
        display: flex;
        flex-direction: column;
        margin-left: auto !important;
        margin-right: auto !important;
    }

    .s4-container {
        display: flex;
        flex-direction: column;
        margin-left: auto !important;
        margin-right: auto !important;
        gap: 5rem;
        margin-top: 5rem;
    }


    .s4card {
        margin: 0px !important;
    }

    .Web {
        display: none;
    }


    .section6 {
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .s6-right {
        margin-top: 4rem !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }

    .Web3 {
        display: none;
    }

    .section7 {
        height: 1350px;
    }
}


@media screen and (max-width: 882px) {
    .footer-class {
        width: 35% !important;
    }

    .section3Article h2 {
        margin-top: 4rem;
    }
}

@media screen and (max-width: 753px) {





    .call-link {
        display: block;
    }

    .navbar ul {
        width: 100%;
        justify-content: center;
        align-items: center;
    }

    .nav-links {
        display: none !important;
    }

    h1 {
        font-size: 2.5rem !important;
    }

    .HellenicLogo {
        margin-bottom: 35px;
    }

    .thirdSection {
        margin-top: 190px !important;
    }

    .s2Articles article {
        margin-top: 5.5rem !important;
    }

    .s4-article h2 {
        font-size: 2.3rem !important;
    }

    .section5 h2 {
        font-size: 2.3rem !important;
        margin-top: 30px !important;
    }

    .s6-right {
        margin-top: 10rem !important;
    }
}

@media screen and (max-width: 690px) {
    .footer-class {
        width: 55% !important;
    }

    .foo-nav ul li a {
        padding: 15px 10px !important;
    }

    .section3Article h2 {
        margin-top: 6rem;
    }
}


@media screen and (max-width: 657px) {

    .s1Left {
        width: 100% !important;
    }

    .Map {
        width: 33rem !important;
        height: 20rem !important;
        margin-right: 4rem !important;
    }

    .SecondSection h2 {
        font-size: 2.3rem !important;

    }

    .s1Article {
        margin-left: auto;
        margin-right: auto;
    }

    .thirdSection {
        margin-top: 250px !important;
    }


    .section3Article p {
        width: 93% !important;
        margin-top: 20px !important;
    }

    .s4-article h2 {
        font-size: 2rem !important;
    }

    .s4-article p {
        width: 80% !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }

    .section5 h2 {
        font-size: 2.1rem !important;
    }

    .section7 {
        height: 1450px !important;
    }

}




@media screen and (max-width: 657px) {

    h1 {
        font-size: 2rem !important;
        line-height: 2.4rem !important;
        margin-bottom: 30px !important;
    }

    .HellenicLogo {
        margin-bottom: 20px !important;
        width: 250px !important;
        height: 250px !important;
    }

    .s2Articles article {
        margin-top: 4.5rem !important;
        width: 90% !important;
    }

    .s2Articles p {
        font-size: 1.1rem !important;
    }

    .s4-article {
        width: 100% !important;
    }


    .s4-container {
        margin-top: 7rem !important;
    }


    .section7 {
        margin-top: 60px !important;
    }

    .FirstSection {
        margin-top: 9rem !important;
    }


    .s4-left {
        margin-top: 60px !important;
    }

    .section5 h2 {
        margin-top: 75px !important;
    }
}



@media screen and (max-width: 625px) {


    .Map {
        margin-right: auto !important;
        margin-left: auto !important;
    }

    .s4-article h2 {
        word-wrap: break-word;
    }


    .navbar .logo {
        font-size: 1.2rem !important;
    }

    .call-link {
        font-size: 1.1rem !important;
    }

}




@media screen and (max-width: 585px) {

    .break {
        display: block !important;
    }


    .break1 {
        display: block !important;
        margin-bottom: -43px !important;
    }

    .s4-article h2 {
        font-size: 2.9rem !important;
        line-height: 2rem !important;
        position: inherit;
    }

    .section5 h2 {
        margin-top: 161px !important;
    }

    .section6 h2 {
        margin-top: 8rem !important;
    }


    .s6-left p {
        width: 95% !important;
    }


}




@media screen and (max-width: 543px) {


    #menuToggle {
        left: 1px !important;
    }

    .s1Heading {
        font-size: 2.1rem !important;
        line-height: 2.5rem !important;
        font-weight: 600;
    }

    .Map {
        width: 29rem !important;
        height: 16rem !important;
    }


    .SecondSection h2 {
        font-size: 2rem !important;
    }


    .break {
        display: block !important;
    }


    .s4-article h2 {
        font-size: 2.9rem !important;
        line-height: 2rem !important;
    }

    .navbar .logo {
        font-size: 1.1rem !important;
        margin-left: 3.5% !important;
    }

    .call-link {
        font-size: 1rem !important;
    }




}



@media screen and (max-width: 503px) {

    h1 {
        font-size: 1.8rem !important;
        line-height: 2rem !important;
        margin-top: 2rem !important;
    }


    .FirstSection {
        margin-top: 3rem !important;
    }

    .SecondSection h2 {
        font-size: 1.8rem !important;

    }

    .s2Articles article {
        margin-top: 6.5rem !important;
    }

    .thirdSection {
        margin-top: 300px !important;
    }

    .section4 {
        padding-top: 30% !important;
    }

    .section5 {
        margin-top: 6rem !important;
    }


    .section5 h2 {
        margin-top: 265px !important;
    }

    .section6 h2 {
        margin-top: 18rem !important;
    }


    .s4-container {
        margin-top: 10rem !important;
    }

    .section7 h2 {
        font-size: 3rem !important;
        margin-top: 5rem !important;
    }

    .section7 {
        height: 1600px !important;
    }

    .s6-left {
        margin-bottom: 200px !important;
    }

    .footer-class {
        width: 90% !important;
    }

}



@media screen and (max-width: 480px) {




    .s1Heading {
        letter-spacing: 0px !important;
    }

    .section3Article h2 {
        letter-spacing: 0px !important;
    }

    .section5 h2 {
        line-height: 40px !important;
    }



    .navbar .logo {
        font-size: 0.94rem !important;
        margin-left: 3.7% !important;
    }

    .call-link {
        font-size: 0.9rem !important;
    }



    .a-hide {
        display: none;
    }

    .navbar {
        margin-bottom: 1rem !important;
    }


    h1 {
        font-size: 1.6rem !important;
    }


    .s1Heading {
        font-size: 1.8rem !important;
    }


    .Map {
        width: 26rem !important;
        height: 15rem !important;
    }

    .card-container {
        margin-top: 2rem !important;
    }


    .FirstSection .card {
        max-width: 350px !important;
    }


    .s2Articles article {
        margin-top: 8.5rem !important;
    }

    .thirdSection {
        margin-top: 420px !important;
    }


    .section5 {
        margin-top: 10rem !important;
    }

    .section6 {
        height: 1400px !important;
    }

    .section4 {
        padding-top: 45% !important;
        margin-top: 5rem !important;
    }

    .section7 {
        height: 1666px !important;
    }

    .section7 h2 {
        margin-top: 7rem !important;
    }
}





@media screen and (max-width: 456px) {


    .call-link{
        font-size: 0.7rem !important;
    }


    .Map {
        width: 23rem !important;
        height: 13rem !important;
    }


    .section3Article h2 {
        margin-top: 7rem !important;
    }

    .s4-container {
        margin-top: 12rem !important;
    }

    .s2Articles article {
        margin-top: 12.5rem !important;
    }

    .thirdSection {
        margin-top: 666px !important;
    }

    .s2Articles .s2-2 {
        margin-top: 11rem !important;
    }

    .s4-article h2 {
        font-size: 2.4rem !important;
        line-height: 1.4rem !important;
    }
}



@media screen and (max-width: 420px) {

    .section3Article h2 {
        font-size: 2rem !important;
        margin-top: 10rem !important;
    }

    .s6-right {
        margin-top: 13rem !important;
    }
}



@media screen and (max-width: 408px) {

    .s6-right {
        margin-top: 20rem !important;
    }

    .navbar .logo {
        font-size: 0.9rem !important;
        margin-left: 3.3% !important;
        margin-right: 0px;
    }

    .brnav {
        display: block;
        margin-top: 0px !important;
        margin-bottom: 0px !important;
        height: 0px !important;
    }

    .call-link {
        font-size: 0.87rem !important;
        text-align: center;
    }

    #menuToggle {
        left: 2px !important;
    }


}



@media screen and (max-width: 402px) {

.navbar .logo {

    font-size: 0.7rem !important;
}


    .s4-article h2 {
        font-size: 2.2rem !important;
        line-height: 1.2rem !important;
        margin-top: 4rem !important;
    }

    .section5 h2 {
        margin-top: 290px !important;
        font-size: 1.9rem !important;
    }

    .section6 h2 {
        margin-top: 28rem !important;
        font-size: 2.2rem !important;
    }

    .s6-right {
        margin-top: 29rem !important;
    }

    .section7 {
        height: 1750px !important;
    }

    .s4-article p {
        font-size: 1.2rem !important;
        width: 88% !important;
    }

    .SecondSection h2 {
        margin-bottom: -7rem !important;
    }


    .s2Articles .s2-2 {
        margin-top: 10rem !important;
    }

    .section7 h2 {
        font-size: 2.5rem !important;
    }

    .section3Article h2 {
        margin-top: 0px !important;
    }

    .s4-container {
        margin-top: 8rem !important;
    }
}



@media screen and (max-width: 380px) {

    .s2Articles article {
        margin-top: 15.5rem !important;
    }

    .s2Articles .s2-2 {
        margin-top: 13rem !important;
    }

    .section3Article h2 {
        margin-top: 180px !important;
    }

    .s3Right {
        margin-right: 7.5rem !important;
    }

    .section6 h2 {
        margin-top: 22rem !important;
    }

    .s6-right {
        margin-top: 22rem !important;
    }

    .section7 {
        height: 1850px !important;
    }
}


@media screen and (max-width: 360px) {

    .s1Heading {
        font-size: 1.7rem !important;
    }

    .SecondSection h2 {
        font-size: 2.5rem !important;
    }

    .section3Article h2 {
        margin-top: 390px !important;
    }

    .s3Right {
        margin-right: 8.5rem !important;
    }

    .s4-article h2 {
        margin-top: 12rem !important;
    }

    .section5 h2 {
        margin-top: 380px !important;
        font-size: 1.5rem !important;
    }

    .break {
        margin-bottom: 30px !important;
    }

    .section6 h2 {
        font-size: 1.59rem !important;
    }
}
