/* ==================== GLOBAL ==================== */

html {
    margin: 0;
}

/* ==================== FONTS ==================== */

* {
    font-family: "Montserrat", sans-serif;
}

/* ==================== COLORS ==================== */

.mainBackground {
    background-color: #e84228;
}

.mainColor {
    color: #e84228;
}

.darkColor {
    color: #232222;
}

.darkBackground {
    background-color: #232222;
}

/* ==================== BUTTONS ==================== */

.firstButton {
    background-color: #e84228;
    color: #ffffff;
    border: none;
    padding: 10px 30px;
    cursor: pointer;
    transition: background-color 0.5s ease;
}

.firstButton:hover {
    background-color: #ffffff;
    color: #e84228;
    border: none;
    cursor: pointer;
    transition: background-color 0.5s ease;
}

.firstButton svg {
    transition: 0.5s ease;
}

.firstButton:hover svg {
    fill: #e84228 !important;
    transition: 0.5s ease;
}

.secondButton {
    background-color: #ffffff;
    color: #e84228;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    transition: background-color 0.5s ease;
}

.secondButton:hover {
    background-color: #e84228;
    color: #ffffff;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    transition: background-color 0.5s ease;
}

.secondButton svg {
    transition: 0.5s ease;
}

.secondButton:hover svg {
    fill: #ffffff !important;
    transition: 0.5s ease;
}

/* ==================== STRZALKA 3D ==================== */

.strzalka {
    transition: transform 2s ease-in-out, opacity 0.5s ease-in-out;
    opacity: 0;
    position: fixed;
    bottom: -100%;
    will-change: transform, opacity;
}

.strzalka-visible {
    transform: translateY(0);
}

/* ==================== LINKI ==================== */

.underlineLink {
    position: relative;
    cursor: pointer;
    transition: 0.3s ease-in-out;
}

.underlineLink:hover {
    opacity: 50%;
    transition: 0.3s ease-in-out;
}

.underlineLink::before {
    content: "";
    position: absolute;
    bottom: -3px;
    height: 2px;
    width: 0;
    background-color: white;
    transition: width 0.3s ease-in-out;
}

.underlineLink::before {
    left: 0;
}

.underlineLink:hover::before {
    width: 50px;
}

/* ==================== YT VIDEO ==================== */

.video-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* ==================== GRADIENTS ==================== */

.offerGradient {
    background: rgba(2, 2, 2, 0.605);
    background: -moz-linear-gradient(0deg, rgba(2, 2, 2, 0.8) 10%, rgba(22, 53, 249, 0) 100%);
    background: -webkit-linear-gradient(0deg, rgba(2, 2, 2, 0.8) 10%, rgba(22, 53, 249, 0) 100%);
    background: linear-gradient(0deg, rgba(2, 2, 2, 0.8) 10%, rgba(22, 53, 249, 0) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#000133", endColorstr="#1635f9", GradientType=1);
}