@font-face {
    font-family: "Handsta Signature";
    src: url("/wp-content/themes/divi-child/assets/HandstaSignature.otf") format("opentype");
}
@font-face {
    font-family: "Freshline";
    src: url("/wp-content/themes/divi-child/assets/freshline-freshline-400.ttf") format("truetype");
}

/* Reset & base styles
----------------------*/
*, ::before, ::after {
    box-sizing: border-box;
    z-index: 1;
}

* {
    margin: 0;
    font: inherit;
}

html {
    -webkit-font-smoothing: antialiased;
    font-size: 62.5%;
}

img,
svg {
    display: block;
    max-width: 100%;
}

a {
    text-decoration: none;
    color: black;
}

:root {
    --cls-heading-blue: #003F65;
    --cls-black: #000000;
    --cls-white: #ffffff;
    --cls-latt-blue: #70BECE;
    --cls-latt-blue-lighter: #9DCCCC;
    --cls-red-button-bg: #E41E1E;
    --cls-red-button-border: #CB1717;
    --cls-yellow-button-bg: #DE8D13;
    --cls-yellow-button-border: #C37D13;
    --cls-blue-button-bg: #005D96;
    --cls-blue-button-border: #003F65;

    --font-primary: 'Inter', sans-serif;
    --font-secondary: "Freshline", sans-serif;
    --font-tertiary: "Handsta Signature", sans-serif;
    --font-primary-regular: 400;
    --font-primary-medium: 500;
    --font-primary-bold: 700;
    --font-primary-black: 900;

    --text-hero-h1: clamp(4.2rem, 4.5vw + .1rem, 7.2rem);
    --text-hero-bullets: clamp(2rem, 1.9vw + .1rem, 3.2rem);
    --text-hero-subtitle: clamp(11rem, 10vw + .1rem, 17rem);

    --text-size-heading-subtitle: clamp(2.8rem, 2.9vw + .1rem, 4rem);
    --text-size-heading-h2: clamp(3rem, 2.9vw + .1rem, 4.8rem);
    --text-size-paragraph: clamp(1.8rem, .9vw + 1rem, 2.2rem);
}

ul {
    padding-left: 18px;
}

body {
    padding: 0;
    margin: 0;
    font-family: var(--font-primary);
    font-size: var(--text-size-paragraph);
    color: var(--cls-black);
    overflow-x: hidden;
    font-weight: var(--font-primary-regular);
}
strong {font-weight: 700}

p {
    font-size: var(--text-size-paragraph);
}

/* Divi fixes */
p, h1, h2, h3, h4, h5, h6 {
    padding: 0;
    margin: 0;
}


.button {
    border: none;
    background-color: lightgray;
    border-bottom: .6rem solid darkgray;
    border-radius: .25rem;
    font-size: clamp(1.6rem, 1.5vw + .1rem, 2.6rem);
    text-align: center;
    width: 100%;
    padding: 1.8rem 5rem 1.2rem 5rem;
    display: inline-block;
    text-transform: uppercase;
    font-weight: var(--font-primary-medium);
    transition: 300ms all ease-in-out;
}
button.button-red,
.button.button-red {
    background-color: var(--cls-red-button-bg);
    border-bottom-color: var(--cls-red-button-border);
    color: var(--cls-white);
}
button.button-red:hover,
.button.button-red:hover {
    background-color: var(--cls-red-button-border);
    border-bottom-color: var(--cls-red-button-bg);
    transition: 300ms all ease-in-out;
}
button.button-yellow,
.button.button-yellow {
    background-color: var(--cls-yellow-button-bg);
    border-bottom-color: var(--cls-yellow-button-border);
    color: var(--cls-white);
}
button.button-yellow:hover,
.button.button-yellow:hover {
    background-color: var(--cls-yellow-button-border);
    border-bottom-color: var(--cls-yellow-button-bg);
    transition: 300ms all ease-in-out;
}
button.button-blue,
.button.button-blue {
    background-color: var(--cls-blue-button-bg);
    border-bottom-color: var(--cls-blue-button-border);
    color: var(--cls-white);
}
button.button-blue:hover,
.button.button-blue:hover {
    background-color: var(--cls-blue-button-border);
    border-bottom-color: var(--cls-blue-button-bg);
    transition: 300ms all ease-in-out;
}

/* Global styles
-------------------*/
section:not(#hero, #smart-tap, #foods, #filter-replacement),
footer {overflow-x: hidden;}

section .row,
footer .row {
    max-width: 144rem;
    width: 100%;
    padding: 2rem 2rem;
}
.row-no-padding {padding: 0!important;}

/* generic heading */
section .subtitle {
    font-family: var(--font-secondary);
    color: var(--cls-latt-blue-lighter);
    font-size: var(--text-size-heading-subtitle);
    margin-bottom: .4rem;
}
section .title {
    color: var(--cls-heading-blue);
    font-size: var(--text-size-heading-h2);
    line-height: calc(var(--text-size-heading-h2) + .1rem);
    font-weight: 900;
    position: relative;
    margin-top: -10px;
    margin-bottom: 2rem;
}
section .title:after {
    content: '';
    background: url('/wp-content/themes/divi-child/assets/title-underline.svg') no-repeat;
    width: 15%;
    height: 3px;
    position: absolute;
    bottom: -6px;
    left: 0;
}


/* Site styles
----------------------*/

/* Hero Block */
#hero {
    background: url('/wp-content/themes/divi-child/assets/1_blokk/mobile-hero-bg.min.jpeg') no-repeat 0 100%;
    background-size: cover;
    z-index: 2;
    margin-bottom: 8rem;
    padding-bottom: 2rem;
}
#hero .top-arrow {
    max-width: 20rem;
    transform: translateX(30%);
}
#hero .row {
    justify-content: center;
}
#hero .latt-image {
    margin-top: 2rem;
    max-width: 31.7rem;
}
#hero .green-arrow {
    margin: -19rem -5rem 0 auto;
}
#hero .subtitle {
    font-family: var(--font-tertiary);
    color: var(--cls-white);
    font-size: var(--text-hero-subtitle);
    margin-bottom: -2rem;
    transform: rotate(-2.72deg);
}
#hero h1 {
    position: relative;
    font-size: var(--text-hero-h1);
    line-height: calc(var(--text-hero-h1) + 2px);
    text-transform: uppercase;
}
#hero .highlight {
    transform: rotate(-4.5deg) translateY(3px);
    display: inline-block;
}
#hero .highlight:before {
    content: '';
    background: url('/wp-content/themes/divi-child/assets/1_blokk/new-text-underlines.svg') 0 0 no-repeat;
    position: absolute;
    background-size: 100%;
    width: 100%;
    height: calc(var(--text-hero-h1) * 0.35);
    bottom: -0.5rem;
    left: 50%;
    transform: translateX(-50%) rotate(3deg);
}
#hero ul {
    max-width: 37rem;
    display: block;
    margin: 2rem auto 0 auto;
}
#hero ul li {
    font-size: var(--text-hero-bullets);
}
#hero ul li:before {
    content: '';
    background: url('/wp-content/themes/divi-child/assets/1_blokk/bullet-drop-sm.svg') no-repeat;
    margin-right: 5px;
    width: 16px;
    height: 18px;
    display: inline-block;
    transform: translateY(3px);
}
#hero .bottom-arrow {
    transform: translateY(99%);
    max-width: 150%;
    width: 100%;
    height: 4rem;
}


/* Latt Dimensions Block */
#dimensions {position: relative;}
#dimensions .row {padding-top: 0}
#dimensions:before {
    content: '';
    background: url('/wp-content/themes/divi-child/assets/2_blokk/bg-illustration-right.svg') no-repeat;
    width: 6.7rem;
    height: 10rem;
    position: absolute;
    z-index: 0;
    top: 5%;
    right: 0;
}
#dimensions .latt-on-mobile {
    max-width: 16.5rem;
    margin: 0 auto 1rem auto;
    transform: translateX(-15px);
}
#dimensions .image-container {
    /*display: flex;*/
    /*justify-content: center;*/
    /*align-items: center;*/
    margin-top: 3rem;
}
#dimensions img {width: 100%;}
#latt-cutout {display: none;}
#latt-cutout img {max-width: 255px;}
#latt-dimensions img {
    max-width: 30.5rem;
    margin: 0 auto;
}


/* Glass block */
#glass .image {
    position: relative;
}

#glass-img {
    width: 70%;
    margin: 0 auto;
}
#glass-arrow {
    transform: rotate(150deg) scale(.7);
    bottom: 10%;
    left: 0;
}


/* Nature friendly block */
#nature-friendly {position: relative;}
#nature-img {
    max-width: 64rem;
    min-width: 30rem;
    margin-left: -10rem;
}
#nature-friendly .text-block {
    margin-top: 2rem;
    position: relative;
}
#nature-friendly .text-block:before {
    content: '';
    background: url('/wp-content/themes/divi-child/assets/3_blokk/dashed-arrow-to-bottom.svg') no-repeat;
    position: absolute;
    right: -2rem;
    top: -7rem;
    width: 12rem;
    height: 13rem;
}
#nature-friendly .pet-waste-text {
    position: relative;
    margin-top: 2rem;
}

#pet-waste-img {
    position: absolute;
    right: 0;
    bottom: 0;
    z-index: -1;
}
@media screen and (max-width: 1000px) {

    #pet-waste-img {
        max-height: 40%;
    }
}


/* Smart tap block */
#smart-tap .row.pos-relative:before {
    content: '';
    background: url('/wp-content/themes/divi-child/assets/4_blokk/green-arrow-to-bottom.svg') no-repeat;
    position: absolute;
    right: 10rem;
    top: -2rem;
    width: 7rem;
    height: 7rem;
    z-index: 3;
    transform: rotate(15deg);
}
#smart-tap .content {
    padding-top: 0;
}
#smart-tap .kitchen-and-nozzle {
    width: 100%;
}

#tap-led-img {
    max-width: 14rem;
    margin: 0 auto 2rem 0;
}

#smart-tap .pointer-line {
    display: none;
}
#smart-tap ul {
    margin-top: 2rem;
}
#smart-tap ul li {
    font-size: var(--text-size-paragraph);
    margin-bottom: 10px;
}
#smart-tap .indicators {padding-left: 0}
#smart-tap .indicators li {
    font-size: 1.4rem;
}
#smart-tap .indicators li:before {
    content: '';
    background: url('/wp-content/themes/divi-child/assets/4_blokk/blue-circle.svg') no-repeat;
    background-size: 100%;
    margin-right: 5px;
    width: 1.8rem;
    height: 1.8rem;
    display: inline-block;
    vertical-align: middle;
}
#smart-tap .indicators .orange:before {
    background: url('/wp-content/themes/divi-child/assets/4_blokk/yellow-circle.svg') no-repeat;
}
#smart-tap .indicators .red:before {
    background: url('/wp-content/themes/divi-child/assets/4_blokk/red-circle.svg') no-repeat;
}
#smart-tap-img {
    max-width: 9rem;
    margin: 0 auto 4rem auto;
}
#smart-tap .kitchen-and-nozzle {
    text-align: center;
}
#smart-tap .kitchen-and-nozzle img {
    max-width: 15rem;
    margin: 0 auto 1rem auto;
}
#smart-tap .kitchen-img + p {
    margin-bottom: 4rem;
}


/* Food and Taste Block */
#foods {
    position: relative;
}
#foods:after {
    content: '';
    background: url('/wp-content/themes/divi-child/assets/5_blokk/bg-arrow.svg') center center no-repeat;
    width: 8rem;
    height: 10rem;
    position: absolute;
    right: 0;
    top: -4rem;
}


/* Filter replacement block */
#filter-replacement .mobile-heading img {
    max-width: calc(100% + 4rem);
    margin-left: -2rem;
    margin-bottom: 2rem;
    border-top: .2rem solid var(--cls-latt-blue-lighter);
    border-bottom: .2rem solid var(--cls-latt-blue-lighter);
}



/* Pros block */
#pros {
    background: url('/wp-content/themes/divi-child/assets/7_blokk/backgound.jpeg') center top no-repeat;
    background-size: 100% auto;
}
#pros .mobile-stamp-image {
    max-width: calc(100% + 8rem);
    margin-left: -4rem;
    margin-top: 1rem;
    margin-bottom: 1rem;
    min-width: 10%;
}
#pros .content {
    background-color: var(--cls-white);
    padding: 1rem;
    border-radius: .4rem;
    border-top: .2rem solid var(--cls-latt-blue-lighter);
}


/* Buy it block */
#buy-it ul {
    font-weight: var(--font-primary-black);
    color: var(--cls-heading-blue);
    list-style-type: none;
    padding-left: 0;
    margin-top: 2rem;
}
#buy-it ul li {
    position: relative;
    margin-bottom: 1rem;
    padding-left: 2.5rem;
}
#buy-it ul li:before {
    content: '';
    position: absolute;
    background: url('/wp-content/themes/divi-child/assets/8_blokk/bullet-drop.svg') no-repeat;
    width: 2rem;
    height: 2.4rem;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}
#buy-it .cta img {
    max-width: calc(100% + 4rem);
    max-height: 22rem;
    object-fit: cover;
    width: calc(100% + 4rem);
    border-top: .2rem solid var(--cls-latt-blue-lighter);
    border-bottom: .2rem solid var(--cls-latt-blue-lighter);
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
}
#buy-it .cta .price {
    font-size: 2.3rem;
    font-weight: var(--font-primary-black);
    color: var(--cls-heading-blue);
}
#buy-it .cta .price span {
    font-size: 1.6rem;
    font-weight: var(--font-primary-regular);
}
#buy-it .cta .button {
    margin-top: 1rem;
}


/* Four options block */
#four-options .option-title {
    font-size: clamp(1.9rem, 1.7vw + .1rem, 2.4rem);
    color: var(--cls-heading-blue);
    font-weight: var(--font-primary-black);
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}
#four-options .option-title:after {
    content: '';
    position: absolute;
    width: calc(100% + .5rem);
    height: .9rem;
    background-color: rgba(157, 204, 204, 30%);
    bottom: -.2rem;
    left: -.2rem;
    z-index: -1;
}
#four-options .cta-text {
    text-align: center;
}
#four-options .button {
    margin-top: 2rem;
    margin-bottom: 1rem;
}
#four-options .image {
    position: relative;
}
#four-options .arrow {
    position: absolute;
    bottom: 3.5rem;
    left: 35%;
    transform: translateX(-50%) rotate(-25deg);
    max-width: 13rem;
}
#four-options .block-2 .arrow {
    transform: translateX(-50%) rotate(105deg);
}
#four-options .block-4 .arrow {
    transform: translateX(-50%) rotate(115deg);
}


/* Footer block */
#footer-top .latt-logo {
    margin: 1rem auto;
    max-width: 70%;
}
#footer-top .storage {
    background: url('/wp-content/themes/divi-child/assets/footer/raktar-image.jpeg') center center no-repeat;
    background-size: cover;
    height: 29rem;
    border-top: .2rem solid var(--cls-latt-blue);
    border-bottom: .2rem solid var(--cls-latt-blue);
}

#footer-top .arrow {
    bottom: 45%;
    left: 50%;
    transform: translate(-25%, 0);
    max-width: 20%;
}
#footer-top .circle {
    bottom: 0;
    left: 30%;
    transform: translate(-25%, -1rem);
    max-width: 70%;
}

footer {
    background: url('/wp-content/themes/divi-child/assets/footer/mobile-bg-min.jpeg') no-repeat;
    background-size: cover;
    color: var(--cls-white);
    font-weight: 400;
}
footer a {
    color: var(--cls-white);
}
footer ul {
    list-style: disc;
}
footer .col {
    margin-bottom: 3rem;
}
footer .title {
    font-weight: 900;
    font-size: 2.4rem;
    position: relative;
    display: inline-block;
    margin-bottom: 2rem;
    color: var(--cls-white);
}
footer .title:after {
    content: '';
    background-color: var(--cls-latt-blue);
    height: 5px;
    width: 65%;
    position: absolute;
    bottom: -5px;
    left: 0;
    z-index: -1;
}
footer .contact {
    min-width: 300px;
}
footer .contact ul {
    font-weight: var(--font-primary-bold);
}
footer .contact ul li {
    margin-bottom: 1rem;
}
footer .contact ul li:last-child {
    display: flex;
    gap: .5rem;
}
footer .contact ul li i {
    color: var(--cls-latt-blue);
    width: 2rem;
}
footer .contact ul li span {
    font-weight: var(--font-primary-regular);
}

/* Copyright bar */
#copyright-bar,
#copyright-bar p {
    font-size: 1.2rem;
    font-weight: var(--font-primary-bold);
}
#copyright-bar .row {
    padding: 2rem;
}
#copyright-bar .copy-text {
    order: 2;
    text-align: center;
    margin-bottom: 1rem;
}
#copyright-bar .links {
    order: 1;
    display: flex;
    justify-content: space-between;
}
