@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap');

/***** General CSS *****/

body {
    word-break: break-word;
    font: 15px/25px 'Poppins', sans-serif;
    color: #393939;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: #28b16d;
    white-space: initial;
}

a:hover,
a:focus {
    text-decoration: none;
    color: #393939;
}

a:hover {
    transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
}

img {
    max-width: 100%;
}

input[type="text"]:focus,
textarea:focus,
input[type="password"]:focus,
select:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="tel"]:focus,
input[type="number"]:focus {
    transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    outline: none;
}

select,
input[type="text"],
input[type="password"],
input[type="email"],
input[type="url"],
input[type="number"],
textarea,
input[type="tel"] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

ul {
    margin: 0 0 20px;
    padding: 0;
    list-style-type: none;
}

p {
    font-weight: 500;
    line-height: 25px;
    font-family: 'poppins-regular';
    color: #000000a6;
}


/***** Font Files *****/

@font-face {
    font-family: 'poppins-regular';
    src: url(../font/Poppins-Regular.ttf);
    font-weight: 400;
    font-style: normal
}
@font-face {
    font-family: 'poppins-medium';
    src: url(../font/Poppins-Medium.ttf);
    font-weight: 400;
    font-style: normal
}
@font-face {
    font-family: 'trajanpro-regular';
    src: url(../font/TrajanPro-Regular.ttf);
    font-weight: 400;
    font-style: normal
}


/***** Custom Classes *****/

.noPadding {
    padding: 0;
}

.noLeft {
    padding-left: 0;
}

.noRight {
    padding-right: 0;
}

.centerCol {
    float: none;
    margin: 0 auto;
}

.pt_8 {
    padding-top: 80px;
}

.pb_8 {
    padding-bottom: 80px;
}

.py_8 {
    padding: 80px 0px;
}

.theme_btn {
    padding: 14px 22px;
    border: unset;
    border-radius: 50px;
    color: #ffffff;
    z-index: 1;
    position: relative;
    font-size: 16px;
    transition: all 250ms;
    overflow: hidden;
    display: inline-block;
    font-family: 'poppins-medium';
    background: linear-gradient(184deg,rgba(114, 138, 171, 1) 0%, rgba(94, 122, 159, 1) 50%, rgba(81, 110, 151, 1) 100%);
}

.theme_btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0;
    border-radius: 14px;
    background-color: #000000;
    z-index: -1;
    -webkit-box-shadow: 4px 8px 19px -3px rgba(0, 0, 0, 0.27);
    box-shadow: 4px 8px 19px -3px rgba(0, 0, 0, 0.27);
    transition: all 250ms
}

.theme_btn:hover {
    color: #ffffff;
}

.theme_btn:hover::before {
    width: 100%;
}

.flexRow {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
}

.flexCol {
    -webkit-box-flex: 1;
    -moz-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
    align-items: center;
}

h1 {
    font-family: 'trajanpro-regular';
    font-size: 63px;
    line-height: 1.2;
    color: #fff;
    font-weight: 500;
    margin: 0 0 8px;
}

h2 {
    font-family: 'trajanpro-regular';
    font-size: 60px;
    line-height: 1.2;
    color: #000000;
    font-weight: 500;
    margin: 0 0 8px;
}

h3 {
    font-family: 'trajanpro-regular';
    font-size: 30px;
    line-height: 1.2;
    color: #000000;
    font-weight: 500;
    margin: 0 0 6px;
}

h4 {
    font-family: 'trajanpro-regular';
    font-size: 25px;
    line-height: 1.2;
    color: #000;
    font-weight: 500;
    margin: 0 0 6px;
}

h5 {
    font-family: 'trajanpro-regular';
    font-size: 20px;
    line-height: 1.2;
    color: #393939;
    font-weight: 500;
    margin: 0 0 20px;
}

h6 {
    font-family: 'poppins-regular';
    font-size: 18px;
    line-height: 1.2;
    color: #393939;
    font-weight: 500;
    margin: 0 0 4px;
}

select {
    background: #fff url('../images/arrow.png') no-repeat right;
    padding: 0 40px 0 30px;
}

::-webkit-input-placeholder {
    color: #575757;
}

::-moz-placeholder {
    color: #575757;
    opacity: 1;
}

:-ms-input-placeholder {
    color: #575757;
}

:-moz-placeholder {
    color: #575757;
    opacity: 1;
}


/*header css start */

.menuSec {
    padding: 20px 0;
}

.menuSec img {
    margin: 0;
}

.menuSec ul {
    position: relative;
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: center;
    text-transform: capitalize;
}

.menuSec ul li {
    position: relative;
    display: inline-block;
    margin: 0;
    padding: 0;
}

.menuSec li ul {
    display: none;
}

.menuSec ul li a {
    position: relative;
    display: inline-block;
    text-decoration: none;
    color: #000000;
    padding: 10px 23px;
    font-size: 14px;
    font-family: 'poppins-regular';
}

/* .menuSec ul li a:after {
    content: '';
    position: absolute;
    top: 35%;
    right: 0;
    width: 1px;
    height: 13px;
    background-color: #393939;
} */

.menuSec ul li:last-child a:after {
    display: none;
}

.menuSec ul li a:hover,
.menuSec ul li a.active {
    transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    color: #56729a;
}

.menuSec li:hover>ul {
    display: block;
    position: absolute;
    z-index: 1000;
    background-color: #000000;
    left: 0px;
    width: 230px;
    text-align: left;
    top: 38px;
}

.menuSec li>ul>li>a {
    border: none;
    padding: 13px 20px !important;
    color: #fff !important;
    overflow: hidden;
    font-size: 13px;
    line-height: 20px;
}

.menuSec li>ul>li,
.menuSec li>ul>li>a {
    display: block;
    margin: 0;
}

.menuSec li>ul>li>a:before,
.menuSec li>ul>li>a:after {
    display: none;
}

.menuSec li:hover li {
    float: none;
}

.menuSec li ul li a:hover {
    background-color: #ffffff;
    color: #000000 !important;
}

.menuSec ul ul ul {
    left: 100%;
    top: 0;
}

.menuSec ul:before,
.menuSec ul:after {
    content: " ";
    display: table;
}

.menuSec ul:after {
    clear: both;
}

.menuSec li>ul>li:hover>ul {
    left: 230px;
    top: 0px;
    width: 270px;
}

.droopdwon li:hover>ul {
    display: block;
    position: absolute;
    z-index: 1000;
    background-color: #000000;
    left: 0px;
    width: 230px;
    text-align: left;
    top: 40px;
}

.droopdwon {
    float: left;
}

.droopdwon li:hover li a:hover {
    background-color: #ffffff;
    color: #000 !important;
}


/*header css start */

.dropdown-menu {
    position: absolute !important;
    z-index: 1000;
    display: block;
    min-width: 10rem;
    padding: 0.5rem 0;
    margin: 0;
    font-size: 1rem;
    color: #212529;
    text-align: left !important;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: 0.25rem;
}


/*banner css start */


/* Tab slider fix  */

.tab_sec .tab-pane {
    display: block;
    border: 0;
    height: 0;
}

.tab_sec .tab-pane.active {
    display: block !important;
    height: auto;
}


/* Tab slider fix  */

.carousel-inner>.item>a>img,
.carousel-inner>.item>img {
    width: 100%;
}

.carousel-control.right,
.carousel-control.left {
    background: none;
    opacity: 1;
    width: 50px;
    height: 50px;
    top: initial;
    top: 40%;
    background: rgba(255, 255, 255, 0.1);
    text-shadow: none;
}

.carousel-control.right:hover,
.carousel-control.left:hover {
    background: rgba(255, 27, 27, 0.6);
    color: #fff;
}

.carousel-control.right .fa,
.carousel-control.left .fa {
    position: relative;
    top: 12px;
    font-size: 20px;
    color: #fff;
    opacity: 0.5;
}

.carousel-control.right {
    right: 0px;
}

.carousel-control.left {
    left: 0px;
}

.carousel-indicators [data-bs-target] {
    box-sizing: content-box;
    flex: 0 1 auto;
    width: 10px;
    height: 12px;
    padding: 0;
    margin: 3px!important;
    text-indent: -999px;
    cursor: pointer;
    background-color: #fff;
    background-clip: padding-box;
    border: 0;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    opacity: 1;
    /* transition: opacity 0.6s ease; */
    border-radius: 20px;
}

.carousel-caption {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    left: 0;
    right: 0;
    margin: 0;
    padding: 0;
    color: #fff;
    text-align: left;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    background: rgba(0, 0, 0, 0.1);
}

.carousel-indicators li {
    border: none;
    border-radius: 100%;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    background: #fff;
    width: 12px;
    height: 12px;
    margin: 0;
}

.carousel-indicators .active {
    margin: 0;
    background-color: #28b16d;
    width: 10px;
    height: 12px;
}


/*banner css end*/

.blog_sec {
    padding: 5% 0;
}


/* Tabs  */

.tab_sec .nav-tabs .nav-link.active {
    background: #242889;
    color: #fff;
}

.tab_sec .nav-tabs .nav-link {
    background: #ccc;
    border-radius: 50px;
    color: #000;
    padding: 7px 28px;
}

.tab_sec .nav-tabs {
    border: none;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
}


/* Tabs  */



.header-btn {
    display: flex;
    justify-content: end;
}
.container-fluid {
    padding: 0px 100px;
}

.dis-block{
    display: block;
}
.banner-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.banner-img {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    z-index: -1;
}

section.banner-sec {
    position: relative;
    height: 100vh;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.banner-text {
    background: #0000002b;
    padding: 50px 50px;
    text-align: center;
    border-radius: 10px;
    font-size: 14px;
    border: 1px solid #fff;
}

.banner-text p {
    color: #fff;
}
.about-img img {
    width: 100%;
}

.about-textulheading h2 {
    margin-bottom: 0px;
}

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

.about-text ul {
    display: flex;
    align-items: end;
    gap: 20px;
}


.about-text ul li .about-textulheading {
    width: 130px;
}

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

.about-text p {
    text-align: justify;
}

.about-text {
    width: 90%;
}
section.about-sec {
    margin: 100px 0px;
}
.our-practice-top-heading {
    width: 60%;
    text-align: center;
    margin: 0 auto;
    margin-bottom: 30px;
}

.our-practice-box-img img {
    width: 100%;
    border-radius: 11px;
}

.our-practice-box-text {
    padding: 20px 20px;
    text-align: center;
}

.our-practice-box {
    border: 1px solid #00000036;
    border-radius: 12px;
    transition: 0.5s;
}

.our-practice-box:hover {
    background: #fff;
    border: unset;
    box-shadow: 0px 0px 6px 0px #00000082;
    transition: 0.5s;
}
section.our-practice-sec {
    margin-bottom: 100px;
}


/*---------------------------------------------------- Services Section Start ------------------------------------------------------------- */

.how-it-work-heading {
    text-align: center;
}

.how-it-work-heading label {
    margin: 0 auto;
    margin-bottom: 5px;
}

.how-it-work-heading p {
    width: 52%;
    margin: 0 auto;
    color: #7c7c7c;
}

.how-it-work-boxs {
    border: 1px solid #bfbfbf73;
    padding: 30px 25px;
    border-radius: 20px;
    margin-top: 100px !important;
    transition: 0.5s;
    background: #fff;
}

.how-it-work-boxs h3 {
    margin-bottom: 70px;
    margin-top: 10px;
    font-size: 25px;
    /* text-transform: uppercase; */
}

.how-it-work-boxs.one {
    width: 88%;
}

.how-it-work-boxs.two {
    width: 88%;
    margin: 0 auto;
    margin-top: 20px !important;
}

.how-it-work-boxs p {
    color: #7c7c7c;
    width: 100%;
}



/* @keyframes floatBadge {
    0% {
        transform: rotate(-4deg);
    }

    50% {
        transform: rotate(4deg);
    }

    100% {
        transform: rotate(-4deg);
    }
} */

.how-it-work-boxs.three {
    width: 85%;
    margin: 0 0 0 auto;
}

.how-it-work-boxs:hover {
    transition: 0.5s;
    box-shadow: 0px 0px 8px 0px #0000005e;
    border: unset;
}

section.how-it-work-sec {
    margin-bottom: 100px;
    position: relative;
    padding: 200px 0px 0px;
}

section.how-it-work-sec:before {
    content: "";
    position: absolute;
    background-image: url(../images/how-it-work-bgimg.png);
    width: 100%;
    height: 500px;
    background-size: cover;
    z-index: -1;
    right: 0;
    left: 0;
    margin: 0 auto;
    top: 0;
}
section.how-it-work-sec .container-fluid {
    padding: 0px 210px;
}
section.how-it-work-sec:after {
    position: absolute;
    content: '';
    top: 140px;
    bottom: 0;
    right: 0;
    left: 0;
    height: 80%;
    width: 80%;
    z-index: -1;
    background: #ffffff;
    margin: 0 auto;
    border-radius: 20px;
}

.how-it-work-toptext p {
    text-align: end;
}
/*---------------------------------------------------- Services Section End ------------------------------------------------------------- */




/*---------------------------------------------------- Testimonials Section Start ------------------------------------------------------------- */

.testi-head {
    margin-bottom: 35px;
}

.testi-user img {
    width: max-content;
}

.testi-user {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 20px;
    justify-content: center;
}

.testimonial-sec {
    margin-bottom: 100px;
}


/* .slick-arrow:before {
    content: '\f060';
    font-family: 'FontAwesome';
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    font-size: 24px;
    justify-content: center;
    background: #3e8865;
    color: #fff;
    opacity: 0.4;
    transition: 0.5s all;
} */

/* .slick-arrow {
    top: -73px;
}

.slick-prev {
    left: unset;
    right: 100px;
}

.slick-next {
    right: 40px;
} */

.testi-main {
    padding: 75px 45px 28px;
    border: 1px solid #e6e6e6;
    border-radius: 10px;
    background-color: rgb(255, 255, 255);
    box-shadow: 0px 5px 21px 0px rgb(0 0 0 / 5%);
    text-align: center;
    transition: 0.5s all;
    position: relative;
    margin-top: 30px;
}

.testi-slider .slick-slide {
    margin: 20px 20px;
}

.testi-main p {
    color: #7c7c7c;
    font-size: 16px;
    line-height: 27px;
}

/* .slick-next:before {
    content: '\f061';
} */

/* .slick-arrow:hover:before {
    opacity: 1;
} */

.testi-slider .slick-list.draggable {
    padding: 0 !important;
    margin-left: -20px;
}

.slick-current .testi-main, .testi-main:hover {
    box-shadow: 0px 0px 6px 0px #00000021;
}

.testi-usrtxt span {
    font-size: 14px;
    color: #7c7c7c;
}
.testi-icon {
    position: absolute;
    top: -30px;
    left: 30px;
    opacity: 0.5;
}
.testi-slider .slick-active {
    opacity: 1;
}

.slick-current .testi-main .testi-icon {
    opacity: 1;
}

.testi-usrtxt h6 {
    font-size: 24px;
    font-family: 'trajanpro-regular';
}



.testi-usrtxt {
    text-align: start;
}
section.testimonial-sec .container-fluid {
    padding: 0px;
}

.testi-head {
    width: 48%;
    margin: 0 auto;
    text-align: center;
}
.testi-slider .slick-list.draggable {
    padding: 0px 500px !important;
}
.testi-slider .slick-slide {
    transition: all ease-in-out .3s;
    opacity: 1;
}
/*---------------------------------------------------- Testimonials Section End ------------------------------------------------------------- */



/*---------------------------------------------------- Footer Section Start ------------------------------------------------------------- */

footer {
    background: #101010;
    padding-top: 160px;
}

footer * {
    color: #fff;
}

footer a {
    transition: 0.5s all;
}

footer h5 {
    margin-bottom: 20px;
}

.contact-info ul li, .quick-links ul li {
    margin-bottom: 15px;
}

.socialF-info i {
    font-size: 23px;
    opacity: 40%;
    transition: 0.5s all;
}

.socialF-info {
    margin-right: 10%;
    float: inline-end;
}

.card-credit {
    text-align: end;
}

.footer-info {
    margin-top: 0px;
}

.email-info-ftr input::placeholder {
    color: #fff;
    opacity: 60%;
}

.contact-info ul li a:hover, .contact-info ul li p:hover, .quick-links ul li a:hover {
    opacity: 1 !important;
}

.contact-info ul li a, .contact-info ul li p, .quick-links ul li a {
    opacity: 1;
    transition: 0.5s all;
    color: #fff;
}

.socialF-info i:hover {
    color: #fff;
    opacity: 1;
}

.footer-last-disline {
    padding: 20px 0;
    border-top: 1px solid #4c4c4c;
    margin-top: 40px;
}

.socialF-info ul {
    display: block;
    align-items: center;
    gap: 30px;
}

.email-info-ftr {
    margin-top: 0px;
    position: relative;
}

.email-info-ftr input {
    border: unset;
    border-bottom: 1px solid #fff;
    background: transparent;
    width: 100%;
    height: auto;
    padding: 0px 0px 22px 0px;
    margin-bottom: 20px;
}

.email-info-ftr button {
    position: absolute;
    top: -5px;
    right: 0;
    border-radius: 50%;
    border: unset;
    background: #ffffff;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-info p {
    width: 93%;
    opacity: 1;
    margin-top: 15px;
}

.email-info-ftr button i {
    color: #000000;
    font-size: 16px;
    transform: rotate(-25deg);
}
.socialF-info ul li {
    margin-bottom: 10px;
}

.footer-last-disline p {
    margin-bottom: 0px;
    text-align: center;
}

/*---------------------------------------------------- Footer Section End ------------------------------------------------------------- */




/*---------------------------------------------------- Contact Section Start ------------------------------------------------------------- */

.contact-txt {
    padding: 50px 50px;
    height: 100%;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: right;
    border-radius: 10px;
    background: linear-gradient(184deg, rgba(114, 138, 171, 1) 0%, rgba(94, 122, 159, 1) 50%, rgba(81, 110, 151, 1) 100%);
    margin-left: -10px;
}

.contact-sec.inner {
    margin-bottom: 100px;
}

.contact-sec {
    margin-bottom: -90px;
}

.contact-form {
    border-radius: 0px 0px 0px 0px;
    padding: 50px 40px;
    background: #fff;
}

.contact-form input, .contact-form textarea {
    width: 100%;
    height: 55px;
    padding: 10px 3px;
    border: unset;
    border-bottom: 1px solid #7c7c7c;
    margin-bottom: 15px;
    border-radius: 0px;
}

.contact-form textarea {
    resize: none;
    height: 120px;
}

.contact-form h4 {
    margin-bottom: 20px;
    font-size: 42px;
}

.contact-form input::placeholder, .contact-form textarea::placeholder {
    color: #7c7c7c;
    font-size: 14px;
    font-family: 'Poppins';
}

.contact-txt h4 {
    font-size: 42px;
    margin-bottom: 10px;
}

.contact-txt * {
    color: #fff;
}

.contact-txt p {
    width: 86%;
    opacity: 60%;
}

.contact-txt ul li {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 26px;
}

.contact-txt ul li p {
    opacity: 100% !important;
    font-size: 16px;
    margin-bottom: 0px;
}

.contact-txt ul li i {
    /* background: #fff; */
    /* width: 50px; */
    /* height: 50px; */
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 22px;
}

.contact-txt ul li a {
    font-size: 16px;
}

.contact-txt ul {
    margin-top: 20px;
}

.contact-sec .row {
    border-radius: 7px;
    overflow: hidden;
    width: 98%;
    margin: 0px auto;
    box-shadow: 0px 31px 38px 0px rgb(0 0 0 / 44%);
}

.contact-form .row {
    box-shadow: unset;
    width: 100%;
}

/*---------------------------------------------------- Contact Section End ------------------------------------------------------------- */



section.banner-sec.inner-banner {
    height: 70vh;
}
footer.inner-footer {padding-top: 70px;}
section.our-practice-sec.inner-sec {
    margin: 100px 0px;
}
.our-practice-detail-img img {
    width: 100%;
}
section.contact-sec.inner-page {
    margin: 100px 0px;
}


section.get-started-sec {
    margin-bottom: 100px;
}

.getstarted-head {
    text-align: center;
    margin-bottom: 50px;
}

.getstarted-head h2 {
    margin-bottom: 9px;
}

.getstarted-head p {
    opacity: 70%;
    width: 85%;
    margin: 0 auto;
}

section.get-started-sec input, section.get-started-sec select {
    width: 100%;
    height: 50px;
    border: unset;
    border-bottom: 1px solid #c7c7c7;
    margin-bottom: 40px;
    padding: 0 0;
    color: #000;
}

section.get-started-sec textarea {
    width: 100%;
    height: 120px;
    border: unset;
    border-bottom: 1px solid #c7c7c7;
    align-content: end;
    padding-bottom: 12px;
    margin-bottom: 30px;
    color: #000;
    resize: none;
}

.lst-btn-get {
    margin: 0 auto;
    text-align: center;
}

section.get-started-sec.inner-page {
    margin: 100px 0px;
}