@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Tektur:wght@400..900&family=Winky+Sans:ital,wght@0,300..900;1,300..900&display=swap");

@font-face {
    font-family: "Orbitron";
    src: url(fonts/Orbitron-Bold.ttf);
    font-weight: 700;
}

@font-face {
    font-family: "Orbitron";
    src: url(fonts/Orbitron-Medium.ttf);
    font-weight: 500;
}

@font-face {
    font-family: "Orbitron";
    src: url(fonts/Orbitron-Regular.ttf);
    font-weight: 400;
}

:root {
    --primaryColor: #e7572a;
    --blackColor: #000;
    --whiteColor: #fff;
}

body {
    margin: 0;
    padding: 0;
    font-family: "Poppins", sans-serif;
}

html,
body,
header,
footer,
main,
nav,
section,
div,
menu,
span,
h1,
h2,
h3,
h4,
h5,
h6,
p,
a,
strong,
i,
ol,
ul,
li,
form,
label,
button,
figure {
    margin: 0;
    padding: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
    font-weight: 700;
}

img {
    max-width: 100%;
    vertical-align: middle;
}

a {
    display: inline-block;
    text-decoration: none;
    transition: 0.3s all ease;
}

a:hover {
    text-decoration: none;
}

ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

ul li {
    display: inline-block;
}

button:focus,
a:focus,
input:focus,
textarea:focus,
select:focus {
    outline: none;
}

::selection {
    color: white;
    background: #3f90de;
}

::-webkit-selection {
    color: white;
    background: #3f90de;
}

::-moz-selection {
    color: white;
    background: #3f90de;
}

/* .scrolltotop */
.scrolltotop {
    width: 37px;
    height: 37px;
    line-height: 37px;
    border-radius: 50%;
    background: var(--primaryColor);
    text-align: center;
    font-size: 22px;
    color: #ffffff;
    position: fixed;
    right: 25px;
    bottom: 22px;
    animation: lab_top_up 5s linear infinite;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    transition: all 0.3s ease;
    z-index: 999;
    display: none;
}

.scrolltotop i {
    color: #ffff;
    font-size: 16px;
}

@keyframes lab_top_up {
    0% {
        transform: translateY(-15px);
    }
    50% {
        transform: translateY(0px);
    }
    100% {
        transform: translateY(-15px);
    }
}

.pluse,
.pluse2 {
    position: relative;
    top: 9px;
    left: -8px;
    z-index: -1;
}

.pluse::before,
.pluse2::before {
    width: 40px;
    height: 40px;
}

.pluse::after,
.pluse::before,
.pluse2::after,
.pluse2::before {
    background: var(--primaryColor);
    border-radius: 50%;
    left: 50%;
    top: 50%;
    display: block;
    content: "";
    position: absolute;
    top: 2px;
    left: 0;
}

.pluse::after,
.pluse2::after {
    width: 30px;
    height: 30px;
    background: transparent;
    margin-left: -15px;
    margin-top: -15px;
}

.pluse::before {
    -webkit-animation: pluse_animate 2.5s infinite linear;
    animation: pluse_animate 2.5s infinite linear;
}

.pluse2::before {
    -webkit-animation: pluse_animate 3s infinite linear;
    animation: pluse_animate 3s infinite linear;
}

@keyframes pluse_animate {
    0% {
        opacity: 1;
        -webkit-transform: translate(-50%, -50%) scale(0.3);
        transform: translate(-50%, -50%) scale(0.3);
    }
    100% {
        opacity: 0;
        -webkit-transform: translate(-50%, -50%) scale(2);
        transform: translate(-50%, -50%) scale(2);
    }
}

/*= Header Section Start Here =*/

.menu-section {
    padding: 25px 0;
    background: #fff;
}

.menu-logo a {
    font-size: 24px;
    font-weight: 700;
    font-family: "Orbitron";
    letter-spacing: 2px;
    background: linear-gradient(180deg, #e7572a 0%, #ff7a4f 50%, #ff9b65 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.menu-bar ul li a {
    margin-left: 26px;
    font-size: 18px;
    font-weight: 500;
    color: #1f2937;
}

.mobile-menu ul li a:hover,
.menu-bar ul li a:hover {
    background: linear-gradient(180deg, #e7572a 0%, #ff7a4f 50%, #ff9b65 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.menu-section.menu-section-sticky {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    animation: slideDown 0.35s ease-out;
    background: #fffffffb;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
}

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

.offcanvas.offcanvas-top {
    height: 100vh !important;
}

.offcanvas-header {
    padding-top: 28px;
    padding-bottom: 28px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
}

.mobile-menu {
    padding-top: 30px;
}

.mobile-menu ul li {
    display: block;
}

.mobile-menu ul li a {
    font-size: 18px;
    font-weight: 500;
    color: #1f2937;
    padding: 10px 0;
    display: block;
}

.offcanvas-header a i {
    font-size: 22px;
    color: #1f2937;
}

.off-menu-bar a i {
    font-size: 18px;
    color: #1f2937;
}

.offcanvas {
    transition: 0.5s;

}

/*= Hero Section Start Here =*/

.realstate-area {
    background-image: url(images/seaview.jpg);
    background-size: cover;
    background-position: center;
    padding: 250px 0px 250px;
    p
}


.real-item h1 {
    font-size: 120px;
    font-weight: 900;
    font-family: "Orbitron" sans-serif;
    color: #fff;
    text-transform: uppercase;
    text-shadow: 4px 2px 6px #10194a;
}

.real-item h2 {
    margin-top: -15px;
    font-size: 60px;
    font-weight: 800;
    color: #fff;
    text-shadow: 4px 3px 3px #131013;
}

/*= Marquee Area Start Here =*/

.marquee-section {
    padding: 25px 0;
    background: #fff;
}

.marquee-area {
    font-size: 18px;
    font-weight: 600;
    color: #080d12;
    text-align: center;
}

.marquee-area h6 {
    font-size: 20px;
}


/*= Qreti Area Start Here =*/

.greti-section {
    padding: 90px 0;
    background: url(images/slider-bg.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.greti-items h4 {
    font-size: 30px;
    font-weight: 700;
    color: #1f2937;
}

.greti-items p {
    padding-top: 25px;
    font-size: 20px;
    color: #000000af;
}

.greti-items span {
    font-size: 16px;
    font-weight: 700;
    color: #1f2937;
    padding-top: 35px;
    display: block;
}

.greti-icon ul {
    padding-top: 35px;
}

.greti-icon ul li a {
    width: 150px;
    height: 55px;
    line-height: 55px;
    text-align: center;
    margin: 0 8px;
    background: #1f2937;
    border-radius: 50px;
    font-size: 18px;
    color: #fff;
    box-shadow: rgba(231, 87, 42, 0.25) 0px 54px 55px,
    rgba(231, 87, 42, 0.12) 0px -12px 30px, rgba(231, 87, 42, 0.12) 0px 4px 6px,
    rgba(231, 87, 42, 0.17) 0px 12px 13px, rgba(231, 87, 42, 0.09) 0px -3px 5px;
}

.greti-icon ul li a i {
    color: #fff;
    margin-right: 7px;
}

.greti-icon ul li a:hover {
    background: #e7572a;
}

.greti-items {
    padding: 70px 30px;
    border-radius: 24px;
    background: #f16c443d;
    width: 100%;
}

/*==== Explore Area Start Here ====*/

.explore-section {
    padding: 75px 0;
    background: url(images/back.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.explore-area h2 {
    font-size: 50px;
    font-weight: 800;
    color: #ffffff;
    padding-bottom: 39px;
}

.explore-box {
    clip-path: polygon(25% 0, 75% 0, 100% 50%, 75% 100%, 25% 100%, 0 50%);
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    margin-top: 25px;
    padding: 0 55px;
    width: 355px;
    height: 242px;
    background: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    transition: 0.3s;
    position: relative;
    z-index: 1;
}

.explore-box:hover {
    transform: scale(1.05);
    box-shadow: rgba(255, 255, 255, 0.3) 0px 6px 20px;
}

.explore-box h6 {
    font-size: 20px;
    font-weight: 700;
    color: #111827;
}

.explore-box p {
    padding-top: 5px;
    font-size: 16px;
    color: #111827;
}

.explore-box a {
    margin-top: 18px;
    padding: 10px 15px;
    font-size: 16px;
    color: #fff;
    background: #f8981d;
    border-radius: 4px;
}

.explore-box a:hover {
    background: #ea580c;
}

.hex-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    max-width: 1160px;
    margin: auto;
    gap: 15px;
}

.explore-box1::after {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 80px;
    width: 5px;
    background: #fff;
    display: block;
    z-index: 1;
}

/*==== Journey Area Strat Here ====*/

.journey-setion {
    padding: 70px 0;
    background: #080d12;
}

.journey-area h2 {
    font-size: 30px;
    font-weight: 700;
    color: #fff;
}

.journey-items {
    padding-top: 45px;
    position: relative;
}

.journey-items::after {
    content: "";
    display: block;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 50px;
    height: calc(100% - 50px);
    width: 2px;
    background: #f8981d;
}

.journey-box {
    max-width: 490px;
    width: 100%;
    height: 135px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 25px;
    background: #090e13;
    border: 1px solid #ffffffb4;
    border-radius: 8px;
    position: relative;
}

.journey-box::before {
    content: "";
    position: absolute;
    display: block;
    height: 12px;
    width: 12px;
    border-radius: 50%;
    background: #fff;
    right: -31px;
    top: 15px;
    z-index: 3;
}

.journey-box-inner {
    margin-top: 135px;
    position: relative;
}

.journey-box-inner::before {
    display: none;
}

.journey-box-inner::after {
    content: "";
    position: absolute;
    display: block;
    height: 12px;
    width: 12px;
    border-radius: 50%;
    background: #fff;
    left: -31px;
    top: 15px;
    z-index: 3;
}

.journey-box h4 {
    font-size: 20px;
    font-weight: 700;
    color: #f8981d;
}

.journey-box p {
    padding-top: 3px;
    font-size: 16px;
    color: #d1d5db;
}

.journey-box-inner2 {
    border: 1px solid #f8981d;
}

.journey-box-inner2 p {
    color: #fff;
    font-weight: 700;
}

/*==== Stay Area Strat Here ====*/

.stay-section {
    padding: 70px 0;
    background: url(images/slider-bg.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.stay-area {
    padding: 55px 35px;
    border-radius: 26px;
    background: #f16c443d;
}

.stay-area h2 {
    font-size: 30px;
    font-weight: 700;
    color: #1f2937;
}

.stay-area p {
    padding-top: 20px;
    font-size: 16px;
    color: #1f2937;
}

.sign-up-input {
    position: relative;
    display: inline-block;
    max-width: 530px;
    width: 100%;
}

.sign-up-input input {
    background: #fff;
    border: none;
    border-top-left-radius: 8px;
    border-bottom-left-radius: 8px;
    padding: 15px 32px;
    outline: none;
    margin-top: 30px;
    width: 100%;
}

.sign-up-input button {
    background: var(--primaryColor);
    padding: 14px 32px;
    border: none;
    color: #fff;
    font-size: 18px;
    position: absolute;
    top: 30px;
    right: -12px;
    border-top-right-radius: 8px;
    border-bottom-right-radius: 8px;
}

.sign-up-input button:hover {
    background: #111827;
}

/* Footer Area End Here */

.footer-section {
    padding: 55px 0;
    background: #080d12;
}

.footer-area h4 {
    font-size: 28px;
    color: #fff;
}

.footer-token {
    padding-top: 30px;
}

.footer-token ul li a {
    font-size: 24px;
    color: #fff;
    padding: 0 8px;
}

.footer-token ul li a i {
    margin-right: 5px;
}

.footer-token ul li a:hover {
    transform: translateY(-5px);
}

.footer-contact ul li a {
    margin-top: 30px !important;
    width: 150px;
    height: 55px;
    line-height: 55px;
    text-align: center;
    margin: 0 8px;
    background: #fff;
    border-radius: 50px;
    font-size: 18px;
    color: #1f2937;
}

.footer-contact ul li a i {
    margin-right: 5px;
}

.footer-contact ul li a:hover {
    color: var(--primaryColor);
    box-shadow: rgba(255, 255, 255, 0.1) 0px 4px 16px,
    rgba(255, 255, 255, 0.1) 0px 8px 24px,
    rgba(255, 255, 255, 0.1) 0px 16px 56px;
}

.footer-area p {
    padding-top: 18px;
    font-size: 14px;
    color: #ffffffb6;
}

.footer-area p a {
    color: #ffffffb6;
}

.footer-area p a:hover {
    text-decoration: underline;
}
