@import url('https://fonts.googleapis.com/css2?family=Koulen&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Hanuman:wght@100;300;400;700;900&display=swap');

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

body {
    background-color: #dedddd;
    background-image:url(../image/background\ edit.png);
}

.koulen-regular {
    font-family: "Koulen", sans-serif;
    font-weight: 400;
    font-style: normal;
}

.hanuman-thin {
    font-family: "Hanuman", serif;
    font-weight: 100;
    font-style: normal;
  }
html {
    scroll-behavior: smooth;
}

a {
    font-family: "Koulen", sans-serif;
    text-decoration: none;
    color: #e9e9e9;
}

ul {
    list-style-type: none;
}
h1,
h2,
h3,
h4 {
    font-family: "Koulen", sans-serif;
}
h1{
    color: #000000;
}

p {
    font-family: "Hanuman", serif;
    font-size: 18px;
}

header {
    width: 100%;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

#navbar {
    width: 100%;
    height: 80px;
    background-color:#173540;
    position: fixed;
    z-index: 99;
    display: flex;
    align-items: center;
}

#navbar .con {
    min-width: 1200px;
    margin: auto;
}

#navbar .nav-con {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
#navbar .nav-con .logo{
    width: 200px;
    height: 70px;
    /* background-color: cyan; */
}
#navbar .nav-con .logo img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

#navbar.scrolled {
    background-color:#173540;
    /* background-color: #173540; */
}

#navbar .navbar-nav {
    display: flex;
}

#navbar .navbar-nav .nav-item .nav-link {
    display: block;
    font-size: 16px;
    padding: 10px 20px;
    position: relative;
    color:#F7941F;
}

#navbar .navbar-nav .nav-item .nav-link:hover {
    color: lime;
}

#navbar .navbar-nav .nav-item .drop-down {
    width: 100%;
    height: auto;
    /* background-color: cyan; */
    display: flex;
    justify-content: center;
    position: absolute;
    visibility: hidden;
    top: 100%;
    left: 0;
}

.hover-box {
    width: 100px;
    height: 30px;
    background-color: rgba(0, 0, 0, 0);
    position: absolute;
    top: 50px;
}

#navbar .navbar-nav .nav-item .drop-down .drop-down-row {
    width: 1200px;
    height: 100%;
    background-color: white;
    display: flex;
    gap: 10px;
    border-radius: 10px;
}

#navbar .navbar-nav .nav-item .drop-down .drop-down-row .navbar-navdrop-col-2_4 {
    width: calc(1200px/5);
    height: 100%;
    /* background-color: teal; */
    margin: 10px 0px;
}

#navbar .navbar-nav .nav-item .drop-down .drop-down-row .navbar-navdrop-col-2_4 .nav-item-drop .nav-link-drop {
    /* background-color: chartreuse; */
    display: block;
    padding: 10px 20px;
    color: black;
    border-radius: 10px;
}

#navbar .navbar-nav .nav-item .drop-down .drop-down-row .navbar-navdrop-col-2_4 .nav-item-drop .nav-link-drop:hover {
    color: lime;
    /* background-color: #f2f1f1; */
}

#navbar .navbar-nav .nav-item:hover .drop-down {
    visibility: visible;
}

#navbar .nav-button {
    display: flex;
    list-style-type: none;
    align-items: center;
    gap: 15px;
    font-size: 20px;
}

#navbar .nav-button button {
    border-radius: 5px;
    border: none;
    background-color: transparent;
    border: 2px solid #F7941F;
    border-radius: 10px;
}

#navbar .nav-button button>a {
    display: block;
    font-family: "Koulen", sans-serif;
    padding: 10px 20px;
    font-size: 15px;
    /* color: #F7941F; */
}
.nav-button .icon-button a{
    display: block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    border-radius: 100%;
    text-align: center;
    border: 1px solid #F7941F;
}

.nav-button .notification-button .link-note{
    display: block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    border-radius: 100%;
    text-align: center;
    border: 1px solid #F7941F;
}
.nav-button .notification-button .link-note{
    position: relative;
}
.nav-button .notification-button .link-note .message{
    width: 18px;
    height: 18px;
    background-color: red;
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: -8px;
    right: -5px;
}
.nav-button .notification-button .link-note .message span{
    font-size: 14px;
}
.nav-button .notification-button{
    position: relative;
}
.nav-button .notification-button .dropdown-note{
    width: 330px;
    /* height: 100px; */
    background-color: rgb(255, 255, 255);
    box-shadow: rgba(0, 0, 0, 0.19) 0px 10px 20px, rgba(0, 0, 0, 0.23) 0px 6px 6px;
    position: absolute;
    z-index: 99;
    right: -55px;
    visibility: hidden;
    top: 60px;
    border-radius: 10px;
    padding: 0px 10px 10px 10px;
}
.nav-button .notification-button:hover .dropdown-note{
    visibility: visible;
}
.nav-button .notification-button:hover .dropdown-note .droplist-note .tittle{
    display: flex;
    justify-content: space-between;
}
.nav-button .notification-button:hover .dropdown-note .droplist-note .tittle h3{
    color: #173540;
    font-size: 20px;
    font-weight: 100;
}

.nav-button .notification-button .dropdown-note .dropitem-note .droplist-note .body-note{
    width: 100%;
    background-color: rgb(221, 218, 218);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    border-radius: 5px;
    overflow: hidden;
    margin-top: 10px;
}
.nav-button .notification-button .dropdown-note .dropitem-note .droplist-note .body-note .col-4{
    width: 50px;
    /* background-color: yellow; */
}
.nav-button .notification-button .dropdown-note .dropitem-note .droplist-note .body-note .col-4 .icon{
    width: 50px;
    font-size: 20px;
    height: 50px;
    border-radius: 100%;
    color: #292831;
    background-color:#9acd32;
    margin-left: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}  
.nav-button .notification-button .dropdown-note .dropitem-note .droplist-note .body-note .col-8{
    width: 240px;
    height: auto;
    padding: 5px 0px;
    /* background-color: rgb(129, 108, 108); */
    margin-left: 10px;
} 
.nav-button .notification-button .dropdown-note .dropitem-note .droplist-note .body-note .col-8 p{
    font-size: 16px;
    margin-left: 15px;
    color: #000000;
}
.nav-button .notification-button .dropdown-note .dropitem-note .droplist-note .body-note .col-8 p span{
    font-size: 14px;
}
.profile-button .link-profile{
    display: block;
    width: 40px;
    height: 40px;
    /* line-height: 50px; */
    border-radius: 100%;
    /* overflow: hidden; */
    text-align: center;
    position: relative;
}
.profile-button .link-profile .img{
    position: relative;
}
.bookmark{
    width: 12px;
    height:12px;
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: red;
    position: absolute;
    top: -4px;
    right: 5px;
    z-index: 99;
}
.profile-button .link-profile .img{
    width: 40px;
    height: 40px;
    border-radius: 100%;
    overflow: hidden;
}
.profile-button .link-profile .img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.profile-button{
    position: relative;
}
.profile-button .dropdown-profile{ 
    width: 280px;
    height: auto;
    background-color:#fff;
    box-shadow: rgba(0, 0, 0, 0.19) 0px 10px 20px, rgba(0, 0, 0, 0.23) 0px 6px 6px;
    position: absolute;
    border-radius: 10px;
    padding: 15px;
    visibility: hidden;
    right: 0;
    top: 60px;
    /* box-shadow: 1px 1px 15px rgb(209, 207, 207); */
}
.hold{
    width: 40px;
    height: 20px;
    background-color: rgba(255, 0, 0, 0);
    z-index: 99;
    position: absolute;
    right: 0;
    top: 100%;
}
.profile-button .dropdown-profile .droplist-profile a:hover .icon-click{
    color: lime;
}
.profile-button:hover .dropdown-profile{
    visibility: visible;
}
.profile-button .dropdown-profile .droplist-profile a .fa-chevron-right{
    float: right;
}
.profile-button .dropdown-profile .droplist-profile a .icon-click{
    color: black;
    font-size: 16px;
    padding: 5px;
}
.profile-button .dropdown-profile .droplist-profile .body-profile{
    width: 100%;
    /* background-color: red; */
    border-bottom: 1px solid black ;
    display: flex;
    transition: none;
    padding-bottom: 8px;
    margin-bottom: 15px;
    gap: 20px;
    align-items: center;
}
.profile-button .dropdown-profile .droplist-profile .body-profile .img{
    display: block;
    width: 40px;
    height: 40px;
    transition: none;
    border-radius: 100%;
    overflow: hidden;
}
.profile-button .dropdown-profile .droplist-profile .body-profile .img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.profile-button .dropdown-profile .droplist-profile .body-profile .name{
    /* width:200px ; */
    height: 60px;
    color: black;
    /* background-color:teal; */
}
.profile-button .dropdown-profile .droplist-profile .body-profile .name h4{
    color: black;
}
.pagination .row{
    width: 1000px;
    height: auto;
    /* background-color: yellowgreen; */
    justify-content: center;
}
.pagination .row .col-2{
    width: calc(300px/6);
    height: 50px;
    background-color: #d6d6d8;
    border-radius: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.pagination .row .col-2 .icon{
    width: 30px;
    height: 30px;
    border-radius: 100%;
    /* background-color: rgb(234, 231, 231); */
    color: #292831;
    display: flex;
    align-items: center;
    justify-content: center;
}
.pagination .row .col-2 .icon span{
    font-family: "Hanuman", serif;
    font-size: 16px;
}

/* container */
.container{
    width: 100%;
    height: auto;
}
.row{
    width: 1200px;
    display: flex;
    flex-wrap: wrap;
}
.container .tittle{
    width: 1200px;
    margin: auto;
    /* background-color: chartreuse; */
}
.container .tittle>h1{
    margin: 60px auto;
    font-size: 30px;
}
.container .pup-place{
    width: 100%;
    /* background-color: cyan; */
    margin:auto;
    margin-bottom: 200px;
}
.container .pup-place .row{
    width: 1200px;
    /* background-color: red; */
    margin: 20px auto;
    gap: 20px;
}
.container .pup-place .row .col-4{
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius:20px ;
}
.container .pup-place .row .col-4 a{
    display: block;
    font-size: 18px;
    color: #000;
    padding: 10px 30px;
    border-radius: 20px;
    border: 1px solid black;
    /* background-color: teal; */
}
.container .pup-place .row .col-4:nth-child(3) a{
    background-color: #1a1515;
    color: #ffff;
}
.container .pup-place .row .col-4 a:hover{
    background-color: #183540;
    color: #F7941F;
}
.container .pup-place .row .col-4 a 
.fa-synagogue,
.fa-money-bill,
.fa-utensils{
    margin-right: 10px;
}
.container .pup-place .row .col-3{
    width: calc(1140px/4);
    /* background-color: cyan; */
    height: auto;
    margin: auto;
}
.container .pup-place .row .col-3 .img{
    width: 100%;
    height: 300px;
    border-radius: 10px;
    overflow: hidden;
    /* background-color: beige; */

}
.container .pup-place .row .col-3 .img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.container .pup-place .row .col-3 .body-txt a{
    display: block;
    /* background-color: #000000; */
}
.container .pup-place .row .col-3 .body-txt a h3{
    padding-top: 15px;
    font-size: 20px;
    color: #000000;
}
.container .pup-place .row .col-3 .body-txt h4{
    padding-bottom: 15px;
    color: #000;
    font-size: 18px;
}
.container .pup-place .row .col-3 .body-txt>p{
    font-size: 18px;
}

/* footer */
.footer{
    width: 100%;
    margin-top: 100px;
    height: auto;
}
.footer .row-foot{
    width: 100%;
    height:400px;
    background-color: #183540;
    border-radius: 200px 0px 0px 0px;
    padding: 20px 0px;
    display: flex;
    justify-content: center;
    gap: 20px;
}
.footer .row-foot .col-3{
    width: calc(1200px/4);
    height: 100%;
    /* background-color: red; */
    padding: 20px;
}
.footer .row-foot .col-3>h2{
    font-size: 27px;
    margin-top: 20px;
    font-weight: 100;
    color:#F7941F;
}
.footer .row-foot .col-3 .logo{
    width: 200px;
    height: 70px;
}
.footer .row-foot .col-3 .logo img{
    width:100%;
    height: 100%;
    object-fit: cover; 
}
.footer .row-foot .col-3 .body-txt{
    margin-top: 10px;
}
.footer .row-foot .col-3 .body-txt h2{
    color: #F4F5F6;
}
.footer .row-foot .col-3 .body-txt p{
    padding: 5px 0px;
    font-size: 17px;
    font-family: "Koulen", sans-serif;
    color: #F4F5F6;
}
.footer .row-foot .col-3 .body-txt p a{
    color: #F4F5F6;
}
.footer .row-foot .col-3 .body-txt .link{
    display: block;
    font-size: 20px;
    letter-spacing: 1px;
    color: #F4F5F6;
    /* background-color: cadetblue; */
    margin-top: 20px;
}
.footer .row-foot .col-3 .body-txt .icon{
    width: 100%;
    height: auto;
    /* background-color: cyan; */
    display: flex;
    align-items: center;
    font-size: 25px;
    gap: 15px;
}
.footer .row-foot .col-3 .body-txt .icon a{
    color: #F4F5F6;
}