:root {
    --primaryColor: white;
    --secondaryColor: #dcdcdc;
    --textPrimaryColor: #dfdfdf;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html,
body {
    scroll-behavior: smooth;
}
body {
    /* min-height: 250vh; */
    font-weight: 400;
    font-size: 16px;
    font-family: "Montserrat", sans-serif;
    color: var(--textPrimaryColor);
    background-image: radial-gradient(at bottom right, #343434, #000000);
    background-size: cover;
    background-attachment: fixed;
}
ul,
li {
    list-style: none;
}
a {
    color: var(--primaryColor);
}
a:hover {
    text-decoration: none;
    color: var(--secondaryColor);
}
.whiteText {
    color: white !important;
}
ul,
li {
    list-style: none;
    margin: 0;
}
img {
    display: block;
    max-width: 100%;
}

.btn {
    max-width: 100%;
    font-size: 14px;
    padding: 8px 20px;
    font-weight: 600;
    text-transform: uppercase;
    text-overflow: ellipsis;
    background-color: transparent !important;
    backdrop-filter: blur(10px);
}
.text-primary {
    color: var(--primaryColor) !important;
}
.btn-primary {
    border: none !important;
    position: relative;
    transition: 0.3s;
}
.btn-primary:hover {
    box-shadow:
        0 0 3px yellow,
        0 0 6px orange;
}
.btn-primary::before {
    height: 100%;
    width: 100%;
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    padding: 2px;
    border-radius: inherit;
    background-image: linear-gradient(-45deg, yellow, orange, red);
    background-size: 150%;
    mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    mask-composite: exclude;
    -webkit-mask-composite: xor;
    pointer-events: none;
}

@media only screen and (max-width: 786px) {
    body {
        font-size: 14px;
    }
}

/* Header work Start */
.header {
    background: transparent;
    font-size: 14px;
    color: #787878;
    font-weight: 600;
    backdrop-filter: blur(15px);
    position: relative;
    padding: 12px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    text-transform: uppercase;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.headerContent {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.logo {
    font-size: 20px;
    font-weight: 700;
}
.navigationMenu {
    gap: 20px;
    display: flex;
    font-size: 12px;
    align-items: center;
}
.mobileMenu {
    display: none;
    cursor: pointer;
}

.mobileBtnContainer {
    display: none;
    background: transparent;
    backdrop-filter: blur(15px);
    border-radius: 5px;
    height: 30px;
    width: 30px;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    cursor: pointer;
    color: var(--primaryColor);
    box-shadow: 0 0 5px rgba(255, 255, 255, 0.2);
}

@media only screen and (max-width: 786px) {
    .open.header {
        backdrop-filter: none;
    }
    .menuContainer {
        transition: 0.3s;
        top: 0;
        left: 0;
        height: 100vh;
        width: 100%;
        position: fixed;
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 1000;
        padding: 0 20px 60px 20px;
        backdrop-filter: blur(20px);
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
    }
    .navigationMenu {
        flex-direction: column;
    }
    .mobileMenu {
        display: block;
        margin-bottom: 20px;
    }
    .mobileMenu .logo {
        font-size: 32px;
    }
    .navigationLink {
        font-size: 16px;
    }
    .mobileBtnContainer {
        display: flex;
    }
    .open .menuContainer {
        opacity: 1;
        visibility: visible;
        pointer-events: all;
    }
    .closeBtn {
        height: 40px;
        width: 40px;
        position: absolute;
        top: 0;
        right: 0;
        font-size: 24px;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        color: var(--primaryColor);
        background-color: red;
        transition: 0.3s;
        border-bottom-left-radius: 25px;
    }
    .closeBtn:hover {
        border-bottom-left-radius: 0px;
        background-color: darkred;
    }
}

/* Header work End */

/* Page Container Start */
.pageContainer {
    min-height: calc(100vh - 60px - 40px);
}
.pageSection {
    padding: 80px 0 20px;
    min-height: calc(100vh - 60px - 40px);
}
.pageSection.dark {
    background: #070707;
}
.pageSectionContent {
    min-height: 350px;
    display: flex;
    justify-content: center;
    flex-direction: column;
}
.pageSubtitle {
    font-size: 48px;
    font-weight: bold;
    margin-bottom: 30px;
}

.customModal {
    height: 100vh;
    width: 100%;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    z-index: 10000;
    padding: 12px;
    background: transparent;
    backdrop-filter: blur(20px);
    transition: 0.3s;

    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}
.customModal.open {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
}
.customModalContainer {
    position: relative;
    padding: 30px 20px;
    width: 100%;
    max-width: 500px;
    min-height: 200px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 24px;
    background: rgba(0, 0, 0, 0.8);
    box-shadow:
        inset 2px 2px 5px rgba(255, 255, 255, 0.4),
        2px 2px 20px rgba(0, 0, 0, 0.3);
    animation: fadeIn 1s linear 1;
}
.customModalBody {
    width: 100%;
}
.customModalTitle {
    font-size: 40px;
    font-weight: bold;
    margin-bottom: 16px;
}
.successModal .customModalTitle i {
    color: lime;
}
.errorModal .customModalTitle i {
    color: tomato;
}
.customModalContent {
    width: 100%;
    font-size: 18px;
    font-weight: 500;
    max-height: calc(90vh - 120px);
    overflow-y: auto;
}

.customModalContent ul,
.customModalContent li {
    list-style: circle;
    text-align: left;
    line-height: 1.9;
}

.customModalContent ul {
    margin-left: 24px;
}
.customModalClose {
    top: 10px;
    right: 10px;
    height: 30px;
    width: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    background: red;
    font-size: 12px;
    transition: 0.4s box-shadow;
    border-radius: 50%;
    cursor: pointer;
    box-shadow:
        inset 2px 2px 6px rgba(0, 0, 0, 0.5),
        1px 1px 4px rgba(255, 255, 255, 0.4);
}
.customModalClose:hover {
    box-shadow:
        inset 1px 1px 4px rgba(255, 255, 255, 0.4),
        2px 2px 6px rgba(0, 0, 0, 0.5);
}

@media only screen and (max-width: 786px) {
    .pageSubtitle {
        font-size: 32px;
        margin-bottom: 16px;
    }
    .pageSection {
        padding: 60px 0 40px;
        min-height: 45vh;
    }
    .pageSectionContent {
        min-height: 200px;
    }
}
@media only screen and (max-width: 575px) {
    .pageSubtitle {
        font-size: 28px;
        margin-bottom: 18px;
    }
}
/* Page Container End */

/* Form Work Start */

.formContainer {
    position: relative;
    width: 100%;
}
.formHolder {
    padding: 32px 20px;
    border-radius: 24px;
    backdrop-filter: blur(20px);
    box-shadow: 2px 2px 5px rgba(0,0,0,0.3), inset 2px 2px 6px rgba(255,255,255,0.4);
}
.formTitle {
    font-size: clamp(1.2rem, 5vw + 1rem, 2rem);
    font-weight: 600;
}
.formSubtitle {
    font-size: 12px;
    margin-bottom: 28px;
}
.formField label {
    font-size: 12px;
    font-weight: bold;
    margin: 0;
}
.formField .form-control {
    font-size: 16px;
    background: transparent;
    border-width: 0 0 1px 0;
    border-radius: 0;
    color: var(--primaryColor);
    outline: none;
    box-shadow: none;
}
.formField .form-control:focus{
    border-color: orange;
}
.formField .form-control:-webkit-autofill {
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: white;
}
.submitBtn
{
    display: block;
    width: max-content;
    max-width: 100%;
    white-space: nowrap;
    overflow: hidden;
    font-size: 16px;
    margin: 16px auto 12px;
    text-overflow: ellipsis;
}
.formAdditionalLinks {
    margin: 8px 0;
    text-align: center;
    font-size: 12px;
    position: relative;
    padding-top: 20px;
    width: 100%;
}
.formAdditionalLinks::before
{
    width: 10%;
    height: 1px;
    opacity: 0.2    ;
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    background-color: white;
    transform: translateX(-50%);
}
/* Form Work End */

/* Homepage Start */
.heroSection {
    min-height: calc(100vh - 60px);
    display: flex;
    padding: 0 0 20px;
    align-items: center;
}

.heroTitle {
    font-size: clamp(2rem, 4vw + 1rem, 4rem);
}

.sliderSection {
    background: black;
    position: relative;
}

.sliderContainer {
    overflow-x: hidden;
    width: 100%;
}
.slider {
    padding: 20px 0;
    display: flex;
    font-size: 3vw;
    line-height: normal;
    font-weight: 700;
    text-align: center;
    -webkit-text-fill-color: transparent;
    -webkit-text-stroke: 1px white;
}
.slides {
    padding: 0 4vw;
}


.pageSection.aboutSection {
    background-image:
    linear-gradient(black, rgba(0, 0, 0, 0.7)),
    url("../img/fire_background.jpg");
    background-size: cover;
    background-position: center;
    position: relative;
}

@media only screen and (max-width: 786px) {
    .heroSection{
        padding: 65px 0 20px;
    }
    .slider {
        font-size: 5.5vw;
        -webkit-text-stroke: 0.5px white;
    }
    .slides {
        padding: 0 6vw;
    }
}
/* Homepage End */

/* Footer Start */

.footer {
    background: transparent;
    font-size: 10px;
    color: #787878;
    font-weight: 600;
    backdrop-filter: blur(10px);
    position: relative;
    padding: 12px 0;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.footer p {
    margin: 0;
}

/* Footer End */

/* Animation Work Start */

.pageSubtitle
{
    animation: slide-fade-up linear;
    animation-fill-mode: both;
    animation-timeline: view();
    animation-range: entry 20% contain 40%;

    will-change: transform, opacity;
}
.pageDescription
{
    animation: slide-fade-up linear;
    animation-fill-mode: both;
    animation-timeline: view();
    animation-range: entry 20% contain 40%;

    will-change: transform, opacity;
}
.lockImageContainer
{
    overflow: clip;
}
.lockImageContainer img {
    animation: slide-fade-left linear;
    animation-fill-mode: both;
    animation-timeline: scroll(root);
    animation-range: entry contain;
    
    will-change: transform, opacity;
}

@keyframes slide-fade-up {
    from {
        opacity: 0;
        transform: scale(0) translateY(200px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

@keyframes slide-fade-left {
    from {
        opacity: 0;
        transform: translateX(200px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes reshape {
    0% {
        transform: scaleX(1);
    }
    100% {
        transform: scaleX(0.6);
    }
}
@keyframes shine {
    to {
        background-position: 0;
    }
}

/* Animation Work End */