:root {
    --font-primary: "montserrat", sans-serif;
    --font-secondary: "Open Sans", sans-serif;

    --color-1: #1a237e;
    --color-2: #3949ab;
    --color-3: #fff;
    --color-4: #101010;
    --color-5: #495057;
    --border-1: #eff2f7;

    --background: #f6f6f6;
}

/* General Parameters */
html {
    scroll-behavior: smooth;
}
body {
    font-family: var(--font-primary);
    color: var(--color-4);
}
body * {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    word-wrap: break-word;
}
body *:not(.sub-menu) {
    transition: all 0.3s ease;
}
input,
button,
select,
textarea {
    appearance: none;
    background: none;
    border: none;
    outline: none;
}
a {
    display: inline-block;
}

/* Body */
.body-animate {
    opacity: 0;
    transition: all 0.3s ease;
}
.body-animate.enabled {
    opacity: 1;
}

/* Fonts Utilities */
.font-primary {
    font-family: var(--font-primary) !important;
}
.font-secondary {
    font-family: var(--font-secondary) !important;
}

/* Text Utilities */
.text-wrap {
    word-wrap: break-word;
    overflow-wrap: break-word;
    white-space: normal;
    display: block;
    word-break: break-word;
}

/* Padding Utilities */
.pt-70 {
    padding-top: 70px;
}
.padding-y-12 {
    padding-top: 0.75rem !important;
    padding-bottom: 0.75rem !important;
}

/* Transition Utilities */
.transition-sm {
    transition: all 0.3s ease;
}

/* Button Utilities */
.btn-color:hover,
.btn-color:active {
    color: var(--color-3) !important;
    background-color: var(--color-4) !important;
}
.btn-color-2:hover,
.btn-color-2:active {
    color: var(--color-3) !important;
    background-color: var(--color-2) !important;
}
.btn-opacity:hover,
.btn-opacity:active {
    opacity: 0.8;
}
.btn-opacity-2,
.btn-opacity-2 {
    opacity: 0.8;
}
.btn-opacity-2:hover,
.btn-opacity-2:active {
    opacity: 1;
}
.btn-scale:hover,
.btn-scale:active {
    transform: scale(1.1);
}
.btn-underline:hover,
.btn-underline:active {
    text-decoration: underline !important;
    text-underline-offset: 2px;
}
.card-hover {
    border-top: 4px solid transparent;
}
.card-hover:hover,
.card-hover:active {
    border-radius: 1rem !important;
    border-color: var(--color-2);
    box-shadow: 0 1rem 3rem rgba(31, 45, 61, 0.125) !important;
    transform: translateY(-4px);
}

.icon-hover:hover svg,
.icon-hover:active svg {
    transform: translateX(5px);
}
.link-hover:hover,
.link-hover:active {
    text-decoration: underline !important;
}

/* Border Utilities */
.border-none {
    border: none;
}
.outline-none {
    outline: none;
}

/* Position Utilities */
.transform-negative-24 {
    transform: translateY(-24px);
}

/* Shadow Utilities */
.box-shadow {
    box-shadow: 0 3px 20px 0 rgba(0, 0, 0, 0.12);
}
.box-shadow-2 {
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
}
.box-shadow-3 {
    box-shadow: 0 0 0 1px #ebebeb;
}
.shadow-circle {
    background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.25) 0%, rgba(0, 0, 0, 0) 80%);
    height: 10px;
}

/* Truncate */
.truncate-4 {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Width Utilities */
.width-fit-content {
    width: fit-content;
}
.width-max-content {
    width: max-content;
}
.width-min-content {
    width: min-content;
}
.width-max-800 {
    max-width: 800px !important;
}
.width-max-250 {
    max-width: 250px !important;
}
.width-max-200 {
    max-width: 200px !important;
}
.width-max-180 {
    max-width: 180px !important;
}
.width-max-150 {
    max-width: 150px !important;
}
.width-max-120 {
    max-width: 120px !important;
}

/* Height Utilities */
.height-3 {
    height: 3px;
}
.height-min-240 {
    min-height: 240px;
}
.height-250 {
    height: 250px;
}

/* Icon Utilities */
.icon-16 {
    width: 16px;
    min-width: 16px;
    height: 16px;
}
.icon-18 {
    width: 18px;
    min-width: 18px;
    height: 18px;
}
.icon-25 {
    width: 25px;
    min-width: 25px;
    height: 25px;
}
.icon-30 {
    width: 30px;
    min-width: 30px;
    height: 30px;
}
.icon-40 {
    width: 40px;
    min-width: 40px;
    height: 40px;
}
.icon-60 {
    width: 60px;
    min-width: 60px;
    height: 60px;
}
.icon-75 {
    width: 75px;
    min-width: 75px;
    height: 75px;
}
.icon-92 {
    width: 92px;
    min-width: 92px;
    height: 92px;
}

/* Background Utilities */
.background-fixed {
    background-attachment: fixed;
}
.background-cover {
    background-size: cover;
}
.background-center-center {
    background-position: center center;
}

/* Cursor Utilities */
.cursor-pointer {
    cursor: pointer;
}
.pointer-events-none {
    pointer-events: none;
}

/* Margin Utilities */
.sec-margin {
    margin-top: 6rem;
    margin-bottom: 6rem;
}
.mb-negative-24 {
    margin-bottom: -24px;
}

/* Icon Colors */
.color-fill-1 {
    transform: rotate(45deg);
}
.color-fill-1 path {
    stroke: red;
}
.color-fill-1:hover path {
    stroke: var(--color-4);
}

/* Accent Colors */
.color-accent-1 {
    accent-color: #101010;
}

/* Heading Colors */
.color-1 {
    color: var(--color-1) !important;
}
.color-2 {
    color: var(--color-2) !important;
}
.color-3 {
    color: var(--color-3) !important;
}
.color-4 {
    color: var(--color-4) !important;
}
.color-5 {
    color: var(--color-5) !important;
}

/* Background Colors */
.color-bg-1 {
    background-color: var(--color-1) !important;
}
.color-bg-2 {
    background-color: var(--color-2) !important;
}
.color-bg-3 {
    background-color: var(--color-3) !important;
}
.color-bg-4 {
    background-color: var(--background) !important;
}
.color-bg-gradient {
    background: linear-gradient(75deg, var(--color-2) 10%, var(--color-1)) !important;
}

/* Border Colors */
.color-border-1 {
    border-color: var(--color-1) !important;
}
.color-border-2 {
    border-color: var(--color-2) !important;
}
.color-border-5 {
    border-color: var(--color-5) !important;
}
.color-border-6 {
    border-color: var(--border-1) !important;
}

/* Animation */
@keyframes jumpUp {
    0% {
        transform: translateY(0);
    }
    10% {
        transform: translateY(-10px);
    }
    20% {
        transform: translateY(0);
    }
    30% {
        transform: translateY(-5px);
    }
    40% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(0);
    }
}
@keyframes jumpShadow {
    0% {
        transform: translateY(0);
    }
    10% {
        transform: scale(0.7);
    }
    20% {
        transform: translateY(0);
    }
    30% {
        transform: scale(0.8);
    }
    40% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(0);
    }
}
.animation-scroll-to-top {
    animation: jumpUp 3.5s ease-in-out infinite;
}
.animation-jump-shadow {
    animation: jumpShadow 3.5s ease-in-out infinite;
}
#scroll-top:hover .animation-scroll-to-top,
#scroll-top:hover .animation-jump-shadow {
    animation: none;
}

@keyframes dividerMoving {
    0% {
        left: -40%;
    }
    20% {
        left: -40%;
    }
    50% {
        left: 30%;
    }
    80% {
        left: 100%;
    }
    100% {
        left: 100%;
    }
}
.animation-divider {
    animation: dividerMoving 3.5s cubic-bezier(1, 1, 0, 0) infinite;
    display: flex;
    left: -20%;
    gap: 20px;
}
.animation-divider::before,
.animation-divider::after {
    content: "";
    display: block;
    width: 10px;
    height: 5px;
    background-color: var(--background);
}
.color-divider-2::before,
.color-divider-2::after {
    background-color: var(--color-3) !important;
}
.color-divider-3::before,
.color-divider-3::after {
    background-color: #001e3d !important;
}

/* Size Utilities */
.size-12 {
    font-size: 0.75rem;
}
.size-14 {
    font-size: 0.875rem;
}
.size-16 {
    font-size: 1rem;
}
.size-18 {
    font-size: 1.125rem;
}
.size-20 {
    font-size: 1.25rem;
}
.size-22 {
    font-size: 1.375rem;
}
.size-24 {
    font-size: 1.5rem;
}
.size-28 {
    font-size: 1.75rem;
}
.size-32 {
    font-size: 2rem;
}
.size-36 {
    font-size: 2.25rem;
}
.size-40 {
    font-size: 2.5rem;
}
.size-48 {
    font-size: 3rem;
}
.size-52 {
    font-size: 3.25rem;
}
.size-92 {
    font-size: 5.75rem;
}
.size-96 {
    font-size: 6rem;
}

@media screen and (min-width: 576px) {
    .size-sm-12 {
        font-size: 0.75rem;
    }
    .size-sm-14 {
        font-size: 0.875rem;
    }
    .size-sm-16 {
        font-size: 1rem;
    }
    .size-sm-18 {
        font-size: 1.125rem;
    }
    .size-sm-20 {
        font-size: 1.25rem;
    }
    .size-sm-22 {
        font-size: 1.375rem;
    }
    .size-sm-24 {
        font-size: 1.5rem;
    }
    .size-sm-28 {
        font-size: 1.75rem;
    }
    .size-sm-32 {
        font-size: 2rem;
    }
    .size-sm-36 {
        font-size: 2.25rem;
    }
    .size-sm-48 {
        font-size: 3rem;
    }
    .size-sm-52 {
        font-size: 3.25rem;
    }
    .size-sm-64 {
        font-size: 4rem;
    }
    .size-sm-92 {
        font-size: 5.75rem;
    }
    .size-sm-96 {
        font-size: 6rem;
    }
    .icon-sm-25 {
        width: 25px;
        min-width: 25px;
        height: 25px;
    }
    .icon-sm-30 {
        width: 30px;
        min-width: 30px;
        height: 30px;
    }
    .pt-sm-90 {
        padding-top: 90px;
    }
}

@media screen and (min-width: 992px) {
    .size-lg-12 {
        font-size: 0.75rem;
    }
    .size-lg-14 {
        font-size: 0.875rem;
    }
    .size-lg-16 {
        font-size: 1rem;
    }
    .size-lg-18 {
        font-size: 1.125rem;
    }
    .size-lg-20 {
        font-size: 1.25rem;
    }
    .size-lg-22 {
        font-size: 1.375rem;
    }
    .size-lg-24 {
        font-size: 1.5rem;
    }
    .size-lg-28 {
        font-size: 1.75rem;
    }
    .size-lg-32 {
        font-size: 2rem;
    }
    .size-lg-36 {
        font-size: 2.25rem;
    }
    .size-lg-48 {
        font-size: 3rem;
    }
    .size-lg-52 {
        font-size: 3.25rem;
    }
    .size-lg-64 {
        font-size: 4rem;
    }
    .size-lg-92 {
        font-size: 5.75rem;
    }
    .size-lg-96 {
        font-size: 6rem;
    }
}

@media screen and (min-width: 1400px) {
    .size-xxl-12 {
        font-size: 0.75rem;
    }
    .size-xxl-14 {
        font-size: 0.875rem;
    }
    .size-xxl-16 {
        font-size: 1rem;
    }
    .size-xxl-18 {
        font-size: 1.125rem;
    }
    .size-xxl-20 {
        font-size: 1.25rem;
    }
    .size-xxl-22 {
        font-size: 1.375rem;
    }
    .size-xxl-24 {
        font-size: 1.5rem;
    }
    .size-xxl-28 {
        font-size: 1.75rem;
    }
    .size-xxl-32 {
        font-size: 2rem;
    }
    .size-xxl-36 {
        font-size: 2.25rem;
    }
    .size-xxl-48 {
        font-size: 3rem;
    }
    .size-xxl-52 {
        font-size: 3.25rem;
    }
    .size-xxl-64 {
        font-size: 4rem;
    }
    .size-xxl-92 {
        font-size: 5.75rem;
    }
    .size-xxl-96 {
        font-size: 6rem;
    }
    .container {
        max-width: 1140px;
    }
}

@media (max-width: 576px) {
    .mobile-full-width {
        width: 100% !important;
        height: auto !important;
    }
}
