/*
Theme Name: Creative Answer
Author: Maciej Noworyta (Vestigio Agency)
Author URI: https://vestigio.agency
*/

:root {
    --text-color: #212529;
    --primary-color: #543AEB;
    --white: #FFFFFF;
    --secondary-color: #FF772C;
    --green-color: #46b450;
    --font-size-base: 18px;
    --font-size-h1: 42px;
    --font-size-h2: 36px;
    --font-size-h3: 28px;
    --font-size-h4: 22px;
    --font-size-h5: 18px;
    --font-size-h6: 14px;
    --font-size-title: 52px;
}

a, abbr, address, article, aside, audio, b, blockquote, body, canvas,
caption, cite, code, dd, del, details, dfn, div, dl, dt, em, embed, fieldset,
figcaption, figure, footer, form, h1, h2, h3, h4, h5, h6, header,
html, i, iframe, img, ins, kbd, label, legend, li, mark, menu, nav,
object, ol, p, pre, q, samp, section, small, span, strong, sub, summary,
sup, time, ul, var, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font-weight: inherit;
    font-style: inherit;
}

article, aside, canvas, details, figcaption, figure, footer, header, menu, nav, section, summary {
    display: block;
}

a, ins, del {
    text-decoration: none;
}

ul, ol {
    list-style: none;
}

strong {
    font-weight: 700;
}

caption, th {
    text-align: left;
}

* {
    outline: none;
    margin: 0;
    padding: 0;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: all 300ms ease-out 0s;
}

a:hover, a:focus {
    color: var(--secondary-color);
    text-decoration: underline;
    outline: none;
}

html {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -ms-overflow-style: scrollbar;
}

*,
*::before,
*::after {
    -webkit-box-sizing: inherit;
    box-sizing: inherit;
}

html, body {
    font-family: "Titillium Web", serif;
    font-weight: 400;
    font-style: normal;
    font-size: var(--font-size-base);
    line-height: 1.4;
    color: var(--text-color);
    padding: 0;
    margin: 0;
}

img {
    max-width: 100%;
    height: auto;
    vertical-align: middle;
}

.transition {
    opacity: 0.85;
    -webkit-transition: all 300ms ease-out 0s;
    -moz-transition: all 300ms ease-out 0s;
    -o-transition: all 300ms ease-out 0s;
    transition: all 300ms ease-out 0s;
}

.transition:hover {
    opacity: 1;
}

.container {
    width: 100%;
    max-width: 1600px;
    margin: 0 auto;
    padding-left: 30px;
    padding-right: 30px;
}

.container-fluid {
    max-width: 1920px;
}

p {
    margin: 0 0 16px;
    line-height: 1.4;
}

p:last-of-type {
    margin-bottom: 0;
}

h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
    font-weight: 900;
    font-style: italic;
    font-family: "Playfair Display", serif;
    color: var(--primary-color);
    line-height: 1.2;
    margin-bottom: 16px;
}

h1, .h1 {
    font-size: var(--font-size-h1);
}

h2, .h2 {
    font-size: var(--font-size-h2);
}

h3, .h3 {
    font-size: var(--font-size-h3);
}

h4, .h4 {
    font-size: var(--font-size-h4);
}

h5, .h5 {
    font-size: var(--font-size-h5);
}

h6, .h6 {
    font-size: var(--font-size-h6);
}

.font-bold {
    font-weight: 900 !important;
}

.button {
    font-family: "Playfair Display", serif;
    font-weight: 900;
    font-size: var(--font-size-h6);
    line-height: 1;
    color: var(--white);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: auto;
    min-width: 134px;
    text-decoration: none;
    padding: 16px 32px;
    border-radius: 30px;
    border: 0;
    box-sizing: border-box;
    transition: all 300ms ease-out 0s;
}

.button:hover,
.button:focus {
    text-decoration: none;
}

.button span {
    font-size: 18px;
    color: var(--white);
    font-weight: 800;
    text-transform: uppercase;
    line-height: 1.2;
}

.button-primary {
    background: var(--primary-color);
}

.button-primary:hover {
    color: var(--white);
    background: var(--secondary-color);
}

.button-secondary {
    background: var(--secondary-color);
}

.button-secondary:hover {
    color: var(--white);
    background: var(--primary-color);
}

.button-black {
    background: var(--text-color);
}

.button-black:hover {
    color: var(--white);
    background: var(--primary-color);
}

/* Sections */
.section {
    padding: 64px 0;
}

.section-primary {
    background: var(--primary-color);
}

.section-secondary {
    background: var(--secondary-color);
}

.section-heading {
    padding-bottom: 64px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 32px;
}

.section-heading .title {
    font-size: var(--font-size-title);
    font-weight: 900;
    font-style: italic;
    font-family: "Playfair Display", serif;
    color: var(--secondary-color);
    line-height: 1.2;
    margin: 0;
    padding: 0;
}

.section-heading .title.primary {
    color: var(--primary-color);
}

.section-heading .title.secondary {
    color: var(--secondary-color);
}

.section-heading .title.black {
    color: var(--text-color);
}

.section-heading .title span {
    font-size: var(--font-size-h2);
    display: block;
}

.section-heading.centered {
    align-items: center;
}

.section-heading .description:before {
    content: "";
    width: 45px;
    height: 3px;
    border-radius: 20px;
    background: var(--secondary-color);;
    display: block;
    margin-bottom: 16px;
}

.section-heading .description {
    font-weight: 600;
    font-size: var(--font-size-h5);
}

#main {
    padding-top: 96px;
}

.slicknav_menu {
    display: none;
}

/* Pomocniczne */
.aligncenter,
div.aligncenter {
    display: block;
    margin: 5px auto 5px auto;
}

.alignright {
    float: right;
    margin: 0px 25px 0px 25px;
}

.alignleft {
    float: left;
    margin: 0px 25px 0px 0;
}

.aligncenter {
    display: block;
    margin: 5px auto 5px auto;
}

a img.alignright {
    float: right;
    margin: 5px 0 25px 25px;
}

a img.alignnone {
    margin: 5px 25px 25px 0;
}

a img.alignleft {
    float: left;
    margin: 5px 25px 25px 0;
}

a img.aligncenter {
    display: block;
    margin-left: auto;
    margin-right: auto
}

@media (max-width: 1280px) {
    :root {
        --font-size-base: 16px;
        --font-size-h1: 36px;
        --font-size-h2: 28px;
        --font-size-h3: 22px;
        --font-size-h4: 18px;
        --font-size-h5: 14px;
        --font-size-h6: 10px;
        --font-size-title: 42px;
    }
}

@media (max-width: 1140px) {
    #main {
        padding-top: 66px;
    }

    .slicknav_menu {
        display: block;
    }

    .slicknav_btn {
        position: absolute;
        top: 18px;
        right: 30px;
    }

    .slicknav_icon {
        width: 40px;
        height: 30px;
        position: relative;
        -webkit-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        transform: rotate(0deg);
        -webkit-transition: .5s ease-in-out;
        -moz-transition: .5s ease-in-out;
        -o-transition: .5s ease-in-out;
        transition: .5s ease-in-out;
        cursor: pointer;
        display: block;
    }

    .slicknav_icon span {
        display: block;
        position: absolute;
        height: 4px;
        width: 100%;
        background: var(--primary-color);
        border-radius: 9px;
        opacity: 1;
        left: 0;
        -webkit-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        transform: rotate(0deg);
        -webkit-transition: .25s ease-in-out;
        -moz-transition: .25s ease-in-out;
        -o-transition: .25s ease-in-out;
        transition: .25s ease-in-out;
    }

    .slicknav_icon span:nth-child(1) {
        top: 1px;
    }

    .slicknav_icon span:nth-child(2) {
        top: 12px;
    }

    .slicknav_icon span:nth-child(3) {
        top: 24px;
    }

    .slicknav_open .slicknav_icon span:nth-child(1) {
        top: 12px;
        -webkit-transform: rotate(135deg);
        -moz-transform: rotate(135deg);
        -o-transform: rotate(135deg);
        transform: rotate(135deg);
    }

    .slicknav_open .slicknav_icon span:nth-child(2) {
        opacity: 0;
        left: -30px;
    }

    .slicknav_open .slicknav_icon span:nth-child(3) {
        top: 12px;
        -webkit-transform: rotate(-135deg);
        -moz-transform: rotate(-135deg);
        -o-transform: rotate(-135deg);
        transform: rotate(-135deg);
    }

    .slicknav_nav {
        position: absolute;
        background: rgb(255, 255, 255);
        width: 100%;
        left: 0;
        top: 60px;
        padding-top: 15px;
        box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.1);
    }

    .slicknav_nav a {
        color: var(--text-color);
        font-weight: 700;
        display: block;
        padding: 10px 15px;
        text-align: center;
        border-top: 1px solid #f2f2f2;
    }

    .slicknav_nav .current-menu-item a,
    .slicknav_nav a:hover {
        color: var(--white);
        background: var(--primary-color);
    }

    .slicknav_item {
        margin: 0;
        padding: 0;
        position: relative;
    }

    .slicknav_arrow {
        position: absolute;
        top: 0;
        right: 15px;
        width: 42px;
        height: 42px;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
    }
}

@media (max-width: 992px) {
    :root {
        --font-size-title: 36px;
    }

    .section {
        padding: 32px 0;
    }

    .section-heading {
        padding-bottom: 32px;
    }

    .button,
    .button span {
        font-size: 16px;
    }
}
