html {
  box-sizing: border-box;
  overflow-x: hidden;
}

*,
*::after,
*::before {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
}

:root {
  --purple: #24053e;
  --lightGreen: #44ffa1;
  --DarkGray: #584d62;
  --main-sec-padding: 150px;
}

body {
  font-family: "Source Code Pro", monospace;
}

::-webkit-scrollbar {
  width: 5px;
  background-color: var(--purple);
}

::-webkit-scrollbar-thumb {
  background-color: var(--lightGreen);
}

header .pattern-right, header .pattern-left {
  position: absolute;
  width: 181px;
}
header .pattern-right img, header .pattern-left img {
  width: 100%;
}
@media (max-width: 576px) {
  header .pattern-right, header .pattern-left {
    width: 100px;
  }
}

section.profile .parent .content h4 + p + button, header .central-text button {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  font-weight: bolder;
  margin: 30px auto 0px;
  padding: 18px 25px;
  border: 1.5px solid;
  background-color: var(--lightGreen);
  text-transform: capitalize;
  font-size: 16px;
  cursor: pointer;
  color: var(--purple);
  z-index: 1;
  position: relative;
  transition: 0.3s;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
}
section.profile .parent .content h4 + p + button::after, header .central-text button::after {
  position: absolute;
  content: "";
  width: 0%;
  left: 0;
  top: 0;
  height: 100%;
  background-color: var(--purple);
  transition: 0.3s;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
  z-index: -1;
}
section.profile .parent .content h4 + p + button:hover, header .central-text button:hover {
  color: var(--lightGreen);
}
section.profile .parent .content h4 + p + button:hover::after, header .central-text button:hover::after {
  width: 100%;
}
@media (max-width: 576px) {
  section.profile .parent .content h4 + p + button, header .central-text button {
    padding: 10px;
    font-size: 14px;
  }
}

header {
  position: relative;
  background-color: var(--purple);
  border-bottom-left-radius: 100px;
  border-bottom-right-radius: 100px;
  min-height: 65vh;
}
@media (max-width: 576px) {
  header {
    min-height: 400px;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
  }
}
header nav button {
  background: none;
  cursor: pointer;
  border: none;
  color: white;
  text-transform: capitalize;
  font-size: 17px;
  display: block;
  position: relative;
  z-index: 1;
  transition: 0.2s;
  -webkit-transition: 0.2s;
  -moz-transition: 0.2s;
  -ms-transition: 0.2s;
  -o-transition: 0.2s;
}
header nav button::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  background-color: var(--lightGreen);
  left: 0;
  bottom: -5px;
  transition: 0.2s;
  -webkit-transition: 0.2s;
  -moz-transition: 0.2s;
  -ms-transition: 0.2s;
  -o-transition: 0.2s;
  z-index: -1;
}
header nav button:hover {
  color: var(--purple);
}
header nav button:hover::after {
  height: 150%;
}
@media (max-width: 576px) {
  header nav button {
    font-size: 16px;
  }
}
header .central-text > span {
  text-align: center;
  color: white;
  font-size: 50px;
  text-transform: capitalize;
  display: block;
  max-width: 500px;
  margin: 0px auto;
}
@media (max-width: 576px) {
  header .central-text > span {
    font-size: 25px;
  }
}
header .central-text > span span {
  position: relative;
  z-index: 1;
  transition: 0.2s;
  -webkit-transition: 0.2s;
  -moz-transition: 0.2s;
  -ms-transition: 0.2s;
  -o-transition: 0.2s;
}
header .central-text > span span::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  background-color: var(--lightGreen);
  left: 0;
  bottom: -5px;
  transition: 0.2s;
  -webkit-transition: 0.2s;
  -moz-transition: 0.2s;
  -ms-transition: 0.2s;
  -o-transition: 0.2s;
  z-index: -1;
}
header .central-text > span span:hover {
  color: var(--purple);
}
header .central-text > span span:hover::after {
  height: 100%;
}
header .bottom-img {
  max-width: 500px;
  min-width: 250px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  bottom: -150px;
}
@media (max-width: 767px) {
  header .bottom-img {
    bottom: -60px;
  }
}
header .bottom-img img {
  width: 100%;
}
header .pattern-left {
  top: 180px;
  left: -28px;
}
header .pattern-right {
  top: 220px;
  right: -38px;
}

.cards {
  padding: var(--main-sec-padding) 0px 0px;
}
@media (max-width: 576px) {
  .cards {
    padding: calc(var(--main-sec-padding) - 60px) 0px;
  }
}
.cards .card {
  text-align: center;
  color: var(--DarkGray);
}
.cards .card span {
  width: 30px;
  height: 30px;
  border: 1px solid var(--DarkGray);
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  margin: 0px auto 20px;
  transition: 0.3s;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
  font-size: 18px;
}
.cards .card span + h2 {
  margin: 0px auto 20px;
  width: -moz-fit-content;
  width: fit-content;
  position: relative;
}
.cards .card span + h2::after {
  content: "";
  position: absolute;
  width: 20%;
  background-color: var(--DarkGray);
  height: 2px;
  left: 0;
  bottom: -10px;
  transition: 0.3s;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
}
.cards .card span + h2 + p {
  line-height: 1.8;
}
.cards .card:hover h2::after {
  width: 30%;
}
.cards .card:hover span {
  background-color: var(--DarkGray);
  color: white;
}

section.profile {
  padding: calc(var(--main-sec-padding) + 100px) 0px var(--main-sec-padding);
}
@media (max-width: 576px) {
  section.profile {
    transform: translateX(0px);
    padding: var(--main-sec-padding) 0px;
  }
}
section.profile .parent {
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
  margin: auto;
  transform: translateX(100px);
}
@media (max-width: 992px) {
  section.profile .parent {
    transform: translateX(0px);
  }
}
section.profile .parent .content {
  max-width: 500px;
  padding: 40px;
  background-color: var(--purple);
  color: white;
}
section.profile .parent .content h4 {
  font-size: 23px;
  font-weight: 600;
  margin-bottom: 30px;
}
section.profile .parent .content h4 + p {
  margin-bottom: 30px;
  line-height: 1.8;
}
section.profile .parent .content h4 + p + button {
  margin: 0;
  padding: 10px;
}
section.profile .parent .img {
  position: absolute;
  z-index: -1;
  left: -58%;
  width: 350px;
  top: -34%;
}
section.profile .parent .img img {
  width: 100%;
}
@media (max-width: 992px) {
  section.profile .parent .img {
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    top: -150px;
  }
}

footer {
  padding-bottom: 50px;
}
footer h3 {
  width: -moz-fit-content;
  width: fit-content;
  margin: 0px auto 30px;
}
footer ul {
  list-style: none;
}
footer ul li a {
  padding: 5px;
  margin: 0px 3px;
}/*# sourceMappingURL=main.css.map */