/*========================= fonts ===========================*/
@font-face {
    font-family: "SF-Pro-Display";
    src: url("../fonts/SF-Pro-Display-Black.ttf");
    font-weight: 900;
    font-display: swap;
}

@font-face {
    font-family: "SF-Pro-Display";
    src: url("../fonts/SF-Pro-Display-Heavy.ttf");
    font-weight: 800;
    font-display: swap;
}

@font-face {
    font-family: "SF-Pro-Display";
    src: url("../fonts/SF-Pro-Display-Bold.ttf");
    font-weight: 700;
    font-display: swap;
}

@font-face {
    font-family: "SF-Pro-Display";
    src: url("../fonts/SF-Pro-Display-Semibold.ttf");
    font-weight: 600;
    font-display: swap;
}

@font-face {
    font-family: "SF-Pro-Display";
    src: url("../fonts/SF-Pro-Display-Medium.ttf");
    font-weight: 500;
    font-display: swap;
}

@font-face {
    font-family: "SF-Pro-Display";
    src: url("../fonts/SF-Pro-Display-Regular.ttf");
    font-weight: 400;
    font-display: swap;
}

@font-face {
    font-family: "SF-Pro-Display";
    src: url("../fonts/SF-Pro-Display-Light.ttf");
    font-weight: 300;
    font-display: swap;
}

@font-face {
    font-family: "SF-Pro-Display";
    src: url("../fonts/SF-Pro-Display-Thin.ttf");
    font-weight: 200;
    font-display: swap;
}


/*========================== Basic css ============================*/
html {
    font-size: 0.4vw;
}

:root {
    scroll-behavior: unset;

    /* color */
    --white: #FFF;
    --black: #000;
}

html,
body,
header,
footer,
main,
nav,
section,
div,
menu,
span,
h1,
h2,
h3,
h4,
h5,
h6,
p,
a,
strong,
i,
ol,
ul,
li,
form,
label,
button {
    margin: 0;
    padding: 0;
}

ol,
ul {
    list-style: none;
}

button:focus,
a:focus,
input:focus,
textarea:focus,
select:focus {
    outline: none;
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.2s all ease;
    -webkit-transition: 0.2s all ease;
    -moz-transition: 0.2s all ease;
}

a:visited,
a:hover,
a:active {
    text-decoration: none;
}

img {
    max-width: 100%;
}

/* body */
body {
    font-family: "SF-Pro-Display";
    font-size: 1.6rem;
    font-weight: 400;
    background: var(--white);
    color: var(--black);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "SF-Pro-Display";
}

/* backt to top */
.scrolltop_btn {
    width: 4rem;
    height: 4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: fixed;
    right: 3rem;
    bottom: 3rem;
    z-index: 100;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.scrolltop_btn img {
    width: 4rem;
}

.scrolltop_btn.show {
    opacity: 1;
    visibility: visible;
}

.container-fluid {
    padding-left: 3rem;
    padding-right: 3rem;
}


/*====================== header_section start ========================*/
.header_section {
    width: 100%;
    display: block;
    padding: 3.5rem 0rem;
    position: absolute;
    top: 0;
    z-index: 1024;
}

.navbar {
    align-items: start;
    padding-left: 3rem!important;
}

.navbar-brand img {
    width: 16rem;
}

.navbar-nav {
    gap: 9rem;
    padding-top: 2rem;
}

.navbar-nav li a {
    font-size: 1.9rem;
    font-weight: 700;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 0.4rem;
    transition: 0.2s all ease;
}

.navbar-nav li a:hover {
    opacity: 0.85;
}


/* navbar-toggler */
.navbar-toggler {
    background: transparent;
    border: none;
    outline: none;
    box-shadow: none;
    padding: 0rem;
    transition: 0.2s all ease;
}

.navbar-toggler img {
    width: 5.5rem;
}

.navbar-toggler:hover {
    opacity: 0.85;
}


/* offcanvas menu */
.offcanvas-start {
    width: 100%!important;
    background: var(--black);
    height: 100vh;
    display: flex;
    flex-direction: column;
    overflow: auto;
}

.offcanvas-header {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 3.5rem 0rem;
}

.offcanvas-header img {
    max-width: 12rem;
}

.offcanvas-body .navbar-nav {
    gap: 0rem;
}

.close_btn {
    background: transparent;
    border: none;
    outline: none;
    box-shadow: none;
    padding: 0rem;
    transition: 0.2s all ease;
}

.close_btn:hover {
    opacity: 0.85;
}

.close_btn img {
    max-width: 4rem;
}

.offcanvas-body .navbar-nav a {
    font-size: 3rem;
    width: 100%;
    display: block;
    padding: 3rem 0rem;
    border-bottom: 1px solid #aaa;
    transition: 0.2s all ease;
}

.offcanvas-body .navbar-nav a:hover {
    padding-left: 1.5rem;
}


/*================= hero_section start ===================*/
.hero_section {
    position: relative;
}

.hero_section video {
    width: 100%;
    height: 100vh;
    object-fit: cover; 
    vertical-align: middle;
}

.hero_content {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    background: rgba(0, 0, 0, 0.2);
    padding: 2rem 0rem;
    position: absolute;
    inset: 0;
}

.hero_content .container {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.hero_text {
    width: 100%;
    text-align: center;
    margin: auto;
}

.hero_text h4 {
    font-size: 5.6rem;
    font-weight: 900;
    line-height: 1;
    color: var(--white);
}

.hero_text h2 {
    font-size: 15rem;
    font-weight: 700;
    line-height: 0.9;
    color: var(--white);
    margin: 6.5rem 0rem 2rem;
}

.hero_button {
    background: #FF007E;
    border-radius: 1.1rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 1.8rem;
}

.hero_button p {
    font-size: 3.6rem;
    font-weight: 400;
    color: var(--white);
    padding-left: 1.6rem;
}

.hero_button a {
    font-size: 3.6rem;
    font-weight: 400;
    color: #4D4D4D;
    background: var(--white);
    display: inline-block;
    padding: 0.5rem 2rem;
    border-radius: 1.1rem;
    transition: 0.2s all ease;
}

.hero_button a:hover {
    opacity: 0.85;
}

.scrolldown_btn a {
    display: inline-block;
    animation: moveDown 1.5s infinite;
}

.scrolldown_btn img {
    width: 4rem;
}

@keyframes moveDown {
    0% { 
        transform: translateY(0); 
        opacity: 1; 
    }

    50% { 
        transform: translateY(2rem); 
        opacity: 0.5; 
    }

    100% { 
        transform: translateY(0); 
        opacity: 1; 
    }
}

/*==================== section-2 start ======================*/
.section-2_title {
    background: #FF007E;
    padding: 5rem 0rem;
}

.section-2_title h3 {
    font-size: 8.1rem;
    font-weight: 900;
    color: var(--white);
    line-height: 0.9;
}

.section-2_title h3 span {
    color: #FFCDE6;
}

.section2_wrapper {
    background: var(--white);
    padding-top: 17.5rem;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 10.5rem;
}

.sec2_card {
    background: #F5F5F5;
    padding: 0rem 8rem 13rem;
    text-align: center;
    border-radius: 2.5rem;
}

.sec2_card img {
    width: 15.1rem;
    display: block;
    margin: 0 auto;
    margin-top: -4rem;
}

.sec2_card h4 {
    font-size: 4.6rem;
    font-weight: 900;
    color: #262626;
    line-height: 1;
    text-align: center;
    margin: 5rem 0rem 2rem;
}

.sec2_card p {
    font-size: 2.7rem;
    font-weight: 400;
    color: #4D4D4D;
    text-align: center;
}

/*=================== section-3 start =====================*/
.section-3 {
    background: #262626;
    margin-top: -1.5rem;
    position: relative;
    z-index: 9;
}

.sec3_left img {
    width: 100%;
}

.sec3_right {
    max-width: 125rem;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 10rem 14rem;
}

.sec3_right h4 {
    font-size: 4.3rem;
    font-weight: 400;
    color: var(--white);
    line-height: 1.1;
    padding-bottom: 2rem;
}

.sec3_right h4 strong {
    font-weight: 900;
}
 
.sec3_right ul li {
    font-size: 2.6rem;
    font-weight: 400;
    color: #BFBFBF;
    line-height: 1.3;
    margin-top: 3rem;
    position: relative;
    padding-left: 3rem;
}

.sec3_right ul li::before {
    content: "";
    width: 1.2rem;
    height: 1.2rem;
    display: block;
    background: #FF007E;
    border-radius: 50%;
    position: absolute;
    left: 0;
    top: 1rem;
}

/*=================== contact_section start =====================*/
.contact_section {
    background: var(--black);
    padding: 13.8rem 0rem 10rem;
}

.contact_text h4 {
    font-size: 5rem;
    font-weight: 200;
    color: #D9D9D9;
}

.contact_text p {
    font-size: 2.2rem;
    font-weight: 500;
    color: #D9D9D9;
    line-height: 1.4;
    max-width: 37rem;
    width: 100%;
    padding: 4rem 0rem 8rem;
    position: relative;
}

.contact_text p::after {
    content: "";
    width: 24rem;
    height: 0.2rem;
    background: var(--white);
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
}

.contact_text h3 {
    font-size: 6.4rem;
    font-weight: 900;
    color: var(--white);
    line-height: 0.9;
    margin-top: 8rem;
}

.contact_text h3 span {
    color: #FF007E;
}

.contact_box {
    background: #1A1A1A;
    padding: 5.5rem 5.5rem;
    border-radius: 3rem;
}

.contact_box .row {
    --bs-gutter-x: 3rem;
    --bs-gutter-y: 3rem;
}

.contact_item label {
    font-size: 2rem;
    font-weight: 400;
    color: #D9D9D9;
    display: block;
    margin-bottom: 1rem;
}

.contact_item input,
.contact_item textarea {
    font-size: 2rem;
    font-weight: 400;
    color: var(--white);
    display: block;
    width: 100%;
    height: 7rem;
    background: #343434;
    padding: 0.5rem 1.5rem;
    border-radius: 1rem;
    border: none;
    outline: none;
}

.contact_item textarea {
    font-size: 2rem;
    font-weight: 400;
    color: var(--white);
    display: block;
    width: 100%;
    height: 18rem;
    background: #343434;
    padding: 1rem 1.5rem;
    border-radius: 1rem;
    border: none;
    outline: none;
    resize: none;
}

.contact_item input::placeholder,
.contact_item textarea::placeholder {
    color: #D9D9D9;
}

.contact_btn button {
    font-size: 2.6rem;
    font-weight: 400;
    color: #4D4D4D;
    background: var(--white);
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 1rem;
    border: none;
    outline: none;
    cursor: pointer;
    transition: 0.2s all ease;
}

.contact_btn button:hover {
    background: #FF007E;
    color: var(--white);
}


/*================ footer_section start ==================*/
.footer_section {
    background: var(--white);
    padding: 5.6rem 0rem;
}

.footer_text p {
    font-size: 1.8rem;
    font-weight: 400;
    color: #262626;
    text-align: center;
}