@font-face {
    font-family: "Recoleta_Medium";
    font-weight: 500;
    src: url("/assets/fonts/Recoleta/Recoleta_Medium.otf") format("opentype");
}

@font-face {
    font-family: "Recoleta_SemiBold";
    font-weight: 600;
    src: url("/assets/fonts/Recoleta/Recoleta_SemiBold.otf") format("opentype");
}

@font-face {
    font-family: "Recoleta_Bold";
    font-weight: 700;
    src: url("/assets/fonts/Recoleta/Recoleta_Bold.otf") format("opentype");
}

@font-face {
    font-family: "Cerapro_bold";
    font-weight: 700;
    src: url("/assets/fonts/CeraPro/Cerapro_Bold.otf") format("opentype");
}

@font-face {
    font-family: "Cerapro_Medium";
    font-weight: 500;
    src: url("/assets/fonts/CeraPro/Cerapro_Medium.otf") format("opentype");
}

/* =================================================================================== */
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body{
    background-color: #0d0b17;
    position: relative;
}
main {
    position: relative;
    z-index: 1;
}
/* Global Fonts */
.container{
    padding-left: 10px !important;
    padding-right: 10px !important;
}

h1 {
    font-family: "Recoleta_SemiBold";
    font-weight: 600;
    font-size: 80px;
    letter-spacing: 5%;
    text-transform: capitalize;
}

h2 {
    font-family: "Recoleta_SemiBold";
    font-weight: 600;
    font-size: 80px;
    letter-spacing: 0%;
    text-align: center;
}

h3 {
    font-family: "Recoleta_Bold";
    font-weight: 700;
    font-size: 40px;
    letter-spacing: 0%;
    text-transform: capitalize;
    background: linear-gradient(260.1deg, #FE218B 1.13%, #9366C3 50%, #21B0FE 98.87%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: block;
    text-align: center;
    margin: 0 auto;
}

h4 {
    font-family: "Cerapro_bold", sans-serif;
    font-weight: 700;
    font-size: 20px;
    line-height: 20px;
    letter-spacing: 0%;
    margin-bottom: 20px;
}

h5 {
    font-family: "Recoleta_SemiBold";
    font-weight: 600;
    font-size: 60px;
    line-height: 100%;
    letter-spacing: 5%;
    text-align: center;
    text-transform: capitalize;
}

h6 {
    font-family:"Cerapro_Medium", sans-serif;
    font-weight: 500;
    font-size: 24px;
    line-height: 34px;
    letter-spacing: 0%;
    text-transform: capitalize;
    text-align: center;
    margin: 0 auto;
    padding-bottom: 26px;
}

/* ==================================================================================== */
/* Fonts Media Quires start */

@media (max-width: 1199px) {
    h2 {
        font-size: 50px !important;
    }
    h1{
        font-size: 70px;
    }
}

@media (max-width: 991px) {
    h3 {
        font-size: 26px !important;
    }
    h6{
        font-size: 16px !important;
        line-height: 25px;
    }
    .social-icons , .progress-nav{
        display: none !important;
    }

}

@media (max-width: 767px) {
    h2 {
        font-size: 40px !important;
    }
}

@media (max-width: 575px) {
    h2 {
        font-size: 30px !important;
    }
}

/* Fonts Media Quires End */
/* ================================================================================== */



/* Gradient Border Button */
.Primary-btn {
    display: inline-block;
    padding: 12px 24px;
    font-size: 1rem;
    font-weight: bold;
    color: white;
    text-decoration: none;
    border-radius: 50px;
    background: transparent;
    position: relative;
    transition: all 0.3s ease-in-out;
    z-index: 1;
}

.Primary-btn::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 50px;
    padding: 3px;
    background: linear-gradient(260.1deg, #FE218B 1.13%, #9366C3 50%, #21B0FE 98.87%);
    -webkit-mask:
        linear-gradient(white, white) content-box,
        linear-gradient(white, white);
    -webkit-mask-composite: destination-out;
    mask-composite: exclude;
    z-index: -1;
}