/* Description: Master CSS file */

/*****************************************
Table Of Contents:
- General Styles
- Navigation
- Home
- Information
- Button
- Services
- Plans
- Testimonials
- Newsletter
- Back To Top Button
- Extra Pages
- Media Queries
******************************************/

/**************************/

/*     General Styles     */

/**************************/

:root {
    --primary: #0f172a;
    --primary-light: #1e293b;
    --secondary: #f59e0b;
    --tertiary: #06b6d4;
    --gradient: linear-gradient(to right, #f59e0b, #ec4899, #06b6d4);
}


body {
    font-family: "Montserrat", sans-serif;
}

h1, h2, h3, h4, h5, h6 {
    font-family: "Montserrat", sans-serif;
}

h1 {
    font-size: 60px;
    font-weight: 500;
}

button {
    font-family: "Montserrat", sans-serif;
}

p,
ul,
h4 {
    margin: 0;
    padding: 0;
}

a {
    color: white;
    text-decoration: none;
}

li {
    list-style-type: none;
}

/* Section Background */

.home,
.about,
.services,
.plans,
.work,
.contact {
    height: 110vh;
    position: relative;
}

.services,
.work,
.contact,
.testimonial,
.footer {
    background-color: var(--primary);
}

.about,
.plans,
.company,
.newsletter,
.location {
    background-color: var(--primary-light);
}

.bottom {
    background-color: #020617;
}

/* Gradient Border And Background On Icons */

.home_text,
.home .fas,
.plans .far,
.information .fas,
.work .fas,
.services .fas,
.location .far,
.location .fas {
    padding: 15px 0;
    background: radial-gradient(circle, rgba(252,161,69,1) 7%, rgba(224,29,253,1) 45%, rgba(57,226,246,1) 98%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.navbar-nav a:hover,
.footer a:hover,
.footer .fab:hover {
    cursor: pointer;
    background: var(--gradient);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/**********************/

/*     Navigation     */

/**********************/

.navbar {
    font-weight: 500;
    font-size: 0.875rem;
    line-height: 0.875rem;
    background-color: var(--primary);
    box-shadow: 0 1px 6px 0 rgba(0, 0, 0, 0.025);
}

.navbar .navbar-brand {
    padding-top: 0.25rem;
    padding-bottom: 0.25rem;
}

.navbar .logo-image img {
    width: 108px;
    height: 32px;
}

.navbar .logo-text {
    color: #fff;
    font-weight: 500;
    line-height: 1rem;
    font-size: 1.575rem;
    text-decoration: none;
}

.offcanvas-collapse {
    position: fixed;
    top: 2.75rem;
    /* adjusts the height between the top of the page and the offcanvas menu */
    bottom: 0;
    left: 100%;
    width: 100%;
    overflow-y: auto;
    visibility: hidden;
    padding-right: 1rem;
    padding-left: 1rem;
    background-color: var(--primary);
    transition: transform 0.2s ease-in-out, visibility 0.2s ease-in-out;
}

.offcanvas-collapse.open {
    visibility: visible;
    transform: translateX(-100%);
}

.navbar .navbar-nav {
    margin-top: 0.75rem;
    margin-bottom: 0.5rem;
}

.navbar .dropdown-menu {
    border: none;
    margin-top: 0.25rem;
    margin-bottom: 0.25rem;
    background-color: var(--primary);
}

.navbar .dropdown-item {
    color: #eee;
    font-weight: 500;
    font-size: 0.875rem;
    line-height: 0.875rem;
    padding-top: 0.625rem;
    text-decoration: none;
    padding-bottom: 0.625rem;
}

.navbar .dropdown-item:hover {
    background-color: var(--primary);
}

.navbar .dropdown-divider {
    width: 100%;
    height: 1px;
    border: none;
    margin: 0.5rem auto 0.5rem auto;
    background-color: var(--primary-light);
}

.navbar .nav-item .nav-link {
    color: #eee;
    text-decoration: none;
    padding-top: 0.625rem;
    padding-bottom: 0.625rem;
    transition: all 0.2s ease;
}

.navbar .fa-stack {
    width: 2em;
    font-size: 0.75rem;
    margin-right: 0.25rem;
}

.navbar .fa-stack-2x {
    background: radial-gradient(circle, rgba(252,161,69,1) 7%, rgba(224,29,253,1) 45%, rgba(57,226,246,1) 98%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: all 0.2s ease;
}

.navbar .fa-stack-1x {
    color: #ffffff;
    transition: all 0.2s ease;
}

.navbar .fa-stack:hover .fa-stack-2x {
    color: var(--primary);
}

.navbar .fa-stack:hover .fa-stack-1x {
    color: var(--primary);
}

.navbar .navbar-toggler {
    padding: 0;
    border: none;
    font-size: 1.25rem;
}

/****************/

/*     Home     */

/****************/

.home {
    background-image: url(../assets/images/home.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.para {
    width: 50%;
}

.para-light {
    opacity: 0.7;
}

/***********************/

/*     Information     */

/***********************/

.information .container-fluid .row div:first-child {
    background-color: var(--primary);
}

.information .container-fluid .row div:last-child {
    background-color: #1e293be6;
}

.information .container-fluid .row div:nth-child(2) {
    background-color: var(--primary-light);
}

/******************/

/*     Button     */

/******************/

.btn {
    color: white;
    border-radius: 0;
    border-width: 2px;
    padding: 10px 30px;
    border-image-slice: 1;
    background-image: none;
    background: transparent;
    border-image-source: var(--gradient);
    box-shadow: 5px 5px 0px 0px var(--secondary);
}

.btn:hover {
    color: white;
    box-shadow: none;
    border-radius: 0;
    padding: 10px 30px;
    transform: translate(5px, 5px);
}

/* Email - Newsletter Button */

.btn-secondary {
    color: black;
    border-width: 2px;
    padding: 10px 30px;
    border-image-slice: 1;
    background-image: none;
    background: transparent;
    border-image-source: var(--gradient);
}

.btn-secondary:hover {
    color: black;
    padding: 10px 30px;
    background-image: var(--gradient);
}

/* Other Pages Button */

.btn-tertiary {
    color: black;
    border-radius: 0;
    border-width: 2px;
    padding: 10px 30px;
    border-image-slice: 1;
    background-image: none;
    background: transparent;
    border-image-source: var(--gradient);
    box-shadow: 5px 5px 0px 0px var(--secondary);
}

.btn-tertiary:hover {
    color: black;
    box-shadow: none;
    border-radius: 0;
    padding: 10px 30px;
    transform: translate(5px, 5px);
}

/********************/

/*     Services     */

/********************/

.services .card {
    padding: 20px;
    border-radius: 0;
    border: 2px solid white;
}

.services .card:hover {
    border: 10px solid;
    transform: scale(1.01);
    border-image-slice: 1;
    border-width: 2px;
    border-image-source: var(--gradient);
    box-shadow: 5px 5px 0px 0px #e01dfd;
}

/*****************/

/*     Plans     */

/*****************/

.plans .card {
    padding: 20px;
    border: 2px solid white;
}

/************************/

/*     Testimonials     */

/************************/

.slider-1 {
    padding-top: 8.25rem;
    padding-bottom: 8.5rem;
}

.slider-1 .section-title {
    text-align: center;
}

.slider-1 .h2-heading {
    text-align: center;
    margin-bottom: 3rem;
}

.testimonial-card {
    border: 10px solid;
    border-image-slice: 1;
    border-width: 3px;
    border-image-source: var(--gradient);
}

.slider-1 .slider-container {
    position: relative;
}

.slider-1 .swiper-container {
    width: 86%;
    position: static;
}

.slider-1 .swiper-button-prev,
.slider-1 .swiper-button-next {
    color: var(--primary);
}

.slider-1 .swiper-button-prev:focus,
.slider-1 .swiper-button-next:focus {
    /* even if you can't see it chrome you can see it on mobile device */
    outline: none;
}

.slider-1 .swiper-button-prev {
    left: -14px;
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2028%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23707375'%2F%3E%3C%2Fsvg%3E");
    background-size: 18px 28px;
}

.slider-1 .swiper-button-next {
    right: -14px;
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2028%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23707375'%2F%3E%3C%2Fsvg%3E");
    background-size: 18px 28px;
}

.slider-1 .card {
    border: none;
    position: relative;
    background-color: transparent;
}

.slider-1 .card-image {
    width: 80px;
    height: 80px;
    margin-left: auto;
    margin-right: auto;
    border-radius: 50%;
    margin-bottom: 1.25rem;
}

.slider-1 .card-body {
    padding: 0;
}

.slider-1 .testimonial-text {
    margin-bottom: 0.75rem;
}

.slider-1 .testimonial-author {
    margin-bottom: 0;
    color: #252c38;
}

.slider-1 .avatar {
    width: 70px;
    height: 70px;
    border-radius: 50%;
}

/* Dropdown Menu */

.navbar .dropdown .dropdown-menu {
    animation: fadeDropdown 0.2s;
    /* required for the fade animation */
}

@-webkit-keyframes fadeDropdown {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@keyframes fadeDropdown {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

/**********************/

/*     Newsletter     */

/**********************/

.form-control-input,
.form-control-textarea {
    width: 100%;
    appearance: none;
    border-radius: 4px;
    font-size: 0.875rem;
    line-height: 1.5rem;
    padding-left: 1.5rem;
    padding-top: 0.775rem;
    padding-bottom: 0.775rem;
}

/******************************/

/*     Back To Top Button     */

/******************************/

#myBtn {
    z-index: 99;
    right: 20px;
    width: 52px;
    height: 52px;
    bottom: 20px;
    border: none;
    outline: none;
    display: none;
    position: fixed;
    cursor: pointer;
    border-radius: 50%;
    background-color: #334155;
}

#myBtn:hover {
    background-color: #0f172a;
}

#myBtn img {
    width: 18px;
    margin-left: 0.125rem;
    margin-bottom: 0.25rem;
}

/***********************/

/*     Extra Pages     */

/***********************/

.ex-header {
    padding-top: 8.5rem;
    padding-bottom: 4rem;
    background-color: var(--primary);
}

.ex-header h1 {
    color: #fff;
}

.ex-basic-1 .list-unstyled .fas {
    font-size: 0.375rem;
    line-height: 1.625rem;
}

.ex-basic-1 .list-unstyled .flex-grow-1 {
    margin-left: 0.5rem;
}

.ex-basic-1 .text-box {
    padding: 1.25rem 1.25rem 0.5rem 1.25rem;
    background-color: #f7f9fd;
}

.ex-cards-1 .card {
    border: none;
    background-color: transparent;
}

.ex-cards-1 .card .fa-stack {
    width: 2em;
    font-size: 1.125rem;
}

.ex-cards-1 .card .fa-stack-2x {
    color: var(--secondary);
}

.ex-cards-1 .card .fa-stack-1x {
    width: 2em;
    color: #ffffff;
    font-weight: 700;
    line-height: 2.125rem;
}

.ex-cards-1 .card .list-unstyled .flex-grow-1 {
    margin-left: 2.25rem;
}

.ex-cards-1 .card .list-unstyled .flex-grow-1 h5 {
    margin-top: 0.125rem;
    margin-bottom: 0.5rem;
}

/*************************/

/*     Media Queries     */

/*************************/

@media only screen and (max-width: 1024px) {
    .services,
    .work,
    .testimonial,
    .about,
    .contact,
    .plans {
        height: 100%;
    }
}

@media (min-width: 992px) {
    .slider-1 .swiper-container {
        width: 92%;
    }
    .slider-1 .swiper-button-prev {
        left: -16px;
        width: 22px;
        background-size: 22px 34px;
    }
    .slider-1 .swiper-button-next {
        right: -16px;
        width: 22px;
        background-size: 22px 34px;
    }
    /* Navigation */
    .navbar {
        box-shadow: none;
        transition: all 0.2s;
        padding-top: 1.75rem;
        background-color: transparent;
    }
    .navbar.top-nav-collapse {
        padding-top: 0.5rem;
        padding-bottom: 0.5rem;
        background-color: var(--primary);
        box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.025);
    }
    .offcanvas-collapse {
        position: static;
        top: auto;
        bottom: auto;
        left: auto;
        width: auto;
        padding-right: 0;
        padding-left: 0;
        background-color: transparent;
        overflow-y: visible;
        visibility: visible;
    }
    .offcanvas-collapse.open {
        transform: none;
    }
    .navbar .navbar-nav {
        margin-top: 0;
        margin-bottom: 0;
    }
    .navbar .nav-item .nav-link {
        padding-right: 0.75rem;
        padding-left: 0.75rem;
    }
    .navbar .dropdown-menu {
        padding-top: 0.75rem;
        padding-bottom: 0.875rem;
        box-shadow: 0 3px 3px 1px rgba(0, 0, 0, 0.08);
    }
    .navbar .dropdown-divider {
        width: 90%;
    }
    .navbar .social-icons {
        margin-left: 0.5rem;
    }
    .navbar .fa-stack {
        margin-right: 0;
        margin-left: 0.25rem;
    }
}

@media only screen and (max-width: 540px) {
    h1 {
        font-size: 30px;
    }
    .para {
        width: 100%;
    }
    .swiper-container {
        width: 92%;
    }
    .swiper-button-prev {
        left: -16px;
        width: 22px;
        background-size: 22px 34px;
    }
    .swiper-button-next {
        right: -16px;
        width: 22px;
        background-size: 22px 34px;
    }
}

/* Стилі для popup */

/* Mobile only - hidden on tablet and desktop */
#popup {
    display: none !important;
}

@media screen and (max-width: 767px) {
    #popup {
        display: block !important;
    }
}

.popup_module {
    background: linear-gradient(135deg, #0ea5e9, #8b5cf6, #ec4899);
    padding: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    margin-top: 25px;
}

button1 {
    background: none;
    border: none;
    cursor: pointer;
}

.lakdi_pn {
    text-align: center;
    margin-top: 75px;
}

.exbt_cl {
    text-align: center;
    margin-top: 20px;
}

@media (max-width: 767px) {
    .navbar {
        display: none;
        /* Приховуємо навігаційний бар */
    }
}

/* Для екранів шириною від 640px до 767px */

@media (min-width: 640px) and (max-width: 767px) {
    .flight_type {
        margin: 0 0 0 12px;
        display: table;
        width: 100%;
    }
}

/* Загальні стилі, які застосовуються для всіх екранів */

.flight_type {
    margin: 0 0 0 0px;
    display: flex;
}

button,
input {
    overflow: visible;
}

button,
input,
optgroup,
select,
textarea {
    margin: 0;
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
}

/* Для екранів шириною від 640px до 767px */

@media (min-width: 640px) and (max-width: 767px) {
    .flight_type label {
        width: 114px;
        font-size: 13px;
        margin: 0 0 12px 0px;
        padding: 4px 0 0 29px;
        color: #333;
        font-weight: 500;
    }
}

/* Загальні стилі для .flight_type label */

.flight_type label {
    color: #5a6872;
    background: transparent;
    width: auto;
    height: auto;
    border-radius: 18px;
    letter-spacing: 0;
    font-weight: 500;
    margin: 0px 15px 12px 0;
    font-size: 14px;
    padding: 6px 8px 5px 30px;
    text-align: left;
    float: left;
    line-height: 14px;
    text-transform: uppercase;
}

/* Загальні стилі для .flight_type label (переписано правило з важливістю) */

.flight_type label {
    color: #ffffff !important;
}

/* Стилі для .customradio */

.customradio {
    display: block;
    position: relative;
    padding-left: 30px;
    margin-bottom: 0px;
    cursor: pointer;
    font-size: 18px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

/* Стилі для .form-group label */

.form-group label {
    color: #a2a2a2;
    font-weight: 600;
    font-size: 16px;
    display: inline-block;
    margin-bottom: 0.5rem;
}

/* Для екранів шириною від 640px до 767px */

@media (min-width: 640px) and (max-width: 767px) {
    .frm_llbs {
        position: absolute;
        top: 12px;
        left: 15px;
        margin: 0;
    }
}

.frm_llbs {
    position: absolute;
    top: 7px;
    left: 15px;
    margin: 0;
}

/* Стилі для .rsts.ffrms_ppd */

.rsts.ffrms_ppd {
    width: 50%;
}

/* Загальні стилі для .ffrms_ppd */

.ffrms_ppd {
    padding-left: 8px !important;
    padding-right: 8px !important;
    position: relative;
}

/* Стилі для .form-group label */

.form-group label {
    color: #a2a2a2;
    font-weight: 600;
    font-size: 16px;
    display: inline-block;
    margin-bottom: 0.5rem;
}

/* Для екранів шириною від 640px до 767px */

@media (min-width: 640px) and (max-width: 767px) {
    .frm_llbs {
        position: absolute;
        top: 12px;
        left: 15px;
        margin: 0;
    }
}

/* Для екранів шириною від 640px до 767px */

@media (min-width: 640px) and (max-width: 767px) {
    .res_hh {
        font-size: 13px;
        color: #001b94;
        font-weight: 600;
    }
}

/* Загальні стилі для .res_hh */

.res_hh {
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    color: rgb(119, 119, 119);
    z-index: 1;
    margin: 0 0px 0px 0;
    display: block;
    position: absolute;
    top: 10px;
    left: 35px;
    line-height: 14px;
}

/* Стилі для input з класом .ipt1 */

input.ipt1 {
    background: #ffffff !important;
    color: #000000;
    font-size: 16px;
    font-weight: 600;
    text-transform: capitalize;
    height: 56px;
    padding: 26px 10px 6px 26px;
    border-color: rgb(192, 202, 213);
    border-radius: 12px;
}

.frm_llbs img {
    width: 18px;
}

/* Стилі для .form-group label */

.form-group label {
    color: #a2a2a2;
    font-weight: 600;
    font-size: 16px;
    display: inline-block;
    margin-bottom: 0.5rem;
}

/* Для екранів шириною від 360px до 639px */

@media (min-width: 360px) and (max-width: 639px) {
    .frm_llbs {
        position: absolute;
        top: 12px;
        left: 15px;
        margin: 0;
    }
}

/* Для екранів шириною від 320px до 479px */

@media (min-width: 320px) and (max-width: 479px) {
    .frm_llbs {
        position: absolute;
        top: 12px;
        left: 15px;
        margin: 0;
    }
}

.rsts.ffrms_ppd {
    width: 50%;
}

.ffrms_ppd {
    padding-left: 8px !important;
    padding-right: 8px !important;
    position: relative;
}

select.ipt1 {
    background: #ffffff !important;
    color: #000000;
    font-size: 16px;
    font-weight: 600;
    text-transform: capitalize;
    height: 56px;
    padding: 26px 10px 6px 26px;
    border-color: rgb(192, 202, 213);
    border-radius: 12px;
}

.pass_bx {
    margin: 10px 15px 0px 15px;
    display: table;
}

@media (min-width: 576px) {
    .col-sm-12 {
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%;
    }
}

.pass_bx label {
    font-size: 12px;
    font-weight: 500;
    color: #000;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 0;
    width: 50%;
    float: left;
}

.input-group.number-spinner.trps {
    width: 50%;
    float: left;
}

.input-group {
    position: relative;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -ms-flex-align: stretch;
    align-items: stretch;
    width: 100%;
}

input.add_num {
    padding: 0;
    width: 48% !important;
    height: 28px;
    border: none;
}

.btn:not(:disabled):not(.disabled) {
    cursor: pointer;
}

a.add_btn,
a.mns_btn {
    color: #040404 !important;
    background: rgb(232, 242, 255);
    padding: 1px 10px;
    border: solid 1px #e8f2ff;
    border-radius: 4px;
}

.psg_dls {
    width: 100%;
    display: table;
    background: #ffffff;
    padding: 2px 0 10px;
    position: absolute;
    top: 15px;
    left: 0px;
    z-index: 9;
    border-top: solid 3px #4263c1;
    box-shadow: 0 4px 6px 0 rgb(0 0 0 / 30%);
}

.btn_dn button {
    background: transparent;
    width: 100%;
    color: #124070 !important;
    text-transform: uppercase;
    padding: 5px 10px;
    border-radius: 4px;
    letter-spacing: 1px;
    font-size: 14px;
    margin: 6px 0 0px 0;
    border: solid 1px #124070;
    height: 38px;
}

.fm_ln1 button {
    width: 100%;
    color: #ffffff;
    border: 0;
    padding: 7px 0;
    font-size: 18px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
    border-radius: 12px;
    background: #2274e0;
    margin: 0px auto 0px auto;
    cursor: pointer;
    height: 76px;
}

.fm_ln1 button {
    background: red !important;
    width: 30% !important;
}

.services-2 .icon {
    width: 170px;
    height: 170px;
    border-radius: 50%;
    background: #f5f4f0;
    margin: 0 auto;
    margin-bottom: 10px;
    position: relative;
    z-index: 0;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.services-2 .icon-wrap .number span {
    font-weight: 500;
    color: #fff;
}

.services-2 .icon-wrap .number {
    position: absolute;
    top: 0;
    right: 0;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    z-index: 1;
    background: #094670;
    ;
    border: 5px solid #fff;
}

.services-2 .icon-wrap {
    position: relative;
    width: 170px;
    height: 170px;
    margin: 0 auto;
    margin-bottom: 10px;
    z-index: 0;
}

.services-2 .icon span {
    font-size: 70px;
    color: #000000;
}

.services-2 .icon:after {
    position: absolute;
    top: 50%;
    right: 40px;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #094670;
    content: '';
    z-index: -1;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.flaticon-checklist:before {
    content: "\f103";
}

.flaticon-calendar:before {
    content: "\f100";
}

.flaticon-qa:before {
    content: "\f101";
}

@media (min-width: 768px) {
    .ftco-section.ftco-no-pb.ftco-no-pt {
        margin-top: -245px;
    }
}

@media (max-width: 767px) {
    .hero-wrap {}
}

.module_css_p .foot {
    font-size: 14px;
    text-transform: uppercase;
    text-align: center;
    line-height: 1.2;
    color: white;
    font-weight: 700;
    display: block;
    padding: 0 0 0;
    margin: 0;
}

.module_css_p {
    font-family: "Montserrat", sans-serif;
    display: none !important;
    z-index: 999999;
    width: 100%;
    height: 100vh;
    margin: auto;
    line-height: 22px;
    position: fixed;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background: #0f172a;
    overflow-y: auto;
}

@media screen and (max-width: 767px) {
    .module_css_p {
        display: block !important;
    }
}

#blink {
    color: #094670;
    font-size: 30px;
}

.number_ico {
    text-align: center;
    display: table;
    margin: 0px auto 0px;
    padding: 10px 20px;
    border: 2px solid #094670;
    background: #094670;
    color: #ffff;
    border-radius: 12px;
    font-size: 20px;
    font-weight: 800;
}

.features2 {
font-family: "Montserrat", sans-serif;
    text-align: center;
    margin: 0px auto 0px;
    padding: 0px 10px;
    border: px solid #FFBF27;
    color: white;
    border-radius: 0px;
    font-size: 20px;
    font-weight: 900;
}

.elementor img {
    height: auto;
    max-width: 100%;
    border: none;
    border-radius: 0;
    box-shadow: none;
}

.features1 {
    font-family: "Montserrat", sans-serif;
    text-align: center;
    margin: 0px auto 0px;
    padding: 0px 10px;
    border: px solid #FFBF27;
    background: #094670;
    color: #ffff;
    border-radius: 0px;
    font-size: 20px;
    font-weight: 900;
}

.number_ico1 {
    text-align: center;
    display: table;
    margin: 0px auto 0px;
    padding: 10px 20px;
    border: 2px solid #094670;
    background: #094670;
    color: #ffff;
    border-radius: 12px;
    font-size: 20px;
    font-weight: 800;
}

.features1 {
    font-family: "Montserrat", sans-serif;
    text-align: center;
    margin: 0px auto 0px;
    padding: 0px 10px;
    border: px solid #FFBF27;
    background: #094670;
    color: #ffff;
    border-radius: 0px;
    font-size: 20px;
    font-weight: 900;
}

.popup_module button1 {
    display: block;
    margin: 30px 10px 0 auto;
    background-color: transparent;
    font-size: 20px;
    color: #2E2E2E;
    border-radius: 100%;
    width: 40px;
    height: 40px;
    border: none;
    outline: none;
    cursor: pointer;
}

.planimg {
    height: auto;
    max-width: 100%;
    border: none;
    border-radius: 0;
    box-shadow: none;
}

#srch {
    background: white;
    display: none;
    position: fixed;
    z-index: 499;
}

.fab-container {
    display: none !important;
}

@media only screen and (max-width: 767px) {
    .fab-container {
        display: block !important;
        z-index: 999;
        position: fixed;
        bottom: 8%;
        width: 100%;
        text-align: center;
        animation: wiggle 4.5s linear infinite;
    }
    .fab-container .button {
        background: linear-gradient(45deg, #0ca345, #009c9c);
        color: white;
        display: inline-block;
        padding: 10px 10px;
        border-radius: 20px;
        text-decoration: none;
    }
    .fab-container .button i {
        background: linear-gradient(45deg, #0ca345, #009c9c);
        color: white;
        margin-right: 5px;
    }
    .fab-container .button a {
        background: linear-gradient(45deg, #0ca345, #009c9c);
        color: white;
        text-decoration: none;
    }
}

@media only screen and (max-width: 768px) {
    .iconbutton i {
        height: 100%;
        font-size: 30px;
        margin-right: 10px;
        text-align: center;
    }
}

@media only screen and (max-width: 768px) {
    .niz {
        font-size: 20px;
        font-weight: bold;
        font-family: "Montserrat", sans-serif;
        width: auto;
    }
}

@keyframes wiggle {
    0%,
    7% {
        transform: rotateZ(0) scale(1, 1);
    }
    15% {
        transform: rotateZ(-15deg) scale(1, 1);
    }
    20% {
        transform: rotateZ(10deg) scale(1.1, 1.1);
    }
    25% {
        transform: rotateZ(-10deg) scale(1, 1);
    }
    30% {
        transform: rotateZ(6deg) scale(1, 1);
    }
    35% {
        transform: rotateZ(-4deg) scale(1, 1);
    }
    40%,
    100% {
        transform: rotateZ(0) scale(1, 1);
    }
}


.hero-wrap-2 {
    width: 100%;
    height: 100%;
    position: inherit;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    background-attachment: fixed;
}

.hero-wrap-2:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    /* Чернильний колір з прозорістю */
}

.center-container {
    display: flex;
    align-items: center;
    justify-content: center;
}

.phone-button {
    background-color: #094670;
    color: white;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    border: none;
    outline: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 25px;
}

.phone-button:hover {
    background-color: #d14722;
}

@media only screen and (max-width: 767px) {
    .navbar {
        display: none;
    }
}

@media only screen and (max-width: 767px) {
    .navbar-toggler {
        display: none;
    }
}

.pnd_ddl h5 {
    font-size: 20px;
    color: #2c4162;
    margin: 20px 0 14px 0;
    text-transform: capitalize;
    font-weight: 700;
}

.pnd_ddl {
    padding: 0px 0;
    text-align: center;
}

.pnd_ddl h6 {
    float: left;
    margin: 15px 4% 0px 4%;
    color: #ffffff;
    text-align: center;
    font-size: 15px;
    padding: 9px 5px 9px 5px;
    font-weight: 500;
    width: 42%;
    background: #2c4162;
    border-radius: 30px;
    font-weight: bold;
}

.lakdi_pn {
    margin: 10px auto -9px auto;
    text-align: center;
    background: #fff;
}

.nn_dst h4 {
    font-size: 16px;
    letter-spacing: 0px;
    text-transform: uppercase;
    color: #0c0c0c;
    margin: 20px 15px 0px 15px;
    font-weight: 500;
    line-height: 30px;
}

.nn_dst {
    text-align: center;
}

.lakdi_pn img {
    width: 90px;
    border: solid 4px #2c4162;
    height: 90px;
    border-radius: 60px;
    padding: 4px;
}

.exbt_cl {
    text-align: left;
    margin: 26px 0 0 0;
}

.exbt_cl h5 {
    font-size: 24px;
    color: #ffffff;
    background: linear-gradient(135deg, #0ea5e9, #8b5cf6, #ec4899);
    width: 60px;
    height: 60px;
    margin: 0 auto;
    text-align: center;
    padding: 12px 5px 12px 55px;
    position: relative;
    border-radius: 50%;
    /* Змінено на 50% для круглої форми */
    font-weight: 600;
    letter-spacing: 0.3px;
}

.exbt_cl h5 i {
    position: absolute;
    width: 36px;
    height: 36px;
    border: solid 2px #fff;
    border-radius: 50%;
    line-height: 36px;
    font-size: 20px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    /* Центрування відносно батьківського блоку */
    text-align: center;
}

.fa {
    display: inline-block;
    font: normal normal normal 14px/1 FontAwesome;
    font-size: inherit;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
}

.exbt_cl h3 {
    font-size: 24px;
    color: #202020;
    margin: 18px 0 0px 0;
    position: relative;
    font-weight: 600;
    line-height: 32px;
    text-align: center;
}

.exbt_cl p {
    color: #202020;
    text-align: center;
    margin: 10px 10px 0 10px;
    font-size: 16px;
    font-weight: 500;
}

.pnd_ddl img {
    margin: 12px 0 16px 0;
    width: 260px;
}

.close22 i {
    position: absolute;
    right: 5px;
    top: 4px;
    cursor: pointer;
    font-size: 19px;
    border: solid 1px #333;
    color: #333;
    height: 25px;
    width: 25px;
    text-align: center;
    line-height: 23px;
    border-radius: 30px;
    z-index: 9;
}

.lakdi_pn h4 {
    font-size: 16px;
    letter-spacing: 0px;
    color: #0c0c0c;
    margin: 20px 15px 0px 15px;
    font-weight: 500;
    line-height: 30px;
}

.exbt_dzdz {
    font-size: 20px;
    color: #ffffff;
    margin: 18px 0 0px 0;
    text-transform: capitalize;
    font-weight: 600;
    line-height: 24px;
    background: linear-gradient(135deg, #0ea5e9, #8b5cf6, #ec4899);
    display: inline-block;
    padding: 8px 20px 10px 26px;
    border-radius: 8px;
    outline: 1px dashed #fff;
    outline-offset: -4px;
}

.popup_call {
    text-align: center;
    margin-top: 30px;
}

.fttr_ttl {
    padding: 30px 0;
    text-align: center;
    position: fixed;
    width: 100%;
    bottom: 0;
    left: 0;
    background: #1e293b;
}

.fttr_ttl h6 {
    display: inline-block;
    padding: 0px 0px;
    font-size: 24px;
    color: #ffffff;
    border-radius: 6px;
    font-weight: 600;
}

.fttr_ttl h6 span {
    display: block;
    text-align: center;
    color: #fff;
    font-size: 18px;
    font-weight: 500;
    margin: 0 0 7px 0;
}

.destinations-area .single-destinations {
    margin-top: 30px;
    -webkit-transition: all 0.3s ease 0s;
    -moz-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}

.destinations-area .single-destinations .thumb {
    overflow: hidden;
}

.destinations-area .single-destinations .thumb img {
    -webkit-transition: all 0.3s ease 0s;
    -moz-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}

@media (min-width: 768px) {
    .destinations-area .single-destinations .thumb img {
        width: 50%;
    }
}

.destinations-area .single-destinations .details {
    background: #fff;
    padding: 20px;
}

.destinations-area .single-destinations .details h4 {
    margin-bottom: 10px;
}

.justify-content-between {
    justify-content: space-between !important;
}

destinations-area .star .checked {
    color: orange;
}

.fa {
    display: inline-block;
    font: normal normal normal 14px/1 FontAwesome;
    font-size: inherit;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
}

.fa-star:before {
    content: "\f005";
}

.destinations-area .single-destinations .details .package-list {
    margin-top: 30px;
}

.destinations-area .single-destinations .details .package-list li:last-child {
    border-bottom: none;
    margin-bottom: 0px;
}

.destinations-area .single-destinations .details .price-btn {
    background: #f8b600;
    color: #222;
    font-weight: 600;
    padding: 5px 20px;
}

.destinations-area .single-destinations .details .package-list li:last-child {
    border-bottom: none;
    margin-bottom: 0px;
}

.destinations-area .single-destinations .details .package-list li {
    border-bottom: 1px solid #eee;
    margin-bottom: 15px;
    padding-bottom: 15px;
}

.single-destinations {
    position: relative;
    overflow: hidden;
}

.line {
    height: 1px;
    background-color: #ccc;
    /* Колір сірої полоски */
    margin: 10px 0;
    /* Встановіть потрібний вам відступ відгори і знизу */
}

.thumb img {
    width: 50%;
    height: 50%;
    object-fit: contain;
    /* або використовуйте 'contain', якщо потрібно помістити всю картинку в контейнер без обрізання */
}

.phone {
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #0ca345, #009c9c);
    color: #ffffff;
    text-align: center;
    font-weight: bold;
    padding: 10px;
    margin: 10;
}

.single-destinations .thumb {
    height: auto;
    overflow: hidden;
    /* якщо зображення не вписується в область, обрізаємо зайвий вміст */
}

.single-destinations .thumb img {
    height: auto;
    display: block;
    /* це, щоб усунути проміжок між інлайновими елементами та забезпечити правильне відображення */
}

h3.mb-0 {
    font-weight: bold;
    font-size: 20px;
}

.buttonphone {
    margin-top: 30px;
    margin-left: 15px;
}

.single-destinations {
    border: 1px solid #ddd;
    /* рамка для відділення від інших елементів */
    border-radius: 8px;
    /* заокруглені кути */
    overflow: hidden;
    /* обрізати зайвий вміст */
}

.details {
    margin-left: 15px;
}

.buttonphone a {
    display: inline-block;
    padding: 10px 20px;
    /* Розміри внутрішніх відступів */
    background: linear-gradient(45deg, #0ca345, #009c9c);
    color: #ffffff;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    /* Закруглені кути */
    transition: background-color 0.3s ease;
    /* Плавний перехід для кольору фону */
}

.buttonphone a:hover {
    background-color: #0032ff;
    /* Змінений колір при наведенні */
}

.plantarif {
    margin-top: 30px;
    /* Відступ зверху */
    text-align: center;
    /* Вирівнювання тексту по центру */
}

.plantarif p {
    font-size: 16px;
    /* Розмір шрифту */
    color: #333333;
    /* Колір тексту */
    line-height: 1.5;
    /* Висота рядка */
}

h4.flex-column p {
    font-size: 16px;
    color: rgb(70, 69, 69);
}

.details {
    margin-bottom: 25px;
}

.single-destinations .star {
    margin-top: 10px;
}

.single-destinations .star .checked {
    color: #ffcc00;
    font-size: 14px;
}

.price-btn {
    background-color: #ffcc00;
    color: #000;
    padding: 8px 15px;
    border: none;
    text-decoration: none;
    display: inline-block;
    margin-top: 10px;
    transition: background-color 0.3s ease;
}

.price-btn:hover {
    background-color: #e6b800;
    /* Колір при наведенні */
}

.single-destinations {
    background-color: white;
}

.mb-0 {
    font-size: 16px;
}

.ms-4 h2 {
    margin-top: 10px;
    margin-bottom: 10px;
}

/* ========================================
   MOBILE ONLY ELEMENTS - FINAL RULES
   These must stay at the end of the file
   ======================================== */

/* Hide on all screens by default */
.fab-container,
.module_css_p,
#popup {
    display: none !important;
    visibility: hidden !important;
}

/* Show ONLY on mobile phones (max-width: 480px) */
@media only screen and (max-width: 480px) {
    .fab-container,
    .module_css_p,
    #popup {
        display: block !important;
        visibility: visible !important;
    }
    
    /* When user closes the popup */
    .fab-container.popup-closed,
    .module_css_p.popup-closed,
    #popup.popup-closed {
        display: none !important;
        visibility: hidden !important;
    }
}

/* Close button styling */
.close-popup-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    background: transparent;
    border: none;
    color: #fff;
    font-size: 24px;
    cursor: pointer;
    z-index: 9999999;
    padding: 10px;
}

.close-popup-btn:hover {
    color: #ff4444;
}