/*
Theme Name: SkeletonSystems
Text Domain: SkeletonSystems
Version: 1.4
Author: SkeletonSystems
*/

@import './css/fonts.css?v=1.4';
@import './css/colors.css?v=1.4';
@import './css/header.css?v=1.4';
@import './css/footer.css?v=1.4';
@import './css/landing.css?v=1.4';
@import './css/post.css?v=1.4';
@import './css/blog.css?v=1.4';
@import './css/vyzvy.css?v=1.4';
@import './css/vyzvy_post.css?v=1.4';
@import './css/sluzby_post.css?v=1.4';
@import './css/aboutus.css?v=1.4';
@import './css/slick.css?v=1.4';
@import './css/slick-theme.css?v=1.4';


html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--white);
    min-height: 100vh;
    width: 100vw;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "space_mono_regular", sans-serif;
    line-height: 1.6;
    font-size: 14px;
    color: var(--raisin);
}

img {
    display: block;
    max-width: 100%;
    height: auto;
}

a {
    cursor: pointer;
    text-decoration: none;
}

a:hover {
    text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "space_mono_bold", sans-serif;
    letter-spacing: 0.3rem;
}

h1 {
    font-size: 48px;
}

.container {
    width: 100vw;
}

.email_span {
    font-size: 8px;
}

/* BUTTONS */

.button {
    display: flex;
    flex-direction: column;
    padding: 16px;
    border-radius: 20px;
    height: 120px;
    min-width: 270px;
    justify-content: space-between;
    position: relative;
    transition: all 0.3s;
}

.button p {
    color: var(--white);
    font-size: 12px;
    font-family: "space_mono_regular", sans-serif;
    max-width: 238px;
}

.button .action_text {
    color: var(--white);
    font-size: 16px;
    display: inline-block;
    font-family: "work_sans_bold", sans-serif;
    letter-spacing: 0.1rem;
    padding-right: 24px;
    max-width: 270px;
}

.button .action_text:after {
    position: absolute;
    right: 16px;
    bottom: 22px;
    width: 16px;
    height: 16px;
    transition-duration: 0.3s;
}

.button:hover .action_text:after {
    transform: rotate(45deg);
}

.button_outline {
    background: var(--white);
    border: 4px solid var(--hotorange);
    color: var(--black)
}

.button_outline p {
    color: var(--hotorange);
}

.button_outline .action_text {
    color: var(--hotorange);
}

.button_outline .action_text:after {
    content: url('./assets/img/link_arrow_red.svg');
}

.button_outline:hover {
    background: var(--hotorange);
}

.button_outline.button_outline_alt:hover {
    background: var(--raisin);
    border-color: var(--raisin);
}

.button_outline:hover p {
    color: var(--white);
}

.button_outline:hover .action_text {
    color: var(--white);
}

.button_outline:hover .action_text:after {
    content: url('./assets/img/link_arrow_white.svg');
}

.button_red {
    background: var(--hotorange);
    border: 4px solid var(--hotorange);
    color: var(--black)
}

.button_red p {
    color: var(--white);
}

.button_red .action_text {
    color: var(--white);
}

.button_red .action_text:after {
    content: url('./assets/img/link_arrow_white.svg');
}

.button_red:hover {
    background: var(--raisin);
    border: 4px solid var(--raisin);
}

.button_white {
    background: var(--white);
    border: 4px solid var(--white);
    color: var(--black)
}

.button_white p {
    color: var(--black);
}

.button_white .action_text {
    color: var(--black);
}

.button_white .action_text:after {
    content: url('./assets/img/link_arrow_black.svg');
}

.button_white:hover {
    background: var(--timber);
    border: 4px solid var(--timber);
}

/* ACTION CARD */

.action_card {
    display: flex;
    position: relative;
    flex-direction: column;
    width: 500px;
    background: var(--hotorange);
    padding: 24px 32px;
    border-radius: 20px;
}

.action_card h3 {
    font-size: 24px;
    font-family: "space_mono_bold", sans-serif;
    text-transform: uppercase;
    color: var(--white);
    padding-bottom: 32px;
}

.action_card p {
    color: var(--white);
    padding-bottom: 64px;
}

.action_card .button_white {
    margin-left: auto;
}

.action_card .button_white p {
    color: var(--black);
    padding-bottom: 0px;
}

@media (max-width: 500px) {
    .action_card {
        width: 100%;
    }
}