/* assets/style.css */

/* ریست ساده */

*,
*::before,
*::after {
  box-sizing: border-box;
}

@font-face{
    font-family: "Font Awesome 6";
    src: url("../font/fa-light-300.woff2")format("woff2");
    font-weight:normal;
    font-style:normal;
    font-display:swap;
}

:root{
    --fa-style-family: "Font Awesome 6";
}
html {
  font-size: 16px;
}

body {
  margin: 0;
  padding: 0;
  direction: rtl;
  background: #e9edf7;
  color:#55768b ;
  
  font-family: "Vazir", "Vazirmatn", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;  
}

button, select, textarea, input{
    font-family: "Vazir", "Vazirmatn", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

a{
    text-decoration: none;
    color:rgb(49, 191, 193);
    cursor: pointer;
    transition: transform 0.08s ease, box-shadow 0.08s ease, background 0.15s ease;
    font-weight: 500;
    padding: 6px 9px;
    border-radius:9px;
}
a:hover{
    transform: translateY(-3px);
    color:#55768b ;
    background:  rgba(49, 191, 193, 0.438);
    box-shadow: 0 8px 18px rgba(107, 107, 107, 0.45);
}

header{
    display: flex;
    justify-content: space-between;
    margin: auto;
    flex-direction: row;
    position: sticky;
    top: 0;
    z-index: 10;
    background: #f5f8fe;
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
    padding: 0.75rem 1rem;
    align-items: center;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.04);
    padding-right:12px;
}

nav{
    display: flex;
    justify-content: space-between;
    flex-direction: row;
    gap: 24px;
    
}

.btn_primary{
    padding: 9px 12px;
    border-radius: 9px;
    color:aliceblue;
    background: #029402;
    padding: 0.55rem 1rem;
    font-size: 0.85rem;
    display: inline-flex;
    align-items: center;
    cursor: pointer;
    transition: transform 0.08s ease, box-shadow 0.08s ease, background 0.15s ease;
    font-weight: 500;
}

.btn_primary:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 18px rgba(107, 107, 107, 0.45);
}

.logo-site{
    width:46px;
}

main{
    padding: 5%;
    background: #eee;
}

.single-col{
 display: flex;
 flex-direction: column;
 gap:24px
}

.image{
    width:100%;
    border-radius: 12px;    
}

p{
    text-align: justify;
}

.banner{
background: #f5f8fe;
border-radius: 12px;
display: flex;
flex-direction: row;
align-items: center;
padding: 50px;
justify-content: space-around;
}

.btn_sale{
    padding: 36px 42px ;
    justify-content: center;
    font-size: 1.75rem;
    width: fit-content;
    
}
.dual{
 display: flex;
 flex-direction: row;
 justify-content: space-evenly;
}

.content_wrapper{
margin-bottom: 1.5 rem;
}

.content_wrapper h2{
    color:#b69b54;
}

li{
    height: 3rem;
}

.contact{
    text-align: center; 
    font-size: 1.5rem;
}
@media (max-width: 768px) {
    html{
       font-size: 12px; 
    }
    .contact {
        font-size: 14px; 
    }
    .banner{
        flex-direction: column;
    }
    .btn_sale{
        font-size: 1rem;
        padding: 18px 21px;
    }
}

/* *************
contact
************** */
.checkbox_wrapper{
display: flex;
flex-direction: row;
align-items: center;

}
.link{
    padding-left:50px;
}
.link:hover{
    background: inherit;
    box-shadow: inherit;
    color:#029402;
    
}
