/* impoting fontfamily */
@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500;1,600;1,700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Raleway:ital,wght@0,400;0,500;0,600;0,700;0,800;0,900;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
@-webkit-keyframes bounce {
  0%, 100% {
    -webkit-transform: translateY(-10px);
            transform: translateY(-10px);
  }
  50% {
    -webkit-transform: translateY(3px);
            transform: translateY(3px);
  }
}
@keyframes bounce {
  0%, 100% {
    -webkit-transform: translateY(-10px);
            transform: translateY(-10px);
  }
  50% {
    -webkit-transform: translateY(3px);
            transform: translateY(3px);
  }
}
@-webkit-keyframes spin {
  to {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
@keyframes spin {
  to {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
.hero .bigHalfCircle {
  position: absolute;
  left: -5rem;
  top: 20%;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: -webkit-gradient(linear, left bottom, right top, from(#176ea3), color-stop(#09c7d9), to(#0bfcae));
  background: linear-gradient(to top right, #176ea3, #09c7d9, #0bfcae);
}
@media screen and (max-width: 767px) {
  .hero .bigHalfCircle {
    width: 120px;
    height: 120px;
    left: -3rem;
    top: 50%;
  }
}
@media screen and (max-width: 1024px) and (min-width: 768px) {
  .hero .bigHalfCircle {
    left: -5rem;
    top: 55%;
    width: 200px;
    height: 200px;
  }
}
.hero .manyDots {
  position: absolute;
  list-style: none;
  width: 70px;
  height: auto;
  right: 0.3rem;
  top: 50%;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 0.6rem 1fr 0.6rem 1fr 0.6rem 1fr 0.6rem 1fr;
  grid-template-columns: repeat(5, 1fr);
  gap: 0.6rem;
}
@media screen and (max-width: 1024px) and (min-width: 768px) {
  .hero .manyDots {
    right: 0.3rem;
    top: 70%;
  }
}
.hero .manyDots li {
  background-color: #09c7d9;
  height: 6px;
  border-radius: 50%;
}
.hero .smallCircle {
  position: absolute;
  top: 8%;
  left: 7%;
  width: 35px;
  height: 35px;
  background: -webkit-gradient(linear, left bottom, left top, from(#176ea3), to(#485196));
  background: linear-gradient(to top, #176ea3, #485196);
  border-radius: 50%;
}
.hero .rotatedSquare {
  position: absolute;
  top: 8%;
  right: 20%;
  width: 30px;
  height: 30px;
  background: -webkit-gradient(linear, left bottom, right top, from(#176ea3), color-stop(#09c7d9), to(#0bfcae));
  background: linear-gradient(to top right, #176ea3, #09c7d9, #0bfcae);
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  -webkit-animation: shapes 10s infinite ease-out;
          animation: shapes 10s infinite ease-out;
}
.hero .donutShape {
  position: absolute;
  bottom: 17%;
  left: 10%;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  outline: 0.7rem solid #09c7d9;
  background-color: #13141f;
  -webkit-animation: shapes 10s infinite ease-out;
          animation: shapes 10s infinite ease-out;
}
@media screen and (max-width: 1024px) and (min-width: 768px) {
  .hero .donutShape {
    bottom: 5%;
    left: 10%;
  }
}

@-webkit-keyframes shapes {
  0%, 100% {
    -webkit-transform: translateY(-15px);
            transform: translateY(-15px);
  }
  50% {
    -webkit-transform: translateY(5px) rotate(45deg);
            transform: translateY(5px) rotate(45deg);
  }
}

@keyframes shapes {
  0%, 100% {
    -webkit-transform: translateY(-15px);
            transform: translateY(-15px);
  }
  50% {
    -webkit-transform: translateY(5px) rotate(45deg);
            transform: translateY(5px) rotate(45deg);
  }
}
* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-family: "Raleway", sans-serif;
}

*:focus {
  outline: none;
  border: none;
}

html {
  scroll-behavior: smooth;
  background-color: #13141f;
}

body {
  background-color: #13141f;
  width: 100%;
  min-height: 100vh;
}

.container {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: auto;
}

header {
  width: 100%;
  height: 120px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0.5rem 6rem;
}
@media screen and (max-width: 767px) {
  header {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    height: 170px;
    padding: 1.5rem 0 0;
  }
}
header .logo {
  height: 50%;
  width: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 2rem;
}
@media screen and (max-width: 767px) {
  header .logo {
    height: 50px;
  }
}
header .logo .img-logo {
  display: inline-block;
  height: 100%;
  width: 40px;
  text-decoration: none;
  position: relative;
}
header .logo .img-logo::after {
  content: "";
  position: absolute;
  right: -1.1rem;
  top: 0;
  width: 4px;
  height: 100%;
  background-color: #176ea3;
  border-radius: 10px;
}
header .logo .img-logo:hover img {
  -webkit-filter: brightness(80%);
          filter: brightness(80%);
}
header .logo .img-logo img {
  width: 100%;
  height: 100%;
  -webkit-transition: 300ms;
  transition: 300ms;
}
header .logo .logo-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 100%;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
header .logo .logo-text h3 {
  color: #09c7d9;
  font-size: 1.2rem;
  font-weight: 600;
}
header .logo .logo-text .dev {
  text-decoration: none;
  font-weight: 600;
  color: #176ea3;
  font-size: 0.95rem;
  font-family: "Playfair Display", serif;
}
header .aside {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1rem;
}
header .aside .gitLink {
  text-decoration: none;
  padding: 8px 25px;
  border-radius: 20px;
  background: -webkit-gradient(linear, left top, right top, from(#09c7d9), to(#176ea3));
  background: linear-gradient(to right, #09c7d9, #176ea3);
  color: #13141f;
  -webkit-transition: all 300ms;
  transition: all 300ms;
  position: relative;
  z-index: 1;
  overflow: hidden;
  font-weight: 500;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.2rem;
}
header .aside .gitLink::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0;
  background-color: #0bfcae;
  z-index: -1;
  -webkit-transition: 300ms;
  transition: 300ms;
}
header .aside .gitLink:hover::before {
  height: 100%;
}
header .aside p {
  color: #0bfcae;
  font-size: 1.1rem;
  letter-spacing: 2px;
}
header .aside p span {
  font-size: 0.8rem;
}

.hero {
  width: 100%;
  height: 80vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  position: relative;
  overflow-x: hidden;
}
.hero h1 {
  font-weight: 800;
  text-transform: capitalize;
  text-align: center;
  font-size: 4rem;
  background: -webkit-gradient(linear, left top, right top, from(#176ea3), color-stop(#09c7d9), to(#0bfcae));
  background: linear-gradient(to right, #176ea3, #09c7d9, #0bfcae);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media screen and (max-width: 767px) {
  .hero h1 {
    font-size: 2rem;
  }
}
@media screen and (max-width: 1024px) and (min-width: 768px) {
  .hero h1 {
    font-size: 3.2rem;
  }
}
.hero .scroll {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.6rem;
}
.hero .scroll span {
  font-family: "Playfair Display", serif;
  font-size: 1.1rem;
  font-weight: 500;
  color: #0bfcae;
}
.hero .scroll .bounce {
  position: relative;
  -webkit-animation: bounce 1s infinite ease-out;
          animation: bounce 1s infinite ease-out;
}

.panelSection {
  width: 850px;
  height: auto;
  margin: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 2rem;
}
@media screen and (max-width: 767px) {
  .panelSection {
    width: 95%;
  }
}
@media screen and (max-width: 1024px) and (min-width: 768px) {
  .panelSection {
    width: 95%;
  }
}
.panelSection h3 {
  font-size: 2rem;
  font-family: "Playfair Display", serif;
  color: #09c7d9;
  text-align: center;
  text-transform: capitalize;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .panelSection h3 {
    font-size: 1.15rem;
  }
}
@media screen and (max-width: 1024px) and (min-width: 768px) {
  .panelSection h3 {
    font-size: 1.6rem;
  }
}
.panelSection .panelContainer.disable :where(.editor-panel, .reset-filter, .save-img) {
  opacity: 0.6;
  pointer-events: none;
}
.panelSection .panelContainer {
  width: 100%;
  height: auto;
  background-color: rgba(72, 81, 150, 0.2);
  border-radius: 10px;
  border: 1px solid rgba(9, 199, 217, 0.2);
  padding: 30px 35px 35px;
}
@media screen and (max-width: 767px) {
  .panelSection .panelContainer {
    padding: 25px;
  }
}
@media screen and (max-width: 1024px) and (min-width: 768px) {
  .panelSection .panelContainer {
    padding: 25px;
  }
}
.panelSection .panelContainer .wrapper {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 20px 0;
  min-height: 335px;
}
@media screen and (max-width: 767px) {
  .panelSection .panelContainer .wrapper {
    -ms-flex-wrap: wrap-reverse;
        flex-wrap: wrap-reverse;
  }
}
.panelSection .panelContainer .wrapper .editor-panel {
  width: 280px;
  padding: 15px 20px;
  border-radius: 5px;
  border: 1px solid rgba(11, 252, 174, 0.2);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 767px) {
  .panelSection .panelContainer .wrapper .editor-panel {
    width: 100%;
  }
}
@media screen and (max-width: 1024px) and (min-width: 768px) {
  .panelSection .panelContainer .wrapper .editor-panel {
    width: 370px;
  }
}
.panelSection .panelContainer .wrapper .editor-panel .title {
  display: block;
  font-size: 1.1rem;
  margin-bottom: 1rem;
  color: #0bfcae;
}
.panelSection .panelContainer .wrapper .editor-panel .options,
.panelSection .panelContainer .wrapper .editor-panel .controls {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.panelSection .panelContainer .wrapper .editor-panel button {
  height: 40px;
  font-size: 1rem;
  margin-bottom: 8px;
  border-radius: 3px;
  outline: none;
  border: none;
  cursor: pointer;
  background: -webkit-gradient(linear, right top, left top, from(#09c7d9), to(#176ea3));
  background: linear-gradient(to left, #09c7d9, #176ea3);
  color: #13141f;
  -webkit-transition: all 300ms;
  transition: all 300ms;
  position: relative;
  z-index: 1;
  overflow: hidden;
  font-weight: 500;
}
.panelSection .panelContainer .wrapper .editor-panel button::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0;
  background-color: #0bfcae;
  z-index: -1;
  -webkit-transition: 300ms;
  transition: 300ms;
}
.panelSection .panelContainer .wrapper .editor-panel button:hover::before {
  height: 100%;
}
.panelSection .panelContainer .wrapper .editor-panel .filter button {
  width: calc(50% - 4px);
}
.panelSection .panelContainer .wrapper .editor-panel .filter button.active::before {
  height: 100%;
}
.panelSection .panelContainer .wrapper .editor-panel .filter .slider {
  margin-top: 1.5rem;
}
@media screen and (max-width: 767px) {
  .panelSection .panelContainer .wrapper .editor-panel .filter .slider {
    margin-top: 0.5rem;
  }
}
.panelSection .panelContainer .wrapper .editor-panel .filter .slider .filter-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  color: #0bfcae;
  font-size: 1rem;
}
.panelSection .panelContainer .wrapper .editor-panel .filter .slider input {
  width: 100%;
  height: 6px;
  accent-color: #09c7d9;
  border: none;
  outline: none;
}
.panelSection .panelContainer .wrapper .editor-panel .rotate {
  margin-top: 2rem;
}
@media screen and (max-width: 767px) {
  .panelSection .panelContainer .wrapper .editor-panel .rotate {
    margin-top: 0.7rem;
  }
}
.panelSection .panelContainer .wrapper .editor-panel .rotate button {
  width: calc(25% - 3px);
}
.panelSection .panelContainer .wrapper .editor-panel .rotate button:nth-child(3), .panelSection .panelContainer .wrapper .editor-panel .rotate button:nth-child(4) {
  font-size: 1.1rem;
}
.panelSection .panelContainer .wrapper .preview-img {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-left: 20px;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .panelSection .panelContainer .wrapper .preview-img {
    width: 100%;
    margin: 0 0 15px;
  }
}
.panelSection .panelContainer .wrapper .preview-img img {
  max-width: 490px;
  max-height: 335px;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.panelSection .panelContainer .controls {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 767px) {
  .panelSection .panelContainer .controls {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}
.panelSection .panelContainer .controls .reset-filter {
  font-size: 1rem;
  padding: 11px 20px;
  border-radius: 5px;
  cursor: pointer;
  background-color: #09c7d9;
  color: #13141f;
  outline: none;
  border: none;
  font-weight: 500;
  position: relative;
  overflow: hidden;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0.2rem;
}
@media screen and (max-width: 767px) {
  .panelSection .panelContainer .controls .reset-filter {
    width: 100%;
  }
}
.panelSection .panelContainer .controls .reset-filter::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0;
  background-color: rgb(190, 59, 59);
  z-index: -1;
  -webkit-transition: 300ms;
  transition: 300ms;
}
.panelSection .panelContainer .controls .reset-filter:hover::before {
  height: 100%;
}
.panelSection .panelContainer .controls .reset-filter:hover {
  color: #13141f;
}
.panelSection .panelContainer .controls .reset-filter i {
  font-size: 1.3rem;
}
.panelSection .panelContainer .controls .row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.5rem;
}
@media screen and (max-width: 767px) {
  .panelSection .panelContainer .controls .row {
    margin-top: 2rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0.8rem;
    width: 100%;
  }
}
.panelSection .panelContainer .controls .row .choose-img {
  font-size: 1rem;
  padding: 11px 20px;
  border-radius: 5px;
  cursor: pointer;
  background-color: #09c7d9;
  color: #13141f;
  outline: none;
  border: none;
  font-weight: 500;
  position: relative;
  overflow: hidden;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0.2rem;
}
@media screen and (max-width: 767px) {
  .panelSection .panelContainer .controls .row .choose-img {
    width: 100%;
  }
}
.panelSection .panelContainer .controls .row .choose-img::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0;
  background-color: #0bfcae;
  z-index: -1;
  -webkit-transition: 300ms;
  transition: 300ms;
}
.panelSection .panelContainer .controls .row .choose-img:hover::before {
  height: 100%;
}
.panelSection .panelContainer .controls .row .choose-img:hover {
  color: #13141f;
}
.panelSection .panelContainer .controls .row .choose-img i {
  font-size: 1.3rem;
}
.panelSection .panelContainer .controls .row .save-img {
  font-size: 1rem;
  padding: 11px 20px;
  border-radius: 5px;
  cursor: pointer;
  background-color: #0bfcae;
  color: #13141f;
  outline: none;
  border: none;
  font-weight: 500;
  position: relative;
  overflow: hidden;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0.2rem;
}
@media screen and (max-width: 767px) {
  .panelSection .panelContainer .controls .row .save-img {
    width: 100%;
  }
}
.panelSection .panelContainer .controls .row .save-img::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0;
  background-color: #03d18e;
  z-index: -1;
  -webkit-transition: 300ms;
  transition: 300ms;
}
.panelSection .panelContainer .controls .row .save-img:hover::before {
  height: 100%;
}
.panelSection .panelContainer .controls .row .save-img:hover {
  color: #13141f;
}
.panelSection .panelContainer .controls .row .save-img i {
  font-size: 1.3rem;
}
.panelSection .panelContainer .controls .row .save-img p {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.2rem;
}
.panelSection .panelContainer .controls .row .save-img p i.bx-loader-alt {
  -webkit-animation: spin 1s infinite linear;
          animation: spin 1s infinite linear;
}

footer {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 140px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.3rem;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: -webkit-gradient(linear, left top, right top, from(#485196), color-stop(#176ea3), to(#09c7d9));
  background: linear-gradient(to right, #485196, #176ea3, #09c7d9);
  margin-top: 7rem;
}
footer p {
  color: #13141f;
  font-weight: 600;
  font-size: 1rem;
}
footer p a {
  text-decoration: none;
  color: #09c7d9;
  padding: 0 5px;
  -webkit-transition: 200ms;
  transition: 200ms;
}
footer p a:hover {
  text-decoration: underline;
  color: #0bfcae;
}
footer ul {
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 1rem;
}
footer ul a {
  text-decoration: none;
  color: #13141f;
  -webkit-transition: 200ms;
  transition: 200ms;
  padding: 8px 10px;
  background-color: #09c7d9;
  border-radius: 5px;
}
footer ul a:hover {
  background-color: #0bfcae;
}
footer ul a i {
  font-size: 1.1rem;
}