/* Reset font size */
/* Large Desktop */
@media only screen and (min-width: 1600px) {
  body,
  html,
  #navigation {
    font-size: 100%;
  }
}
/*-- -------------------------- -->
<---       How it Works         -->
<--- -------------------------- -*/
/* Mobile */
@media only screen and (min-width: 0em) {
  #hero .left-section {
    padding: 9.125em 1em 3.75em;
    /* max-width: 25em; */
    /* max-width: 100em; */
    width:100%;
  }
  #hero .left-section .topper {
    font-size: 2em;
    line-height: 1.5em;
    color: #7944EB;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 1em;
    font-family: 'Ubuntu', Arial, sans-serif;
  }
  #hero .left-section h2 {
    /* font-size: 2.4375em; */
    font-size: 2em;
   
    font-weight: bold;
    line-height: 1.15384615;
    color: #1D005A;
    margin-bottom: 0.41025641em;
  }
  #hero .left-section p {
    font-size: 1.125em;
    line-height: 1.5em;
    color: #4E4B66;
  }
  #hero .right-section {
    font-size: inherit;
    display: block;
    width: 100%;
    background: linear-gradient(68.7deg, #69e0db -5.2%, #236ddb 19.79%, #5d28d1 59.59%);
    padding: 2.5em 2em;
    text-decoration: none;
  }
  #hero .right-section .topper {
    display: block;
    font-family: 'Ubuntu', Arial, sans-serif;
    font-size: 1em;
    line-height: 1.5em;
    color: #ABFFFB;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 1em;
  }
  #hero .right-section h3 {
    font-size: 1.9375em;
    font-weight: bold;
    line-height: 1.32258065;
    color: #fff;
    margin-bottom: 0.51612903em;
    max-width: 12.90322581em;
  }
  #hero .right-section p {
    font-size: 1em;
    line-height: 1.5em;
    color: #fff;
    max-width: 25em;
  }
  #hero .right-section .read {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin-top: 1.5rem;
    font-size: 0.8125rem;
    color: #fff;
  }
  #hero .right-section .read img {
    margin-left: 0.5rem;
    width: 1.5rem;
    height: 1.5rem;
  }
}
/* Tablet */
@media only screen and (min-width: 48em) {
  #hero {
    padding-top: 11.3125em;
  }
  #hero .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 95%;
    max-width: 68.125em;
  }
  #hero .left-section {
    padding: 0;
    margin-right: 3.125em;
    /* max-width: 26.5em; */
    width:95%;
  }
  #hero .right-section {
    max-width: 33.4375em;
    border-radius: 0.5em;
    padding: 3.75em;
  }
}
/* Small Desktop */
@media only screen and (min-width: 64em) {
  #hero .left-section .topper {
     font-size: 1.8em; 
    /* font-size: 2em; */
    margin-bottom: 1.2em;
  }
  #hero .left-section h2 {
    font-size: 3.0625em;
    /* font-size: 2.9em; */
    margin-bottom: 0.48979592em;
  }
  #hero .left-section p {
    font-size: 1.5625em;
  }
  #hero .right-section {
    position: relative;
    z-index: 1;
  }
  #hero .right-section:before {
    /* top right box */
    content: '';
    width: 100%;
    height: 100%;
    background: linear-gradient(275.68deg, #ee006d 0.68%, #ff7349 100%);
    opacity: 0;
    position: absolute;
    display: block;
    top: 0;
    left: 0;
    border-radius: 0.5em;
    z-index: -1;
    transition: opacity .3s;
    pointer-events: none;
  }
  #hero .right-section:hover:before {
    opacity: 1;
  }
  #hero .right-section:hover .topper {
    color: #fff;
  }
  #hero .right-section .topper {
    font-size: 1.25em;
    margin-bottom: 1.2em;
  }
  #hero .right-section h3 {
    font-size: 2.4375em;
    margin-bottom: 0.61538462em;
  }
  #hero .right-section p {
    font-size: 1.3125em;
  }
}
/* Dark Mode */
@media only screen and (min-width: 0em) {
  body.dark-mode #hero .left-section .topper {
    color: #69E0DB;
  }
  body.dark-mode #hero .left-section h2,
  body.dark-mode #hero .left-section p {
    color: #FAFBFC;
  }
}
/*-- -------------------------- -->
<---           Tools            -->
<--- -------------------------- -*/
/* Mobile */
@media only screen and (min-width: 0em) {
  #tools {
    padding: 1em 1em 0;
  }
  #tools .container {
    margin-bottom: 3.75em;
  }
  #tools .card {
    font-size: inherit;
    display: block;
    text-decoration: none;
    padding: 1.5em;
    border-radius: 0.5em;
    margin-bottom: 1em;
  }
  #tools .card.blue {
    background-color: rgba(63, 136, 245, 0.1);
  }
  #tools .card.blue .topper {
    color: #3F88F5;
  }
  #tools .card.blue h2 {
    color: #0C55C2;
  }
  #tools .card.green {
    background-color: rgba(105, 224, 219, 0.1);
  }
  #tools .card.green .topper {
    color: #4AC7C2;
  }
  #tools .card.green h2 {
    color: #2FADA8;
  }
  #tools .card.red {
    background-color: rgba(255, 115, 73, 0.1);
  }
  #tools .card.red .topper {
    color: #FF7349;
  }
  #tools .card.red h2 {
    color: #CC3E12;
  }
  #tools .card .topper {
    font-size: 1em;
    font-weight: bold;
    text-transform: uppercase;
    font-family: 'Ubuntu', Arial, sans-serif;
    margin-bottom: 1em;
  }
  #tools .card h2 {
    font-size: 1.9375em;
    margin-bottom: 0.51612903em;
    font-weight: bold;
    line-height: 1.32258065;
  }
  #tools .card p {
    font-size: 1em;
    color: #4E4B66;
    line-height: 1.5em;
  }
  #tools .highlight-h3 {
    font-size: 1.3125em;
    line-height: 1.47619048em;
    color-scheme: #4E4B66;
    font-weight: bold;
    text-align: center;
    margin: auto;
    margin-bottom: 1.52380952em;
    width: 78%;
  }
  #tools .highlight-p {
    font-size: 1em;
    color: #4E4B66;
    line-height: 1.5em;
    text-align: center;
    margin: auto;
    margin-bottom: 3.75em;
    max-width: 42.875em;
    font-family: 'Ubuntu', Arial, sans-serif;
  }
}
/* In Beteween */
@media only screen and (min-width: 650px) {
  #tools {
    padding: 1.25em 1.25em 0;
  }
  #tools .container {
    display: flex;
    justify-content: center;
    align-items: center;
    align-items: stretch;
    flex-wrap: wrap;
    gap: 1.25em;
}
  #tools .card {
    width: 48%;
    margin: 0;
    min-height: 14.375em;
  }
  #tools .highlight-h3 {
    font-size: 1.5625em;
    margin-bottom: 1.6em;
  }
  #tools .highlight-p {
    font-size: 1.3125em;
    line-height: 1.47619048em;
    margin-bottom: 3.80952381em;
    max-width: 32.66666667em;
  }
}
/* Small Desktop */
@media only screen and (min-width: 64em) {
  #tools .container {
    max-width: 87.5em;
    margin-bottom: 5em;
  }
  #tools .green {
    transition: background-color 0.3s, transform 0.3s, box-shadow 0.3s;
  }
  #tools .green:hover {
    background-color: #69e0db;
    box-shadow: rgba(0, 0, 0, 0.09) 0px 3px 12px;
    transform: translateY(-0.3125em);
  }
  #tools .green:hover .topper,
  #tools .green:hover h2,
  #tools .green:hover p {
    color: #fff;
  }
  #tools .blue {
    transition: background-color 0.3s, transform 0.3s, box-shadow 0.3s;
  }
  #tools .blue:hover {
    background-color: #3f88f5;
    box-shadow: rgba(0, 0, 0, 0.09) 0px 3px 12px;
    transform: translateY(-0.3125em);
  }
  #tools .blue:hover .topper,
  #tools .blue:hover h2,
  #tools .blue:hover p {
    color: #fff;
  }
  #tools .red {
    transition: background-color 0.3s, transform 0.3s, box-shadow 0.3s;
  }
  #tools .red:hover {
    background-color: #ff7349;
    box-shadow: rgba(0, 0, 0, 0.09) 0px 3px 12px;
    transform: translateY(-0.3125em);
  }
  #tools .red:hover .topper,
  #tools .red:hover h2,
  #tools .red:hover p {
    color: #fff;
  }
}
/* Large Desktop */
@media only screen and (min-width: 1200px) {
  #tools .card {
    width: 30.2vw;
    max-width: 26.5em;
    box-sizing: border-box;
    padding: 3.75em 3.4375em;
  }
}
/* Dark Mode */
@media only screen and (min-width: 0em) {
  body.dark-mode #tools .card p {
    color: #FAFBFC;
  }
  body.dark-mode #tools .highlight-h3 {
    color: #69E0DB;
  }
  body.dark-mode #tools .highlight-p {
    color: #FAFBFC;
  }
}
/*-- -------------------------- -->
<---        Newsletter          -->
<--- -------------------------- -*/
/* Mobile */
@media only screen and (min-width: 0em) {
  #newsletter {
    background: linear-gradient(119.05deg, #4ac7c2 -0.62%, #3f88f5 18.41%, #4611b8 65.86%, #1d005a 99.11%);
    padding: 3.75em 1em 0em;
  }
  #newsletter h2 {
    font-size: 1.5625em;
    line-height: 1.4;
    color: #fff;
    text-align: center;
    font-weight: bold;
    margin-bottom: 0.64em;
  }
  #newsletter h2 span {
    display: block;
  }
  #newsletter p {
    font-size: 1em;
    line-height: 1.5em;
    color: #fff;
    text-align: center;
    width: 100%;
    max-width: 28.3125em;
    margin: auto;
    margin-bottom: 1.25em;
  }
  #newsletter form {
    max-width: 28.125em;
    margin: auto;
  }
  #newsletter form input {
    font-size: 1em;
    height: 3.5em;
    padding: 0 1.5em;
    margin-bottom: 0.75em;
    color: var(--bodyp);
    text-align: center;
    border-radius: 0.25em;
    width: 100%;
    border: none;
  }
  #newsletter form input::placeholder {
    color: #A0A3BD;
  }
  #newsletter form button {
    display: block;
    background: transparent;
    line-height: 3.125em;
    height: 3.125em;
    font-size: 1em;
    font-family: 'Ubuntu', Arial, sans-serif;
    color: #fff;
    font-weight: bold;
    width: 100%;
    max-width: 100%;
    text-align: center;
    border-radius: 0.25em;
    margin-bottom: 1em;
    border: 1px solid #fff;
    z-index: 10;
  }
  #newsletter .spam {
    display: block;
    color: #fff;
    font-size: 0.8125em;
    line-height: 1.5em;
    text-align: center;
    opacity: .8;
    margin-bottom: 3.23076923em;
  }
  #newsletter .button-orange {
    width: 100%;
    max-width: 28.125em;
    margin: auto;
    margin-bottom: -1.625em;
    display: block;
    text-decoration: none;
    line-height: 4em;
    height: 4em;
    position: relative;
    z-index: 10;
  }
}
/* Tablet */
@media only screen and (min-width: 48em) {
  #newsletter {
    padding-top: 5.875em;
  }
  #newsletter h2 {
    /* font-size: 1.9375em; */
    font-size: 1.5em;
    line-height: 1.32258065em;
    margin-bottom: 0.51612903em;
  }
  #newsletter h2 span {
    display: inline-block;
  }
  #newsletter p {
    max-width: 40.8125em;
    margin-bottom: 1.5em;
  }
  #newsletter form {
    display: flex;
    justify-content: space-between;
    max-width: 33.75em;
    margin-bottom: 1em;
  }
  #newsletter form input {
    max-width: 16.25em;
    height: 3.125em;
    margin: 0;
  }
  #newsletter form button {
    font-size: 1em;
    max-width: 16.25em;
    margin: 0;
    height: 3.125em;
    position: relative;
    z-index: 1;
    transition: border .3s;
  }
  #newsletter form button:hover {
    border: 1px solid transparent;
  }
  #newsletter form button:hover:before {
    opacity: 1;
  }
  #newsletter form button:before {
    content: '';
    position: absolute;
    display: block;
    top: -0.0625em;
    bottom: -0.0625em;
    left: -0.0625em;
    right: -0.0625em;
    background: linear-gradient(90deg, #ffba43 -24.69%, #e12213 126.23%);
    opacity: 0;
    top: 0;
    left: 0;
    z-index: -1;
    border-radius: 0.25em;
    transition: opacity .3s;
  }
  #newsletter .spam {
    margin-bottom: 4.38461538em;
  }
  #newsletter .button-orange {
    max-width: 20.5em;
    z-index: 1;
    position: relative;
    transition: box-shadow 0.3s;
  }
  #newsletter .button-orange:hover {
    box-shadow: 0px 16px 24px rgba(2, 3, 3, 0.1), 0px 6px 30px rgba(2, 3, 3, 0.09), 0px 8px 10px rgba(2, 3, 3, 0.11);
  }
  #newsletter .button-orange:hover:before {
    opacity: 1;
  }
  #newsletter .button-orange:before {
    content: '';
    position: absolute;
    display: block;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    z-index: -1;
    background: linear-gradient(127.08deg, #ff1a83 28.48%, #ba0055 100.16%);
    border-radius: 0.25em;
    opacity: 0;
    transition: opacity .3s;
  }
}
/* Dark Mode */
@media only screen and (min-width: 0em) {
  body.dark-mode #newsletter {
    position: relative;
    z-index: 1;
  }
  body.dark-mode #newsletter:before {
    content: '';
    width: 100%;
    height: 100%;
    /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#181f3f+0,181f3f+100&1+0,0+100 */
    background: -moz-linear-gradient(top, #181f3f 0%, rgba(24, 31, 63, 0) 100%);
    /* FF3.6-15 */
    background: -webkit-linear-gradient(top, #181f3f 0%, rgba(24, 31, 63, 0) 100%);
    /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to bottom, #181f3f 0%, rgba(24, 31, 63, 0) 100%);
    /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#181f3f', endColorstr='#00181f3f', GradientType=0);
    /* IE6-9 */
    opacity: 1;
    position: absolute;
    display: block;
    top: 0;
    left: 0;
    z-index: -1;
    transition: opacity .3s;
  }
  body.dark-mode #newsletter:after {
    /* top right box */
    content: '';
    width: 100%;
    height: 1.625em;
    background: var(--dark);
    opacity: 1;
    position: absolute;
    display: block;
    bottom: 0;
    left: 0;
  }
}
