/* some css reset */

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

img{
    cursor: pointer;
}

/* import font */

@font-face {
    font-family: sedsina;
    src: url("./../assests/BYekan/BYekan+.ttf");
  }

body{
    font-family: sedsina;
}

/* container */

.container {
    max-width: 80rem;
    margin-right: auto;
    margin-left: auto;
}

/* header & navbar */

nav{
    display: flex;
    margin-top: 1rem;
    align-items: center;
    justify-content: space-around;
    background-color: #F1F1F1;
    border-radius: 0.5rem;
}

nav ul{
    list-style: none;
    display: flex;
    align-items: center;
    gap: 2rem;
    font-size: 20px;
    margin-right: 5rem;
    
}
nav ul li img{
    width: 14px;
    cursor: pointer;
    height: 7px;
}
nav a{
    text-decoration: none;
    color: black;
}


.nav-button{
    background-color: #2850C8;
    font-size: 20px;
    color: #FFF;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.69rem 1.4rem;
    gap: 0.5rem;
    border-radius: 0.8rem;
}

/* middle */

.middle-section{
    margin-top: 1rem;
    display: flex;
    gap: 1rem;
}
.middle-options{
    width: 28%;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.option1{
    background-color: #F1F1F1;
    border-radius: 0.5rem;
    text-align: center;
    padding: 1.5rem;
}

.option-text{
    font-size: 16px;
    font-weight: bold;
}
.option-text2{
    font-size: 16px;
    color: #000;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.option-text2 img{
    width: 15px;
    cursor: pointer;
    height: 14px;
}
.option-text3{
    font-size: 16px;
    color: #2850C8;
}

.option1 div{
    margin-top: 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.option2{
    display: flex;
    align-items: center;
    justify-content: start;
    padding: 0.8rem 1.3rem;
    gap: 1rem;
    font-size: 18px;
    background-color: #F1F1F1;
    border-radius: 0.5rem;
    text-align: center;
}
.option2 img{
    cursor: pointer;
}

.selected{
    background-color: #1C548C;
    color: #fff;
}

.middle-fish{
    flex: 1;
} 

.middle-fish{
    padding: 1rem 1.5rem;
    background-color: #F1F1F1;
    border-radius: 0.5rem;
    width: 72%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
}

.middle-title{
    width: 100%;
}

.middle-title h2{
    color: #2850C8;
    font-size: 24px;
    font-weight: 500;
}
.middle-inputs{
    display: flex;
    width: 100%;
    gap: 1rem;
}

.middle-inputs div, .middle-inputs input{
    flex: 1;
}

.middle-inputs input{
    outline: none;
    border: none;
    font-family: sedsina;
    font-size: 18px;
    color: #000;
    padding: 0.5rem;
    border-radius: 0.4rem;
}

.middle-inputs div{
    padding: 0.5rem;
    background-color: #fff;
    border-radius: 0.4rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 18px;
    font-weight: 300;
}


.middle-biginput{
    width: 100%;
    height: 5rem;
    outline: none;
    border: none;
    font-family: sedsina;
    font-size: 18px;
    color: #000;
    padding: 0.5rem;
    border-radius: 0.4rem;
}


.middle-prices{
    display: flex;
    font-size: 18px;
    align-items: center;
    width: 100%;
    justify-content: space-around;
}

.blue-span{
    color: #2850C8;
}

.green-span{
    color: #27AE60;
}

.banks{
    display: flex;
    align-items: center;
    justify-content: space-around;
    font-size: 20px;
    width: 100%;
}

.pardakht{
    display: flex;
    align-items: center;
    justify-content: center;
}

.submit-pardakht{
    background-color: #2850C8;
    padding: 0.9rem 3rem;
    border-radius: 0.8rem;
    color: #FFF;
    font-size: 18px;
    text-decoration: none;
}



.footer{
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 1rem;
    width: 100%;
    background-color: #F1F1F1;
    border-radius: 0.4rem;
    height: 18rem;
    overflow: hidden;
    
}

.infos{
    display: flex;
    gap: 1rem;
    flex-direction: column;
    /* align-items: center; */
    justify-content: space-between;
}

.info{
    max-width: 15rem;
    font-size: 20px;
}

.info img{
    margin: 0 0 0 1rem;
    float: right;
}

.footer-logo{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    font-weight: 400;
    color: #1C548C;
}

.footer-logo img{
    width: 7rem;
}

.footer-images{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.social-medias{
    display: flex;
    align-items: center;
    gap: 1rem;
}

.social-medias a img{
    width: 1.5rem;
}

.social-medias a{
    display: flex;
    align-items: center;
    background-color: #1C548C;
    border-radius: 100%;
    padding: 0.5rem;
}

.footer-end{
    width: 100%;
    height: 5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFF;
    background-color: #2850C8;
    border-radius:  0 0 0.4rem 0.4rem;
    margin-bottom: 2rem;
}
