* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
:root {
    --main-bg-color: #F9F9F9;
    --basic-text-color: #000;
    --header-bg-color: transparent;
    --accent-color: #07BF24;
    --btn-hover-color: #0c9020;
    --font-primary: 'Inter';
    --box-border-radius: 16px;
    --footer-bg-color: transparent;
    --ui-gradient: linear-gradient(99deg, #2A6FDB 4.27%, #07BF24 113.47%);
}
html, body {
    min-height: 100vh;
    overflow-x: hidden !important;
    font-family: var(--font-primary), 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    scroll-behavior: smooth;
    background-color: var(--main-bg-color);
    color: var(--basic-text-color);
}
.main-wrapper {
    display: flex;
    flex-direction: column;
}
.main {
    flex: 1 1 auto;
    position: relative;
}
ul li {
    list-style: none;
}
ol li {
    list-style-type: decimal;
    list-style-position: inside;
}
a {
    text-decoration: none;
    color: inherit;
}
button {
    cursor: pointer;
    font-family: inherit;
}
input, textarea {
    outline: none;
    font-family: inherit;
}
input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button { 
      -webkit-appearance: none; 
      margin: 0; 
}
.container {
    width: 90%;
    max-width: 1440px;
    margin: 0 auto;
    position: relative;
    z-index: 3;
}
.section-heading {
    color: #000;
    font-size: 2.25rem;
    font-weight: 600;
    line-height: 111%;
    margin-bottom: 1rem;
}
.section-text {
    color: #000;
    font-size: 1.2rem;
    font-weight: 400;
    line-height: 160%;
    margin-top: 1rem;
}
.card-text {
    font-size: 1.2rem;
    font-weight: 500;
    line-height: 140%;
    letter-spacing: -0.2px;
}
.text-white {
    color: #fff !important;
}
.text-colored {
    color: var(--accent-color);
}
.text-strong {
    font-weight: 900;
}
.text-center {
    text-align: center;
}
.text-left {
    text-align: left;
}
.text-right {
    text-align: right;
}
.uppercase {
    text-transform: uppercase;
}
.flex {
    display: flex;
}
.flex-inl {
    display: inline-flex;
}
.center {
    align-items: center;
}
.start {
    align-items: flex-start;
}
.end {
    align-items: flex-end;
}
.just-center {
    justify-content: center;
}
.just-between {
    justify-content: space-between;
}
.just-evenly {
    justify-content: space-evenly;
}
.just-start {
    justify-content: flex-start;
}
.just-end {
    justify-content: flex-end;
}
.column {
    flex-direction: column;
}
.wrap {
    flex-wrap: wrap;
}
.centered {
    margin-left: auto;
    margin-right: auto;
}
.full-w {
    width: 100% !important;
}

/* BUTTON */
.btn {
    width: 100%;
    max-width: 214px;
    min-height: 64px;
    background: var(--ui-gradient);
    color: #fff;
    font-weight: 600;
    font-size: 1rem;
    font-family: var(--font-primary);
    border: 0;
    border-radius: 8px;
    display: block;
    transition: all ease 0.2s;
}
.btn:hover {
    background-color: var(--btn-hover-color);
}
.btn:active {
    transform: scale(0.98)
}

body {
    overflow: hidden;
    background: #141E30;  /* fallback for old browsers */
    background: -webkit-linear-gradient(to right, #243B55, #141E30);  /* Chrome 10-25, Safari 5.1-6 */
    background: linear-gradient(to right, #243B55, #141E30); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
}
.main {
    width: 100%;
    min-height: 100vh;
    position: relative;
}
.video-holder-bg {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%,0);
    min-height: 100vh;
}
.video-holder-bg video {
    min-height: 100vh;
    min-width: 100vw;
    width: auto;
    height: auto;
}
.main-content {
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}
.main-heading {
    font-weight: 300;
    font-size: 4rem;
    letter-spacing: 2px;
}
.links-wrapper {
    margin-top: 1rem;
}
.links-wrapper .link {
    margin-top: 0.4rem;
    padding: 0.4rem 1.2rem;
    background: rgba(0,0,0,0.4);
    border-radius: 5px;
    backdrop-filter: blur(6px);
}

@media screen and (max-width:599px) {
    .main-heading {
        font-size: 2.2rem;
    }
}