@keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

body {
    background-color: #000;
}

/* font */
.font-serif {
    font-family: "Playfair Display", sans-serif;
}

.font-sans {
    font-family: "SF UI Text", sans-serif;
}

/* heading */
.h0 {
    font-size: 7rem;
    line-height: 1.2;
}

.h00 {
    font-size: 5rem;
    line-height: 1.2;
}

.hx {
    font-size: 30rem;
    line-height: 0;
    font-weight: bold;
    -webkit-text-stroke: 2px rgb(41, 41, 41);
    text-stroke: 2px black;
}

/* commons */
.text-blue {
    color: #06c0f9;
}

.btn-main {
    background-color: #06c0f9;
    color: #000;
    border: 1.5px solid #06c0f9;
    padding: 0.8rem 3rem;
    border-radius: 50rem;
    font-size: 1.2rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-family: "SF UI Text", sans-serif;
}

.btn-main:hover {
    background-color: transparent;
    color: #06c0f9;
    border: 1.5px solid #06c0f9;
}

.btn-main-2 {
    background-color: #fff;
    color: #000;
    border: none;
    padding: 0.8rem 3rem;
    border-radius: 50rem;
    font-size: 1.2rem;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease; /* Added transform transition */
    font-family: "SF UI Text", sans-serif;
    position: relative; /* Added for positioning the pseudo-element */
}

.btn-main-2:hover {
    background-color: #06c0f9;
    color: #fff;
    transform: rotate(5deg);
}

.btn-main-3 {
    background-color: #06c0f9;
    color: #000;
    border: none;
    padding: 0.8rem 3rem;
    border-radius: 50rem;
    font-size: 1.2rem;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease; /* Added transform transition */
    font-family: "SF UI Text", sans-serif;
    position: relative; /* Added for positioning the pseudo-element */
}

.btn-main-3:hover {
    background-color: #fff;
    color: #000;
    transform: rotate(5deg);
}

.btn-main-2-outline {
    background-color: transparent;
    color: #fff;
    border: none;
    padding: 0px;
    font-size: 1.2rem;
    cursor: pointer;
    transition:  all 0.3s ease;
    font-family: "SF UI Text", sans-serif;
    position: relative;
}

.btn-main-2-outline:hover {
    background-color: transparent;
    color: #06c0f9;
    transform: rotate(5deg);
}

.form-main{
    border: 2px solid #C4C4C4;
    background-color: transparent;
    box-shadow: none;
    padding: 0.8rem 1.2rem ;
    color: #fff;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.btn-mini {
    background-color: transparent;
    color: #C4C4C4;
    border: 1.5px solid #C4C4C4;
    border-radius: 50rem;
    cursor: pointer;
    font-family: "SF UI Text", sans-serif;
}

.btn-mini:hover {
    background-color: transparent;
    color: #06c0f9;
    border: 1.5px solid #06c0f9;
    transform: all 0.3s ease;
}

.icon-link{
    background-color: #0c0c0d;
    border-radius: 50%;
    padding: 1.5rem;
}

.icon-link:hover{
    scale: 1.04;
}

.col-20 {
    width: 20%;
}
.col-40 {
    width: 40%;
}
.col-60 {
    width: 60%;
}
.col-80 {
    width: 80%;
}

/* spacing */

.mt-6 {
    margin-top: 4rem;
}
.mt-7 {
    margin-top: 5rem;
}
.mt-8 {
    margin-top: 6rem;
}
.mt-9 {
    margin-top: 8rem;
}
.mt-10 {
    margin-top: 10rem;
}

.px-6 {
    padding-left: 4rem;
    padding-right: 4rem;
}
.px-7 {
    padding-left: 5rem;
    padding-right: 5rem;
}
.px-8 {
    padding-left: 6rem;
    padding-right: 6rem;
}
.px-9 {
    padding-left: 8rem;
    padding-right: 8rem;
}
.px-10 {
    padding-left: 10rem;
    padding-right: 10rem;
}

.mtn-1 {
    margin-top: -1rem !important;
}
.mtn-2 {
    margin-top: -2rem !important;
}

.mtn-3 {
    margin-top: -3rem !important;
}

.mtn-4 {
    margin-top: -4rem !important;
}

.mtn-5 {
    margin-top: -5rem !important;
}

.mtn-6 {
    margin-top: -6rem !important;
}

@media (min-width: 1365px) and (max-width: 1560px) {
    .hx {
        font-size: 25rem;
    }
}

@media (min-width: 1024px) and (max-width: 1365px) {
    /* heading */
    .h0 {
        font-size: 5rem;
        line-height: 1.4;
    }

    .h00 {
        font-size: 5rem;
        line-height: 1.4;
    }
    .hx {
        font-size: 20rem;
    }
    .px-10 {
        padding-left: 5rem;
        padding-right: 5rem;
    }
}

@media (min-width: 768px) and (max-width: 1023px) {
    /* heading */
    .h0 {
        font-size: 5rem;
        line-height: 1.2;
    }

    .h00 {
        font-size: 6rem;
        line-height: 1.5;
    }
    .hx {
        font-size: 20rem;
    }
    .px-10 {
        padding-left: 2rem;
        padding-right: 2rem;
    }
}

@media (min-width: 479px) and (max-width: 767px) {
    /* heading */
    .h0 {
        font-size: 3rem;
        line-height: 2;
    }

    .h00 {
        font-size: 5rem;
        line-height: 1.2;
    }
    .px-10 {
        padding-left: 2rem;
        padding-right: 2rem;
    }
    .hx {
        font-size: 15rem;
    }
}

@media (min-width: 360px) and (max-width: 478px) {
    /* heading */
    .h0 {
        font-size: 3rem;
        line-height: 1.2;
    }

    .h00 {
        font-size: 5rem;
        line-height: 1;
    }
    .px-10 {
        padding-left: 2rem;
        padding-right: 2rem;
    }
    .hx {
        font-size: 15rem;
    }
    .mtn-3{
        margin-top: -1rem !important;
    }
    .mt-10{
        margin-top: 4rem;
    }
    .mtn-2{
        margin-top: -1rem !important;
    }
    .text-small{
        font-size: small;
        line-height: 0px !important;
    }
}
