:root {
    --blue: #000032;
    --heading-two: 50px;
    --sub-heading: 25px;
    --text: 18px;
    --button-text: 14px;
    --heading-one: 75px;
    --mobile-heading-one: 50px;
    --mobile-text: 12px;
    --mobile-button-text: 14px;
    --mobile-heading-two: 35px;
    --mobile-sub-heading: 22px;
    --mobile-text: 14px;
    --padding: 4rem;
    --seven-hundred-padding: 2rem;
    --five-hundred-padding: 1rem;
    --hero-image-gradient: linear-gradient(to right, #ffffff, #ffffff00 5%),
        linear-gradient(to top, #ffffff, #ffffff00 5%),
        linear-gradient(to bottom, #ffffff, #ffffff00 5%);
}
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
    font-family: 'Montserrat', sans-serif !important;
}
button {
    padding: 0.5rem 1rem;
    border-radius: 0.25rem;
    cursor: pointer;
    border: 2px solid var(--blue);
    font-size: var(--button-text);
    font-weight: 700;
}
ul {
    list-style: none;
}
a {
    text-decoration: none;
    color: black;
}
header,
section,
main,
footer {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.wrapper {
    width: 100%;
    max-width: 1512px;
    padding: 6rem 4rem;
}

p {
    line-height: 1.5;
}

/********** Header **********/
header {
    position: fixed;
    background-color: #ffffff80;
    z-index: 1000;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}
.header-wrapper {
    width: 100%;
    max-width: 1512px;
    padding: 1rem 4rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.header-wrapper .menu {
    width: 50px;
    display: none;
}
nav ul {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 2rem;
}
.header-wrapper button {
    font-size: var(--button-text);
    padding-inline: 1rem;
    background-color: var(--blue);
    color: white;
}
.logo-container img {
    width: 125px;
}
nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
}
@media (max-width: 1150px) {
    nav {
        display: none;
    }
    .header-wrapper .menu {
        display: block;
        cursor: pointer;
    }
}
@media (max-width: 700px) {
    .header-wrapper {
        padding-inline: 2rem;
    }
}
@media (max-width: 500px) {
    .header-wrapper {
        padding-inline: 1rem;
    }
}
/**************** Hero ********/
/**************** Hero ********/
/**************** Hero ********/
/*************** Hero **************/
main {
    background-image: linear-gradient(to top, #ffffff, #ffffff00 80%),
        linear-gradient(to right, #ffffff, #ffffff00 80%),
        url(../halo-website-new/iStock-1203192990.png);
    background-size: cover;
    background-repeat: no-repeat;
}
main .wrapper {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
    padding-block: 12rem;
    gap: 1rem;
}
h1 {
    font-size: 5rem;
}
main .wrapper p:nth-child(1) {
    letter-spacing: 1.25rem;
}
main .wrapper p:nth-of-type(2) {
    max-width: 60ch;
    font-weight: 400;
    line-height: 1.5;
    font-size: var(--text) !important;
}
.main-button-container {
    margin-top: 1rem;
}
.main-button-container button {
    padding-inline: 4rem;
    background-color: var(--blue);
    color: white;
}
.main-button-container a:nth-of-type(2) button {
    background-color: transparent;
    color: var(--blue);
}
@media (max-width: 1000px) {
    main h1 {
        font-size: 65px;
    }
    main {
        background-size: max(100%, 600px);
        background-image: linear-gradient(to top, #ffffff, #ffffff00 80%),
            linear-gradient(to right, #ffffff, #ffffff00 80%),
            url(../halo-website-new/iStock-1203192990.png);
    }
}
@media (max-width: 885px) {
    main {
        background-image: linear-gradient(to top, #ffffff, #ffffff00 50%),
            linear-gradient(to right, #ffffff, #ffffff00 50%),
            url(../halo-website-new/iStock-1203192990.png);
    }
    main .wrapper {
        padding-top: 70%;
        padding-bottom: 0rem;
    }

    main .wrapper h1 {
        width: 100% !important;
    }
    main .wrapper p:nth-of-type(2) {
        width: 75% !important;
    }
}
@media (max-width: 700px) {
    main .wrapper {
        padding-inline: 2rem;
    }
}
@media (max-width: 681px) {
    main .wrapper p:nth-of-type(1) {
        font-size: 15px;
        letter-spacing: 0.75rem;
    }
}
@media (max-width: 636px) {
    main .wrapper h1 {
        font-size: 55px;
    }
}
@media (max-width: 582px) {
    main .wrapper {
        padding-top: 26rem;
        padding-bottom: 6rem !important;
    }
    .tag {
        letter-spacing: 0.4rem !important;
    }
    main .wrapper p:nth-of-type(2) {
        width: 100% !important;
    }
}
@media (max-width: 555px) {
    h1 {
        font-size: var(--mobile-heading-one) !important;
    }
    .main-button-container {
        display: flex;
        flex-direction: column;
        width: 100%;
        gap: 1rem;
    }
    .main-button-container a {
        width: 100%;
    }
    .main-button-container button {
        width: 100%;
    }
}
@media (max-width: 516px) {
    main .wrapper {
        padding-inline: 1rem;
    }

    main .wrapper p {
        font-size: var(--mobile-text);
    }
}
@media (max-width: 450px) {
    main {
        background-position-x: -8rem;
    }
    .tag {
        letter-spacing: 0.25rem !important;
    }
}
@media (max-width: 440px) {
    main {
        background-position-x: -10rem;
    }
    h1 {
        font-size: 40px !important;
    }
    main .wrapper p:nth-of-type(1) {
        letter-spacing: 0.5rem;
    }
}
@media (max-width: 341px) {
    main .wrapper p:nth-of-type(1) {
        font-size: 12px;
    }
}
@media (max-width: 318px) {
    main .wrapper p:nth-of-type(1) {
        font-size: 10px;
    }
}
@media (max-width: 300px) {
    h1 {
        font-size: 35px !important;
    }
}
@media (max-width: 290px) {
    main .wrapper p:nth-of-type(1) {
        font-size: 8px;
    }
}
/* *********** Second Section ********
.second-section {
    background-image: linear-gradient(to right, #ffffff, #ffffff00 50%),
        linear-gradient(to top, #ffffff, #ffffff00 50%),
        linear-gradient(to bottom, #ffffff, #ffffff00 50%),
        url(../halo-png/gsy-halo.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.second-section h2 {
    font-size: var(--heading-two);
}

.second-section .wrapper {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: flex-start;
}
.second-section p:nth-child(1n) {
    font-size: var(--sub-heading);
    font-weight: 700;
    font-family: 'roboto';
    width: 100%;
    max-width: 60ch;
}
.second-section p:nth-child(2n) {
    font-size: var(--text);
    font-weight: 400;
    font-family: 'roboto';
    width: 100%;
    max-width: 60ch;
}

.second-section button {
    background-color: var(--blue);
    color: white;
    margin-top: 1rem;
}
.list-main {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    align-items: center;
    gap: 2rem;
    margin-top: 2rem;
    width: 100%;
}
.list-main .list-one {
    background-color: #ffffff9e;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    padding: 2rem;
    width: 100%;
    border-radius: 24px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 0.5rem;
    height: 100%;
}
.button {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: flex-end;
}


@media (max-width: 1050px) {
    .second-section .wrapper {
        padding-inline: 4rem;
    }
    .second-section .wrapper {
        background-image: linear-gradient(to right, #ffffff, #ffffff00 50%),
            linear-gradient(to top, #ffffff, #ffffff00 50%),
            linear-gradient(to bottom, #ffffff, #ffffff00 50%),
            url(../halo-png/boris.png);
        background-size: cover;
        background-position: center;

        background-repeat: no-repeat;
    }
}
@media (max-width: 700px) {
    .second-section .wrapper {
        padding-inline: 2rem;
    }
}
@media (max-width: 500px) {
    .second-section .wrapper {
        padding-inline: 1rem;
    }
    .second-section h2 {
        font-size: var(--mobile-heading-two);
    }
    .second-section .wrapper > p:nth-of-type(2) {
        font-size: var(--mobile-sub-heading);
    }

    .list-main p:nth-of-type(1) {
        font-size: var(--mobile-sub-heading);
    }
    .list-main p:nth-of-type(2) {
        font-size: var(--mobile-text);
    }
}
@media (max-width: 404px) {
    .list-main {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}
*/

/************ Third Section *********/
.third-section {
    background-image: linear-gradient(to right, #ffffff, #ffffff00 70%),
        linear-gradient(to top, #ffffff, #ffffff00 50%),
        linear-gradient(to bottom, #ffffff, #ffffff00 50%),
        url(../halo-png/halo-png-two/mayur-gala-2PODhmrvLik-unsplash.jpg);
    background-position: center;
    background-size: cover;
    background-position: center;
}

.third-section .wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    padding-block: 4rem !important;
}

.third-section h2 {
    font-size: var(--heading-two);
}

.third-section .wrapper {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: flex-start;
}
.third-section p {
    font-size: var(--text);
    font-weight: 400;
    font-family: 'roboto';
    width: 100%;
    max-width: 60ch;
}
.third-section p:nth-of-type(1) {
    font-size: var(--sub-heading);
    line-height: 1.25;
    font-weight: 500;
}
.third-section button {
    background-color: var(--blue);
    color: white;
    margin-top: 1rem;
}
/****/
.third-section .wrapper {
    padding-block: 17rem;
}
.third-right {
    width: 50%;
}
@media (max-width: 1050px) {
    .third-section {
        background-image: linear-gradient(to right, #ffffff, #ffffff00 70%),
            linear-gradient(to top, #ffffff, #ffffff00 50%),
            linear-gradient(to bottom, #ffffff, #ffffff00 50%),
            url(../halo-png/halo-png-two/mayur-gala-2PODhmrvLik-unsplash.jpg);
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
    }

    .third-section .wrapper {
        padding-inline: 4rem;
    }
    .third-section .wrapper {
        padding-block: 10rem;
    }
    .third-section .wrapper {
        width: 100%;
    }
}
@media (max-width: 800px) {
    .third-section .wrapper {
        padding-top: 4rem !important;
    }
}
@media (max-width: 700px) {
    .third-section .wrapper {
        padding-inline: 2rem;
    }
}
@media (max-width: 582px) {
    .third-section .wrapper {
        padding-block: 6rem !important;
        padding-top: 2rem !important;
    }
}
@media (max-width: 500px) {
    .third-section .wrapper {
        padding-inline: 1rem;
    }
    .third-section h2 {
        font-size: var(--mobile-heading-two);
    }
    .third-section .wrapper p:nth-of-type(1) {
        font-size: var(--mobile-sub-heading);
    }
    .third-section p {
        font-size: var(--mobile-text);
        font-weight: 400;
        font-family: 'roboto';
    }
}
/******************/
/********************************************/
.latest-news-section {
    background-color: var(--blue);
    color: white;
}
.latest-news-section .wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4rem;
    text-align: center;
}
.latest-news-section h2 {
    font-size: var(--heading-two);
}
.news-titles {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}
.news-titles p {
    font-size: var(--sub-heading);
}
.meet-team-grid {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr 1fr 1fr;
    row-gap: 4rem;
    width: 100%;
}
.team-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.team-item img {
    width: 100%;
    object-fit: cover;
    /* border-radius:24px; */
    aspect-ratio: 4/4;
    border-radius: 24px;
}
.team-item p:nth-of-type(1) {
    font-size: var(--sub-heading);
    font-weight: 700;
    margin-block-start: 1rem;
}
.team-item p:nth-of-type(2) {
    font-size: var(--text);
    font-weight: 400;
    text-align: left;
    line-height: 1.5;
    margin-block: 0.15rem 1rem;
}

@media (max-width: 1000px) {
    .meet-team-grid {
        grid-template-columns: 1fr;
    }
}
@media (max-width: 750px) {
    .meet-team-grid {
        grid-template-columns: 1fr;
    }
    .team-item:nth-child(3) {
        grid-column: span 1;
    }
    .team-item {
        width: 100%;
    }
    .team-item img {
        width: 100%;
    }
}
@media (max-width: 700px) {
    .latest-news-section .wrapper {
        padding-inline: 2rem;
    }
}
@media (max-width: 500px) {
    .latest-news-section h2 {
        font-size: var(--mobile-heading-two);
    }
    .news-titles p {
        font-size: var(--mobile-sub-heading);
    }
    .latest-news-section .wrapper {
        padding-inline: 1rem;
    }
}
/**********************/

/**********************/
footer img {
    width: 40px;
}
footer .wrapper {
    padding-bottom: 2rem;
}

footer a:nth-child(2) img {
    width: 30px;
}
.footer-left > a img {
    width: 150px;
}
.footer-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 4rem;
}
.footer-left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4rem;
}
.socials {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}
.address p:nth-child(1) {
    font-weight: 700;
}
.contact > p {
    font-weight: 700;
}
.footer-right ul {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 2rem;
}
.footer-right {
    align-self: flex-end;
    display: flex;
    flex-direction: column-reverse;
    gap: 4rem;
}
.iwd img {
    width: 100px;
}
.iwd p {
    width: 100%;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI',
        Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue',
        sans-serif;
}
footer .wrapper {
    display: flex;
    flex-direction: column;
}
.footer-bottom {
    width: 100%;
    display: flex;
    align-items: center;
    padding-top: 4rem;
    justify-content: space-between;
    gap: 2rem;
    font-weight: 200;
}
.policys {
    display: flex;
    align-items: flex-end;
    gap: 2rem;
    align-self: flex-end;
    text-align: center;
}
@media (max-width: 1050px) {
    .footer-top {
        flex-direction: column;
        gap: 4rem;
    }
    .footer-left,
    .footer-right {
        width: 100%;
        align-items: center;
        text-align: center;
    }
    .footer-right ul {
        align-items: center;
        text-align: center;
    }
    .footer-bottom {
        justify-content: center;
        flex-direction: column;
    }
    .address p {
        font-size: var(--mobile-text);
    }
    .contact p {
        font-size: var(--mobile-text);
    }
    .policys {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        width: 100%;
        text-align: center;
    }
}

/********************/
/******************* Watermarks **********************/

.watermark {
    position: absolute;
    font-weight: 900 !important;
    font-size: 150px !important;
    opacity: 0.05;
}

.second-left {
    position: relative;
    padding-top: 2rem;
}
.second-section .watermark {
    top: -18% !important;
    left: 0% !important;
    z-index: -1;
}
@media (max-width: 436px) {
    .second-section .watermark {
        top: -14% !important;
    }
}
.third-section {
    position: relative;
    padding-top: 2rem;
}
.third-section .watermark {
    top: 25%;
}
.news-titles {
    position: relative;
    z-index: 1;
    padding-top: 1rem;
}
.news-titles .watermark {
    top: -15%;
    line-height: 1;
    opacity: 1;
    color: #010154;
    z-index: -1 !important;
}
/******* Dropdown *****/
/***********************/
.dropdown {
    position: relative !important;
    display: none;
    z-index: 10000 !important;
}
.dropdown-menu {
    position: absolute;
    right: 0;
    top: calc(100% + 0.5rem);
    padding: 1.5rem;
    padding-block: 1.5rem !important;
    background-color: white;
    box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.1);
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: max-content;
    opacity: 0;
    transform: translateY(-1rem);
    transition: opacity 0.5s, transform 0.5s;
    pointer-events: none;
    gap: 1rem;
}

.menu-drop {
    position: absolute;
}
.dropdown-heading > a {
    font-weight: 700 !important;
}
.dropdown-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.dropdown-links .dropdown-heading a {
    font-weight: 700 !important;
}
.dropdown-links a {
    font-weight: 500 !important;
}
.div {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.dropdown.active > .link + .dropdown-menu {
    opacity: 1;
    transform: translateY(0);
    pointer-events: all;
    transition: opacity 0.5s, transform 0.5s;
}
.menu + .dropdown-menu {
    padding-block: 2rem;
}
.dropdown-heading > p {
    font-weight: 700 !important;
}
.dropdown > a {
    font-weight: 500 !important;
}
.link {
    font-size: 14px !important;
}
.menu {
    width: 50px !important;
    display: none;
}
.dropdown:nth-of-type(1) {
    display: block !important;
}
.dropdown:nth-of-type(1) img {
    width: 50px;
    cursor: pointer;
}
.button-button {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: underline;
    cursor: pointer;
    background-color: transparent !important;
    color: var(--blue) !important;
    border: none;
}
@media (max-width: 1150px) {
    .menu {
        display: block;
        cursor: pointer;
    }

    .dropdown:nth-of-type(2) {
        display: block;
    }
}
@media (max-width: 630px) {
    .dropdown-menu {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}
h1,
h2 {
    line-height: 1 !important;
}

/* Jointly */

.jointly {
    background-image: linear-gradient(to bottom, #ffffff, #ffffff00 100%),
        linear-gradient(to top, #ffffff, #ffffff00 100%),
        url(../autumn-new/jointly-bg.png);
}

.jointly .wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    padding-block: 12rem;
}
.jointly h2 {
    font-size: var(--heading-two);
    text-align: center;
    max-width: 20ch;
    line-height: 1.2 !important;
}
.jointly p {
    font-size: var(--text);
    line-height: 1.5;
    font-weight: 400;
    text-align: center;
    max-width: 58ch;
}
.jointly button {
    color: white;
    background-color: var(--blue);
}
.jointly-buttons a:nth-child(2) button {
    background-color: transparent;
    color: var(--blue);
    border: none;
    padding: 0;
}
.jointly-buttons a:nth-child(2) button {
    background-color: transparent;
    color: var(--blue);
    border: none;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.jointly-buttons a:nth-child(2) button img {
    width: 8px;
}
.jointly-buttons {
    display: flex;
    align-items: center;
    gap: 1rem;
}
.jointly-logo {
    width: 200px;
    transform: translate(0.5rem, 0.5rem);
}

@media (max-width: 700px) {
    .jointly .wrapper {
        padding-inline: 2rem;
    }
}
@media (max-width: 500px) {
    .jointly .wrapper {
        padding-inline: 1rem;
    }
    .jointly h2 {
        font-size: var(--mobile-heading-two);
    }
    .jointly p {
        font-size: var(--mobile-text);
    }
    .jointly-buttons {
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
    }
    .jointly-buttons a {
        width: 100%;
    }
    .jointly-buttons a:nth-child(2) button {
        margin-top: 1rem;
        width: auto;
    }
    .jointly-buttons a:nth-child(2) {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
    .jointly-buttons button {
        width: 100%;
    }
}
