
/*header*/

.responsive-bar {
    display: none;
}

nav {
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1;
    box-sizing: border-box;
    transition: .5s;
}

nav.black {
    background: rgb(68 67 67 / 80%);
}

nav .logo {
    float: left;
}

nav .logo img {
    height: 80px;
    transition: .5s;
}

nav.black .logo img {
    height: 60px;
}

nav > ul {
    width: 100%;
    margin: 0 auto;
    padding: 0;
    float: right;
}

nav > ul > li {
    list-style: none;
}

nav > ul > li > a:hover {
    background-color: rgba(250, 249, 249, 0.3);

    color: #fff;
}

.menu img {
    margin-top: 5px;
    width: 45px;
}

nav > ul > li > a {
    color: #262626;
    text-decoration: none;
    font-size: 15px;
    transition: .5s;
}

nav.black > ul > li > a {
    color: #fff;
    line-height: 60px;
}

section.sec1 {
    width: 100%;
    height: 100vh;
    background: url(https://images.pexels.com/photos/276517/pexels-photo-276517.jpeg?auto=compress&cs=tinysrgb&dpr=2&h=650&w=940);
    background-size: cover;
}

section.content {
    margin: 0;
    padding: 0;
    font-size: 1.1em;
}

section.sec2 {
    width: 100%;
    height: 100vh;
    background: url(https://images.pexels.com/photos/276517/pexels-photo-276517.jpeg?auto=compress&cs=tinysrgb&dpr=2&h=650&w=940);
    background-size: cover;
}

@media (max-width: 400px) {
    #background .content .title {
        width: 96% !important;
        opacity: 0;
        position: absolute;
        top: 55%;
        left: 95%;
        transform: translate(-95%, 46%) !important;
        animation: anim_opacity 1s forwards;
        animation-delay: 2.5s;
    }
}

@media (max-width: 1005px) {

    .foot-media {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    #background .content .title {
        width: 75% !important;
        opacity: 0;
        position: absolute;
        top: 55%;
        left: 95%;
        transform: translate(-92%, -27%) !important;
        animation: anim_opacity 1s forwards;
        animation-delay: 2.5s;
    }
}

@media (max-width: 768px) {
    .title-nav {
        display: none;
    }

    .main-menu {
        justify-content: space-around
    }


}

@import url('https://fonts.googleapis.com/css2?family=Cairo&family=Catamaran:wght@300&family=Quicksand:wght@300&display=swap');
.text-cond p {
    font-family: 'Cairo', sans-serif;
    font-family: 'Catamaran', sans-serif;
    font-family: 'Quicksand', sans-serif;
}

.wrp {
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
}


.imgLogo {
    background-color: rgba(250, 249, 249, 0.2);
    width: 77px;
}


.main-logo {
    padding-left: 20px;

}

.main-logo a {
    width: 10px !important;
}

.menu {
    display: none;
}

.menu-be {
    display: none;
}

@media screen and (max-width: 768px) {
    .menu {
        display: flex;
        flex-direction: row;
        justify-content: flex-end;

    }

    .desc {
        font-size: 20px;
    }

    .menu h4 {
        color: #FFFFFF;
    }

    .menu-fe {
        display: none;
    }

    .menu-be {
        display: block;
    }

    .imgLogo {
        width: 60px;
    }
}


@media screen and (max-width: 480px) {
    .desc {
        font-size: 10px;
    }
}


.carousel-item {
    height: 80vh;
    min-height: 350px;
    background: no-repeat center center scroll;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
}

.sizeFontFoot {
    font-size: 1.3em;
    color: #09C6AB;
}

.cont-box {
    min-width: 100%;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.cont-box-1 {
    min-width: 100%;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.viber {
    width: 30px;
}

.subscription {
    position: relative;
    width: 100%;
    height: 100%;
}

.subscription .add-email {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    outline: none;
    padding: 0 20px;
}

.content-sub {
    width: 360px;
    height: 40px;
    box-shadow: 2px 4px 10px rgba(0, 0, 0, .2);
    border-radius: 60px;
    overflow: hidden;
}

.subscription .submit-email {
    position: absolute;
    top: 0;
    right: 0;
    height: calc(100% - 2px);
    width: 100px;
    border: none;
    border-radius: 60px;
    outline: none;
    margin: 1px;
    padding: 0 20px;
    cursor: pointer;
    background: #4ABEBB;
    color: #FFFFFF;
    transition: width .35s ease-in-out,
    background .35s ease-in-out;
}

.subscription.done .submit-email {
    width: calc(100% - 2px);
    background: #C0E02E;
}

.subscription .submit-email .before-submit,
.subscription .submit-email .after-submit {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    text-align: center;
    line-height: 38px;
    transition: visibility .35s ease-in-out,
    opacity .35s ease-in-out;
}

.subscription.done .submit-email .before-submit,
.subscription:not(.done) .submit-email .after-submit {
    visibility: hidden;
    opacity: 0;
}

.subscription .submit-email .after-submit {
    transition-delay: .35s;
}

.subscription:not(.done) .submit-email .before-submit,
.subscription.done .submit-email .after-submit {
    visibility: visible;
    opacity: 1;
}

#background {
    top: 0;
    opacity: 0;
    position: relative;
    background-image: url("../images/bg-8.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    width: 100%;
    height: 50vh;
    overflow: hidden;
    animation: anim_bg 1.5s forwards;
    overflow: hidden;
}

#background::before {
    content: '';
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 50vh;
    /*background-color: rgb(0 98 139 / 92%);*/
    animation: anim_bg 1s forwards;
    animation-delay: 1.5s;
}

#background .content {
    position: relative;
    width: 1080px;
    max-width: 90%;
    margin-left: auto;
    margin-right: auto;
    height: 70vh;
}

#background .content .title {
    width: 50%;
    opacity: 0;
    position: absolute;
    top: 55%;
    left: 95%;
    transform: translate(-70%, 50%);
    animation: anim_opacity 1s forwards;
    animation-delay: 2.5s;
}

#background .content .title h2 {
    margin: 0;
    padding: 0;
    color: #FFF;
    background-color: rgba(175, 172, 172, 0.58);

    font-size: 18px;
    letter-spacing: 3px;
    left: 25pc;
    /*top: 100px;*/
    top: 180px;
    padding: 10px;
    border-radius: 10px;
}

#background .content .title h2::before {
    content: '';
    opacity: 0;
    width: 0;
    height: 5px;
    left: 50%;
    transform: translateX(-50%);
    animation: anim_title-underline 1s forwards;
    animation-delay: 3s;
}


@keyframes anim_bg {
    from {
        opacity: 0;
        height: 0;
    }

    to {
        opacity: 1;
        height: 70vh;
    }
}

@keyframes anim_opacity {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes anim_title-underline {
    from {
        opacity: 0;
        width: 0;
        height: 70vh;
    }

    to {
        opacity: 1;
        width: 110%;
        height: 0;
    }
}

.my-h2 h2 {
    font-size: 18px;
    letter-spacing: 1px;
    color: whitesmoke;
}

.text-cond p {
    text-align: start;
    font-size: 18px;
    color: whitesmoke;
    font-weight: 500;

}

@media only screen and (max-width: 1002px) {
    .foot > div {
        column-gap: 100px;
    }
}

@media only screen and (max-width: 766px) {
    .foot > div {
        row-gap: 60px;
    }
}

@media only screen and (max-width: 766px) {
    #background .content .title h2 {
        font-size: 16px;
    }
}


.mapouter {
    width: auto !important;
    position: relative;
    text-align: center;
    height: 250px;
}

.gmap_canvas {
    overflow: hidden;
    background: none !important;
    height: 250px;
}

.gmap_iframe {
    height: 250px !important;
}
.foot {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.change-lang {
    margin-right: 10px;

    text-decoration: none;
    color: black;
    background: linear-gradient(0deg, rgba(167, 167, 167, 0.5802696078431373) 0%, rgba(167, 167, 167, 0.3169642857142857) 0%);
    border: none
}

.change-lang .sel-op {
    text-decoration: none;
    color: black;
    background: linear-gradient(0deg, rgba(167, 167, 167, 0.5802696078431373) 0%, rgba(167, 167, 167, 0.3169642857142857) 0%);
    border: none

}
select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border: 0;
    outline: 0;
    font: inherit;
    padding: 1rem 1rem 1rem 1rem;
    background: linear-gradient(0deg, rgba(167, 167, 167, 0.5802696078431373) 0%, rgba(167, 167, 167, 0.3169642857142857) 0%);
    border-radius: 0.25em;
    box-shadow: 0 0 1em 0 rgba(0, 0, 0, 0.2);
    cursor: pointer;
}
select::-ms-expand {
    display: none;
}
select:focus {
    outline: none;
}
::-webkit-scrollbar {
    width: 4px;
    height: 4px;
}

::-webkit-scrollbar-thumb {
    background: #4ABEBB;
    border-radius: 50px;
}

::-webkit-scrollbar-thumb:hover {
    background: #388E3C;
}

::-webkit-scrollbar-track {
    background: #ffffff;
    border-radius: 50px;
}

/* Для Firefox */
html {
    scrollbar-width: thin;
    scrollbar-color: #4ABEBB #ffffff;
    scroll-behavior: smooth;
}

.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.5);
    animation: fadeIn 0.3s ease-in-out;
}

.modal-content {
    position: relative;
    margin: 10% auto;
    padding: 20px;
    background: #fff;
    border-radius: 8px;
    width: 90%;
    max-width: 400px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    animation: slideDown 0.3s ease-in-out;
}

.contact-container {
    text-align: center;
}

.lng-contact {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #333;
}

.gtco-quick-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.gtco-quick-contact li {
    margin-bottom: 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.contact-link {
    text-decoration: none;
    color: #4CAF50;
    font-size: 1.2rem;
}

.contact-link:hover {
    text-decoration: underline;
    color: #388E3C;
}

.viber-icon {
    width: 24px;
    height: 24px;
}

.google-map iframe {
    border-radius: 8px;
    border: 1px solid #ddd;
}

.close-btn {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 24px;
    font-weight: bold;
    color: #aaa;
    cursor: pointer;
}

.close-btn:hover {
    color: #555;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideDown {
    from {
        transform: translateY(-20%);
    }
    to {
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .modal-content {
        width: 90%;
        padding: 15px;
    }

    .lng-contact {
        font-size: 1.2rem;
    }

    .contact-link {
        font-size: 0.9rem;
    }
}

.contact-btn {
    position: fixed;
    bottom: 80px;
    right: 15px;
    padding: 10px 20px;
    font-size: 1rem;
    background-color: #4CAF50;
    color: white;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    z-index: 1000;
}

.contact-btn:hover {
    background-color: #45a049;
}

@media (max-width: 768px) {
    .contact-btn {
        padding: 8px 16px;
        font-size: 0.9rem;
        bottom: 80px;
        right: 15px;
    }
}

.select-wrapper {
    position: relative;
    display: inline-block;
    width: 100px; /* Ширина */
    font-family: 'Arial', sans-serif;
}


.change-lang {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 5px;
    padding: 5px 10px;
    width: 100%;
    box-sizing: border-box;
    cursor: pointer;
    transition: background 0.3s ease, border-color 0.3s ease;
}


.change-lang:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.8);
}


.change-lang:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.4);
    border-color: rgba(255, 255, 255, 1);
}

.select-wrapper::after {
    content: '▼';
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 12px;
    color: rgba(255, 255, 255, 0.8);
    pointer-events: none;
}

.change-lang option {
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    padding: 5px;
    font-size: 14px;
}

.change-lang option:hover {
    background: rgba(255, 255, 255, 0.2);
}

@media (max-width: 768px) {
    .select-wrapper {
        width: 150px;
    }

    .change-lang {
        font-size: 13px;
        padding: 8px 8px;
        border-radius: 8px;
    }

    .select-wrapper::after {
        font-size: 14px;
    }

    .change-lang option {
        font-size: 16px;
        padding: 10px;
    }
}

.wrp {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.2);
    color: #fff;
    transition: background 0.3s ease;
    text-decoration: none;
}

.icon:hover {
    background-color: rgba(255, 255, 255, 0.4);
}

.icon svg, .icon i {
    width: 20px;
    height: 20px;
}


@media (max-width: 768px) {
    .wrp {
        gap: 5px;
    }

    .icon {
        width: 30px;
        height: 30px;
    }

    .icon svg, .icon i {
        width: 15px;
        height: 15px;
    }
}
.social-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    background-color: #25d366;
    color: white;
    font-size: 18px;
    text-decoration: none;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.social-icon:hover {
    background-color: #1b9c4c;
    transform: scale(1.1);
}

.social-icon.whatsapp {
    background-color: #25d366;
}

.viber img {
    width: 30px;
    height: 30px;
    object-fit: cover;
}


.viber:hover {
    background-color: white;
    transform: scale(1.1);
}

.social-icon.viber {
    background-color: white;
}

.contact-btn {
    width: 40px;
    height: 40px;
    border: none;
    border-radius: 50%;
    background: linear-gradient(45deg, #0077be, #00c6ff); /* Цвета океана */
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0, 199, 255, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}


.contact-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 20px rgba(0, 199, 255, 0.5);
}

.contact-btn::before {
    content: '';
    position: absolute;
    top: -25px;
    left: -25px;
    width: 90px;
    height: 90px;
    border-radius: 50%;
    border: 3px solid rgba(255, 255, 255, 0.5);
    opacity: 0;
    animation: wave 1.5s infinite;
    pointer-events: none;
}

@keyframes wave {
    0% {
        transform: scale(0.5);
        opacity: 0.6;
    }
    100% {
        transform: scale(1.8);
        opacity: 0;
    }
}

.contact-btn i {
    font-size: 24px;
    z-index: 1;
}

.contact-btn:active {
    transform: scale(0.9);
    box-shadow: 0 5px 10px rgba(0, 199, 255, 0.2);
}

