/* Βασικά στυλ για το σώμα της σελίδας */
body {
    padding: 0 !important;
    margin: 0 !important;
    overflow-x: hidden !important;
    font-family: 'Times New Roman', Times, serif !important;
    text-align: justify !important;
    line-height: 1.5 !important;
    padding-top: 10px !important;
    /* Για να μην καλύπτεται από το navbar */
    background-color: #ffffff !important;
    /* Λευκό background για όλο το site */
}

/* Header area CSS */
.nav {
    padding: 20px 0 !important;
    background-color: transparent !important;
    transition: all 0.4s ease-in-out !important;
    position: fixed !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    z-index: 9999 !important;
}

.sticky {
    position: fixed !important;
    width: 100% !important;
    left: 0 !important;
    top: 0 !important;
    z-index: 9999 !important;
    border-top: 0 !important;
    background-color: #fff !important;
    padding: 10px 0 !important;
    border-bottom: none !important;
    padding-top: 300px;
    /* box-shadow: 0 10px 30px -10px rgb(0 64 128 / 20%) !important; */
}

/* Navbar styles */
.navbar img.logo-white {
    width: 150px;
}

.navbar li.nav-item {
    padding: 0 12px;
}

.navbar a.nav-link {
    color: #000000;
    font-weight: 600;
    font-weight: bold;
    transition: all 0.2s;
}

.navbar a.nav-link:hover {
    color: #0056b3;
    transition: all 0.2s;
}

/* Navbar navigation alignment */
.navbar-nav {
    align-items: center;
}

/* Navbar brand */
.navbar-brand {
    font-size: 22px;
    font-weight: 600;
}

/* Banner section */
.banner {
    background-image: url(images/slider-01.jpg);
    background-size: cover;
    background-position: center;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.banner h1 {
    font-weight: 600;
}

/* Buttons */
.btn-one {
    background-color: #0056b3;
    padding: 12px 45px;
    border-radius: 12px;
    color: #fff;
    font-size: 18px;
    font-weight: 300 !important;
    border: solid 1px #0056b3;
    transition: all 0.3s;
}

.btn-one:hover {
    border: solid 1px #0056b3;
    color: #7270FF;
    transition: all 0.3s;
}

/* Colors */
.n-colr {
    color: #0056b3;
}

.bg-grey {
    background-color: #0056b3;
}

/* Card styles */
.s-card {
    border: solid 1px rgba(114, 112, 255, 0.3);
    padding: 30px;
}

.s-card .icon {
    background-color: rgba(114, 112, 255, 0.1);
    font-size: 32px;
    padding: 10px 20px;
    display: inline-block;
    border-radius: 12px;
    color: #0056b3;
}

.s-card a {
    color: #0056b3;
    transition: all 0.3s;
}

.s-card a::after {
    content: '';
    display: block;
    width: 0;
    height: 2px;
    background: #0056b3;
    transition: width 0.3s;
}

.s-card:hover a::after {
    width: 100%;
    transition: width 0.3s;
}

.s-card:hover {
    box-shadow: 0 0.5rem 1rem rgba(114, 112, 255, 0.15);
    border: solid 1px rgba(114, 112, 255, 0.1);
}

/* Margin fix */
.bg-img {
    margin-top: -120px;
}

/* Tesmonial area */
.tesmonial-area .fa-star {
    color: #FF910F;
}

.tesmonial-area .d-flex img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
}

.tesmonial {
    background-image: url(images/tesmonial.jpg);
    background-size: cover;
    background-position: center;
    padding-bottom: 150px;
}

.tes-card {
    background-color: #fff;
    padding: 30px;
    box-shadow: 0 0.5rem 1rem rgba(114, 112, 255, 0.15);
}

/* Team section */
.team .bg {
    background-color: #7270FF;
    color: #fff;
    padding: 20px;
    border-bottom-left-radius: 12px;
    border-bottom-right-radius: 12px;
}

.team img {
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
}

.team .social i {
    padding-right: 20px;
}

/* Footer */
.footer {
    background-image: url(images/waves-background.png);
    padding-top: 80px;
    padding-bottom: 50px;
    background-color: #44627f;
    background-position: bottom center;
    background-repeat: no-repeat;
    background-size: 90vw;
}

.footer .fb-bg {
    background-color: rgba(255, 255, 255, 0.2);
    padding: 20px;
    color: #fff;
    border-radius: 12px;
}

.footer .social i {
    border: solid 1px #fff;
    border-radius: 50%;
    margin-right: 15px;
    width: 50px;
    height: 50px;
    text-align: center;
    line-height: 50px;
}

.footer a {
    color: #dddddd;
    transition: all 0.3s;
}

.footer a:hover {
    color: #7270FF;
    transition: all 0.3s;
}

/* Rounded corners */
.rounded-4 {
    border-radius: 12px !important;
}

/* Go to top button */
.go-top {
    position: fixed;
    cursor: pointer;
    right: 3%;
    top: 87%;
    background-color: #7270FF;
    box-shadow: 0px 0px 10px rgb(0 0 0 / 31%);
    z-index: 4;
    width: 45px;
    text-align: center;
    height: 45px;
    line-height: 42px;
    border-radius: 8px;
    transform: scale(0);
    visibility: hidden;
    transition: 0.9s;
}

.go-top.active {
    transform: translateY(0) scale(1);
    opacity: 1;
    visibility: visible;
    top: 84%;
}

.go-top::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background-color: #7270FF;
    opacity: 0;
    visibility: hidden;
    transition: 0.5s;
}

.go-top i {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    margin: 0 auto;
    color: #fff;
    font-size: 18px;
    transform: translateY(-50%);
    transition: 0.5s;
}

/* Responsive styles */
@media screen and (max-width: 1200px) and (min-width: 600px) {
    .footer .social i {
        margin-right: 5px;
        width: 45px;
        height: 45px;
        line-height: 45px;
    }
}

@media screen and (max-width: 900px) {
    .navbar-toggler:focus {
        box-shadow: none;
    }

    .banner {
        background-position: left;
    }

    .navbar-nav {
        background-color: #ffffff;
    }

    .sticky .navbar-nav {
        background-color: #fff;
    }

    .navbar a.nav-link {
        color: #000000;
    }

    .sticky a.nav-link {
        color: #000000 !important;
    }
}