/*
Theme Name: Grexit
Theme URI: https://example.com
Description: Modern and responsive WordPress theme for professional websites
Author: Your Name
Author URI: https://example.com
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: grexit
Tags: custom, responsive, blog, one-column, two-columns, custom-menu, custom-logo, featured-images
*/

/* ==========================================================================
   CSS Custom Properties (Theme Colors)
   ========================================================================== */

:root {
    /* Primary Colors - Muuda neid oma teema värvide järgi */
    --color-primary: #031D55;      /* Peamine värv (nupud, lingid, aktsendid) */
    --color-secondary: #FF9100;    /* Teisene värv (tekstid, header) */
    --color-tertiary: #FFFFFF;     /* Kolmas värv (taustad, heledam) */
    --color-light-blue: #C8D9FF;
    --color-beige: #F5F3EE;

    /* Color Variations - Automaatselt genereeritud variatsioonid */
    --color-primary-dark: #005177;    /* Tumedam primary (hover states) */
    --color-primary-light: #0095d9;   /* Heledam primary */

    --color-secondary-light: #666666; /* Heledam secondary */
    --color-secondary-dark: #1a1a1a;  /* Tumedam secondary */

    /* Text Colors */
    --color-text: var(--color-secondary);
    --color-text-light: #666666;
    --color-text-white: #ffffff;

    /* Background Colors */
    --color-bg-body: var(--color-tertiary);
    --color-bg-white: #ffffff;
    --color-bg-dark: var(--color-secondary);

    /* Border Colors */
    --color-border: #dddddd;
    --color-border-light: #eeeeee;

    /* Additional Colors */
    --color-success: #28a745;
    --color-warning: #ffc107;
    --color-error: #dc3545;
    --color-info: #17a2b8;
}

.primary-color {
    color: var(--color-primary);
}
.secondary-color {
    color: var(--color-secondary);
}
.light-blue {
    color: var(--color-light-blue);
}
.beige {
    color: var(--color-beige);
}
.primary-color-bg {
    background: var(--color-primary);
}
.secondary-color-bg {
    background: var(--color-secondary);
}
.light-blue-bg {
    background: var(--color-light-blue);
}
.beige-bg {
    background: var(--color-beige);
}

/* ==========================================================================
   General Styles
   ========================================================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-text);
    background-color: var(--color-bg-body);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

a {
    color: var(--color-primary);
    transition: color 0.3s ease;
    text-decoration: none;
}

a:hover {
    color: var(--color-primary-dark);
    text-decoration: none;
}

img {
    max-width: 100%;
    height: auto;
}

/* ==========================================================================
   Header
   ========================================================================== */
.header-wrapper {
    display: flex;
    width: 100%;
    justify-content: center;
    position: fixed;
    z-index: 2000;
    top: 0;
}
.header-wrapper .logo-section:before {
    content: "";
    height: 100%;
    background: white;
    width: 6500px;
    position: absolute;
    left: -6400px;
}
.header-wrapper:after {
    content: "";
    width: 100%;
    position: absolute;
    background: #031d55;
    height: 88px;
}
header {
    max-width: 1500px;
    width: 100%;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.site-branding {
    margin-bottom: 0px;
    z-index: 2;
}

.site-title {
    font-size: 2rem;
    margin: 0;
    font-weight: 700;
}

.site-title a {
    color: var(--color-secondary);
    text-decoration: none;
}

.site-title a:hover {
    color: var(--color-primary);
}

.site-description {
    color: var(--color-text-light);
    font-size: 1rem;
    margin: 5px 0 0 0;
}

.custom-logo-link {
    display: inline-block;
}

.custom-logo {
    max-height: 80px;
    width: auto;
}

/* ==========================================================================
   Navigation
   ========================================================================== */

nav {
    margin-top: 15px;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

nav li {
    position: relative;
}

nav a {
    color: var(--color-secondary);
    text-decoration: none;
    padding: 8px 12px;
    display: block;
    border-radius: 4px;
    font-weight: 500;
}

nav a:hover,
nav .current-menu-item > a {
    background-color: var(--color-primary);
    color: var(--color-text-white);
}

/* Submenu */
nav ul ul {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--color-bg-white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    min-width: 200px;
    flex-direction: column;
    gap: 0;
}

nav li:hover > ul {
    display: flex;
}

nav ul ul a {
    padding: 10px 15px;
    border-radius: 0;
}
ul {
    margin-left: 25px;
}
/* ==========================================================================
   Content Area
   ========================================================================== */

main {
    padding: 40px 0;
    min-height: 60vh;
}

main .container {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 40px;
}

.content-area {
    background: var(--color-bg-white);
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

/* ==========================================================================
   Posts
   ========================================================================== */

article {
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid #eee;
}

article:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.entry-header {
    margin-bottom: 20px;
}

.entry-title {
    font-size: 2rem;
    margin-bottom: 10px;
    line-height: 1.3;
    font-weight: 700;
}

.entry-title a {
    color: var(--color-secondary);
    text-decoration: none;
}

.entry-title a:hover {
    color: var(--color-primary);
}

.entry-meta {
    color: var(--color-text-light);
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.entry-meta span {
    margin-right: 15px;
}

.entry-meta span:before {
    content: "• ";
    margin-right: 5px;
}

.entry-meta span:first-child:before {
    content: "";
    margin-right: 0;
}

.post-thumbnail {
    margin-bottom: 20px;
    border-radius: 8px;
    overflow: hidden;
}

.post-thumbnail img {
    display: block;
    width: 100%;
    height: auto;
    transition: transform 0.3s ease;
}

.post-thumbnail a:hover img {
    transform: scale(1.05);
}

.entry-content {
    line-height: 1.8;
}

.entry-content p {
    margin-bottom: 1.5em;
}

.entry-content h2,
.entry-content h3,
.entry-content h4 {
    margin-top: 1.5em;
    margin-bottom: 0.75em;
}

.entry-content ul,
.entry-content ol {
    margin-bottom: 1.5em;
    padding-left: 2em;
}

.entry-content blockquote {
    margin: 1.5em 0;
    padding: 1em 1.5em;
    background: var(--color-tertiary);
    border-left: 4px solid var(--color-primary);
    font-style: italic;
}

/* ==========================================================================
   Pagination
   ========================================================================== */

.navigation.pagination {
    margin-top: 40px;
}

.nav-links {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.page-numbers {
    padding: 8px 15px;
    background: var(--color-bg-white);
    border: 1px solid var(--color-border);
    color: var(--color-text);
    text-decoration: none;
    border-radius: 4px;
}

.page-numbers:hover,
.page-numbers.current {
    background: var(--color-primary);
    color: var(--color-text-white);
    border-color: var(--color-primary);
}

/* Post Navigation */
.post-navigation {
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid #eee;
}

.nav-subtitle {
    display: block;
    font-size: 0.9rem;
    color: #666;
}

.nav-title {
    font-weight: 600;
}

/* ==========================================================================
   Sidebar
   ========================================================================== */

.sidebar {
    background: var(--color-bg-white);
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.widget {
    margin-bottom: 30px;
}

.widget:last-child {
    margin-bottom: 0;
}

.widget-title {
    font-size: 1.2rem;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--color-primary);
    font-weight: 600;
}

.widget ul {
    list-style: none;
}

.widget ul li {
    padding: 8px 0;
    border-bottom: 1px solid var(--color-border-light);
}

.widget ul li:last-child {
    border-bottom: none;
}

.widget ul li a {
    color: var(--color-text);
    text-decoration: none;
}

.widget ul li a:hover {
    color: var(--color-primary);
}

/* ==========================================================================
   Comments
   ========================================================================== */

.comments-area {
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid #eee;
}

.comments-title {
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.comment-list {
    list-style: none;
}

.comment {
    margin-bottom: 20px;
    padding: 20px;
    background: #f9f9f9;
    border-radius: 8px;
}

.comment-author {
    font-weight: 600;
    margin-bottom: 5px;
}

.comment-metadata {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 10px;
}

.comment-content p {
    margin-bottom: 1em;
}

.reply {
    margin-top: 10px;
}

.reply a {
    font-size: 0.9rem;
    text-decoration: none;
}

/* Comment Form */
.comment-form p {
    margin-bottom: 15px;
}

.comment-form label {
    display: block;
    margin-bottom: 5px;
    font-weight: 500;
}

.comment-form input[type="text"],
.comment-form input[type="email"],
.comment-form input[type="url"],
.comment-form textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid var(--color-border);
    border-radius: 4px;
    font-family: inherit;
}

.comment-form input[type="submit"] {
    background: var(--color-primary);
    color: var(--color-text-white);
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
}

.comment-form input[type="submit"]:hover {
    background: var(--color-primary-dark);
}

/* ==========================================================================
   Footer
   ========================================================================== */

footer {
    background: var(--color-primary);
    color: var(--color-tertiary);
    padding: 60px;
}

footer a {
    color: var(--color-tertiary);
}

footer a:hover {
    color: var(--color-primary);
}

footer .widget {
    margin-bottom: 20px;
}

footer .widget-title {
    color: var(--color-text-white);
    font-size: 23px;
    font-weight: normal;
}

.site-info {
    text-align: center;
    padding-top: 20px;
    margin-top: 20px;
    border-top: 1px solid var(--color-secondary-light);
}

.site-info p {
    margin: 0;
}

/* ==========================================================================
   Search Form
   ========================================================================== */

.search-form {
    display: flex;
    gap: 10px;
}

.search-form label {
    flex: 1;
}

.search-form input[type="search"] {
    width: 100%;
    padding: 10px;
    border: 1px solid var(--color-border);
    border-radius: 4px;
}

.search-form input[type="submit"] {
    padding: 10px 20px;
    background: var(--color-primary);
    color: var(--color-text-white);
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
}

.search-form input[type="submit"]:hover {
    background: var(--color-primary-dark);
}

/* ==========================================================================
   No Results
   ========================================================================== */

.no-results {
    padding: 40px;
    text-align: center;
}

.page-header {
    margin-bottom: 30px;
}

.page-title {
    font-size: 2rem;
}

.page-content {
    font-size: 1.1rem;
}

/* ==========================================================================
   Page Links
   ========================================================================== */

.page-links {
    margin-top: 20px;
    font-weight: 600;
}

.page-links a {
    display: inline-block;
    padding: 5px 10px;
    margin: 0 5px;
    background: var(--color-tertiary);
    text-decoration: none;
    border-radius: 4px;
}

.page-links a:hover {
    background: var(--color-primary);
    color: var(--color-text-white);
}

/* ==========================================================================
   Responsive Design
   ========================================================================== */

@media (max-width: 992px) {
    main .container {
        grid-template-columns: 1fr;
    }

    .sidebar {
        margin-top: 40px;
    }
}

@media (max-width: 768px) {
    nav ul {
        flex-direction: column;
        gap: 0;
    }

    nav ul ul {
        position: static;
        box-shadow: none;
        padding-left: 20px;
    }

    .entry-title {
        font-size: 1.5rem;
    }

    .content-area {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    body {
        font-size: 14px;
    }

    .site-title {
        font-size: 1.5rem;
    }

    .entry-title {
        font-size: 1.3rem;
    }
}

/* ==========================================================================
   Utility Classes
   ========================================================================== */

.screen-reader-text {
    clip: rect(1px, 1px, 1px, 1px);
    position: absolute !important;
    height: 1px;
    width: 1px;
    overflow: hidden;
}

.alignleft {
    float: left;
    margin-right: 1.5em;
    margin-bottom: 1em;
}

.alignright {
    float: right;
    margin-left: 1.5em;
    margin-bottom: 1em;
}

.aligncenter {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.clear:after {
    content: "";
    display: table;
    clear: both;
}

/* ====== HEADER STYLING ====== */

.site-header {
    color: #fff;
    height: 126px;
    display: flex;
    align-items: flex-end;
    /*overflow: hidden;*/
}

.header-inner {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    width: 100%;
}

/* Logo valge taustaga kaldservaga */
.logo-section {
    background-color: transparent;
    position: relative;
    padding: 0 40px;
    display: flex;
    align-items: center;
    height: 126px;
    z-index: 1001;
    background-image: url(../grexit/images/logo-header-taust.png);
    background-repeat: no-repeat;
    background-position: top;
    background-size: 455px 126px;
    flex: 0 455px;
    background-position-y: top;
    background-position-x: -40px;
}


/* Logo */
.site-branding img {
    height: auto;
}

/* Menüüriba paremal */
.main-navigation {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--color-primary);
    margin-left: -40px;
    height: 86px;
    margin-top: 0;
}

.main-navigation ul {
    list-style: none;
    display: flex;
    gap: 30px;
    margin: 0;
    padding: 0 40px;
}

.main-navigation a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
}

.main-navigation a:hover {
    text-decoration: none;
}

/* Näiteks "Kaugabi" nupu jaoks */
.main-navigation .btn-orange {
    background-color: #ff9400;
    color: #fff !important;
    padding: 10px 20px;
    border-radius: 20px;
}

/* Telefoni ikooni või numbri jaoks */
.main-navigation .phone a {
    display: flex;
    align-items: center;
    gap: 8px;
}
.main-menu {
    width: calc(100% - 165px);
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.site-content {
    margin-top: 40px;
}
.bg-overlay:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    background: url(../grexit/images/bg-overlay.png);
    background-repeat: no-repeat;
    background-size: 75% 150%;
}
.curved-header-container {
    margin-top: -50px !important;
}
.curved-header {

}
.curved-header h2 {
    display: inline-block;
    background: white;
    padding: 15px;
    padding-right: 30px;
    padding-left: 30px;
    position: relative;
    padding: 12px;
    padding-top: 20px;
    padding-bottom: 15px;
}
.curved-header h2:after, .curved-header h2:before {
    content: "";
    background-image: url(../grexit/images/curved-header-img.svg);
    position: absolute;
    top: 0;
    width: 135px;
    height: 100%;
    background-repeat: no-repeat;
}
.curved-header h2:after {
    right: -135px;
}
.curved-header h2:before {
    transform: scaleX(-1);
    left: -135px;
}
.curved-header.dark h2 {
    color: var(--color-secondary) !important;
    background: var(--color-primary);

}
.curved-header.dark h2:after, .curved-header.dark h2:before {
    content: "";
    background-image: url(../grexit/images/curved-header-img.svg);
    position: absolute;
    top: 0;
    /*width: 135px;*/
    width: 183px;

    height: 106%;
    filter: brightness(0) saturate(100%) invert(9%) sepia(27%) saturate(7227%) hue-rotate(217deg) brightness(101%) contrast(104%);
    -webkit-filter: brightness(0) saturate(100%) invert(9%) sepia(27%) saturate(7227%) hue-rotate(217deg) brightness(101%) contrast(104%);

}
.curved-header.dark h2:after {
    right: -180px;
}
.curved-header.dark h2:before {
    transform: scaleX(-1);
    left: -180px;
}

.curved-header.grey h2:after, .curved-header.grey h2:before {
    filter: brightness(0) saturate(100%) invert(100%) sepia(100%) saturate(31%) hue-rotate(128deg) brightness(107%) contrast(95%);
    -webkit-filter: brightness(0) saturate(100%) invert(100%) sepia(100%) saturate(31%) hue-rotate(128deg) brightness(107%) contrast(95%);

}

.curved-header.grey h2 {
    line-height: 30px;
    background: #F8F8F8;
}
.curved-header.grey h2:after {
    right: -135px;
}
.curved-header.grey h2:before {
    transform: scaleX(-1);
    left: -135px;
}

.teenus-tabid {

}

.teenus-tab,
.teenus-tab.e-flex,
.elementor-element-038c38f,
.elementor-element-6f881d3,
.elementor-element-74e62e7 {
    padding-top: 80px !important;
    padding-left: 40px !important;
    padding-right: 40px !important;
    padding-bottom: 30px !important;
    background-color: var(--color-primary);
    border-radius: 24px !important;
    display: flex !important;
    flex-direction: column !important;
    height: auto !important;
}

.service-container-button,
.teenus-tab .service-container-button,
.elementor-element-0d4b5e7,
.elementor-element-bab8f58,
.elementor-element-d480311 {
    margin-top: auto !important;
}
.teenus-tab ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.teenus-tab ul li {
    margin-bottom: 20px;
}

footer {
    position: relative;
    overflow: hidden;
}

footer:after {
    content: "";
    position: absolute;
    bottom: -50px;
    right: -50px;
    background-image: url(../grexit/images/grexit-logo-light.svg);
    width: 577px;
    height: 326px;
    background-repeat: no-repeat;
}
footer .footer-container {
    display: flex;
    justify-content: space-between;
    position: relative;
    z-index: 1;
}

footer ul.menu {
    font-size: 16px;
    margin-left: 0;
}

footer ul.menu a {
    color: var(--color-text-white);
}

footer ul.menu a:hover {
    color: var(--color-text-white);
}
footer ul.menu li {
    border: none;
}
footer .assistant-button a {
    background-color: var(--color-secondary);
    border-radius: 0;
    border-top-left-radius: 30px;
    border-bottom-right-radius: 30px;
    font-size: 16px;
    display: block;
    padding: 11px;
    padding-left: 30px;
    padding-right: 30px;
    position: relative;
}

footer .assistant-button a:hover {
    color: var(--color-text-white);
}
footer .assistant-button.with-icon a {
    padding-left: 50px;
}

footer .assistant-button a:before {
    content: "";
    background-image: url(../grexit/images/lucide_headset.svg);
    height: 21px;
    width: 21px;
    position: absolute;
    left: 20px;
    top: 15px;
}

.button-curved a, .elementor-widget-button .elementor-button {
    border-radius: 0;
    border-top-left-radius: 25px;
    border-bottom-right-radius: 25px;
    padding: 15px;
    padding-left: 30px;
    padding-right: 30px;
}

.distance-assistant {

}
.distance-assistant a {
    background: var(--color-secondary) !important;
    border-radius: 0;
    border-top-left-radius: 25px;
    border-bottom-right-radius: 25px;
    padding: 6px;
    padding-left: 45px;
    padding-right: 20px;
    font-weight: normal;
    display: flex;
    justify-content: center;
    align-items: center;
}
.distance-assistant a:hover {
    background: var(--color-secondary);
}
.distance-assistant a:before {
    content: "";
    background-image: url(../grexit/images/lucide_headset.svg);
    height: 20px;
    width: 20px;
    position: absolute;
    left: 20px;
    top: 8px;
}
.contact-form-wrapper {
    display: flex;
    margin-top: 30px;
}
.contact-form-wrapper > div {
    flex: 1;
}
.contact-form-wrapper .contact-right {
    flex: 0 450px;
    background: var(--color-primary);
    color: white;
    padding: 60px;
    border-radius: 24px;
    position: relative;
    overflow: hidden;
}
.contact-form-wrapper .contact-right:after {
    content: "";
    background: url(../grexit/images/grexit-logo-light.svg) no-repeat;
    height: 130px;
    position: absolute;
    width: 72%;
    bottom: 0;
    right: -75px;
    background-size: contain;
}

.contact-form-wrapper .contact-left {
    padding: 10px;
    border-radius: 2px 3px;
    border-top-right-radius: 24px;
    border-bottom-right-radius: 24px;
    box-shadow: 0px 0px 4px 0px #cdcdcd;
    margin-left: -30px;
    padding-left: calc(30px + 60px);
    background: white;
    padding-top: 40px;
}
.contact-form-wrapper ul.contact-info {
    margin-left: 0;
}
.contact-right h3 {
    color: var(--color-secondary);
    font-size: 28px;
    margin-bottom: 15px;
}
.contact-right p {
    font-size: 18px;
    margin-bottom: 15px;
}
.contact-info {
    list-style: none;
    margin-top: 45px;
	z-index: 1;
    position: relative;
}
.contact-info a {
	color: #fff !important;
}
.contact-info a:hover {
	text-decoration: underline !important;
	text-underline-offset: 5px;
}
.contact-info .phone, .contact-info .email, .contact-info .address {
    position: relative;
    padding-left: 30px;
    margin-bottom: 20px;
}
.contact-info .phone:before {
    content: "";
    background-image: url(../grexit/images/phone.svg);
    width: 24px;
    height: 24px;
    position: absolute;
    left: 0;
}
.contact-info .email:before {
    content: "";
    background-image: url(../grexit/images/email.svg);
    width: 24px;
    height: 24px;
    position: absolute;
    left: 0;
}
.contact-info .address:before {
    content: "";
    background-image: url(../grexit/images/location.svg);
    width: 24px;
    height: 24px;
    position: absolute;
    left: 0;
}

.contact-form-wrapper {

}
.form-fields {
    display: flex;
    flex-wrap: wrap;
}
.form-fields .contact-form-row {
    display: flex;
    flex: 0 100%;
    margin-bottom: 45px;
    padding-right: 30px;
}
.contact-form-row .contact-fieldset {
    flex: 1;
    margin-right:39px;
}
.contact-form-row .contact-fieldset br {
    display: none;
}
.contact-form-row .contact-fieldset:last-child {
    margin-right: 0;
}
.contact-fieldset label {
    display: block;
    font-size: 16px;
}
.contact-fieldset input, .contact-fieldset textarea {
    display: block;
    border: 0;
    border-bottom: 1px solid black;
    margin-bottom: 15px;
    width: 100%;
    height: 30px;
}
.teenuste-nimekiri-wrapper, .shadowed-box {
    background: white;
    padding: 30px;
    border-radius: 24px;
    box-shadow: 0 0 4px 4px rgb(0 0 0 / 6%);
    display: flex;
    margin-bottom: -180px;
}
.teenuste-nimekiri-wrapper .teenuste-nimekiri-vasak, .teenuste-nimekiri-slider {
    font-size: 18px;
    flex: 1;
    padding-right: 130px;
}
.teenuste-nimekiri-wrapper .teenuste-nimekiri-vasak h3, .teenuste-nimekiri-slider h3 {
    font-size: 32px;
    line-height: 40px;
    color: var(--color-secondary);
    margin-bottom: 15px;
}
.teenuste-nimekiri-wrapper .teenuste-nimekiri-parem {
    height: 392px;
    width: 392px;
    flex: 0 392px;
}
.teenuste-nimekiri-wrapper .teenuste-nimekiri-vasak .teenuste-nimekiri-sisu, .teenuste-nimekiri-slider .teenuste-nimekiri-slider-content {

}

.teenuste-nimekiri-wrapper .teenuste-nimekiri-juhtimine, .teenuste-nimekiri-slider .teenuste-nimekiri-slider-controls {
    margin-top: 90px;
}
.teenuste-nimekiri-wrapper .teenuste-nimekiri-juhtimine .nupud, .teenuste-nimekiri-slider .nupud {
    display: flex;
}
.teenuste-nimekiri-wrapper .teenuste-nimekiri-juhtimine .nupud button, .teenuste-nimekiri-slider .nupud button {
    position: relative;
    display: flex;
    background: var(--color-secondary);
    border: none;
    border-radius: 50%;
    padding: 8px;
    margin-right: 5px;
}
.teenuste-nimekiri-wrapper .teenuste-nimekiri-juhtimine .nupud button.nupud-parem, .teenuste-nimekiri-slider .nupud button.nupud-parem {
    transform: rotate(180deg);
}

.teenuste-nimekiri-wrapper .teenuste-nimekiri-juhtimine .nupud button:before, .teenuste-nimekiri-slider .nupud button:before {
    content: "";
    background: url(../grexit/images/ArrowRight.svg) no-repeat;
    width: 27px;
    height: 27px;
}
.teenuste-nimekiri-wrapper .teenuste-nimekiri-juhtimine .progressing {
    margin-top: 50px;
}

.teenuste-nimekiri-slider .progressing {
    margin-top: 15px;
}

.teenuste-nimekiri-wrapper .teenuste-nimekiri-juhtimine .progressing .progressing-bar, .teenuste-nimekiri-slider .progressing .progressing-bar {
    background: #C5C5C5;
    border-radius: 10px;
    width: 100%;
    height: 10px;
}

.teenuste-nimekiri-wrapper .teenuste-nimekiri-juhtimine .progressing .progressing-bar::content, .teenuste-nimekiri-slider .progressing .progressing-bar::content {
    content: "";
}
.fookusteenused {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 50px;
}
.fookusteenused > div {
    flex: 0 calc(20% - 12px);
    margin: 6px;

}
.fookusteenused > div.text-wrapper {
    flex: 0 calc(60% - 12px);
    font-size: 18px;
}
.fookusteenused > div.text-wrapper h3 {
    color: var(--color-secondary);
    font-size: 32px;
    line-height: 40px;
    margin-bottom: 15px;
}
.fookusteenused > div.fookusteenused-item {
    border-radius: 24px;
    overflow: hidden;
    min-height: 217px;
    background: url("/wp-content/uploads/2025/10/pilt.png") no-repeat;
    position: relative;
    background-size: cover;
    background-position: center;
}
.fookusteenused > div.fookusteenused-item .fookusteenused-item-text {
    position: absolute;
    color: white;
    bottom: 0;
    padding: 15px;
    z-index: 2;
}
.fookusteenused > div.fookusteenused-item .fookusteenused-item-description {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: #FF9100;
    z-index: 2;
    color: white;
    display: flex;
    align-items: end;
    padding: 15px;
    font-size: 14px;
    line-height: 19px;
    opacity: 0;
}
.fookusteenused > div.fookusteenused-item:hover .fookusteenused-item-description {
    opacity: 1;

}
.elementor-widget-button .elementor-button:before {

}
.vert-accordion {
    padding: 35px;
    border-radius: 24px;
}
.vert-accordion .e-n-tabs-heading {
    border-left: 1px solid #ff9100;
    padding-left: 25px;
}
.vert-accordion .e-n-tab-title {
    padding: 0 !important;
    color: #000000 !important;
    background: none !important;
    margin-bottom: 5px;
}
.vert-accordion .e-n-tab-title > span{
    font-size: 18px !important;
    line-height: 24px;

}
.vert-accordion .e-n-tab-title[aria-selected=true] {
    color: var(--color-secondary) !important;
}
.vert-accordion .e-n-tab-title[aria-selected=true]::before {
    content: "";
    background: var(--color-secondary);
    width: 40px;
    height: 1px;
}
.kkk-accordion .e-n-accordion-item > .e-n-accordion-item-title {
    border: none;
    justify-content: space-between;
}
.kkk-accordion .e-n-accordion-item {
    border-bottom: 1px solid black;
    margin-bottom: 10px;
}
.kkk-accordion .e-n-accordion-item .e-n-accordion-item-title-text {
    font-size: 18px;
    padding-left: 14px;
}
.kkk-accordion .e-n-accordion-item[open]>.e-n-accordion-item-title {

}
.kkk-accordion .e-n-accordion-item > .elementor-element {
    border: none;
    padding: 25px;
    color: #727272;
    font-size: 16px;
    padding-top: 0px;
}
.kkk-accordion .e-n-accordion-item .elementor-element p {
    color: #727272;
}
.kkk-accordion .e-n-accordion-item span.e-n-accordion-item-title-icon {
    background: var(--color-secondary);
    height: 36px;
    width: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    flex: 0 0 36px;
}

.contact-form-wrapper.cv-contact {
    display: flex;
    margin-top: 30px;
    margin-bottom: 30px;
}
.contact-form-wrapper.cv-contact > div {
    flex: 1;
}
.contact-form-wrapper.cv-contact .contact-right {
    flex: 0 450px;
    background: none;
    color: white;
    padding: 60px;
    border-radius: 24px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}
.contact-form-wrapper.cv-contact .contact-right:after {
    content: "";
    background: none;
    height: 130px;
    position: absolute;
    width: 72%;
    bottom: 0;
    right: -75px;
    background-size: contain;
}

.contact-form-wrapper.cv-contact .contact-left {
    padding: 60px;
    border-radius: 2px 3px;
    border-top-right-radius: 24px;
    border-bottom-right-radius: 24px;
    box-shadow: none;
    margin-left: 0px;
    padding-left: 0;
    background: transparent;
}
.contact-form-wrapper.cv-contact .contact-right h3 {
    color: var(--color-primary);
    font-size: 28px;
    margin-bottom: 15px;
}
.contact-form-wrapper.cv-contact .contact-right p {
    font-size: 18px;
    margin-bottom: 15px;
}
.contact-form-wrapper.cv-contact .contact-info {
    list-style: none;
    margin-top: 45px;
}
.contact-form-wrapper.cv-contact .contact-info .phone, .contact-info .email, .contact-info .address {
    position: relative;
    padding-left: 30px;
    margin-bottom: 20px;
}
.contact-form-wrapper.cv-contact .contact-info .phone:before {
    content: "";
    background-image: url(../grexit/images/phone.svg);
    width: 24px;
    height: 24px;
    position: absolute;
    left: 0;
}
.contact-form-wrapper.cv-contact .contact-info .email:before {
    content: "";
    background-image: url(../grexit/images/email.svg);
    width: 24px;
    height: 24px;
    position: absolute;
    left: 0;
}
.contact-form-wrapper.cv-contact .contact-info .address:before {
    content: "";
    background-image: url(../grexit/images/location.svg);
    width: 24px;
    height: 24px;
    position: absolute;
    left: 0;
}

.contact-form-wrapper {

}
.contact-form-wrapper.cv-contact .form-fields {
    display: flex;
    flex-wrap: wrap;
}
.contact-form-wrapper.cv-contact .form-fields .contact-form-row {
    display: flex;
    flex: 0 100%;
}
.contact-form-wrapper.cv-contact .contact-form-row .contact-fieldset {
    flex: 1;
    margin-right: 10px;
}
.contact-form-wrapper.cv-contact .contact-form-row .contact-fieldset:last-child {
    margin-right: 0;
}
.contact-form-wrapper.cv-contact .contact-fieldset label {
    display: block;
    font-size: 16px;
    color: white;
}
.contact-form-wrapper.cv-contact .contact-fieldset input, .contact-fieldset textarea {
    display: block;
    border: 0;
    border-bottom: 1px solid white;
    margin-bottom: 15px;
    width: 100%;
    height: 30px;
    background: transparent;
    border-bottom: 1px solid black;
}
.lined-title {
    display: flex;
    align-items: center !important;
}
.lined-title h2 {

}
.lined-title::after {
    content: "";
    height: 3px;
    width: 100%;
    background: var(--color-secondary);
}
.contact-icon {

}
.contact-icon.vert {
    display: flex;
}
.contact-icon .phone, .contact-icon .email {
    display: flex;
    margin-right: 60px;
    margin-bottom: 20px;
}
.contact-icon .phone:before {
    content: "";
    background-image: url(../grexit/images/phone-lined.svg);
    background-repeat: no-repeat;
}

.contact-icon .email {

}
.contact-icon .email:before {
    content: "";
    background-image: url(../grexit/images/mail-lined.svg);
    background-repeat: no-repeat;
}
.contact-icon .phone:before, .contact-icon .email:before{
    width: 24px;
    height: 24px;
    margin-right: 10px;
}
.contact-icon > a {
    border: 0;
}
.contact-icon.vert.wrap {
    flex-wrap: wrap;
}
.contact-icon.vert.wrap > a {
    flex: 0 0 100%;
}
.teenuste-nimekiri-wrapper, .teenuste-nimekiri-slider {
    display: flex;
    justify-content: space-between;
    gap: 40px;
}
.teenuste-nimekiri-vasak, .teenuste-nimekiri-right {
    position: relative;
    overflow: hidden;
    padding-right: 0 !important;

}
.teenuste-nimekiri-sisu, .teenuste-nimekiri-content {
    display: flex;
    transition: transform 0.4s ease;
}

.teenuste-nimekiri-sisu > div {
    min-width: 100%;
}
.teenuste-nimekiri-wrapper .teenuste-nimekiri-parem {
    overflow: hidden;
    border-radius: 24px;
}
.teenuste-nimekiri-wrapper .teenuste-nimekiri-parem img {
    width: 100%;
    object-fit: cover;
}
.teenuste-nimekiri-wrapper .teenuste-nimekiri-juhtimine .progressing .progressing-bar, .teenuste-nimekiri-slider .progressing .progressing-bar,
{
    width: 100%;
    position: relative;
    overflow: hidden;
}
.progressing-active {
    background: var(--color-secondary);
    height: 10px;
}
.progressing-counter {
    position: absolute;
    right: 0;
    top: -30px;
    font-size: 12px;
}
.teenuste-nimekiri-wrapper .teenuste-nimekiri-juhtimine .progressing {
    position: relative;
}
.teenuste-nimekiri-slider.no-image {
    padding-right: 0 !important;
}
.teenuste-nimekiri-slider .teenuste-nimekiri-slider-controls {
    position: relative;
}

.teenuste-nimekiri-slider .teenuste-nimekiri-slider-controls .progressing-counter {
    position: absolute;
    right: 0;
    top: 15px;
    font-size: 12px;
}

.teenuste-nimekiri-wrapper.teenuste-slider-wrapper {
    padding: 0 !important;
    border: none !important;
    box-shadow: none !important;
    margin-bottom: 0px;
}
.teenuste-nimekiri-wrapper .teenuste-nimekiri-juhtimine .progressing .progressing-bar, .teenuste-nimekiri-slider .progressing .progressing-bar {
    overflow: hidden;
}
.teenuste-nimekiri-wrapper.teenuste-slider-wrapper {
    width: 100%;
}
.teenuste-slider-wrapper .teenuste-nimekiri-juhtimine {
    margin-top: 30px;
}

.teenuste-nimekiri-wrapper.teenuste-slider-wrapper .teenuste-nimekiri-juhtimine .progressing {
    margin-top: 20px;
}
.grexit-button {
    border-radius: 0;
    border-top-left-radius: 25px;
    border-bottom-right-radius: 25px;
    padding: 15px;
    padding-left: 30px;
    padding-right: 30px;
    background-color: var(--e-global-color-accent);
    font-family: var(--e-global-typography-accent-font-family), Sans-serif;
    font-weight: var(--e-global-typography-accent-font-weight);
    color: var(--color-text-white);
    display: inline-block;
    font-size: 15px;
    line-height: 1;
    fill: #fff;
    text-align: center;
    transition: all .3s;
    margin-top: 25px;
}

.fookusteenused > div.fookusteenused-item::after {
    content: "";
    background: #031D55;
    background: linear-gradient(90deg,rgba(3, 29, 85, 0) 0%, rgba(12, 16, 45, 1) 100%);
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
    transform: rotate(90deg);
}
.form-fields .contact-form-row.button {
    justify-content: end;
    padding-right: 0;
}
.form-fields .contact-form-row.button .wpcf7-spinner{
    display: none;
}
.call-us .contact-info .phone {
    margin-bottom: 0;
}
.main-navigation a:hover {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
}
.icon-right-list ul li {
    justify-content: space-between !important;
    padding-bottom: 8px !important;
    padding-top: 8px !important;
}
.icon-right-list ul li span.elementor-icon-list-icon {
    order: 1;
    margin-right: 9px;
}
.icon-right-list ul li .elementor-icon-list-icon svg {
    height: 20px;
    width: 20px;
}
.icon-right-list ul li.elementor-icon-list-item:not(:last-child):after {
    width: 94% !important;
}
.vert-accordion.no-line .e-n-tab-title[aria-selected=true]::before {
    display: none !important;
}
.image-box-grid .elementor-image-box-img {
    flex: 0 0 218px;
}


/*.main-menu .sub-menu {*/
/*    display: none;*/
/*}*/
/*.main-navigation {*/
/*    position: absolute;*/
/*    left: 0;*/
/*    right: 0;*/
/*}*/


nav ul ul {
    display: none !important; /* Peidame originaalse submenu */
}

.mega-menu-container {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    background: var(--color-bg-white);
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.1);
    display: none;
    z-index: 999;
    margin-top: 86px;
    height: 260px;
    /*position: absolute;*/
    /*left: 0;*/
    /*right: 0;*/
    /*width: 100%;*/
    /*background: var(--color-bg-white);*/
    /*box-shadow: 0 6px 10px rgba(0, 0, 0, 0.1);*/
    /*display: none;*/
    /*z-index: 999;*/
    /*top: 100%;*/
    /*margin-top: -38px;*/
}

.mega-menu-container.active {
    display: block;
}

.mega-menu-inner {
    width: 100%;
    padding: 0;
    position: relative;
}

#mega-menu-content {
    display: flex;
    flex-direction: column;
    gap: 0;
    padding: 20px 0;
    /* padding-left seatakse JavaScriptiga */
}

#mega-menu-content a {
    padding: 12px 20px;
    color: var(--color-secondary);
    text-decoration: none;
    display: block;
    transition: background-color 0.3s ease;
    font-size: 16px;
    padding-top: 8px;
    padding-bottom: 8px;
    color: black;
    padding-left: 15px;
}

#mega-menu-content a:hover {
    color: var(--color-secondary);
}

/* Peamenüü item'il mis on aktiivne (submenu avatud) */
.main-navigation li.has-submenu-open > a {
    color: var(--color-secondary);
}
.swiper-slide-inner {
    display: flex;
    align-items: center;
    color: var(--color-text-white);
    font-size: 14px;
}
.swiper-slide-image .logo-caption {
    font-size: 14px;
    color: var(--color-text-white);
}

.select-topic {

}
.select-topic p {
    font-weight: bold;
    margin-bottom: 14px;
}
.valikud {

}
.valikud input {
    margin: 0;
    display: none;
}
.valikud > span:first-child {
    margin-left: 0;
}
.valikud > span > label {
    display: flex;
    align-items: center;
}
.valikud .wpcf7-list-item-label {
    display: flex;
    align-items: center;
    font-size: 16px;
}
.valikud .wpcf7-list-item-label::before  {
    background: url(../grexit/images/not-selected.svg);
    content: "";
    width: 13px;
    height: 13px;
    margin-right: 10px;
}
.valikud input[type="radio"]:checked + .wpcf7-list-item-label::before {
    background: url(../grexit/images/selected.svg);
    content: "";
}
.contact-form-row.button {
    flex-wrap: wrap;
    margin-bottom: 0;
}
.contact-form-row.button .wpcf7-spinner {
    flex: 0 0 100%;
}
/* ==========================================================================
   Grexit Image Slider
   ========================================================================== */
    .partner-slider__wrapper .swiper-wrapper {
        display: flex;
        align-items: center;
    }

    .partner-slide {
        display: flex;
        align-items: center;
        justify-content: center;
        overflow: hidden;
        padding: 10px 10px;
        gap: 20px;
    }

    .partner-slide__picture {
        flex-shrink: 0;
        width: 150px;
        display: flex;
        justify-content: center;
    }

    .partner-slide__picture img {
        max-width: 100% !important;
        height: 200px !important;
        width: 200px !important;
        object-fit: contain;
        padding: 20px 0;
    }

    .partner-slider__wrapper .swiper-wrapper {
        transition-timing-function: linear !important;
    }

    .swiper-slide {
        transition: width 0.5s ease-in-out; 
    }

    .partner-slide__content {
        display: none;
        padding-left: 0;
        color: #fff;
        font-size: 14px;
        line-height: 120%;
    }

    .swiper-slide:hover {
        flex: 0 0 450px !important;
        z-index: 10;
    }

    .swiper-slide:hover .partner-slide__content {
        display: block;
        width: 300px;
    }

/* Logo konteiner */
.grexit-image-slider-item {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 200px;
    min-height: 150px;
}

.grexit-image-slider-image {
    width: 150px;
    height: 150px !important;
    display: block;
    object-fit: contain;
    filter: grayscale(1) brightness(0) invert(1);
}

/* Caption - alguses peidetud */
.grexit-image-slider-item-caption {
    max-width: 300px;
    display: none;
    overflow: hidden;
    color: var(--color-text-white);
    font-size: 14px;
    line-height: 1.5;
    transition: all 0.4s ease;
    padding: 0;
    flex-shrink: 0;
}

/* Hover effect - caption ilmub ja wrapper saab gap'i */
.grexit-image-slider-item-wrapper:hover {
    gap: 20px;
}

.grexit-image-slider-item-wrapper:hover .grexit-image-slider-item-caption {
    max-width: 300px;
    display: block;
}

/* Slider Navigation Arrows */
.grexit-image-slider-wrapper .slider-prev,
.grexit-image-slider-wrapper .slider-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--color-secondary);
    color: #ffffff;
    border: none;
    padding: 15px;
    cursor: pointer;
    z-index: 10;
    transition: background 0.3s ease;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    line-height: 1;
    display: none;
}

.grexit-image-slider-wrapper .slider-prev:hover,
.grexit-image-slider-wrapper .slider-next:hover {
    background: var(--color-primary);
}

.grexit-image-slider-wrapper .slider-prev {
    left: 0;
}

.grexit-image-slider-wrapper .slider-next {
    right: 0;
}

.grexit-image-slider-wrapper .slider-prev:disabled,
.grexit-image-slider-wrapper .slider-next:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

/* Slider Indicators (punktid all) */
.grexit-image-slider-indicators {
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
    display: none;
}

.grexit-image-slider-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(3, 29, 85, 0.3);
    cursor: pointer;
    transition: background 0.3s ease;
    border: none;
    padding: 0;
}

.grexit-image-slider-indicator.active,
.grexit-image-slider-indicator:hover {
    background: var(--color-secondary);
}

/* Partners */

.partners-container {
    background: var(--color-primary);
}
.partners-wrapper {
    position: relative;
}
.partners-title-wrapper {
    position: absolute;
    width: 100%;
    bottom: 100%;
    overflow: hidden;
}
.partners-title {
    display: flex;
    align-items: center;
    justify-content: center;
}
.partners-title h2 {
    position: relative;
    padding: 10px 0;
    font-family: "Karla", Sans-serif;
    font-size: 32px !important;
    font-weight: 400;
    line-height: 16px;
    color: #FF9100;
    background: var(--color-primary);
}
.partners-title h2::before {
    top: -2px;
    right: 100%;
    transform: scaleX(-1);
}
.partners-title h2::after {
    top: -2px;
    left: 100%;
}
.partners-title h2::after,
.partners-title h2::before {
    position: absolute;
    height: calc(100% + 12px);
    width: 105%;
    background-image: url(../grexit/images/curved-header-wave.svg);
    background-repeat: no-repeat;
    background-size: cover;
    content: '';
}

/* Accordion */

.check-empty-accordion .accordion-empty summary .e-n-accordion-item-title-icon {
    display: none;
}
.check-empty-accordion summary {
    border-width: 0 0 1px 0 !important;
    border-bottom-color: #000 !important;
}
.check-empty-accordion .accordion-empty summary {
    pointer-events: none;
    padding-left: 0;
}
.check-empty-accordion .accordion-empty summary * {
    font-family: "Karla", Sans-serif;
    font-size: 18px;
    font-weight: 400;
}
.check-empty-accordion details > div {
    border: 0;
}
.check-empty-accordion .e-n-accordion .e-n-accordion-item:last-child summary {
    border-bottom: 0 !important;
}

/* Responsive adjustments */

.curved-blue .e-n-tab-title {
    padding-left: 15px !important;
    padding-right: 15px !important;
}
.curved-blue .e-n-tab-title:first-child {
    margin-right: 50px;
}
.curved-blue .e-n-tab-title:last-child {
    margin-left: 50px;
}
.curved-blue .e-n-tab-title[aria-selected='true']:before {
    transform: scaleX(-1);
    left: -135px;
    content: "";
    background-image: url(../grexit/images/curved-header-img.svg);
    position: absolute;
    top: 0;
    width: 135px;
    height: 100%;
    filter: brightness(0) saturate(100%) invert(99%) sepia(30%) saturate(6147%) hue-rotate(177deg) brightness(105%) contrast(102%);
    -webkit-filter: brightness(0) saturate(100%) invert(99%) sepia(30%) saturate(6147%) hue-rotate(177deg) brightness(105%) contrast(102%);
}
.curved-blue .e-n-tab-title[aria-selected='true']:after {
    right: -135px;
    content: "";
    background-image: url(../grexit/images/curved-header-img.svg);
    position: absolute;
    top: 0;
    width: 135px;
    height: 100%;
    filter: brightness(0) saturate(100%) invert(99%) sepia(30%) saturate(6147%) hue-rotate(177deg) brightness(105%) contrast(102%);
    -webkit-filter: brightness(0) saturate(100%) invert(99%) sepia(30%) saturate(6147%) hue-rotate(177deg) brightness(105%) contrast(102%);
}

.curver-blue .e-n-tab-title[aria-selected="false"]:hover {
    background: transparent !important;
}
.list-margin-20 ul {
	margin-left: 20px;
}
.elementor-element.elementor-button-info .elementor-button {
    background: transparent;
    background-color: transparent !important;
    color: black;
    display: flex;
    align-items: center;
    padding: 0;
    margin: 0;
}
.elementor-element.elementor-button-info .elementor-button:before {
    content: "";

}

.vasak-nool a {
    display: flex;
    justify-content: center;
    align-items: center;
}
.vasak-nool a:after {
    content: "";
    background-image: url(../grexit/images/nool-vasak.svg);
    width: 15px;
    height: 10px;
    display: block;
    margin-left: 10px;
}
.contact-fieldset textarea {
	width: 100% !important;
	min-height: 6rem;
	max-height: 12rem;
}

@media (max-width: 1300px) {
    .main-menu {
        width: 100%;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    .main-navigation ul {
        list-style: none;
        display: flex;
        gap: 10px;
        margin: 0;
        padding: 0 40px;
    }
}

@media (max-width: 1059px) {
    .main-navigation {
        display: none !important;
    }
    .mobile-site-navigation {
        display: flex !important;
    }
}

@media (min-width: 1060px) {
    .mobile-site-navigation {
        display: none;
    }
}
@media (min-width: 1467px) {
    /*.bg-overlay:after {*/
    /*    background:*/
    /*            url(../grexit/images/bg-overlay.png) left center no-repeat,*/
    /*            url(../grexit/images/bg-overlay-right.png) right center no-repeat;*/
    /*}*/
}

