@font-face {
    font-family: "Outfit";
    src: url("../fonts/outfit.ttf");
}

@font-face {
    font-family: "Copperplate";
    src: url("../fonts/copper-plate.otf");
}

* {
    box-sizing: border-box;
    font-family: "Outfit", sans-serif;
    font-weight: 200;
    line-height: 1.614;
    transition: all 275ms ease-in-out;
}

span {
    line-height: 1.1 !important;
}

body {
    background: #fff;
}

.title {
    font-family: "Copperplate", sans-serif;
    line-height: 1.2;
    text-transform: uppercase !important;
}

.bg-dark-gradient {
    background: #000000;
    background: linear-gradient(
        90deg,
        rgba(0, 0, 0, 1) 0%,
        rgba(53, 53, 36, 1) 50%
    );
}

#hero-section {
    background-image: url("../images/banner.jpg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.transperant-gradient-overlay {
    position: relative;
    background: #000;
    background: linear-gradient(
        60deg,
        rgba(0, 0, 0, 0.25) 100%,
        rgba(0, 0, 0, 0) 100%
    );
    color: white;
}

.hero-wrapper {
    position: absolute;
    bottom: 0%;
}

.bg-primary-gradient {
    background: linear-gradient(100deg, #353524, #000000) !important;
}

.gradient-theme-button {
    background: linear-gradient(
        90deg,
        #000000 0,
        #353524 50%,
        #5a5444 50%,
        #353524 100%
    );
    background-size: 200% 100%;
    transition: 0.3s ease-in-out;
    color: #ffffff;
}

.gradient-theme-button:hover {
    background-position: 100% 0;
    color: #ffffff;
}

.gradient-theme-button-outline {
    background-color: transparent;
    color: var(--color-primary);
    border: 2px solid var(--color-primary);
}

.gradient-theme-button-outline:hover {
    background: linear-gradient(
        90deg,
        #5a5444 0,
        #353524 50%,
        #353524 50%,
        #5a5444 100%
    );
    background-size: 200% 100%;
    transition: 0.3s ease-in-out;
    color: #ffffff;
    background-position: 100% 0;
}

.testimonial-bubble {
    width: 100%;
    position: relative;
    background: #fff;
    /* border-radius: 12px 12px 12px 0px; */
    z-index: 999;
}

/* Tail as a triangle */
.testimonial-bubble::after {
    content: "";
    position: absolute;
    bottom: 2px; /* place below the bubble */
    left: -32px; /* adjust position */
    border-width: 50px 50px 0 50px; /* top is 0 so it’s open upwards */
    border-style: solid;
    border-color: #fff transparent transparent transparent;
    transform: rotate(135deg);
    z-index: -999;
}

.tabs [type="radio"]:checked.tab {
    border: 2.5px solid white;
}

.stand-wrapper:hover .content {
    opacity: 1;
    top: 0%;
}

.offplan-view-hero-wrapper {
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.offplan-view-hero-wrapper .gradient-overlay {
    position: relative;
    background: #000;
    background: linear-gradient(
        60deg,
        rgba(0, 0, 0, 0.58) 100%,
        rgba(0, 0, 0, 0) 100%
    );
}
