:root {
    --text-main-color: #252930;
    --text-muted-color: #71819f;

    --blue: #216bf3;
    --blue-focus: #144eb7;
}
body {
    font-family: "Poppins", sans-serif;
    color: var(--text-main-color);
    font-size: 16px;
    margin: 0;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    letter-spacing: -0.5px;
}
* {
    box-sizing: border-box;
}
svg {
    display: block;
}
a, .link {
    text-decoration: none;
    color: var(--blue);
}
a:hover, .link:hover {
    text-decoration: underline;
    color: var(--blue-focus);
}
.bold {
    font-weight: bold;
}
div {
    box-sizing: border-box;
}
input[type=email], input[type=text], button {
    font-family: "Poppins", sans-serif;
}
.muted {
    color: var(--text-muted-color) !important;
}
.hidden {
    display: none !important;
}
.logo {
    display: inline-block;
    width: 154px;
    height: 40px;
    background-size: 154px 40px;
    vertical-align: middle;
}

/*
########################################################################################################################
########################################################################################################################
    NAVBAR
########################################################################################################################
########################################################################################################################
 */

.navbar {
    width: 100%;
    height: 80px;
    max-height: 80px;
    position: fixed;
    top: 0;
    left: 0;
    transition: background-color .2s linear, box-shadow .2s linear;
    z-index: 1000;
    box-shadow: 0 5px 10px #7b7b7b1a;
    border-bottom: 1px solid #ffffff20;
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
}
.navbar:hover {
    box-shadow: 0 10px 15px rgba(123, 123, 123, 0.2);
}
.navbar a {
    text-decoration: none;
    display: flex;
    gap: 10px;
}
.navbar-container {
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}
.navbar-links {
    align-items: center;
    gap: 20px;
    display: flex;
}
.navbar-link {
    font-weight: 600;
    color: var(--text-main-color);
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
    transition: background-color .2s ease;
    padding: 0 20px;
    height: 50px;
}
.navbar:hover .navbar-link {
    color: var(--text-muted-color);
}
.navbar-link:hover {
    color: var(--text-main-color);
    border-radius: 8px;
    background: #f8f8f8;
}
.navbar-link-signin:active, .navbar-link-signup:active {
    transform: scale(0.98);
}
.navbar-link .ico-angle-down {
    transition: transform .2s linear;
}
.navbar-link:hover .ico-angle-down {
    transform: rotate3d(1, 0, 0, 180deg);
}
.navbar-link-signin {
    border: 2px solid #216bf2;
    height: 40px;
    border-radius: 20px;
    color: #216bf2 !important;
    transition: background-color .1s linear;
    font-weight: 500;
}
.navbar-link-signin:hover {
    background-color: var(--blue-focus);
    color: #fff !important;
    border-color: var(--blue-focus);
    border-radius: 20px;
}
.navbar-link-signup {
    background-color: var(--blue);
    color: #fff !important;
    border: none;
    height: 56px;
    border-radius: 5px !important;
    transition: background-color .2s ease;
}
.navbar-link-signup:hover {
    color: #fff !important;
    background-color: var(--blue-focus);
}
.navbar-overlay {
    position: fixed;
    top: 80px;
    left: 0;
    width: 100%;
    height: calc(100% - 80px);
    z-index: 98;
    display: none;
    background: #00000020;
}
.navbar-submenu {
    display: none;
    min-height: 50px;
    position: fixed;
    z-index: 1001;
    top: 90px;
    box-shadow: 0 20px 30px #00000020;
    border-radius: 20px;
    overflow: hidden;
    transform: translate(-50%, 0);
    left: 50%;
}
.navbar-submenu a {
    text-decoration: none;
}
.navbar-submenu-container {
    margin: 0 auto;
    display: flex;
    flex-direction: row;
}
.navbar-submenu-column {
    flex: 3;
    padding: 10px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-width: 500px;
}
.navbar-submenu-sidebar {
    flex: 2;
    padding: 30px !important;
}
.navbar-submenu-sidebar a:hover {
    color: var(--blue) !important;
}
.navbar-submenu-sidebar-title {
    text-transform: uppercase;
    font-weight: 600;
}
.navbar-submenu-sidebar-list {
    list-style-type: none;
    padding: 0;
    margin: 0;
}
.navbar-submenu-sidebar-list li {
    margin: 10px 0;
}
.navbar-submenu-sidebar-list li a {
    color: var(--text-main-color);
}
.navbar-submenu-footer {
    width: 100%;
    background-color: #f6f6f6;
    border-top: 1px solid #efefef;
}
.navbar-submenu-footer-container {
    width: 1280px;
    margin: 0 auto;
    padding: 10px 0;
}
.navbar-submenu-option {
    border-radius: 10px;
    min-height: 20px;
    padding: 20px;
    transition: all .2s linear;
    border: 1px solid transparent;
    display: flex;
    flex-direction: row;
    gap: 20px;
}
.navbar-submenu-option:hover .navbar-submenu-option-title {
    color: var(--blue);
}
.navbar-submenu-option-disabled {
    pointer-events: none;
    opacity: 0.5;
}
.navbar-submenu-option-icon {
    font-size: 20px;
    text-align: center;
    background-color: #f1f1f1;
    border-radius: 15px;
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #757575;
}
.navbar-submenu-option-text {
    flex: 1;
}
.navbar-submenu-option-title {
    font-weight: 600;
}
.navbar-submenu-option-subtitle {
    font-size: 14px;
    color: var(--text-muted-color);
}
.navbar-menu-button {
    display: none;
    width: 60px;
    height: 40px;
    float: right;
    color: var(--blue);
    border-radius: 5px;
    text-align: center;
    line-height: 42px;
    font-size: 25px;
    position: fixed;
    cursor: pointer;
    right: 10px;
    top: 20px;
}
.navbar-open .navbar-menu-button {
    color: rgba(0, 0, 0, 0.50);
}

.navbar-dark {
    background-color: rgba(16, 19, 32, 0.65);
}
.navbar-dark .logo {
    background-image: url("/assets/svg/logo-white.svg");
}
.navbar-dark .navbar-link, .navbar-dark .navbar-link:hover {
    color: #fff;
}
.navbar-dark .navbar-submenu {
    background: var(--blue-3);
    border: 1px solid #191d33;
}
.navbar-dark .navbar-submenu-option:hover {
    background-color: #0e101a;
}
.navbar-dark .navbar-submenu-sidebar {
    border-left: 1px solid #141726;
    background-color: #0e101a;
    color: #fff;
}
.navbar-dark .navbar-submenu-sidebar a {
    color: #fff;
}
.navbar-dark .navbar-submenu-option-title {
    color: #fff;
}
.navbar-dark .navbar-submenu-option:hover {
    border: 1px solid #ffffff15;
}

.navbar-light, .navbar-scrolled {
    background-color: #ffffffe3;
}
.navbar-light .logo, .navbar-scrolled .logo {
    background-image: url("/assets/svg/logo-black.svg");
}
.navbar-light .navbar-link, .navbar-light .navbar-link:hover, .navbar-scrolled .navbar-link, .navbar-scrolled .navbar-link:hover {
    color: var(--text-main-color);
}
.navbar-light .navbar-submenu, .navbar-scrolled .navbar-submenu {
    background: #fff;
    border: 1px solid #b5b6c0;
}
.navbar-light .navbar-submenu-option:hover, .navbar-scrolled .navbar-submenu-option:hover {
    background-color: var(--grey-3);
}
.navbar-light .navbar-submenu-sidebar, .navbar-scrolled .navbar-submenu-sidebar {
    border-left: 1px solid #efefef;
    background-color: var(--grey-3);
    color: var(--text-main-color);
}
.navbar-light .navbar-submenu-sidebar a, .navbar-scrolled .navbar-submenu-sidebar a {
    color: var(--text-main-color);
}
.navbar-light .navbar-submenu-option-title, .navbar-scrolled .navbar-submenu-option-title {
    color: var(--text-main-color);
}
.navbar-light .navbar-submenu-option:hover {
    border: 1px solid #00000015;
}
.navbar-submenu-option-icon-recordings {
    background-color: #e5f6fe;
    color: #5f94cc;
}
.navbar-submenu-option-icon-surveys {
    background-color: #d8f8fb;
    color: #61b2b1;
}
.navbar-submenu-option-icon-heatmaps {
    background-color: #fdf0e8;
    color: #c79f6b;
}
.navbar-submenu-option-recordings:hover {
    background-color: rgba(0, 126, 255, 0.15) !important;
    box-shadow: 0 4px 5px rgba(0, 0, 0, 0.05);
}
.navbar-submenu-option-recordings:hover .navbar-submenu-option-title {
    color: #5f94cc;
}
.navbar-submenu-option-surveys:hover {
    background-color: rgba(0, 255, 253, 0.15) !important;
    box-shadow: 0 4px 5px rgba(0, 0, 0, 0.05);
}
.navbar-submenu-option-surveys:hover .navbar-submenu-option-title {
    color: #61b2b1;
}
.navbar-submenu-option-heatmaps:hover {
    background-color: rgba(255, 165, 0, 0.15) !important;
    box-shadow: 0 4px 5px rgba(0, 0, 0, 0.05);
}
.navbar-submenu-option-heatmaps:hover .navbar-submenu-option-title {
    color: #c79f6b;
}
.footer {
    width: 100%;
    padding: 30px 0 80px 0;
    overflow: hidden;
}
.footer-dark {
    background-color: var(--blue-3);
    color: #fff;
    background-image: linear-gradient(0deg, var(--blue-3), #1d223d);
}
.footer-container {
    display: flex;
    justify-content: space-between;
}
.footer-links a {
    display: block;
    margin: 20px 0;
    font-size: 15px;
    color: var(--grey-2);
}
.footer-networks {
    display: flex;
    flex-direction: column;
    padding: 30px;
}
.footer-networks a {
    font-size: 30px;
    width: 40px;
    height: 40px;
    text-align: center;
    color: var(--grey-2);
    text-decoration: none;
}
.footer-dark .footer-links a, .footer-dark .footer-networks a {
    color: var(--white-2);
}
.footer-caption {
    font-weight: 600;
}
.footer-dark .footer-caption {
    color: #fff;
}
.footer-links a:hover {
    color: var(--blue);
    text-decoration: none;
}
.footer-logo-black {
    background-image: url("/assets/svg/logo-black.svg");
}
.footer-logo-white {
    background-image: url("/assets/svg/logo-white.svg");
}
.footer-copy {
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    font-weight: 300;
    font-size: 14px;
    color: var(--text-muted-color);
}
.gdpr {
    width: 560px;
    min-height: 100px;
    position: fixed;
    bottom: 20px;
    background-color: #fff;
    transition: all .5s linear;
    left: 20px;
    border-radius: 10px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 30px;
}
.gdpr-hidden {
    opacity: 0;
}
.gdpr-link {
    text-decoration: underline;
    display: inline-block;
}
.gdpr-buttons {
    display: flex;
    justify-content: end;
    align-items: center;
    gap: 30px;
}
.gdpr-title {
    font-size: 25px;
    display: block;
    margin-bottom: 20px;
    font-weight: 600;
}
.gdpr-message {
    display: block;
}
.gdpr-close {
    line-height: 40px;
    height: 40px;
    text-align: center;
    cursor: pointer;
    border-radius: 10px;
}
.image-app {
    margin: 0 auto;
    background-size: contain;
    width: 100%;
    border-radius: 10px;
    transition: box-shadow .2s linear, outline-width .2s linear, outline-color .2s linear;
    box-shadow: 0 2px 10px #00000070;
}
.image-app:hover {
}
.image-not-found {
    max-width: 450px;
    margin-top: -350px;
}
.block {
    padding: 70px 0;
}
.block-header {
    padding-top: 80px;
    box-sizing: border-box;
    color: #fff;
    min-height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.block-dark {
    background-color: var(--blue-3);
    color: #fff;
    background-image: linear-gradient(0deg, var(--blue-3), #1d223d);
}
.block-light {
    background-color: #fff;
    color: var(--text-main-color);
}
.block-home-recordings {
    background-image: linear-gradient(180deg, #fff 0%, #e9f5ff 25%, #fff 100%);
}
.block-home-surveys {
    background-image: linear-gradient(180deg, #fff 0%, #e9feff 25%, #fff 100%);
}
.block-home-heatmaps {
    background-image: linear-gradient(180deg, #fff 0%, #fef5ec 25%, #fff 100%);
}
.block-404 {
    background-image: linear-gradient(45deg, #ffffff, #ffffff);
}
.block-bordered {
    border-top: 1px solid #f1f1f1;
}
.product-box {
    padding: 40px;
    background: var(--grey-3);
    border-radius: 24px;
    box-shadow: rgba(0, 0, 0, .1) 0 1px 2px 0;
    font-size: 19px;
    text-align: left;
    color: #333;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    overflow: hidden;
    cursor: pointer;
    text-decoration: none !important;
}
.product-box:hover {
    color: inherit;
}
.product-box:hover .product-box-link {
    text-decoration: underline;
}
.product-box:hover .product-box-image {
    transition: transform 40s cubic-bezier(0, .8, .9, 1);
    transform: rotate(320deg) scale(4);
}
.product-box-recordings {
    background-image: linear-gradient(270deg, #8ebdf1 10%, #f8f8f8 35%);
    background-image: linear-gradient(228deg, #0566d1 0%, #09152a 100%);
}
.product-box-surveys {
    background-image: linear-gradient(270deg, #c1f7e7 10%, #f8f8f8 35%);
    background-image: linear-gradient(228deg, #50af7a 0%, #0a3624 100%);
}
.product-box-heatmaps {
    background-image: linear-gradient(270deg, #f1c38f 10%, #f8f8f8 35%);
    background-image: linear-gradient(228deg, #f1c38f 0%, #2a0d09 100%);
}
.product-box-text {
    display: flex;
    flex-direction: column;
    gap: 30px;
    justify-content: space-between;
}
.product-box-title {
    font-size: 25px;
    font-weight: 600;
    color: #fff;
}
.product-box-description {
    color: #c2c2c2;
    font-size: 18px;
}
.product-box-link {
    color: var(--blue);
}
.product-box-image {
    font-size: 140px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #ffffff57;
    width: 230px;
}
.product-box-recordings .product-box-image {
    transform: rotate(-140deg) scale(2.5);
}
.product-box-recordings:hover .product-box-image {
    transform: rotate(-140deg) scale(4);
}
.product-box-surveys .product-box-image {
    transform: rotate(-45deg) scale(2.5);
}
.product-box-surveys:hover .product-box-image {
    transform: rotate(-45deg) scale(4);
}
.product-box-heatmaps .product-box-image {
    transform: rotate(-50deg) scale(3);
}
.product-box-heatmaps:hover .product-box-image {
    transform: rotate(-50deg) scale(4.5);
}
.box {
    border-radius: 10px;
    padding: 30px;
    margin: 0 auto;
}
.box-thin {
    max-width: 900px;
}
.box-rounded-1 {
    border-radius: 20px;
}
.box-rounded-2 {
    border-radius: 40px;
}
.box-rounded-3 {
    border-radius: 80px;
}
.box-transparent {
    background-color: #00000020;
}
.conclusion {
    width: 100%;
    border-radius: 30px;
    min-height: 150px;
    padding: 80px;
    color: #fff;
    position: relative;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    transition: box-shadow .2s linear;
    background-image: linear-gradient(45deg, #0e121c, #232a41);
}
.conclusion:hover {
    box-shadow: 0 40px 40px #00000060;
}
.conclusion-body {
    display: flex;
    flex-direction: column;
    gap: 60px;
    align-items: start;
}
.conclusion-title {
    font-size: 40px;
    letter-spacing: -1px;
    font-weight: 600;
    color: #ffffff30;
    transition: color .5s linear;
    margin-bottom: 10px;
}
.conclusion-subtitle {
    color: #ffffff30;
    transition: color .5s linear;
    font-size: 20px;
}
.conclusion-buttons {
    display: flex;
    align-items: center;
    gap: 20px;
}
.conclusion:hover .conclusion-title, .conclusion:hover .conclusion-subtitle {
    color: #fff;
}

.block-product {
    color: var(--text-main-color);
    padding-top: 200px;
    box-sizing: border-box;
    text-align: center;
}
.block-product-recordings-1 {
    background-image: linear-gradient(180deg, #edfbff, #8ebdf1);
}
.block-product-recordings-2 {
    background-repeat: no-repeat;
    background-image: url("/assets/pages/recordings/svg/background.svg");
    background-size: 100% 100%;
    width: 100%;
    display: flex;
    justify-content: center;
    margin-bottom: -1px;
    color: #fff;
}
.block-product-recordings-3 {
    background-image: linear-gradient(180deg, #fff 90%, #d1eaff 100%);
}
.block-product-recordings-4 {
    background-image: linear-gradient(180deg, #e1f0ff, #f9fcff);
    border-bottom: 1px solid #ddebf9;
}

.block-product-surveys-1 {
    background-image: linear-gradient(180deg, #edfbff, #8ef1ee);
}
.block-product-surveys-2 {
    background-repeat: no-repeat;
    background-image: url("/assets/pages/surveys/svg/background.svg");
    background-size: 100% 100%;
    width: 100%;
    display: flex;
    justify-content: center;
    margin-bottom: -1px;
    color: #fff;
}
.block-product-surveys-3 {
    background-image: linear-gradient(180deg, #fff 90%, #e2fdff 100%);
}

.block-product-heatmaps-1 {
    background-image: linear-gradient(180deg, #feede6, #f1c38f);
}
.block-product-heatmaps-2 {
    background-repeat: no-repeat;
    background-image: url("/assets/pages/heatmaps/svg/background.svg");
    background-size: 100% 100%;
    width: 100%;
    display: flex;
    justify-content: center;
    margin-bottom: -1px;
}
.block-product-heatmaps-3 {
    background-image: linear-gradient(180deg, #fff 90%, #fff3e9 100%);
}
.block-product-heatmaps-4 {
    background-image: linear-gradient(180deg, #fff, #fde7d1);
}

.product-badge {
    display: inline-block;
    padding: 0 20px;
    margin: 0 auto;
    border-radius: 10px;
    font-weight: 600;
    line-height: 40px;
    font-size: 24px;
    letter-spacing: 3px;
    text-align: center;
    text-transform: uppercase;
    background: #fff;
    box-shadow: 0 2px 17px;
    outline: 7px solid #ffffffb5;
}
.product-badge-recordings {
    color: #6b9bc5;
    background-image: linear-gradient(180deg, #c6e2fa, #93c3eb);
}
.product-badge-heatmaps {
    color: #c19c75;
    background-image: linear-gradient(180deg, #f7e2cb, #e7c29d);
}
.product-badge-surveys {
    color: #61a3ad;
    background-image: linear-gradient(180deg, #d3f9f7, #9dd6d3);
}
.product-title {
    max-width: 900px;
}
.product-title-recordings {
    background-image: radial-gradient(#e4f2ff 50%, #ffffff00 70%);
}
.product-title-surveys {
    background-image: radial-gradient(#e2fdff 50%, #ffffff00 70%);
}
.product-title-heatmaps {
    background-image: radial-gradient(#fff1e4 50%, #ffffff00 70%);
}
.title {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
}
.title-1 {
    font-size: 70px;
    line-height: 90px;
    margin: 0;
    font-weight: 700;
    letter-spacing: -3px;
}
.title-1 span {
    color: var(--blue);
}
.title-2 {
    font-size: 60px;
    line-height: 60px;
    margin: 0;
    font-weight: 700;
}
.title-3 {
    font-size: 40px;
    line-height: 50px;
    margin: 0;
    font-weight: 600;
    letter-spacing: -1px;
}
.subtitle-1 {
    display: block;
    font-size: 23px;
    font-weight: 400;
    color: #5a646d;
    max-width: 950px;
    letter-spacing: -1px;
}
.subtitle-2 {
    display: block;
    font-size: 23px;
    font-weight: 400;
    color: #5a646d;
    max-width: 750px;
}
.subtitle-3 {
    display: block;
    font-size: 21px;
    font-weight: 400;
    color: #5a646d;
    max-width: 750px;
}
.btn {
    text-decoration: none;
    min-height: 60px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    font-size: 19px;
    font-weight: bold;
    padding: 20px 40px;
    border-radius: 30px;
    border: none;
    cursor: pointer;
    transition: all .1s linear;
    line-height: 20px;
    text-align: center;
    gap: 10px;
}
.btn:hover {
    color: #fff;
    text-decoration: none;
}
.btn:active {
    transform: scale(0.98);
}
.btn-3d {
    border-bottom: 6px solid #00000021;
    padding-top: 4px;
}

.btn-square {
    border-radius: 10px;
}
.btn-small {
    height: 40px;
    min-height: 40px;
    font-size: 16px;
}
.btn-big {
    min-width: 200px;
    height: 100px;
    padding: 30px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
    box-shadow: rgb(11 43 158 / 15%) 0 6px 20px -6px;
    font-weight: normal;
}
.btn-blue {
    background-color: var(--blue);
    color: #fff;
}
.btn-blue:hover {
    color: #fff;
    background-color: #1d5bcd;
    text-decoration: none;
}
.btn-glass {
    border: 1px solid rgba(255, 255, 255, 0.4);
    color: #484848;
    box-shadow: 0 0 1px #00000025;
    background-color: #ffffff30;
}
.btn-glass:hover {
    background-color: #ffffff55;
}
.btn-white {
    color: var(--text-main-color);
    background-color: #fff;
}
.btn-white:hover {
    color: var(--text-main-color);
    background-color: #f5f5f5;
}
.card {
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 100%;
    min-height: 250px;
    background-color: #fff;
    height: 100%;
    /*box-shadow: 0 0 5px -1px #00000020;*/
}
.card-text {
    min-height: auto;
}
.card-bordered {
    border: 1px solid #0000000a;
}
.card-rounded {
    border-radius: 20px;
}

.card-dark-1 {
    background-image: linear-gradient(34deg, #152333, #11288b);
    color: #fff;
}
.card-dark-2 {
    background-image: linear-gradient(180deg, #333647, #202335);
    color: #fff;
}
.card-recordings {
    /*background-image: linear-gradient(34deg, #e5f6ff, #c4e2ff);*/
    color: #2e3b53;
}
.card-recordings.card-bordered {
    border-color: #b2c8de8f;
}
.card-heatmaps {
    /*background-image: linear-gradient(34deg, #fef0e7, #fce5ca);*/
    color: #3a362c;
    /*outline: 10px solid #ee9e281c;*/
}
.card-surveys {
    /*background-image: linear-gradient(34deg, #e4fffd, #c5f9ff);*/
    color: #314951;
}
.card-surveys.card-bordered {
    border-color: #b2d9d7;
}
.card-red {
    background-image: linear-gradient(180deg, #feedf1, #f3acb8);
    color: #9c4144;
}
.card-yellow {
    background-image: linear-gradient(180deg, #fefced, #f4e5ac);
    color: #9c7941;
}
.card-with-image {
    justify-content: space-between;
}
.card-body {
    padding: 30px;
    font-weight: 500;
}
.card-title {
    font-size: 23px;
    font-weight: 700;
    margin-bottom: 10px;
}
.card-divider {
    width: 100%;
    height: 1px;
    background-color: #00000010;
}
.card-image {
    width: auto;
    height: auto;
    display: block;
    background-repeat: no-repeat;
    background-size: contain;
    max-width: 100%;
}
.card-image-shadowed {
    box-shadow: 0 0 10px #3d3d3d14;
}
.card-image-at-center .card-image {
    border-radius: 10px;
    border: 1px solid #80808010;
    margin: 30px;
}

.card-image-at-bottom-left, .card-image-at-bottom-right {
    display: flex;
    flex-direction: column;
}
.card-image-at-bottom-right .card-image {
    border-top-left-radius: 10px;
    border-top: 1px solid #80808010;
    border-left: 1px solid #80808010;
    margin-left: 30px;
}
.card-image-at-bottom-left .card-image {
    border-top-right-radius: 10px;
    border-top: 1px solid #80808010;
    border-right: 1px solid #80808010;
    margin-right: 30px;
}

.card-image-at-top .card-image {
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    border-bottom: 1px solid #80808010;
    border-left: 1px solid #80808010;
    border-right: 1px solid #80808010;
    margin-left: 30px;
    margin-right: 30px;
}
.card-image-at-top-left .card-image {
    border-bottom-right-radius: 10px;
    border-bottom: 1px solid #80808010;
    border-right: 1px solid #80808010;
    margin-right: 30px;
}
.card-image-at-top-right .card-image {
    border-bottom-left-radius: 10px;
    border-bottom: 1px solid #80808010;
    border-left: 1px solid #80808010;
    margin-left: 30px;
}
.card-icon {
    font-size: 25px;
    margin-bottom: 20px;
    width: 60px;
    height: 60px;
    background-color: #00000008;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 7px;
}
.card-recordings .card-icon {
    color: #6b9bc5;
    background-color: #6b9bc530;
    background-image: linear-gradient(180deg, #c6e2fa, #93c3eb);
}
.card-surveys .card-icon {
    color: #61a3ad;
    background-color: #61a3ad30;
    background-image: linear-gradient(180deg, #d3f9f7, #9dd6d3);
}
.card-heatmaps .card-icon {
    color: #c19c75;
    background-color: #c19c7530;
    background-image: linear-gradient(180deg, #f7e2cb, #e7c29d);
}
.card-product {
    cursor: pointer;
    transition: transform .1s ease-in-out;
}
.card-product:hover {
    text-decoration: none;
    transform: scale(105%);
}
.check {
    font-size: 25px;
}
.check-small {
    font-size: 20px;
}
.check-big {
    font-size: 30px;
}
.check-blue {
    color: #216bf2;
}
.check-green {
    color: #6ba910;
}
.point {
    border-radius: 10px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 20px;
    width: 100%;
    font-weight: 500;
    font-size: 15px;
}
.gesture-swipe {
    font-size: 40px;
    display: none;
}
@media (max-width: 1023px) {
    .gesture-swipe {
        display: block;
    }
    .gdpr {
        width: auto;
        left: 20px;
        right: 20px;
    }
    .image-app {
        width: 100%;
        margin-top: 20px;
        margin-bottom: 20px;
        border-radius: 4px;
    }
    .navbar-container {
        width: 100%;
        flex-direction: column;
        padding: 20px;
    }
    .navbar-menu-button {
        display: block;
    }
    .navbar-links {
        display: none;
    }
    .navbar-open {
        height: 100%;
        max-height: 100%;
    }
    .navbar-open .navbar-links {
        display: flex;
        flex-direction: column;
    }
    .navbar-link {
        font-size: 20px;
    }

    .block-home {
        position: relative;
    }
    .footer {
        padding: 80px 0 40px 0;
    }
    .footer-container {
        flex-direction: column;
        gap: 30px;
    }
    .footer-links {
        text-align: center;
    }
    .footer-networks {
        flex-direction: row;
        justify-content: center;
    }
    .conclusion {
        flex-direction: column;
        justify-content: center;
        align-content: center;
        gap: 40px;
        padding: 40px;
    }
    .conclusion-body {
        align-items: center;
        text-align: center;
    }
    .conclusion-buttons {
        align-items: center;
        flex-direction: column;
    }
    .navbar-submenu {
        width: 95%;
    }
    .navbar-overlay {
        display: none;
    }

    .title-1 {
        font-size: 45px;
        line-height: 50px;
    }
    .subtitle-1 {
        font-size: 24px;
    }
    .title-2 {
        font-size: 35px;
        line-height: 45px;
    }
    .subtitle-2 {
        font-size: 18px;
    }
}
@media (max-width: 800px) {
    .swipe .card {
        width: calc(100vw - 40px);
    }
}