@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Lora:wght@400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@400;600&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto+Flex:opsz,wght@8..144,300;8..144,400;8..144,500;8..144,600;8..144,700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700&display=swap');
@import url('icofont.min.css');
/* fallback */
@font-face {
    font-family: 'Material Symbols Rounded';
    font-style: normal;
    font-weight: 400;
    src: url('fonts/material-symbols-rounded.woff2') format('woff2');
}

.material-symbols-rounded {
    font-family: 'Material Symbols Rounded';
    font-weight: normal;
    font-style: normal;
    font-size: 24px;
    line-height: 1;
    letter-spacing: normal;
    text-transform: none;
    display: inline-block;
    white-space: nowrap;
    word-wrap: normal;
    direction: ltr;
    -webkit-font-feature-settings: 'liga';
    -webkit-font-smoothing: antialiased;
}

:root{
    --light-gray: #f5f5f5;
    --gray: #656565;
    --dark-gray: #0a1821;
    --green: #3fb149;
    --green-dark: #3a9344;
    --red: #f03545;
    --blue: #1d9bf0;
    --white: #ffffff;
    --font: 'Playfair Display', sans-serif;
    --font-second: 'Roboto', sans-serif;
    --font-third: 'Roboto', sans-serif;
}
*, ::after, ::before {
    box-sizing: border-box
}

.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {
    margin-top: 0;
    margin-bottom: 10px;
    font-weight: 200;
    line-height: 1.2;
}
h1, .h1{ font-size: 2.5em;}
h2, .h2{ font-size: 2.3em;}
h3, .h3{ font-size: 2.1em;}
h4, .h4{ font-size: 1.8em;}
h5, .h5{ font-size: 1.6em;}
h6, .h6{ font-size: 1.4em;}
p { margin: 0 0 10px 0;}
p:last-child { margin: 0;}
img { width: 100% }
a{ color: var(--blue); text-decoration: none; transition: all 0.3s}
a:hover{ color: var(--blue-dark)}

body{
    -webkit-font-smoothing: antialiased;
    margin: 0;
    font-family: var(--font);
    font-size: 14px;
    font-weight: 400;
    color: var(--gray);
    background-color: var(--light-gray);
    line-height: 1.2;
    -webkit-text-size-adjust: 100%;
    -webkit-tap-highlight-color: transparent;
}

.button{
    display: inline-block;
    padding: 15px 30px;
    font-weight: 600;
    font-size: 18px;
    background-color: #055989;
    color: #fff;
    border: 1px solid #055989;
    cursor: pointer;
}
.button:hover{
    background-color: #052d4a;
    border: 1px solid #052d4a;
    color: #fff;
}
.button.button-outline{
    background-color: transparent;
    border: 1px solid #055989;
    color: #055989;
}
.button.button-outline:hover{
    background-color: #055989;
    border: 1px solid #055989;
    color: #fff;
}
.button.button-block{
    display: block;
    text-align: center;
}
header{
    background: -moz-linear-gradient(top,rgba(0,0,0,.6) 0%,rgba(0,0,0,.001) 100%);
    background: -webkit-linear-gradient(top,rgba(0,0,0,.6) 0%,rgba(0,0,0,.001) 100%);
    background: linear-gradient(to bottom,rgba(0,0,0,.6) 0%,rgba(0,0,0,.001) 100%);
    z-index: 9;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 10px 0 20px 0;
}

@media (max-width: 768px) {
    header{
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        z-index: 100;
        padding: 0 0 0px 0;
        transition: background 0.5s;
    }
}

.header-main{
    height: 70px;
    display: flex;
    align-items: center;
}
.nav-icon {
    flex-grow: 1;
    width: 30px;
    height: 30px;
    position: relative;
    margin: 0 15px 0 5px;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: .5s ease-in-out;
    -moz-transition: .5s ease-in-out;
    -o-transition: .5s ease-in-out;
    transition: .5s ease-in-out;
    cursor: pointer;
}
.nav-icon span {
    display: block;
    position: absolute;
    height: 2px;
    width: 100%;
    background: var(--white);
    border-radius: 9px;
    opacity: 1;
    left: 0;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: .25s ease-in-out;
    -moz-transition: .25s ease-in-out;
    -o-transition: .25s ease-in-out;
    transition: .25s ease-in-out;
}
.nav-icon:hover span {
    background: var(--blue);
}
.nav-icon span:nth-child(1) {
    top: 6px;
    width: 24px;
}
.nav-icon span:nth-child(2) {
    top: 14px;
    width: 12px;
}
.nav-icon span:nth-child(3) {
    bottom: 6px;
    width: 18px;
}
.header-main .logo{
    flex-grow: 4;
    text-align: center;
}
.header-main .logo img{
    height: 60px;
    width: auto;
    margin-left: 10px;
}

@media (max-width: 768px) {
    .header-main{
        height: 60px;
    }
    .nav-icon {
        flex-grow: unset;
    }
    .header-main .logo{
        text-align: center;
    }
    .header-main .logo img{
        width: auto;
        height: 40px;
        margin-left: 20px;
    }
}
.header-main .header-icons{
    flex-grow: 1;
    display: flex;
    justify-content: flex-end;
}

.header-main .header-icons .header-icon{
    position: relative;
    margin-left: 10px;
    width: 42px;
    height: 26px;
}
.header-main .header-icons .header-icon:before{
    content: "\e5cf";
    font-family: "Material Symbols Rounded";
    position: absolute;
    top: 4px;
    right: 0;
    width: 16px;
    height: 16px;
    font-size: 16px;
    color: #fff;

}
.header-main .header-icons .header-icon .flag{
    position: relative;
    width: 26px;
    height: 26px;
    display: block;
}
.header-main .header-icons .header-icon .flag.icon-en:before, .header-main .header-icons .header-icon .flag.icon-hr:before, .header-main .header-icons .header-icon .flag.icon-de:before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: inherit;
    height: inherit;
    background-size: 26px 26px;
    background-position: center center;
    background-repeat: no-repeat;
}
.header-main .header-icons .header-icon .flag.icon-en:before{
    background-image: url(../images/en.png);
}
.header-main .header-icons .header-icon .flag.icon-hr:before{
    background-image: url(../images/hr.png);
}
.header-main .header-icons .header-icon .flag.icon-de:before{
    background-image: url(../images/de.png);
}
.lang-menu-fleg{
    width: 16px;
    height: 16px;

}
@media (max-width: 768px) {
    header.fixed{
        background: rgba(5, 89,137,0.9);
        padding: 0 0 0 0;
    }
}


/* Main Menu - Side Menu */
.main-menu ul{
    margin: 0;
    padding: 0;
    list-style: none;
    font-family: var(--font-second);
}
.main-menu ul div{
    margin: 0px 0 5px 0px;
    padding: 15px 0 0 15px;
    font-size: 11px;
    font-weight: 500;
    text-transform: uppercase;
    color: #989898;
    border-top: 1px solid #ddd;
}
.main-menu ul div:first-child{
    margin: 0 0 5px 15px;
}
.main-menu ul li{
    font-size: 16px;
    font-weight: 400;
    color: var(--dark-blue);
    /*border-bottom: 1px solid #ddd;*/
}
.main-menu ul li a{
    display: block;
    position: relative;
    padding: 10px 15px;
    color: var(--dark-blue);
    cursor: pointer;
}
.main-menu ul li a:hover{
    color: var(--blue);
}
.main-menu ul li a.active{
    color: var(--blue);
}
.main-menu ul li.has-children a:before{
    content: "\e313";
    font-family: "Material Symbols Rounded";
    font-size: 18px;
    color: var(--dark-blue);
    position: absolute;
    top: 10px;
    right: 10px
}
.main-menu ul li.has-children a.active:before{
    color: var(--blue);
}

.main-menu ul li ul{
    margin: 0;
    padding: 0;
    list-style: none;
    display: none;
}
.main-menu ul li ul li{
    background-color: transparent;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--dark-blue);
    border: none;
}
.main-menu ul li ul li a{
    display: block;
    padding: 5px 0;
    margin: 0 15px;
    color: var(--dark-gray);
}
.main-menu ul li.has-children ul li a:before{
    content: "";
}
.main-menu ul li ul li a:hover{
    color: var(--blue);
}

.main-menu ul li ul li ul{
    margin: 0;
    padding: 0 10px 5px;
    list-style: none;
    display: none;
}
.main-menu ul li ul li ul li{
    background-color: transparent;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--dark-gray);
}
.main-menu ul li ul li ul li a{
    display: block;
    padding: 5px 0;
    margin: 0 15px;
    color: var(--dark-gray);
}
.main-menu ul li.has-children ul li.has-children a:before{
    content: "\e313";
    font-family: "Material Symbols Rounded";
    font-size: 18px;
    color: var(--dark-gray);
    position: absolute;
    top: 3px;
    right: -15px
}
.main-menu ul li.has-children ul li.has-children ul li a:before{
    content: "";
}
.main-menu ul li ul li ul li a:hover{
    color: var(--blue);
}
.offcanvas-social, .footer-social{
    padding: 15px 0 0 0;
}
.offcanvas-social .social, .footer-social .social{
    display: flex;
    justify-content: center;
}
.offcanvas-social .social .icon, .footer-social .social .icon{
    position: relative;
    width: 30px;
    height: 30px;
    margin: 0 7.5px;
    display: block;
}
.offcanvas-social .social .icon.facebook svg .facebook0, .footer-social .social .icon.facebook svg .facebook0{
    fill: #1d46b5;
}
.offcanvas-social .social .icon.facebook svg .facebook1, .footer-social .social .icon.facebook svg .facebook1{
    fill:none;stroke: #1d46b5;stroke-width:5;
}
.offcanvas-social .social .icon.facebook:hover svg .facebook0{
    fill: var(--dark-gray);
}
.footer-social .social .icon.facebook:hover svg .facebook0{
    fill: var(--white);
}
.offcanvas-social .social .icon.facebook:hover svg .facebook1{
    fill:none;stroke: var(--dark-gray);stroke-width:5;
}
.footer-social .social .icon.facebook:hover svg .facebook1{
    fill:none;stroke: var(--white);stroke-width:5;
}
.offcanvas-social .social .icon.instagram svg .insta0, .footer-social .social .icon.instagram svg .insta0{
    fill: #f25c44;
}
.offcanvas-social .social .icon.instagram:hover svg .insta0{
    fill: var(--dark-gray);
}
.footer-social .social .icon.instagram:hover svg .insta0{
    fill: var(--white);
}
.offcanvas-social .social .icon.twitter svg .twiiter0, .footer-social .social .icon.twitter svg .twiiter0{
    fill: #1d9bf0;
}
.offcanvas-social .social .icon.twitter:hover svg .twiiter0{
    fill: var(--dark-gray);
}
.footer-social-social .social .icon.twitter:hover svg .twiiter0{
    fill: var(--white);
}

.sm-ci{
    margin: 15px;
    background-color: #eaeaea;
    padding: 15px;
    border-radius: 8px;
    text-align: center;
    color: var(--dark-gray);
}
.sm-ci .c-name{
    font-size: 18px;
    font-weight: 600;
    margin: 10px;
}
.sm-ci .c-info{
    font-family: var(--font-second);
    font-size: 14px;
    font-weight: 600;
    margin: 5px;
}

@media (max-width: 768px) {
    /*.page{ padding-top: 60px}*/
}

.panel{
    padding: 25px;
    border-radius: 10px;
    margin-bottom: 15px;
}
.panel-flex{
    display: flex;
    align-items: center;
}
.panel-icon{
    font-size: 28px;
    margin-right: 15px;
}

@media (max-width: 768px) {
    .panel{
        padding: 15px;
    }
}

.breadcrumb{
    padding: 0 0;
    margin: 0;
}
.breadcrumb .breadcrumb-list{
    list-style: none;
    margin: 0;
    padding: 0;
}
.breadcrumb .breadcrumb-list .breadcrumb-item{
    display: inline-block;
    padding: 0 0 0 20px;
    position: relative;
    font-size: 12px;
}
.breadcrumb .breadcrumb-list .breadcrumb-item:before{
    content: "\e409";
    font-family: "Material Symbols Rounded";
    font-size: 14px;
    position: absolute;
    top: 0;
    left: 0;
    width: 18px;
    height: 18px;
    line-height: 18px;
    text-align: center;
}
.breadcrumb .breadcrumb-list .breadcrumb-item:first-child{
    padding: 0;
}
.breadcrumb .breadcrumb-list .breadcrumb-item:first-child:before{
    display: none;
}
.breadcrumb .breadcrumb-list .breadcrumb-item a{
    color: var(--dark-gray);
    transition: all 0.4s;
}
.breadcrumb .breadcrumb-list .breadcrumb-item a:hover{
    text-decoration: underline;
}
section{
    position: relative;
    padding: 15px 0 30px;
}
.section-gradient-top{
    padding: 50px 0 60px;
    background: #cacaca;
    background: -moz-linear-gradient(top,rgba(202,202,202,1) 0%,rgba(255,255,255,1) 16%);
    background: -webkit-linear-gradient(top,rgba(202,202,202,1) 0%,rgba(255,255,255,1) 16%);
    background: linear-gradient(to bottom,rgba(202,202,202,1) 0%,rgba(255,255,255,1) 16%);
}
.category-title{
    font-size: 2.5em;
    font-weight: 200;
    margin: 15px 0;
}
.module-title{
    font-size: 2.5em;
    font-weight: 200;
    text-align: center;
    margin: 15px 0;
}
@media (max-width: 768px) {
    .module-title{
        font-size: 2em;
        margin: 15px 0;
    }
    .category-title{
        font-size: 22px;
        font-weight: 600;
        margin: 15px 0;
    }
}

/* Slider-module */
.slider-module{
    overflow: hidden;
    overflow: unset;
}
/* Grid */
.grid-3{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: auto;
    grid-column-gap: 15px;
    grid-row-gap: 15px;
}
.grid-4{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    grid-template-rows: auto;
    grid-column-gap: 15px;
    grid-row-gap: 15px;
}
.grid-5{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
    grid-template-rows: auto;
    grid-column-gap: 15px;
    grid-row-gap: 15px;
}
.grid-6{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
    grid-template-rows: auto;
    grid-column-gap: 15px;
    grid-row-gap: 15px;
}
@media (max-width: 1399px) {
    .grid-4 {
        grid-template-columns: 1fr 1fr 1fr;
    }
    .grid-5 {
        grid-template-columns: 1fr 1fr 1fr 1fr;
    }
    .grid-6 {
        grid-template-columns: 1fr 1fr 1fr 1fr;
    }
}
@media (max-width: 991px) {
    .grid-6, .grid-5 {
        grid-template-columns: 1fr 1fr 1fr;
    }
    .grid-4 {
        grid-template-columns: 1fr 1fr;
    }
}
@media (max-width: 768px) {
    .grid-6, .grid-5, .grid-4, .grid-3{
        grid-template-columns: 1fr 1fr;
    }
}
@media (max-width: 599px) {
    .grid-6, .grid-5, .grid-4, .grid-3 {
        grid-template-columns: 1fr;
    }
}

/* Apartment Item */
.grid .apartment-item, .slider-module .apartment-item{
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    background-color: var(--white);
    transition: all 0.4s;
}
.grid .apartment-item:hover, .slider-module .apartment-item:hover{
    -webkit-box-shadow: 0 0 5px 0 var(--shadow);
    box-shadow: 0 0 5px 0 var(--shadow);
}
.grid .apartment-item .image, .slider-module .apartment-item .image {
    margin-bottom: 82px;
    padding: 10px;
}
.grid .apartment-item .image img, .slider-module .apartment-item .image img {
    width: 100%;
    border-radius: 8px;
}
.grid .apartment-item .sold, .slider-module .apartment-item .sold{
    position: absolute;
    top: calc(50% - 63px);
    left: calc(50% - 93px);
    font-size: 40px;
    font-weight: 600;
    padding: 2px 5px;
    border-radius: 4px;
    color: red;
    text-transform: uppercase;
    opacity: 0.6;
    transform: rotate(-25deg);
}
.grid .apartment-item .reserved, .slider-module .apartment-item .reserved{
    position: absolute;
    top: calc(50% - 63px);
    left: calc(50% - 130px);
    font-size: 40px;
    font-weight: 600;
    padding: 2px 5px;
    border-radius: 4px;
    color: #a67c00;
    text-transform: uppercase;
    opacity: 0.6;
    transform: rotate(-25deg);
}
.grid .apartment-item .info, .slider-module .apartment-item .info{
    position: absolute;
    bottom: 0;
    left:0;
    width: 100%;
    padding: 10px;
    background-color: var(--white);
    margin-bottom: 0;
}
.grid .apartment-item .info .title, .slider-module .apartment-item .info .title{
    text-align: center;
    text-transform: uppercase;
    font-size: 18px;
    font-weight: 600;
    color: var(--dark-blue);
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    white-space: normal;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    transition: all 0.4s;
}
.grid .apartment-item:hover .info .title, .slider-module .apartment-item:hover .info .title{
    color: var(--blue);
}
.grid .apartment-item .info .extra-info, .slider-module .apartment-item .info .extra-info{
    display: flex;
    justify-content: space-between;
    border-top: 1px solid var(--light-gray);
    margin: 10px -10px 0 -10px;
    padding: 10px 15px 0;
    font-size: 16px;
    font-weight: 600;
    color: var(--dark-blue);
}

/* Homepage Big banner*/
.home-banner{
    position: relative;
    height: 100vh;
}
.home-banner .banner-item{
    width: 100%;
    height: 100vh !important;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}
.home-banner .banner-caption {
    width: 100%;
    position: absolute;
    bottom: 0;
    left: 0;
    padding-bottom: 90px;
    padding-top: 50px;
    background: -moz-linear-gradient(top,rgba(0,0,0,.001) 0%,rgba(0,0,0,.66) 50%,rgba(0,0,0,.8) 100%);
    background: -webkit-linear-gradient(top,rgba(0,0,0,.001) 0%,rgba(0,0,0,.66) 50%,rgba(0,0,0,.8) 100%);
    background: linear-gradient(to bottom,rgba(0,0,0,.001) 0%,rgba(0,0,0,.66) 50%,rgba(0,0,0,.8) 100%);
}
.home-banner .banner-caption .banner-stars{
    margin-bottom: 0;
}
.home-banner .banner-caption .banner-stars span.material-symbols-rounded{
    color: #ffe138;
    font-weight: 400;
    text-shadow: 1px 1px 2px #000;
    display: inline-block;
}
.home-banner .banner-caption .banner-title{
    font-size: 52px;
    font-weight: 500;
    color: #fff;
    text-shadow: 1px 1px 2px #000;
    text-transform: uppercase;
}
.home-banner .banner-caption .banner-text{
    font-size: 28px;
    font-weight: 400;
    color: #fff;
    text-shadow: 1px 1px 2px #000;
}
.home-banner .banner-caption .banner-url{
    display: inline-block;
    width: 50px;
    height: 50px;
    line-height: 50px;
    border: 2px solid #fff;
    border-radius: 50%;
    color: #fff;
    font-size: 20px;
    text-transform: uppercase;
    margin-top: 20px;
    background-color: rgba(255,255,255, 0.1);
    animation: bounce 2s infinite;
}
.home-banner .banner-caption .banner-url:hover{
    background-color: #a67c00;
    border: 2px solid #a67c00;
}

.home-banner .banner-caption .banner-main-features{
    margin-top: 30px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    grid-template-rows: auto;
    grid-column-gap: 15px;
    grid-row-gap: 15px;
}
.home-banner .banner-caption .banner-main-features .mf-item{
    display: flex;
    align-items: center;
}
.home-banner .banner-caption .banner-main-features .mf-item .mf-icon{
    width: 30px;
    height: 30px;
    color: #fff;
    margin-right: 10px;
    position: relative;
    text-shadow: 1px 1px 2px #000;
}
.home-banner .banner-caption .banner-main-features .mf-item .mf-title{
    font-size: 18px;
    font-weight: 400;
    color: #fff;
    text-shadow: 1px 1px 2px #000;
    font-family: var(--font-second);
}
.home-banner .banner-caption .banner-main-features .mf-item .mf-icon:before{
    font-family: "Material Symbols Rounded";
    font-size: 30px;
    width: 30px;
    height: 30px;
    line-height: 30px;
    position: absolute;
    top: 0;
    left:0;
}
.home-banner .banner-caption .banner-main-features .mf-item .mf-icon.icon-square-meter:before{
    content: '\e85b';
}
.home-banner .banner-caption .banner-main-features .mf-item .mf-icon.icon-persons:before{
    content: '\e7fd';
}
.home-banner .banner-caption .banner-main-features .mf-item .mf-icon.icon-pool:before{
    content: '\eb48';
}
.home-banner .banner-caption .banner-main-features .mf-item .mf-icon.icon-bedroom:before{
    content: '\efdf';
}

.banner-scroll-down{
    display: block;
    width: 50px;
    height: 50px;
    position: absolute;
    bottom: 15px;
    left: calc(50% - 25px);
    cursor: pointer;
}
.banner-scroll-down:after{
    content: '\e5cf';
    font-family: "Material Symbols Rounded";
    font-size: 50px;
    color: #fff;
    width: 50px;
    height: 50px;
    line-height: 50px;
    position: absolute;
    top:0;
    left:0;
    text-shadow: 1px 1px 2px #000;
    animation: bounce 3s infinite;
}
@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

@media (max-width: 768px) {
    .home-banner .banner-caption {
        padding-bottom: 90px;
        padding-top: 50px;
    }
    .home-banner .banner-caption .banner-title{
        font-size: 40px;
        line-height: 1.2;
    }
    .home-banner .banner-caption .banner-text{
        font-size: 20px;
        line-height: 1.2;
    }
    .home-banner .banner-caption .banner-main-features{
        grid-template-columns: 1fr 1fr;
    }
    .home-banner .banner-caption .banner-main-features .mf-item .mf-title{
        font-size: 16px;
    }
}

@media (max-width: 568px) {
    .home-banner{
        height: calc(100vh - 55px) !important;
    }
    .home-banner .banner-item{
        height: calc(100vh - 55px) !important;
    }
    .home-banner .banner-caption .banner-main-features{
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 1080px) and (orientation:landscape) {
    .home-banner{
        height: 700px !important;
    }
    .home-banner .banner-item{
        height: 700px !important;
    }
}


/* Page Big banner*/
.page-banner{
    position: relative;
    height: calc(100vh - 132px) !important;
}
.page-banner .banner-item{
    width: 100%;
    height: calc(100vh - 132px) !important;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}
.page-banner .banner-caption {
    width: 100%;
    position: absolute;
    bottom: 0;
    left: 0;
    padding-bottom: 50px;
    background: -moz-linear-gradient(top,rgba(0,0,0,.001) 0%,rgba(0,0,0,.65) 50%,rgba(0,0,0,.8) 100%);
    background: -webkit-linear-gradient(top,rgba(0,0,0,.001) 0%,rgba(0,0,0,.65) 50%,rgba(0,0,0,.8) 100%);
    background: linear-gradient(to bottom,rgba(0,0,0,.001) 0%,rgba(0,0,0,.65) 50%,rgba(0,0,0,.8) 100%);
}
.page-banner .banner-caption .banner-stars{
    margin-bottom: 10px;
    text-align: center;
}
.page-banner .banner-caption .banner-stars span.material-symbols-rounded{
    color: #ffe138;
    font-weight: 400;
    text-shadow: 1px 1px 2px #000;
    display: inline-block;
}
.page-banner .banner-caption .banner-title{
    font-size: 53px;
    font-weight: 500;
    color: #fff;
    text-shadow: 1px 1px 2px #000;
    text-transform: uppercase;
    text-align: center;
}
.page-banner .banner-caption .banner-text{
    font-size: 28px;
    font-weight: 400;
    color: #fff;
    text-shadow: 1px 1px 2px #000;
    text-align: center;
}
.page-banner .banner-caption .banner-url{
    display: inline-block;
    width: 50px;
    height: 50px;
    line-height: 50px;
    border: 2px solid #fff;
    border-radius: 50%;
    color: #fff;
    font-size: 20px;
    text-transform: uppercase;
    margin-top: 20px;
    background-color: rgba(255,255,255, 0.1);
    animation: bounce 2s infinite;
}
.page-banner .banner-caption .banner-url:hover{
    background-color: #a67c00;
    border: 2px solid #a67c00;
}

.page-banner .banner-caption .banner-main-features{
    margin-top: 30px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    grid-template-rows: auto;
    grid-column-gap: 15px;
    grid-row-gap: 15px;
}
.page-banner .banner-caption .banner-main-features .mf-item{
    display: flex;
    align-items: center;
}
.page-banner .banner-caption .banner-main-features .mf-item .mf-icon{
    width: 30px;
    height: 30px;
    color: #fff;
    margin-right: 10px;
    position: relative;
    text-shadow: 1px 1px 2px #000;
}
.page-banner .banner-caption .banner-main-features .mf-item .mf-title{
    font-size: 18px;
    font-weight: 400;
    color: #fff;
    text-shadow: 1px 1px 2px #000;
    font-family: var(--font-second);
}
.page-banner .banner-caption .banner-main-features .mf-item .mf-icon:before{
    font-family: "Material Symbols Rounded";
    font-size: 30px;
    width: 30px;
    height: 30px;
    line-height: 30px;
    position: absolute;
    top: 0;
    left:0;
}
.page-banner .banner-caption .banner-main-features .mf-item .mf-icon.icon-square-meter:before{
    content: '\e85b';
}
.page-banner .banner-caption .banner-main-features .mf-item .mf-icon.icon-persons:before{
    content: '\e7fd';
}
.page-banner .banner-caption .banner-main-features .mf-item .mf-icon.icon-pool:before{
    content: '\eb48';
}
.page-banner .banner-caption .banner-main-features .mf-item .mf-icon.icon-bedroom:before{
    content: '\efdf';
}
@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

@media (max-width: 768px) {
    .page-banner .banner-caption {
        padding-bottom: 50px;
    }
    .page-banner .banner-caption .banner-title{
        font-size: 40px;
        line-height: 1.2;
    }
    .page-banner .banner-caption .banner-text{
        font-size: 20px;
        line-height: 1.2;
    }
    .page-banner .banner-caption .banner-main-features{
        grid-template-columns: 1fr 1fr;
    }
    .page-banner .banner-caption .banner-main-features .mf-item .mf-title{
        font-size: 16px;
    }
}

@media (max-width: 568px) {
    .page-banner{
        height: calc(100vh - 275px) !important;
    }
    .page-banner .banner-item{
        height: calc(100vh - 275px) !important;
    }
    .page-banner .banner-caption .banner-main-features{
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 1080px) and (orientation:landscape) {
    .page-banner{
        height: 600px !important;
    }
    .page-banner .banner-item{
        height: 600px !important;
    }
}

.title-bar{
    position: relative;
    min-height: 200px;
    width: 100%;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}
.title-bar .page-title{
    padding: 250px 0 50px;
    font-size: 40px;
    font-weight: 400;
    color: #fff;
    text-shadow: 1px 1px 2px #000;
    background: -moz-linear-gradient(top,rgba(0,0,0,0) 0%,rgba(0,0,0,.001) 30%,rgba(0,0,0,.6) 100%);
    background: -webkit-linear-gradient(top,rgba(0,0,0,0) 0%,rgba(0,0,0,.001) 30%,rgba(0,0,0,.6) 100%);
    background: linear-gradient(to bottom,rgba(0,0,0,0) 0%,rgba(0,0,0,0.001) 30%,rgba(0,0,0,.6) 100%);
}
@media (max-width: 768px) {
    .title-bar .page-title{
        padding: 150px 0 50px;
        font-size: 28px;
    }
}

.intro-text{
    font-family: var(--font-second);
    font-size: 17px;
    font-weight: 400;
    line-height: 1.4;
    text-align: justify;
}
.intro-text .intro-quote{
    font-family: var(--font);
    font-size: 30px;
    font-weight: 700;
    float: right;
    display: inline-block;
    padding: 20px 40px;
    width: 30%;
    color: #707070;
    text-align: left;
}

.call-to-action{
    display: grid;
    grid-template-columns: 2fr 1fr;
    grid-template-rows: auto;
    grid-column-gap: 15px;
    grid-row-gap: 20px;
    align-items: center;
}
.call-to-action .text{
    font-size: 30px;
    color: #fff;
}

@media (max-width: 768px) {
    .intro-text{
        padding: 0 20px;
        text-align: left;
        font-size: 16px;
    }
    .intro-text .intro-quote{
        font-family: var(--font);
        font-size: 30px;
        font-weight: 700;
        float: right;
        display: inline-block;
        padding: 0 0 20px 0;
        width: 100%;
    }
    .call-to-action{
        grid-template-columns: 1fr;
    }
    .call-to-action .text{
        text-align: center;
        font-size: 26px;
    }
}

.section-title{
    font-size: 36px;
    font-weight: 400;
    text-align: center;
    margin-bottom: 30px;
}
@media (max-width: 768px) {
    .section-title{
        font-size: 26px;
        text-align: center;
    }
}

/* Villa Details Page */
.details-segment{
    border-bottom: 1px solid #dedede;
    display: grid;
    grid-template-columns: 1fr 4fr;
    grid-template-rows: auto;
    grid-column-gap: 15px;
    grid-row-gap: 15px;
    padding: 15px 0;
    font-family: var(--font-second);
}
.details-segment:last-child{
    border-bottom: none;
}
.details-segment .segment-title{
    font-size: 18px;
    font-weight: 500;
}
.details-segment .segment-data{
    font-size: 16px;
    font-weight: 400;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: auto;
    grid-column-gap: 15px;
    grid-row-gap: 15px;
}
.details-segment .segment-data div{
    padding-left: 26px;
    position: relative;
}
.details-segment .segment-data div:before{
    content: '\e5ca';
    font-family: "Material Symbols Rounded";
    font-size: 22px;
    width: 26px;
    height: 22px;
    line-height: 22px;
    position: absolute;
    top: 0;
    left: 0;
    color: var(--blue);
}

.gallery-segment{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: auto;
}
.gallery-segment .gallery-item{
    overflow: hidden;
    background-color: #000;
    position: relative;
}
.gallery-segment .gallery-item img{
    transition: all .2s;
    opacity: 0.95;
    filter: grayscale(15%);
}
.gallery-segment .gallery-item:hover img{
    transform: scale(1.1);
    filter: grayscale(0%);
    opacity: 1;
}
.gallery-segment .gallery-item .item-overlay{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgb(162, 111, 3);
    opacity: 0% !important;
    transition: all .2s;
}
.gallery-segment .gallery-item:hover .item-overlay{
    opacity: 0% !important;
}
.gallery-segment .gallery-item .item-desc{
    position: absolute;
    width: 100%;
    bottom: 15px;
    text-align: left;
    font-size: 28px;
    font-weight: 500;
    color: #fff;
    padding: 0 15px;
    text-shadow: 1px 1px 2px #000;
}

@media (max-width: 768px) {
    .gallery-segment .gallery-item img{
        transition: all .0s;
        opacity: 0.7;
        filter: grayscale(30%);
    }
    .gallery-segment .gallery-item:hover img{
        transform: none;
        filter: grayscale(0%);
        opacity: 1;
    }
    .gallery-segment .gallery-item .item-desc{
        font-size: 18px;
    }
}

.info-segment{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    grid-template-rows: auto;
}
.info-segment .info-item{
    overflow: hidden;
    background-color: #000;
    position: relative;
}
.info-segment .info-item img{
    transition: all .2s;
    opacity: 0.95;
    filter: grayscale(15%);
}
.info-segment .info-item:hover img{
    transform: scale(1.1);
    filter: grayscale(0%);
    opacity: 1;
}
.info-segment .info-item .item-overlay{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgb(162, 111, 3);
    opacity: 0% !important;
    transition: all .2s;
}
.info-segment .info-item:hover .item-overlay{
    opacity: 0% !important;
}
.info-segment .info-item .item-desc{
    position: absolute;
    width: 100%;
    bottom: 15px;
    text-align: left;
    font-size: 24px;
    font-weight: 500;
    color: #fff;
    padding: 0 15px;
    text-shadow: 1px 1px 2px #000;
}
@media (max-width: 1199px) {
    .info-segment{
        grid-template-columns: 1fr 1fr;
    }
}
@media (max-width: 768px) {
    .info-segment{
        grid-template-columns: 1fr 1fr;
    }
    .info-segment .info-item img{
        transition: all .0s;
        opacity: 0.7;
        filter: grayscale(30%);
    }
    .info-segment .info-item:hover img{
        transform: none;
        filter: grayscale(0%);
        opacity: 1;
    }
    .info-segment .info-item .item-desc{
        font-size: 18px;
    }
}

.villa-text{
    font-family: var(--font-second);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.4;
    text-align: justify;
}
.plugin-grid-2{
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
    grid-column-gap: 20px;
    align-items: center;
    margin: 50px 0;
}

@media (max-width: 991px) {
    .plugin-grid-2{
        display: grid;
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        grid-row-gap: 20px;
        align-items: center;
        margin: 50px 0;
    }
    .plugin-grid-2 .plugin-text{
        grid-column: 1/2;
        grid-row: 1/2;
    }
    .plugin-grid-2 .plugin-image{
        grid-column: 1/2;
        grid-row: 2/3;
    }
}

.villa-text h1, .villa-text h2, .villa-text h3, .villa-text h4, .villa-text h5, .villa-text h6{
    font-family: var(--font);
    font-weight: 700;
}
.villa-text h1{ font-size: 32px; }
.villa-text h2{ font-size: 30px; }
.villa-text h3{ font-size: 28px; }
.villa-text h4{ font-size: 24px; }
.villa-text h5{ font-size: 20px; }
.villa-text h6{ font-size: 18px; }

.villa-text .intro-quote{
    font-family: var(--font);
    font-size: 30px;
    font-weight: 700;
    float: left;
    display: inline-block;
    padding: 0 40px 30px 0;
    width: 30%;
    color: #707070;
    text-align: left;
}
.villa-text p img{
    float: right;
	margin: 30px 0 30px 30px;
	width: 400px;
	border-radius: 4px;
}

.villa-main-features{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    grid-template-rows: auto;
    grid-column-gap: 15px;
    grid-row-gap: 25px;
}
.villa-main-features .mf-item{
    align-items: center;
    text-align: center;
}
.villa-main-features .mf-item .mf-title{
    font-size: 18px;
    font-weight: 400;
    color: #fff;
    font-family: var(--font);
}
.villa-main-features .mf-item .mf-icon{
    height: 50px;
    color: #fff;
    margin-right: 10px;
    position: relative;
}
.villa-main-features .mf-item .mf-icon:before{
    font-family: "Material Symbols Rounded";
    font-size: 50px;
    width: 50px;
    height: 50px;
    line-height: 50px;
    position: absolute;
    top: 0;
    left: calc(50% - 20px);
}
.villa-main-features .mf-item .mf-icon.icon-square-meter:before{
    content: '\e85b';
}
.villa-main-features .mf-item .mf-icon.icon-persons:before{
    content: '\e7fd';
}
.villa-main-features .mf-item .mf-icon.icon-pool:before{
    content: '\eb48';
}
.villa-main-features .mf-item .mf-icon.icon-bedroom:before{
    content: '\efdf';
}

@media (max-width: 991px) {
    .details-segment .segment-data{
        grid-template-columns: 1fr 1fr;
    }
    .gallery-segment{
        grid-template-columns: 1fr 1fr;
    }
}
@media (max-width: 768px) {
    .details-segment{
        grid-template-columns: 1fr;
    }
    .details-segment .segment-data{
        font-size: 13px;
    }
    .details-segment .segment-data div{
        padding-left: 20px;
    }
    .details-segment .segment-data div:before{
        font-size: 18px;
        width: 20px;
        height: 18px;
        line-height: 18px;
    }

    .villa-text{
        font-family: var(--font-second);
        font-size: 16px;
        text-align: left;
        padding: 0 0;
    }
    .villa-text .intro-quote{
        font-size: 30px;
        width: 100%;
        padding: 0 0 20px 0;
    }
	.villa-text p img{
    	float:right;
    	margin: 10px 0 25px;
    	width: 100%;
	}

    .villa-main-features{
        grid-template-columns: 1fr 1fr;
    }
    .villa-main-features .mf-item .mf-title{
        font-size: 16px;
    }
}

/* Contact page */
.section-contact{
    margin: 30px 0 40px 0;
}
.contact{
    overflow: hidden;
    border-radius: 8px;
    background-color: #fff;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
}
.contact .con-1, .contact .con-2{
    padding: 30px;
}
.contact .con-1{
    border-right: 1px solid var(--light-gray);
}
.contact .con-1 .buttons{
    margin: 30px 0 20px 0;
}
.contact-info-block{
    padding: 15px;
    border: 1px solid #ddd;
}
.contact-company{
    text-align: center;
    font-size: 28px;
    margin-bottom: 15px;
}
.contact-info{
    font-family: var(--font-second);
    text-align: center;
    font-size: 20px;
    margin-bottom: 5px;
}

@media (max-width: 768px) {
    .section-contact{
        margin: 0px 0 30px 0;
    }
    .contact{
        grid-template-columns: 1fr;
    }
    .contact .con-1, .contact .con-2{
        padding: 15px;
    }
    .contact .con-1{
        border-right: none;
        border-bottom: 1px solid var(--light-gray);
    }
    .contact-company{
        font-size: 22px;
    }
    .contact-info{
        font-size: 16px;
    }
}

.list-item{
    font-size: 15px;
    font-weight: 600;
    padding: 3px 0;
    border-bottom: 1px solid var(--light-gray);
}
.list-item:last-child{
    border-bottom: none;
}
.list-item span{
    display: inline-block;
    width: 80px;
    font-size: 14px;
    font-weight: 400;
}

/* Info page */
.info{
    background: #fff;
    padding: 30px;
    overflow: hidden;
    position: relative;
    border-radius: 8px;
    margin-bottom: 30px 0 40px 0;
    font-size: 15px;
}
.info img{
    width: auto;
    height: auto;
}
@media (max-width: 768px) {
    .info{
        background: #fff;
        padding: 15px;
        margin-bottom: 0 0 30px 0;
    }
}

/* Page Cover Title */
.page-cover{
    position: relative;
    width: 100%;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}
.page-cover .caption{
    width: 100%;
    position: absolute;
    top: calc(50% - 100px);
    left: 0;
    text-align: center;
}
.page-cover .caption .title{
    font-size: 60px;
    font-weight: 700;
    color: #fff;
    text-shadow: 1px 1px 2px #000;
    text-transform: uppercase;
}
.page-cover .caption .address{
    font-size: 40px;
    font-weight: 700;
    color: #fff;
    text-shadow: 1px 1px 2px #000;
    text-transform: uppercase;
}
.page-cover .caption .scroll-down{
    display: inline-block;
    width: 50px;
    height: 50px;
    line-height: 50px;
    border: 2px solid #fff;
    border-radius: 50%;
    color: #fff;
    font-size: 20px;
    text-transform: uppercase;
    margin-top: 20px;
    background-color: rgba(255,255,255, 0.1);
    animation: bounce 2s infinite;
    cursor: pointer;
}
.page-cover .caption .scroll-down:hover{
    background-color: #a67c00;
    border: 2px solid #a67c00;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

@media (max-width: 768px) {
    .page-cover .caption{
        top: calc(50% - 60px);
    }
    .page-cover .caption .title{
        font-size: 40px;
        line-height: 1.2;
    }
    .page-cover .caption .address{
        font-size: 20px;
        line-height: 1.2;
    }
}

.prices-heading{
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding: 10px 0;
    border-top: 1px solid #dedede;
    border-bottom: 1px solid #dedede;
    font-size: 16px;
    font-weight: 600;
    font-family: var(--font-second);
}
.prices-global-note{
    font-size: 17px;
    font-weight: 400;
    font-family: var(--font-second);
    margin-bottom: 20px;
}
.prices-table{
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
    padding: 10px 0 10px;
    border-bottom: 1px dotted #dedede;
    font-size: 17px;
    font-weight: 400;
    font-family: var(--font-second);
    align-items: center;
}
.prices-table .row2{
    text-align: right;
    font-weight: 500;
}
@media (max-width: 768px) {
    .prices-heading{
        display: none;
    }
    .prices-table{
        grid-row-gap: 5px;
        font-size: 15px;
    }
}

/* Footer */
footer{
    position: relative;
    padding: 50px 0 0 0;
    box-shadow: 0 0 5px 0 var(--shadow);
    background-color: #0a1821;
    background: -moz-linear-gradient(top,  rgba(10,24,33,1) 0%, rgba(10,24,33,1) 50%, rgba(0,17,28,1) 100%);
    background: -webkit-linear-gradient(top,  rgba(10,24,33,1) 0%,rgba(10,24,33,1) 50%,rgba(0,17,28,1) 100%);
    background: linear-gradient(to bottom,  rgba(10,24,33,1) 0%,rgba(10,24,33,1) 50%,rgba(0,17,28,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#0a1821', endColorstr='#00111c',GradientType=0 );
}
footer .footer-logo{
    text-align: center;
    margin-top: 40px;
}
footer .footer-logo img{
    width: 300px;
}
footer .footer-contact ul{
    text-align: center;
    padding-left: 0;
    margin: 20px 0 0 0;
}
footer .footer-contact ul li{
    display: inline-block;
    padding: 10px 15px;
    font-weight: 600;
    font-size: 18px;
}
footer .footer-contact ul li a{
    color: var(--white);
}
footer .footer-contact ul li a:hover{
    color: var(--blue);
}

footer .footer-menu ul{
    text-align: center;
    padding-left: 0;
    margin: 20px 0 0 0;
}
footer .footer-menu ul li{
    display: inline-block;
    padding: 0 10px 10px 0;
    font-weight: 600;
    font-size: 14px;
}
footer .footer-menu ul li a{
    color: var(--white);
}
footer .footer-menu ul li a:hover{
    color: var(--blue);
}
footer .powered-by{
    padding: 20px 0 20px 0;
    text-align: center;
}
footer .powered-by div{
    margin-top: 10px;
    color: var(--white);
    font-size: 12px;
}

.back-to-top{
    display: block;
    position: absolute;
    top: -30px;
    left: calc(50% - 30px);
    width: 60px;
    height: 60px;
    -webkit-box-shadow: 0 0 0 5px #f1f1f1;
    box-shadow: 0 0 0 5px #f1f1f1;
    background-color: #ffffff;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.4s;
}
.back-to-top:hover{
    background-color: var(--blue);
}
.back-to-top:after{
    content: "\e5ce";
    display: block;
    font-family: "Material Symbols Rounded";
    width: 60px;
    height: 60px;
    line-height: 60px;
    text-align: center;
    font-size: 38px;
    font-weight: 400;
    color: var(--blue);
}
.back-to-top:hover:after{
    color: var(--white);
}

/* Cookies */
.cookie-notice{
    z-index: 99;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 15px;
    transition: all 1s;
    display: flex;
    justify-content: center;
}

.cookie-notice .cn-inner{
    position: relative;
    display: grid;
    grid-template-columns: 1fr 60px;
    grid-template-rows: auto;
    grid-column-gap: 14px;
    grid-row-gap: 10px;
    background-color: var(--white);
    -webkit-box-shadow: 0 0 20px 0 rgba(0,0,0,.2);
    box-shadow: 0 0 20px 0 rgba(0,0,0,.2);
    border-radius: 8px;
    padding: 15px;
    width: 700px;
}
.cookie-notice .cn-inner .cn-text{
    font-size: 12px;
    font-weight: 400;
    font-family: var(--font-third);
}
@media (max-width: 768px) {
    .cookie-notice .cn-inner{
        grid-template-columns: 1fr
    }
}

@media (max-width: 576px) {
    .hide-576{
        display: none;
    }
    .mobile-hpn{
        padding-left: 0;
        padding-right: 0;
    }
    .apartment-main{
        border-radius: 0;
        margin-top: 0;
    }
    .apartment-main .apartment-images{
        padding: 0;
        border-right: none;
    }
    .apartment-main .apartment-images .apartment-gallery .apartment-image img{
        border-radius: 0;
    }
}

.gc-comments{
    padding-bottom: 70px;
}
.gc-comments .slick-dots {
    position: absolute;
    bottom: 60px;
    display: block;
    width: 100%;
    padding: 0;
    margin: 0;
    list-style: none;
    text-align: center;
}
.gc-comments .slick-dots li.slick-active button:before {
    opacity: 1;
    background-color: #055989;
}
.gc-item{
    text-align: center;
}
.gc-avatar{
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
}
.gc-avatar img{
    width: 32px;
    height: 32px;
}
.gc-avatar .gc-letter{
    width: 32px;
    height: 32px;
    color: #fff;
    background-color: #055989;
    font-size: 20px;
    text-align: center;
    line-height: 32px;
    border-radius: 50%;
}
.gc-user{
    text-align: center;
    font-size: 18px;
    color: #333;
    margin-bottom: 10px;
}
.gc-stars{
    text-align: center;
    font-size: 18px;
    color: #e37400;
    margin-bottom: 10px;
}
.gc-comment{
    font-family: var(--font-second);
    text-align: center;
    font-size: 15px;
    color: #333;
    margin-bottom: 10px;
}

.offcanvas-bottom {
    right: 0;
    left: 0;
    height: auto;
    max-height: 100%;
    border-top: none;
    transform: translateY(100%);
    -webkit-box-shadow: 0 0 20px 0 rgba(0,0,0,.3);
    box-shadow: 0 0 20px 0 rgba(0,0,0,.3);
    background: #fff;
}
.offcanvas-bottom .offcanvas-body{
    padding: 30px;
}
.offcanvas .offcanvas-header.offcanvas-header-border{
    border-bottom: 1px solid #eee;
}
.offcanvas.height-50{
    max-height: 54%;
}

.offcanvas .product-item{
    -webkit-box-shadow: 0 0 0 1px #eee;
    box-shadow: 0 0 0 1px #eee;
}

.field{
    margin-bottom: 15px;
    color: var(--dark-gray);
}
.field.transparent{
    color: var(--white);
}
.field .field-label{
    color: inherit;
}
.field.transparent .field-label{
    color: inherit;
}
input.input-field{
    font-family: var(--font-third);
    font-size: 16px;
    width: 100%;
    border: 1px solid #ddd;
    padding: 10px 15px;
    border-radius: 0px;
    outline-color: var(--blue);
}
textarea.input-field{
    font-family: var(--font-third);
    font-size: 16px;
    width: 100%;
    min-width: 100%;
    max-width: 100%;
    max-height: 500px;
    border: 1px solid #ddd;
    padding: 10px;
    border-radius: 0px;
    outline-color: var(--blue);
}
.field.transparent input.input-field{
    font-size: 18px;
    font-weight: 700;
    border: 1px solid rgba(255,255,255, 0);
    border-radius: 0px;
    outline-color: var(--blue);
    background-color: rgba(255,255,255, 0.6);
}
.field.transparent input.input-field:-webkit-autofill,
.field.transparent input.input-field:-webkit-autofill:hover,
.field.transparent input.input-field:-webkit-autofill:focus,
.field.transparent input.input-field:-webkit-autofill:active{
    -webkit-box-shadow: 0 0 0 30px rgba(255,255,255, 0.5) inset !important;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
input[type=number] {
    -moz-appearance: textfield;
}

.checkbox-field input{
    display: none;
}
.checkbox-field label{
    font-family: var(--font-third);
    background: #fff;
    padding: 10px 10px 10px 50px;
    border-radius: 0px;
    margin-bottom: 10px;
    display: block;
    transition: all 0.4s;
    cursor: pointer;
    position: relative;
    -webkit-box-shadow:inset 0 0 0 1px #ddd;
    box-shadow:inset 0 0 0 1px #ddd;
}
.checkbox-field label:after{
    content: '\e835';
    font-family: "Material Symbols Rounded";
    position: absolute;
    width: 28px;
    height: 28px;
    line-height: 28px;
    font-size: 28px;
    font-weight: 200;
    text-align: center;
    color: #ddd;
    top: calc(50% - 14px);
    left: 10px;
}
.checkbox-field label .label-inner{
    display: flex;
    align-items: center;
}

.checkbox-field label .label-inner .info{
    flex-shrink: 1;
    justify-content: center;
}
.checkbox-field label .name, .checkbox-field label .price{
    transition: 0.4s;
    font-weight: 400;
    font-size: 15px;
}
.checkbox-field label .price{
    font-size: 15px;
}

.checkbox-field input:checked + label .name, .checkbox-field input:checked + label .price{
    color: var(--blue);
    font-weight: 600;
}
.checkbox-field input:checked + label:after{
    content: '\e834';
    font-family: "Material Symbols Rounded";
    color: var(--blue);
}
/*---Radio---*/
.radio-field input{
    display: none;
}
.radio-field label{
    background: #fff;
    padding: 0;
    border-radius: 0px;
    margin-bottom: 10px;
    display: block;
    transition: all 0.4s;
    cursor: pointer;
    -webkit-box-shadow:inset 0 0 0 1px #ddd;
    box-shadow:inset 0 0 0 1px #ddd;
    overflow: hidden;
}
.radio-field label .field-info{
    padding: 10px 10px 10px 50px;
    border-bottom: 1px solid #ddd;
    position: relative;
}
.radio-field label .field-info:after{
    content: '\e836';
    font-family: "Material Symbols Rounded";
    position: absolute;
    width: 28px;
    height: 28px;
    line-height: 28px;
    font-size: 28px;
    font-weight: 200;
    text-align: center;
    color: #ddd;
    top: calc(50% - 14px);
    left: 10px;
}
.radio-field label .name, .radio-field label .price{
    transition: 0.4s;
    font-weight: 600;
    font-size: 15px;
}
.radio-field label .price{
    font-size: 15px;
    font-weight: 700;
}
.radio-field input:checked + label{
    -webkit-box-shadow:inset 0 0 0 1px var(--blue);
    box-shadow:inset 0 0 0 1px var(--blue);
}
.radio-field input:checked + label .name{
    color: var(--blue);
    font-weight: 600;
}
.radio-field input:checked + label .price{
    color: var(--blue);
    font-weight: 700;
}
.radio-field input:checked + label .field-info:after{
    content: '\e86c';
    font-family: "Material Symbols Rounded";
    color: var(--blue);
}
.radio-field label .description{
    padding: 15px;
    display: none;
    transition: all 0.3s;
}
.radio-field label .description p:last-child{
    margin-bottom: 0;
}
.radio-field input:checked + label .description{
    display: block;
}
/*---*/
.dropdown-radio input{
    display: none;
}
.dropdown-radio label{
    background: #fff;
    padding: 5px 10px 5px 35px;
    display: block;
    transition: all 0.4s;
    cursor: pointer;
    position: relative;
    font-weight: 600;
    font-size: 13px;
}
.dropdown-radio label:after{
    content: '\e836';
    font-family: "Material Symbols Rounded";
    position: absolute;
    width: 20px;
    height: 20px;
    line-height: 20px;
    font-size: 20px;
    font-weight: 200;
    text-align: center;
    color: #ddd;
    top: calc(50% - 11px);
    left: 10px;
}
.dropdown-radio input:checked + label{
    color: var(--blue);
}
.dropdown-radio input:checked + label:after{
    content: '\e86c';
    font-family: "Material Symbols Rounded";
    color: var(--blue);
}


.btn {
    background-color: #0a1821;
    border: 1px solid #0a1821;
    color: #fff;
    display: inline-block;
    padding: 10px 15px;
    text-align: center;
    font-size: 16px;
    font-weight: 200;
    border-radius: 4px;
    text-decoration: none;
    vertical-align: middle;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    transition: all 0.4s;
}

@media (prefers-reduced-motion: reduce) {
    .btn {
        transition: none
    }
}
.btn:hover {
    background-color: var(--blue);
    border: 1px solid var(--blue);
    color: var(--white);
}
.btn.disabled, .btn:disabled {
    pointer-events: none;
    opacity: .65
}
.quick-add.disabled{
    pointer-events: none;
    opacity: .65
}
.btn-so-green{
    background-color: var(--blue);
    border: 1px solid var(--blue);
    color: var(--white);
}
.btn-so-green:hover{
    background-color: var(--blue-dark);
    border: 1px solid var(--blue-dark);
    color: var(--white);
}
.btn-black-transparent{
    background-color: rgba(0,0,0,0.3);
    border: 1px solid rgba(0,0,0,0);
    color: var(--white);
}
.btn-black-transparent:hover{
    background-color: rgba(0,0,0,0.5);
    border: 1px solid rgba(0,0,0,0);
    color: var(--white);
}
.btn-light{
    background-color: #eee;
    border: 1px solid #eee;
    color: var(--gray);
}
.btn-light:hover{
    background-color: var(--blue);
    border: 1px solid var(--blue);
    color: var(--white);
}
.btn-outline {
    background-color: transparent;
    border: 1px solid #0a1821;
    color: #0a1821;
}
.btn-outline:hover {
    background-color: transparent;
    border: 1px solid var(--blue);
    color: var(--blue);
}
.btn-block{
    display: block;
}
button.btn-block{
    width: 100%;
}
.btn-sm{
    padding: 5px 12px;
    font-size: 14px;
}
.btn-lg{
    padding: 15px 20px;
    font-size: 18px;
}
.btn:focus{
    outline: 0;
}
.btn.btn-dropdown{
    background-color: #fff;
    border: 1px solid #fff;
    color: var(--dark-gray);
    display: inline-block;
    padding: 5px 10px;
    text-align: center;
    font-size: 14px;
    font-weight: 600;
    border-radius: 4px;
    text-decoration: none;
    vertical-align: middle;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    transition: all 0.4s;
    margin-right: 15px;
}
.custom-dropdown-menu{
    border: none;
    border-radius: 6px;
    -webkit-box-shadow: 0 0 5px 0 var(--shadow);
    box-shadow: 0 0 5px 0 var(--shadow);
}

/* Collapses */
.collapse-item {
    border: 1px solid var(--white);
    border-radius: 8px;
    overflow: hidden;
    background-color: var(--white);
    margin-bottom: 15px;
}
.collapse-item:last-child{
    margin-bottom: 0;
}
.collapse-item .title{
    display: block;
    position: relative;
    padding: 15px 50px 15px 15px;
    font-size: 18px;
    font-weight: 600;
    color: var(--dark-gray);
    transition: all 0.4s;
}
.collapse-item .title:after{
    content: "\e145";
    font-family: "Material Symbols Rounded";
    font-size: 24px;
    position: absolute;
    top: calc(50% - 15px);
    right: 10px;
    width: 30px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    transition: all 0.2s;
}
.collapse-item .title.open:after{
    transform: rotate(135deg);
}
.collapse-item .title.open{
    color: var(--blue);
}
.collapse-item .content{
    padding: 15px 15px 15px 15px;
    border-top: 1px solid #eee;
}
.offcanvas-header{
    border-bottom: 1px solid #ddd;
}
.offcanvas-start{
    width: 330px;
}
.loader{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    z-index: 999999;
}

/* Globals */
.or-divider{
    position: relative;
    width: 100%;
    height: 1px;
    background-color: #ddd;
    margin: 35px 0;
}
.or-divider:after{
    content: "ILI";
    font-weight: 700;
    position: absolute;
    top: -20px;
    left: calc(50% - 20.5px);
    width: 41px;
    height: 41px;
    line-height: 41px;
    text-align: center;
    color: var(--gray);
    background-color: var(--white);
    border-radius: 50%;
    border: 1px solid #ddd;
}
.payment-card-logos{
    text-align: center;
}
.payment-card-logos img{
    width: 300px;
}
hr{ width: 100%; height: 1px; background-color: #f1f1f1; margin: 15px 0; border: none; opacity: 1}
.border-bottom{border-bottom: 1px solid #ddd !important;}
.float-right{float: right;}
.float-left{float: left;}
.text-center{ text-align: center}
.text-right{ text-align: right}
.text-left{ text-align: left}
.text-justify{ text-align: justify}
.bg-light-gray{background-color: #f1f1f1;}
.bg-blue{background-color: #0093d3;}
.bg-blue-gradient{
    background: #0093d3;
    background: -moz-linear-gradient(top, #055989 0%, #0093d3 50%);
    background: -webkit-linear-gradient(top, #055989 0%, #0093d3 50%);
    background: linear-gradient(to bottom, #055989 0%, #0093d3 50%);
}
.bg-dark-blue{background-color: #055989;}
.color-white{ color: #fff;}
.fw200{ font-weight: 200 !important;}
.fw300{ font-weight: 300 !important;}
.fw400{ font-weight: 400 !important;}
.fw500{ font-weight: 600 !important;}
.fw600{ font-weight: 600 !important;}
.fw700{ font-weight: 700 !important;}
.fs10{ font-size: 10px !important;}
.fs11{ font-size: 11px !important;}
.fs12{ font-size: 12px !important;}
.fs13{ font-size: 13px !important;}
.fs14{ font-size: 14px !important;}
.fs15{ font-size: 15px !important;}
.fs16{ font-size: 16px !important;}
.fs17{ font-size: 17px !important;}
.fs18{ font-size: 18px !important;}
.fs19{ font-size: 19px !important;}
.fs20{ font-size: 20px !important;}
.fs21{ font-size: 21px !important;}
.fs22{ font-size: 22px !important;}
.fs23{ font-size: 23px !important;}
.fs24{ font-size: 24px !important;}
.fs25{ font-size: 25px !important;}
.fs26{ font-size: 26px !important;}
.fs27{ font-size: 27px !important;}
.fs28{ font-size: 28px !important;}
.fs29{ font-size: 29px !important;}
.fs30{ font-size: 30px !important;}
.fs40{ font-size: 40px !important;}
.fs50{ font-size: 50px !important;}
.fs60{ font-size: 60px !important;}
.pn {padding: 0 !important;}
.p1 {padding: 1px !important;}
.p2 {padding: 2px !important;}
.p3 {padding: 3px !important;}
.p4 {padding: 4px !important;}
.p5 {padding: 5px !important;}
.p6 {padding: 6px !important;}
.p7 {padding: 7px !important;}
.p8 {padding: 8px !important;}
.p10 {padding: 10px !important;}
.p12 {padding: 12px !important;}
.p15 {padding: 15px !important;}
.p20 {padding: 20px !important;}
.p25 {padding: 25px !important;}
.p30 {padding: 30px !important;}
.p35 {padding: 35px !important;}
.p40 {padding: 40px !important;}
.p50 {padding: 50px !important;}
.ptn {padding-top: 0 !important;}
.pt5 {padding-top: 5px !important;}
.pt7 {padding-top: 7px !important;}
.pt10 {padding-top: 10px !important;}
.pt15 {padding-top: 15px !important;}
.pt20 {padding-top: 20px !important;}
.pt25 {padding-top: 25px !important;}
.pt30 {padding-top: 30px !important;}
.pt35 {padding-top: 35px !important;}
.pt40 {padding-top: 40px !important;}
.pt50 {padding-top: 50px !important;}
.prn {padding-right: 0 !important;}
.pr5 {padding-right: 5px !important;}
.pr10 {padding-right: 10px !important;}
.pr15 {padding-right: 15px !important;}
.pr20 {padding-right: 20px !important;}
.pr25 {padding-right: 25px !important;}
.pr30 {padding-right: 30px !important;}
.pr35 {padding-right: 35px !important;}
.pr40 {padding-right: 40px !important;}
.pr50 {padding-right: 50px !important;}
.pbn {padding-bottom: 0 !important;}
.pb5 {padding-bottom: 5px !important;}
.pb7 {padding-bottom: 7px !important;}
.pb10 {padding-bottom: 10px !important;}
.pb15 {padding-bottom: 15px !important;}
.pb20 {padding-bottom: 20px !important;}
.pb25 {padding-bottom: 25px !important;}
.pb30 {padding-bottom: 30px !important;}
.pb35 {padding-bottom: 35px !important;}
.pb40 {padding-bottom: 40px !important;}
.pb50 {padding-bottom: 50px !important;}
.pb60 {padding-bottom: 60px !important;}
.pb70 {padding-bottom: 70px !important;}
.pb80 {padding-bottom: 80px !important;}
.pb90 {padding-bottom: 90px !important;}
.pb100 {padding-bottom: 100px !important;}
.pln {padding-left: 0 !important;}
.pl5 {padding-left: 5px !important;}
.pl10 {padding-left: 10px !important;}
.pl15 {padding-left: 15px !important;}
.pl20 {padding-left: 20px !important;}
.pl25 {padding-left: 25px !important;}
.pl30 {padding-left: 30px !important;}
.pl35 {padding-left: 35px !important;}
.pl40 {padding-left: 40px !important;}
.pl50 {padding-left: 50px !important;}
.mn { margin: 0 !important; }
.mbn { margin-bottom: 0 !important; }
.mb5 {margin-bottom: 5px !important;}
.mb7 {margin-bottom: 7px !important;}
.mb10 {margin-bottom: 10px !important;}
.mb15 {margin-bottom: 15px !important;}
.mb20 {margin-bottom: 20px !important;}
.mb25 {margin-bottom: 25px !important;}
.mb30 {margin-bottom: 30px !important;}
.mb35 {margin-bottom: 35px !important;}
.mb40 {margin-bottom: 40px !important;}
.mb50 {margin-bottom: 50px !important;}
.mb60 {margin-bottom: 60px !important;}
.mb70 {margin-bottom: 70px !important;}
.mb80 {margin-bottom: 80px !important;}
.mb90 {margin-bottom: 90px !important;}
.mb100 {margin-bottom: 100px !important;}
.mtn { margin-top: 0 !important; }
.mt5 {margin-top: 5px !important;}
.mt7 {margin-top: 7px !important;}
.mt10 {margin-top: 10px !important;}
.mt15 {margin-top: 15px !important;}
.mt20 {margin-top: 20px !important;}
.mt25 {margin-top: 25px !important;}
.mt30 {margin-top: 30px !important;}
.mt35 {margin-top: 35px !important;}
.mt40 {margin-top: 40px !important;}
.mt50 {margin-top: 50px !important;}
.mt60 {margin-top: 60px !important;}
.mt70 {margin-top: 70px !important;}
.mt80 {margin-top: 80px !important;}
.mt90 {margin-top: 90px !important;}
.mt100 {margin-top: 100px !important;}
@media (max-width: 992px) {
    .mobile-hide{display: none !important;}
}
.grecaptcha-badge{
    z-index: -99999;
    display: none !important;
}
.alert{
    font-family: var(--font-third);
}

::-webkit-scrollbar {
    width: 7px;
}
::-webkit-scrollbar-track {
    background: #fff;
}
::-webkit-scrollbar-thumb {
    background: #0093d3;
    border-radius: 4px;
}