body {
    color: #fff;
   
}
p {
    margin: 0;
    padding: 0;
}
.top_h1 {
    margin-bottom: 100px;
}
.top {
    background: url(../img/fpn.jpg) no-repeat center top/cover;
    position: relative;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 100px;
    padding-bottom: 100px;
}
.top::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: rgba(19, 18, 18, 0.8);
}
.top_block {
    margin-bottom: 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
h1 {
    font-size: 40px;
    color: #fff;
    text-transform: uppercase;
}
h1 .citys {
    font-size: 30px;
}
h1 .now {
    color: #ffdc60;
}
.phone_num {
    margin-bottom: 20px;
    color: #fff;
    text-decoration: none;
    font-size: 24px;
}
.phone_num:hover {
    color: #fff;
    text-decoration: none;
    
}
.btn_site {
    color: #fff;
    background: #FF3333;
    padding: 12px 24px;
    border-radius: 16px;
    font-weight: 500;
    font-size: 16px;
    transition: all 0.1s;
    width: 180px;
}
.btn_site:hover {
    /* background: #ffdc60;
    color: #323555; */
    color: #fff;
    text-decoration: none;
}
.our {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 60px;
}
ul, li {
    padding-left: 0;
}
.ul_list {
    text-align: left;
    font-size: 18px;
    margin-left: 15px;
}

.li_tem {
    margin-bottom: 8px;
}
.li_tem {
    list-style-type: none;
    position: relative;
   }
   .li_tem::before {
    position: absolute;
    content: ""; /* Сам маркер */
   background: #ffdc60;
   width: 7px;
   height: 7px;
   border-radius: 7px;
   left: -20px;
    top: 10px
}
h3 {
    font-size: 28px;
    margin-bottom: 30px;
    color: #ffdc60;
}
.p_price {
    font-size: 18px;
    margin-bottom: 8px;
}
.price {
    margin-bottom: 100px;
}
.map {
    display: flex;
    justify-content: center;
}
.p_map {
    color: #ffdc60;
    position: relative;
    padding-left: 35px;
}
.p_map::before {
    content: "";
    position: absolute;
    background: url(../img/17121.png) no-repeat center center/cover;
    width: 25px;
    height: 25px;
    left: 0px;
}

@media screen and (max-width: 480px) {
    h1 {
        font-size: 30px;
        color: #fff;
        text-transform: uppercase;
    }
    h1 .citys {
        font-size: 25px;
    }
}

.btn_site {
    -webkit-animation: glowing 1300ms infinite;
    -moz-animation: glowing 1300ms infinite;
    -o-animation: glowing 1300ms infinite;
    animation: glowing 1300ms infinite;
}
@-webkit-keyframes glowing {
    0% { background-color: #339900; -webkit-box-shadow: 0 0 3px #339900; }
    50% { background-color: #FF3333; -webkit-box-shadow: 0 0 15px #FF3333; }
    100% { background-color: #339900; -webkit-box-shadow: 0 0 3px #339900; }
    }
    @keyframes glowing {
    0% { background-color: #339900; box-shadow: 0 0 3px #339900; }
    50% { background-color: #FF3333; box-shadow: 0 0 15px #FF3333; }
    100% { background-color: #339900; box-shadow: 0 0 3px #339900; }
    }