* {
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
}

:root {
    --text-white: #F4F4F4;
    --text-dark: #1C1C1C
}

body {
    font-family: "Inter", sans-serif;
}

ol,
ul {
    list-style: none;
}

a {
    text-decoration: none;
}

button {
    cursor: pointer;
}

table {
    border-collapse: collapse;
}

img {
    height: auto;
    max-width: 100%;
}

.flex {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.text-white {
    color: var(--text-white);
}

.text-dark {
    color: var(--text-dark);
}

.position-relative {
    position: relative;
}

.position-absolute {
    position: absolute;
}

.fw-bold {
    font-weight: 700;
}

header {
    background-color: #00000029;
    border-bottom: 1px solid #474747;
    padding-block: clamp(16px, 1.667vw, 32px);
}

.banner {
    background-image: url(../Image/hero-banner-pic.png);
    background-repeat: no-repeat;
    background-size: cover;
    height: 950px;
    width: 100%;
    background-position: center;
}

.bg-white {
    background-color: #fff;
}

.text-center {
    text-align: center;
}

.cta-btn {
    padding: 16px 24px;
    border-radius: 4px;
    background-color: #2164F4;
    color: #fff;
    border: none;
    transition: all 0.2s ease-in;
}

.cta-btn:hover{
    background-color: #000;
}

.banner header {
    padding-left: clamp(16px, 7.5vw, 120px);
    backdrop-filter: blur(4px);
}

.hero-banner h1 {
    font-size: clamp(27px, 6vw, 75px);
    line-height: 90%;
    letter-spacing: -2px;
}

.banner .hero-banner {
    padding-top: clamp(20px, 3.5vw, 100px);
    padding-bottom: clamp(24px, 5.556vw, 160px);
    padding-inline: 16px;
}

.hero-banner p {
    font-size: clamp(16px, 1.8vw, 22px);
    line-height: 170%;
    margin-top: 16px;
}

.box {
    border-radius: 4px;
    padding: 16px;
    box-shadow: 0 0 16px 4px #282C3F12;
    bottom: clamp(16px, 5.556vw, 120px);
    width: 100%;
    max-width: clamp(200px, 58.125vw, 850px);
    margin: 0px auto;
    left: 50%;
    transform: translateX(-50%);
    justify-content: center;
}

.box .dropdown {
    flex: 1;
    max-width: 650px;
}

.box .dropdown.mr-2 {
    margin-right: 8px;
}

.box .dropdown.mr-3 {
    margin-right: 16px;
}

.dropdown select {
    width: 100%;
    padding: 16px;
    color: #636363;
    font-size: 16px;
    font-weight: 400;
    line-height: 150%;
    appearance: none;
    background-color: #fff;
    border: 1px solid #D1D1D1;
    border-radius: 4px;
}

.dropdown img {
    top: 16px;
    right: 16px;
    pointer-events: none;
}

.box button {
    font-size: 16px;
    line-height: 150%;

}

.about {
    padding-block: clamp(24px, 5.556vw, 120px);
}

.about h2 {
    font-size: clamp(24px, 3.194vw, 60px);
    letter-spacing: -0.03em;
    line-height: 122%;
}

.about .container {
    max-width: clamp(700px, 56.111vw, 900px);
    margin: 0px auto;
    padding-inline: 16px;
}

.about .container p {
    font-size: 18px;
    line-height: 155%;
    margin-top: 16px;
}

footer {
    background-color: #0A1E49;
    padding: clamp(24px, 5.556vw, 100px) 16px clamp(24px, 12.778vw, 100px);

}

footer .container img {
    display: block;
    margin: 0px auto;
}

footer .flex {
    margin-top: 16px;
    justify-content: center;
    gap: 24px;
}

footer a {
    line-height: 155%;
    font-size: 18px;
}

footer span {
    color: #8D8D8D;
    line-height: 143%;
    font-size: 14px;
    display: block;
    margin-top: clamp(16px, 2.222vw, 44px);
}

.head-content .job-actions{
    max-width: 145px;
    margin-top: 24px !important;
    gap: 16px !important;
}

.head-content .btn-secondary{
    padding: 12px 30px;
    border: 2px solid #2164F4 !important;
    font-size: 16px;
}
.head-content a.cta-btn{
    padding: 13px 50px;
}
/* .head-content a.cta-btn{

} */
@media (max-width: 1400px) {
    .box .dropdown {
        flex: 0 0 35%;
        max-width: 35%;
    }

    .box {
        justify-content: space-between;
    }

    .banner {
        height: 100vh;
    }
}

@media (max-width: 992px) {
    .box {
        gap: 16px;
    }

    .box .dropdown {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .box {
        max-width: 90%;
        margin: 0px auto;
    }
}

@media (max-width: 768px) {
    .banner {
        height: 70vh;
    }
}



@media (max-width: 375px) {
    footer .flex {
        flex-direction: column;
    }

    footer .container img {
        margin: 0px;
    }

    footer span {
        text-align: left !important;
    }

}