@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Open+Sans:ital,wdth,wght@0,75..100,300..800;1,75..100,300..800&display=swap');

body {
    padding-top: 0 !important;
    background: #fff !important;
}

.gray-background {
    background: rgb(246 246 246);
}

.mp-background {
    color: #fff;
    background: rgba(237, 102, 84, 1) !important;
}

p, ul li {
    font-size: 20px;
}

nav a:hover {
    color: rgba(237, 102, 84, 1) !important;
}

footer a:hover {
    color: rgba(237, 102, 84, 1) !important;
    border-bottom: 2px solid rgba(237, 102, 84, 1);
}

h1, h2, h3, h4, h5, h6 {
    line-height: 1.2em;
    color: #3e3e3e;
    letter-spacing: normal;
}

h1 strong, h2 strong, h3 strong, h4 strong, h5 strong, h6 strong {
    font-weight: bold;
}

h1 {
    font-size: 72px;
}

h2 {
    font-size: 42px;
}

h3 {
    font-size: 32px;
}

.navbar {
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.navbar-nav li a {
    font-size: 15px;
    padding: 15px 20px !important;
}

.get-started-button {
    font-size: 18px;
    font-weight: 700;
    padding: 15px 40px !important;
}

.get-started-button:hover {
    color: #fff !important;
    background: #383838 !important;
    border: 1px solid #383838;
}

.try-for-free {
    background: rgba(237, 102, 84, 1);
    font-weight: bolder;
    box-shadow: 0px 4px 8px 0px rgba(0,28,56,0.15);
    border-radius: 3px;
}

.try-for-free:hover {
    color: #fff !important;
    background: #383838 !important;
}

.try-for-free .nav-link {
    padding: 14px 25px !important;
    color: white !important;
}

.scale-on-hover {
    transform: scale(1);
    transform-origin: center;
    transition: transform 0.3s ease-in-out;
    backface-visibility: hidden;    
}

.scale-on-hover:hover {
    transform: scale(1.1);
    transform-origin: center;
    backface-visibility: hidden;
}

.load-hidden {
    visibility: hidden;
}

.fullwidth-separator {
    height: 3px;
    line-height: 20px;
    float: none;
    position: relative;
    margin: 80px 0;
    background: rgba(245, 245, 245, 1);
}

.back-to-top {
  cursor: pointer;
  position: fixed !important;
  bottom: 40px;
  right: 40px;
  display: block;
  z-index: 99;
  visibility: hidden;
  opacity: 0;
  -webkit-transform: translateY(50%);
  transform: translateY(50%);
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  border-radius: 10%;
  width: 52px;
  height: 52px;
  line-height: 52px;
  text-align: center;
}

.back-to-top-show {
  visibility: visible !important;
  opacity: 1 !important;
  -webkit-transform: translateY(0%);
  transform: translateY(0%);
}

.card-shadow {
    box-shadow: 0px 0px 30px 0px rgba(0, 44, 122, 0.13);
}

.arrow-left {
    position: absolute;
    width:70px; 
    top:-175px;
    left: -98px; 
}

.arrow-right {
    position: absolute;
    width:70px; 
    top:-175px;
    right: -98px; 
}

#sparkles-set-1-container {
    bottom: -41px; 
    left: -39px
}

#sparkles-set-2-container {
    top: -39px; 
    right: -39px
}

#throne-star {
    animation: yoyo 2.5s infinite ease-in-out;
}

#bell, #arrow, #cloud-1 {
    animation: yoyo 1.7s infinite ease-in-out;
}

#envelope, #percentage, #cloud-2 {
    animation: yoyo 1.5s infinite ease-in-out;
}

#heart, #bubble {
    animation: yoyo 1.3s infinite ease-in-out;
}

.scale-element-1, #diploma {
    animation: scale 1.6s infinite ease-in-out;
}

.scale-element-2 {
    animation: scale 1.3s infinite ease-in-out;
}

.scale-element-3 {
    animation: scale 1.4s infinite ease-in-out;
}

.scale-element-4 {
    animation: scale 1.5s infinite ease-in-out;
}

@keyframes scale {
    0%, 100% {
        transform: scale(1);
        transform-box: content-box;
    }
    50% {
        transform: scale(1.1);
        transform-box: content-box;
    }
}

@keyframes yoyo {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-35px);
    }
}

@media (max-width: 575.98px) { 
    #sparkles-set-1-container {
        width: 66px !important;
        bottom: -34px !important;
        left: -13px !important;
    }

    #sparkles-set-2-container {
        width: 66px !important;
        top: -44px !important;
        right: -13px !important;
    }

    .get-started-button {
        padding: 15px 10px !important;
    }

    h3 strong {
        font-size: 25px !important;
    }
 }

 @media (max-width: 650px) {
    .arrow-container {
        display: none !important;
    }
 }

.navbar > .container, .navbar > .container-fluid, .navbar > .container-sm, .navbar > .container-md, .navbar > .container-lg, .navbar > .container-xl, .navbar > .container-xxl {
    justify-content: space-around !important;
}

/* CONFETTI */
.confetti-container {
    width: 100%;
    height: 100%;
    position: absolute;
}

.confetti {
    width: 15px;
    height: 15px;
    background-color: #f2d74e;
    position: absolute;
    left: 50%;
    animation: confetti 5s ease-in-out -2s infinite;
    transform-origin: left top;

    &:nth-child(1) {
        background-color: #f2d74e;
        left: 10%;
        animation-delay: 0;
    }

    &:nth-child(2) {
        background-color: #95c3de;
        left: 20%;
        animation-delay: -5s;
    }

    &:nth-child(3) {
        background-color: #ff9a91;
        left: 30%;
        animation-delay: -3s;
    }

    &:nth-child(4) {
        background-color: #f2d74e;
        left: 40%;
        animation-delay: -2.5s;
    }

    &:nth-child(5) {
        background-color: #95c3de;
        left: 50%;
        animation-delay: -4s;
    }

    &:nth-child(6) {
        background-color: #ff9a91;
        left: 60%;
        animation-delay: -6s;
    }

    &:nth-child(7) {
        background-color: #f2d74e;
        left: 70%;
        animation-delay: -1.5s;
    }

    &:nth-child(8) {
        background-color: #95c3de;
        left: 80%;
        animation-delay: -2s;
    }

    &:nth-child(9) {
        background-color: #ff9a91;
        left: 90%;
        animation-delay: -3.5s;
    }

    &:nth-child(10) {
        background-color: #f2d74e;
        left: 100%;
        animation-delay: -2.5s;
    }
}

@keyframes confetti {
    0% {
        transform: rotateZ(15deg) rotateY(0deg) translate(0, 0);
    }

    25% {
        transform: rotateZ(5deg) rotateY(360deg) translate(-5vw, 20vh);
    }

    50% {
        transform: rotateZ(15deg) rotateY(720deg) translate(5vw, 60vh);
    }

    75% {
        transform: rotateZ(5deg) rotateY(1080deg) translate(-10vw, 80vh);
    }

    100% {
        transform: rotateZ(15deg) rotateY(1440deg) translate(10vw, 110vh);
    }
}