* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    /* outline: 2px solid red; */
}

html, body {
    font-family: "Montserrat", sans-serif !important;
    font-optical-sizing: auto;
    font-weight: normal;
    font-style: normal;
    width: 100%;
    position: relative;
    transition: all 0.3s ease;
    background-color: #F8F9FA;
    color: #232323;
    min-height: 100%;
    padding: 0;
    margin: 0;
    overflow-x: hidden;
}  

h1 {
    font-weight: 500;
    font-size: 40px;
    line-height: 100%;
    letter-spacing: 0%;
}

img {
    user-select: none;
    -webkit-user-drag: none;
    -webkit-user-select: none;
    -moz-user-select: none;
}
  
@media only screen and (max-width: 600px) {
    h2 {
        font-size: 24px !important;
    }
}


/* ---------------------------------------------------------
|                          PRELOADER                       | 
--------------------------------------------------------- */

#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    transition: opacity 0.6s ease, visibility 0.6s;
}

#preloader img {
    width: 230px;
    transform: translateY(-40px);
}
  
.spinner {
    width: 60px;
    height: 60px;
    border: 6px solid #fff;
    border-top-color: #1E8687;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}
  
@keyframes spin {
    to { transform: rotate(360deg); }
}
  
#preloader.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}
  

/* ---------------------------------------------------------
|                      GLOBAL ELEMENTS                     | 
--------------------------------------------------------- */

.grecaptcha-badge {
    z-index: 9999;
}

.form-message {
    padding: 12px;
    border-radius: 6px;
    display: none;
    font-size: 15px;
    max-width: 500px;
    margin: 15px auto;
}
  
.form-message.success {
    background-color: #d4edda;
    color: #155724;
}
  
.form-message.error {
    background-color: #f8d7da;
    color: #721c24;
}

.bg-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: 1;
}

.big-black-button {
    background-color: #232323;
    color: #fff;
    text-decoration: none;
    padding: 18px 46px;
    border-radius: 40px;
    font-size: 20px;
    font-weight: 500;
    transition: .3s;
}

.big-black-button:hover {
    background-color: #fff;
    color: #232323;
}

.small-black-button {
    background-color: #232323;
    color: #fff;
    text-decoration: none;
    padding: 13.5px 34.5px;
    border-radius: 40px;
    font-size: 18px;
    font-weight: 500;
    transition: .3s;
}

.small-black-button:hover {
    background-color: #1E8687 !important;
}

.shadow-wrapper {
    display: inline-block;
    overflow: visible;
    -webkit-filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.5));
    filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.5));
    will-change: filter;
}


/* ---------------------------------------------------------
|                            CURSOR                        | 
--------------------------------------------------------- */

.circle-cursor {
    position: fixed;
    width: 9px;
    height: 9px;
    background: #232323;
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    filter: drop-shadow(0 0 10px rgba(35, 35, 35, 0.5));
    transform: translate(-50%, -50%);
}

@media only screen and (max-width: 600px) {
    .circle-cursor {
        display: none;
    }
}


/* ---------------------------------------------------------
|                          SCROLL-BAR                      | 
----------------------------------------------------------*/

#scrollTopBtn {
    position: fixed;
    bottom: 50%;
    right: 30px;
    background: #232323;
    color: white;
    border: none;
    padding: 12px 18px;
    font-size: 16px;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    opacity: 0;
    pointer-events: none;
    transition: 0.2s ease;
    z-index: 500;
    width: 54px;
    height: 54px;
}

#scrollTopBtn img {
    position: absolute;
    transform: translate(-50%, -50%);
    left: 50%;
    top: 50%;
}
  
#scrollTopBtn.show {
    opacity: 1 !important;
    pointer-events: auto;
}
  
#scrollTopBtn:hover {
    background: #1E8687;
}
  

/* ---------------------------------------------------------
|                         ANIMATIONS                       | 
--------------------------------------------------------- */

.swift-up-text span {
	display: inline-block;
	overflow: hidden;
	animation: 0.3s swift-up ease-in-out forwards;
}

.swift-up-text i {
	font-style: normal;
	position: relative;
	top: 100px;
	animation: 0.5s swift-up ease-in-out forwards;
}

@keyframes swift-up {
	to {
		top: 0;
	}
}

.reveal {
    opacity: 0;
}
  
.reveal.slide-up {
    opacity: 0;
    transform: translateY(60px);
    transition: all 0.3s ease-out;
}
.reveal.slide-up.show {
    opacity: 1;
    transition-delay: .3s;
    transform: translateY(0);
}
  
.reveal.slide-left {
    opacity: 0;
    transform: translateX(100px);
    transition: all 0.3s ease-out;
}
.reveal.slide-left.show {
    opacity: 1;
    transition-delay: .3s;
    transform: translateX(0);
}
  
.reveal.slide-right {
    opacity: 0 ;
    transform: translateX(-100px);
    transition: all 0.3s ease-out;
}
.reveal.slide-right.show {
    opacity: 1;
    transition-delay: .3s;
    transform: translateX(0);
}
  

/* ---------------------------------------------------------
|                           NAVBAR                         | 
--------------------------------------------------------- */

#logo-image-navbar {
    cursor: pointer;
}

nav {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 10;
    max-width: 1344px;
}

nav a {
    position: relative;
    color: #fff;
    font-weight: 400;
    font-size: 14px;
    text-decoration: none;
    text-align: center;
}
  
nav a:not(.get-quote)::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -5px;
    width: calc(100% + 8px);
    transform: translateX(-4px);
    height: 1.5px;
    background-color: #fff;
    opacity: 0;
    transition: opacity 0.3s ease;
}
  
nav a:not(.get-quote):hover::after, nav a.active::after {
    opacity: 1;
}

nav .logo {
    width: 230px;
    display: flex;
    align-items: center;
    justify-content: center;
}

nav .logo img {
    width: 100%;
    height: auto;
    max-width: 230px;
}

nav .link-container {
    max-width: 608px;
    width: calc(100% - 230px - 234px);
    display: flex;
    justify-content: space-evenly;
    align-items: center;
}

nav .button-container {
    max-width: 234px;
    width: calc(100% - 230px - 608px);
    display: flex;
    justify-content: space-evenly;
    align-items: center;
}

nav .get-quote {
    color: #1E8687;
    background-color: #fff;
    padding: 10px 20px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 15px;
    border: 2px solid #fff;
    transition: .3s;
}

nav .get-quote:hover {
    background-color: rgba(0, 0, 0, 0);
    color: #fff;
}

nav .menu-icon {
    width: 24px;
    height: 16px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    display: none;
    position: absolute;
    right: 20px;
    cursor: pointer;
}
  
nav .menu-icon span {
    display: block;
    height: 2px;
    background-color: #fff;
    border-radius: 2px;
    transition: 0.3s;
}
  
@media only screen and (max-width: 1085px) {
    nav {
        justify-content: center;
        justify-content: center;
    }

    nav .link-container, nav .button-container {
        display: none;
    }

    nav .logo {
        width: 100%;
        height: 100%;
    }

    nav .menu-icon {
        display: flex;
    }
}

/* MOBILE MENU */

.mobile-menu {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: 40px 20px;
    z-index: 9999;
    color: white;
    box-shadow: -4px 0 15px rgba(0, 0, 0, 0.2);
    transition: 0.3s ease;
    transform: translateX(100%);
    background-color: rgba(30, 133, 135, 1);
}

.mobile-menu.open {
    transform: translateX(0);
}
  
.mobile-menu .logo {
    width: 230px;
    transform: translateY(-30px);
}

.mobile-menu .menu-container {
    margin-top: 20px;
}

.mobile-menu .menu-container, .mobile-menu .button-container {
    display: flex;
    flex-direction: column;
}

.mobile-menu .button-container {
    margin-top: 50px;
}

.mobile-menu a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    text-align: center;
    margin: 20px 0;
    position: relative;
    width: auto;
}

.mobile-menu .big-black-button {
    background-color: #fff;
    color: #1E8687 !important;
    font-size: 18px !important;
    margin-right: 0;
}

.mobile-menu .menu-container a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -5px;
    width: calc(100% + 8px);
    max-width: 100px;
    transform: translateX(-4px);
    height: 1.5px;
    background-color: #fff;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mobile-menu .active::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -5px;
    width: calc(100% + 8px);
    max-width: 100px;
    transform: translateX(-4px);
    height: 1.5px;
    background-color: #fff;
    opacity: 1 !important; 
}
  
.mobile-menu .menu-container a:hover::after {
    opacity: 1;
}

.mobile-menu .close {
    position: absolute;
    width: 20px;
    top: 40px;
    right: 20px;
    background-color: transparent;
    border: none;
    cursor: pointer;
}


/* ---------------------------------------------------------
|                           FOOTER                         | 
--------------------------------------------------------- */

footer {
    background: #fff;
    width: 100%;
    padding: 60px 10px 0px;
    overflow: hidden;
}
  
.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1344px;
    margin: 0 auto;
}

.footer-section {
    margin: 0 10px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    position: relative;
}

footer p, footer a {
    font-weight: 400;
    font-size: 16px;
    line-height: 150%; 
    color: #232323;
    text-decoration: none;
    margin: 5px 0;
    position: relative;
}
  
.footer-container a:not(.small-black-button)::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -5px;
    width: calc(100% + 8px);
    transform: translateX(-4px);
    height: 1.5px;
    background-color: #232323;
    opacity: 0;
    transition: opacity 0.3s ease;
}
  
.footer-container a:not(.small-black-button):hover::after {
    opacity: 1;
}

footer .logo img {
    width: 100%;
    max-width: 200px;
}
  
footer .location-icon {
    position: absolute;
    transform: translateX(-105%);
    transition: .3s;
}

footer .social {
    display: flex;
    justify-content: center;
    max-width: 1344px;
    margin: 0 auto;
    align-items: center;
    margin-top: 10px;
    padding: 20px 0;
}

footer .social a {
    margin: 0 10px;
}

footer .social a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -5px;
    width: calc(100% - 40px);
    transform: translateX(40px);
    height: 1.5px;
    background-color: #232323;
    opacity: 0;
    transition: opacity 0.3s ease;
}
  
footer .social a:hover::after {
    opacity: 1;
}

footer .social p {
    margin-right: 15px;
    transform: translateY(25%);
}

footer .social img {
    transform: translateY(25%);
    margin-right: 5px;
    background-color: #232323;
    padding: 8px;
    border-radius: 50%;
    width: 35px;
    height: 35px;
    transition: .3s;
}

footer .social a:hover img {
    background-color: #1E8687;
}

footer .tooltip {
    position: absolute;
    top: 50%;
    right: 100%;
    transform: translate(-43px, -50%);
    background: #fff;
    border-radius: 8px;
    padding: 12px;
    z-index: 10;
    box-shadow: 0 2px 6px rgba(0,0,0,0.2);
    transition: .3s;
    opacity: 0;
    visibility: hidden;
}

footer .tooltip p {
    width: 400px;
}

footer .tooltip::before {
    content: "";
    position: absolute;
    top: 50%;             
    right: -12px;
    transform: translateY(-50%);
    border: 8px solid transparent;
    border-right-color: #1E8687;
    transform: rotate(180deg) translate(-4px, 7px);
}

footer .addr-item:hover .tooltip {
    visibility: visible;
    opacity: 1;
}

footer .addr-item:first-child .tooltip {
    top: calc(50% - 36px);
}

footer .addr-item:nth-child(2) .tooltip {
    top: calc(50% - 6px);
}

footer .addr-item:nth-child(3) .tooltip {
    top: calc(50% + 22px);
}

@media only screen and (max-width: 1085px) {
    footer {
        padding: 20px 10px;
    }

    .footer-container {
        justify-content: center;
    }

    .footer-section {
        margin: 10px;
        width: calc(33.3% - 20px);
        align-items: center;
    }

    footer .location-icon {
        position: absolute;
        left: 50%;
        transform: translateX(-130px);
    }

    .footer-container a:not(.small-black-button)::after,
    footer .social a::after {
        opacity: 0 !important;
        transition: none !important;
        background: none !important;
    }

    footer .addr-item:hover .tooltip {
        opacity: 0 !important;
        visibility: hidden !important;
        transition: none !important;
    }

    footer .social a:hover img {
        background-color: #232323 !important;
        transition: none !important;
    }
}

@media only screen and (max-width: 745px) {
    #text-before-button-footer {
        margin-bottom: 20px;
    }

    .footer-section {
        margin: 10px;
        width: calc(100% - 20px);
        align-items: center;
        height: 100px;
    }

    footer .address {
        margin-top: 30px;
    }

    footer .social p {
        display: none;
    }

    footer .addr-item:hover .tooltip {
        visibility: hidden;
        opacity: 0;
    }
}



/* ---------------------------------------------------------
|                    SUBSCRIBE CONTAINER                   | 
--------------------------------------------------------- */

.subscribe-container {
    position: fixed;
    top: 50%;
    left: 50%;
    transform:  translate(-50%, -50%);
    z-index: 99999;
    background-color: rgba(0, 0, 0, 0.7);
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    display: none;
}

.subscribe-content {
    background-color: #fff;
    padding: 30px;
    width: 95%;
    max-width: 800px;
    transform: translateY(-25%);
    border-radius: 24px;
}

#close-subscribe {
    position: absolute;
    top: 10px;
    right: 15px;
    cursor: pointer;
}

.subscribe-content p {
    margin: 20px 0;
}

.subscribe-content input:focus {
    border-color: #007BFF;
    outline: none;
    box-shadow: 0 0 5px rgba(0, 123, 255, 0.5); 
}

.subscribe-content input {
    width: 250px;
    padding: 12px 15px 12px 45px;
    margin-right: 20px;
    border: 1px solid #ccc;
    border-radius: 25px;
    font-size: 14px;
}

#subscribe-form button {
    width: 153px;
    border: none;
}

#subscribe-form {
    display: flex;
}

@media only screen and (max-width: 700px) {
    #subscribe-form {
        flex-direction: column;
        align-items: center;
    } 

    .subscribe-content input {
        margin: 10px 0;
        width: 100%;
    }

    #subscribe-form button {
        width: 100%;
        margin-top: 20px;
    }
}


/* ---------------------------------------------------------
|                           HEADER                         | 
--------------------------------------------------------- */

header {
    background-color: #fff;
} 

header .big-black-button {
    margin-right: 60px;
}

header .header-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-bottom-right-radius: 64px;
    border-bottom-left-radius: 64px;
}

header .back {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 2;
    background-color: #1E8687CC;
}
  
header .content {
    position: relative;
    z-index: 3;
    color: white;
    text-align: center;
    width: 100%;
    max-width: 1344px;
    margin: 0 auto;
    padding-top: 100px;
    padding-bottom: 50px;
}
 
.top-header {
    text-align: center;
    margin: 15px 0;
}



/* ---------------------------------------------------------
|                           COOKIE                         | 
--------------------------------------------------------- */

.cookie-banner {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: white;
    color: var(--color-text);
    padding: 12px 18px;
    border-radius: 50px;
    font-size: 14px;
    display: flex;
    align-items: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    width: 90%;
    max-width: 470px;
    z-index: 9999;
    transition: opacity 0.3s ease, bottom 0.3s ease;
}

.cookie-banner p {
    margin: 0;
    font-size: 14px;
    flex: 1;
    color: var(--color-text-muted);
}

.cookie-banner a {
    font-weight: bold;
    color: var(--color-text);
    text-decoration: none;
}

.cookie-banner a:hover {
    text-decoration: underline;
}

.cookie-icon {
    width: 24px;
    height: 24px;
    margin-right: 10px;
}

.cookie-close {
    background: none;
    border: none;
    font-size: 18px;
    color: var(--color-text-muted);
    cursor: pointer;
    padding: 0 8px;
}

.cookie-close:hover {
    color: var(--color-text);
}

.cookie-banner.hidden {
    opacity: 0;
    bottom: -50px;
    pointer-events: none;
}