*{
    transition: all .20s ease;
    scroll-behavior: smooth;
}
:root{
--bg-color: #1f242d;
--text-color: #fff;
--main-color: hsl(222, 100%, 61%);
}

body{
margin-top: 80px;
}

#navbar{
background-color: var(--bg-color);
color: var(--text-color);
height: 50px;
position: fixed;
top: 0px;
left: 0px;
right: 0px;
}
#navbar ul{
    display: flex;
}
#navbar ul li{
    list-style: none;
    margin-left: 20px;
}
#navbar ul li a{
    text-decoration: none;
    color: unset;
    font-weight: 800;
}
#navbar ul li a:hover{
    color: var(--main-color);
}
#bar{
    width: 30px;height: 30px;
     font-size: 25px;position: absolute;
     top: 10px;right: 10px;
      display: none;
}
#bar:hover{
    color: var(--main-color);
}
i:hover{
    color: var(--main-color);
}

.dropdown{
    background-color: var(--bg-color);
    color: var(--text-color);
    z-index: 323;
    display: flex;
    width: 100%;
    height: 0px;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 48px;
    left: 0px;
    right: 0px;
    overflow: hidden;
    transition: all .20s ease;
}
.dropdown ul{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.dropdown ul li{
    list-style: none;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 5px;
    background-color: var(--main-color);
    width: 200px;
    border-radius: 5px;
}
.dropdown ul li:hover{
    color: var(--main-color);
    background-color: var(--text-color);
}
.dropdown ul li a{
    text-decoration: none;
    color: unset;
    font-weight: 800;


}
.open{
    height: 250px;
}



body{
    background-color: var(--bg-color);
    color: var(--text-color);

    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: small;
}
.icons{
    margin-top: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
}
.icons i{
    margin: 10px;
    background-color: var(--main-color);
    color: white;
    font-size: 1.3rem;
    padding: 10px;
    border: 2px solid white;
    border-radius: 50%;
    transition: all .40s ease;

}
.icons i:hover{
    color: var(--main-color);
    background-color: white;
}



.F-center{
    width: 100%;
    max-width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.F-center img{
    width: 90%;
    height: 50vh;
    background-size: cover/contain;
    box-shadow: 5px 5px 10px black;
    opacity: 0.7;
    border: 2px solid white;
    border-radius: 5px;
    z-index: -3;
}
.F-center img:hover{
    opacity: 1;
    transform: scale(1.02);
}




.details{
    width: 90%;
}




.feild{
    display: flex;
    /* justify-content: center; */
    flex-direction: column;
    /* align-items: center; */
    flex-wrap: wrap;
    width: 80%;
    margin-left: 20px;
    margin-top: 10px;
}
.feild input,.feild textarea {
    margin: 5px;
    padding: 5px;
}
.feild textarea{
    padding: 5px;
    width: 100%;
    overflow: auto;
    scrollbar-color: var(--main-color);
}
.feild textarea::-webkit-scrollbar{
    display: none;
}
.method-section{
    display: flex;

    justify-content: center;
    align-items: center;
    margin: 50px 0px;
    width: 100%;

}
.method-part{
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50%;
    height: 100%;
}
.show{
    width: 200px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--main-color);
    color: white;
    height: 25px;
    margin-top: 5px;
    border: none;
    border-radius: 5%;
    transition: all .40s ease;
}
.show:hover{
    background-color: var(--text-color);
    color: var(--main-color);
}
#masg{
    color: var(--main-color);
    margin-left: 5px;
}

.see-more{
    display: flex;
    flex-wrap: wrap;
}
.see-more img{
    width: 130px;
    height: 130px;
    border: 1px solid white;
    border-radius: 10px;
    margin: 5px;
}


@media (max-width:900px) {
    .F-center img{
    height: 200px;

}
   #navbar ul{
    display: none;
   }
   #bar{
    display: block;
   }
   .feild{
    width: 90%;
    margin: 10px;
}
}
