body {
    padding: 0;
    margin: 0;
    line-height: 1.5;
    font-family: "Avenir";
}

a {
    text-decoration: none;
    color: black;
}

.floating-contact {
    position: fixed;
    right: 18px;
    bottom: 30px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 10px;

}

.floating-btn {
    position: relative;
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #fff;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, .25);
    transition: width .3s ease, transform .3s ease, box-shadow .3s ease;
}

.floating-btn i {
    font-size: 24px;
}

.floating-btn span {
    position: absolute;
    right: 62px;
    top: 50%;
    transform: translateY(-50%) translateX(10px);
    padding: 7px 12px;
    border-radius: 5px;
    background: #111;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: opacity .25s ease, transform .25s ease;
}



/*.floating-btn:hover span {
			opacity: 1;
			visibility: visible;
			transform: translateY(-50%) translateX(0);
		}*/

.floating-call {
    background: #075e54;
}

.floating-telegram {
    background: #229ed9;
}

.floating-whatsapp {
    background: #25d366;
}

/*	.floating-btn:hover {
			transform: scale(1.08);
			box-shadow: 0 6px 18px rgba(0, 0, 0, .30);
		}*/


header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
}

.topbar {
    background: linear-gradient(90deg, #061b2e 0%, #09263e 50%, #061b2e 100%);
    color: #fff;
    border-bottom: 2px solid #ffc400;
}

.topbar-container {
    width: 1250px;
    min-height: 40px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.contact-info {
    display: flex;
    align-items: center;
    gap: 20px;
}

.contact-item {
    color: #fff;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: .25s ease;
}

.contact-item:hover {
    color: #ffc400;
}

.contact-item i {
    font-size: 18px;
}

.separator {
    width: 1px;
    height: 22px;
    background: rgba(255, 255, 255, .35);
}

.social-area {
    display: flex;
    align-items: center;
    gap: 13px;
}

.social-area>span {
    margin-right: 5px;
}

.social-icon {
    width: 35px;
    height: 35px;
    border: 1px solid rgba(255, 255, 255, .8);
    border-radius: 50%;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .25s ease;
}

.social-icon:hover {
    background: #ffc400;
    border-color: #ffc400;
    color: linear-gradient(90deg, #061b2e 0%, #09263e 50%, #061b2e 100%);
}

.main-navbar {
    background: linear-gradient(90deg, #061b2e 0%, #09263e 50%, #061b2e 100%);
    position: relative;
    z-index: 100;
}

.navbar-container {
    width: 1250px;
    min-height: 68px;
    margin: auto;
    display: flex;
    align-items: stretch;
}

.navbar-logo {
    width: auto;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-shrink: 0;
    /*padding: 7px 20px 7px 5px;*/

}

.navbar-logo img {
    width: 100px;
    max-width: 100%;
    height: auto;
    display: block;
}

.nav-menu {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
}

.nav-link {
    min-height: 68px;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-size: 16px;
    background: transparent;
    border: 0;
    cursor: pointer;
    position: relative;
    transition: .25s ease;
    padding: 0 28px;
}

.nav-link i {
    font-size: 23px;
}

.nav-link:hover {
    color: #ffd200;
}

.nav-dropdown {
    position: relative;
}

.nav-dropdown>.nav-link {
    width: 100%;
}

.nav-dropdown .arrow {
    font-size: 11px;
    margin-left: 2px;
    transition: transform .25s ease;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 245px;
    background: linear-gradient(90deg, #061b2e 0%, #09263e 50%, #061b2e 100%);
    color: white;
    border-radius: 0 0 8px 8px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, .18);
    padding: 8px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: opacity .25s ease, visibility .25s ease, transform .25s ease;
}

.dropdown-menu a {
    min-height: 52px;
    padding: 0 20px;
    color: white;
    display: flex;
    align-items: center;
    gap: 13px;
    font-size: 15px;
    font-weight: 700;
    transition: .2s ease;
}

.dropdown-menu a i {
    width: 22px;
    font-size: 18px;
    color: #ffc400;
}

.dropdown-menu a:hover {
    color: #ffc400;
}

.languages a {
    display: flex;
}

.languages img {
    width: 34px;
    height: 23px;
    object-fit: cover;
    transition: .2s ease;
}

.menu-toggle {
    display: none;
    width: 45px;
    height: 45px;
    border: 0;
    background: transparent;
    cursor: pointer;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.menu-toggle span {
    width: 27px;
    height: 3px;
    background: white;
    border-radius: 3px;
    transition: .3s ease;
}

.hero-carousel {
    width: 100%;
    position: relative;
    overflow: hidden;
    background: #fff;
}

.carousel-wrapper {
    width: 100%;
    height: 881px;
    position: relative;
    overflow: hidden;
}

.hero-slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity .8s ease, visibility .8s ease;
    overflow: hidden;
}

.hero-slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 2;
}


.hero-image {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(3, 28, 65, .90) 0%, rgba(3, 28, 65, .70) 25%, rgba(3, 28, 65, .30) 48%, rgba(3, 28, 65, 0) 72%);
    z-index: 1;
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 8%;
    transform: translateY(-50%);
    z-index: 3;
    width: 420px;
    color: #fff;
}

.hero-content h1 {
    margin: 0;
    font-size: 42px;
    font-weight: 800;
    letter-spacing: .5px;
    text-transform: uppercase;
}

.hero-content h2 {
    margin: 8px 0 8px;
    color: #ffd200;
    font-size: 30px;

    font-weight: 900;
    text-transform: uppercase;
}

.hero-content p {
    margin: 12px 0 20px;
    padding-left: 0;
    max-width: 300px;
    font-size: 15px;
    font-weight: 600;
}

.hero-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 100px;
    height: 38px;
    padding: 0 18px;
    background: #ffd200;
    color: #111;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 800;
    text-decoration: none;
    text-transform: uppercase;
    transition: all .25s ease;
}

.hero-social {
    position: absolute;
    top: 28px;
    right: 20px;
    z-index: 10;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.hero-social a {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    background: rgba(0, 0, 0, .75);
    color: #fff;
    font-size: 17px;
    text-decoration: none;
    transition: all .25s ease;
}

.hero-social a:hover {
    background: #ffd200;
    color: #111;
    transform: scale(1.08);
}

.carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 40px;
    height: 40px;
    border: 0;
    border-radius: 50%;
    background: rgba(0, 0, 0, .35);
    color: #fff;
    cursor: pointer;
    transition: all .25s ease;
}

.carousel-arrow:hover {
    background: #ffd200;
    color: #111;
}

.carousel-prev {
    left: 20px;
}

.carousel-next {
    right: 20px;
}

.carousel-dots {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    gap: 8px;

}

.dot {
    width: 10px;
    height: 10px;
    padding: 0;
    border: 1px solid black;
    border-radius: 50%;
    background: transparent;
    cursor: pointer;
    transition: all .3s ease;
}

.dot.active {
    background: #ffd200;
    border-color: #ffd200;
    transform: scale(1.15);
}

.tours-section {
    width: 100%;
    padding: 35px 0;

}

.tours-container {
    max-width: 1250px;
    margin: 0 auto;
}

.tours-header {
    text-align: center;
    margin-bottom: 22px;
}

.tours-header h2 {
    margin: 0;
    color: #111;
    font-weight: 800;
    font-size: 35px;
}

.tours-header p {
    margin: 3px 0 0;
    color: #01356f;
    font-weight: 600;
}

.tours-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    align-items: stretch;
}

.tour-card {
    position: relative;
    width: 100%;
    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 7px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, .10);
    transition: transform .25s ease, box-shadow .25s ease;
    display: flex;
    flex-direction: column;
}

.tour-card a {
    display: flex;
    flex-direction: column;
    height: 100%;
    text-decoration: none;
    color: black;
}

.tour-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    border-radius: 5px;
}

.tour-badge {
    display: block;
    width: fit-content;
    margin: 5px auto 0;
    padding: 3px 10px;
    border-radius: 7px;
    color: #fff;
    font-size: 18px;
    font-weight: 800;
    text-align: center;
    text-transform: uppercase;
}

.badge-blue {
    background: #0879bd;
}

.badge-green {
    background: #28a745;
}

.badge-orange {
    background: #ff7a00;
}

.tour-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 7px 10px 10px;
}

.tour-content h3 {
    min-height: 32px;
    margin: 0;
    color: #111;
    font-weight: 800;
}

.tour-price-label {
    margin: 5px 0 0;
    color: #555;
    font-size: 20px;
}

.tour-price {
    margin-top: 0;
    color: #111;
    font-weight: 900;
    font-size: 30px;
}

.tour-price span {
    font-size: 30px;
    font-weight: 700;
}

.tour-rating {
    margin-top: 3px;
    font-size: 20px;
    letter-spacing: 1px;
}

.tour-rating span {
    color: #ffc400;
}

.tour-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 90%;
    margin-top: 7px;
    border-radius: 7px;
    background: #ffd200;
    color: #111;
    font-weight: 800;
    text-decoration: none;
    text-transform: uppercase;
    transition: all .2s ease;
    padding: 10px;
}

.promo-banner {
    position: relative;
    width: 100%;
    height: 320px;
    overflow: hidden;
    border-radius: 3px;
    box-sizing: border-box;
    background: url("https://www.parasailadventure.com/img/banners/cintillo-parasail-adventure-2.jpg") center center / cover no-repeat;
    margin-bottom: -1px;
}

.font-bored {
    position: relative;
    width: 100%;
    height: 274px;
    overflow: hidden;
    border-radius: 3px;
    box-sizing: border-box;
    background: url("https://www.parasailadventure.com/img/banners/cintillo-parasail-adventure-4.jpg") center center / cover no-repeat;
    margin-bottom: -1px;
}

.text-bored {
    text-align: center;
    font-size: 25px;
    color: white;
}

.promo-content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    width: 100%;
    height: 100%;
    padding: 20px 0;
    box-sizing: border-box;
}

.promo-text {
    position: relative;
    z-index: 3;
    width: 55%;
    padding-left: 5px;
}

.promo-text h2 {
    margin: 0 0 8px;
    font-size: 42px;
    font-weight: 500;
    color: white;
}

.promo-text h3 {
    margin: 0 0 14px;
    font-weight: 700;
    color: white;
}

.promo-text p {
    margin: 0;
    color: white;
}

.parasail-info {
    margin: 35px 0;
    box-sizing: border-box;
    color: #333;
}

.parasail-benefits {
    width: 100%;
}

.parasail-benefit {
    /*display: flex;*/
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 9px;
}

.parasail-icon {
    flex: 0 0 28px;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 19px;
}

.parasail-benefit p {
    margin: 0;
    padding: 0;
    color: black;
}

.parasail-message {
    margin: 12px auto 0;
    text-align: center;
    font-size: 25px;
    font-weight: 500;
    color: #023369;
}

.stats-guarantees {
    background: none;
}

.text-guarantees {
    color: #001a54;
    text-align: center;
    font-size: 30px;
    margin: 0;
}

.stat-guarantees {
    text-align: center;
    padding: 10px 20px;
    background: #f8fbfe;
    color: black;
    border-radius: 10px;
    border: 1px solid #001a5f;
}

.stats .guarantees-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin: 35px 0;
}

.stat {
    text-align: center;
    padding: 10px 20px;
}


.stat img {
    width: 55px;
    margin-bottom: 15px;
}

.stat-guarantees img {
    width: 100px;
    margin-bottom: 15px;
}

.stat-guarantees h4 {
    font-size: 23px;
    color: #001a54;
    margin: 0;
}

.stat p {
    font-size: 17px;
}

.reviews-section {
    width: 100%;
    padding: 45px 0;
    background: #f7f9fa;
}

.reviews-container {
    width: 100%;
    max-width: 1250px;
    margin: 0 auto;
    padding: 0 15px;
}

.reviews-header {
    text-align: center;
    margin-bottom: 28px;
}

.reviews-header h2 {
    margin: 0;
    color: #111;
    font-size: 26px;
    font-weight: 800;
}

.reviews-header p {
    margin: 5px 0 0;
    color: #666;
    font-size: 14px;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    align-items: stretch;
}

.review-card {
    display: flex;
    flex-direction: column;
    min-width: 0;
    padding: 20px;
    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 10px;
    box-shadow: 0 3px 12px rgba(0, 0, 0, .08);
    transition: transform .25s ease, box-shadow .25s ease;
}

.review-header,
.review-c {
    display: flex;
    align-items: center;
    gap: 12px;
    justify-content: space-between;
}

.review-avatar {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #001a5f;
    color: #fff;
    font-size: 15px;
    font-weight: 800;
}

.review-user {
    flex: 1;
    min-width: 0;
}

.review-user h3 {
    margin: 0;
    color: #111;
    font-size: 15px;
    font-weight: 800;
}


.review-stars {
    margin-top: 4px;
    color: #ffc400;
    font-size: 15px;
    letter-spacing: 1px;
}




.site-footer {
    width: 100%;
    background: #071d31;
    color: #fff;
}

.footer-container {
    width: 100%;
    max-width: 1250px;
    margin: 0 auto;
}

.footer-main {
    background: linear-gradient(90deg, #061b2e 0%, #09263e 50%, #061b2e 100%);
    padding: 38px 0 30px;
}

.footer-main .footer-container {
    display: grid;
    grid-template-columns: 1.35fr .85fr 1.1fr 1.25fr 1.55fr;
    gap: 30px;
}

.footer-brand {
    padding-right: 25px;
    border-right: 1px solid rgba(255, 255, 255, .35);
    min-height: 150px;
}

.footer-logo {
    display: inline-block;
}

.footer-logo img {
    width: 190px;
    max-width: 100%;
    height: auto;
    display: block;
}

.footer-brand p {
    margin: 18px 0 0;
    color: rgba(255, 255, 255, .90);
    text-align: center;
}

.footer-column {
    min-height: 150px;
    padding-left: 5px;
}

.footer-column h3,
.footer-social h3,
.footer-payments h3,
.footer-contact h3 {
    margin: 0 0 15px;
    color: #fff;
    font-weight: 800;
    letter-spacing: .3px;
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column li {
    margin-bottom: 10px;
}

.footer-column a {
    color: rgba(255, 255, 255, .90);
    text-decoration: none;
    transition: color .2s ease, padding-left .2s ease;
}

.footer-column a:hover {
    color: #ffd200;
    padding-left: 4px;
}


.footer-social-payment {
    min-height: 150px;
    padding-left: 15px;
    padding-right: 15px;
    border-right: 1px solid rgba(255, 255, 255, .35);
}


.social-links {
    display: flex;
    align-items: center;
    gap: 9px;
}

.social-links a {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    color: #fff;
    font-size: 17px;
    text-decoration: none;
    transition: transform .2s ease, opacity .2s ease;
}

.social-links a:nth-child(1) {
    background: #25d366;
}

.social-links a:nth-child(2) {
    background: #1877f2;
}

.social-links a:nth-child(3) {
    background: linear-gradient(45deg, #feda75, #d62976, #4f5bd5);
}

.social-links a:nth-child(4) {
    background: #ff0000;
}

.social-links a:hover {
    transform: translateY(-3px);
    opacity: .85;
}

.footer-payments {
    margin-top: 25px;
}

.footer-payments h3 {
    margin-bottom: 10px;

}

.payment-methods {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;

}

.payment-methods img {
    object-fit: contain;
    border-radius: 3px;
    padding: 2px;
}

.footer-contact {
    padding-left: 5px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.contact-item i {
    width: 18px;
    margin-top: 3px;
    color: #ffd200;
    font-size: 16px;
    text-align: center;
}

.contact-item p,
.contact-item a {
    margin: 0;
    color: rgba(255, 255, 255, .92);
    text-decoration: none;
}

.contact-item a:hover {
    color: #ffd200;
}

.footer-copyright {
    background: #ffd200;
    color: #111;
    text-align: center;
}

.footer-copyright .footer-container {
    padding-top: 8px;
    padding-bottom: 8px;
}

.footer-copyright p {
    margin: 0;
    font-weight: 600;
}

.footer-legal {
    background: #061b2e;
    color: #fff;
}

.footer-legal .footer-container {
    min-height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    text-align: center;
}

.footer-legal p {
    margin: 0;
    color: rgba(255, 255, 255, .85);
}

.footer-legal a {
    color: #ffd200;
    text-decoration: underline;
}

.legal-separator {
    color: rgba(255, 255, 255, .4);
}

.review-content {
    flex: 1;
    margin-top: 18px;
}

.review-content p {
    margin: 0;
    color: #444;
    font-size: 14px;
}

.review-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-top: 18px;
    padding-top: 12px;
    border-top: 1px solid #eee;
}

.review-tour {
    color: #001a5f;
    font-weight: 700;
}

.review-date {
    color: #737373;
    white-space: nowrap;
}

@media (max-width: 1100px) {

    .navbar-logo {
        width: 160px;
    }

    .navbar-logo img {
        width: 140px;
    }

    .nav-link {
        font-size: 14px;
        gap: 7px;
    }

    .nav-link i {
        font-size: 20px;
    }

    .languages {
        min-width: 90px;
        gap: 8px;
    }

    .footer-main .footer-container {
        grid-template-columns: 1.2fr 1fr 1fr;
        gap: 30px;
    }


    .footer-brand {
        grid-row: span 2;
    }

    .footer-social-payment {
        border-right: none;
    }

    .footer-contact {
        grid-column: 2 / 4;
        padding-top: 15px;
        border-top: 1px solid rgba(255, 255, 255, .2);
    }

}

@media (max-width: 991px) {

    .carousel-wrapper {
        height: 600px;
    }

    .hero-content {
        left: 7%;
        width: 380px;
    }

    .hero-content h1 {
        font-size: 35px;
    }

    .hero-content h2 {
        font-size: 27px;
    }

    .hero-content p {
        font-size: 14px;
    }

    .hero-social {
        right: 15px;
    }


    .tours-grid {
        grid-template-columns: repeat(2, 1fr);

        margin: 0 10px;
    }

    .reviews-container {
        padding: 0;
    }

    .review-title {
        margin: 18px 0 0;
    }

    .reviews-grid {
        grid-template-columns: repeat(2, 1fr);
        margin: 0 10px;
    }

}

@media(max-width:992px) {

    .stats .guarantees-container {
        grid-template-columns: repeat(2, 1fr);
        margin: 35px 10px;
    }
}


@media (max-width: 600px) {

    .tours-header {
        margin-bottom: 18px;
    }

    .tours-header h2 {
        font-size: 16px;
    }

    .tours-header p {
        font-size: 11px;
    }

    .tours-grid {
        grid-template-columns: 1fr;
        margin: 0 10px;
        gap: 15px;
    }

    .tour-card {
        width: 100%;
    }

    .tour-price {
        font-size: 30px;
    }

    .tour-btn {
        width: 90%;
        font-size: 15px;
    }

    .review-c {
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .review-user {
        display: flex;
        gap: 10px;
        align-items: center;
    }

    .review-header {
        display: block;
    }


    .reviews-header {
        margin-bottom: 20px;
    }

    .reviews-header h2 {
        font-size: 20px;
    }

    .reviews-header p {
        font-size: 12px;
    }

    .reviews-grid {
        grid-template-columns: 1fr;

        margin: 10px;
        gap: 15px;
    }

    .review-card {
        padding: 16px;
    }

    .review-content p {
        font-size: 13px;
    }

    .review-footer {
        display: block;
    }


}

@media (min-width: 769px) {

    .nav-dropdown:hover .dropdown-menu {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .nav-dropdown:hover .arrow {
        transform: rotate(180deg);
    }

}

@media (max-width: 768px) {
    .floating-contact {
        z-index: 1;
    }

    .topbar-container {
        width: calc(100% - 25px);
        min-height: 48px;
        justify-content: center;
    }

    .topbar {
        display: none;
    }

    .contact-info {
        justify-content: center;
        gap: 10px;
    }

    .contact-item {
        font-size: 13px;
    }

    .contact-item i {
        font-size: 14px;
    }

    .contact-item:nth-of-type(2) {
        display: none;
    }

    .separator {
        display: none;
    }

    .social-area {
        display: none;
    }

    .navbar-container {
        width: 100%;
        min-height: 68px;
        align-items: center;
        justify-content: space-between;
        border-bottom: 4px solid #ffc400;
    }

    .navbar-logo {
        width: auto;
        border: 0;
        padding: 5px 0;
    }

    .navbar-logo img {
        width: 88px;
    }

    .menu-toggle {
        display: flex;
    }

    .nav-menu {
        position: absolute;
        top: 69px;
        left: 0;
        width: 100%;
        background: linear-gradient(90deg, #061b2e 0%, #09263e 50%, #061b2e 100%);
        display: flex;
        flex-direction: column;
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        transition: max-height .35s ease, opacity .25s ease;
        box-shadow: 0 10px 20px rgba(0, 0, 0, .15);
    }

    .nav-menu.show {
        max-height: 600px;
        opacity: 1;
    }

    .nav-link {
        width: 100%;
        min-height: 55px;
        justify-content: flex-start;
        border: 0;
        border-bottom: 1px solid #ffd200;
        font-size: 15px;
        padding: 0;
    }

    .nav-link i {
        font-size: 20px;
        padding: 10px;
    }

    .nav-link.active::after {
        display: none;
    }

    .nav-link.active {
        /* background: rgba(255, 255, 255, .20);*/
    }

    .nav-dropdown {
        width: 100%;
    }

    .nav-dropdown>.nav-link {
        justify-content: flex-start;
    }

    .nav-dropdown .arrow {
        margin-left: auto;

        transition: transform .25s ease;
    }

    .nav-dropdown.open .arrow {
        transform: rotate(180deg);
    }

    .dropdown-menu {
        position: static;
        width: 100%;
        padding: 0;
        background: linear-gradient(90deg, #061b2e 0%, #09263e 50%, #061b2e 100%);
        border-radius: 0;
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        transform: none;
        display: none;
    }

    .nav-dropdown.open .dropdown-menu {
        display: block;
    }

    .dropdown-menu a {
        min-height: 48px;
        border-bottom: 1px solid #ffd200;
        font-size: 14px;
    }

    .languages {
        width: 100%;
        min-height: 55px;
        justify-content: flex-start;
        border: 0;
        border-bottom: 1px solid #ffd200;
        font-size: 15px;
        padding: 0;
    }

    .promo-banner {
        height: 215px;
    }

    .promo-content {
        padding: 25px 20px;
        align-items: center;
        display: block;
    }

    .promo-text {
        width: 60%;
    }

    .promo-banner::after {
        height: 65px;
    }

    .text-bored {
        font-size: 18px;

    }

    .parasail-info {
        margin: 15px;
    }

    .parasail-benefit {
        gap: 9px;
        margin-bottom: 8px;
    }

    .parasail-icon {
        flex-basis: 25px;
        width: 25px;
        height: 25px;
        font-size: 17px;
    }

    .parasail-benefit p {
        font-size: 12px;
    }

    .parasail-message {
        width: 90%;
        font-size: 23px;
    }

    .stats {
        margin: 30px 0;
    }

    .stats .guarantees-container {
        grid-template-columns: 1fr;
        gap: 15px;
        margin: 35px 10px;
    }

    .stat {}

    .carousel-dots {
        display: none;
    }

}

@media (max-width: 767px) {

    .footer-main {
        padding: 35px 0 25px;
    }

    .footer-container {
        /*	padding-left: 20px;
				padding-right: 20px;*/
    }

    .payment-methods {
        display: block;
    }

    .footer-main .footer-container {
        display: flex;
        flex-direction: column;
        gap: 25px;
    }

    .footer-brand {
        width: 100%;
        padding: 0 0 20px;
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, .25);
        text-align: center;
    }

    .footer-logo img {
        width: 180px;
        margin: 0 auto;
    }


    .footer-brand p {
        margin-top: 12px;
        font-size: 13px;
    }


    .footer-column {
        width: 100%;
        min-height: auto;
        padding: 0;
        text-align: center;
    }


    .footer-column h3 {
        margin-bottom: 12px;
    }


    .footer-column li {
        margin-bottom: 8px;
    }

    .footer-social-payment {
        width: 100%;
        min-height: auto;
        padding: 20px 0;
        border-right: none;
        border-top: 1px solid rgba(255, 255, 255, .25);
        text-align: center;
    }


    .social-links {
        justify-content: center;
    }


    .footer-payments {
        margin-top: 25px;
    }

    .footer-contact {
        width: 100%;
        padding: 0;
        text-align: center;
        padding: 20px 0 0;
    }


    .footer-contact h3 {
        margin-bottom: 18px;
    }


    .contact-item {
        justify-content: center;
        text-align: left;
    }


    .footer-copyright .footer-container {
        padding-top: 10px;
        padding-bottom: 10px;
    }


    .footer-copyright p {
        font-size: 11px;
    }

    .footer-legal .footer-container {
        min-height: auto;
        padding-top: 12px;
        padding-bottom: 12px;
        flex-direction: column;
        gap: 6px;
    }


    .footer-legal p {
        font-size: 10px;
    }


    .footer-legal a {
        font-size: 10px;
    }


    .legal-separator {
        display: none;
    }

}

@media (max-width: 576px) {

    .promo-banner {
        height: 255px;

        background-position: center center;
    }

    .promo-content {
        padding: 25px 18px;
        align-items: flex-start;
        padding-top: 55px;
    }

    .promo-text {
        width: 70%;
        padding-left: 0;
    }

    .promo-text h2 {
        font-size: 30px;
    }

    .promo-text h3 {
        font-size: 13px;
    }

    .promo-text p {
        font-size: 11px;
    }

    .promo-banner::after {
        height: 55px;
        left: -15%;
        width: 130%;
    }

    .parasail-info {
        margin: 12px 10px 18px;
    }

    .parasail-benefit {
        gap: 8px;
        margin-bottom: 8px;
    }

    .parasail-icon {
        flex-basis: 23px;
        width: 23px;
        height: 23px;
        font-size: 15px;
    }

    .parasail-benefit p {
        font-size: 11px;
    }

    .parasail-message {
        width: 95%;
        margin-top: 14px;
        font-size: 20px;
    }
}

@media (max-width: 400px) {

    .promo-banner {
        height: 250px;
    }

    .promo-content {
        padding-top: 45px;
    }

    .promo-text {
        width: 75%;
    }

    .promo-text h2 {
        font-size: 27px;
    }

    .promo-text h3 {
        font-size: 12px;
    }

    .promo-text p {
        font-size: 10px;
    }

    .promo-banner::after {
        height: 45px;
    }

    .parasail-benefit p {
        font-size: 10px;
    }

    .parasail-message {
        font-size: 18px;
    }
}

@media(max-width:480px) {

    .stat img {
        width: 100px;
    }
}