@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
*{
    font-family: 'Montserrat', sans-serif !important;
}
:root{
    --button: #cd3f3e;
    --buttonhover: rgb(224, 86, 86);
    --text: white;
}
header{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
header .navbar{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
header .navbar .nav-logo{
    position: sticky;
    top: 0;
    background-color: white;
    display: flex;
    align-items: center;
    justify-content: center;
}
header .navbar .nav-menu{
    display: flex;
    align-items: center;
    justify-content: center;
}
header .navbar .nav-menu i{
    font-size: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 10px !important;
}
header .navbar .nav-menu i:hover{
    color: #1c2938;
    transform: scale(1.1);
    transition: 0.5s;
}
header .navbar .nav-menu input{
    height: 2.4rem;
    width: 80%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.drop-menu{
display: none;
}
.drop-menu div a{
    display: flex;
    flex-direction: column;
    background-color: var(--button);
    color: var(--text);
    padding: 10px 0;
    text-align: center;
    text-decoration: none;
    width: 100%;
}
.drop-menu div a:hover{
   transform: scale(0.95);
   background-color: var(--buttonhover);
}
.search-card{
    margin-bottom: 5px;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: left;
    background-color: var(--buttonhover);
    color: var(--text);
    padding-top: 10px;
    padding-bottom: 10px;
}
.search-card .title{
    font-size: 1.2rem;
}
.search-card p:nth-child(1){
    font-weight: 700;
}
.search-card p:nth-child(2){
    font-weight: 500;
}
.price{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}
.price a{
    text-decoration: none;
    color: rgb(206, 197, 194);
}
.aramakutusu{
    display: flex;
    flex-direction: column;
}
.home{
    display: flex;
    flex-direction: column;
}
.home-card{
    background-size: cover;
    background-position: center;
    padding-top: 8rem;
    text-decoration: none;
    padding-left: 0;
    padding-right: 0;
}
.home-card p{
    background-color: #1c2938a8;
    color: white;
    padding: 10px;
    margin: 0 !important;
    text-align: center;
    font-weight: 600;
}
.none{
    display: none;
}
.detay-card{
    position: relative;
    text-decoration: none;
}
.detay-card p{
    padding: 3px;
    background-color: var(--button);
    color: white;
}
.detay-card h3{
    top: 0;
    left: 3;
    font-size: 1.3rem;

    position: absolute;
    padding: 6px;
    padding-right: 8px;
    background-color: var(--button);
    color: white;
    border-bottom-right-radius: 18px;
}
.btns{
   position: sticky;
   bottom: 0;
}
.btnprice{
    background-color: var(--button);
    padding: 1rem !important;
    border-top-left-radius: 30px;
    border-top-right-radius: 30px;
    color: var(--text);
}
.btn-a{
    padding: 1rem 0;
    text-decoration: none;
    background-color: #1b1b1a;
    color: white;
}
.btn-a a{
    text-decoration: none;
    color: white;
}