@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

/* @font-face {
    font-family: font-heading;
    src: url(../font/GentonaMedium.otf);
} */

* {
    font-family: 'Montserrat', sans-serif;
    /* letter-spacing: 1px;
    word-spacing: 3px; */
}



.no_decoration {
    text-decoration: none;
}

body {
    background-color: #f7f7f7;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Inter", sans-serif;;
    /* letter-spacing: 1px;
    word-spacing: 3px; */
}

.fs-xs{
    font-size: 14px;
}

.fs-xss{
    font-size: 12px;
}

p {
    /* letter-spacing: 1px;
    word-spacing: 1px; */
    text-align: justify;
}

li{
    /* letter-spacing: 1px;
    word-spacing: 1px; */
}

.min-h-100 {
    min-height: calc(100vh - 100px);
}

a {
    /* letter-spacing: 1px;
    word-spacing: 3px; */
    text-decoration: none;
}

#loader{
    position: fixed;
    width: 100%;
    height: 100vh;
    z-index: 11111111;
    top: 0px;
    left: 0px;
    background: black;
}

#contactUs {
    position: fixed;
    right: 20px;
    bottom: 30px;
    transform-origin: center;
    z-index: 1000;
    padding: 0px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    font-size: 29px;
    line-height: 65px;
}

.navbar .navbar-brand img {
    width: 100px;
}

.navbar .navbar-nav .nav-item {
    padding-left: 20px;
}

.navbar .navbar-nav .nav-item a {
    font-weight: 500;
}

.updatedHeader .nav-item a{
    font-size: 18px;
    font-weight: 400 !important;
}

.arrow {
    position: absolute;
    left: -15vmax;
    bottom: -25vmax;
    display: block;
    width: 35vmax;
    height: 35vmax;
    --arrow-scale: 1;
    background: #000000;
    box-shadow: 0 0 7vmax rgba(50, 50, 50, 0.2);
    z-index: 5;
    cursor: pointer;
}

.arrow2 {
    position: absolute;
    left: -15vmax;
    bottom: -25vmax;
    display: block;
    width: 35vmax;
    height: 35vmax;
    --arrow-scale: 1;
    background: #000000;
    box-shadow: 0 0 7vmax rgba(50, 50, 50, 0.2);
    z-index: 5;
    cursor: pointer;
}

.arrow-container-tap .arrow {
    /* animation: expand-arrows 1s forwards; */
    animation: expand-arrows 1s forwards, fade-out 1s 1s forwards; /* Apply both animations */
}

.arrow-container-tap-before .arrow2 {
    animation: expand-arrows 1s forwards ;
}

.arrow:nth-child(2) {
    --arrow-scale: 2;
    background: #1c1c1c;
    z-index: 4;
}

.arrow:nth-child(3) {
    --arrow-scale: 3;
    background: #0e0e0e;
    z-index: 3;
}

.arrow:nth-child(4) {
    --arrow-scale: 4;
    background: #272727;
    z-index: 2;
}

.arrow:nth-child(5) {
    --arrow-scale: 6;
    background: #1c1c1c;
    z-index: 1;
}




.arrow2:nth-child(2) {
    --arrow-scale: 2;
    background: #1c1c1c;
    z-index: 4;
}

.arrow2:nth-child(3) {
    --arrow-scale: 3;
    background: #0e0e0e;
    z-index: 3;
}

.arrow2:nth-child(4) {
    --arrow-scale: 4;
    background: #272727;
    z-index: 2;
}

.arrow2:nth-child(5) {
    --arrow-scale: 6;
    background: #1c1c1c;
    z-index: 1;
}


.heroSection .bannerImg{
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    animation: fade-in 1s 1s forwards; 
}

.input-group .btn{
    border-top-right-radius: 6px !important;
    border-bottom-right-radius: 6px !important;
}

@keyframes expand-arrows {
    0% {
        transform: scale(0) skew(-15deg, -15deg) rotate(-20deg);
    }

    100% {
        transform: scale(var(--arrow-scale)) skew(-15deg, -15deg) rotate(-20deg);
    }
}


@keyframes fade-out {
    0% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}

@keyframes fade-in {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}




.feder-wrapper {
    animation: fade 5s infinite linear;
}

.feder-down {
    animation: down 5s infinite linear;
}

.feder-side {
    animation: side 2s infinite ease-in-out;
}

.feder-wrapper {
    animation: fade 5s infinite linear;
}

.feder-2 img {
    width: 200px;
    transform: rotate(45deg);
}

.feder-1 img {
    width: 200px;
    transform: rotate(45deg);
}

@keyframes fade {
    0% {
        opacity: 0;
    }

    25% {
        opacity: 1;
    }

    75% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

@keyframes down {
    0% {
        transform: translateY(-200px);
    }

    50% {
        transform: translateY(0px);
    }

    100% {
        transform: translateY(200px);
    }
}

@keyframes side {
    0% {
        transform: translateX(-100px);
    }

    50% {
        transform: translateX(100px);
    }

    100% {
        transform: translateX(-100px);
    }
}

.feder-2-down {
    opacity: 0;
    position: absolute;
}





.heroSection {
    padding: 0px 0px;
    overflow: hidden;
    position: relative;
    background-color: black;
    /* background-image: linear-gradient(to right, rgba(0, 0, 0, 1), rgba(0, 0, 0, 0)), url(../img/banner.png); */
    background-size: cover;
    height: calc(100vh - 100px);
    display: flex;
    align-items: center;
}



.heroSection .container {
    position: relative;
    z-index: 11;
}

.heroSection h1 {
    font-size: 95px;
    line-height: 1;
    color: white;
}

.heroSection .para {
    font-size: 30px;
    color: white;
    margin-bottom: 30px;
    margin-top: 30px;
    letter-spacing: 1px;
    word-spacing: 2px;
}


.hero_slider.swiper-container {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.hero_slider.swiper-container a {
    text-decoration: none;
}

.hero_slider .swiper-slide {
    background: #fff;
}

.hero_slider .swiper-button-next,
.hero_slider .swiper-button-prev {
    color: #000;
}

.swiper-pagination-bullet-active {
    background: #fff !important;
}

.swiper-scrollbar {
    position: static !important;
    margin-top: 20px;
}

.container-custom {
    padding-left: 300px;
}

.heroSection .card {
    border: none;
    padding: 0px;
}

.heroSection .card ul {
    padding: 0px;
    margin-bottom: 0px;
    margin-top: 20px;
}

.heroSection .card ul li {
    list-style: none;
    display: inline-block;
    margin-right: 20px;
    padding-right: 20px;
    font-weight: 400;
    font-size: 14px;
    position: relative;
}

.heroSection .card ul li:last-child::before {
    display: none;
}

.heroSection .card ul li::before {
    content: '';
    position: absolute;
    right: -2px;
    top: 7px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #000;
}

.heroSection .card img {
    height: 230px;
}

.heroSection .card .card-body {
    padding: 20px;
}

.heroSection .card p {
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    /* number of lines to show */
    line-clamp: 3;
    -webkit-box-orient: vertical;
}

.heroSection .card h6 {
    font-size: 30px;
    font-weight: 500;
    font-family: 'Neue Haas Grotesk Display Pro', sans-serif;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    /* number of lines to show */
    line-clamp: 4;
    -webkit-box-orient: vertical;
}

.btn-main {
    padding: 10px 25px;
    border: 1px solid #fff;
    border-radius: 10px;
    color: white;
    transition: 0.3s;
    font-weight: 600;
}

.btn-main i{
    margin-left: 5px;
    transition: 0.3s;
}


.btn-main.border-dark:hover {
    color: white !important;
}

.btn-main:hover {
    background: #d8bdb2;
    color: black;
    border-color: #d8bdb2;
}

.btn-main:hover i{
    margin-left: 10px;
}

.swiper-scrollbar-drag {
    background: #ffffffb5;
}

.about {
    padding: 70px 0px;
    position: relative;
}

.about .blob1 {
    width: 200px;
    height: 200px;
    position: absolute;
    background: radial-gradient(#f26b2b, transparent);
    z-index: -1;
    filter: blur(110px);
}

.about .blob2 {
    width: 200px;
    height: 200px;
    right: 0px;
    bottom: 0px;
    position: absolute;
    background: radial-gradient(#24586f, transparent);
    z-index: -1;
    filter: blur(110px);
}


.about p:last-child {
    margin-bottom: 0px;
}

.about h2 {
    font-size: 50px;
    font-weight: 700;
    margin-bottom: 20px;
}

.about p {
    font-size: 20px;
    font-weight: 300;
    line-height: 1.6;
}


.about h6 {
    font-size: 55px;
    margin-bottom: 20px;
    font-weight: 500;
}

.practice_areas {
    padding-top: 60px;
    padding-bottom: 80px;
    background: #f0f0f0;
    /* z-index: -2; */
    position: relative;
}

.practice_areas h2 {
    font-weight: 500;
    font-size: 60px;
    text-align: center;
    margin-bottom: 50px;
}

.practice_areas .card {
    border: none;
    box-shadow: rgba(0, 0, 0, 0.09) 0px 6px 16px;
    height: 100%;
    border-radius: 10px;
    padding: 15px;
    transition: 0.3s;
}

.practice_areas .card:hover {
    box-shadow: 10px 10px 0px;
    transform: translateY(-5px);
}

.practice_areas .card:hover h6{
    border-color: black;
}

.practice_areas .card a:first {
    text-decoration: none;
}

.practice_areas .card i {
    width: 75px;
    height: 75px;
    line-height: 75px;
    border-radius: 10px;
    background: #000;
    text-align: center;
    color: white;
    margin-bottom: 15px;
    font-size: 28px;
    margin-bottom: 25px;
}

/* .practice_areas .card img{
    display: none;
} */

.hero_slider2 {
    overflow: hidden;
}

.practice_areas .card h6 {
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 0px;
    text-transform: capitalize;
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #c8c8c8;
}

.practice_areas .card p {
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    /* number of lines to show */
    line-clamp: 3;
    -webkit-box-orient: vertical;
}

.practice_areas .card a {
    color: black;
    font-weight: 600;
    text-decoration: none;
}

.practice_areas .card img {
    height: 150px;
    width: 100%;
    object-fit: contain;
    margin: auto;
    display: block;
    margin-bottom: 20px;
}

.our_peoples {
    padding-top: 60px;
    padding-bottom: 80px;
}

.our_peoples .col-md-3 {
    width: 20%;
}


.our_peoples a {
    text-decoration: none;
}

.our_peoples h2 {
    font-weight: 500;
    font-size: 60px;
    margin-bottom: 20px;
}

.our_peoples .para {
    font-size: 20px;
    font-weight: 300;
    margin-bottom: 0px;
}

.p-sticky {
    position: sticky;
    top: 20px;
}


.our_peoples .card:hover{
    transform: translateY(-5px);
}

.our_peoples .card h5 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 2px;
}

.our_peoples .card p {
    font-size: 14px !important;
}

.our_peoples .card {
    box-shadow: rgba(0, 0, 0, 0.09) 0px 6px 16px;
    border: 1px solid #efebeb;
    border-radius: 10px;
    height: 100%;
    transition: 0.3s;
    overflow: hidden;
}

.our_peoples .card:hover {
    box-shadow: 10px 10px 0px;
}


.our_peoples .blob1 {
    width: 300px;
    height: 300px;
    position: absolute;
    background: radial-gradient(#f26b2b, transparent);
    z-index: -1;
    filter: blur(150px);
}

.our_peoples .blob2 {
    width: 200px;
    height: 200px;
    right: 0px;
    bottom: 0px;
    position: absolute;
    background: radial-gradient(#24586f, transparent);
    z-index: -1;
    filter: blur(110px);
}


footer {
    padding: 50px 0px;
    background: #000;
}

footer .input-group .form-control{
    padding: 15px;
}

footer .logo {
    width: 130px;
    filter: invert(1);
}

footer h6 {
    color: white;
    font-weight: 600;
    font-size: 25px;
    margin-bottom: 25px;
    height: 30px;
}

footer ul {
    padding: 0px;
    margin: 0px;
}

footer ul li {
    list-style: none;
    margin-top: 15px;
}

footer ul li a {
    color: #ffffffa3;
    text-decoration: none;
    display: flex;
    align-items: center;
    font-size: 14px;
}

footer ul li i {
    margin-right: 10px;
}

footer p{
    font-size: 14px;
}

.insights .container {
    padding-top: 60px;
    padding-bottom: 80px;
    border-top: 1px solid #ddd;
}

.insights .catagotyLI {
    font-size: 14px;
    margin-top: -90px;
    margin-bottom: 50px;
}

.insights .catagotyLI select{
    width: 200px;
    margin-left: auto;
    position: relative;
}

.insights .container a {
    text-decoration: none;
}

.insights h2 {
    font-weight: 500;
    font-size: 60px;
    text-align: center;
    margin-bottom: 30px;
}

.insights .card {
    border: 1px solid #efebeb;
    border-radius: 10px;
    padding: 0px;
    height: 100%;
    position: relative;
    transition: 0.3s;
    overflow: hidden;
    margin: 10px;
    box-shadow: rgba(0, 0, 0, 0.09) 0px 6px 16px;
}


.insights .card:hover {
    box-shadow: 10px 10px 0px;
    transform: translateY(-5px);
}

.insights .card .badge {
    position: absolute;
    top: 15px;
    right: 15px;
    border-radius: 0px;
}

.insights .card img {
    height: 230px;
    object-fit: cover;
}

.insights .card .card-body {
    padding: 20px;
}

.insights .card h6 {
    font-size: 23px;
    font-weight: 500;
    /* font-family: 'Neue Haas Grotesk Display Pro', sans-serif; */
    color: black !important;
    overflow: hidden;
   display: -webkit-box;
   -webkit-line-clamp: 3; /* number of lines to show */
           line-clamp: 3; 
   -webkit-box-orient: vertical;
}

.insights .card ul {
    padding: 0px;
    margin-bottom: 0px;
    margin-top: 20px;
}

.insights .card ul li {
    list-style: none;
    display: inline-block;
    margin-right: 10px;
    padding-right: 20px;
    font-weight: 400;
    font-size: 14px;
    position: relative;
}

.insights .card ul li::before {
    content: '';
    position: absolute;
    right: -2px;
    top: 7px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #000;
}

.insights .card ul li:last-child::before {
    display: none;
}

.insights .nav .nav-link {
    color: black;
    font-size: 20px;
    border-radius: 0px;
}

.insights .nav .nav-link.active {
    background: none;
    border-bottom: 2px solid #000;
    font-weight: 600;
}

#disclaimer_modal h5 {
    font-family: 'Neue Haas Grotesk Display Pro', sans-serif;
    font-weight: 500;
    font-size: 25px;
    margin-bottom: 20px;
}

.bg-body-tertiary {
    background-color: white !important;
    border-bottom: 1px solid #ddd;
}

.service_details {
    display: flex;
}

.service_details .left_pannel {
    width: 350px;
    position: sticky;
    top: 0px;
    height: 100vh;
    padding: 30px;
    background: #ebe8e8;
    overflow-y: scroll;
}

.service_details .left_pannel h2 {
    font-weight: 600;
    /* font-family: 'Neue Haas Grotesk Display Pro', sans-serif; */
    margin-bottom: 20px;
}

.service_details .left_pannel ul {
    padding: 0px;
    margin: 0px;
}

.service_details .left_pannel ul li {
    list-style: none;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #ddd;
}

.service_details .left_pannel ul li a {
    text-decoration: none;
    color: black;
}

.service_details .left_pannel ul li .active {
    background: #000;
    width: 100%;
    display: inline-block;
    color: white;
    padding: 6px 10px;
    font-weight: 600;
    border-radius: 6px;
    position: relative;
}

.service_details .left_pannel ul li .active::after {
    content: "\f105";
    font-family: "Font Awesome 6 Pro";
    float: right;
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
}

.avatar {
    width: 40px;
    height: 40px;
    display: block;
    position: relative;
    border-radius: 50%;
    overflow: hidden;
}

.avatar-initial {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #6e7985;
    color: #fff;
    border-radius: inherit;
    font-size: 16px;
    text-transform: uppercase;
}


.service_details .right_pannel {
    width: calc(100% - 350px);
    min-height: 100vh;
    margin-left: auto;
    padding: 30px;
}

.service_details .right_pannel .keyContactPerson h5 {
    font-weight: 600;
    margin-bottom: 20px;
    font-size: 25px;
    margin-top: 15px;
}

.service_details .right_pannel .wrapper {
    background: #e8e8e8;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 20px;
}

.service_details .right_pannel .wrapper h6 {
    margin-bottom: 0px;
    font-size: 18px;
}

.service_details .right_pannel .wrapper .single {
    border-bottom: 1px solid #ddd;
    margin-bottom: 10px;
    padding-bottom: 10px;
}

.service_details .right_pannel .wrapper .single:last-child {
    margin-bottom: 0px;
    padding-bottom: 0px;
    border-bottom: none;
}







.service_details .right_pannel .bookingWrapper {
    padding: 30px 25px;
    background: #f1f1f1;
}

.service_details .right_pannel .bookingWrapper ul {
    padding: 0px;
    margin: 0px;
}

.service_details .right_pannel .bookingWrapper ul li {
    list-style: none;
    margin-bottom: 12px;
}

.service_details .right_pannel .bookingWrapper ul li a {
    text-decoration: none;
    color: black;
}

.service_details .right_pannel h2 {
    font-size: 45px;
    font-weight: 500;
    margin-bottom: 25px;
}

.service_details .right_pannel p {
    font-weight: 300;
}

.service_details .right_pannel img {
    width: 100%;
}

.service_details .right_pannel h4 {
    font-weight: 600;
    font-family: 'Neue Haas Grotesk Display Pro', sans-serif;
    margin-bottom: 20px;
}

.service_details .right_pannel .carousel .card {
    width: 290px;
}

.service_details .right_pannel .carousel .card h5 {
    font-family: 'Neue Haas Grotesk Display Pro', sans-serif;
}

.service_details .right_pannel .insights .card h6 {
    font-size: 22px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    /* number of lines to show */
    line-clamp: 3;
    -webkit-box-orient: vertical;
}

.user_details {
    padding: 60px 0px;
}

.user_details h2 {
    font-size: 45px;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 27px;
}

.user_details h2 small {
    font-size: 18px;
}

.user_details .designation {
    font-weight: 500;
    font-size: 16px;
}

.user_details .newHeading {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    border-bottom: 1px solid #bbbbbb;
    padding-bottom: 20px;
}

.user_details .newHeading .socials img{
    width: 50px;
    background: #f3f3f3;
    padding: 10px;
    border-radius: 6px;
}

.user_details .bottom_area .socials a {
    text-decoration: none;
    color: #fff;
    font-size: 20px;
    margin-right: 20px;
}

.user_details .bottom_area .location {
    font-size: 18px;
}

.user_details .single_list {
    margin-top: 25px;
}

.user_details .single_list i {
    color: white !important;
}

.user_details .single_list p {
    opacity: 0.6;
    font-size: 15px;
}

.user_details .single_list b {
    display: block;
    font-size: 15px;
    font-weight: 600;
}

.user_details .single_list h6 {
    margin-bottom: 0px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #d18c75;
    font-style: italic;
    font-family: 'Neue Haas Grotesk Display Pro', sans-serif;
    align-items: baseline;
    font-size: 30px;
}

.user_details .single_list h6 i {
    font-size: 35px;
}

.user_details .bg_dark {
    background: white;
    border: 1px solid #dedede;
    box-shadow: rgba(0, 0, 0, 0.09) 0px 6px 16px;
    border-radius: 10px;
    overflow: hidden;
}

.user_details .Userabout {
    padding: 40px 0px;
    margin-top: 0px !important;
}

.user_details .Userabout h6 {
    font-family: 'Neue Haas Grotesk Display Pro', sans-serif;
    font-weight: 600;
    font-size: 20px;
    color: #4f5258;
    border-bottom: 1px solid #525456;
    padding-bottom: 10px;
    margin-bottom: 20px;
}

.user_details .Userabout p {
    opacity: 0.7;
}

.user_details .Userabout .ul {
    padding: 0px;
    margin: 0px;
}

.user_details .Userabout .ul li {
    display: inline-block;
    list-style: none;
    margin-right: 15px;
    margin-bottom: 15px;
    padding: 6px 17px;
    border-radius: 40px;
    background: #e6e6e6;
    color: black;
    font-weight: 500;
    cursor: pointer;
}

.user_details .Userabout .ul li:hover {
    background: black;
    color: white;
}

.career {
    padding: 60px 0px;
}

.career h2 {
    font-weight: 700;
    font-size: 45px;
    margin-bottom: 20px;
}

.career .card {
    padding: 30px;
    height: 100%;
    border-radius: 10px;
    border: none;
    box-shadow: rgba(0, 0, 0, 0.09) 0px 6px 16px;
}

.career .card img {
    width: 120px;
    height: 120px;
    object-fit: contain;
    margin-bottom: 20px;
}

.career .card.active {
    background: #000;
    color: white;
}

.career .card b {
    font-weight: 500;
    font-size: 18px;
}

.career .card i {
    font-size: 45px;
    margin-bottom: 15px;
}

.career_options {
    padding-bottom: 80px;
}

.career_options .wrapper {
    padding: 40px;
    border-radius: 10px;
    background: #ededed;
}

.career_options .wrapper h2 {
    font-weight: 700;
    font-size: 50px;
    margin-bottom: 30px;
}

.career_options .wrapper .nav-link {
    color: black;
    font-size: 18px;
    border-radius: 0px;
    padding: 10px 30px;
}

.career_options .wrapper .nav-link.active {
    background: transparent;
    border-bottom: 2px solid #000;
    font-weight: bold;
}

.career_options .single_job {
    padding: 20px;
    background: white;
    border-radius: 10px;
}

.career_options .single_job h5 a {
    color: black;
    text-decoration: none;
    font-weight: 600;
}

.career_options .single_job ul {
    padding: 0px;
    margin-bottom: 10px;
}

.career_options .single_job ul li {
    list-style: none;
    display: inline-block;
    margin-right: 10px;
    padding-right: 10px;
    border-right: 2px solid #ddd;
    line-height: 1;
    font-size: 14px;
}

.career_options .single_job ul li:last-child {
    border-right: none;
}

.career_options .single_job ul li b {
    font-weight: 600;
}

.career_options .single_job .btn {
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
}

.career_options .single_job p {
    margin-bottom: 5px;
}

.career_options .internship_form select {
    padding: 1rem .75rem;
}

.career_options .internship_form .form-control {
    padding: 1rem .75rem;
    padding-top: 35px;
}

.career_options .internship_form .btn-upload {
    padding: 10px 30px;
    font-weight: 600;
    border-radius: 4px;
    margin-top: 20px;
}

.insight_details .bg_insight {
    padding-top: 200px;
    background-size: cover !important;
}

.insight_details .bg_insight .heading {
    padding: 30px;
    display: inline-block;
    max-width: 88%;
    background: #f3f3f3;
    position: relative;
    top: 50px;
}

.insight_details .bg_insight .heading h5 {
    font-size: 45px;
    font-weight: bold;
}


.insight_details .bg_insight .headingul {
    padding: 0px;
    margin-bottom: 0px;
    margin-top: 20px;
}

.insight_details .bg_insight .heading ul {
    padding: 0px;
    margin-bottom: 0px;
    margin-top: 20px;
}

.insight_details .bg_insight .heading ul li {
    list-style: none;
    display: inline-block;
    margin-right: 20px;
    padding-right: 20px;
    font-weight: 400;
    font-size: 16px;
    position: relative;
}

.insight_details .bg_insight .heading ul li::before {
    content: '';
    position: absolute;
    right: -2px;
    top: 7px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #000;
}

.insight_details .bg_insight .heading ul li:last-child::before {
    display: none;
}

.insight_details .insight_texts {
    padding-top: 100px;
}

.insight_details .insight_texts p {
    font-size: 18px;
    line-height: 1.9;
}

.insight_details .insight_texts p a{
    color: #FF5722;
    font-weight: 500;
    font-style: italic;
}

.insight_details .insight_texts ul{
    padding-left: 20px;
}
.insight_details .insight_texts ul li{
    font-size: 18px;
    margin-bottom: 15px;
    list-style: auto;
}

.insight_details .insight_texts .written_by {
    color: #000;
    font-weight: 600;
    font-size: 30px;
    margin-bottom: 15px;
}

.insight_details .insight_texts h6{
    font-size: 20px;
    font-weight: 600;
    margin-top: 30px;
}

.cookie_policy {
    position: fixed;
    width: 100%;
    padding: 30px;
    bottom: -100%;
    left: 0px;
    background: white;
    z-index: 111;
    box-shadow: rgba(0, 0, 0, 0.4) 0px 6px 16px;
    transition: 1s ease;
}

.cookie_policy .btn{
    font-size: 14px;
}

.cookie_policy.show {
    bottom: 0%;
}

.cookie_policy p {
    font-size: 14px;
    margin-top: 10px;
}

.btn-main.text-black:hover {
    color: white !important;
}

#cookie_modal h5 {
    font-weight: 600;
    font-family: 'Neue Haas Grotesk Display Pro', sans-serif;
    font-size: 25px;
}

.form-check-input:checked {
    background-color: #4CAF50;
    border-color: #4CAF50;
}

#cookie_modal .form-switch label {
    font-weight: 600;
}

#cookie_modal .btn {
    border-radius: 0px;
    font-weight: 600;
    padding: 10px 30px;
}

.missionVision {
    padding: 60px 0px;
    background: #f4f4f4;
}

.missionVision h5 {
    font-weight: 600;
    font-family: 'Neue Haas Grotesk Display Pro', sans-serif;
    font-size: 35px;
    margin-bottom: 15px;
}

.missionVision p {
    font-size: 20px;
    font-weight: 300;
}

.topBar {
    background: #ddd;
    padding: 5px 0px;
}

.topBar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.topBar a {
    color: black;
    font-weight: 500;
    font-size: 14px;
    margin: 0px 5px;
}

footer .socialMedia a {
    color: white;
    /* width: 35px; */
    line-height: 35px;
    text-align: center;
    border-radius: 50%;
    margin-right: 15px;
}

.contactPage {
    padding: 70px 0px;
}

.contactPage .title {
    font-size: 60px;
    margin-bottom: 60px;
}

.contactPage .officeAddress {
    padding: 20px;
    height: 100%;
    background: white;
    border-radius: 10px;
    box-shadow: rgba(0, 0, 0, 0.09) 0px 6px 16px;
}

.contactPage .officeAddress p {
    text-align: left;
    margin-bottom: 0px;
    margin-top: 10px;
    min-height: 72px;
    font-size: 14px;
}

.contactPage .officeAddress h5 {
    /* font-family: 'Neue Haas Grotesk Display Pro', sans-serif; */
    font-weight: bold;
    font-size: 28px;
}

.contactPage .officeAddress img {
    margin-bottom: 20px;
}

.contactPage .officeAddress ul {
    padding-left: 0px;
    margin-bottom: 0px;
    padding-top: 20px;
    margin-top: 20px;
    border-top: 1px solid #ddd;
}

.contactPage .officeAddress ul li {
    list-style: none;
    text-align: left;
    margin-bottom: 15px;
}

.contactPage .officeAddress ul li i {
    margin-right: 0px;
}

.contactPage .officeAddress ul li a {
    color: black;
    font-size: 15px;
    font-weight: 500;
}

.contactPage form {
    background: white;
    height: 100%;
    padding: 20px;
    padding-bottom: 30px;
    margin-bottom: 30px;
    padding-top: 0px;
    border-radius: 10px;
    box-shadow: rgba(0, 0, 0, 0.09) 0px 6px 16px;
}

.contactPage form input {
    border-radius: 10px;
    padding: 10px;
}

.contactPage form label {
    font-weight: 500;
    font-size: 14px;
    margin-bottom: 3px;
}

.contactPage form textarea {
    border-radius: 10px;
}

.contactPage .offices{
    margin-left: -25px;
    margin-right: -25px;
}

.disclaimer .privatyUl{
    padding-left: 15px;
    margin-bottom: 30px;
}

.disclaimer .privatyUl li{
    margin-bottom: 10px;
    text-align: justify;
}

.proBonoRow img{
    border-radius: 10px;
}


.singleAcademicInitiatives{
    background: white;
    box-shadow: rgba(0, 0, 0, 0.09) 0px 6px 16px;
    border: 1px solid #efebeb;
    border-radius: 10px;
    padding: 25px;
    margin-bottom: 25px;
}
.singleAcademicInitiatives img{
    border-radius: 10px;
}

.singleAcademicInitiatives h4{
    font-size: 30px;
    margin-bottom: 15px;
}

.singleAcademicInitiatives p{
    font-size: 14px;
}

.owl-carousel .owl-prev{
    position: absolute;
    left: -50px;
    top: 45%;
    width: 50px;
    height: 50px;
    background: #fff;
    border-radius: 50%;
    font-size: 20px;
    border: 1px solid !important;
}

.owl-carousel .owl-next{
    position: absolute;
    right: -50px;
    top: 45%;
    width: 50px;
    height: 50px;
    background: #fff;
    border-radius: 50%;
    font-size: 20px;
    border: 1px solid !important;
}

.insigntRow .card{
    margin: 0px !important;
}

footer .btn-danger{
    background: #d8bdb2 !important;
    color: black;
    border-color: #d8bdb2 !important;
    font-weight: 600;
}

#redirectToPage{
    /* background-color: black;
    color: white; */
}

.fractionalGC{
    padding: 60px 0px;
    background: linear-gradient(90deg, rgb(13 13 13) 48%, rgba(242, 41, 91, 0) 82%), url(../img/gcc.png);
    background-size: contain;
    background-position: 100%;
    height: 600px;
    background-color: black;
    display: flex;
    align-items: center;
}

.fractionalGC h1{
    margin-bottom: 20px;
    font-size: 55px;
    font-weight: 500;
    color: #fff;
}

.fractionalGC h5{
    font-size: 35px;
    font-weight: 200;
    margin-bottom: 20px;
    color: #fff;
}

.fractionalGC p{
    font-size: 16px;
    margin-bottom: 0px;
    color: #fff;
    opacity: 0.7;
}

.fractionalGC img{
    border-radius: 20px;
    box-shadow: 2px 19px 100px 37px #ffffff5c;
}

.fractionalIntro{
    padding-top: 60px;
    padding-bottom: 70px;
    background: white;
}

.fractionalIntro h2{
    font-size: 45px;
    margin-bottom: 20px;
}

.fractionalIntro h3{
    font-size: 35px;
    font-weight: 600;
    margin-bottom: 20px;
}

.fractionalIntro p{
    font-size: 16px;
    font-weight: 300;
    margin-bottom: 0px;
}

.fractionalIntro p b{
    font-weight: 500;
}


.fractionalBenefits{
    padding: 100px 0px;
    background: white;
}

.fractionalBenefits h2{
    font-size: 45px;
}

.fractionalBenefits p{
    font-size: 16px;
    opacity: 0.7;
}

.fractionalBenefits img{
    border-radius: 20px;
    position: sticky;
    top: 20px
}

.fractionalBenefits ul{
    margin-top: 30px;
    margin-bottom: 0px;
    padding-left: 0px;
}

.fractionalBenefits ul li{
    list-style: none;
    margin-bottom: 20px;
    padding-bottom: 20px;
    font-size: 17px;
    border-bottom: 1px solid #c2c2c2;
}


.fractionalBenefits ul li:last-child{
    margin-bottom: 0px;
    border: none;
}

.fractionalBenefits ul li h5{
    font-weight: 500;
    font-size: 18px;
}

.fractionalComparison{
    padding-bottom: 100px;
    background: white;
}

.fractionalComparison h2{
    font-size: 45px;
    margin-bottom: 30px;
}

.fractionalComparison table{
    border: 1px solid #000;
}

.fractionalComparison table th{
    padding: 20px;
    background: #d8bdb257;
    border-color: #e6c4ba;
}

.fractionalComparison table th.no-bg{
    background: white;
    border-color: #dee2e6;
}

.fractionalComparison table td{
    vertical-align: middle;
    border-color: #dee2e6;
}

.keyFocusArea{
    padding: 60px 0px;
}

.keyFocusArea .title{
    font-size: 45px;
    margin-bottom: 40px;
}
 
.keyFocusArea .card{
    padding: 30px;
    border-radius: 15px;
    height: 100%;
    border: none;
    transition: 0.5s;
    cursor: pointer;
    box-shadow: rgba(0, 0, 0, 0.09) 0px 6px 16px;
}

.keyFocusArea .card:hover{
    box-shadow: 10px 10px 0px;
    transform: translateY(-5px);
}

.keyFocusArea .card h5{
    margin-bottom: 5px;
    font-size: 30px;
    font-weight: 300;
}

.keyFocusArea .card ul{
    padding: 0px;
    margin: 0px;
}

.keyFocusArea .card ul li{
    list-style: none;
    margin-top: 15px;
    position: relative;
    padding-left: 30px;
    opacity: 0.7;
}

.keyFocusArea .card ul li::before{
    content: "\f058";
    width: 16px;
    height: 16px;
    font-family: "Font Awesome 6 Pro";
    position: absolute;
    left: 0px;
    top: 0px;
    font-size: 22px;
    color: black;
    font-weight: 600;
}








@media only screen and (max-width: 1500px) {
    .container-custom {
        padding-left: 80px;
    }
}

@media only screen and (max-width: 1366px) {
    /* .fractionalGC h1 {
        font-size: 40px;
    } */

    .fractionalIntro h2{
        font-size: 45px;
    }

    .fractionalIntro h3{
        font-size: 30px;
    }

    .fractionalBenefits h2 {
        font-size: 35px;
    }

    .fractionalComparison h2{
        font-size: 35px;
    }

    .practice_areas .card h6 {
        font-size: 20px;
    }

    .heroSection h1 {
        font-size: 80px;
    }

    .about h6 {
        font-size: 45px;
    }

    .about p {
        font-size: 18px;
    }

    .practice_areas h2 {
        font-size: 50px;
    }

    .our_peoples h2 {
        font-size: 50px;
    }

    .our_peoples .para {
        font-size: 18px;
    }

    .insights h2 {
        font-size: 50px;
    }

    .insights .nav .nav-link {
        font-size: 18px;
    }

    .insights .card h6 {
        font-size: 20px;
    }

}

@media only screen and (max-width: 700px) {

    .fractionalGC h1{
        font-size: 40px;
    }
    .fractionalGC h5{
        font-size: 30px;
    }
    .fractionalIntro h2 {
        font-size: 35px;
        margin-bottom: 25px;
        text-align: center;
    }

    .fractionalBenefits{
        padding: 50px 0px;
    }

    .keyFocusArea .card h5{
        font-size: 25px;
    }
    .fractionalBenefits img{
        margin-bottom: 25px;
    }

    .keyFocusArea .title {
        font-size: 35px;
        margin-bottom: 25px;
    }

    .fractionalGC {
        padding-top: 10px;
        background-repeat: no-repeat;
        background-position: bottom;
        background: linear-gradient(180deg, rgb(13 13 13) 40%, rgba(242, 41, 91, 0) 82%), url(../img/gcc.png);
    }
    
    .fractionalGC img{
        margin-bottom: 30px;
    }
    .fractionalIntro{
        margin-top: 0px;
        padding-top: 40px;
        padding-bottom: 50px;    
    }
    .cookie_policy{
        padding: 15px 5px;
    }

    #disclaimer_modal p{
        font-size: 12px !important;
    }
    .singleAcademicInitiatives img{
        margin-bottom: 30px;
    }
    .proBonoRow{
        padding: 10px;
    }
    .proBonoRow img{
        margin-bottom: 30px;
    }

    .contactPage form{
        margin-left: 0px;
        margin-right: 0px;
    }
    .contactPage .offices{
        margin-left: -10px;
        margin-right: -10px;
    }
    .insights .catagotyLI {
        display: none;
    }

    .contactPage .officeAddress {
        margin-top: 20px;
    }

    .contactPage form input {
        margin-bottom: 20px;
    }

    .contactPage form textarea {
        margin-bottom: 20px;
    }

    .feder-1 img {
        width: 120px;
    }

    .topBar {
        display: none;
    }

    .container-custom {
        padding-left: 20px;
    }

    .heroSection h1 {
        font-size: 60px;
    }

    .hero_slider.swiper-container {
        display: none;
    }

    .swiper-scrollbar {
        display: none;
    }

    .about h6 {
        font-size: 33px;
        margin-bottom: 30px;
        font-weight: 500;
    }

    .practice_areas h2 {
        font-size: 45px;
        margin-bottom: 20px;
    }

    .our_peoples h2 {
        font-size: 45px;
    }

    .insights .container {
        padding: 80px 20px;
    }

    .insights .card {
        margin-bottom: 30px;
        height: unset;
    }

    .user_details .Userabout .insights .card {
        margin-bottom: 0px !important;
    }

    .user_details .Userabout .insights .card h6 {
        font-size: 16px !important;
    }

    .insights .card h6 {
        font-size: 24px;
    }

    .insights .card img {
        height: unset;
    }

    .insights h2 {
        font-size: 40px !important;
    }

    footer .logo {
        width: 180px;
        filter: invert(1);
        margin: auto;
        display: block;
    }

    .our_peoples .card h5 {
        font-size: 16px;
    }

    .insights .container {
        padding: 60px 0px;
    }

    .navbar-toggler {
        border: none;
    }

    .navbar-toggler:focus {
        box-shadow: none;
        border: none;
        outline: none;
    }

    .service_details {
        display: block;
    }

    .service_details .left_pannel {
        display: none;
    }

    .service_details .right_pannel {
        width: calc(100% - 0px);
        padding: 20px;
    }

    .service_details .right_pannel h4 {
        margin-top: 0px;
    }

    .service_details .right_pannel .insights {
        padding-top: 0px;
    }

    .career_options .wrapper {
        padding: 20px;
    }

    .career_options .wrapper .nav-link {
        padding: 10px 20px;
    }

    .career_options .wrapper h2 {
        font-size: 45px;
    }

    .insight_details .bg_insight .heading h5 {
        font-size: 30px;
    }

    .cookie_policy p {
        margin-bottom: 20px !important;
        font-size: 12px !important;
    }

    #cookie_modal .btn {
        padding: 10px 20px
    }

    .user_details .single_list h6 {
        font-size: 25px;
    }

    .user_details h2 {
        font-size: 30px;
        margin-bottom: 10px;
        margin-top: 30px;
    }

    #contactUs {
        display: none;
    }

    .service_details .right_pannel h2 {
        font-size: 35px !important;
        margin-bottom: 15px;
    }

    .user_details .newHeading {
        display: block;
    }

    .user_details h2 small {
        font-size: 14px;
    }

    .user_details .designation {
        font-weight: 500;
        font-size: 15px;
        margin-bottom: 10px;
        display: block;
    }

    .user_details .single_list .row .col-md-auto {
        margin-bottom: 0px;
    }

    .user_details .bg_dark {
      
        padding-bottom: 40px;
        padding-top: 40px;
    }

    .user_details {
        padding-top: 0px;
    }

    footer .col-6 {
        width: 100%;
    }

    .service_details .right_pannel .wrapper {
        display: block;
    }

    .service_details .right_pannel .wrapper .single {
        border-right: none;
        margin-right: 0px;
        padding-right: 0px;
        padding-top: 10px;
        padding-bottom: 10px;
        border-bottom: 1px solid #ddd;
    }

    .service_details .right_pannel .bookingWrapper {
        margin-top: 30px;
    }

    .our_peoples .col-md-3 {
        width: 50%;
    }

    .heroSection{
        padding: 100px 0px;
        height: unset;
    }
    .user_details .newHeading .socials img{
        width: 50px;
    }

    .career .card img {
        width: 100px !important;
        height: 100px;
        object-fit: contain;
    }

    .owl-carousel .owl-prev {
        position: absolute;
        left: 0px;
        top: 45%;
        width: 50px;
        height: 50px;
        background: #fff !important;
        border-radius: 50%;
        font-size: 20px;
        border: 1px solid !important;
    }

    .owl-carousel .owl-next{
        right: 0px;
        background: #fff !important;
    }

    .insight_details .bg_insight{
        padding-top: 30px;
    }

    .insight_details .insight_texts p{
        font-size: 16px;
    }

    .insight_details .bg_insight .heading ul li:last-child{
        margin-right: 0px;
        padding-right: 0px;
        font-size: 13px;
    }
    p{
        font-size: 16px !important;
    }

    .our_peoples .card .card-body{
        padding: 10px !important;
    }

    .navbar .navbar-nav .nav-item {
        padding-left: 0px;
    }

    .btn-main{
        font-size: 14px;
    }
    footer h6 {
        color: white;
        font-weight: 600;
        font-size: 20px;
        margin-bottom: 15px;
        height: unset;
    }

    .keyFocusArea .title{
        font-size: 35px;
    }
}