/* Colors */
/* Shadows */
/* General */
main {
  line-height: 1.5; }

/* Color styles */
.c-1 {
  color: #9356DC; }

.c-white {
  color: rgba(255, 255, 255, 0); }

.c-gray {
  color: #5e5e5e; }

.bg-gray-dark {
  background-color: #eaeaea; }

.bg-gray-light {
  background-color: #f6f6f6; }

/* Loading screen */
@keyframes spin {
  0% {
    transform: rotate(0deg); }
  100% {
    transform: rotate(360deg); } }

@keyframes come-into-focus {
  80% {
    filter: blur(20px); }
  100% {
    filter: none; } }

/* hide overlay after loading */
@keyframes fade-out-top {
  0% {
    opacity: 1;
    top: 0; }
  98% {
    opacity: 0;
    top: 0; }
  100% {
    top: 100vh; } }

.blur {
  filter: blur(20px);
  animation: come-into-focus 0.5s forwards 2s; }

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  z-index: 10;
  background-color: rgba(255, 255, 255, 0.8);
  animation: fade-out-top 1s forwards 2s; }
  .overlay .spinner {
    position: absolute;
    width: 70px;
    height: 70px;
    margin: auto;
    inset: 0;
    border: 4px solid #eaeaea;
    border-top: 4px solid #FF79DA;
    border-radius: 50%;
    animation: spin 1s linear infinite; }

/* Fonts 
Roboto for text */
body {
  font-family: 'Roboto', sans-serif; }

/* Shrikhand for headings */
h1,
.shrik {
  font-family: 'Shrikhand', cursive; }

/* Sizes */
.fs-14 {
  font-size: 14px; }

.fs-18 {
  font-size: 18px; }

.fs-20 {
  font-size: 20px; }

.fs-22 {
  font-size: 22px; }

.fw-300 {
  font-weight: 300; }

.fw-700 {
  font-weight: 700; }

/* Layout */
.txt-center {
  text-align: center; }

.pos-rel {
  position: relative; }

/* Flex layout */
.flex {
  display: flex; }

.col {
  flex-direction: column; }

.wrap {
  flex-wrap: wrap; }

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

.ag-c {
  align-items: center; }

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

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

.f-basic {
  flex: 1 1 auto; }

.f-350 {
  flex: 1 1 350px; }

.gap-7 {
  gap: 7px; }

.gap-20 {
  gap: 20px; }

.gap-40 {
  gap: 40px; }

.col-g-20 {
  column-gap: 20px; }

/* Dimensions */
.mx-h-50 {
  max-height: 50vh; }

.w-full {
  width: 100%; }

.w-190 {
  width: 190px; }

.w-200 {
  width: 200px; }

/* Margin */
.m-auto {
  margin: auto; }

.m-v-15 {
  margin: 15px 0; }

.m-top-over {
  margin-top: -50px; }

.m-b-20 {
  margin-bottom: 20px; }

/* Padding */
.pad-r-10 {
  padding-right: 10px; }

.pad-15 {
  padding: 15px; }

.pad-v-15 {
  padding: 15px 0; }

.pad-h-15 {
  padding: 0 15px; }

.pad-r-15 {
  padding-right: 15px; }

.pad-b-15 {
  padding-bottom: 15px; }

.pad-25 {
  padding: 25px; }

.pad-30 {
  padding: 30px; }

.pad-30-15 {
  padding: 30px 15px; }

.pad-b-50 {
  padding-bottom: 50px; }

/* Misc */
.sp-05 {
  letter-spacing: 0.5px; }

.hidden {
  display: none; }

.ovf-hid {
  overflow: hidden; }

.z-behind {
  z-index: -1; }

/* Suspension points */
.txt-ovf-elip {
  overflow: hidden; }

.txt-ovf-elip strong,
span {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis; }

/* Image fit */
.of-coverh180 {
  object-fit: cover;
  height: 180px;
  width: 100%; }

.of-cover100 {
  object-fit: cover;
  height: 100%;
  width: 100%; }

/* Icon demisension */
.i-spec i {
  height: 20px;
  width: 20px; }

.i-spec-small i {
  height: 15px;
  width: 15px; }

/* Border */
.rounded-top {
  border-radius: 30px 30px 0 0; }

/* Header */
header {
  position: relative;
  z-index: 5;
  height: fit-content;
  box-shadow: 0 3px 5px -2px #c7c7c7; }

header .logo {
  box-sizing: content-box;
  height: 30px;
  width: fit-content;
  padding: 25px 0 15px 0; }

/* Buttons */
.main-button {
  color: white;
  padding: 15px 25px;
  border-radius: 30px;
  background: linear-gradient(355deg, #9356DC 0%, #FF79DA 100%);
  box-shadow: 2px 6px 10px #c7c7c7;
  transition: all 0.3s ease-out; }
  .main-button:hover {
    opacity: 0.7;
    box-shadow: 2px 6px 7px #8e8e8e; }

.centered {
  display: block;
  margin: 15px auto; }

/* Steps */
.step {
  position: relative;
  flex: 1 1 300px;
  counter-increment: step-counter;
  padding: 20px;
  border-radius: 15px;
  box-shadow: 2px 4px 10px #e1e1e1;
  background-color: #f6f6f6; }
  .step:last-child {
    background-color: rgba(147, 86, 220, 0.1); }
  .step::before {
    /* Use counter increment to write 1, 2, 3 */
    content: counter(step-counter);
    position: absolute;
    left: -14px;
    font-size: 14px;
    height: 24px;
    width: 24px;
    text-align: center;
    line-height: 2;
    color: white;
    background-color: #9356DC;
    border-radius: 50%; }
  .step span {
    float: left; }

/* Card */
.card {
  position: relative;
  flex: 1 1 300px;
  border-radius: 15px;
  box-shadow: 2px 4px 10px #e1e1e1;
  background-color: #fff;
  overflow: hidden; }
  .card .new {
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 14px;
    font-weight: 600;
    color: #098c6c;
    background-color: #99E2D0;
    padding: 4px 24px;
    border-radius: 3px;
    box-shadow: 2px 4px 5px #4a4a4a; }

/* Menu link spans the whole card */
.stretch-link {
  position: absolute;
  inset: 0; }
  .stretch-link h4, .stretch-link p {
    position: relative;
    left: 15px;
    top: 195px; }

/* Heart button */
.heart-button:hover .heart-icon {
  animation: fade-out 1s forwards 0.5s; }

.heart-button:hover .heart-filled::after {
  animation: fill-up 2s forwards; }

.heart-icon,
.heart-filled {
  position: absolute;
  width: 25px;
  height: 22px;
  right: 20px;
  bottom: 40px; }

/* empty hear outline */
.heart-icon {
  color: rgba(0, 0, 0, 0);
  -webkit-text-stroke: 1px #000; }

/* gradient fill-up animation */
.heart-filled {
  color: rgba(0, 0, 0, 0);
  clip-path: url(#heart);
  transform: scale(0.85); }
  .heart-filled.bigger {
    transform: scale(0.9); }

.heart-filled::after {
  content: "";
  position: absolute;
  display: block;
  height: 45px;
  width: 45px;
  top: 22px;
  left: -11px;
  border-radius: 38%;
  background: linear-gradient(15deg, #FF79DA 0%, #9356DC 100%); }

/* animations */
@keyframes fade-out {
  from {
    opacity: 1; }
  to {
    opacity: 0; } }

@keyframes fill-up {
  from {
    opacity: 0;
    transform: rotate(0); }
  to {
    opacity: 1;
    transform: rotate(360deg);
    top: -2px; } }

/* Footer */
footer {
  color: white;
  background-color: #353535; }

/* media queries 

small screen */
@media screen and (min-width: 700px) {
  .s-700-wrap {
    flex-direction: row;
    flex-wrap: wrap; }
  footer .pad-b-15 {
    padding-bottom: 0; } }

/* small to medium screen */
@media screen and (min-width: 823px) {
  .ms-container {
    margin: 30px;
    padding: 30px;
    border-radius: 15px; }
  .bg-gray-dark {
    width: unset;
    margin: 20px 30px;
    border-radius: 15px; }
  .ms-pad-b-30 {
    padding-top: 5px;
    padding-bottom: 30px; }
  .card {
    flex: 1 1 500px; } }

/* big screens */
@media screen and (min-width: 1660px) {
  .card {
    min-width: 600px; } }

@media screen and (min-width: 1760px) {
  .card {
    flex: 1 1 810px; }
  .cap {
    margin: 50px 20px; } }

/* cap content for extra large screen */
@media screen and (min-width: 2589px) {
  main {
    max-width: 2589px;
    min-height: calc(100vh - 200px);
    margin: auto; }
  .cap {
    max-width: 2549px;
    margin: 50px auto; } }
