
p {
    font-family: 'Open Sans', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 32px;
}

h1 {
    font-size: 60px !important;
}

h1, h2, h3, h4, h5, h6 {

    margin: 0 0 15px !important;
    font-weight: 400;
    line-height: 1.4em;
}

.space-20 {
    height: 20px;
}

.space-80 {
    height: 80px;
}

.play-store-button img {

    width: 200px;
}

@media only screen and (max-width: 767px) {

    h1 {
        font-size: 40px !important;
    }

    p {
        font-size: 14px;
    }
}

@media (max-width: 767px) {

    .hidden-xs, .hidden-sm {
        display: none !important;
    }
}

.home .top-header {

    background: var(--main_page_header_background);
    border-bottom: var(--main_page_header_border_bottom);
}

.home .topbar-button {

    color: var(--main_page_header_button_text_color);
}

.home .top-header .header-brand-img {

    background-image: var(--main_page_header_logo);
}

.home .container {
    max-width: 990px;
}

.home .mobile-image {
    margin-right: 0;
    margin-left: 0;
}

.mobile-image img {

    width: 100%
}

/*  */


.w-full {
    display: block;
    width: 100%;
}

.home {
    background-image: var(--main_page_background-image);
    background-size: cover;
    background-color: var(--main_page_background);
    color: var(--main_page_primary_text_color);
}

.home #main-footer {
    background-color: transparent !important;
    margin-top: 5px;
    padding-top: 0px;
    padding-bottom: 30px;
}

.limiter {
    width: 100%;
    margin: 0 auto;
}

.title_background {
    color: #ffffff;
    font-family: "Poppins", sans-serif; /* Using a modern, clean font */
    font-size: 30px;
    font-weight: bold;
    text-align: start;
    border-radius: 8px;
}

.green_text {
    color: #62E820;
}

.secondary_green_text {
    color: #5cc627;
}

/* The device with borders */
.smartphone {
    position: relative;
    margin: auto;
    border: 16px #ffffff solid;
    border-top-width: 60px;
    border-bottom-width: 60px;
    border-radius: 36px;
}

/* The horizontal line on the top of the device */
.smartphone:before {
    content: '';
    display: block;
    width: 60px;
    height: 5px;
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #333;
    border-radius: 10px;
}

/* The circle on the bottom of the device */
.smartphone:after {
    content: '';
    display: block;
    width: 35px;
    height: 35px;
    position: absolute;
    left: 50%;
    bottom: -65px;
    transform: translate(-50%, -50%);
    background: #333;
    border-radius: 50%;
}

/* The screen (or content) of the device */
.smartphone .content {
    width: 360px;
    height: 640px;
    background: white;
}