*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  list-style: none;
  text-decoration: none;
}
.container{
  width: 1140px;
  margin: auto;
  padding: 0 15px;
}
.navbar__top{
  background-color: black;
  color: white;
  height: 65px;
  width: 100%;
  display: flex;

}
.navbar__top__content{
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.navbar__top__icon{
  display: flex;
  gap: 5px;
  align-items: center;
}
.navbar__top__icon__text{
  font-size: 16px;
  font-weight: 400;
}
.navbar__top__lists{
  display: flex;
  align-items: center;
  gap: 20px;
}
.navbar__top__link{
  color: white;
  font-size: 16px;
  font-weight: 400;
  transition: .5s;
}
.navbar__top__link:hover{
  color:#69CF17BF;
}
/* navbar bottom start */
.navbar__bottom{
  width: 100%;
  height: 65px;
  background-color: black;
  color: white;
}
.navbar__bottom__content{
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.navbar__bottom__card{
  width: 216px;
  height: 53px;
  background-color:  #0A9418BF;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 4px solid  #06600F;
  border-radius: 4px;
}
.logo{
  font-size: 36px;
  font-weight: 700;
  color: white;
}
.navbar__bottom__lists{
  display: flex;
}
.navbar__bottom__link{
  padding: 22px 14px;
  font-size: 18px;
  font-weight: 400;
  color: white;
  transition: .5s;
}
.navbar__bottom__link:hover{
  background-color:  #69CF17BF;

}
/* header start */
.header{
  width: 100%;
  position: relative;
}
.header__img{
  width: 100%;
  height: 100vh;
  object-fit: cover;
}

.header__parda{
  position: absolute;
  top: 167px;
  left:0;
  right: 0;
  display: flex;
  flex-direction: column;
}
.header__parda__content{
   display: flex;
   flex-direction: column;
   gap: 18px;


}
.header__parda__content__title{
  font-size: 72px;
  font-weight: 900;
  color:  #69CF17;

}
.header__parda__content__span{
  font-size: 36px;
  font-weight: 400;
  color:#69CF17;
}
.header__parda__content__text{
  font-size: 18px;
  font-weight: 400;
  color: white;
}
.header__parda__buy{
   display: flex;
   justify-content: space-between;
   align-items: center;
}
.header__parda__buy__price{
  width: 285px;
  height: 103px;
  background-color: #69CF1780;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 50px;
  font-weight: 100;
  color: white;
}
.header__parda__buy__btn{
  width: 255px;
  height: 51px;
  border-radius: 6px;
  background:linear-gradient( to right, #69CF17,#417D11);
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  font-size: 18px;
  font-weight: 400;
}
.header__parda__buy__btn:hover{
  background:linear-gradient( to left, #69CF17,#417D11);

}
/* header end */
/* main start */
.main{
  width: 100%;
}
.burger{
  width: 100%;
  /* background-color: black; */

}
.burger__content{
  width: 100%;
  display: flex;
  justify-content: space-between;
  /* background-color: #393636; */
}
.burger__card{
  width: 370px;
  padding: 15px;
  background-color: #0C0C0C;
  border: 1px solid white;
  border-radius: 4px;
}
.burger__card__img{
  width: 338px;
  height: 325px;
  position: relative;
}
.burger__card__img:hover .burger__card__img__parda{
  opacity: 0.9;
}
.burger__card__image{
  width: 100%;
  height: 100%;
}
.burger__card__img__parda{
  position: absolute;
  top:0;
  background-color: #69CF17;
  opacity: 0 ;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;

}
.burger__card__title{
  font-size: 19px;
  font-weight: 700;
  margin: 15px 0;
  color: white;
}
.burger__card__text{
  font-size: 19px;
  font-weight: 400;
  color: white;
  margin-bottom: 15px;
}

/* FOOTR START */
.branches{
    width: 100%;
    background-color: #fff;
}

.branches__title{
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    color: #69CF17;
    margin: 20px 0;
}

.map{
    width: 100%;
    max-height: 580px;
    overflow: hidden;
}

.map img{
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.footer{
    background: linear-gradient(180deg, #0C0C0C, #1E3A08);
    padding: 30px 0 15px;
    color: white;
    text-align: center;
}

.footer__top{
    max-width: 1140px;
    margin: 0 auto 20px;
    padding: 0 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer__logo{
    background-color: #69CF17;
    padding: 8px 15px;
    font-weight: 700;
    border-radius: 4px;
}

.footer__phone{
    font-size: 16px;
}

.footer__menu{
    display: flex;
    justify-content: center;
    gap: 30px;
    list-style: none;
    margin-bottom: 20px;
}

.footer__menu a{
    color: white;
    text-decoration: none;
    font-size: 14px;
    transition: .3s;
}

.footer__menu a:hover{
    color: #69CF17;
}

.footer__bottom{
    font-size: 12px;
    opacity: 0.6;
}
