@import url('https://fonts.googleapis.com/css2?family=Mulish:ital,wght@0,200..1000;1,200..1000&display=swap');

@font-face {
    font-family: 'Gotham';
    src: url('../fonts/Gotham-Font/Gotham-Bold.otf');
    font-weight: 300;
    font-style: normal;
}
@font-face {
    font-family: 'Gotham';
    src: url('../fonts/Gotham-Bold.woff') format('woff');
    font-weight: 700;
    font-style: normal;
}


* {

    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    outline: none;
    list-style: none;
    color: #000000;
}

h1,
h2,
h3,
h4,
h5,
p,
ul,
li {
    margin: 0;
    padding: 0;
}

.container {
    max-width: 1440px;
    padding-left: 40px;
    padding-right: 40px;
}

/* .container-fluid {
    padding: 0;
    margin: 0;
    overflow: hidden;
} */
.h2-family {
    font-family: Gotham;
    font-size: 52px;
    font-weight: 400;
    line-height: 62px;

}

.h3-28-family {
    font-family: Mulish;
    font-size: 28px;
    font-weight: 650;
    line-height: 52px;


}

.p-18-family {
    font-family: Mulish !important;
    font-size: 18px;
    line-height: 28px;
    font-weight: 325px;
}

/*------------------------------------- *********** Navbar ********** ------------------------------*/

.nav-link.dark-text {
    color: #333 !important;
}

.bgchange {
    background-color: #fff !important;
}
.nav-button:hover{
    border: 1px solid #005AAB;
}

.nav-link {
    transition: color 0.3s ease;
}

.main-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    transition: all .3s linear;
    z-index: 999;
    box-shadow: 0 1px 4px #8080805e;
}

.navbar {
    z-index: 999;
}

.main-nav.bgchange {
    transition: all .3s linear;
    z-index: 999;
    background: white;
    color: black !important;
}

.main-nav .navbar {
    height: 84px;
    flex-wrap: nowrap;
    position: unset;
    transition: all .3s linear;
}

.main-nav .nav-items {
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav-button {
    padding: 9px 24px 9px 24px;
    gap: 8px;
    border-radius: 8px;
    opacity: 0px;
    background-color: #005AAB;
    text-decoration: none;
    border: 1px solid #005AAB;

}

.nav-button:hover {
    background-color: white;
    color: #005AAB !important;
    transform: ease-in 0.50s;

}

.nav-button1 {
    background-color: #4AA3DC;
    border-radius: 16px;
    color: white;
    padding: 10px 32px 10px 32px;
    display: none;
}

.nav-items a {
    font-family: Gotham reg, sans-serif;
    font-size: 18px;
    font-weight: 325;
    line-height: 28px;
    text-align: left;
}

.main-nav #nav-toggler {
    display: none;
    padding-right: 30px;
}

.nav-link {
    font-family: Gotham;
    font-size: 18px;
    font-weight: 525;
    line-height: 28px;
    text-align: left;

}

.nav-link:hover {
    color: white;
}

.hover-underline-animation {
    display: inline-block;
    position: relative;
    color: #ffffff;
}

.hover-underline-animation::after {
    content: '';
    position: absolute;
    width: 80%;
    transform: scaleX(0);
    height: 2px;
    bottom: 2px;
    left: 10px;
    background-color: #ffffff; /* Default color white */
    transform-origin: bottom right;
    transition: transform 0.30s ease-in, background-color 0.3s ease-in;
}

.hover-underline-animation:hover::after {
    transform: scaleX(1);
    transform-origin: bottom left;
}

/* Class to change the underline color */
.scrolled .hover-underline-animation::after {
    background-color: #005AAB !important;
}


/* .hero-section{
    height: 1500px;
    background: rgb(6, 231, 175);
} */
@media screen and (max-width: 768px) {
    .main-nav #nav-toggler {
        display: block;
        font-size: 20px;
    }

    .main-nav .nav-items .nav-link {
        color: rgb(0, 0, 0) !important;
    }

    .nav-button {
        color: white !important;
    }


    .main-nav .nav-items {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        height: auto;
        width: 100%;
        background: #ffff;
        flex-direction: column;
        align-items: flex-start;
        clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
        transition: all .3s linear;
        padding: 15px 20px;
        color: black;
    }

    .main-nav .nav-items.show {
        clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
        transition: all .5s linear;
    }
}

@media screen and (max-width: 992px) {
    .navbar-collapse.show {
        clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
    }

    .navbar-light .navbar-toggler {
        color: rgba(0, 0, 0, .55);
        border-color: rgba(0, 0, 0, .1);
        padding: 0;
        border: none;
        outline: none;
        box-shadow: none;
    }
}

/* -----------------------********Hero Section*********------------------------ */
video {
    /* position: absolute; */
    height: 100vh;
    width: 100%;
    top: 0;
    object-fit: cover;
    left: 0;
    right: 0;
    min-width: 100%;
}

.hero-section {
    position: relative;
}

.hero-content-main {
    position: absolute;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.329);
    width: 100%;
}

.hero-content {
    width: 60%;
    justify-content: center !important;
    min-height: 100vh;
    gap: 20px !important;
}

.hero-button {
    padding: 12px 28px 12px 28px;
    gap: 8px;
    border-radius: 8px;
}

.heading-span {
    color: #2F82C9;
}

.p-span {
    color: #2F82C9;
}

/* --------------------------------------management---------------------------------------------------- */
.small-span {
    color: #2F82C9;
}

.management {
    padding: 60px 0;
}

.card-heading {
    font-family: Mulish;
    font-size: 18px;
    font-weight: 700;
    line-height: 30px;
    padding-top: 12px;
    padding-bottom: 4px;
}

.card-text {
    font-family: Mulish;
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
}

.card {
    box-shadow: 0px 0px 40px 0px #0000000F;
    border-radius: 10px;
}

.card:hover {
    transform: scale(1.05);
    transition: transform ease 0.50s;
}

.card-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
}
.card-flex{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
}
.card-flex-home{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
}
.card-flex-3{
    display: grid;
    grid-template-columns: 1fr 1fr;
}

/* -----------------------------practices----------------------------- */
.practices {
    padding: 115px 0px 30px 0px;
    background-color: #012842;
}

.practices-main {
    max-width: 992px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 55px;
    justify-content: center;
}

.choose {
    padding: 80px 0;
}

.partner {
    padding: 60px 0;
    background-color: #F2F7FB;
    width: 100%;
}

.partner-main {
    width: 760px;
    margin: 0 auto;
}

.LLC-flex {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 40px;
}

.footer {
    padding: 81px 0;
    background-color: #032D45;
}

.footer-div {
    width: 842px;
    margin: 0 auto;
}

.footer-link {
    text-decoration: none;
    padding-inline: 10px;
    color: #ffffffb2;
    font-size: 12px;
}
.footer-link:hover{
    color: white;
}

/* -------------------------------------------**********Our Services*********----------------------------------------- */
.services-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    padding: 100px 0;
    gap: 20px;
}

.services-heading {
    font-size: 22px;
    line-height: 1.2;
    font-weight: 500;
}

/* -------------------------------------------**********About Us*********----------------------------------------- */
.about-hero {
    background-image: url("../images/about-banner.f62dc22c.png");
    min-height: 100vh;
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-size: cover;
}

.about-hero-content {
    min-height: 100vh;
    background-color: #070707ab;
}

.about-card-heading {
    font-size: 27px;
    font-weight: 500;
    padding-top: 19px;
    line-height: 1.2;
    font-family: Gotham book, sans-serif;
}

.about-number {
    font-size: 29px;
    color: #005aab;
    padding: 12px 10px 0;
    background: #fff;
    height: 31px;
    box-shadow: 0 -3px 5px #8080800f;
    margin-top: -41px;
    width: fit-content;
}

/* -------------------------------------------**********About Us*********----------------------------------------- */
.contact h2 {
    font-size: 48px;
    padding-bottom: 10px;
    font-family: Gotham book, sans-serif;
    font-weight: 500;
}

.contact {
    padding: 80px 0;
}

.contact input,
.input {
    background-color: rgba(0, 0, 0, .05);
    padding: 13px;
    border-radius: 10px;
    resize: none;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.contact form {
    padding: 50px 0;
}

.contact form .btn {
    background: #005aab;
    color: white;
    border-radius: 8px;
    margin-top: 20px;
    font-family: Gotham reg, sans-serif;
    transition: 0.5s;
    padding: 10px 30px;
}

.hero-contact{
    background-image: url('../images/contact-banner.36bc7053.png');
    background-size: cover;
    background-attachment: fixed;
    background-position: 10% 170%;
    height: 60vh;
}
.contact-content{
    height: 60vh;
    padding: 0 20px;
}
.contact-background{
    background-color: #00000090;
}

@media (max-width:1080px) {
    .h2-family {
        font-family: Gotham;
        font-size: 32px;
        font-weight: 400;
        line-height: 41px;
    }
}

@media (max-width:768px) {
    .h2-family {
        font-size: 26px;
        line-height: 1.2;
    }

    .footer-div {
        width: 100% !important;
    }

    .footer-flex {
        flex-wrap: wrap;
        align-items: center;
        justify-content: center !important;
        text-align: center;
        gap: 20px;
    }

    .LLC-flex {
        display: grid;
        grid-template-columns: 1fr;
        align-items: center;
        gap: 40px;
    }

    .partner-flex {
        flex-wrap: wrap;
    }

    .partner-main {
        width: 100% !important;
    }

    .card-flex {
        text-align: center;
        flex-wrap: wrap;
        align-items: center !important;
    }
    .card-flex{
        grid-template-columns: 1fr;
    }
    .card-flex-home{
        grid-template-columns: 1fr 1fr;
    }

    .card {
        align-items: center;
    }
    .card-text{
        text-align: center;
    }
}

@media (max-width:521px) {
    .h2-family {
        font-size: 26px;
        line-height: 1.2;
    }

    .llc-flex {
        flex-wrap: wrap;
    }

    .hero-content {
        width: 100% !important;
        gap: 5px;
    }

    .p-18-family {
        font-size: 16px;
        line-height: 1.3;
        text-align: center;
    }

    .h3-28-family {
        font-size: 27px;
        text-align: center;
        line-height: 36px;
    }

    .practices-main {
        grid-template-columns: 1fr;
    }

    .card .card-text {
        font-size: 12px;
        text-align: center;
    }

    .card .card-heading {
        font-size: 15px;
    }

    .card, p {
        text-align: center;
    }

    .center-columns {
        text-align: center;
    }

    .card-flex {
        grid-template-columns: 1fr;
        text-align: center;
        align-items: center;
    }
    .card-flex-home{
        grid-template-columns: 1fr;
    }

    .card {
        align-items: center;
    }

    .partner-main {
        width: 100% !important;
    }

    .form-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .contact-heading {
        text-align: center;
    }
    .contact-content{
        height: 40vh;
    }
    .hero-contact{
        height: 40vh;
        background-repeat: no-repeat;
        background-size: cover;
        background-position: 100% 0%;
    }
    .contact{
        padding: 40px 0;
    }
    .contact form{
        padding: 20px 0;
    }
    .contact h2{
        font-size: 27px;
    }
    .services-grid{
        grid-template-columns: 1fr;
        padding: 40px 0;
    }
    .services-grid .services-heading, .services-text{
 
    }
    .services-grid .services-heading{
        text-align: center !important;
    }
    .practices{
        padding: 40px 0;
    }
    .card-flex-3{
        grid-template-columns: 1fr;
    }
    .about-card-heading {
        font-size: 19px;
    }
}