body {
  animation: fadeInAnimation ease 3s;
  animation-iteration-count: 1;
  animation-fill-mode: forwards;
  font-size: 15px;
  font-weight: 100;
}

@keyframes fadeInAnimation {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
body,
html {
  margin: 0;
  padding: 0;
  height: 100%;
}

body {
  font-family: "Open Sans", sans-serif;
  color: #fff;
  background: #ff7e67;
  background: radial-gradient(ellipse at top right, #ff7e67 0%, #ffb6a0 35%) no-repeat;
  background: radial-gradient(ellipse at 28% -65%, #fff 0%, #009cff 75%) no-repeat;
  background-size: 100vw 100vh;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

body.dark {
  background: #000;
  color: #fff;
}

body::-webkit-scrollbar {
  width: 5px;
  background-color: transparent;
}

body::-webkit-scrollbar-thumb {
  border-radius: 0;
  background-color: #f26c13;
}

::-webkit-scrollbar-track {
  border-radius: 0;
  background-color: #CCCCCC;
}

.flex {
  display: flex;
}

.flex-row {
  flex-direction: row;
}

.flex-row-reverse {
  flex-direction: row-reverse;
}

.flex-col {
  flex-direction: column;
}

.flex-col-reverse {
  flex-direction: column-reverse;
}

.flex-nowrap {
  flex-wrap: nowrap;
}

.flex-wrap {
  flex-wrap: wrap;
}

.flex-wrap-reverse {
  flex-wrap: wrap-reverse;
}

.flex-justify-content-start {
  justify-content: flex-start;
}

.flex-justify-content-end {
  justify-content: flex-end;
}

.flex-justify-content-center {
  justify-content: center;
}

.flex-justify-content-space-around {
  justify-content: space-around;
}

.flex-justify-content-space-evenly {
  justify-content: space-evenly;
}

.flex-justify-content-space-between {
  justify-content: space-between;
}

.flex-align-content-stretch {
  align-content: stretch;
}

.flex-align-items-baseline {
  align-items: baseline;
}

.flex-align-items-center {
  align-items: center;
}

.flex-align-items-start {
  align-items: flex-start;
}

.flex-align-items-end {
  align-items: flex-end;
}

.flex-align-content-stretch {
  align-content: stretch;
}

.flex-align-content-center {
  align-content: center;
}

.flex-align-content-start {
  align-content: flex-start;
}

.flex-align-content-end {
  align-content: flex-end;
}

.flex-align-content-space-around {
  align-content: space-around;
}

.flex-align-content-space-evenly {
  align-content: space-evenly;
}

.flex-align-content-space-between {
  align-content: space-between;
}

.gap-1 {
  gap: 1rem;
}

.gap-2 {
  gap: 2rem;
}

.gap-3 {
  gap: 3rem;
}

.gap-4 {
  gap: 4rem;
}

.gap-5 {
  gap: 5rem;
}

.w-100 {
  width: 100%;
}

#header {
  z-index: 2;
  position: fixed;
  background-color: #223344;
  border-bottom: 1px solid #ba652c;
}
#header #logo {
  width: 50px;
  margin: 5px;
}
#header #logo-text {
  font-family: "Julee";
  font-size: 36px;
}
#header #menu {
  margin-right: 15px;
}
#header #menu a {
  padding: 0 5px;
  cursor: pointer;
  transition: all 0.5s ease;
  border-bottom: 2px solid transparent;
}
#header #menu a:hover {
  border-bottom: 2px solid #ba652c !important;
}

#cover-svg {
  display: block;
  width: 100%;
  height: 100vh;
  position: relative;
}

#bottom-landscape {
  position: absolute;
  bottom: -10px;
  width: 100%;
}
#bottom-landscape svg {
  fill: #000c21;
}

#heading-mobile {
  display: none;
  position: absolute;
  margin-top: 150px;
  text-align: center;
  width: 100%;
  font-family: "Julee";
  font-size: 50px;
}

.ninja-font,
h1 {
  font-family: "Julee";
}

@media screen and (max-width: 400px) {
  #svgText {
    display: none;
  }
  #heading-mobile {
    display: inline-block;
  }
}
h1 {
  text-align: center;
}

#about-me {
  background-color: #000c21;
  padding: 50px 15vw;
}

#avatar {
  max-width: 200px;
  border-radius: 50%;
  border: solid 8px #ba652c;
}

#avatar-mobile {
  display: none;
  max-width: 100px;
  border-radius: 50%;
  margin: 10px;
  border: solid 2px #ba652c;
  float: right;
  shape-outside: circle();
}

@media screen and (max-width: 800px) {
  #avatar {
    width: 150px;
    border-width: 5px;
  }
}
@media screen and (max-width: 550px) {
  #avatar {
    display: none;
  }
  #avatar-mobile {
    display: inline;
  }
}
/* ============= Options ============= */
#why-me {
  overflow: hidden;
  transition: 0.25s;
  padding: 25px 25px 50px 25px;
}
#why-me .credit {
  position: absolute;
  bottom: 20px;
  left: 20px;
  color: inherit;
}
#why-me .options {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  overflow: hidden;
  max-width: 1100px;
  height: 400px;
  margin: auto;
}
#why-me .options .option {
  position: relative;
  overflow: hidden;
  width: 60px;
  margin: 10px;
  background: var(--optionBackground, var(--defaultBackground, #E6E9ED));
  background-size: 70%;
  background-repeat: no-repeat;
  background-position: top;
  background-position-y: 25px;
  background-color: #9db4bd;
  cursor: pointer;
  transition: 0.5s cubic-bezier(0.05, 0.61, 0.41, 0.95);
}
#why-me .options .option:nth-child(1) {
  --optionBackground: url(../Images/Option-1.svg);
  --defaultBackground:#495BC3;
}
#why-me .options .option:nth-child(2) {
  --optionBackground: url(../Images/Option-2.svg);
  --defaultBackground:#98A85E;
}
#why-me .options .option:nth-child(3) {
  --optionBackground: url(../Images/Option-3.svg);
  --defaultBackground:#ba652c;
}
#why-me .options .option:nth-child(4) {
  --optionBackground: url(../Images/Option-4.svg);
  --defaultBackground:#ABE456;
}
#why-me .options .option:nth-child(5) {
  --optionBackground: url(../Images/Option-5.svg);
  --defaultBackground:#E45658;
}
#why-me .options .option:nth-child(6) {
  --optionBackground: url(../Images/Option-6.svg);
  --defaultBackground:#62BBC9;
}
#why-me .options .option.active {
  flex-grow: 10000;
  transform: scale(1);
  width: 600px;
  margin: 0px;
  border-radius: 15px;
}
#why-me .options .option.active .shadow {
  box-shadow: inset 0 -120px 200px -120px black, inset 0 -120px 200px -100px black;
}
#why-me .options .option.active .label {
  bottom: 20px;
  left: 20px;
}
#why-me .options .option.active .label .info > div {
  left: 0px;
  opacity: 1;
}
#why-me .options .option:not(.active) {
  flex-grow: 1;
  border-radius: 15px;
  background-size: 300px;
  background-position: center;
}
#why-me .options .option:not(.active) .shadow {
  bottom: -40px;
  box-shadow: inset 0 -120px 0px -120px black, inset 0 -120px 0px -100px black;
}
#why-me .options .option:not(.active) .label {
  bottom: 10px;
  left: 10px;
  height: 40px;
}
#why-me .options .option:not(.active) .label .info > div {
  left: 20px;
  opacity: 0;
}
#why-me .options .option .shadow {
  position: absolute;
  bottom: 0px;
  left: 0px;
  right: 0px;
  height: 120px;
  transition: 0.5s cubic-bezier(0.05, 0.61, 0.41, 0.95);
}
#why-me .options .option .label {
  display: flex;
  position: absolute;
  right: 0px;
  height: 65px;
  transition: 0.5s cubic-bezier(0.05, 0.61, 0.41, 0.95);
}
#why-me .options .option .label .icon {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  min-width: 40px;
  max-width: 40px;
  height: 40px;
  border-radius: 100%;
  background-color: white;
  color: var(--defaultBackground);
}
#why-me .options .option .label .info {
  display: inline-block;
  margin-top: -25px;
  flex-direction: column;
  justify-content: center;
  margin-left: 10px;
  color: white;
}
#why-me .options .option .label .info > div {
  position: relative;
  transition: 0.5s cubic-bezier(0.05, 0.61, 0.41, 0.95), opacity 0.5s ease-out;
}
#why-me .options .option .label .info .main {
  font-weight: bold;
  font-size: 1.2rem;
}
#why-me .options .option .label .info .sub {
  transition-delay: 0.1s;
}
#why-me .list-options .list-option {
  min-width: 300px;
  max-width: 600px;
}
#why-me .list-options .list-option img {
  width: 100px;
  margin-right: 15px;
}
#why-me .list-options .list-option .main {
  font-size: 20px;
}

@media screen and (max-width: 1000px) {
  #about-me {
    padding: 50px;
  }
}
@media screen and (max-width: 800px) {
  #about-me {
    padding: 25px;
  }
}
#myBar {
  width: 0%;
  height: 3px;
  background-color: white;
  position: absolute;
  bottom: 120px;
}

#services {
  background-color: #1b2a38;
  padding-top: 25px;
}

#pricing-options .pricing-option {
  width: 350px;
  min-height: 500px;
  background: linear-gradient(45deg, #ee4d4f 0%, #faa05b 100%);
  border-radius: 15px;
}
#pricing-options .pricing-option h2 {
  font-size: 32px;
  text-align: center;
  font-weight: 300;
}
#pricing-options .pricing-option .price {
  text-align: center;
  font-size: 38px;
  font-weight: 400;
}
#pricing-options .pricing-option .price span {
  font-size: 12px;
  font-weight: 500;
}
#pricing-options .pricing-option:nth-child(1) {
  background: linear-gradient(45deg, #3661cc 0%, #61ccb1 100%);
}
#pricing-options .pricing-option:nth-child(2) {
  background: linear-gradient(45deg, #ee4d4f 0%, #faa05b 100%);
}
#pricing-options .pricing-option:nth-child(3) {
  background: linear-gradient(45deg, #0e9f50 0%, #c3fd42 100%);
}
#pricing-options .pricing-option:nth-child(4) {
  background: linear-gradient(45deg, #7825f3 0%, #d84df9 100%);
}

/* common */
.ribbon {
  width: 150px;
  height: 150px;
  overflow: hidden;
  position: absolute;
}

.ribbon span {
  position: absolute;
  display: block;
  width: 225px;
  padding: 15px 0;
  background-color: #f52e2e;
  padding-left: 5px;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  color: #fff;
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.3);
  text-transform: uppercase;
  text-align: center;
}

/* top right ribbon*/
.ribbon-top-right {
  margin-left: 205px;
  margin-top: -5px;
}

.ribbon-top-right span {
  left: -25px;
  top: 30px;
  transform: rotate(45deg);
}

.feature-list {
  padding: 0 25px;
}

/* tooltip*/
.tooltip {
  position: relative;
  display: inline-block;
  cursor: help;
}

.tooltip .tooltiptext {
  visibility: hidden;
  width: 200px;
  background-color: rgb(79, 80, 94);
  color: #fff;
  text-align: center;
  font-weight: 400;
  border-radius: 6px;
  padding: 10px;
  font-size: 12px;
  /* Position the tooltip */
  position: absolute;
  z-index: 1;
  right: 25px;
}

.tooltip:hover .tooltiptext {
  visibility: visible;
}

.tooltip .tooltiptext::after {
  content: " ";
  position: absolute;
  top: 10px;
  left: 100%;
  /* To the right of the tooltip */
  margin-top: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: transparent transparent transparent rgb(79, 80, 94);
}

s,
strike {
  text-decoration: none;
  position: relative;
}

s::before,
strike::before {
  top: 50%;
  /*tweak this to adjust the vertical position if it's off a bit due to your font family */
  background: red;
  /*this is the color of the line*/
  opacity: 0.7;
  content: "";
  width: 110%;
  position: absolute;
  height: 0.1em;
  border-radius: 0.1em;
  left: -5%;
  white-space: nowrap;
  display: block;
  transform: rotate(-15deg);
}

s.straight::before,
strike.straight::before {
  transform: rotate(0deg);
  left: -1%;
  width: 102%;
}

* {
  box-sizing: border-box;
}

#grid-list-toggle-container {
  position: absolute;
  right: 25px;
  padding: 15px;
  background-color: rgba(175, 175, 175, 0.1098039216);
  border-radius: 50%;
  z-index: 1;
  cursor: pointer;
}
#grid-list-toggle-container:hover {
  background-color: rgba(175, 175, 175, 0.3529411765);
}
#grid-list-toggle-container button {
  cursor: pointer;
  -webkit-appearance: none;
  border: 0;
  background: none;
  position: relative;
  display: block;
  height: 24px;
  width: 24px;
  padding: 0;
  transform: scale(1);
}
#grid-list-toggle-container button:focus {
  outline: 0;
}
#grid-list-toggle-container button .bar {
  border: 1px solid #FFF;
  position: absolute;
}
#grid-list-toggle-container button .bar:nth-child(1) {
  right: 0;
  top: 0;
  width: 12px;
  height: 14px;
}
#grid-list-toggle-container button .bar:nth-child(2) {
  top: 0px;
  width: 11px;
  height: 24px;
}
#grid-list-toggle-container button .bar:nth-child(3) {
  bottom: 0px;
  right: 0;
  width: 12px;
  height: 9px;
}
#grid-list-toggle-container button.list .bar:nth-child(1) {
  animation: grid-to-list-1 0.5s ease forwards;
  right: 0;
  top: 0;
}
#grid-list-toggle-container button.list .bar:nth-child(2) {
  animation: grid-to-list-2 0.5s ease forwards;
  left: 0;
}
#grid-list-toggle-container button.list .bar:nth-child(3) {
  animation: grid-to-list-3 0.5s ease forwards;
  right: 0;
}
#grid-list-toggle-container button.grid .bar:nth-child(1) {
  animation: list-to-grid-1 0.5s ease forwards;
  right: 0;
  top: 0;
}
#grid-list-toggle-container button.grid .bar:nth-child(2) {
  animation: list-to-grid-2 0.5s ease forwards;
  left: 0;
}
#grid-list-toggle-container button.grid .bar:nth-child(3) {
  animation: list-to-grid-3 0.5s ease forwards;
  right: 0;
}
@keyframes list-to-grid-1 {
  0% {
    width: 24px;
    height: 7px;
  }
  50% {
    width: 24px;
    height: 7px;
  }
  75% {
    width: 12px;
    height: 7px;
  }
  100% {
    width: 12px;
    height: 14px;
  }
}
@keyframes grid-to-list-1 {
  0% {
    width: 12px;
    height: 14px;
  }
  25% {
    width: 12px;
    height: 14px;
  }
  62.5% {
    width: 12px;
    height: 7px;
  }
  100% {
    width: 24px;
    height: 7px;
  }
}
@keyframes list-to-grid-2 {
  0% {
    top: 8px;
    width: 24px;
    height: 7px;
  }
  65% {
    top: 8px;
    width: 11px;
    height: 7px;
  }
  100% {
    top: 0px;
    width: 11px;
    height: 24px;
  }
}
@keyframes grid-to-list-2 {
  0% {
    top: 0px;
    width: 11px;
    height: 24px;
  }
  50% {
    top: 8px;
    width: 11px;
    height: 7px;
  }
  100% {
    top: 8px;
    width: 24px;
    height: 7px;
  }
}
@keyframes list-to-grid-3 {
  0% {
    width: 24px;
    height: 7px;
    bottom: 1px;
  }
  25% {
    width: 24px;
    height: 7px;
    bottom: 1px;
  }
  50% {
    width: 12px;
    height: 7px;
    bottom: 1px;
  }
  100% {
    width: 12px;
    height: 9px;
    bottom: 0px;
  }
}
@keyframes grid-to-list-3 {
  0% {
    width: 12px;
    height: 9px;
    bottom: 0px;
  }
  40% {
    width: 12px;
    height: 7px;
    bottom: 1px;
  }
  100% {
    width: 24px;
    height: 7px;
    bottom: 1px;
  }
}

.additional-features {
  padding: 0 25px 50px 25px;
}
.additional-features .additional-feature {
  max-width: 450px;
}
.additional-features .additional-feature .title {
  font-weight: 600;
}

#hamburger-icon {
  width: 30px;
  height: 22.5px;
  transform: rotate(0deg);
  transition: 0.5s ease-in-out;
  cursor: pointer;
  margin-right: 25px;
  display: none;
  position: absolute;
  right: 0px;
  z-index: 10;
}

#hamburger-icon span {
  display: block;
  position: absolute;
  height: 4px;
  width: 100%;
  background: #fff;
  border-radius: 9px;
  opacity: 1;
  left: 0;
  transform: rotate(0deg);
  transition: 0.25s ease-in-out;
}

#hamburger-icon span:nth-child(1) {
  top: 0px;
}

#hamburger-icon span:nth-child(2),
#hamburger-icon span:nth-child(3) {
  top: 8px;
}

#hamburger-icon span:nth-child(4) {
  top: 16px;
}

#hamburger-icon.open span:nth-child(1) {
  top: 8px;
  width: 0%;
  left: 50%;
}

#hamburger-icon.open span:nth-child(2) {
  transform: rotate(45deg);
}

#hamburger-icon.open span:nth-child(3) {
  transform: rotate(-45deg);
}

#hamburger-icon.open span:nth-child(4) {
  top: 8px;
  width: 0%;
  left: 50%;
}

@media screen and (max-width: 800px) {
  #hamburger-icon {
    display: block;
  }
  #menu {
    display: none;
  }
}
.sidenav {
  height: 100%;
  width: 0;
  position: fixed;
  z-index: 1;
  top: 0;
  right: 0;
  background-color: rgb(34, 51, 68);
  overflow-x: hidden;
  transition: 0.5s;
  padding-top: 60px;
  white-space: nowrap;
}

.sidenav a {
  padding: 8px 8px 8px 32px;
  text-decoration: none;
  font-size: 25px;
  display: block;
  transition: 0.3s;
}

.sidenav a:hover {
  background-color: rgba(255, 255, 255, 0.25);
}

.sidenav .closebtn {
  position: absolute;
  top: 0;
  right: 25px;
  font-size: 36px;
  margin-left: 50px;
}

@media screen and (max-height: 450px) {
  .sidenav {
    padding-top: 15px;
  }
  .sidenav a {
    font-size: 18px;
  }
}
#footer {
  text-align: center;
  font-size: 12px;
  min-height: 25px;
  background-color: #f26c13;
}
#footer a {
  text-decoration: none;
  font-family: "Julee";
  color: #fff;
  font-size: 15px;
  padding: 5px;
}

#contact .material-form-extra .material-input-wrapper {
  position: relative;
  margin-bottom: 24px;
}
#contact .material-form-extra .material-input-wrapper .material-input-extra {
  display: inline-block;
  padding: 16px 12px 16px;
  border-radius: 4px;
  border: 1px solid #000;
  font-size: 18px;
  color: #000;
  width: 100%;
  max-width: 312px;
}
#contact .material-form-extra .material-input-wrapper .material-input-extra:focus {
  outline: none;
  border: 2px solid green;
}
#contact .material-form-extra .material-input-wrapper .material-input-extra:focus ~ .material-label-extra, #contact .material-form-extra .material-input-wrapper .material-input-extra:valid ~ .material-label-extra {
  padding: 0 4px;
  top: -10px;
  background: #fff;
  font-size: 14px;
  color: green;
}
#contact .material-form-extra .material-input-wrapper .material-input-extra:hover {
  cursor: pointer;
}
#contact .material-form-extra .material-input-wrapper .material-label-extra {
  display: inline-block;
  position: absolute;
  top: 20px;
  left: 12px;
  pointer-events: none;
  color: rgba(0, 0, 0, 0.5);
  transition: all 0.2s ease-in-out;
}/*# sourceMappingURL=styles.css.map */