* {
  padding: 0;
  margin: 0;
}
.title-ahead {
  text-align: center;
}
.title-head1{
  text-align: center;
}
.main-f-container{
  border: 2px solid brown;
  border-radius: 15px;
  margin: 1%;
  padding: 1.3%;
}
.f-container{
  /* border: 2px solid black; */
  height: 100%;
  display: flex;
  justify-content: space-evenly;
  flex-wrap: wrap;
}
.f-container_item{
  margin: 0.2%;
  padding: 27px;
  /* border: 2px solid red; */
  width: 25%;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
  transition: 0.5s;
  border-radius: 15px;
}
.f-container_item:hover{
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}
.bton{
  text-align: center;
    width: 35%;
    height: 39px;
    border-radius: 9px;
    background-color: #1c89ff;
    border: solid 1px transparent;
    color: #fff;
    font-size: 1.3em;
    font-weight: 300;
    cursor: pointer;
    transition: all .1s ease-in-out;
}
.bton:hover{
  background-color: white;
  color: black;
  border-color: black;
  transition: all .1s ease-in-out;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px, rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
}
.link-title{
  color: black;
  text-decoration: none;
  transition: 0.3s;
}
.link-title:hover{
  color: #1c89ff;
}

@media screen and (max-width: 1300px) {
  .main-f-container{
    margin: 35px auto;
    width: 95%;
    background-color: #c2e9fb;
  }
  .title-ahead{
    font-size: 4em;
  }
  .title-head{
    font-size: 3.2em;
    text-align: center;
  }
  .title-head1{
    font-size: 2.7em;
  }
  .content-f-container{
    font-size: 2em;
    text-align: center;
  }
  .f-container{
    flex-direction: column;
    align-items: center;
  }
  .f-container_item{
    background: linear-gradient(#ffecd2,#fcb69f);
    width: 80%;
    border: 1px solid black;
    margin: 10px 0px;
  }
  .bton {
    font-size: 2.2em;
    height: 63px;
  }
}