/* START: GENERAL AND VARIABLES */
body {
    margin:0;
    padding:0;
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-style: normal;
    padding-top:125px;
    background:var(--background-color-1);
    color:var(--text-color-4);
}
.subtext {
    text-transform: uppercase;
    font-size: 14px;
    color: var(--text-color-1);
}
.green-text {
    color:var(--positive-color);
}
h1, h2, h3 {
    font-weight:600;
}
@media(max-width:600px) {
    .subtext {
        font-size:13px;
    }
}
.badge {
    background: var(--positive-color);
    color: var(--text-color-5);
    font-size:13px; 
    padding: 5px 10px; 
    border-radius: 50px; 
    font-weight: 700; 
    margin-bottom: 10px; 
    display: inline-block;
    text-align:center;
}
.highlight {
    font-weight: 700;
    color: var(--accent-color-2);
}
/* END: GENERAL AND VARIABLES */


/* START: MENU */
.announcement {
    background:var(--gradient-box-2);
    backdrop-filter: blur(10px);
    height: 40px;
    top: 0;
    position: fixed;
    color:var(--text-color-11);
    z-index: 99999;
    text-align: center;
    line-height: 40px;
    font-size: 14px;
    width: 100vw;
}
.announcement a {
    color:var(--text-color-11);
}
.announcement .mobile {
    display:none;
}
.announcement a:hover {
    color:var(--text-color-11);
    text-decoration: none;
}
header {
    max-height: fit-content;
    height: 85px;
    background: var(--background-color-2);
    line-height: 85px;
    backdrop-filter: blur(10px);
    padding: 0px 50px;
    overflow:hidden;
    position: fixed;
    z-index:99999;
    width: 100vw;
    box-sizing: border-box;
    top: 40px;
    transition:0.2s height ease-in-out;
    box-shadow:var(--box-shadow-1);
}
header .main {
    display: flex;
    justify-content: space-between;
}
header .submenus > div {
    display: none;
    justify-content: space-around;
    padding:15px 0;
}
header .submenus > div > div > a {
    display: block;
    line-height: 60px;
}
header:has(#featuresToggle:hover), header:has(#featuresSubmenu:hover),
header:has(#customersToggle:hover), header:has(#customersSubmenu:hover),
header:has(#languagesToggle:hover), header:has(#languagesSubmenu:hover) {
    height:600px;
}
header:has(#featuresToggle:hover) #featuresSubmenu, #featuresSubmenu:hover,
header:has(#customersToggle:hover) #customersSubmenu, #customersSubmenu:hover {
    display:flex;
}
header:has(#languagesToggle:hover) #languagesSubmenu, #languagesSubmenu:hover {
    display:block;
}
#languagesSubmenu {
    text-align:right;
}
header a {
    text-decoration: none;
    color: var(--text-color-4);
    font-size: 15px;
    transition:0.1s color ease-in-out;
}
header a i {
    margin-left:5px;
}
header a:not(#mobile-hamburger):not(.primary):hover {
    color:var(--text-color-7);
}
header a.current {
    font-weight:700;
}
header a.logo, footer a.logo {
    font-size: 18px;
    text-transform: uppercase;
    font-weight: 700;
}
header .main-left, header .main-right {
    display: flex;
    column-gap:35px;
    align-items:center;
}
header a.primary {
    color: var(--text-color-5);
    background: var(--gradient-box-4);
    height: 40px;
    line-height: 40px;
    padding: 0 20px;
    border-radius: 125px;
    font-size: 14px;
    font-weight: 700;
    transition:.1s filter ease-in-out;
}
header a.primary:hover {
    filter:brightness(1.05);
}
header a#mobile-hamburger, #mobile-menu, #mobile-sign-up-button {
    display:none;
}
#featuresSubmenuMobile, #customersSubmenuMobile, #languagesSubmenuMobile {
    display: none;
}
#featuresSubmenuMobile a, #customersSubmenuMobile a, #languagesSubmenuMobile a {
    margin-left: 25px;
    line-height: normal !important;
    display: flex !important;
    align-items: center;
}
@media(max-width:1100px) {
    header {
        padding: 0 25px;
    }
}
@media(max-width:1000px) {
    header {
        position: fixed;
        width: 100%;
        overflow: visible;
        max-height: unset;
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        transition:none;
    }
    header a:not(.logo):not(#mobile-hamburger):not(#mobile-menu a):not(#mobile-sign-up-button > a), header .submenus {
        display:none;
    }
    header #mobile-sign-up-button > a {
        width:fit-content;
    }
    header #mobile-sign-up-button-and-mobile-hamburger {
        display:flex;
        gap:15px;
    }
    header a#mobile-hamburger {
        display:block;
        width:fit-content;
    }
    header #mobile-sign-up-button {
        display: block;
    }
    #mobile-menu {
        position: fixed;
        width: 100%;
        top: 85px;
        height: calc(100vh - 130px);
        margin-left: -25px;
        z-index:9999999;
        overflow:scroll;
        padding-bottom:60px;
    }
    header #mobile-menu a:not(a.primary) {
        padding:0 25px;
        display: block;
        line-height: 70px;
        height: 70px;
    }
    header #mobile-menu > div:has(a.primary) {
        line-height: 70px;
        height: 70px;
    }
    a.primary {
        margin-left: 25px;
        width:calc(100% - 100px);
        text-align: center;
        display: inline-block;
    }
}
@media(max-width:800px) {
    .announcement .mobile {
        display:block;
    }
    .announcement .desktop {
        display:none;
    }
}
@media(max-width:400px) {
    header #mobile-sign-up-button {
        display: none;
    }
}
/* END: MENU */


/* START: FOOTER */
footer .main {
    background:var(--background-color-5);
    justify-content: space-between;
    display:flex;
    padding:50px 50px;
    border-top: 1px solid var(--border-color-1);
    border-bottom: 1px solid var(--border-color-1);
}
footer .sub {
    font-size: 13px;
    line-height: 60px;
    display: flex;
    justify-content: space-between;
    padding: 0 50px;
}
footer a, footer strong {
    display:block;
    line-height:60px;
    color:var(--text-color-4);
    text-decoration:none;
}
footer strong {
    font-size:18px;
}
footer a {
    font-size:15px;
    transition:0.1s color ease-in-out;
}
footer a:hover {
    color:var(--text-color-7);
}
@media(max-width:800px) {
    footer .main {
        flex-direction: column;
    }
    footer strong {
        font-size:15px;
    }
}
@media(max-width:500px) {
    footer .sub {
        flex-direction: column;
        line-height: 30px;
        padding: 20px 50px;
    }
}
/* END: FOOTER */


/* START: BUTTONS */
#main-button {
    background:var(--background-color-3);
}
.button {
    padding: 10px 30px;
    border-radius: 50px !important;
    color: var(--text-color-5);
    text-decoration: none;
    display: inline-block;
    font-weight: 700;
    margin-top: 40px;
    transition:.1s ease-in-out;
    max-width: 100%;
}
.button.purple, .button.pink {
    background: var(--accent-color-1);
}
.button.purple:hover, .button.pink:hover {
    background:var(--accent-color-1-light);
}
.button.accent {
    background: var(--accent-color-2);
}
.button.accent:hover {
    background:var(--accent-color-2-light);
}
.button.white {
    color: var(--text-color-4);
    background: var(--background-color-1);
}
.button.white:hover {
    filter:brightness(0.9);
}
.button.gradient-four {
    background:var(--gradient-box-4);
}
.button.gradient-four:hover {
    filter:brightness(1.05);
}
@media(max-width:800px) {
    .button {
        width: calc(100vw - 50px);
        box-sizing: border-box;
        text-align: center;
    }
}
/* END: BUTTONS */


/* START: HOMEPAGE DUO */
.homepage-duo {
    padding: 0 75px;
    padding-top: 0;
    border-radius: 50px;
    width: calc(100vw - 100px);
    margin: 15px auto 25px;
    box-sizing: border-box;
}
.homepage-duo h1 {
    color: var(--text-color-2);
    font-size: 42px; 
    line-height: 1.5; 
    margin-top: 10px; 
    margin-bottom: 30px; 
    font-weight: 400; 
    text-align: center;
}
.homepage-duo p {
    font-size: 17px;
    text-align: center;
    line-height: 1.75;
    color: var(--text-color-3);
}
.homepage-duo .subtext {
    text-align:center;
    display: block;
    margin-top:40px;
    font-size:13px;
    color: var(--text-color-7);
}
.homepage-duo a {
    border-radius: 145px;
    background: var(--gradient-box-4);
    padding: 12px 19px;
    color: white;
    font-weight: 700;
    box-sizing: border-box;
    text-decoration: none;
    margin: 0 auto;
    margin-top:10px;
    display: block;
    width: fit-content;
    text-align: center;
}
.homepage-duo a:hover {
    transition:.1s filter ease-in-out;
    filter:brightness(1.05);
}
.homepage-duo .visuals {
    display:flex;
    align-items:flex-end;
    gap:40px;
    margin-top:40px;
}
.homepage-duo .visuals div {
    height:fit-content;
    overflow:hidden;
    border-radius: 15px;
    box-shadow: var(--box-shadow-2);
}
.homepage-duo .visuals div:first-child {
    flex:73;    
}
.homepage-duo .visuals > div:first-child .desktop {
    aspect-ratio: 839 / 526;
}
.homepage-duo .visuals > div:first-child .mobile {
    aspect-ratio: 839 / 651;
}
.homepage-duo .visuals > div:nth-child(2) {
    flex:27;
    aspect-ratio: 310/492;
}
.homepage-duo .checks {
    display: block;
    text-align: center;
    margin-top:19px;
    font-size:11px;
}
.homepage-duo .checks .check {
    white-space: nowrap;
}
.homepage-duo .checks .check:not(.check:last-child) {
    margin-right:20px;
}
.homepage-duo .checks .check i {
    margin-right:7px;
    color:var(--positive-color);
}
@media(max-width:1000px) {
    .homepage-duo {
        padding:0;
        width: calc(100vw - 50px);
    }
    .homepage-duo h1 {
        font-size:36px;
    }
}
@media(min-width:751px) {
    .homepage-duo .visuals > div:first-child .desktop {
        display:block;
    }
    .homepage-duo .visuals > div:first-child .mobile {
        display:none;
    }
}
@media(max-width:750px) {
    .homepage-duo .visuals {
        align-items:normal;
    }
    .homepage-duo .visuals > div:first-child .desktop {
        display:none;
    }
    .homepage-duo .visuals > div:first-child .mobile {
        display:block;
    }
    .homepage-duo h1 {
        font-size:32px;
    }
    .homepage-duo p {
        font-size:16px;
    }
    .homepage-duo h1 {
        margin-bottom:0;
    }
    .homepage-duo a {
        width:100%;
    }
    .homepage-duo .visuals > div:first-child {
        max-width:85%;   
    }
    .homepage-duo .visuals > div:nth-child(2) {
        position: absolute;
        width: 43%;
        transform: translate(100%, 30%);
    }
}
@media(max-width:600px) {
    .homepage-duo h1 {
        font-size:28px;
    }
}
/* END: HOMEPAGE DUO */


/* START: SMART FEATURES BLOCK */
.smart-features {
    background: var(--gradient-box-5);
    margin-top: 80px;
    padding: 55px 0;
}
.smart-features .smart-features-container {
    width: 800px;
    max-width:calc(100vw - 50px);
    margin: 0 auto;
}
.smart-features .heading {
    text-align: center;
    margin-bottom: 35px;
    font-size: 26px;
}
.smart-features .smart-features-organizations {
    display: grid;
    gap: 25px;
    grid-template-columns: repeat(6, 1fr);
}
.smart-features .smart-features-organizations > div {
    background: #fff !important;
    padding: 15px;
    font-weight: 700;
    text-align: center;
    border-radius: 25px;
    font-size: 14px;
    border: 0.5px solid var(--border-color-4);
    display: flex;
    align-items: center;
    justify-content: space-around;
}
.smart-features .smart-features-languages {
    border-radius: 15px;
    border: 0.5px solid var(--border-color-3);
    padding: 7px 14px;
    margin-top: 37.5px;
    display: block;
}
@media(max-width:750px) {
    .smart-features {
        margin-top:calc(75px + 25%);
    }
    .smart-features .smart-features-organizations {
        grid-template-columns: repeat(3, 1fr);
    }
}
@media(max-width:500px) {
    .smart-features .smart-features-organizations {
        grid-template-columns: repeat(2, 1fr);
    }
}
/* END: SMART FEATURES BLOCK */


/* START: CREATIVE BLOCK */
.creative {
    background:var(--gradient-box-6);
    color:var(--text-color-4);
    padding: 75px 0 75px;
}
.creative h2 {
    font-size: 45px;
    text-align: center;
    margin: 0 auto 40px;
    width: calc(100vw - 50px);
}
.creative p {
    font-size: 18px;
    line-height: 1.75;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
    width: calc(100vw - 50px);
}
.creative p a {
    color: var(--accent-color-2);
    font-weight: 700;
    text-decoration: none;
}
.creative .creative-visuals {
    display:grid;
    grid-template-columns: repeat(3, 1fr);
    width:900px;
    max-width:calc(100vw - 50px);
    gap:90px;
    margin:0 auto;
}
.creative.design-print .creative-visuals {
    gap:25px;
}
.creative.design-print .creative-visuals div {
    border-radius:25px;
    box-shadow:var(--box-shadow-2);
    height:fit-content;
    overflow:hidden;
}
.creative.design-print .creative-visuals div:first-child {
    aspect-ratio:240/199;
}
.creative.design-print .creative-visuals div:nth-child(2) {
    aspect-ratio:240/339;
}
.creative.design-print .creative-visuals div:nth-child(3) {
    aspect-ratio:240/199;
}
@media(max-width:1080px) {
    .creative .creative-visuals {
        gap:25px;
    }
}
@media(max-width:600px) {
    .creative h2 {
        font-size:28px;
    }
    .creative > p {
        font-size:16px;
    }
    .creative:not(.design-print) .creative-visuals {
        grid-template-columns: repeat(2, 1fr);
    }
    .creative:not(.design-print) .creative-visuals div:nth-child(3) {
        grid-column: span 2;
        text-align: center;
    }
    .creative:not(.design-print) .creative-visuals div:nth-child(3) video {
        max-width: 100%;
        height: auto;
        width: calc(50% - 12.5px);
    }
}
@media(max-width:750px) {
    .creative.design-print {
        padding-bottom:60%;
    }
    .creative.design-print .creative-visuals {
        display:block;
    }
    .creative.design-print .creative-visuals div {
        width:53%;
    }
    .creative.design-print .creative-visuals div:first-child {
        right: 25px;
        position: absolute;
    }
    .creative.design-print .creative-visuals div:nth-child(2) {
        transform:translateY(45%);
        position: relative;
    }
    .creative.design-print .creative-visuals div:nth-child(3) {
        position: absolute;
        transform: translateY(10%);
        right: 25px;
    }
}
/* END: CREATIVE BLOCK */

    

/* START: WEBSITE BUILDER BLOCK */
.website-builder {
    background:var(--gradient-box-11);
    color:var(--text-color-4);
    padding: 75px 0 75px;
}
.website-builder h2 {
    max-width:1000px;
    font-size: 40px;
    font-weight: normal;
    text-align: center;
    margin: 0 auto 40px;
    width: calc(100vw - 50px);
}
.website-builder > p {
    font-size: 18px;
    line-height: 1.75;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
    width: calc(100vw - 50px);
}
.website-builder > p a {
    color: var(--accent-color-2);
    font-weight: 700;
    text-decoration: none;
}
.website-builder .website-builder-features {
    display: grid;
    max-width: calc(100vw - 50px);
    gap: 25px;
    width: 1100px;
    margin: 0 auto;
    grid-template-columns: repeat(4, 1fr);
}
.website-builder .website-builder-features > div {
    background:var(--background-color-8) !important;
    padding:30px 20px;
    font-size:14px;
    text-align: center;
    border-radius: 25px;
    border: 0.5px solid var(--border-color-4);
}
.website-builder .website-builder-features > div strong {
    font-size:16px;
    margin-bottom: 20px;
    display: block;
}
.website-builder .website-builder-videos {
    display: flex;
    max-width: calc(100vw - 50px);
    gap: 25px;
    width: 1100px;
    margin: 0 auto 50px;
}
.website-builder .website-builder-videos video {
    border-radius: 25px;
    box-shadow: var(--box-shadow-2);
    max-height: 400px;
    text-align: center;
}
.website-builder-button-container {
    text-align: center;
}
@media(max-width:600px) {
    .website-builder h2 {
        font-size:28px;
    }
    .website-builder > p {
        font-size:16px;
    }
    .website-builder .website-builder-features > div strong {
        margin-bottom: 10px;
    }
}
@media(max-width:1000px) { 
    .website-builder .website-builder-features > div {
        padding:15px;
    }
    .website-builder .website-builder-features {
        grid-template-columns:repeat(2, 1fr);
    }
}
@media(max-width:750px) {
    .website-builder .website-builder-videos .video-container:last-child {
        margin-left: -35%;
        margin-top: 25%;
    }
}
@media(max-width:600px) {
    .website-builder .website-builder-videos {
        flex-direction: column;
    }
    .website-builder .website-builder-videos .video-container:last-child {
        margin-left: 0;
        margin-top: 0;
    }
}
@media(max-width:500px) {
    .website-builder .website-builder-features {
        grid-template-columns:1fr;
    }
}
/* END: WEBSITE BUILDER BLOCK */


/* START: SMALL FEATURE HIGHLIGHT */
.small-feature-highlight {
    background:var(--gradient-box-8);
    padding:50px 25px; 50px;
    text-align:center;
    margin-top:25px;
    color:var(--text-color-4);
}
.small-feature-highlight .button {
    margin-top:0;
}
.small-feature-highlight p {
    width:1000px;
    margin: 0 auto 25px;
    max-width:calc(100vw - 50px);
}
/* END: SMALL FEATURE HIGHLIGHT */


/* START: PLAIN LEADER */
.plain-leader > div {
    padding: 50px 50px 75px;
    margin: 0 auto;
    max-width: 850px;
    text-align: center;
}
.plain-leader.website > div {
    max-width:1200px;
    color:var(--text-color-4);
}
.plain-leader.website > div .subtext {
    color:var(--text-color-4);
}
.plain-leader > div h2 {
    font-size: 45px;
    margin-bottom: 25px;
    margin-top: 15px;
    text-align: center;
    margin: 0 auto;
    margin-bottom: 25px;
    margin-top: 15px;
}
.plain-leader > div p {
    font-size: 18px;
    line-height: 1.75;
    text-align: center;
    margin: 0 auto;
}
.plain-leader.website {
    background:var(--gradient-box-11);
}
.plain-leader.website > div h2 {
    font-size:40px;
}
@media(max-width:1200px) {
    .plain-leader > div {
        padding: 50px 25px 75px;
    }
}
@media(max-width:600px) {
    .plain-leader > div h2 {
        font-size:32px !important;
    }
    .plain-leader > div {
        padding: 25px 25px 50px;
    }
    .plain-leader > div p {
        font-size:16px;
    }
}
.plain-leader .button {
    background:var(--gradient-box-4);
}
.plain-leader .button:hover {
    filter:brightness(1.05);
}
.plain-leader {
    background:var(--background-color-5);
}
.plain-leader.pricing {
    background: var(--pricing-plain-leader-color);
}
/* END: PLAIN LEADER */


/* START: PHOTO LEADER */
.photo-leader {
    background:var(--gradient-box-7);
    display:flex;
}
.photo-leader > div {
    flex:45;
    display: flex;
    align-items: center;
} 
.photo-leader > div > div {
    margin-left: calc((100vw - 1200px) / 2);
    margin-right: 50px;
    padding:50px 0;
}
.photo-leader > span {
    flex:55;
    height:525px;
}
.photo-leader img {
    object-fit: cover;
    width:100%;
    height:100%;
}
.photo-leader h3 {
    font-size:50px;
    margin-bottom: 25px;
    margin-top: 15px;
    word-break: break-word;
}
.photo-leader p {
    margin:0;
    font-size:17px;
}
.photo-leader .checks {
    display: block;
    margin-top:19px;
    font-size:11px;
}
.photo-leader .checks .check {
    white-space: nowrap;
}
.photo-leader .checks .check:not(.check:last-child) {
    margin-right:20px;
}
.photo-leader .checks .check i {
    margin-right:7px;
    color:var(--positive-color);
}
@media(max-width:1300px) {
    .photo-leader > div > div {
        margin-left:50px;
        margin-right:50px;
    }
    .photo-leader h3 {
        font-size:36px;   
    }
    .photo-leader p {
        font-size:16px;   
    }
}
@media(max-width:1100px) {
    .photo-leader > div > div {
        margin-left:25px;
        margin-right:25px;
    }
}
@media(max-width:1000px) {
    .photo-leader > div, .photo-leader > span {
        flex:1;
    }
}
@media(max-width:800px) {
    .photo-leader > span {
        min-height:0;
    }
    .photo-leader img {
        height:175px;
    }
    .photo-leader {
        flex-direction: column-reverse;
    }
}
/* END: PHOTO LEADER */

/* START: FEATURE BLOCK */
.feature {
    display: flex;
    max-width: 1150px;
    width:calc(100vw - 100px);
    margin: 125px auto;
    justify-content: space-between;
    column-gap: 75px;
    align-items: center;
    flex-direction: row-reverse;
}
.feature div.video-container {
    max-width: 100%;
    min-width: 500px;
    text-align: center;
}
.feature div.video-container video {
    border-radius:25px;
    box-shadow:var(--box-shadow-2);
    max-height:400px;
    max-width:100%;
}
.feature img {
    object-fit: cover;
    border-radius:25px;
    box-shadow:var(--box-shadow-2);
    width:500px;
    aspect-ratio: 5/4;
    max-width: 100%;
}
.feature.slim img {
    height:300px
}
.feature h3 {
    font-size: 36px;
    margin-bottom: 25px;
    margin-top: 15px;
    word-break: break-word;
}
.feature.slim h3 {
    font-size: 30px;
}
.feature p {
    font-size: 18px;
    line-height: 1.75;
}
.feature p a {
    font-weight:700;
    color:var(--accent-color-2);
    text-decoration: none;
}
.feature p a:hover {
    color:var(--accent-color-2-light);
}
@media(max-width:1000px) {
    .feature {
        flex-direction: column-reverse !important;
        row-gap: 25px;
    }
    .feature.homepage > div.video-container {
        display:none;
    }
    .feature.homepage > div div.video-container {
        display:block;
        margin-bottom:30px;
    }
    .feature.homepage > img {
        display:none;
    }
    .feature.homepage > div img {
        display:block;
        margin:0 auto 30px;
    }
}
@media(min-width:1001px) {
    .feature.homepage > div.video-container {
        display:block;
    }
    .feature.homepage > div div.video-container {
        display:none;
    }
    .feature.homepage > img {
        display:block;
    }
    .feature.homepage > div img {
        display:none;
    }
}
@media(max-width:600px) {
    .feature h3 {
        font-size:28px;
    }
    .feature p {
        font-size:16px;
    }
    .feature div {
        width:100%;
    }
    .feature div.video-container {
        min-width: 0;
    }
    .feature {
        display: flex;
        max-width: 1150px;
        width:calc(100vw - 50px);
        margin: 75px auto;
    }
}
/* END: FEATURE BLOCK */

/* START: ALL FEATURES WEB BLOCK */
.all-features {
    padding: 50px 0 50px;
    border-top: 1px solid var(--border-color-2);
}
.all-features.homepage {
    background:var(--gradient-box-9);
    border:0;
}
.all-features.homepage p {
    width:calc(100vw - 50px);
    text-align:center;
    margin:0 auto;
}
.all-features.homepage .button {
    margin: 40px auto 0;
    display: block;
    width: fit-content;
}
.all-features h2 {
    font-size: 45px;
    margin-bottom: 25px;
    margin-top: 15px;
    text-align: center;
    width: 650px;
    max-width: calc(100vw - 50px);
    margin: 0 auto;
    margin-bottom: 40px;
}
.all-features > div {
    text-align: center;
    max-width:950px;
    width:calc(100% - 50px);
    margin:40px auto 0;
}
.all-features > div a {
    padding: 10px 25px;
    background: none;
    border-radius: 50px !important;
    margin-bottom: 15px;
    margin-right: 10px;
    color: var(--text-color-4);
    text-decoration: none;
    display: inline-block;
    font-weight: 400;
    margin-top: 0;
    transition: .1s ease-in-out;
    font-size: 15px;
    border: 1px solid var(--border-color-2);
    box-sizing: border-box;
}
.all-features > div a:last-child {
    margin-right:0;
}
.all-features > div a:hover, .all-features > div a.current {
    background:var(--background-color-6);
}
@media(max-width:600px) {
    .all-features h2 {
        font-size:28px;
    }
}
/* END: ALL FEATURES WEB BLOCK */


/* START: TRY BLOCK */
.try {
    padding:100px 0;
    background: var(--accent-color-2);
    box-sizing: border-box;
    border-radius: 50px;
    width: calc(100vw - 100px);
    padding:50px;
    margin:0 auto 100px;
    text-align: center;
}
.try h2 {
    font-size: 40px;
    margin-bottom: 25px;
    margin-top: 15px;
    text-align: center;
    max-width: 650px;
    margin: 0 auto;
    margin-bottom: 40px;
    color: var(--text-color-5);
}
.try p {
    font-size: 18px;
    line-height: 1.75;
    text-align: center;
    max-width: 650px;
    color: var(--text-color-5);
    margin: 0 auto;
}
.try .button {
    background: var(--try-button-color);
}
.try .button:hover {
    background: var(--try-button-color-light);
}
@media(max-width:1200px) {
    .try {
        width: calc(100vw - 50px);
    }
}
@media(max-width:600px) {
    .try {
        padding:25px;
    }
    .try h2 {
        font-size:32px;
    }
    .try p {
        font-size:16px;
    }
}
/* END: TRY BLOCK */


/* START: FAQ BLOCK */
.faq {
    border-top: 1px solid var(--border-color-2);
    padding: 75px 0 75px;
    border-bottom: 1px solid var(--border-color-2);
    margin-bottom: 100px;
}
.faq h2 {
    font-size: 45px;
    margin-bottom: 25px;
    margin-top: 15px;
    text-align: center;
    max-width: 650px;
    width:calc(100% - 50px);
    margin: 0 auto;
    margin-bottom: 40px;
}
.faq p {
    font-size: 18px;
    line-height: 1.75;
    text-align: center;
    max-width: 650px;
    width:calc(100% - 50px);
    margin: 0 auto 50px;
}
.faq p a {
    text-decoration: none;
    font-weight: 700;
    color: var(--accent-color-2);
    transition:.1s color ease-in-out;
}
.faq p a:hover {
    color:var(--accent-color-2-light) !important;
}
.faq > div {
    background:var(--gradient-box-7);
    color:var(--text-color-9);
    padding:25px;
    border-radius:25px;
    margin-bottom:25px;
    max-width: 800px;
    width:calc(100% - 50px);
    font-size: 15px;
    box-sizing: border-box;
    margin: 25px auto 0;
}
.faq > div .question {
    cursor:pointer;
    display: flex;
    justify-content: space-between;
    font-size: 18px;
}
.faq > div .answer {
    margin-top: 25px;
    display: none;
    line-height: 1.75;
}
@media(max-width:600px) {
    .faq h2 {
        font-size:28px;
    }
    .faq p, .faq > div .question {
        font-size:16px;
    }
}
/* END: FAQ BLOCK */


/* START: LESS-SIGNIFICANT FEATURES BLOCK */
.less-significant {
    margin-top: 75px;
    padding-bottom:75px;
    display: grid;
    max-width: 1050px;
    width:calc(100% - 50px);
    margin: 50px auto 0;
    gap: 50px 75px;
    grid-template-columns:repeat(3, 1fr);
}
.less-significant > div {
    background:var(--background-color-7);
    padding:25px;
    border-radius:25px;
    line-height: 1.75;
    height: fit-content;
    box-sizing: border-box;
}
.less-significant > div strong {
    margin-bottom:10px;
    display: block;
}
.less-significant .badge {
    margin-top:10px;
}
@media(max-width:1100px) {
    .less-significant {
        gap:25px;
    }
}
@media(max-width:900px) {
    .less-significant {
        grid-template-columns:repeat(2, 1fr);
    }
}
@media(max-width:700px) {
    .less-significant {
        gap:20px;
    }
    .less-significant > div {
        font-size:15px;
        padding:25px 15px;
        height:auto;
    }
    .less-significant .badge {
        font-size:11px;
        width:fit-content;
        display:block;
    }
}
/* END: LESS-SIGNIFICANT FEATURES BLOCK */

/* START: sub-highlights BLOCK */
.sub-highlights {
    margin-top: 75px;
    padding-bottom:75px;
    display: flex;
    max-width: 1050px;
    width:calc(100% - 50px);
    margin: 50px auto 0;
    gap: 50px;
}
.sub-highlights > div {
    border:1px solid var(--border-color-2);
    flex:1;
    padding:25px;
    border-radius:25px;
    line-height: 1.75;
    height: fit-content;
    box-sizing: border-box;
}
.sub-highlights > div strong {
    margin-bottom:10px;
    display: block;
    font-size:19px;
}
@media(max-width:1200px) {
    .sub-highlights {
        gap:25px;
    }
}
@media(max-width:900px) {
    .sub-highlights {
        flex-direction:column;
    }
}
/* END: sub-highlights BLOCK */


/* START: CUSTOMERS REASONS BLOCK */
.customers-reasons {
    max-width:1200px;
    margin:0 auto;
    width:calc(100vw - 50px);
    margin-bottom:75px;
}
.customers-reasons h2 {
    font-size: 45px;
    text-align: center;
    margin:100px auto 0;
}
.customers-reasons > div {
    display: flex;
    margin-top:50px;
    gap: 50px;
}
.customers-reasons > div > span {
    flex:5;
}
.customers-reasons > div > span > img {
    width:100%;
    height:100%;
    object-fit: cover;
    border-radius:25px;
}
.customers-reasons > div > div {
    flex:6;
    display: flex;
    gap: 25px;
    flex-direction: column;
}
.customers-reasons > div > div > div {
    border:1px solid var(--border-color-2);
    flex:1;
    padding:25px;
    border-radius:25px;
    line-height: 1.75;
    height: fit-content;
    box-sizing: border-box;
}
.customers-reasons > div > div strong.heading {
    margin-bottom:10px;
    display: block;
    font-size:19px;
}
@media(max-width:800px) {
    .customers-reasons > div {
        flex-direction: column-reverse;
        gap:25px;
    }
    .customers-reasons > div > img {
        height:400px;
        width:100%;
    }
    .customers-reasons > div > span > img {
        height:250px;
    }
}
@media(max-width:600px) {
    .customers-reasons h2 {
        font-size:28px;
    }
}
/* END: CUSTOMERS REASONS BLOCK */


/* START: CUSTOMERS READY */
.customers-ready {
    background: var(--gradient-box-6);
    padding: 50px 0 50px;
    margin-bottom:50px;
}
.customers-ready p {
    width:calc(100vw - 50px);
    text-align:center;
    margin:0 auto;
    line-height:1.75;
    max-width: 1050px;
    font-size:18px;
}
.customers-ready h2 {
    font-size: 45px;
    margin-bottom: 25px;
    margin-top: 15px;
    text-align: center;
    width: 650px;
    max-width: calc(100vw - 50px);
    margin: 0 auto;
    margin-bottom: 40px;
}
.customers-ready .button {
    margin: 40px auto 0;
    display: block;
    width: fit-content;
}
@media(max-width:600px) {
    .customers-ready h2 {
        font-size:28px;
    }
    .customers-ready p {
        font-size:16px;
    }
}
/* END: CUSTOMERS READY */



/* START: PLANS BLOCK */
#plans {
    display: grid;
    grid-template-columns:2fr 3fr;
    width: calc(100vw - 100px);
    margin:25px auto 0;
    gap:30px;
    max-width:1200px;
}
#plans > div {
    border: 1px solid var(--border-color-6);
    border-radius: 25px;
    padding: 25px;   
    padding-bottom:10px;
}
#plans > div:nth-child(2) {
    background:var(--gradient-box-10);
}
#plansWebsiteOnlyText {
    display: block;
    font-size: 14px;
    text-align: center;
    margin-top:50px;
    color: var(--text-color-7)
}
#plans .name {
    display: block;
    text-align: center;
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 5px;
}
#plans .nameDescription {
    display: block;
    font-size: 14px;
    text-align: center;
    height: 80px;
    color: var(--text-color-7)
}
#plans .nameDescription.blue {
    color: var(--accent-color-2);   
}
#plans > div:nth-child(3) .nameDescription {
    height: auto;
    margin-bottom:15px;
}
#plans .price {
    display: flex;
    align-items: center;
    justify-content:center;
    gap:5px;
    font-size: 27px;
    font-weight: 400;
    margin-bottom: 5px;
}
#plans .price .annual {
    display: none;
    align-items:center;
    gap:10px;
}
#plans > div:nth-child(3) .name, #plans > div:nth-child(3) .nameDescription {
    text-align: left;
}
#plans > div:nth-child(3) .price {
    justify-content: flex-start;
}
#plans .oldPrice {
    display: block;
    text-decoration: line-through;
    color: #d95b5b;
    font-size: 14px;
}
#plans .newPrice {
    display: block;
}
#plans .priceDescription {
    display: block;
    font-size: 13px;
    color: var(--text-color-7)
}
#plans .startButton {
    font-size: 16px;
    padding: 10px 0;
    background: var(--gradient-box-4);
    color: var(--text-color-5);
    width: 100%;
    max-width:400px;
    text-align: center;
    box-sizing: border-box;
    border-radius: 7.5px;
    text-decoration: none;
    display: block;
    font-weight: 700;
    margin: 25px auto 30px;
    transition: .1s ease-in-out;
    border-radius: 100px;
}
#plans .startButton:hover {
    filter:brightness(1.05);
}
#plans .perks {
    font-size:14px;
}
#plans > div:nth-child(2) .perks {
    display:grid;
    grid-template-columns: repeat(2, 1fr);
    column-gap:10px;
}
#plans .perks span {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}
#plans .perks span i {
    margin-right:2.5px;
}
#plans .perks span i.fa-check {
    color:var(--positive-color);
}
#plans .perksAnd {
    background:var(--background-color-1);
    padding: 10px 15px;
    display: inline-block !important;
    border-radius: 7.5px;
    font-size:14px;
    margin-bottom:25px;
}
#plans .perksAnd strong {
    display: inline;
}
#plansToggle {
    background: var(--background-color-9);
    padding: 9px 5px;
    box-sizing: border-box;
    border-radius: 77px;
    font-weight: 700;
    margin: 50px auto 0;
    font-size: 13px;
    display: block;
    width: fit-content;
}
#plansToggle a {
    font-weight: 400;
    padding: 5px 10px;
    border-radius: 50px;
    box-sizing: border-box;
    text-decoration: none;
    font-weight: 700;
    color: var(--text-color-7);
    transition:0.2s ease-in-out;
}
#plansToggle a.selected {
    background:var(--background-color-1);
    color:var(--text-color-4);
}
#plansToggle .save {
    color: var(--positive-color);
    margin-left: 5px;
    font-weight: 700;
}
#plansUserCountHeading {
    font-size: 14px;
    color: var(--text-color-7)
    margin: 0 auto;
    display: block;
    text-align: center;
    margin-top: 25px;
}
#plansUserCountElement {
    display: flex;
    margin: 0 auto;
    width: fit-content;
    align-items: center;
    margin-top: 10px;
}
#plansUserCountElement .left {
    background: var(--background-color-1);
    text-align: center;
    margin-right: -30px;
    z-index: 2;
    border-radius: 50px;
    height: 25px;
    font-weight: 700;
    width: 25px;
    cursor: pointer;
    user-select: none;
}
#plansUserCountElement .right {
    background: var(--background-color-1);
    text-align: center;
    margin-left: -30px;
    z-index: 2;
    border-radius: 50px;
    height: 25px;
    font-weight: 700;
    width: 25px;
    cursor: pointer;      
    user-select: none;
}
#plansUserCountElement input {
    margin: 0 auto;
    display: block;
    background: var(--background-color-9);
    color:var(--text-color-4);
    border: 0;
    outline: none;
    text-align: center;
    padding: 7.5px 10px;
    font-family: 'Poppins';
    font-size: 13px;
    font-weight: 700;
    width: 100px;
    border-radius: 25px;
}
.addonsBlock {
    background: var(--gradient-box-8);
    max-width: 800px;
    width: calc(100% - 50px);
    border: 1px solid var(--border-color-2);
    border-radius: 25px;
    padding: 25px;
    gap: 200px;
    box-sizing: border-box;
    padding-bottom: 10px;
    margin-top: 50px;
    justify-content: space-evenly;
    margin: 100px auto 50px;
}
.addonsBlock a {
    color:inherit;
}
.addonsBlock.terminals {
    background: var(--gradient-box-9);
    margin:50px auto 100px;
}
.addonsBlock.terminals img {
    max-width:100%;
    margin-top:15px;
}
.addonsBlock.terminals strong {
    margin-bottom:0 !important;
}
.addonsBlock.terminals .answer div > span {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 15px;
}
.addonsBlock > div {
    text-align: center;
}
.addonsBlock > div .name {
    display: block;
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 5px;
    color:var(--tex-color-4);
}
.addonsBlock > div .nameDescription {
    display: block;
    font-size: 14px;
    color: var(--text-color-7)
}
.addonsBlock > div .nameDescription.footer {
    margin-top:25px;
    margin-bottom:25px;
}
.addonsBlock .question {
    text-decoration: none;
    font-weight: 700;
    display: block;
    font-size: 14px;
    text-align: center;
    margin-bottom: 25px;
    color: var(--text-color-4)
}
.addonsBlock .question span:first-child {
    margin-right:5px;
}
.addonsBlock .answer {
    display:none;
    line-height: 1.75;
}
.addonsBlock .answer > div {
    flex: 1;
    display: flex;
    gap: 130px;
    max-width: 550px;
    margin: 0 auto;
}
.addonsBlock .answer > div > span {
    display: block;
    margin-bottom: 15px;
    font-size: 14px;
    flex: 1;
    color: var(--text-color-7)
    text-align: center;
}
.addonsBlock .answer > div > span strong {
    display: block;
    color:var(--text-color-4);
    margin-bottom: 15px;
}
.perks a {
    color:var(--accent-color-2);
    font-weight:700;
    text-decoration: none;
}
.perks a:hover {
    color:var(--accent-color-2-light);
}
.perks .extra-website {
    padding: 15px;
    border: 0.5px solid var(--border-color-5);
    border-radius: 25px;
    margin-bottom: 25px;
}
.perks .extra-website .extra-website-price-and-toggle {
    color:var(--text-color-10);
    margin-bottom:10px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.perks .extra-website .extra-website-price-and-toggle .toggle {
    display: inline-block;
    position: relative;
    width: 60px;
    height: 30px;
    background: var(--background-color-10);
    cursor:pointer;
    border-radius: 50px;
    padding:3px;
    box-sizing: border-box;
    transition:0.1s background ease-in-out;
}
.perks .extra-website .extra-website-price-and-toggle .toggle:has(input:checked) {
    background:var(--positive-color);
}
.perks .extra-website .extra-website-price-and-toggle .toggle input {
    display: none;
}
.perks .extra-website .extra-website-price-and-toggle .toggle .toggle-dot {
    height:24px;
    width:24px;
    background:var(--background-color-1);
    border-radius:30px;
    transition:0.1s margin ease-in-out;
}
.perks .extra-website .extra-website-price-and-toggle .toggle:has(input:checked) .toggle-dot {
    margin-left:31px;
}
@media (max-width:1100px) {
    #plans {
        width:calc(100vw - 50px);
    }
}
@media (max-width:1050px) {
    #plans .nameDescription {
        height:95px;
    }
}
@media (max-width:900px) {
    #plans {
        grid-template-columns: repeat(1, 1fr);
    }
    #plans .nameDescription {
        height: auto;
        margin-bottom:15px;
    }
    .addonsBlock .question {
        margin-bottom:50px;
    }
    .addonsBlock .answer > div {
        gap:25px;
        flex-direction: column;
    }
}
@media (max-width:450px) {
    #plans > div:nth-child(2) .perks {
        display:block;
    }
}
/* END: PLANS BLOCK */


/* START: SCROLL CONTAINER */
#scroll-container-banner {
    position: fixed;
    top: 125px;
    width: 100vw;
    left: 0;
    background: var(--gradient-box-9);
    text-align: center;
    padding:9px 0;
    font-weight: bold;
    font-size: 14px;
    opacity:0;
    pointer-events: none;
    transition:opacity 0.5s;
    box-shadow:var(--box-shadow-1);
    color:var(--text-color-7);
}
@media (max-width:750px) {
    #scroll-container-banner {
        font-size:13px;   
    }
}
/* END: SCROLL CONTAINER */