*{
    box-sizing:border-box;
}

html,
body{

    overflow-x:hidden;

}

/*====================================
ABOUT HERO
====================================*/

.about-hero{

    position:relative;

    width:100%;

    height:100vh;

    overflow:hidden;

}

.about-hero-image{

    position:absolute;

    inset:0;

    width:100%;
    height:100%;

    object-fit:cover;

}

.about-overlay{

    position:absolute;

    inset:0;

    background:rgba(0,0,0,.42);

}

.about-hero .container{

    position:relative;

    height:100%;

    z-index:2;

}

.about-hero-content{

    position:absolute;

    left:0;
    right:0;
    bottom:55px;

    display:flex;

    justify-content:space-between;

    align-items:flex-end;

}

.about-hero-content h1{

    font-family:"Monument", sans-serif;

    font-size:48px;

    font-weight:400;

    color:#fff;

    letter-spacing:1px;

}

.about-scroll{

    display:flex;

    justify-content:center;

    align-items:center;

    animation:aboutBounce 2s infinite;

}

.about-scroll svg{

    width:56px;

    height:56px;

    transition:.3s;

}

.about-scroll:hover{

    transform:translateY(6px);

}

@keyframes aboutBounce{

    0%,20%,50%,80%,100%{

        transform:translateY(0);

    }

    40%{

        transform:translateY(8px);

    }

    60%{

        transform:translateY(4px);

    }

}

/*====================================
TABLET
====================================*/

@media(max-width:991px){

.about-hero-content h1{

    font-size:34px;

}

.about-scroll svg{

    width:46px;
    height:46px;

}

}

/*====================================
MOBILE
====================================*/

@media(max-width:768px){

.about-hero{

    height:100vh;

    min-height:650px;

}

.about-hero-content{

    bottom:120px;

}

.about-hero-content h1{

    font-size:22px;

}

.about-scroll svg{

    width:36px;

    height:36px;

}

}







/* ---------- Our Culture ---------- */
.culture-section {
    background-color: #ffffff;
    padding: 60px 0 40px;
}

.section-title {
    font-family:"Monument", sans-serif;
    font-weight: 400;
    font-size: 40px;
    margin: 0 0 16px;
    letter-spacing: 0.5px;
    color: #000000;
}

.section-text {
    font-family:"DM Sans", sans-serif;
    font-size: 21px;
   /* line-height: 1.6; */
    color: #000000;
    margin-bottom: 0;
}

/* ---------- Join Our Team ---------- */
.join-team-section {
    font-family:"Monument", sans-serif;
    background-color: #ffffff;
    padding: 40px 0 60px;
    font-weight: 400;
}

.join-team-form {
    font-family:"DM Sans", sans-serif;
    margin-top: 24px;
    max-width: 1346px;
}

.join-team-form .row {
    --bs-gutter-x: 10px;
    --bs-gutter-y: 10px;
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 8px;
}

.form-control {
    width: 100%;
    height: 50px;
    padding: 12px 14px;
    font-size: 14px;
    border: 1px solid #d5d5d5;
    border-radius: 4px;
    background-color: #ffffff;
}

#message.form-control {
    height: 140px;
    width: 100%;
}

.form-control::placeholder {
    color: #9a9a9a;
}

.form-control:focus {
    outline: none;
    border-color: #4db8ff;
    box-shadow: 0 0 0 2px rgba(77, 184, 255, 0.15);
}

textarea.form-control {
    resize: vertical;
}

/* ---------- File upload ---------- */
.file-upload-wrapper {
    position: relative;
}

.file-upload-input {
    position: absolute;
    inset: 0;
    opacity: 0;
    cursor: pointer;
    width: 100%;
    height: 100%;
}

.file-upload-label {
    display: flex;
    align-items: center;
    gap: 8px;
    width: 100%;
    height: 50px;
    padding: 12px 14px;
    font-size: 14px;
    color: #9a9a9a;
    border: 1px solid #d5d5d5;
    border-radius: 4px;
    background-color: #ffffff;
    cursor: pointer;
    margin: 0;
}

.folder-icon {
    flex-shrink: 0;
    color: #9a9a9a;
}

/* ---------- Button ---------- */
.btn-get-in-touch {
    background-color: #7fc242;
    color: #ffffff;
    border: none;
    padding: 14px 36px;
    font-weight: 700;
    font-size: 15px;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.btn-get-in-touch:hover {
    background-color: #6fae37;
}

/* ---------- Tablet responsive ---------- */
@media (min-width: 768px) and (max-width: 1023px) {
    .container {
        padding-left: 30px;
        padding-right: 30px;
    }

    .culture-section {
        padding: 50px 0 35px;
    }

    .join-team-section {
        padding: 35px 0 50px;
    }

    .section-title {
        font-size: 32px;
    }

    .section-text {
        font-size: 18px;
    }

    .join-team-form {
        max-width: 100%;
    }

    .form-control,
    .file-upload-label {
        height: 52px;
    }

    #message.form-control {
        height: 130px;
        width: 100%;
    }
}

/* ---------- Mobile responsive ---------- */
@media (max-width: 767px) {
    .container {
        padding-left: 20px;
        padding-right: 20px;
    }

    .culture-section {
        padding: 40px 0 30px;
    }

    .join-team-section {
        padding: 30px 0 40px;
    }

    .section-title {
        font-size: 24px;
    }

    .section-text {
        font-size: 14px;
    }

    .join-team-form {
        max-width: 100%;
    }

    .form-control,
    .file-upload-label {
        height: 48px;
    }

    #message.form-control {
        height: 120px;
        width: 100%;
    }

    .btn-get-in-touch {
        width: 100%;
    }
}




