@charset "utf-8";

@font-face {
    font-family: "GeoLight";
    font-style: normal;
    font-weight: normal;
    src: url("../fonts/Geologica-Light.woff") format("woff");
}
@font-face {
    font-family: "GeoBold";
    font-style: normal;
    font-weight: normal;
    src: url("../fonts/Geologica-Bold.woff") format("woff");
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
:root {
    --darkBlue: #004c7f;
    --blue: #039BE5;
    --lightBlue: #29B6F6;
    --extraLightBlue: #E1F5FE;
    --black: #12232E;
    --white: #F8F8FF;
}

a {
    text-decoration: none;
    color: var(--blue);
    transition: all .3s ease;
}
a:hover {
    color: var(--lightBlue);
}

body {
    max-width: 1920px;
    height: 100%;
    margin: 0px auto;
    padding: 0px;
    font-family: GeoLight;
    font-size: 18px;
    letter-spacing: -1px;
    background-color: var(--white);
}
.innerBlock{
    max-width: 1280px;
    margin: 0 auto;
    border-bottom: 0;
    padding: 0 20px;
}


/* Base Typography */
h1 {
    font-size: clamp(1.8em, 4vw, 3.5em);
    font-family: "GeoBold";
}
h2 {
    font-size: clamp(1.5em, 3.5vw, 2em);
    font-family: "GeoBold";
}
h3 {
    font-size: clamp(1em, 3vw, 1.1em);
    font-family: GeoBold;
}
h4{
    font-size: clamp(1em, 2.5vw, 1.2em);
}
/* Base Typography */


/* Buttons */
.button {
    display: inline-block;
    padding: 10px 25px;
    background-color: var(--blue);
    border: 3px solid var(--blue);
    color: var(--white);
    border-radius: 15px;
    margin: 20px 0;
    font-size: 18px;
    text-align: center;
    transition: all .3s ease;
}
.button:hover {
    background-color: transparent;
    color: var(--black);
}
/* /Buttons */

/* Sections Common */
.sectionTitle {
    font-size: clamp(1.3em, 3vw, 32px);
    margin-bottom: 20px;
}
.sectionTitle i {
    color: var(--blue);
    font-size: clamp(1em, 3vw, 32px);
    margin-right: 5px;
}
/* /Sections Common */

/* Social Icons */
.socialIcons {

}
.socialIcons i {

}
.socialIcons a {

}
.socialIcons a:hover {

}
/* /Social Icons */


/* Header */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100px;
    padding: 0 40px;
    background-color: transparent;
    position: fixed;
    width: 100%;
    transition: all .3s ease;
    z-index: 10;
}
.header.scrolled {
    width: 100%;
    height: 70px;
    background-color: rgba(225, 245, 254, 1);
    z-index: 5;
}
@media (max-width: 480px) {
    .header {
        /*flex-direction: column;*/
    }
    .header.scrolled {
        height: 100px;
    }
    .mainMenu {
        left: -140px!important;
    }
    .mainMenu.active {
        left: -140px;
        bottom: -390px!important;
    }
}
/* Logo */
.logo {
    
}
.logo img {
    max-width: 280px;
    transition: all .3s ease;
}
.header.scrolled .logo img {
    max-width: 200px;
}
/* /Logo */


/* Main Menu */
.mainMenuWrapper {
    position: relative;
}
.menuToggle {
    display: none;
    font-size: 34px;
    background: none;
    border: none;
    color: var(--black);
    cursor: pointer;
}
.mainMenu ul {
    display: flex;
    flex-direction: row;
    padding: 10px 0;
}
.mainMenu ul li {
    padding: 10px;
}
.mainMenu ul li a {
    color: var(--darkBlue);
}
@media (max-width: 1024px) {
    .menuToggle {
        display: block;
    }
    .mainMenu {
        position: absolute;
        bottom: 140px;
        background: var(--lightBlue);
        z-index: 1000;
        padding: 10px 40px;
        transition: all .5s ease;
        opacity: 0;
        width: 110vw;
        left: 50%;
        transform: translateX(-50%);
    }
    .mainMenu ul {
        flex-direction: column;
        align-items: center;
    }
    .mainMenu ul li {
        text-align: right;
    }
    .mainMenu.active {
        transition: all .5s ease;
        bottom: -390px;
        opacity: 1;
    }
}
/* /Main Menu */

/* Phone */
.phone {
    display: flex;
    align-items: center;
}
.phone i {
    font-size: 1.1em;
    margin-right: 5px;
    transition: all .3s ease;
}
.header.scrolled .phone {
    font-size: 1em;
}
.header.scrolled .phone i {
    font-size: 1em;
}
@media (max-width: 480px) {
    .phone {
        display: none;
    }
}
/* /Phone */
/* /Header */


/* Hero */
.heroCont {
    display: flex;
    background-image: url(../images/hero.jpg);
    background-position: center;
    background-size: cover;
    min-height: 100vh;
}
.heroBlocks {
    display: flex;
    justify-content: center;
    align-items: center;
}
.heroBlock {
    flex: 1 400px;
}
.heroBlock h1 {
    line-height: .9em;
    color: var(--darkBlue);
}
.heroBlock h1:first-child {
    opacity: 0;
    animation: slideUph1 .3s ease-out .5s forwards;
}
@keyframes slideUph1 {
    0% {
        opacity: 0;
        transform: translateX(-100px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}
.heroBlock h1:nth-child(2) {
    opacity: 0;
    animation: slideUph2 .3s ease-out .7s forwards;
}
@keyframes slideUph2 {
    0% {
        opacity: 0;
        transform: translateX(-100px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}
.heroTitle {
    font-size: clamp(.8em, 2vw, 1.3em);
    margin-bottom: 20px;
    opacity: 0;
    animation: slideUpTitle .3s ease-out .9s forwards;
}
@keyframes slideUpTitle {
    0% {
        opacity: 0;
        transform: translateX(-100px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}
.heroText {
    margin-bottom: 10px;
    opacity: 0;
    animation: slideUpText .3s ease-out 1s forwards;
}
@keyframes slideUpText {
    0% {
        opacity: 0;
        transform: translateY(100px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}
.heroBlock .button {
    opacity: 0;
    animation: slideUpButton .3s ease-out 1.1s forwards;
}
@keyframes slideUpButton {
    0% {
        opacity: 0;
        transform: translateY(100px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}
@media (max-width: 768px) {
    .heroBlock {
        flex: unset;
    }
}
/* /Hero */


/* Top Positions */
/* About */
.aboutCont {
    padding: 100px 0 50px;
}
.aboutBlocks {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}
.aboutBlock {
    flex: 1 400px;
    padding: 0 40px;
}
.aboutBlock img {
    width: 100%;
    object-fit: cover;
    border-radius: 15px;
}
.aboutBlockCont, .servicesBlockCont {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 20px 0 0;
    background-color: var(--darkBlue);
    border-radius: 15px;
    padding: 40px;
}
.aboutBlockLists {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.aboutBlockList ul {
    margin-bottom: 0;
}
.aboutBlockList li {
    list-style: none;
    font-size: 18px;
    position: relative;
    padding: 1.6rem 0 0 2.5rem;
    color: var(--white);
}
.aboutBlockList li:before {
    content: "\F270";
    font-family: "bootstrap-icons";
    position: absolute;
    left: 0;
    top: 1.3rem;
    font-size: 28px;
    color: var(--lightBlue);
}
.aboutBlockCont .button, .servicesBlockCont .button {
    margin-top: 40px;
}
.aboutBlockCont .button:hover, .servicesBlockCont .button:hover {
    color: var(--white);
}
@media (max-width: 480px) {
    .aboutBlockCont {
        padding: 20px;
    }
    .aboutBlockLists {
        flex-wrap: wrap;
    }
}
@media (max-width: 768px) {
    .aboutBlock {
        margin-bottom: 40px;
    }
    .aboutBlockList ul {
        margin-left: -20px;
    }
}
@media (min-width: 769px) and (max-width: 1024px) {
    .aboutBlockList ul {
        padding-left: 0;
    }
}
/* /About */

/* Divider Banner */
.dividerBannerCont {
    min-height: 300px;
    padding: 50px 0;
}
.dividerBannerContBg {
    display: flex;
    align-items: center;
    /*background-color: var(--extraLightBlue);*/
    background-image: url(../images/dividerBanner.jpg);
    background-position: center center;
    background-attachment: fixed;
    min-height: 300px;
}
.dividerBannerBlock {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.dividerBannerBlock h2 {
    margin-bottom: 20px;
}
.dividerBannerText {
    max-width: 800px;
    text-align: center;
}
/* /Divider Banner */

/* Services */
.servicesCont {
    padding: 0 40px;
}
.servicesItemBlock {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    padding: 30px 0;
}
.servicesItems {
    flex: 1 340px;
    padding: 0 40px;
}
.servicesItems:last-child {
    border-right: 0;
}
.servicesSubTitle h3 {
    margin-bottom: 30px;
    text-align: center;
}
.serviceItem {
    background-color: var(--extraLightBlue);
    border: 4px solid var(--lightBlue);
    border-radius: 15px;
    justify-content: center;
    margin-bottom: 30px;
    padding: 50px 70px;
    display: block;
    position: relative;
    top: 0;
    font-size: 1.2em;
}
.serviceIcon {
    background-color: var(--blue);
    border: 4px solid #fff;
    border-radius: 100px;
    justify-content: center;
    align-items: center;
    width: 100px;
    height: 100px;
    display: flex;
    position: absolute;
    top: 50%;
    bottom: auto;
    left: -50px;
    right: 0%;
    box-shadow: 1px 1px 18px 1px rgba(139, 119, 112, .3);
    transform: translateY(-50%);
}
.serviceIcon img {
    width: 100%;
}
.servicesBlueBlock h3 {
    color: var(--white);
    text-align: center;
}
@media (max-width: 1023px) {
    .servicesCont {
        padding: 0 10px;
    }
    .servicesItemBlock {
        padding: 0;
    }
    .servicesItems {
        margin-bottom: 30px;
    }
}
/* /Services */
/* /Top Positions */

/* K2 Item View General */
.itemView {
    padding: 70px 0 0;
}
.itemTopBlock {
    background-color: var(--darkBlue);
    height: 200px;
    position: relative;
    z-index: -1;
}
/* /K2 Item View General */

/* K2 item Clinic View */
.clinicItemImage, .blogItemImage {
    position: relative;
}
.clinicItemBlock {
    margin-bottom: 50px;
}
.clinicItemImage .overlay, .blogItemImage .overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 84, 169, .7);
    border-radius: 15px;
}
.clinicItemBlock .itemTitle, .blogItemBlock .itemTitle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--extraLightBlue);
    width: auto !important;
}
.clinicItemInfo h3.clinicHeader {
    text-align: center;
    margin: 0 auto 70px;
    max-width: 850px;
}
.clinicBlocks {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    margin-bottom: 50px;
}
.clinicBlock {
    flex: 0 380px;
    text-align: center;
}
.clinicBlock i {
    color: var(--blue);
    font-size: 30px;
    border: 3px solid var(--blue);
    border-radius: 50%;
    padding: 10px 15px;
}
.clinicBlockTitle {
    margin: 30px 0 10px;
    font-family: "GeoBold";
}
.clinicBottomTextCont {
    display: flex;
    align-items: center;
    border: 3px solid var(--blue);
    border-radius: 15px;
    padding: 40px;
    margin: 0 auto;
    gap: 30px;
    max-width: 650px;
}
.clinicBottomIcon {
    border-right: 3px solid var(--extraLightBlue);
}
.clinicBottomIcon img {
    max-width: 120px;
}
.clinicBottomText span {
    font-weight: bold;
}
@media (max-width: 480px) {
    .clinicBottomTextCont {
        flex-wrap: wrap;
        justify-content: center;
    }
    .clinicBottomIcon {
        border-right: 0;
    }
}
/* /K2 item Clinic View */

/* K2 Item Staff View */
.staffItemBlock, .clinicItemBlock, .blogItemBlock {
    display: flex;
    justify-content: center;
    margin-top: -130px;
    gap: 20px;
}
.staffItemImage {
    padding: 0 20px;
}
.staffItemImage img, .clinicItemImage img, .blogItemImage img {
    width: 100%;
    border-radius: 15px;
    box-shadow: -1px 1px 14px rgba(0, 0, 0, .26);
}
.staffItemImage, .staffItemInfo {
    flex: 1 50%;
}
.staffItemInfo {
    margin-top: 30px;
}
.staffItemInfo .itemTitle, .staffItemInfo h3 {
    color: var(--extraLightBlue);
}
.staffInfoBio {
    margin-top: 50px;
}
@media (max-width: 1024px) {
    .staffItemInfo {
        margin-top: 8px;
    }
}
@media (max-width: 768px) {
    .staffItemBlock {
        flex-wrap: wrap;
        align-items: center;
    }
    .staffItemInfo .itemTitle, .staffItemInfo h3 {
        color: unset;
    }
    .staffItemInfo, .staffInfoBio {
        margin-top: 10px;
    }
}
/* /K2 Item Staff View */

/* K2 Item Contact View */
.contactItemTitle {
    position: relative;
    height: 200px;
}
.itemTopBlock .contactItemTitle h2 {
    position: absolute;
    top: 50%;
    left: 50px;
    transform: translateY(-50%);
    color: var(--extraLightBlue);
}
.contactBlocks {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}
.contactBlock {
    flex: 1 260px;
    margin: 0 auto;
}
.contactInfoBlock {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 20px;
}
.contactInfo {
    flex: 1 220px;
    font-size: 1.1em;
    text-align: center;
    background-color: var(--extraLightBlue);
    height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.contactInfo i {
    color: var(--lightBlue);
    font-size: 1.5em;
    margin-bottom: 10px;
}
.contactFormBlock {
    border: 3px solid var(--lightBlue);
    border-radius: 15px;
    margin-top: -110px;
    z-index: 1;
}
.contactFormHeader {
    padding: 30px 30px 50px;
    color: var(--extraLightBlue);
}
#contactForm {
    padding: 20px;
}
.formBlock {
    display: flex;
    justify-content: space-evenly;
    margin-bottom: 20px;
    gap: 20px;
}
#contactForm input, #contactForm textarea {
    padding: 20px;
    border: 0;
    background-color: var(--extraLightBlue);
    border-radius: 15px;
    flex: 1;
}
.mapCont {
    position: relative;
    margin: 60px auto 0;
    display: block;
    width: 100%;
    text-align: center;
    overflow: hidden;
    border-radius: 15px;
}
.mapCont iframe {
    width: 100%;
    height: 400px;
    border: none;
    pointer-events: none;
    position: relative;
    top: -70px;
    margin-bottom: -70px;
}
.map-overlay {
    position: absolute;
    top: 0;
    width: 100%;
    height: 86%;
    background: transparent;
    cursor: pointer; /* Δείχνει ότι μπορείς να κλικάρεις */
}
@media (max-width: 1024px) {
    .contactBlocks {
        flex-direction: column-reverse;
    }
    .contactBlock {
        width: 100%;
    }
    .contactInfoBlock {
        margin-top: 30px;
    }
    .formBlock {
        flex-wrap: wrap;
    }
    #contactForm input {
        flex: 1 400px;
    }
    .contactItemCont .contactItemTitle h2 {
        top: 16%;
        left: 50%;
        transform: translateX(-50%);
    }
}
@media (max-width: 768px) {
    .contactInfo {
        flex: 0 250px;
    }
}
@media (max-width: 480px) {
    .contactFormHeader {
        padding: 10px 30px 50px;
    }
}
/* /K2 Item Contact View */

/* K2 Item Blog View */
.blogItemBlock .itemImageBlock {
    width: 100%;
}
.blogItemImage img {
    width: 100%!important;
    max-height: 323px;
    object-fit: cover;
}
.blogItemBlock .itemTitle {
    width: 100%;
    padding: 0 50px;
}
.blogItemInfo .itemDateCreated {
    margin: 30px 0 10px;
    color: var(--darkBlue);
}
.blogItemInfo .itemDateCreated i {
    margin-right: 5px;
}
/* /K2 Item Blog View */

/* K2 Category Blog View */
.itemListView {
    width: 100%;
}
.blogCatView {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
    padding: 50px 0;
}
.blogCatView .itemContainer {
    flex: 1 250px;
    font-size: .8em;
}
.blog .catItemImage img {
    width: 100%!important;
    border-radius: 15px;
}
.blogCatView .catItemDateCreated {
    margin: 10px 0;
    color: var(--darkBlue);
}
.blogCatView .catItemDateCreated i {
    margin-right: 5px;
}
.blogCatView .catItemIntroText {
    margin-bottom: 10px;
}
.blogCatView .catItemReadMore {
    font-size: 1em;
}

/* Pagination */
.k2Pagination {
    margin-bottom: 50px;
}
.k2Pagination ul {
    display: flex;
    justify-content: center;
    gap: 10px;
    font-size: 0.7em;
}
.k2Pagination ul li {
    list-style: none;
}
.k2Pagination ul li span {
    background-color: var(--darkBlue);
    color: var(--extraLightBlue);
    border: 3px solid var(--darkBlue);
    padding: 5px;
    border-radius: 15px;
}
.k2Pagination ul li a {
    background-color: var(--lightBlue);
    color: var(--darkBlue);
    padding: 5px;
    border: 3px solid var(--lightBlue);
    border-radius: 15px;
}
.k2Pagination ul li a:hover {
    background-color: transparent;
}
/* /Pagination */
/* /K2 Category Blog View */

/* Side Bars */

/* /Side Bars */


/* Bottom Positions */
/* Staff */
.staffCont {
    max-height: 550px;
    margin: 50px 0;
}
.imageBlock {
    background-image: url(../images/staffBg.jpg);
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    height: 400px;
    display: flex;
    justify-content: center;
}
.imageBlock .sectionTitle {
    padding: 100px 0;
}
.staffBlocks {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
    margin-top: -200px;
    gap: 10px;
}
.staffBlock {
    text-align: center;
    flex: 0 290px;
    padding: 20px;
    margin: 20px 0;
    border-radius: 15px;
    box-shadow: 2px 2px 10px #999;
    max-height: 310px;
    overflow: hidden;
    transition: all .5s ease;
    backdrop-filter: blur(5px);
}
.staffBlock:hover {
    max-height: 800px;
    margin-top: -20px;
    background-color: rgba(225, 245, 254, 1);
}
.staffBlockPhoto {
    padding: 10px 0 20px;
}
.staffBlockPhoto img {
    width: 170px;
    border-radius: 50%;
    transition: all .5s ease;
}
.staffBlock:hover .staffBlockPhoto img {
    width: 200px;
}
.staffBlockName {
    font-family: "GeoBold";
}
.staffBlockTitle {
    font-size: .8em;
    min-height: 50px;
}
.staffBlockText {
    margin: 10px 0;
    font-size: .8em;
}
@media (max-width: 1024px) {
    .staffCont {
        max-height: unset;
    }
}
/* /Staff */


/* /Bottom Positions */


/* Footer */
.footerCont {
    background-color: var(--darkBlue);
    padding: 50px 0;
    border-bottom: 1px solid var(--extraLightBlue);
    display: block;
    width: 100%;
    float: left;
}
.footerBlocks {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.footerContactInfo {
    margin-bottom: 20px;
}
.footerContactInfo .sectionTitle {
    font-size: 1em;
}
.footerContactInfo .sectionTitle i {
    font-size: 1em;
}
.footerBlock {
    color: var(--extraLightBlue);
    padding: 0 10px;
    margin: 0 auto;
    flex: 0 340px;
}
.footerContactBlock {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 150px;
    gap: 15px;
    font-size: 1em;
}
.footerContactBlock i {
    margin-right: 10px;
}
.footerLogoCont {
    text-align: center;
}
.footerLogo img {
    max-width: 120px;
    margin-bottom: 20px;
}
.footerLogoName {
    font-family: "GeoBold";
    font-size: 1.55em;
}
.footerBlock ul.nav {
    flex-direction: column;
    text-align: center;
}
.footerBlock ul.nav li a {
    color: var(--extraLightBlue);
    font-size: .9em;
}
.footerBlock ul.nav li a:hover, .copyright a:hover {
    color: var(--lightBlue);
}
.dayTimeBlock {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px 10px;
    border-bottom: 1px solid var(--extraLightBlue);
}
.aboutOpeningText {
    text-align: center;
}
.copyright {
    background-color: var(--darkBlue);
    text-align: center;
    color: var(--extraLightBlue);
    font-size: .8em;
    padding: 10px 0;

    display: block;
    width: 100%;
    float: left;
}
.copyright a {
    color: var(--extraLightBlue);
}
/* /Footer */




/* Responsive styles */
@media (max-width: 900px) {
    
}
