/* style.css - Version 1.0.0 - Last updated: 2025-06-21 */
/** {*/
/*    margin: 0;*/
/*    padding: 0;*/
/*    box-sizing: border-box;*/
/*}*/
/*html, body {*/
/*    width: 100%;*/
/*    height: 100%;*/
/*    overflow-x: hidden;*/
/*    font-family: Helvetica, sans-serif;*/
/*    font-weight: 100;*/
/*    letter-spacing: 1px;*/
/*    line-height: 1.5em;*/
/*    transition: background-color 1s ease-in-out, color 1s ease-in-out;*/
/*}*/
/*.container {*/
/*    width: 100vw;*/
/*    height: 100vh;*/
/*    position: relative;*/
/*    display: flex;*/
/*    flex-direction: column;*/
/*    justify-content: center;*/
/*    align-items: center;*/
/*    transition: background-color 1s ease-in-out;*/
/*}*/

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

html, body {
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    overflow: hidden;
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    transition: background-color 1s ease-in-out, color 1s ease-in-out;
}

.container {
    width: 100vw;
    height: 100vh;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: background-color 11s ease-in-out;
}

.logo {
    position: absolute;
    top: 30px;
    left: 30px;
    transition: opacity 1s ease-in-out;
    z-index: 1;
}

.logo img {
    width: 150px;
    height: auto;
}

.get-in-touch {
    position: absolute;
    top: 30px;
    right: 30px;
    padding: 8px 24px;
    font-size: 15px;
    font-weight: 300;
    border-radius: 8px;
    transition: all 1s ease-in-out;
    cursor: pointer;
    text-decoration: none;
    z-index: 1;
}

.footer {
    position: fixed;
    bottom: 0;
    width: 100%;
    min-height: 30px;
    
    font-size: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 30px;
    border-top: 1px solid rgb(248, 131, 121, 0.1);
    transition: color 1s ease-in-out;
    box-sizing: border-box;
}

.footer a {
    text-decoration: none;
    color: inherit;
}

.footer-contact {
    display: flex;
    align-items: center;
    gap: 20px;
}

.footer-contact svg {
    margin-right: 0;
    margin-bottom: 1rem;
}

.desktop-only {
    display: none;
}
@media screen and (min-width: 769px) {
    .desktop-only {
        display: inline-flex;
    }
}
@media screen and (min-width: 1201px) {
    .slider {
        position: absolute;
        width: 100%;
        height: 100%;
        background-size: cover;
        background-position: center;
        transition: opacity 11s ease-in-out;
    }
}
@media screen and (max-width: 1200px) {
    .slider {
        position: absolute;
        width: 100%;
        height: 100%;
        background-size: contain;
        background-repeat: no-repeat;
        background-position: center;
        transform: scale(1.1);
    }
}

.icon {
    width: 16px;
    height: 16px;
    vertical-align: middle;
    fill: currentColor;
}

.tooltip {
    width:16px;
    height:16px;
    font-size: 14px;
    border-radius:10px;
    border:2px solid #f0f0f0;
    position:relative;
    background:rgba(255,255,255,.5);
    cursor: pointer;
    display: inline-block;
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
}

/* ::before for the tooltip content box */
.tooltip::before {
    content: attr(data-tooltip);
    position: absolute;
    background-color: #f0f0f0;
    color: #333;
    padding: 8px 12px;
    border-radius: 4px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    z-index: 100;

    /* Tooltip above the trigger */
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%) translateY(-10px);
    pointer-events: none;
}

/* ::after for the downward-pointing arrow at the bottom of the tooltip content */
.tooltip::after {
    content: "";
    position: absolute;
    width: 0; 
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 10px solid #f0f0f0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    z-index: 101;
    bottom: calc(100% - 10px);
    left: 50%;
    transform: translateX(-50%);
    pointer-events: none;
    padding-bottom: 10px;
}

/* Show tooltip and arrow on hover */
.tooltip:hover::before,
.tooltip:hover::after {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}
/*.content-section {*/
/*    width: 100%;*/
/*    background-color: #fff;*/
/*    display: flex;*/
/*    justify-content: center;*/
/*    align-items: center;*/
/*    padding: 100px 20px;*/
/*}*/
/*.content-container {*/
/*    display: flex;*/
/*    width: 80%;*/
/*    max-width: 1200px;*/
/*}*/
/*.content-box {*/
/*    flex: 1;*/
/*    padding: 20px;*/
/*    display: flex;*/
/*    justify-content: center;*/
/*    align-items: center;*/
/*    text-align: center;*/
/*}*/
/*.content-box img {*/
/*    max-width: 100%;*/
/*    height: auto;*/
/*}*/
/*.content-box p {*/
/*    font-size: 18px;*/
/*    color: #000;*/
/*}*/
/*@media (max-width: 800px) {*/
/*    .content-container {*/
/*        flex-direction: column;*/
/*        align-items: center;*/
/*        text-align: center;*/
/*    }*/
/*    .content-box img {*/
/*        order: -1;*/
/*    }*/
/*}*/