/*AUTHOR: REJEP MAMMEDOV*/
/*URL: https://rejep.com*/
/*GITHUB: https://github.com/reppon97*/
/*EMAIL: reppon97@gmail.com*/

:root {
    /*--font-title: "ivypresto-display", serif;*/
    --font-title: "Juana", serif, "TT Ramillas", serif;
    --font-text: "Open Sans", serif;
    --theme-color-bg_color: #F9F4EE;
    --theme-color-text_dark: #FC695A;
    --theme-color-text: #635756;
    --theme-color-link: #413a39;
    --theme-color-text_link: #65BAB3;
    --theme-color-text_hover: #209C92;
    --theme-color-bd_color: #EED9C0;
    --theme-color-text_light: #AEAAAA;
    --theme-color-text_light2: #9B9275;
    --theme-color-text_dark_015: rgba(252, 105, 90, 0.15);
    --theme-color-alter_bg_color: #12232E;
    --theme-color-alter_bg_color2: #EFE7D0;
    --theme-color-alter_dark: #12232E;
}

body {
    color: var(--theme-color-text);
    background-color: var(--theme-color-bg_color);
    font-family: var(--font-text);
}

body.loading {
    height: 100vh;
    overflow: hidden;
}

a {
    text-decoration: none;
    color: var(--theme-color-link);
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-title);
    color: var(--theme-color-text_dark);
    font-weight: 300;
}

li {
    list-style: none;
}

section.section-padding {
    padding: 120px 0;
}

.sb-title {
    margin-bottom: 30px;
}

.sb-title a {
    color: var(--theme-color-text_dark);
}

.sb-title h1 {
    font-size: 47px;
    font-weight: 300;
}

.sb-title h4 {
    color: var(--theme-color-text);
    font-size: 16px;
    font-family: var(--font-text);
    letter-spacing: 1px;
    font-weight: 600;
}

.sb-btn {
    padding: 12px 45px;
    text-align: center;
    background-color: var(--theme-color-text_link);
    color: #fff;
    font-family: var(--font-title);
    transition: .4s ease-in-out;
    font-size: 20px;
    display: inline-block;
    outline: none;
}

button.sb-btn {
    border: none;
}

.sb-btn:hover {
    color: #fff;
    background-color: var(--theme-color-text_hover);
}

.message-box {
    padding: 15px 20px;
    text-align: center;
    margin-bottom: 20px;
    background-color: var(--theme-color-alter_bg_color2);
    font-size: 18px;
}

.page-banner {
    height: 500px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.page-banner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    pointer-events: none;
    background-color: rgb(0, 0, 0, .35);
}

.page-banner-title {
    position: relative;
    z-index: 2;
}

.page-banner-title h1 {
    color: #fff;
    font-family: var(--font-title);
    text-align: center;
    font-size: 60px;
}

.back-to-top {
    position: fixed;
    padding: 10px 15px;
    display: flex;
    align-items: center;
    background-color: var(--theme-color-text_dark);
    color: #fff;
    bottom: 60px;
    right: 40px;
    display: none;
    cursor: pointer;
}

.mb-30 {
    margin-bottom: 30px;
}

.mt-30 {
    margin-top: 30px;
}

.mb-60 {
    margin-bottom: 60px;
}

.mt-60 {
    margin-top: 60px;
}

/*NAVBAR*/
.sb-navbar {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 99;
    display: flex;
    justify-content: space-between;
    padding: 30px 50px;
}

.sb-navbar.is-sticky {
    position: fixed;
    top: 0;
    background-color: #000;
    padding: 15px 50px;
    animation: slideDown 0.45s ease-out;
}

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

.nav-logo img {
    width: 250px;
}

.sb-navbar.is-sticky .nav-logo img {
    width: 170px;
}

.nav-menu ul:not(.dropdown-menu) {
    display: flex;
    margin-bottom: 0;
}

.nav-menu li, .nav-social li {
    padding: 20px;
    color: #fff;
}

.nav-menu li a, .nav-social li a {
    color: #fff;
    font-family: var(--font-title);
    position: relative;
    font-size: 18px;
}

.nav-menu li a::before {
    content: "";
    position: absolute;
    bottom: -8px;
    height: 2px;
    width: 0;
    background-color: #fff;
    transition: width .4s ease-in-out;
}

.dropdown-menu li a {
    color: var(--theme-color-text);
}

.dropdown-menu li {
    padding: 5px 10px;
}

.nav-menu li:hover a::before {
    width: 100%;
}

.nav-social ul {
    display: flex;
    margin-bottom: 0;
}

.menu-icon {
    display: none;
}

.lang-form {
    display: flex;
    flex-direction: column;
}

.lang-dropdown .dropdown-menu {
    min-width: unset;
}

.lang-dropdown .dropdown-menu a {
    color: var(--theme-color-text);
}

.lang-dropdown button a {
    font-family: var(--font-text);
}

li.lang-dropdown a::before {
    display: none;
}


/*FOOTER*/

footer {
    text-align: center;
    padding-top: 90px;
    padding-bottom: 0;
}

.footer-logo img {
    width: 220px;
}

.footer-social ul {
    display: flex;
}

.footer-social ul li {
    padding: 20px;
}

.footer-social ul li a {
    color: var(--theme-color-text_dark);
    padding: 5px;
    border: 1px solid var(--theme-color-text_dark_015);
    display: flex;
    justify-content: center;
    align-items: center;
    height: 40px;
    width: 40px;
    border-radius: 50%;
}

.bottom-line {
    padding: 30px 0;
    background-color: #d7cbbb;
}

.bottom-line p {
    margin-bottom: 0;
}

.footer-contact ul {
    text-align: left;
}

.footer-contact li {
    margin-bottom: 10px;
}

.top-line {
    padding: 30px 0;
}

.footer-social ul {
    padding-left: 2rem;
}

.footer-links ul {
    display: flex;
    gap: 1.25rem;
}

/*PRELOADER*/

.preloader {
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background-color: #fff;
    z-index: 999;
}

.loader-wrapper {
    left: 50%;
    top: 50%;
    overflow: hidden;
    width: 140px;
    height: 200px;
    animation: loading 20s linear infinite;
}

.loader-logo {
    position: absolute;
    top: 65%;
    left: 50%;
    transform: translateX(-50%);
}

.loader-logo img {
    width: 220px;
}

.spinner {
    position: absolute;
    margin: auto;
    overflow: hidden;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.wave {
    width: 280px;
    height: 280px;
    background: #3257a3;
    border-radius: 45%;
    transform-style: preserve-3d;
    transform-origin: center;
    animation: rotate 2.5s linear infinite;
    margin-top: 15px;
    margin-left: -50%;
    position: absolute;
}

.wave:nth-of-type(1) {
    margin-top: 20px;
    animation-duration: 2.1s;
    animation-direction: reverse;
    z-index: 1;
}

.wave:nth-of-type(2) {
    animation-duration: 2.5s;
    border-radius: 41%;
    animation-direction: normal;
    background: #83b1df;
}

@keyframes rotate {
    0% {
        transform: rotate(0) translate(0, 0);
    }
    45% {
        transform: rotate(90deg) translate(15px, 15px);
    }
    100% {
        transform: rotate(180deg) translate(0, 0);
    }
}

@keyframes loading {
    0% {
        transform: translate(0, 40%);
    }
    50% {
        transform: translate(0, 0);
    }
    100% {
        transform: translate(0, 40%);
    }
}

/*HERO*/
.hero-swiper .swiper-slide {
    height: 100vh;
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-content: center;
    position: relative;
}

.hero-content {
    color: #fff;
    text-align: center;
    position: relative;
    z-index: 2;
}

.hero-content h1 {
    color: #fff;
}

.hero-text {
    font-weight: 400;
    letter-spacing: 1px;
    margin-bottom: 20px;
    font-size: 21px;
}

.hero-btn {
    background-color: transparent;
    border: 2px solid #fff;
}

.hero-btn:hover {
    border-color: var(--theme-color-text_hover);
}

.hero-slogan {
    margin-bottom: 40px;
}

.hero-swiper .swiper-button-next:after, .hero-swiper .swiper-button-prev:after {
    font-size: 14px;
    font-weight: 900;
}

.hero-swiper .swiper-button-next, .hero-swiper .swiper-button-prev {
    background-color: #fff;
    padding: 40px 25px;
    height: unset;
    color: var(--theme-color-text_dark);
}

.hero-swiper .swiper-button-next, .swiper-rtl .swiper-button-prev {
    right: 0;
}

.hero-swiper .swiper-button-prev, .swiper-rtl .swiper-button-next {
    left: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    pointer-events: none;
    z-index: 1;
    background-color: rgb(0, 0, 0, .15);
}


/*DIFFERENCES*/

.divider-line {
    height: 1px;
    width: 100%;
    background-color: var(--theme-color-bd_color);
}

.diff-item {
    display: flex;
    border-bottom: 1px solid var(--theme-color-bd_color);
    align-items: center;
    padding: 35px 0;
    justify-content: space-between;
}

.diff-item .diff-no {
    width: 15%;
    font-size: 60px;
    color: var(--theme-color-text_light);
    font-family: var(--font-title);
    font-weight: 300;
}

.diff-name {
    width: 30%;
    font-size: 35px;
    color: var(--theme-color-text_dark);
    font-family: var(--font-title);
    font-weight: 300;
}

.diff-text {
    width: 40%;
    font-size: 15px;
}

.diff-text ul li {
    list-style: disc;
}

.diff-btn-wrapper {
    width: 20%;
    text-align: right;
}

.diff-btn {
    display: flex;
    padding: 25px;
    width: 60px;
    height: 60px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid var(--theme-color-bd_color);
    color: var(--theme-color-text_dark);
    margin-left: auto;
}

.diff-icon {
    width: 15%;
}

.diff-icon img {
    width: 85%;
    max-height: 95px;
    max-width: 140px;
    object-fit: contain;
}

/*ABOUT*/

.about-img-wrapper {
    position: relative;
}

.about-img-1 {
    width: 80%;
}

.about-img-2 {
    right: 5%;
    top: 33%;
    width: 33%;
    position: absolute;
}

.about-wrapper {
    padding-inline: 3rem;
    display: flex;
    align-items: center;
}

.about-item {
    width: 50%;
    padding-left: 3rem;
}

.about-text p {
    margin-bottom: 30px;
}


/*ACTIVITIES*/

.activity-grid {
    display: flex;
    height: 800px;
}

.activity-item {
    overflow: hidden;
}

.activity-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .5s ease-in-out;
}

.activity-item:hover img {
    transform: scale(1.05);
}

.activity-item:not(.big) {
    height: 50%;
}

.activity-item.big {
    width: 100%;
    height: 100%;
}

.width-50 {
    width: 50%;
    display: flex;
    flex-wrap: wrap;
}

.activity-item:hover .activity-tooltip {
    display: block;
}


.activity-tooltip {
    display: none;
    background: var(--theme-color-text_dark);
    color: #fff;
    font-family: var(--font-title);
    margin-left: 28px;
    padding: 10px;
    position: absolute;
    z-index: 1000;
}


/*GALLERY*/
.gallery-item {
    margin-bottom: 20px;
    display: inline-block;
    width: 100%;
}

.filter-button-group {
    margin-bottom: 20px;
    text-align: center;
}

/*FEATURES*/

.features-grid {
    display: flex;
    flex-wrap: wrap;
}

.feature-item {
    width: calc(100% / 3);
    border: 1px solid var(--theme-color-bd_color);
    border-left: none;
    border-bottom: none;
    padding: 25px 0;
}

.feature-item:first-of-type {
    border-left: 1px solid var(--theme-color-bd_color);
}

.feature-item:nth-of-type(4n) {
    border-left: 1px solid var(--theme-color-bd_color);
}

.feature-item:nth-last-of-type(-n + 3) {
    border-bottom: 1px solid var(--theme-color-bd_color);
}

.feature-icon {
    color: var(--theme-color-text_dark);
    font-size: 40px;
    text-align: center;
    margin-bottom: 20px;
}

.feature-name h6 {
    font-size: 20px;
    color: var(--theme-color-text_dark);
    text-align: center;
}

/*BIZ KIMIZ*/

.biz-kimiz img {
    width: 90%;
}

.biz-kimiz p {
    text-align: justify;
}

.reference-item {
    margin-bottom: 20px;
    background-color: var(--theme-color-alter_bg_color2);
    display: flex;
    overflow: hidden;
    flex-wrap: wrap;
}

.reference-cover {
    width: 45%;
}

.reference-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.reference-info {
    padding: 25px;
    width: 55%;
}

.reference-badge {
    padding: 2px 15px;
    background-color: var(--theme-color-text_link);
    color: #fff;
    margin-bottom: 20px;
    display: inline-block;
}

.reference-name {
    font-family: var(--font-title);
    font-size: 26px;
    margin-bottom: 20px;
}

.reference-text {

}

/*CONTACT*/

.contact-img img {
    width: 115%;
}

.contact form {
    background-color: var(--theme-color-alter_bg_color2);
    padding: 40px;
}

.form-group {
    margin-bottom: 20px;
    position: relative;
}

.form-group::before {
    content: "";
    height: 1px;
    width: 100%;
    position: absolute;
    bottom: -8px;
    background-color: var(--theme-color-text_light2);
}

.form-group .form-icon {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    color: var(--theme-color-text_light2)
}

.form-group input, .form-group textarea {
    width: calc(100% - 25px);
    margin-left: 25px;
    background-color: transparent;
    color: var(--theme-color-text);
    border: none;
    outline: none;
}

.form-group input {
    height: 70px;
}

.form-group input::placeholder, .form-group textarea::placeholder {
    color: var(--theme-color-text_light2)
}

.form-group textarea {
    height: 120px;
}


.g-map iframe {
    width: 100%;
    height: 450px;
}

.map-btn-wrapper {
    margin-bottom: 20px;
    text-align: center;
}

.form-group.no-line::before {
    display: none;
}

.contact-box {
    background-color: var(--theme-color-alter_bg_color2);
    color: var(--theme-color-text);
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.contact-box-inner a {
    color: var(--theme-color-text);
}

.contact-box-icon {
    position: absolute;
    top: 25px;
    right: 25px;
}

.contact-box-icon i {
    font-size: 90px;
    opacity: .15;
}

/*FLOORPLANS*/

.floorplan-item {
    margin-bottom: 20px;
    position: relative;
}

.floorplan-cover {
    overflow: hidden;
}

.floorplan-item:hover .floorplan-cover img {
    transform: scale(1.05);
}

.floorplan-cover img {
    width: 100%;
    transition: .6s ease-in-out;
}

.floorplan-name {
    padding: 20px 40px;
    border-radius: 30px;
    background-color: rgb(255, 255, 255, .15);
    backdrop-filter: blur(10px) saturate(70%);
    color: rgb(255, 255, 255, .85);
    text-align: center;
    font-size: 25px;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    transition: .6s ease-in-out;
    width: 60%;
    font-weight: 400;
    font-family: var(--font-title);
}

.floorplan-item:hover .floorplan-name {
    backdrop-filter: blur(50px) saturate(80%);
}

.floorplan-name img {
    width: 40px;
    margin-right: 10px;
}


/*PROJECT INFO*/
.project-info-item {
    background-color: var(--theme-color-alter_bg_color2);
    color: var(--theme-color-alter_dark);
    padding: 2.5rem;
    margin-bottom: 25px;
    position: relative;
}

.project-info-item img {
    width: 100%;
}

.project-info-item li {
    list-style: disc;
}

.project-info-item h2 {
    font-size: 1.5rem;
}


.project-info-item::after, .project-info-item::before {
    content: "";
    position: absolute;
    top: -10px;
    height: 20px;
    width: 3px;
    background-color: var(--theme-color-text_light);
}


.project-info-item::after {
    right: 30px;
}

.project-info-item::before {
    right: 40px;
}

/*INSTA FEED*/

.feed-item {
    padding: 1px;
    position: relative;
}

.feed-item::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background-color: #000;
    opacity: 0;
    transition: .3s ease-in-out;
}

.feed-item i {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    font-size: 30px;
    opacity: 0;
    transition: opacity .4s ease-in-out;
}

.feed-item:hover::before {
    opacity: .5;
}

.feed-item:hover i {
    opacity: 1;
}

.feed-item img {
    width: 100%;
}

/*MOBILE  VIDEO*/
.my-player-dimensions {
    width: 100%;
    height: 88vh;
}

.pc-video iframe {
    width: 100%;
    height: 700px;
}

.video-swiper .swiper-slide {
    padding: 1.5rem;
}

/*KVKK*/

.kvkk ul li {
    list-style: disc;
}

.kvkk ol li {
    list-style: decimal;
}
