@font-face {
  font-family: "Asap";
  src: url(../fonts/Asap/static/Asap-Regular.ttf) format("truetype");
}

@font-face {
  font-family: "Abril Fatface";
  src: url(../fonts/Abril_Fatface/AbrilFatface-Regular.ttf) format("truetype");
}

.container {
  margin: auto;
  width: 80%;
  height: 100%;
}

html {
  font-size: 100%;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

*,
::after,
::before {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Asap";
  outline: none;
}

a {
  text-decoration: none;
}

li {
  list-style: none;
}

.navigation {
  width: 100%;
  height: 90px;
  background-color: #ffffff;
  border: none;
}

.navigation .container {
  display: flex;
  justify-content: space-between;
}

.navigation .container .logo {
  width: 40%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000000;
}

.navigation .container .logo span {
  font-size: 1.5rem;
  font-family: "Abril Fatface";
}

.navigation .container .logo .logo-img {
  width: 60px;
  height: 60px;
}

.navigation .container ul {
  width: 60%;
  height: 100%;
  display: flex;
  align-items: center;
}

.navigation .container ul li {
  height: 50%;
  margin-left: 1.2rem;
  position: relative;
  display: flex;
  flex-flow: column wrap;
  justify-content: center;
}

.navigation .container ul li a {
  font-size: 1.2rem;
  color: #000000;
}

.navigation .container ul li::after {
  content: "";
  width: 0;
  height: 5px;
  background: linear-gradient(to right, #f77737, #e1306c, #fd1d1d);
  position: absolute;
  bottom: 0;
  left: 0;
  border-radius: 100px;
  -webkit-border-radius: 100px;
  -moz-border-radius: 100px;
  -ms-border-radius: 100px;
  -o-border-radius: 100px;
  transition: width 0.3s ease-in-out;
  -webkit-transition: width 0.3s ease-in-out;
  -moz-transition: width 0.3s ease-in-out;
  -ms-transition: width 0.3s ease-in-out;
  -o-transition: width 0.3s ease-in-out;
}

.navigation .container ul li:hover::after {
  width: 100%;
}

#main {
  padding: 3rem 0;
  width: 100%;
  height: 800px;
  background: linear-gradient(45deg, #405de6, #833ab4, #fd1d1d);
}

#main .container {
  display: flex;
  flex-flow: column wrap;
  align-items: center;
  justify-content: space-evenly;
  position: relative;
}

#main .container .loading {
  width: 40px;
  height: 40px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  display: none;
  animation: rotate 1s infinite alternate;
  -webkit-animation: rotate 1s infinite alternate;
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
  }
  to {
    transform: rotate(720deg);
    -webkit-transform: rotate(720deg);
    -moz-transform: rotate(720deg);
    -ms-transform: rotate(720deg);
    -o-transform: rotate(720deg);
  }
}

#main .container .title {
  width: 100%;
  text-align: center;
  font-size: 4rem;
  color: #ffffff;
  margin-bottom: 2rem;
}

#main .container .searchBox {
  width: 60%;
  height: max-content;
  border-radius: 100px;
  background-color: #ffffff;
  -webkit-border-radius: 100px;
  -moz-border-radius: 100px;
  -ms-border-radius: 100px;
  -o-border-radius: 100px;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  padding: .2rem 0;
}

#main .container .searchBox #inputSearch {
  width: 70%;
  padding: 1.5rem 2rem;
  font-size: 1.2rem;
  width: 50%;
  border: none;
}

#main .container .searchBox #btnSearch {
  background-color: #405de6;
  color: #ffffff;
  border: none;
  border-radius: 100px;
  -webkit-border-radius: 100px;
  -moz-border-radius: 100px;
  -ms-border-radius: 100px;
  -o-border-radius: 100px;
  padding: .8rem 2rem;
  font-size: 1.2rem;
  cursor: pointer;
}

#main .container .searchBox #selectBox {
  font-size: 1.2rem;
  padding: 0.5rem;
  border: none;
}

#main .container .resultBoxProfile {
  width: 80%;
  height: 450px;
  background-color: #eee;
  display: none;
}

#main .container .resultBoxMedia {
  width: 80%;
  height: 450px;
  background-color: #e4e4e4;
  display: flex;
  border-radius: 10px;
  opacity: 0;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  transition: opacity 1s ease-in-out;
  -webkit-transition: opacity 1s ease-in-out;
  -moz-transition: opacity 1s ease-in-out;
  -ms-transition: opacity 1s ease-in-out;
  -o-transition: opacity 1s ease-in-out;
}

#main .container .resultBoxMedia .left {
  width: 50%;
  height: 100%;
  padding: 0.5rem;
}

#main .container .resultBoxMedia .left #resultBox {
  width: 100%;
  height: 90%;
}

#main .container .resultBoxMedia .left .statistics {
  width: 100%;
  height: 10%;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
}

#main .container .resultBoxMedia .left .statistics .likes,
#main .container .resultBoxMedia .left .statistics .comments {
  display: flex;
  align-items: center;
  justify-content: space-evenly;
}

#main .container .resultBoxMedia .left .statistics .icon {
  font-size: 1.5rem;
  margin: 0 0.5rem;
}

#main .container .resultBoxMedia .left .statistics .number {
  font-size: 1.2rem;
}

#main .container .resultBoxMedia .right {
  width: 50%;
  height: 100%;
  display: flex;
  flex-flow: column wrap;
  align-items: center;
  justify-content: space-evenly;
}

#main .container .resultBoxMedia .right #profile {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  object-fit: cover;
}

#main .container .resultBoxMedia .right .info {
  width: 100%;
  height: 15%;
}

#main .container .resultBoxMedia .right .info #userName {
  text-align: center;
  margin: 0.5rem;
}

#main .container .resultBoxMedia .right .info #Name {
  text-align: center;
  margin: 0.5rem;
  color: #808080;
}

#main .container .resultBoxMedia .right .buttons {
  width: 100%;
  height: 40%;
  display: flex;
  flex-flow: column wrap;
  align-items: center;
  justify-content: center;
}

#main .container .resultBoxMedia .right .buttons .btnDownload {
  background-color: #405de6;
  color: #ffffff;
  border-radius: 100px;
  -webkit-border-radius: 100px;
  -moz-border-radius: 100px;
  -ms-border-radius: 100px;
  -o-border-radius: 100px;
  font-size: 1.2rem;
  padding: 0.7rem 3rem;
  margin: 0.5rem;
  box-shadow: 0 4px 8px 0 #405de6;
  transition: all 0.3s;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
}

#main .container .resultBoxMedia .right .buttons .btnDownload:hover {
  box-shadow: none;
}

#howToUse {
  width: 100%;
  height: 580px;
  background-color: #ffffff;
}

#howToUse .container {
  display: flex;
  flex-flow: column wrap;
  align-items: center;
  justify-content: space-around;
}

#howToUse .container .heading {
  width: 100%;
  height: 120px;
}

#howToUse .container .heading .title {
  color: #000000;
  font-size: 4rem;
  width: 100%;
  height: max-content;
  padding: 0.5rem 0;
  text-align: center;
  border-bottom: 2px solid #8d8d8d;
  margin-bottom: 1rem;
}

#howToUse .container .heading .desc {
  color: #5c5c5c;
  font-size: 1.2rem;
  width: 100%;
  height: max-content;
  text-align: center;
}

#howToUse .container .steps {
  width: 100%;
  height: 380px;
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  justify-content: center;
  column-gap: 0.5rem;
}

#howToUse .container .steps .next {
  width: 5%;
  height: max-content;
  display: flex;
  justify-content: center;
  align-items: center;
}

#howToUse .container .steps .next .icon {
  color: #fd1d1d;
  font-size: 2.5rem;
}

#howToUse .container .steps .step {
  width: 28.33%;
  height: 100%;
  background-color: #ffffff;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.3);
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  position: relative;
}

#howToUse .container .steps .step:first-child::after {
  content: "1";
  font-size: 1.5rem;
  font-family: "Asap";
  color: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: .5rem 1rem;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  position: absolute;
  background: linear-gradient(#e1306c, #fd1d1d);
  top: -15px;
  left: -20px;
}

#howToUse .container .steps .step:last-child::after {
  content: "3";
  font-size: 1.5rem;
  font-family: "Asap";
  color: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: .5rem 1rem;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  position: absolute;
  background: linear-gradient(#e1306c, #fd1d1d);
  top: -15px;
  left: -20px;
}

#howToUse .container .steps .step.second:after {
  content: "2";
  font-size: 1.5rem;
  font-family: "Asap";
  color: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: .5rem 1rem;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  position: absolute;
  background: linear-gradient(#e1306c, #fd1d1d);
  top: -15px;
  left: -20px;
}

#howToUse .container .steps .step .step-img {
  width: 100%;
  height: 60%;
  background-color: #8d8d8d;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}

#howToUse .container .steps .step .description {
  width: 100%;
  height: 40%;
  padding: 0 1.5rem;
}

#howToUse .container .steps .step .description .step-title {
  width: 100%;
  height: max-content;
  margin: 0.5rem 0;
  padding: 0.5rem 0;
  text-align: center;
  border-bottom: 2px solid red;
}

#howToUse .container .steps .step .description .step-desc {
  width: 100%;
  height: max-content;
  text-align: center;
}

#features {
  padding: 3rem 0;
  width: 100%;
  height: max-content;
}

#features .container {
  display: flex;
  flex-flow: column wrap;
}

#features .container .title {
  width: 100%;
  height: max-content;
  padding: 1rem 0;
  font-size: 5rem;
  text-align: center;
}

#features .container .features-box {
  width: 100%;
  height: 1200px;
}

#features .container .features-box .feature {
  width: 100%;
  height: 350px;
  margin: 2rem 0;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  background-color: whitesmoke;
  display: flex;
  flex-flow: row nowrap;
  box-shadow: 0px 4px 8px 0 rgba(0, 0, 0, 0.5);
}

#features .container .features-box .feature .image {
  width: 50%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
}

#features .container .features-box .feature .description {
  width: 50%;
  height: 100%;
  padding: 5.5rem 1.25rem;
  display: flex;
  flex-flow: column wrap;
  justify-content: space-between;
}

#features .container .features-box .feature .description .featuer-title {
  width: 100%;
  font-size: 4rem;
}

#features .container .features-box .feature .description .featuer-desc {
  font-size: 1.2rem;
  width: 100%;
}
/*# sourceMappingURL=style.css.map */