/* FONTS */
@font-face{
    src: url(/assets/adiNeue-Bold.otf);
    font-family: adineue-bold;
}
@font-face{
    src: url(/assets/PFDinText-Bold.otf);
    font-family: pfd-bold;
}
@font-face{
    src: url(/assets/PFDinText-Medium.otf);
    font-family: pfd-medium;
}
/* GENERAL */
*{
    margin: 0;
    padding: 0;
}
/* Ta heights sto nav kai sto main mporei na vgoyn */
main{
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    gap: 1rem;
    margin: 1rem 0;
}
body{
    position: relative;
    height: 100vh;
    background-image: url(/assets/Desktop/Plantelt_Desktop_bg.jpg);
    background-size: cover;
    background-position: top;
}
.logo img{
    width: 150px;
    display: flex;
    margin-left: auto;
}
/* ABOUT & CONTACT */
.white-bg{
    margin: 0;
    padding: 0;
    background-image: url(/assets/Desktop/Plantelt_Desktop_About-rectangle.png);
    background-size: cover;
    color: #74a5d1;
    font-size: 2rem;
    font-family: adineue-bold;
    text-align: end;
    margin-top: 2rem;
}
.white-bg p{
    padding-right: 2rem;
    margin: unset;
}
.blue-bg{
    margin: 0;
    padding: 2rem 0;
    background-image: url(/assets/Desktop/Plantelt_Desktop_about-text-rectangle.png);
    background-size: cover;
    color: white;
    font-size: 1.6rem;
    font-family: pfd-bold;
    text-align: end;
    display: flex;
    justify-content: flex-end;
}
.blue-bg p{
    padding-right: 2rem;
    margin: unset;
    width: 80%;
}
/* light-blue */
.light-blue{
    margin: 0;
    padding: 1.5rem 0;
    background-image: url(/assets/Desktop/Plantelt_Desktop_contact-text-rectangle-1.png);
    background-size: cover;
    color: #444444;
    font-family: pfd-medium;
    position: relative;
}
.light-blue a, .light-blue a:hover, .light-blue a:visited{
    color: #444444;
    text-decoration: none;
}
.light-blue p, .light-blue address{
    margin: unset;
    padding-left: 4rem;
}
/* double rectangle */
.relative{
    position: relative;
}
.double-rectangle{
    background-image: url(/assets/Desktop/Plantelt_Desktop_contact-2rectangles.png);
    background-size: cover;
    background-position: center;
    z-index: -1;
    position: absolute;
    top: -15px;
    right: 37%;
    width: 25%;
    height: 200px;
}
.contact-cont-mob{
    display: none;
}
.line{
    position: absolute;
    height: 72%;
    background: #000;
    width: 1px;
    top: 14%;
    left: 50px;
}
.line2{
    position: absolute;
    height: 69%;
    background: #000;
    width: 1px;
    top: 16%;
    left: 50px;
}

@media(max-width: 1024px){  
    body{
        height: 100vh;
    }
    .logo img{
        width: 100px;
        display: flex;
        margin-left: auto;
    }
    .white-bg p{
        padding-right: 0;
        margin: unset;
        text-align: center;
    }
    .blue-bg p{
        padding-right: 0;
        margin: unset;
        text-align: center;
    }
    .blue-bg{
        text-align: center;
        justify-content: center;
        font-size: 1rem;
    }
    .double-rectangle{
        background-image: url(/assets/MOBILE/Plantelt_MOB_contact_2rectangles.png);
        background-size: cover;
        background-position: center;
        z-index: -1;
    }
}
@media(max-width:620px){
    body{
        background-image: url(/assets/MOBILE/Plantelt_MOB_bg.jpg);
        background-size: cover;
        height: 100%;
    }
    .blue-bg p{
        padding-right: 0;
        margin: unset;
        text-align: center;
    }
    .contact-cont{
        display: none;
    }
    .right{
        display: flex;
        justify-content: flex-end !important;
        margin-top: 2rem;
    }
    .contact-cont-mob{
        display: block;
    }
    .double-rectangle-mob-cont{
        position: relative;
    }
    .double-rectangle{
        position: absolute;
        top: -80px;
        height: 150px;
        width: 150px;
        right: 89px;
    }
    .line{
        position: absolute;
        height: 69%;
        background: #000;
        width: 1px;
        top: 15%;
        left: 50px;
    }
}
@media(max-width: 420px){
    .double-rectangle{
        position: absolute;
        right: 5%;
    }
}
@media(max-width: 360px){
    .double-rectangle-mob-cont{
        display: none;
    }
}