@media (max-width: 576px) {
    .h1,
    h1 {
        font-size: 2rem;
    }
}

/* bootstrap */

:root {
    --primary: #143354;
    --secondary: #232323;
    --dark: #1e1e1e;
}

.container {
    max-width: 1200px;
}

.bg-primary {
    background-color: #143354;
    background-color: var(--primary) !important;
}

.bg-secondary {
    background-color: #232323;
    background-color: var(--secondary) !important;
}

.bg-dark {
    background-color: #1e1e1e;
    background-color: var(--dark) !important;
}

.ws-nowrap {
    white-space: nowrap;
}

/* header */
.header {
    z-index: 1000;
}

@media (max-width: 576px) {
    .header .logo {
        max-width: 50px;
    }

    .header-phone {
        font-size: 14px;
    }

    .header .container {
        padding-left: 0.25rem;
        padding-right: 0.25rem;
    }
}

@media (max-width: 380px) {
    .header-phone {
        font-size: 12px;
    }
}

/* section */
.section {
    padding: 4rem 0;
}

.section-backgrond {
    position: relative;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
}

@media (min-width: 768px) {
    .section-backgrond {
        background-attachment: fixed;
    }
}

.section-main {
    padding: 6rem 0 3rem;
}

.section-main {
    background-image: url(/landings/components/images/backgrounds/lifecell/background.jpg);
}

@media (max-width: 768px) {
    .section-main {
        background-position-x: -530px;
    }
}

.section-backgrond:before {
    position: absolute;
    content: "";
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.55);
}

.footer {
    padding: 3rem 0 0;
}
