/**
 * Template Name: M2-Rain
 * By Michael Barrera - https://michaelbarrera.dev/
*/

/*Google Fonts*/
@import url('https://fonts.googleapis.com/css2?family=Lexend:wght@400;500;600&display=swap');

:root {
    /*Colors*/
    --color-base: rgb(230 207 0);
    --color-secondary: rgb(204 184 0);
    --color-text: rgb(190 193 198);
    --color-text-secondary: rgb(150 155 162);
    --color-dark: hsl(0 0% 6% / 1);
    --color-light: rgb(230 230 230);
    /*Fonts*/
    --font-base: 'Lexend', sans-serif;
    --text-size-base: 16px;
    --text-size-heading: 32px;
    --line-height-base: 1.7;
    /*Border*/
    --border-radius: 1rem;
    --border-size: 1px;
    --border-color: #e2e2e2;
    --border-color-divider: hsl(0deg 0% 88.63% / 16%);
    /*Buttons*/
    --btn-background: rgb(230 207 0);
    --btn-font-color: hsl(54deg 100% 5%);
    --btn-border: 1px solid;
    --btn-border-color: hsl(54deg 100% 40%);
    --btn-border-radius: 1.75rem;
    --btn-padding: 13px 1.25rem;
    /*Backgrouds*/
    --background-light: hsl(0 0% 8% / 1);
    --background-feature: hsl(0deg 0% 18%);
}

::-moz-selection {
    background-color: var(--btn-border-color);
    color: var(--background-light);
}

::selection {
    background-color: var(--btn-border-color);
    color: var(--background-light);
}

h1,
h2,
h3,
h4,
h5 {
    margin: 0;
    color: var(--color-light);
    line-height: 1.4em;
}

ul, li {
    margin-left: 0;
    padding-left: 0;
}

/* 
 * Headings: H1
*/

h1 {
    font-size: calc(var(--text-size-heading) * 1.4);
    margin: .5em 0;
}

/* Small Devices: Tablets */
@media (max-width: 992px) {
    h1 {
        font-size: calc(var(--text-size-heading) * 1.25);
    }
}

/* Tiny Devices: Phones */
@media (max-width: 767px) {
    h1 {
        font-size: calc(var(--text-size-heading) * 1);
    }
}

/* 
 * Headings: H2
*/

h2 {
    font-size: var(--text-size-heading);
    margin-bottom: .75em;
}

/* Tiny Devices: Phones */
@media (max-width: 767px) {
    h2 {
        font-size: calc(var(--text-size-heading) / 1.2);
    }
}

h3 {
    font-size: 1.4em;
    margin-bottom: 0.5em;
    line-height: 1.2em;
}

p {
    color: var(--color-text);
    margin-bottom: 2em;
    line-height: var(--line-height-base);
    font-size: var(--text-size-base);
    margin: 0em 0 1.2em;
}

a {
    color: var(--color-base);
}

button {
    font-family: 'Lexend', sans-serif;
    border: none;
    cursor: pointer;
}

body {
    margin: 0 auto;
    font-family: 'Lexend', sans-serif;
    font-size: var(--text-size-base);
    color: var(--color-text);
    max-width: 100%;
    display: grid;
    background: var(--color-dark);
    background-image: linear-gradient(170deg,rgba(14,14,14,0) 85%,rgba(14,14,14,.98)),radial-gradient(circle at 10% 0,rgba(34,34,34,.98),rgba(14,14,14,.2) 14%,rgba(14,14,14,0) 48%);
}

footer {
    overflow: hidden;
}

code {
    display: block;
    padding: 1.5em;
    margin: 2em 0;
    background: hsl(0deg 0% 20%);
}

/*Form Styles*/

input {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

input[type="text"],
input[type="email"] {
    background-color: var(--color-light);
    font-family: var(--font-base);
    color: var(--color-dark);
    min-height: 24px;
    padding: .5em .5em;
    margin-bottom: 1em;
    font-size: 1rem;
    border: 2px solid;
    border-color: var(--border-color);
    border-radius: calc(var(--border-radius) / 1.5);
    -webkit-border-radius: calc(var(--border-radius) / 1.5);
    -moz-border-radius: calc(var(--border-radius) / 1.5);
    -ms-border-radius: calc(var(--border-radius) / 1.5);
    -o-border-radius: calc(var(--border-radius) / 1.5);
    transition: .1s cubic-bezier(0.55, 0.09, 0.68, 0.53);
}

input[type="text"]:focus-visible,
input[type="email"]:focus-visible {
    border-color: var(--color-base);
    box-shadow: 0px 0px 0px 3px rgb(230 207 0 / 40%);
    outline: none;
    transition: .1s cubic-bezier(0.55, 0.09, 0.68, 0.53);
    -webkit-transition: .1s cubic-bezier(0.55, 0.09, 0.68, 0.53);
    -moz-transition: .1s cubic-bezier(0.55, 0.09, 0.68, 0.53);
    -ms-transition: .1s cubic-bezier(0.55, 0.09, 0.68, 0.53);
    -o-transition: .1s cubic-bezier(0.55, 0.09, 0.68, 0.53);
}

input[type="text"]:hover,
input[type="email"]:hover {
    border-color: var(--color-base);
    transition: .1s cubic-bezier(0.55, 0.09, 0.68, 0.53);
    -webkit-transition: .1s cubic-bezier(0.55, 0.09, 0.68, 0.53);
    -moz-transition: .1s cubic-bezier(0.55, 0.09, 0.68, 0.53);
    -ms-transition: .1s cubic-bezier(0.55, 0.09, 0.68, 0.53);
    -o-transition: .1s cubic-bezier(0.55, 0.09, 0.68, 0.53);
}


/*
 * Settings:
 * Global styles
*/

.container {
    max-width: 100%;
    overflow: hidden;
}

.container-grid {
    display: grid;
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 2em;
}

.container-row {
    display: flex;
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 2em;
}

.row {
    width: 100%;
    display: flex;
    flex-direction: row;
}

.col {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.input {
    width: 100%;
    display: flex;
    flex-direction: column;
    row-gap: .57em;
}

.feature-text {
    color: var(--color-base);
}

/* Global: Buttons */

.btn-container {
    display: inline-flex;
    align-items: center;
    -moz-column-gap: 1.5em;
         column-gap: 1.5em;
}

.btn {
    cursor: pointer;
    text-align: center;
    font-size: 1rem;
    font-weight: 600;
    padding: var(--btn-padding);
    text-decoration: none;
    border: var(--btn-border);
    border-color: var(--btn-border-color);
    border-radius: var(--btn-border-radius);
    -webkit-border-radius: var(--btn-border-radius);
    -moz-border-radius: var(--btn-border-radius);
    -ms-border-radius: var(--btn-border-radius);
    -o-border-radius: var(--btn-border-radius);
}

.btn:focus-visible, a:focus-visible {
    outline-offset: 2px;
    outline: 2px solid hsl(54deg 100% 50% / 40%);
}

.btn:active,
.btn:focus {
    outline-offset: 2px;
    outline: 2px solid hsl(54deg 100% 50% / 40%);
}

/* Button: Primary */

.btn-primary {
    background-color: var(--btn-background);
    color: var(--btn-font-color);
    box-shadow: 0px 1px 10px 1px #4d4400;
    transition: .2s cubic-bezier(0.4, 0, 0.2, 1);
    -webkit-transition: .2s cubic-bezier(0.4, 0, 0.2, 1);
    -moz-transition: .2s cubic-bezier(0.4, 0, 0.2, 1);
    -ms-transition: .2s cubic-bezier(0.4, 0, 0.2, 1);
    -o-transition: .2s cubic-bezier(0.4, 0, 0.2, 1);
}
.btn-primary:hover {
    background-color: hsl(54deg 100% 50%);
    box-shadow: 0px 1px 25px 0px #4d4400;
}
.btn-primary:active {
    background-color: var(--btn-background);
}

/* Button: Secondary */

.btn-secondary {
    background-color: hsl(54deg 100% 15%);
    border-color: hsl(54deg 100% 10%);
    color: var(--color-base);
    transition: .2s cubic-bezier(0.4, 0, 0.2, 1);
    -webkit-transition: .2s cubic-bezier(0.4, 0, 0.2, 1);
    -moz-transition: .2s cubic-bezier(0.4, 0, 0.2, 1);
    -ms-transition: .2s cubic-bezier(0.4, 0, 0.2, 1);
    -o-transition: .2s cubic-bezier(0.4, 0, 0.2, 1);
}
.btn-secondary:hover {
    background-color: hsl(54deg 100% 13%);
}
.btn-secondary:active {
    background-color: hsl(54deg 100% 10%);
}


/*
 * Header:
 * Logo and menu
*/

#header {
    z-index: 99;
    position: fixed;
    width: 100%;
    height: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-top: 5px solid;
    border-color: var(--color-base);
    background: hsl(0 0% 15% / 1);
}

#header .container {
    width: 1200px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 0 2em;
}

/* Column Left */

.elogo {
    width: 200px;
}

/* Column Right */

.nav-container {
    display: flex;
    flex-direction: row;
    align-items: center;
    -moz-column-gap: 2em;
         column-gap: 2em;
}

.nav-links {
    width: 100%;
    margin: 0;
    list-style: none;
    display: inline-flex;
    -moz-column-gap: 1.75em;
         column-gap: 1.75em;
    justify-content: flex-end;
}

.nav-links a {
    display: flex;
    text-decoration: none;
    color: var(--color-text);
    padding: 1.8em .5em;
    transition: .2s ease all;
    -webkit-transition: .2s ease all;
    -moz-transition: .2s ease all;
    -ms-transition: .2s ease all;
    -o-transition: .2s ease all;
}

.nav-links a:hover {
    text-decoration: none;
    color: var(--color-light);
    box-shadow: inset 0 -3px var(--color-base);
}

.nav-button {
    width: 100%;
    color: var(--color-light);
    font-weight: 400;
    border-color: transparent;
    padding: 0.75em 1em;
    background: hsl(0 0% 25% / 1);
}

/* Hamburguer Button: Mobile only */

#menuButton {
    display: none;
}

.hamburguer {
    background-color: transparent;
    border: none;
    cursor: pointer;
    display: flex;
    padding: 0;
  }
  .line {
    fill: none;
    stroke: var(--color-light);
    stroke-width: 6;
    transition: stroke-dasharray 600ms cubic-bezier(0.4, 0, 0.2, 1),
      stroke-dashoffset 600ms cubic-bezier(0.4, 0, 0.2, 1);
  }
  .line1 {
    stroke-dasharray: 60 207;
    stroke-width: 6;
  }
  .line2 {
    stroke-dasharray: 60 60;
    stroke-width: 6;
  }
  .line3 {
    stroke-dasharray: 60 207;
    stroke-width: 6;
  }
  .opened .line1 {
    stroke-dasharray: 90 207;
    stroke-dashoffset: -134;
    stroke-width: 6;
  }
  .opened .line2 {
    stroke-dasharray: 1 60;
    stroke-dashoffset: -30;
    stroke-width: 6;
  }
  .opened .line3 {
    stroke-dasharray: 90 207;
    stroke-dashoffset: -134;
    stroke-width: 6;
  }

/*
 * Small Devices: Tablets
*/

@media (max-width: 992px) {
    #menuButton {
        display: block;
        margin-bottom: -5px;
    }
    #header {
        height: 70px;
        overflow: hidden;
    }
    .elogo {
        width: 180px;
    }
    .nav-links a {
        padding: 1.2em 1.5em;
        border-top: 1px solid var(--border-color-divider);
    }
    .nav-links a:hover {
        box-shadow: inset 3px 0px var(--color-base);
    }
    .nav-button {
        transform: scale(.9);
        -webkit-transform: scale(.9);
        -moz-transform: scale(.9);
        -ms-transform: scale(.9);
        -o-transform: scale(.9);
    }
    .nav-links {
        display: none;
        flex-direction: column;
        position: fixed;
        top: 74px;
        left: 0;
        opacity: 0;
        background: var(--background-feature);
        transition: .2s cubic-bezier(0.65, 0.05, 0.36, 1) all;
        transform: translate(20px, -10px) scale(.95);
        -webkit-transform: translate(20px, -10px) scale(.95);
        -moz-transform: translate(20px, -10px) scale(.95);
        -ms-transform: translate(20px, -10px) scale(.95);
        -o-transform: translate(20px, -10px) scale(.95);
        -webkit-transition: .2s cubic-bezier(0.65, 0.05, 0.36, 1) all;
        -moz-transition: .2s cubic-bezier(0.65, 0.05, 0.36, 1) all;
        -ms-transition: .2s cubic-bezier(0.65, 0.05, 0.36, 1) all;
        -o-transition: .2s cubic-bezier(0.65, 0.05, 0.36, 1) all;
}
}

/*
 * Tiny Devices: Phones
*/

@media (max-width: 767px) {
    #header .container {
        padding: 0 1em;
    }
    .nav-container {
        -moz-column-gap: 5px;
             column-gap: 5px;
    }
    .elogo {
        width: 149px;
    }
    .nav-button {
        padding: 0;
        margin-top: -3px;
        background: transparent;
        text-decoration: underline;
        text-underline-offset: 0.3em;
        font-weight: 500;
    }
    .active {
        display: flex;
        opacity: 1;
        transform: translate(0, 0) scale(1);
        -webkit-transform: translate(0, 0) scale(1);
        -moz-transform: translate(0, 0) scale(1);
        -ms-transform: translate(0, 0) scale(1);
        -o-transform: translate(0, 0) scale(1);
    }
}



/*
 * Section:
 * Hero primary
*/

#hero {
    min-height: 1110px;
    display: flex;
    align-items: center;
    background-size: 850px;
    background-position-x: calc(50vw + 120px);
    background-position-y: calc(100% - 85px);
    background-repeat: no-repeat;
    background-image: url("/img/bg-assets/bg-landing.svg")
}

#hero .container-row {
    flex-direction: column;
    padding: 15em 2em 10em;
    row-gap: 5em;
}

/* Column: First */

#hero .col {
    width: 60%;
}

#hero span {
    color: var(--color-text-secondary);
    font-size: calc(var(--text-size-base) * 1.3);
}

#hero p {
    font-size: calc(var(--text-size-base) * 1.5);
    margin-bottom: 2em;
}

#hero .col:nth-child(2) {
    display: flex;
    row-gap: 1em;
    flex-direction: column;
}

/* Column: Second */

#hero h2 {
    font-size: calc(var(--text-size-heading) / 1.5);
    font-weight: 400;
    opacity: .9;
}

#hero .image > svg {
    width: 140%;
    margin-top: 300px;
    margin-left: 50px;
}


/* Logos Container */

.grid-img {
    display: grid;
    grid-template-columns: repeat(3, 25%);
    -moz-column-gap: 2em;
         column-gap: 2em;
    row-gap: 1.75em;
}

.client-logo {
    width: 100%;
    background: var(--background-light);
    border-radius: var(--border-radius);
    opacity: .7;
    transition: .2s ease-in-out all;
    -webkit-transition: .2s ease-in-out all;
    -moz-transition: .2s ease-in-out all;
    -ms-transition: .2s ease-in-out all;
    -o-transition: .2s ease-in-out all;
    -webkit-border-radius: var(--border-radius);
    -moz-border-radius: var(--border-radius);
    -ms-border-radius: var(--border-radius);
    -o-border-radius: var(--border-radius);
}

.client-logo:hover {
    opacity: 1;
}

/*
 * Small Devices: Tablets
*/

@media (max-width: 992px) {
    #hero {
        min-height: auto;
        background-position-x: calc(50vw + 150px);
    }
    #hero .container-row {
        padding: 12em 4em 8em;
    }
    #hero .col {
        width: 65%;
    }
    #hero .col:nth-child(2) {
        width: 100%;
    }
    #hero span {
        font-size: calc(var(--text-size-base) * 1.25);
    }
    #hero p {
        font-size: calc(var(--text-size-base) * 1.3);
    }
}

/*
 * Tiny Devices: Phones
*/

@media (max-width: 767px) {
    #hero .container-row {
        padding: 9em 2em 5em;
    }
    #hero .col {
        width: 100%;
    }
    #hero h2 {
        font-size: calc(var(--text-size-heading) / 1.7);
    }
    #hero span {
        font-size: calc(var(--text-size-base) * 1.1);
    }
    #hero p {
        font-size: calc(var(--text-size-base) * 1.15);
    }
    .btn-container a:nth-child(2) {
        display: none;
    }
    .grid-img {
        grid-template-columns: repeat(2, 1fr);
    }
}


/*
 * Section:
 * Video and best features
*/

#features {
    contain: content;
    background: linear-gradient(180deg, hsl(0deg 0% 20% / 19%), transparent);
}

#features .col {
    row-gap: 3em;
}

#features .col:nth-child(2) {
    row-gap: 0;
    z-index: 2;
    overflow: hidden;
}

#features .container-row {
    align-items: center;
    flex-direction: column;
    row-gap: 7em;
    padding: 8em 2em 2em;
}

.icons-title {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.icons-title > h2 {
    width: 60%;
    text-align: center;
}

.subtitle {
    font-size: calc(var(--text-size-base) * 1.35);
}

/* Features */

#features .container-grid {
    list-style: none;
    grid-template-columns: repeat(2, 1fr);
    row-gap: 2.5em;
    -moz-column-gap: 4em;
         column-gap: 4em;
}

.feature-box {
    display: grid;
    grid-template-columns: 85px auto;
    -moz-column-gap: 1.75em;
         column-gap: 1.75em;
    row-gap: 1em;
    grid-template-areas:
        "icon title"
        "icon description";
}

.feature-box > svg {
    grid-area: icon;
    width: 100%;
}

.feature-box > h3 {
    grid-area: title;
    margin: 0;
}

.feature-box > p {
    grid-area: description;
    margin: 0;
}

/* Video */

.container-video {
    position: relative;
    padding-bottom: 46.25%;   
}
  
.container-video iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: var(--border-radius);
    -webkit-border-radius: var(--border-radius);
    -moz-border-radius: var(--border-radius);
    -ms-border-radius: var(--border-radius);
    -o-border-radius: var(--border-radius);
}

/*
 * Small Devices: Tablets
*/

@media (max-width: 992px) {
    .icons-title > h2 {
        width: 100%;
    }
    #features .container-row {
        padding: 7em 4em 2em;
    }
    #features .col {
        row-gap: 4em;
    }
    #features .container-grid {
        padding: 0;
    }
    .feature-box {
        grid-template-columns: 55px auto;
        grid-template-rows: 55px auto;
        -moz-column-gap: 1.5em;
             column-gap: 1.5em;
        row-gap: 1.75em;
        align-items: center;
        grid-template-areas:
            "icon title"
            "description description";
    }
}

/*
 * Tiny Devices: Phones
*/

@media (max-width: 767px) {
    #features .container-row {
        padding: 5em 2em 0;
        row-gap: 5em;
    }
    #features .container-row:before{
        height: 115px;
    }
    .icons-title {
        align-items: flex-start;
    }
    .icons-title > h2 {
        text-align: left;
    }    
    .subtitle {
        font-size: calc(var(--text-size-base) * 1.25);
    }
    #features .col {
        row-gap: 1em;
    }
    #features .container-grid {
        row-gap: 3em;
        grid-template-columns: 1fr;
    }
    .feature-box {
        row-gap: 1.25em;
        border-top: 1px solid var(--border-color-divider);
        padding-top: 3em;
    }
    .feature-box:first-child {
        border-top: 0;
    }
    .container-video {
        padding-bottom: 56.25%;
    }
}


/*
 * Section:
 * Support and chat example
*/

#support {
    display: flex;
    align-items: center;
}

#support .container-row {
    -moz-column-gap: 2em;
         column-gap: 2em;
    padding: 10em 0 0 2em;
}

#support h2 {
    font-size: calc(var(--text-size-heading) * 1.3);
}

.chat {
    display: flex;
    flex-direction: column;
    row-gap: 1.25em;
    padding: 0 4em;
    overflow: hidden;
    max-height: 350px;
}

.message-box {
    display: grid;
    justify-items: end;
    grid-template-columns: 50px auto;
    grid-column-gap: 1em;
    grid-row-gap: 0.5em;
    grid-template-areas:
        "img message"
        "img job";
}


#chatClient.message-box {
    grid-template-columns: auto 50px;
    grid-template-areas: 
        "message img"
        "job img"!important;
}

.avatar {
    grid-area: img;
    width: 50px;
    height: 50px;
    border-radius: 50px;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    -ms-border-radius: 50px;
    -o-border-radius: 50px;
}

.message {
    grid-area: message;
    background-color: var(--background-light);
    padding: .75em 1em;
    margin: 0;
    border-radius: var(--border-radius);
    -webkit-border-radius: var(--border-radius);
    -moz-border-radius: var(--border-radius);
    -ms-border-radius: var(--border-radius);
    -o-border-radius: var(--border-radius);
}

.job {
    grid-area: job;
    color: var(--color-text-secondary);
    font-size: .6rem;
    font-weight: 400;
}

/*
 * Small Devices: Tablets
*/

@media (max-width: 992px) {
    #support .container-row {
        padding: 5em 4em 0;
        flex-direction: column;
        row-gap: 4em;
    }
    #support .col:first-child {
        padding-right: 1em;
    }
    .chat {
        padding: 0;
        max-height: 420px;
    }
}

/*
 * Tiny Devices: Phones
*/

@media (max-width: 767px) {
    #support .container-row {
        padding: 5em 2em 0;
    }
    #support h2 {
        font-size: calc(var(--text-size-heading) * 1.1);
    }
}


/*
 * Section:
 * Pricing of product
*/

#price .container-row {
    flex-direction: column;
    padding: 10em 2em 0;
    align-items: center;
    row-gap: 4em;
}

#price .row:first-child {
    width: 60%;
}

#price .row:first-child h2 {
    text-align: center;
}

#price .row:nth-child(2) {
    list-style: none;
    -moz-column-gap: 3em;
         column-gap: 3em;
}

#price ul {
    margin: 0;
}

/* Cards: Prices */

.card {
    max-width: 100%;
    background: var(--background-light);
    border-radius: calc(var(--btn-border-radius) / 1.5);
    border: 1px solid var(--border-color-divider);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    row-gap: 3em;
    padding: 2em;
    -webkit-border-radius: calc(var(--btn-border-radius) / 1.5);
    -moz-border-radius: calc(var(--btn-border-radius) / 1.5);
    -ms-border-radius: calc(var(--btn-border-radius) / 1.5);
    -o-border-radius: calc(var(--btn-border-radius) / 1.5);
}

.container-card {
    width: 100%;
    display: flex;
    flex-direction: column;
    row-gap: 1em;
}

.plan {
    font-size: var(--font-base);
    color: var(--color-text-secondary);
    margin-bottom: .5em;
}

.cost {
    font-size: 2.5rem;
    color: var(--color-light);
    margin-bottom: .5em;
}

.cost > span {
    line-height: 0;
    font-size: 1rem;
}

.features {
    list-style: none;
}

.features li {
    border-top: 1px solid var(--border-color-divider);
    padding: 15px 0;
    padding-left: 25px;
}

/* Features list: Include */

.features li:before {
    content: '';
    width: 16px;
    height: 14px;
    position: absolute;
    background-size: cover;
    background-position: center;
    transform: translate(-23px, 5px);
    -webkit-transform: translate(-23px, 5px);
    -moz-transform: translate(-23px, 5px);
    -ms-transform: translate(-23px, 5px);
    -o-transform: translate(-23px, 5px);
    background-image: url("data:image/svg+xml,%3Csvg width='14' height='12' viewBox='0 0 14 12' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4.5 11.075L0 6.575L1.575 5L4.5 7.925L11.925 0.5L13.5 2.075L4.5 11.075Z' fill='%2300B507'/%3E%3C/svg%3E%0A");
}

/* Features list: No Include */

.features li.NonInclude:before {
    content: '';
    width: 15px;
    height: 15px;
    position: absolute;
    background-size: cover;
    background-position: center;
    transform: translate(-23px, 5px);
    -webkit-transform: translate(-23px, 5px);
    -moz-transform: translate(-23px, 5px);
    -ms-transform: translate(-23px, 5px);
    -o-transform: translate(-23px, 5px);
    background-image: url("data:image/svg+xml,%3Csvg width='15' height='21' viewBox='0 0 15 21' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M13.25 5.23375L12.0163 4L7.125 8.89125L2.23375 4L1 5.23375L5.89125 10.125L1 15.0163L2.23375 16.25L7.125 11.3588L12.0163 16.25L13.25 15.0163L8.35875 10.125L13.25 5.23375Z' fill='%23F90000'/%3E%3C/svg%3E%0A");
}

.features li.NonInclude {
    padding-left: 25px;
    color: var(--color-text-secondary);
}

#recommended {
    border: 1px solid;
    border-color: var(--color-base);
    box-shadow: 0 0 25px -5px rgb(234 206 54 / 21%);
    background: var(--background-light);
}

#recommended .plan {
    color: var(--color-base);
}

.footer-card {
    width: 100%;
    display: flex;
}

.footer-card button {
    width: 100%;
    text-align: center;
}

/*
 * Small Devices: Tablets
*/

@media (max-width: 992px) {
    #price .container-row {
        padding: 10em 4em 0;
    }
    #price .row:first-child {
        width: 100%;
    }
    #price .row:nth-child(2) {
        flex-direction: column;
        row-gap: 3em;
    }
    .card {
        padding: 3em;
    }
}

/*
 * Tiny Devices: Phones
*/

@media (max-width: 767px) {
    #price .container-row {
        row-gap: 2em;
        padding: 7em 2em 0;
    }
    #price .row:nth-child(2) {
        row-gap: 3.5em;
    }
    .card {
        padding: 2.25em;
    }
}


/*
 * Section:
 * Frequently asked questions
*/

#faq .container-row {
    display: flex;
    flex-direction: column;
    row-gap: 5em;
    padding: 10em 2em 8em;
}

#faq .title-container {
    width: 50%;
}

.column-grid {
    display: grid;
    grid-template-columns: 300px auto;
    grid-row-gap: 6em;
    grid-template-areas:
        "title questions"
        "title questions";
}

.faq-container {
    margin: 0;
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-row-gap: 4em;
    grid-column-gap: 4em;
}

/* FAQ: Item */

.category-faq {
    margin: 0;
}

.faq-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    /* border-bottom: 1px solid var(--border-color-divider); */
}

.accordion-item {
    cursor: pointer;
    display: flex;
    text-decoration: none;
    -moz-column-gap: 1em;
    column-gap: 1em;
    line-height: 1.5em;
    padding: 0 0 1.75em;
    border-bottom: 1px solid var(--border-color-divider);
    transition: .2s all cubic-bezier(0.4, 0, 0.2, 1);
    -webkit-transition: .2s all cubic-bezier(0.4, 0, 0.2, 1);
    -moz-transition: .2s all cubic-bezier(0.4, 0, 0.2, 1);
    -ms-transition: .2s all cubic-bezier(0.4, 0, 0.2, 1);
    -o-transition: .2s all cubic-bezier(0.4, 0, 0.2, 1);
}
.accordion-item.a-open {
    border-color: transparent;
}

.accordion-item .a-question {
    font-weight: 400;
    color: var(--color-text);
}
.accordion-item .a-question:hover,
.a-open .a-question {
    color: var(--color-base);
}

.a-icon {
    content: '';
    width: 31px;
    min-width: 31px;
    height: 29px;
    background-size: contain;
    background-repeat: no-repeat;
    background-image: url("data:image/svg+xml, %3Csvg viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M15.68 7.11603L9.67999 12.116L10.32 12.884L16.32 7.88403L15.68 7.11603Z' fill='%23F5F5F5'/%3E%3Cpath d='M16.32 7.88402L10.32 12.884C9.80799 13.311 9.16799 12.543 9.67999 12.116L15.68 7.11603C16.192 6.68903 16.832 7.45702 16.32 7.88402Z' fill='%23F5F5F5'/%3E%3Cpath d='M3.67999 7.88403L9.67999 12.884L10.32 12.116L4.31999 7.11603L3.67999 7.88403Z' fill='%23F5F5F5'/%3E%3Cpath d='M4.31999 7.11603L10.32 12.116C10.832 12.543 10.192 13.311 9.67999 12.884L3.67999 7.88402C3.16799 7.45702 3.80799 6.68903 4.31999 7.11603Z' fill='%23F5F5F5'/%3E%3C/svg%3E");
}
.a-icon {
    color: var(--color-base);
}
.a-open > .a-icon {
    transform: rotate(180deg);
    -webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    -o-transform: rotate(180deg);
}

.accordion-content {
    margin-bottom: 0;
    overflow: hidden;
    transition: all .5s ease-in;
    max-height: 0;
}

/*
 * Small Devices: Tablets
*/

@media (max-width: 992px) {
    #faq .container-row {
        padding: 8em 4em;
    }
    #faq .title-container {
        width: 80%;
    }
    #faq .column-grid {
        grid-template-columns: 1fr;
        grid-template-areas: none;
    }
}

/*
 * Tiny Devices: Phones
*/

@media (max-width: 767px) {
    #faq .container-row {
        row-gap: 4em;
        padding: 7em 2em;
    }
    #faq .column-grid {
        row-gap: 3em;
    }
    .faq-container {
        grid-template-columns: 1fr;
    }
    #faq .column-grid h3:last-of-type {
        margin-top: 2em;
    }
}


/*
 * Modal:
 * Registration form
*/

#modal {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
    display: none;
    width: 100%;
    height: 100%;
    overflow-x: hidden;
    overflow-y: auto;
    outline: 0;
}

.container-modal-bg {
    position: absolute;
    display: block;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    animation: fadein 0.2s;
    background: linear-gradient(315deg , rgba(var(--blackrgb),0.2) 0%, rgba(var(--blackrgb),0.1) 100%);
    -webkit-backdrop-filter: blur(2px);
            backdrop-filter: blur(2px);
    -webkit-animation: fadein 0.2s;
}

.close-btn {
    cursor: pointer;
    position: absolute;
    top: 5%;
    right: 5%;
    box-sizing: content-box;
    width: 20px;
    height: 20px;
    opacity: .5;
    padding: 0.45em;
    background-size: contain;
    background-repeat: no-repeat;
    background-color: transparent;
    transition: .2s ease opacity;
    -webkit-transition: .2s ease opacity;
    -moz-transition: .2s ease opacity;
    -ms-transition: .2s ease opacity;
    -o-transition: .2s ease opacity;
    background-image: url("data:image/svg+xml,%3Csvg width='36' height='36' viewBox='0 0 36 36' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg clip-path='url(%23clip0_381_4)'%3E%3Cpath d='M19.41 18L27.7 9.71C27.8638 9.5187 27.9494 9.27262 27.9397 9.02095C27.93 8.76927 27.8256 8.53053 27.6475 8.35244C27.4694 8.17434 27.2307 8.07001 26.979 8.06029C26.7274 8.05057 26.4813 8.13618 26.29 8.3L18 16.59L9.70997 8.29C9.52167 8.1017 9.26627 7.99591 8.99997 7.99591C8.73367 7.99591 8.47828 8.1017 8.28997 8.29C8.10167 8.47831 7.99588 8.7337 7.99588 9C7.99588 9.2663 8.10167 9.5217 8.28997 9.71L16.59 18L8.28997 26.29C8.18529 26.3796 8.10027 26.49 8.04025 26.614C7.98022 26.7381 7.94649 26.8732 7.94117 27.0109C7.93586 27.1487 7.95906 27.286 8.00934 27.4143C8.05961 27.5427 8.13587 27.6592 8.23332 27.7567C8.33078 27.8541 8.44733 27.9304 8.57565 27.9806C8.70398 28.0309 8.84131 28.0541 8.97903 28.0488C9.11675 28.0435 9.25188 28.0098 9.37594 27.9497C9.50001 27.8897 9.61033 27.8047 9.69997 27.7L18 19.41L26.29 27.7C26.4813 27.8638 26.7274 27.9494 26.979 27.9397C27.2307 27.93 27.4694 27.8257 27.6475 27.6476C27.8256 27.4695 27.93 27.2307 27.9397 26.9791C27.9494 26.7274 27.8638 26.4813 27.7 26.29L19.41 18Z' fill='%23F8F8F8'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0_381_4'%3E%3Crect width='36' height='36' fill='white'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E%0A");
}

.close-btn:hover {
    opacity: 1;
}

.close-btn:focus-visible,
.close-btn:focus {
    opacity: 1;
    outline: none;
    border-radius: calc(var(--border-radius) / 2);
    box-shadow: 0px 0px 0px 3px rgb(230 207 0 / 40%);
    -webkit-border-radius: calc(var(--border-radius) / 2);
    -moz-border-radius: calc(var(--border-radius) / 2);
    -ms-border-radius: calc(var(--border-radius) / 2);
    -o-border-radius: calc(var(--border-radius) / 2);
}

.modal-dialog {
    margin: .75em;
}

.container-modal {
    z-index: 2;
    top: 15vh;
    max-width: 400px;
    position: relative;
    background-color: var(--background-feature);
    margin-right: auto;
    margin-left: auto;
    padding: 2.5em 2em;
    border: 1px solid var(--border-color-divider);
    border-radius: var(--border-radius);
    display: flex;
    flex-direction: column;
    row-gap: .75em;
}

.modal-header > h2 {
    margin-bottom: .5em;
}

.modal-form > form {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.modal-form #submit {
    margin-top: .75em;
}

/*
 * Small Devices: Tablets
*/

@media (max-width: 992px) {
    .container-modal {
        top: 6vh;
    }
}



/*
 * Footer:
 * Call to action in footer
*/

#ctaFooter .container-row {
    align-items: center;
    -moz-column-gap: 5em;
         column-gap: 5em;
    padding: 4em;
    background: var(--background-light);
    border-radius: var(--border-radius);
}

/* First column */

#ctaFooter .col:first-child {
    align-items: flex-start;
}

#ctaFooter .col:first-child > p {
    margin-bottom: 2em;
    font-size: calc(var(--text-size-base) * 1.1);
}

/* Second column */

#ctaFooter .grid-img {
    grid-template-columns: repeat(3, 1fr);
    grid-row-gap: 1.25em;
    grid-column-gap: 2.25em;
}

#ctaFooter .client-logo {
    background: none;
}

/*
 * Small Devices: Tablets
*/

@media (max-width: 992px) {
    #ctaFooter .container-row {
        -moz-column-gap: 4em;
             column-gap: 4em;
        border-radius: 0;
        -webkit-border-radius: 0;
        -moz-border-radius: 0;
        -ms-border-radius: 0;
        -o-border-radius: 0;
    }
    #ctaFooter .grid-img {
        grid-template-columns: repeat(2, 1fr);
    }
    #ctaFooter .client-logo:last-child {
        display: none;
    }
}

/*
 * Tiny Devices: Phones
*/

@media (max-width: 767px) {
    #ctaFooter .container-row {
        padding: 5em 2em;
        flex-direction: column;
        row-gap: 4em;
    }
    #ctaFooter .col:first-child {
        align-items: center;
    }
    #ctaFooter h2, #ctaFooter p {
        text-align: center;
    }
}



/*
 * Footer:
 * Global Footer
*/

#gFooter .container-grid {
    padding: 8em 2em 5em;
    grid-template-columns: 35% auto;
}

/* Logo and company description */

#gFooter .col {
    row-gap: 1.75em;
}

.footer-logo {
    width: 50%;
    filter: saturate(0) opacity(.8);
    -webkit-filter: saturate(0) opacity(.8);
}

/* Links */

#gFooter .row {
    justify-content: space-around;
}

.links-column p {
    color: var(--color-light);
    font-size: calc(var(--text-size-base) * 1.1);
    font-weight: 500;
    margin-bottom: 1.75em;
}

.links {
    min-width: 100px;
    list-style: none;
    margin: 0;
}

.links > li {
    padding: .75em 0;
}

.links > li:first-child {
    padding-top: 0;
}

.links a {
    color: var(--color-text-secondary);
    text-decoration: none;
    transition: .1s ease all;
    -webkit-transition: .1s ease all;
    -moz-transition: .1s ease all;
    -ms-transition: .1s ease all;
    -o-transition: .1s ease all;
}

.links a:hover {
    color: var(--color-light);
}


/*
 * Small Devices: Tablets
*/

@media (max-width: 992px) {
    #gFooter .container-grid {
        grid-template-columns: 1fr;
        row-gap: 3em;
        padding: 5em 4em;
    }
    .footer-logo {
        width: 35%;
    }
    #gFooter .row {
        justify-content: space-between;
    }
}

/*
 * Tiny Devices: Phones
*/

@media (max-width: 767px) {
    #gFooter .container-grid {
        padding: 5em 2em;
    }
    .footer-logo {
        width: 50%;
    }
    #gFooter .row {
        row-gap: 3em;
        flex-wrap: wrap;
    }
    #gFooter .row .links-column:last-child {
        display: grid;
        grid-template-columns: 1fr 2fr;
        padding-top: 3em;
        border-top: 1px solid var(--border-color-divider);
    }
    #gFooter .row .links-column:last-child ul {
        display: grid;
        -moz-column-gap: 3em;
             column-gap: 3em;
        row-gap: 2em;
        grid-template-columns: 1fr 1fr;
    }
    #gFooter .row .links-column:last-child ul > li {
        padding: 0;
    }
}



/*
 * Footer:
 * Credits
*/

#credits .container-row {
    padding: 2em .5em;
    justify-content: space-between;
    border-top: 1px solid var(--border-color-divider);
}

#credits p, #credits a {
    font-size: .75rem;
    text-decoration: none;
    color: var(--color-text-secondary)
}

#credits a {
    color: var(--color-text);
}

#credits a:hover {
    text-decoration: underline;
}

/*
 * Small Devices: Tablets
*/

@media (max-width: 992px) {
    #credits .container-row {
        padding: 2em;
    }
    #credits p:first-child {
        width: 25%;
    }
}

@media (max-width: 767px) {
    #credits .container-row {
        flex-direction: column;
        row-gap: 1em;
        background-color: var(--background-light);
        border-top: none;
    }
    #credits p {
        margin: 0;
    }
    #credits p:first-child {
        width: 100%;
    }
}
