@use '../_settings/index' as *;
@use '../_global/index' as *;
// ==========================================================================
// BASE STYLES
// ==========================================================================
html {
    font-size: 100%;
}

body,
label,
input,
button,
select,
textarea {
    color: black;
    @extend %font-roboto-16-18;
    outline: none;

    &::placeholder {
        color: $color-dark-grey;
    }
}

html {
    height: 100%;
    box-sizing: border-box;
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    @extend %font-family-roboto;
    background: $color-off-white;
    overflow: hidden;

    main, header, footer {
        .e-con {
            margin: 0;
            padding: 0;
        }

        .e-con > .e-con-inner {
            width: 100%;
            max-width: 100%;
            padding: 0;

            @include mq('desktop') {
                max-width: 1728px;
                padding: 0 40px;
            }

        }
    }
}

p {
    @extend %font-roboto-16-18;
    margin-bottom: 30px;
}

ol, ul {
    @extend %font-roboto-16-18;
    margin: 0;
    padding: 0;
}

ul {
    list-style: none;
}

h1,
h1 > p {
    @extend %font-roboto-bold-32-48;
}

h2,
h2 > p {
    @extend %font-roboto-bold-28-40;
}

h3,
h3 > p {
    @extend %font-roboto-bold-20-24;
}

h4,
h4 > p {
    @extend %font-roboto-bold-18-20;
}

h1, h2, h3, h4 {
    hyphens: auto;
}

a {
    @extend %font-roboto-16-18;
    letter-spacing: 0.5px;
    text-decoration: none;
    color: black;
}

figure {
    margin: 0;
    padding: 0;
}

img {
    max-width: 100%;
    height: fit-content;
}

fieldset {
    border: 0;
    margin: 0;
    padding: 0;
}

.is-hidden {
    display: none !important;
}

*, *::before, *::after {
    box-sizing: border-box;
}


.slick-dots {
    position: absolute;
    left: 50%;
    bottom: 79px;
    top: unset;
    transform: translateX(-50%);
    display: flex;
    gap: 20px;

    li {
        button {
            background: var(--brand-color-two);
            width: 10px;
            height: 10px;
            border-radius: 100%;
            font-size: 0;
            padding: 0;
        }

        &.slick-active {
            button {
                background: var(--brand-color-one);
            }
        }
    }
}
