/*
Theme Name: CallApp
Theme URI: http://webstick.co.il
Description: Developed by <a href="http://webstick.co.il/">Webstick</a>.
Version: 1.2
Author: <a href="http://webstick.co.il/">Webstick</a>
Author URI: http://webstick.co.il/
*/


/* =Reset default browser CSS. Based on work by Eric Meyer: http://meyerweb.com/eric/tools/css/reset/index.html
-------------------------------------------------------------- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html {
    -webkit-text-size-adjust: 100%;
}

h1, h2, h3, h4, h5, h6 {
	clear: both;
	font-weight: normal;
}
ol, ul {
	list-style: none;
}
blockquote {
	quotes: none;
}
blockquote:before, blockquote:after {
	content: '';
	content: none;
}
del {
	text-decoration: line-through;
}
/* tables still need 'cellspacing="0"' in the markup */
table {
	border-collapse: collapse;
	border-spacing: 0;
}
a {
    text-decoration: none;
    color: inherit;
}
a img {
	max-width: 100%;
    height: auto;
	border: none;
}
input, textarea, button, select {
    font-size: inherit;
    line-height: inherit;
	font-family: Poppins, sans-serif;
    /* -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none; */
    border-radius: 0;
}
:focus {
    outline: 0;
}


/* Variables */
:root {
    --blue: #0288D1;
    --black: #2C2C2C;
    --gray: #231f1f;
    --opacity-blue: rgba(101, 212, 234, 0.1);
    --ca-gradient: linear-gradient(to right, #0288D1, #65D4EA);
}

@font-face {
    font-family: 'chaney';
    src: url('fonts/chaney-regular-webfont.eot');
    src: url('fonts/chaney-regular-webfont.eot?#iefix') format('embedded-opentype'),
         url('fonts/chaney-regular-webfont.woff2') format('woff2'),
         url('fonts/chaney-regular-webfont.woff') format('woff'),
         url('fonts/chaney-regular-webfont.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;

}

body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-family: Poppins, sans-serif;
    font-size: 16px;
    line-height: 1.5;
    color: var(--black);
}

.flex {
    display: flex;
}
.flex-col {
    flex-direction: column;
}

.ca-view-btn {
    display: flex;
    gap: 10px;
    align-items: center;
    position: relative;
    padding: 6px 11px;
    font-size: 24px;
    font-weight: 700;
    line-height: 1;
    text-transform: uppercase;
    color: var(--blue);
    border-radius: 9px;
    background: #fff;
    border: none;
    cursor: pointer;
}
.ca-view-btn:before {
    content: "";
    display: block;
    width: 23px;
    height: 16px;
    background: url(assets/img/arrow-view-btn.svg) no-repeat center center;
}
.ca-view-btn:after {
    content: "";
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    background: var(--ca-gradient);
    border-radius: 12px;
  z-index: -1;
}
.ca-view-btn:hover {
    background: var(--ca-gradient);
    color: #fff;
}
.ca-view-btn:hover:before {
    filter: brightness(0) invert(1);
}
.ca-arrow:after {
    content: "";
    display: inline-block;
    width: 17px;
    height: 13px;
    margin-left: 6px;
    background: url('assets/img/ca-arrow-right.svg') no-repeat center center;
}
.ca-arrow.ca-arrow-back:after {
    display: none;
}
.ca-arrow.ca-arrow-back:before {
    content: "";
    display: inline-block;
    width: 17px;
    height: 13px;
    margin-right: 6px;
    background: url('assets/img/ca-arrow-right.svg') no-repeat center center;
    transform: rotate(180deg);
}
.ca-main-title {
    font-family: 'CHANEY', poppins, sans-serif;
    font-size: 56px;
    line-height: 1.14;
    text-align: center;
    text-transform: uppercase;
    color: var(--blue);
}
.ca-sec-title {
    font-family: 'CHANEY', poppins, sans-serif;
    font-size: 44px;
    line-height: 1.23;
    text-transform: uppercase;
    color: var(--blue);
}
.highlighted {
    font-size: 24px;
    line-height: 1.5;
    color: var(--blue);
}
.blurred {
    filter: blur(10px);
    pointer-events: none;
}
.blurred-sm {
    filter: blur(6px);
}
.site-width {
    position: relative;
    width: 1246px;
    max-width: 100%;
    margin: 0 auto;
}
.inner-width {
    position: relative;
    width: 1120px;
    max-width: calc(100% - 80px);
    margin: 0 auto;
}
.header-width {
    width: 1560px;
    max-width: 96%;
}

#header {
    position: relative;
    z-index: 2;
    padding: 26px 0;
}
#header .header-width {
    justify-content: space-between;
    align-items: center;
}
#header .menu-wrapper {
    margin-left: 3.3%;
}
#header #menu-main-menu {
    gap: 75.5px;
    font-size: 18px;
    line-height: 1.5;
}
#menu-main-menu .menu-item {
    position: relative;
    min-width: 85px;
}
#menu-main-menu .current-menu-item > a,
#menu-main-menu .current_page_parent > a,
#menu-main-menu .current-page-ancestor > a {
    font-weight: 700;
}
#menu-main-menu .menu-item > a {
    display: block;
    transition: transform 0.15s ease-out;
}
#menu-main-menu .menu-item > a:hover {
    transform: scale(1.06);
    font-weight: 700;
}
#menu-main-menu .menu-item .sub-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: -6px;
    width: 200px;
    padding: 6px 2px 2px;
    font-size: 16px;
    background: #fff;
    border-radius: 0 0 4px 4px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    z-index: 2;
}
#menu-main-menu .menu-item .sub-menu .menu-item {
    padding: 2px 0;
}
#menu-main-menu .menu-item .sub-menu .menu-item a {
    display: block;
    padding: 6px 8px;
}
@media (hover: hover) {
    #menu-main-menu .menu-item:hover .sub-menu {
        display: block;
    }
    #menu-main-menu .menu-item .sub-menu .menu-item a:hover {
        background: var(--blue);
        color: #fff;
    }
}
#menu-main-menu .menu-item .sub-menu.active {
    display: block;
}
#header .cta-wrapper .cta-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 58px;
    padding: 2px 30px;
    font-size: 18px;
    line-height: 1.5;
    background: var(--ca-gradient);
    color: #fff;
    border-radius: 10px;
    transition: transform 0.15s ease-out;
}
#header .cta-wrapper .cta-btn:hover {
    transform: scale(1.05);
}

#header .menu-toggle {
    display: none;
}
#header .menu-toggle span {
    display: block;
    width: 22.5px;
    height: 3px;
    border-radius: 10px;
    background: var(--blue);
    margin-bottom: 5px;
}

.breadcrumbs {
    margin-top: 9px;
    font-size: 18px;
}
.breadcrumbs .parent-item {
    color: #929292;
}
.breadcrumbs .parent-item:after {
    content: ">";
    display: inline-block;
    margin-left: 3px;
    margin-right: -1px;
    transform: translateY(1px);
}

.ca-search-bar {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin-top: 48px;
    background: #DFE5E566;
    border-radius: 20px;
}
.ca-search-bar:after {
    content: "";
    position: absolute;
    top: 24px;
    bottom: 24px;
    left: 139px;
    width: 2px;
    background: var(--blue);
}
.ca-search-bar .select-wrapper {
    flex-shrink: 0;
    width: 139px;
    position: relative;
}
.ca-search-bar .country-code {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 75px;
    padding: 20px;
    font-size: 18px;
    border: none;
    color: var(--blue);
    border-radius: 20px 0 0 20px;
    background: transparent;
    appearance: none;
    -webkit-appearance: none;
}
.ca-search-bar .country-code option {
    color: var(--blue);
}
.ca-search-bar .select-wrapper:after {
    content: "";
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-4px);
    width: 20px;
    height: 11px;
    background: url('assets/img/arrow-down.svg') no-repeat center;
}

.ca-search-bar .select2-container {
    padding: 20px;
    font-size: 18px;
}
.ca-search-bar .select2-container--default .select2-selection--single {
    background: transparent;
    border: none;
}
.ca-search-bar .select2-container--default .select2-selection--single .select2-selection__arrow {
    display: none;
}
.ca-search-bar:has(.select2-container--default.select2-container--open) .select-wrapper:after {
    transform: translateY(-4px) scaleY(-1);
}

.ca-search-bar .search-input {
    width: 100%;
    height: 75px;
    padding: 10px 80px 10px 30px;
    font-size: 18px;
    border: none;
    border-left: none;
    border-radius: 0 20px 20px 0;
    background: transparent;
}
.ca-search-bar .search-input::placeholder {
    font-size: 18px;
}
.ca-search-bar .submit {
    position: absolute;
    right: 20px;
    width: 46px;
    height: 46px;
    background: var(--blue) url('assets/img/search-icon.svg') no-repeat center;
    border: none;
    border-radius: 50%;
    cursor: pointer;
}
.ca-search-bar .submit:disabled {
    background-color: lightslategray;
    cursor: default;
}
.ca-search-bar + .error-message {
    display: none;
    position: absolute;
    top: 100%;
    left: 10px;
    margin-top: 5px;
    font-size: 14px;
    color: red;
}

.ca-banner {
    justify-content: center;
    align-items: center;
    gap: 44px;
    width: 100%;
    height: 126px;
    margin-top: 98px;
    padding: 0 58px 0 48px;
    font-family: 'CHANEY', poppins, sans-serif;
    background: var(--ca-gradient);
    border-radius: 20px;
}
.ca-banner.ca-img-banner {
    justify-content: space-between;
    gap: 34px;
    margin-top: 120px;
    padding: 0 38px 0 38px;
}
.page-template-page-lobby .ca-banner.ca-img-banner .img-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
    max-width: 180px;
}
.ca-banner.ca-img-banner .img-wrapper .callapp-logo {
    width: 100px;
    height: auto;
}
.ca-img-banner .banner-img,
.ca-img-banner.alt .left-img-wrapper {
    align-self: flex-end;
    display: block;
}
.ca-img-banner .banner-img-mobile {
    display: none;
}
.ca-banner .banner-text {
    font-size: 40px;
    line-height: 1.2;
    text-align: center;
    text-transform: uppercase;
    color: #fff;
}
.ca-banner.has-number .banner-text {
    font-family: Poppins, sans-serif;
    font-size: 34px;
    text-transform: none;
}
.ca-banner.ca-img-banner.alt {
    padding-left: 12px;
    padding-right: 24px;
}
.ca-banner.ca-img-banner.alt.narrow-img {
    gap: 47px;
    padding-left: 24px;
    padding-right: 40px;
}
.ca-img-banner.alt .left-img-wrapper {
    width: 205px;
}
.ca-img-banner.alt.medium-img .left-img-wrapper {
    width: 190px;
    margin-right: 15px;
}
.ca-img-banner.alt.narrow-img .left-img-wrapper {
    width: 186px;
}
.ca-img-banner.alt .left-img-wrapper .banner-img {
    justify-self: flex-end;
}
.ca-img-banner.alt .banner-text {
    margin-right: auto;
    font-size: 44px;
    line-height: 1.05;
    text-align: left;
}
.ca-img-banner.alt .img-wrapper.flex {
    gap: 12px;
}
.ca-banner .banner-btn {
    width: 180px;
}
.ca-img-banner.alt .banner-btn img {
    display: block;
}

.ios-device .ca-banner .banner-btn.android-device,
.ios-device #pre-footer .pre-footer-button.android-device {
    display: none;
}
.android-device .ca-banner .banner-btn.ios-device,
.android-device #pre-footer .pre-footer-button.ios-device {
    display: none;
}

.numbers-grid-section {
    margin-top: 94px;
}
.numbers-grid-section .grid-title {
    margin-bottom: 42px;
    font-size: 36px;
    font-weight: 700;
    line-height: 1.22;
    text-align: center;
    color: var(--blue);
}
.numbers-items-wrapper {
    flex-wrap: wrap;
    gap: 20px 36px;
}
.four-in-row .numbers-items-wrapper {
    gap: 20px 43px;
}
.ca-box {
    justify-content: center;
    align-items: center;
    height: 100px;
    min-width: 220px;
    font-size: 20px;
    border-radius: 20px;
    background: var(--opacity-blue);
}
.ca-box:hover {
    box-shadow: 0px 2px 10.2px rgba(2, 136, 209, 0.3);
}
.ca-box {
    width: calc(20% - 29px);
    text-align: center;
}
.four-in-row .ca-box {
    width: 279px;
}
.ca-box.phone-number {
    justify-content: center;
    align-items: center;
    padding: 10px;
    font-size: 20px;
}

#pre-footer {
    position: relative;
    height: 780px;
    margin-top: 120px;
    background-size: cover;
    background-position: center;
    color: #fff;
}
#pre-footer .pre-footer-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(270deg, rgba(101, 212, 234, 0) 6.46%, rgba(101, 212, 234, 0.4) 40.81%, #0288D1 78.02%);
}
#pre-footer .site-width {
    align-items: center;
    height: 100%;
}
#pre-footer .pre-footer-content {
    max-width: 46%;
}
#pre-footer .pre-title {
    margin-bottom: 5px;
    font-size: 30px;
    line-height: 1.67;
}
#pre-footer .pre-footer-title {
    font-family: 'CHANEY', poppins, sans-serif;
    font-size: 69px;
    line-height: 1.02;
    text-transform: uppercase;
}
#pre-footer .pre-footer-text {
    margin-top: 24px;
    font-size: 24px;
    line-height: 1.5;
}
#pre-footer .pre-footer-button {
    display: inline-block;
    margin-top: 45px;
}
#pre-footer .pre-footer-button + .pre-footer-button {
    margin-left: 8px;
}

#footer {
    padding: 98px 0 120px;
    background: var(--black);
    color: #fff;
}
#footer .site-width.flex {
    justify-content: space-between;
}
#footer .footer-nav,
#footer .footer-social {
    padding-top: 10px;
}
#footer .footer-menu {
    display: flex;
    gap: 120px;
    font-size: 15px;
}
#footer .footer-menu .menu-item + .menu-item,
#footer .footer-menu .sub-menu {
    margin-top: 7px;
}
#footer .footer-menu > .menu-item + .menu-item {
    margin-top: 0;
}
#footer .footer-menu > .menu-item {
    width: 190px;
}
#footer .footer-menu > .menu-item > a {
    font-weight: 700;
}
#footer .footer-menu .menu-item a:hover {
    text-decoration: underline;
}
#footer .footer-social .social-icons {
    gap: 10px;
}
#footer .footer-social .social-title {
    margin-bottom: 20px;
    font-size: 22px;
}

#floating-banner {
    align-items: center;
    gap: 30px;
    position: fixed;
    top: 154px;
    right: 40px;
    z-index: 2;
    width: 297px;
    padding: 44px 40px;
    font-family: 'CHANEY', poppins, sans-serif;
    font-size: 40px;
    line-height: 1.15;
    text-align: center;
    text-transform: uppercase;
    background: var(--ca-gradient);
    color: #fff;
    border-radius: 20px;
}
#floating-banner .banner-button {
    display: block;
    width: 180px;
    height: auto;
}
#floating-banner .banner-button + .banner-button {
    margin-top: -14px;
}
#floating-banner .banner-button img {
    display: block;
}
body.ios-device #floating-banner .banner-button.android-device {
    display: none;
}
body.android-device #floating-banner .banner-button.ios-device {
    display: none;
}

@media (max-width: 1699px) {
    #floating-banner {
        right: 20px;
        width: 220px;
        font-size: 30px;
    }
}

@media (max-width: 1299px) {
    .site-width {
        padding: 0 20px;
    }
    #menu-main-menu {
        gap: 66px;
    }
    .numbers-items-wrapper {
        justify-content: center;
    }
    #floating-banner {
        width: 184px;
        padding: 26px;
        font-size: 26px;
    }
    #floating-banner .banner-button {
        width: 160px;
    }
}

@media (max-width: 1199px) {
    .ca-view-btn {
        font-size: 22px;
    }
    #header #menu-main-menu {
        gap: 28px;
    }
    .numbers-items-wrapper {
        gap: 20px 26px;
    }

    .ca-img-banner.alt {
        gap: 20px;
        padding-right: 20px;
    }
    .ca-img-banner.alt .left-img-wrapper {
        transform: scale(0.9);
        transform-origin: bottom left;
    }
    .ca-img-banner.alt .banner-text {
        margin-left: -10px;
        font-size: 34px;
    }
    .ca-img-banner.alt .img-wrapper.flex {
        gap: 10px;
    }
    .ca-banner.alt .banner-btn {
        width: 166px;
    }
    .ca-banner.ca-img-banner.alt.narrow-img {
        gap: 28px;
        padding-left: 4px;
        padding-right: 26px;
    }

    #pre-footer {
        height: 640px;
        background-position: 70% center;
    }
    #pre-footer .pre-title {
        font-size: 26px;
    }
    #pre-footer .pre-footer-title {
        font-size: 50px;
    }
    #pre-footer .pre-footer-text {
        font-size: 22px;
    }

     #floating-banner {
        width: 194px;
        padding: 24px;
        font-size: 26px;
    }
    #floating-banner .banner-button {
        width: 140px;
    }
}

@media (max-width: 1023px) {
    .ca-box {
        width: 100%;
    }
    .header-width {
        max-width: 100%;
        padding: 0 20px;
    }
    .inner-width {
        max-width: calc(100% - 40px);
    }
    .ca-main-title {
        font-size: 46px;
    }
    .ca-sec-title {
        font-size: 40px;
    }
    .highlighted {
        font-size: 22px;
    }
    #header .menu-wrapper,
    #header .cta-wrapper {
        display: none;
    }
    #header .menu-toggle {
        display: block;
        position: absolute;
        top: 10px;
        right: 23px;
        cursor: pointer;
        direction: rtl;
    }
    body:has(#header.mobile-menu-open):after {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.4);
    }
    #header.mobile-menu-open {
        position: absolute;
        top: 0;
        left: 0;
        z-index: 2;
        width: 100%;
        max-width: 100vw;
        background: #fff;
    }
    #header.mobile-menu-open .header-width {
        flex-direction: column;
        align-items: flex-start;
    }
    #header.mobile-menu-open .menu-toggle span:nth-child(2) {
        width: 19px;
    }
    #header.mobile-menu-open .menu-toggle span:nth-child(3) {
        width: 12.5px;
    }
    #header.mobile-menu-open .menu-wrapper {
        display: block;
        margin-top: 24px;
        margin-left: 0;
    }
    #header.mobile-menu-open #menu-main-menu {
        flex-direction: column;
        align-items: flex-start;
        gap: 18px;
    }
    #menu-main-menu .menu-item .sub-menu {
        position: static;
        padding: 10px 0 10px 20px;
        background: transparent;
        box-shadow: none;
    }
    #header.mobile-menu-open .cta-wrapper {
        display: block;
        width: 258px;
        margin: 24px auto 0;
    }
    .page-template-page-business #header.mobile-menu-open .cta-wrapper {
        display: none;
    }

    .ca-banner {
        padding: 0 40px 0 36px;
    }
    .ca-banner .banner-text {
        font-size: 30px;
    }
    .ca-banner.has-number .banner-text {
        font-size: 22px;
    }
    .ca-banner .banner-btn {
        width: 140px;
    }
    .ca-img-banner.alt .img-wrapper {
        flex-direction: column;
    }
    .ca-img-banner.alt .banner-text {
        font-size: 30px;
    }

    #pre-footer {
        padding-bottom: 31px;
        background-position: 95% center;
    }
    #pre-footer .pre-footer-overlay {
        background: linear-gradient(180deg, rgba(101, 212, 234, 0) 6.46%, rgba(101, 212, 234, 0.4) 40.81%, #0288D1 78.02%);
    }
    #pre-footer .header-width {
        flex-direction: column-reverse;
        max-width: 100%;
        padding: 0 20px;
    }
    #pre-footer .pre-footer-content {
        max-width: 100%;
    }
    #pre-footer .pre-footer-content .pre-title {
        font-size: 18px;
    }
    #pre-footer .pre-footer-title {
        font-size: 30px;
    }
    #pre-footer .pre-footer-text {
        font-size: 18px;
    }
    #pre-footer .pre-footer-button {
        display: block;
        width: 152px;
    }
    #pre-footer .pre-footer-button img {
        display: block;
    }

    #footer {
        padding: 50px 0 55px;
    }
    #footer .site-width.flex {
        flex-direction: column;
    }
    #footer .footer-nav, #footer .footer-social {
        margin-top: 20px;
    }
    #footer .footer-menu {
        gap: 40px;
    }
    #footer .footer-social .social-title {
        display: none;
    }
    #footer .footer-social .social-icons img {
        width: 28px;
        height: 28px;
    }

    #floating-banner {
        flex-direction: row;
        top: auto;
        bottom: 0;
        width: auto;
        left: 20px;
        right: 20px;
    }
}

@media (max-width: 767px) {
    .ca-main-title {
        font-size: 36px;
    }
    .ca-sec-title {
        font-size: 28px;
        line-height: 34px;
    }
    .highlighted {
        font-size: 20px;
    }
    #header {
        padding: 15px 0;
    }
    #header .main-logo {
        width: 119px;
    }
    .breadcrumbs {
        margin-top: 5px;
        font-size: 12px;
    }
    .ca-search-bar {
        margin-top: 36px;
        border-radius: 6px;
    }
   .ca-search-bar:after {
        top: 12px;
        bottom: 12px;
        left: 112px;
   }
    .ca-search-bar .select-wrapper {
        width: 116px;
    }
    .ca-search-bar .country-code,
    .ca-search-bar .search-input {
        height: 45px;
        font-size: 15px;
    }
    .ca-search-bar .country-code {
        padding: 10px;
    }
    .ca-search-bar .search-input {
        padding: 10px 50px 10px 10px;
    }
    .ca-search-bar .search-input::placeholder {
        font-size: 15px;
    }
    .ca-search-bar .select-wrapper:after {
        transform: translateY(-5px);
    }
    .ca-search-bar .submit {
        right: 12px;
        width: 30px;
        height: 30px;
        background-size: 18px;
    }
    .ca-search-bar + .error-message {
        left: 24px;
    }

    .ca-banner,
    .ca-banner.ca-img-banner {
        flex-direction: column;
        gap: 10px;
        border-radius: 6px;
    }
    body.page-template-page-lobby .ca-img-banner {
        gap: 2px;
    }
    .ca-banner {
        height: 154px;
        margin-top: 40px;
    }
    .ca-banner.ca-img-banner {
        align-items: flex-start;
        justify-content: center;
        position: relative;
        height: 126px;
        margin-top: 60px;
        padding-left: 131px;
        padding-right: 16px;
    }
    .ca-banner.ca-img-banner.alt {
        width: 353px;
        max-width: calc(100vw - 20px);
        left: 50%;
        transform: translateX(-50%);
        height: 138px;
    }
    .ca-img-banner .banner-img-mobile,
    body.page-template-page-lobby .ca-img-banner .banner-img,
    body.home .ca-img-banner .banner-img {
        display: block;
        position: absolute;
        bottom: 0;
        left: 10px;
        width: 110px;
    }
    body.page-template-page-lobby .ca-img-banner .banner-img {
        width: 128px;
        left: 3px;
    }
    body:not(.page-template-page-lobby) .ca-img-banner .banner-img {
        display: none;
    }
    .ca-banner .banner-text {
        font-size: 28px;
        line-height: 1.1;
    }
    .ca-banner.ca-img-banner .banner-text {
        font-size: 21px;
        text-align: left;
    }
    .ca-banner.ca-img-banner.alt .banner-text {
        display: block;
        width: 100%;
        margin-right: 0;
        font-size: 22px;
        text-align: center;
    }
    body.home .ca-banner.ca-img-banner .banner-text {
        font-size: 20px;
    }
    .ca-banner.ca-img-banner.has-number .banner-text {
        font-size: 17px;
    }
    .ca-banner .banner-btn {
        width: 131px;
    }
    body.home .ca-banner.ca-img-banner .img-wrapper {
        gap: 4px;
        width: 100%;
    }
    .ca-banner.ca-img-banner .img-wrapper .callapp-logo {
        width: 80px;
    }
    .ca-banner.ca-img-banner.alt,
    .ca-banner.ca-img-banner.alt.narrow-img {
        padding-left: 134px;
        padding-right: 8px;
    }
    .ca-banner.ca-img-banner.alt.narrow-img {
        gap: 10px;
    }
    .ca-img-banner.alt .left-img-wrapper,
    .ca-img-banner.alt.narrow-img .left-img-wrapper {
        transform: none;
        position: absolute;
        bottom: 0;
        left: 2px;
        max-width: 126px;
    }
    .ca-img-banner.alt.narrow-img .left-img-wrapper {
        max-width: 110px;
        min-width: 0;
    }
    .ca-img-banner.alt .left-img-wrapper .banner-img {
        display: block;
        max-width: 100%;
        height: auto;
    }
    .ca-banner.ca-img-banner.alt .banner-text {
        margin-left: 0;
    }
    .ca-img-banner.alt .img-wrapper.flex {
        align-items: center;
        width: 100%;
    }
    .ca-banner.alt .banner-btn {
        width: 120px;
    }
    .ca-banner.ca-img-banner.alt .banner-btn {
        width: 131px;
    }

    .numbers-grid-section {
        margin-top: 43px;
    }
    .numbers-grid-section .grid-title {
        margin-bottom: 22px;
        font-size: 20px;
    }
    .numbers-items-wrapper,
    .four-in-row .numbers-items-wrapper {
        gap: 20px 16px;
    }
    .numbers-grid-section:not(.four-in-row) .numbers-items-wrapper {
        justify-content: flex-start;
        width: 353px;
        margin: 0 auto;
    }
    .ca-box {
        width: 107px;
        min-width: 0;
        height: 43px;
        font-size: 15px;
        text-align: center;
        line-height: 1;
        border-radius: 6px;
    }
    .four-in-row .ca-box {
        width: auto;
        min-width: 155px;
    }

    #pre-footer {
        height: 603px;
        background-position: 84% top;
        background-size: auto 480px;
        background-repeat: no-repeat;
    }
    #pre-footer .pre-footer-content .pre-title {
        font-size: 14px;
    }
    #pre-footer .pre-footer-text {
        margin-top: 14px;
        font-size: 14px;
        line-height: 1.3;
    }
    #pre-footer .pre-footer-button {
        margin-top: 20px;
    }
    #footer {
        padding-bottom: 90px;
    }
    #footer .footer-logo img {
        max-width: 120px;
    }
    #footer .footer-nav {
        margin-top: 10px;
    }
    #footer .footer-menu {
        gap: 20px;
        font-size: 13px;
    }
    #footer .footer-menu > li {
        width: 40%;
    }
    #footer .footer-menu li + li, 
    #footer .footer-menu .sub-menu {
        margin-top: 11px;
    }
    #footer .footer-menu > li + li {
        margin-top: 0;
    }
    #footer .footer-social .social-icons {
        gap: 20px;
    }

    #floating-banner {
        gap: 15px;
        left: 0;
        right: 0;
        padding: 20px;
        font-size: 20px;
        text-align: left;
        border-radius: 16px 16px 0 0;
    }
    #floating-banner .banner-button {
        width: 130px;
        flex-shrink: 0;
    }
}

@media (max-width: 395px) {
    .numbers-grid-section:not(.four-in-row) .numbers-items-wrapper {
        width: 230px;
    }
}

/* DEBUG */
body.debug > * {
    opacity: 0.7;
}
body.debug {
    background: url(assets/debug/page-2.jpg) no-repeat bottom center;
}