@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300&display=swap');
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Montserrat', sans-serif;

}
.formImg {
  display: flex;
  flex-wrap: wrap;
  position: relative;
  flex-direction: row;
  width: 100%;
  height: 80vh;
  justify-content: center;
  align-items: center;
}
.formImg select{
  position: absolute;
  top: 40%;
  margin-left: 70px;
  background-color: #252525;
}
.formImg form input{
  position: absolute;
  top: 40%;
  margin-left: -90px;
}
#img-btn {
  display: flex;
  font-size: 3vh;
  padding: 3px 10px;
  margin: 30px;
  border-radius: 50px;
  background-color: white;
  color: #252525;
}
h1 {
  position: absolute;
  top: 100px;
}
.img {
  display: flex;
  position: relative;
  flex-wrap: wrap;
  width: 100%;
  justify-content: center;
  align-items: center;
  padding-bottom: 100px;
}
.img-box {
  position: relative;
  width: auto;
  height: auto;
  padding-bottom: 10px;
}
.img-box i {
  position: absolute;
  color: red;
  padding-top: 15px;
}
.img-box i a{
    text-decoration: none;
    color: white;
}
.img h2 {
  position: absolute;
  top: -50px;
}
.img img {
  width: 80%;
  padding: 15px;
}

body {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  text-align: center;
}
.main {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  width: 80%;
  justify-content: center;
  align-items: center;
  padding-bottom: 100px;
}
.scroll {
  display: flex;
  position: absolute;
  justify-content: flex-end;
  align-items: center;
  bottom: -75%;
  height: 500px;
  width: 200px;
}
.loading {
  opacity: 1;
  display: flex;
  position: fixed;
  bottom: 30px;
  width: 100%;
  justify-content: center;
}
.loading img {
  width: 30px;
}
.containerf {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100vh;
  background-color: #e6e6e6;
}
.containerf form{
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 50%;
}
.containerf form h2{
    margin: 30px;
}
.containerf form input{
    width: 300px;
    height: 60px;
    border-radius: 30px;
    margin: 10px;
    border: 0;
    outline: 0;
    padding-left: 20px;
    font-size: 2vh;
    font-weight: bold;
}
.containerf form button{
    width: 150px;
    height: 50px;
    border: 0;
    outline: 0;
    background-color: #252525;
    color: white;
    border-radius: 30px;
    margin: 10px;
}
.containerf form input:focus{
    width: 320px;
}
.containerf form button:active{
    width: 170px;
}
#navbar{
    display: flex;
    position: relative;
    background-color: #252525;
    width: 100%;
    height: 80px;
    align-items: center;
}
#navbar img{
    width: 150px;
    margin-left: 50px;
}
#navbar a{
    position: absolute;
    color: white;
    right: 40px;
    text-decoration: none;
  }
.ajax-loader{
  position: fixed;
  bottom: 30px;
}