body {
    background: #ffffff;
    font-family: 'DM Sans', sans-serif;
    font-style: normal;
    font-weight: 400;
}

.container {
    max-width: 1030px;
}

/*---------------------------------------
    Typorgraphy
-----------------------------------------*/
h1, h2, h3, h4, h5, h6 {
    font-weight: normal;
}

h3, h5 {
    font-weight: normal;
}

h1 {
    font-size: 60px;
}

h2 {
    font-size: 56px;
    line-height: 82px;
}

h3 {
    line-height: 46px;
}

p {
    color: #304155;
    font-size: 21px;
    line-height: 25px;
    margin: 0;
}

a {
    text-decoration: none !important;
    outline: none;
}

.p100 {
    padding-top: 100px;
    padding-bottom: 80px;
}
/*---------------------------------------
    General
-----------------------------------------*/
footer {
    padding: 20px 0;
    background: rgba(175, 190, 185, 0.2);
}

footer a,
footer p {
    color: #304155;
}

footer .display-flex > a {
    width: 28px;
    height: 28px;
    line-height: 28px;
    display: flex;
    align-items: center;
    justify-content: space-around;
}

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

footer .copyright {
    font-size: 12px;
    line-height: 21px;
    padding-top: 110px;
    padding-left: 110px;
}

.parallax-section {
    background-attachment: fixed !important;
    background-size: cover !important;
}


/*---------------------------------------
    Preloader section
-----------------------------------------*/
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 99999;
    display: flex;
    flex-flow: row nowrap;
    justify-content: center;
    align-items: center;
    background: none repeat scroll 0 0 #ffffff;
}

.sk-rotating-plane {
    width: 50px;
    height: 50px;
    background-color: #222;
    -webkit-animation: sk-rotatePlane 1.2s infinite ease-in-out;
    animation: sk-rotatePlane 1.2s infinite ease-in-out;
}

@-webkit-keyframes sk-rotatePlane {
    0% {
        -webkit-transform: perspective(120px) rotateX(0deg) rotateY(0deg);
        transform: perspective(120px) rotateX(0deg) rotateY(0deg);
    }
    50% {
        -webkit-transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg);
        transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg);
    }
    100% {
        -webkit-transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg);
        transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg);
    }
}

@keyframes sk-rotatePlane {
    0% {
        -webkit-transform: perspective(120px) rotateX(0deg) rotateY(0deg);
        transform: perspective(120px) rotateX(0deg) rotateY(0deg);
    }
    50% {
        -webkit-transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg);
        transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg);
    }
    100% {
        -webkit-transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg);
        transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg);
    }
}


/*---------------------------------------
    Navigation Links section
-----------------------------------------*/
.custom-navbar {
    margin-bottom: 0;
    background: rgba(175, 190, 185, 0.2);
}

.custom-navbar .navbar-brand {
    color: #ffffff;
    font-weight: 600;
    font-size: 3rem;
    line-height: 40px;
}

.custom-navbar .nav.navbar-nav {
    display: flex;
    width: 100%;
    float: none;
    align-items: center;
    justify-content: space-between;
}

.custom-navbar .nav:before {
    display: none;
}

.custom-navbar .nav li a {
    font-family: 'Montserrat', sans-serif;
    color: #304155;
    font-size: 14px;
    font-weight: 500;
    line-height: 25px;
    transition: all 0.4s ease-in-out;
}

.custom-navbar .nav li a:hover {
    background: transparent;
    filter: brightness(1.2);
}

.custom-navbar .navbar-nav > li > a:hover,
.custom-navbar .navbar-nav > li > a:focus {
    background-color: transparent;
}

.custom-navbar .nav li.active > a {
    background-color: transparent;
    filter: brightness(1.5);
}

.custom-navbar .navbar-toggle {
    border: none;
    padding-top: 10px;
}

.custom-navbar .navbar-toggle {
    background-color: transparent;
}

.custom-navbar .navbar-toggle .icon-bar {
    background: #ffffff;
    border-color: transparent;
}

.invalid-feedback.alert.alert-danger {
    font-size: 12px;
    font-weight: normal;
    padding: 5px;
    width: 100%;
    display: inherit;
}

@media (min-width: 768px) {
    .custom-navbar {
        padding: 0;
        border-bottom: 0;
        background: rgba(175, 190, 185, 0.2);
        backdrop-filter: blur(9px);
    }

    .custom-navbar .navbar-nav > li > a {
        padding: 9px 0;
    }

    .custom-navbar.top-nav-collapse {
        background: rgba(175, 190, 185, 0.4);
        padding: 0;
    }

}


/*---------------------------------------
    Intro section
-----------------------------------------*/
#intro {
    height: calc(100vh + 100px);
    text-align: center;
    position: relative;
}

#intro .container {
    position: relative;
    z-index: 100;
    padding-top: 140px;
}

#intro .container h2 {
    color: #304155;
    text-align: left;
}

#intro span.separator {
    height: 48px;
    width: 1px;
    background: #304155;
    display: inline-block;
}

#intro span.working-hours {
    font-size: 36px;
    line-height: 48px;
    font-weight: 500;
    font-family: "DM Sans";
}

#intro p.intro-location {
    line-height: 48px;
    position: relative;
}

#intro p.intro-location img {
    position: absolute;
    left: -120px;
    top: 10px;
}

.display-flex.gap20 {
    gap: 20px;
}

.display-flex.flex-end {
    justify-content: flex-end;
}

.display-flex.even {
    flex-direction: row-reverse;
}

.display-flex.flex-column {
    flex-direction: column;
    justify-content: space-around;
}

.flipper {
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;
    -webkit-transition: all 1.0s linear;
    transition: all 1.0s linear;
    -webkit-perspective: 1000px;
    perspective: 1000px;
    width: 50%;
    text-align: left;
    height: 48px;
}

.front, .back {
    backface-visibility: hidden;
    -webkit-perspective: 0;
    -webkit-backface-visibility: hidden;
    -webkit-transform: translate3d(0,0,0);
    visibility:visible;
    position: absolute;
    width: 100%;
}

.front {
    -webkit-transform: rotateY(-180deg);
    transform: rotateY(-180deg);
    -webkit-animation: mymoveback 20s infinite;
    animation: mymoveback 10s infinite;
}

.back {
    -webkit-animation: mymove 10s infinite;
    animation: mymove 10s infinite;
}

/* Chrome, Safari, Opera */
@-webkit-keyframes mymove {
    40% {
        -webkit-transform: rotateY(0deg);
        transform: rotateY(0deg);
    }
    50% {
        -webkit-transform: rotateY(180deg);
        transform: rotateY(180deg);
    }
    90% {
        -webkit-transform: rotateY(180deg);
        transform: rotateY(180deg);
    }
    100% {
        -webkit-transform: rotateY(0deg);
        transform: rotateY(0deg);
    }
}

@-webkit-keyframes mymoveback {
    40% {
        -webkit-transform: rotateY(-180deg);
        transform: rotateY(-180deg);
    }
    50% {
        -webkit-transform: rotateY(0deg);
        transform: rotateY(0deg);
    }
    90% {
        -webkit-transform: rotateY(0deg);
        transform: rotateY(0deg);
    }
    100% {
        -webkit-transform: rotateY(-180deg);
        transform: rotateY(-180deg);
    }
}

@keyframes mymove {
    40% {
        transform: rotateY(0deg);
        -webkit-transform: rotateY(0deg);
    }
    50% {
        transform: rotateY(180deg);
        -webkit-transform: rotateY(180deg);
    }
    90% {
        transform: rotateY(180deg);
        -webkit-transform: rotateY(180deg);
    }
    100% {
        transform: rotateY(0deg);
        -webkit-transform: rotateY(0deg);
    }
}

@keyframes mymoveback {
    40% {
        transform: rotateY(-180deg);
        -webkit-transform: rotateY(-180deg);
    }
    50% {
        transform: rotateY(0deg);
        -webkit-transform: rotateY(0deg);
    }
    90% {
        transform: rotateY(0deg);
        -webkit-transform: rotateY(0deg);
    }
    100% {
        transform: rotateY(-180deg);
        -webkit-transform: rotateY(-180deg);
    }
}


#cemananci .display-flex {
    align-items: center;
}

#events {
    background-image: url('../images/event-desktop.png');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    height: 80vh;
    cursor: pointer;
}

#events .desktop {
    display: block;
    padding-top: 13vh;
    color: #fff;
}
#events .mobile {
    display: none;
    color: #fff;
    font-size: 32px;
    line-height: 42px;
    margin: 0 0 20px 0;
    padding: 50px 30px;
}

#vendors .vendor-slider {
    position: static !important;
}

#cee {
    background-image: url('../images/ceezazen.png');
    background-repeat: no-repeat;
    background-position: 50%;
    background-size: cover;
    position: relative;
    color: #ffffff;
    padding-top: 120px;
    padding-bottom: 120px;
}

#cee ul {
    list-style: none;
    text-align: left;
    padding: 0;
    max-width: 750px;
}

#cee ul li {
    display: inline;
    font-size: 58px;
    line-height: 83px;
    font-weight: bold;
    font-family: "DM Sans";
    opacity: 0.3;
    transition: opacity .5s ease-in-out;
}

#cee ul li.active {
    opacity: 1;
}

#cegasesti {
    background: linear-gradient(#D8E0DD, #AFBEB9);
    color: #304155;
}

#cegasesti > .container {
    padding-top: 100px;
    padding-bottom: 200px;
    background: url('../images/trees1.png') no-repeat top right, url('../images/trees3.png') no-repeat bottom right;
}

#cegasesti h2 {
    margin-bottom: 70px;
}

#cegasesti p,
#cegasesti img {
    display: block;
    float: left;
}

#cegasesti .row1:after,
#cegasesti .row2:after,
#cegasesti .row3:after,
#cegasesti .row4:after,
#cegasesti .row5:after {
    content: '';
    display: block;
    float: none;
    clear: both;
}

#cegasesti .row1 img {
    max-width: 55.74%;
}
#cegasesti .row1 p {
    padding-top: 70px;
    max-width: 38.91%;
    padding-left: 4.3%;
}

#cegasesti .row2 img {
    max-width: 40%;
    margin-top: -197px;
}

#cegasesti .row2 p {
    max-width: 35.54%;
    margin-right: 15.34%;
    margin-left: -0.9%;
    padding-top: 89px;
}

#cegasesti .row3 img {
    margin-left: 3.76%;
    margin-top: -45px;
    max-width: 46.33%;
}

#cegasesti .row3 p {
    max-width: 44.35%;
    margin-left: 4.55%;
    padding-top: 86px;
}

#cegasesti .row4 p {
    max-width: 38.61%;
    padding-top: 78px;
    margin-right: 3.96%;
    margin-left: 0.9%;
}

#cegasesti .row4 img {
    margin-top: -144px;
    max-width: 55.44%;
}

#cegasesti .row5 p {
    max-width: 44.35%;
    padding-top: 78px;
    margin-left: 4.75%;
}

#cegasesti .row5 img {
    margin-left: -1.48%;
    margin-top: -257px;
    max-width: 44.45%;
}

.bg-orange {
    background: #D39478;
    color: #fff;
}

#ceoferim h2 {
    line-height: 73px;
    max-width: 365px;
    margin: 0 0 10px 0;
}

#ceoferim p {
    color: #fff;
    max-width: 365px;
}

#ceoferim a {
    margin-top: 85px;
    display: block;
    line-height: 28px;
    color: #304155;
    font-size: 21px;
}

a.link-underline {
    text-decoration: underline !important;
}

a.link-underline:hover {
    text-decoration: none !important;
}

#ceoferim .img-responsive {
    height: 100%;
    max-width: inherit;
}

#map {
    background: rgba(175, 190, 185, 0.2);
}

#map a {
    margin-bottom: 50px;
    display: block;
    line-height: 28px;
    color: #333;
    font-size: 21px;
}

.nav-tabs {
    margin-bottom: 20px;
}

.nav-tabs > li {
    float: left;
    margin-bottom: -1px;
}

.nav-tabs > li > a {
    color: #000000;
    font-weight: 600;
    margin-right: 2px;
    line-height: 1.42857143;
    border: none;
    border-radius: 0px;
}

.nav-tabs > li > a:hover {
    background-color: transparent;
}

.nav-tabs > li.active > a,
.nav-tabs > li.active > a:hover,
.nav-tabs > li.active > a:focus {
    color: #ffcc00;
    cursor: default;
    background-color: transparent;
    border: 1px solid transparent;
    border-bottom-color: #999;
}

.tab-content {
    padding-top: 20px;
}

.bg-black {
    background: #000;
}
#vendors .menu-items .menu-item:last-child {
    border-bottom: 0;
}
#vendors .row.row-no-gutters {
    margin: 0;
}

#vendors .row.row-no-gutters .col-md-6 {
    padding-left: 0;
    padding-right: 0;
}


#vendors h2 {
    color: #AFBEB9;
    line-height: 73px;
}

#vendors .description {
    color: #AFBEB9;
    font-size: 21px;
    line-height: 28px;
}

#vendors a {
    color: #AFBEB9;
    font-size: 21px;
    line-height: 28px;
    text-decoration: underline;
}

#vendors .img-as-bg {
    background-repeat: no-repeat;
    background-size: cover;
    height: 100%;
    background-position: center center;
}

#vendors .back-vendor {
    background: #AFBEB9;
}
#vendors .menu-items .menu-item {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
    border-bottom: 1px solid #fff;
}

#vendors .menu-item p {
    font-size: 21px;
    line-height: 28px;
    color: #000;
}

#vendors .menu-item p.subtitle {
    font-size: 14px;
}

#vendors .menu-item .left {
    width: calc(80% - 20px);
}

#vendors .menu-item .right {
    width: 20%;
}

#vendors .back-vendor {
    display: none;
}
#vendors .flipped .front-vendor {
    display: none;
}

#vendors .flipped .back-vendor  {
    display: block;
    height: 100%;
}

.display-flex.vendor {
    gap: 40px;
    padding: 100px 0;
}

.menu-items {
    padding: 10px 0;
}

.menu-items .menu-item {
    padding-left: 5px;
    padding-right: 5px;
}

.menu-items .menu-item .right {
    text-align: right;
}
/*---------------------------------------
   Footer section
-----------------------------------------*/
footer {
    background-attachment: fixed;
}


/* Back top */
.go-top {
    background-color: #222;
    bottom: 2em;
    right: 2em;
    color: #ffffff;
    font-size: 32px;
    display: none;
    position: fixed;
    text-decoration: none;
    width: 60px;
    height: 60px;
    line-height: 60px;
    text-align: center;
    transition: all 0.4s ease-in-out;
}

.go-top:hover {
    background: #ffcc00;
    color: #ffffff;
}


/*---------------------------------------
   Social icon
-----------------------------------------*/
.social-icon {
    position: relative;
    padding: 0;
    margin: 0;
}

.social-icon li {
    display: inline-block;
    list-style: none;
}

.social-icon li a {
    color: #666;
    border-radius: 100px;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.4s ease-in-out;
    width: 50px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    vertical-align: middle;
}

.social-icon li a:hover {
    background: #ffcc00;
    color: #ffffff;
}


.display-flex {
    display: flex;
    align-content: center;
    justify-content: flex-start;
}

.display-flex.justify-start {
    gap: 75px;
}

.display-flex.space-between {
    justify-content: space-between;
}

.display-flex.align-center {
    align-items: center;
}

.display-flex.align-top {
    align-items: start;
}

.mb30 {
    margin-bottom: 30px;
}

.navbar-header {
    display: none;
}

#vendors .container {
    width: 100%;
    max-width: 100%;
    padding: 0;
}
#vendors .row.row-no-gutters .col-md-6 .front-vendor .vendor-menu {
    width: calc(1440px / 2);
    display: inline;
    height: 100%;
}
#vendors .row.row-no-gutters .col-md-6 .back-vendor .menu-items {
    width: 500px;
    display: inline-block;
    height: 100%;
    padding: 20px 0;
    max-width: 100%;
}
#vendors .row.row-no-gutters .col-md-6 .vendor-menu .vendor {
    max-width: 400px;
    height: 100%;
}

#vendors .row.row-no-gutters.odd .col-md-6 .vendor-menu .vendor,
#vendors .row.row-no-gutters.odd .col-md-6 .back-vendor .menu-items {
    float: right;
    margin-right: 100px;
}

#vendors .row-no-gutters.row-no-gutters.even .col-md-6 .vendor-menu .vendor,
#vendors .row.row-no-gutters.even .col-md-6 .back-vendor .menu-items {
    margin-left: 100px;
    float: left;
}

.vendor:after {
    clear: right;
    float: none;
}

.flip-card {
    width: 100%;
    height: 600px;
    perspective: 1000px;
}

.flip-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.8s;
    transform-style: preserve-3d;
}

.flip-card.flipped .flip-card-inner {
    transform: rotateY(180deg);
    transform-origin: 50% 100%;
}

.front-vendor, .back-vendor {
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden; /* Safari */
    backface-visibility: hidden;
}

.back-vendor {
    transform: rotateY(180deg);
    transform-origin: center;
}

.odd .back-vendor .close-flip {
    position: absolute;
    right: 40px;
    top: 20px;
}

.even .back-vendor .close-flip {
    position: absolute;
    left: 40px;
    top: 20px;
}
/*---------------------------------------
   Responsive styles
-----------------------------------------*/
@media (max-width: 1024px) {

    #intro .container {
        padding-left: 40px;
        padding-right: 40px;
    }


    #intro p.intro-location {
        width: 100%;
        text-align: left;
    }

    #intro p.intro-location img {
        left: -30px;
    }

    .fdm-column {
        flex-direction: column;
    }
    .flipper {
        width: 100%;
    }
    .flipper p.display-flex.flex-end {
        justify-content: flex-start;
    }

    #cee .container {
        padding: 0 40px;
    }

    #cee ul li {
        font-size: 42px;
        line-height: 52px;
    }

    #cegasesti > .container {
        padding: 50px 40px;
    }

    #ceoferim .img-responsive {
        height: auto;
        width: 100%;
    }

    #cegasesti h2,
    #ceoferim h2 {
        font-size: 42px;
        line-height: 52px;
    }
    #ceoferim a {
        margin-top: 30px;
    }

    #ceoferim .row.row-no-gutters {
        margin: 0;
    }

    #ceoferim .row.row-no-gutters .col-md-6,
    #ceoferim .row.row-no-gutters .col-sm-12 {
        padding: 0;
    }

    #cegasesti .row1 p {
        padding-top: 30px;
    }
    #cegasesti .row2 img {
        margin-top: -80px;
    }
    #cegasesti .row2 p {
        padding-top: 50px;
    }
    #cegasesti .row3 p {
        padding-top: 32px;
    }
    #cegasesti .row4 img {
        margin-top: -74px;
    }
    #cegasesti .row4 p {
        padding-top: 44px;
    }

    #cegasesti .row5 img {
        margin-top: -106px;
    }

    #cegasesti .row5 p {
        padding-top: 58px;
    }

    #vendors .row.row-no-gutters.odd .col-md-6 .vendor-menu {
        margin-right: 60px;
    }

    #vendors .row.row-no-gutters.even .col-md-6 .vendor-menu {
        margin-left: 60px;
    }

    #vendors .row.row-no-gutters .col-md-6 .back-vendor .menu-items {
        width: 500px;
        display: inline-block;
        height: 100%;
        padding: 20px 0;
        max-width: calc(100% - 120px);
    }

}
@media (max-width: 768px) {
    #intro .container {
        padding: 80px 40px 0 40px;
        margin-bottom: 0;
    }

    #intro .container h2 {
        margin-bottom: 25px;
        font-size: 32px;
        line-height: 42px;
    }

    #intro p.intro-location {
        line-height: 24px;
    }

    #intro p.intro-location img {
        left: -20px;
        max-height: 15px;
        top: 2.5px;
    }

    p {
        font-size: 11px;
    }

    .flipper p {
        font-size: 9px;
    }

    #intro span.separator {
        height: 24px;
    }

    #intro span.working-hours {
        font-size: 18px;
        line-height: 24px;
    }

    #cee {
        padding-top: 150px;
        padding-bottom: 100px;
    }

    #cegasesti h2 {
        font-size: 32px;
        line-height: 42px;
        margin-bottom: 40px;
    }

    #cegasesti p, #cegasesti img {
        float: none;
        display: block;
    }

    #cegasesti .row1 {
        display: flex;
        flex-flow: column-reverse;
    }

    #cegasesti .row1 p,
    #cegasesti .row2 p,
    #cegasesti .row3 p,
    #cegasesti .row4 p,
    #cegasesti .row5 p {
        padding: 0;
        max-width: 100%;
        font-size: 18px;
        line-height: 24px;
        margin: 0 0 40px 0;
    }

    #cegasesti .row2 {
        display: flex;
        flex-direction: column;
    }

    #cegasesti .row2 img,
    #cegasesti .row3 img,
    #cegasesti .row4 img {
        margin: 0 0 40px 0;
    }

    #cegasesti .row2 p {
        margin-top: 40px;
    }

    #cegasesti .row3 {
        display: flex;
        flex-direction: column-reverse;
    }

    #cegasesti .row4 {
        display: flex;
        flex-direction: column;
    }

    #cegasesti .row5 {
        display: flex;
        flex-direction: column-reverse;
    }

    #cegasesti .row5 img {
        margin: 0;
    }

    #ceoferim > .container {
        padding-left: 0;
        padding-right: 0;
    }

    #ceoferim .row.display-flex {
        flex-direction: column;
    }
    #ceoferim .row.row-no-gutters .col-sm-12 > div {
        padding: 50px 40px;
    }
    #ceoferim h2 {
        font-size: 32px;
        line-height: 42px;
        margin-bottom: 10px;
    }

    #ceoferim p {
        max-width: 100%;
        font-size: 18px;
        line-height: 24px;
    }

    #ceoferim a {
        margin-top: 40px;
        font-size: 18px;
        line-height: 24px;
    }

    #map > .container {
        padding: 50px 0;
    }

    #map .row {
        margin: 0;
    }

    #map .row .col-sm-12 {
        padding: 0;
    }

    #map h2 {
        font-size: 32px;
        line-height: 42px;
        margin: 0 0 20px 0;
        padding: 0 40px;
    }

    footer .display-flex.justify-start {
        gap: 15px;
    }

    footer .display-flex > a {
        width: 15px;
        height: 15px;
        line-height: 15px;
    }

    footer .display-flex > a img {
        max-width: 100%;
    }

    footer .display-flex > a img.fb {
        max-width: 9px;
    }

    footer .copyright {
        padding-left: 20px;
        padding-top: 40px;
        font-size: 8px;
        line-height: 21px;
    }

    #cemananci {
        padding-top: 50px;
    }

    #cemananci h2 {
        font-size: 32px;
        line-height: 42px;
        text-align: center;
    }

    #vendors h2 {
        font-size: 32px;
        line-height: 42px;
    }

    #vendors .description,
    #vendors a {
        font-size: 18px;
        line-height: 24px;
    }

    #cemananci .container .display-flex {
        flex-direction: column-reverse;
    }

    #vendors .display-flex {
        flex-direction: column;
    }

    .display-flex.vendor {
        padding: 60px 40px;
    }

    #vendors .container {
        padding: 0;
    }

    #vendors .container .col-md-6 {
        padding: 0;
    }
    #vendors .img-as-bg {
        min-height: 400px;
    }

    #vendors .vendor-slider {
        min-height: 400px;
    }
    #vendors .row.row-no-gutters .col-md-6 .vendor-menu {
        max-width: 100%;
    }

    #vendors .row.row-no-gutters.odd .col-md-6 .vendor-menu {
        margin-right: auto;
    }

    #vendors .row.row-no-gutters.even .col-md-6 .vendor-menu {
        margin-left: auto;
    }

    #map a {
        padding: 0 40px;
    }
}

@media (max-width: 500px) {
    .navbar-header {
        display: block;
    }
    .custom-navbar .navbar-toggle {
        padding: 15px 40px 15px 0;
        margin: 0;
    }
    .custom-navbar .navbar-brand {
        padding: 15px 0 15px 40px;
        margin: 0;
    }

    .custom-navbar {
        background: none;
    }

    .custom-navbar > .container {
        padding: 0;
        backdrop-filter: blur(9px);
        -webkit-backdrop-filter: blur(9px);
    }

    .navbar-fixed-bottom .navbar-collapse, .navbar-fixed-top .navbar-collapse {
        max-height: inherit;
    }

    .navbar-header {
        background: rgba(175, 190, 185, 0.2);
    }

    .navbar-collapse {
        border-top: 0;
    }

    .navbar-collapse.in {
        height: 100vh;
        background: rgba(175, 190, 185, 0.2);
    }

    .custom-navbar .nav.navbar-nav {
        flex-direction: column;
        margin: 0;
        padding: 40px;
    }

    .nav > li:first-child {
        display: none;
    }

    .nav > li {
        font-size: 21px;
        line-height: 25px;
        margin-top: 30px;
        text-align: left;
        width: 100%;
    }

    .custom-navbar .nav li a {
        padding: 0;
    }

    #vendors .row-no-gutters.row-no-gutters.even .col-md-6 .vendor-menu .vendor {
        margin-left: 0px;
    }

    #cegasesti .row1,
    #cegasesti .row2,
    #cegasesti .row3,
    #cegasesti .row4,
    #cegasesti .row5 {
        margin: 0 -40px;
    }

    #cegasesti .row1 p,
    #cegasesti .row2 p,
    #cegasesti .row3 p,
    #cegasesti .row4 p,
    #cegasesti .row5 p {
        padding-left: 40px;
        padding-right: 40px;
    }
    #cegasesti .row1 img,
    #cegasesti .row2 img,
    #cegasesti .row3 img,
    #cegasesti .row4 img,
    #cegasesti .row5 img {
        max-width: 100%;
    }

    #events {
        background-image: url('../images/event-mobile.png');
        height: 100vh;
    }

    #events .desktop {
        display: none;
    }
    #events .mobile {
        display: block;
    }
}
