body {
    margin: 0;
    padding: 0;
    font-family: 'Times New Roman', Times, serif;
    font-size: 28px;
    line-height: 48px;
    color: #6E6F70;
    background-color: #fff;
}
button {
    font-family: 'Times New Roman', Times, serif;
}
.container {
    max-width: 1600px;
}
.header-wrapper {
    position: fixed;
    z-index: 10;
    top: 0;
    left: 0;
    width: 100%;
    transition: all 0.1s ease-out;
}
.navbar {
    background: linear-gradient(to right, #3C3C47 0%, #1E1E26 100%);
    border-radius: 0px 0px 264px 264px;
    padding: 40px 96px !important;
    transition: all 0.1s ease-out;
}
.nav-toogler {
    display: none;
}
.brand {
    display: inline-block;
    width: 200px;
    background-color: #fff;
    border-radius: 5px;
    overflow: hidden;
}
.brand img {
    max-width: 100%;
}
.nav-menu {
    display: flex;
    margin: 0;
    padding: 0;
    list-style: none;
}
.nav-menu li a {
    color: #fff;
    text-decoration: none;
    font-size: 15px;
    line-height: 15px;
    display: inline-block;
    padding: 12px;
}
.nav-menu li a:hover {
    text-decoration: underline;
}
.advisor-btn {
    display: inline-block;
    font-size: 15px;
    line-height: 45px;
    border: 1px solid #fff;
    padding: 0 30px;
    margin-left: 30px;
    border-radius: 60px;
    color: #fff;
    text-decoration: transparent;

}
.advisor-btn:hover {
    background-color: #fff;
    color: #1E1E26;
}
.hero-wrapper {
    position: relative;
    min-height: 100vh;
    padding-top: 250px;
}
.hero-heading {
    font-size: 70px;
    line-height: 80px;
    color: #3C3C47;
    margin-bottom: 20px;
}
.hero-heading span {
    font-weight: bold;
}
.hero-text {
    font-size: 40px;
    line-height: 50px;
}
.hero-btns {
    display: flex;
    align-items: center;
    margin: 0;
    padding: 0;
    list-style: none;
    gap: 15px;
    margin-top: 40px;
}
.hero-btn {
    display: inline-block;
    font-size: 16px;
    text-decoration: none;
    line-height: 50px;
    padding: 0 30px;
    border-radius: 60px;
    color: #3C3C47 !important;
    position: relative;
    z-index: 1;
    background: linear-gradient(to right, #3C3C47, #1E1E26);
    padding: 3px;
    transition: 0.3s ease-in-out;
}
.hero-btn span {
    display: block;
    background: #fff;
    border-radius: 60px;
    padding: 0 27px;
    line-height: 44px;
}
.hero-btn:hover {
    box-shadow: 0px 0px 12px 8px rgba(0,0,0,0.18);
}
.org-bar {
    background: linear-gradient(to right, #EF4E0F 0%, #F2690C 100%);
    position: fixed;
    width: 40px;
    height: 300px;
    z-index: 10;
}
.mid {
    top: 50%;
    transform: translateY(-50%);
}
.left {
    left: 0;
    border-radius: 0 30px 30px 0;
}
.right {
    right: 0;
    border-radius: 30px 0 0 30px;
}
.bottom {
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 500px;
    height: 80px;
    border-radius: 30px 30px 0 0;
}
.inner-pad {
    padding: 0 96px;
}
.section-wrapper {
    padding: 160px 0;
    overflow: hidden;
}
.page-heading {
    font-size: 50px;
    line-height: 68px;
    color: #1E1E26;
    padding-left: 50px;
    padding-top: 20px;
    padding-bottom: 20px;
    position: relative;
    margin-bottom: 30px;
}
.page-heading::before {
    content: "";
    background-color: #EF4E0F;
    width: 3px;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
}
.bx {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    perspective: 800px;
}
.bx .icon {
    display: inline-block;
    padding: 10px;
    background-color: #f8f8f8;
    border-radius: 100%;
    transition: 0.4s ease-in-out;
    transform-style: preserve-3d;
}
.bx:hover .icon {
    transform: rotateY(180deg);
}
.bx .icon span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 200px;
    height: 200px;
    background-color: #f8f8f8;
    border: 10px solid #fff;
    border-radius: 100%;
}
.bx .icon img {
    max-width: 80px;
}
.bx h3 {
    font-size: 35px;
    color: #1E1E26;
    margin-top: 15px;
}
.header-wrapper.fixed .navbar {
    padding-top: 20px !important;
    padding-bottom: 20px !important;
}
.header-wrapper.fixed .brand {
    width: 112px;
}
.bg-wrapper {
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed !important;
}
.list-content li {
    color: #fff;
    list-style-type: circle;
}
.lft-bx {
    width: 691px;
}
.footer-wrapper {
    padding: 100px 0 0;
}
.contact-list {
    margin: 0;
    padding: 0;
    list-style: none;
}
.contact-list li {
    display: flex;
    align-items: center;
}
.contact-list li:not(:last-child) {
    margin-bottom: 15px;
}
.contact-list li i {
    color: #fff;
}
.contact-list li div {
    flex: 1;
    margin-left: 15px;
}
.contact-list li div, .contact-list li div a {
    font-size: 20px;
    line-height: 30px;
    color: #fff;
    text-decoration: none;
}
.social-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 55px;
    height: 55px;
    border: 1px solid #fff;
    border-radius: 100%;
    text-decoration: none;
    color: #fff;
}
.social-btn:hover {
    background-color: #EF4E0F;
}
.footer-heading {
    color: #fff;
    font-size: 30px;
    line-height: 40px;
}
.footer-links {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    align-items: center;
}
.footer-links li {
    font-size: 18px;
    line-height: 38px;
}
.footer-links a {
    color: #fff;
    text-decoration: none;
    display: inline-block;
    transition: 0.3s ease-in-out;
    padding: 20px;
}
.footer-links a:hover {
    color: #EF4E0F;
}
.footer-bottom {
    background-color: #fff;
    margin-top: 80px;
    padding: 80px 0;
    border-radius: 264px 264px 0 0;
}
.section-top-inner {
    padding-top: 250px;
    padding-bottom: 100px;
}
.dark-txt li {
    color: #1E1E26;
}
.content-heading {
    color: #1E1E26;
    font-size: 30px;
    line-height: 40px;
}
.bx2 {
    padding: 20px;
    background-color: #f8f8f8;
    border: 1px solid #3C3C47;
    border-radius: 10px;
    min-height: 202px;
}
.form-row input, .form-row textarea {
    width: 100%;
    height: 65px;
    padding: 0 20px;
    border-radius: 5px;
    border: 1px solid #6E6F70;
    margin-bottom: 20px;
    background-color: transparent;
    font-family: 'Times New Roman', Times, serif;
}
.form-row textarea {
    height: 300px;
    resize: none;
    padding: 20px;
}
.content p a {
    color: #3C3C47;
    text-decoration: none;
}
.content p a:hover {
    text-decoration: underline;
}
.nav-menu li {
    line-height: 35px;
}
#header-dropdown {
    display: none;
}
.whatsapp-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
}
.whatsapp-btn img {
    max-width: 150px;
}
.qxCTlb {
    font-size: 17px;
}
.poweredby-text a {
    color: #1E1E26;
    text-decoration: none;
}
.poweredby-text a:hover {
    text-decoration: underline;
}
@media only screen and (max-width: 1799px) {
    .container {
        max-width: 1540px;
    }
    .footer-links a {
        padding: 17px;
    }
    .bx2 {
        min-height: 250px;
    }
}
@media only screen and (max-width: 1599px) {
    .container {
        max-width: 1370px;
    }
    .hero-heading {
        font-size: 62px;
        line-height: 72px;
    }
    .hero-text {
        font-size: 34px;
        line-height: 44px;
    }
    .page-heading {
        font-size: 46px;
        line-height: 64px;
    }
    body {
        font-size: 26px;
        line-height: 46px;
    }
    .bx h3 {
        font-size: 31px;
    }
    .bx .icon span {
        width: 180px;
        height: 180px;
    }
    .footer-links a {
        padding: 11px;
    }
}
@media only screen and (max-width: 1399px) {
    .container {
        max-width: 1170px;
    }
    .hero-heading {
        font-size: 50px;
        line-height: 60px;
    }
    .hero-text {
        font-size: 30px;
        line-height: 40px;
    }
    .page-heading {
        font-size: 42px;
        line-height: 60px;
    }
    body {
        font-size: 22px;
        line-height: 42px;
    }
    .bx h3 {
        font-size: 27px;
    }
    .bx .icon span {
        width: 160px;
        height: 160px;
    }
    .section-wrapper {
        padding: 130px 0;
    }
    .footer-links li {
        font-size: 14px;
        line-height: 34px;
    }
    .contact-list li div, .contact-list li div a {
        font-size: 16px;
        line-height: 26px;
    }
    .footer-bottom {
        padding: 50px 0;
    }
    .section-top-inner {
        padding-top: 200px !important;
    }
    .content-heading {
        font-size: 23px;
        line-height: 33px;
    }
}
@media only screen and (max-width: 1199px) {
    .container {
        max-width: 970px;
    }
    .brand {
        width: 170px;
    }
    .navbar {
        border-radius: 0px 0px 160px 160px;
        padding: 30px 66px !important;
    }
    .inner-pad {
        padding: 0 66px;
    }
    .hero-wrapper {
        padding-top: 160px;
    }
    .hero-heading {
        font-size: 42px;
        line-height: 52px;
    }
    .hero-text {
        font-size: 22px;
        line-height: 32px;
    }
    .page-heading {
        font-size: 34px;
        line-height: 52px;
    }
    body {
        font-size: 18px;
        line-height: 38px;
    }
    .bx h3 {
        font-size: 23px;
    }
    .bx .icon span {
        width: 130px;
        height: 130px;
    }
    .bx .icon img {
        max-width: 64px;
    }
    .section-wrapper {
        padding: 100px 0;
    }
    .footer-links a {
        padding: 5px;
    }
    .advisor-btn {
        margin-left: 12px;
    }
    .whatsapp-btn img {
        max-width: 100px;
    }
}
@media only screen and (max-width: 991px) {
    .container {
        max-width: 760px;
    }
    .nav-toogler {
        display: inline-flex;
        width: 46px;
        flex-direction: column;
        background-color: transparent;
        border: none;
        outline: none;
        gap: 5px;
    }
    .bar {
        display: inline-block;
        width: 100%;
        background-color: #fff;
        height: 3px;
        border-radius: 60px;
    }
    .navbar-content {
        position: fixed;
        height: 100%;
        top: 0;
        left: -320px;
        z-index: 200;
        background: #fff;
        width: 320px;
        flex-direction: column;
        align-items: flex-start !important;
        padding: 15px;
        transition: 0.3s ease-in-out;
    }
    .navbar-content.show {
        left: 0;
    }
    .nav-menu {
        flex-direction: column;
        width: 100%;
    }
    .nav-menu li {
        width: 100%;
    }
    .nav-menu li a {
        color: #1E1E26;
        width: 100%;
    }
    .advisor-btn {
        width: 100%;
        color: #1E1E26;
        margin: 0px;
        border-color: #1E1E26;
        text-align: center;
        margin-top: 20px;
    }
    #header-dropdown {
        display: block;
        position: fixed;
        width: 100%;
        height: 100%;
        background-color: rgba(0,0,0,0.18);
        top: 0;
        left: 0;
        z-index: 1;
        opacity: 0;
        visibility: hidden;
        transition: 0.3s ease-in-out;
    }
    #header-dropdown.show {
        opacity: 1;
        visibility: visible;
    }
    .hero-heading {
        font-size: 32px;
        line-height: 42px;
    }
    .hero-text {
        font-size: 18px;
        line-height: 28px;
    }
    .page-heading {
        font-size: 30px;
        line-height: 48px;
        padding-left: 30px;
        padding-top: 10px;
        padding-bottom: 10px;
    }
    body {
        font-size: 16px;
        line-height: 30px;
    }
    .bx h3 {
        font-size: 17px;
    }
    .bx .icon img {
        max-width: 45px;
    }
    .bx .icon span {
        width: 110px;
        height: 110px;
    }
    .section-wrapper {
        padding: 90px 0;
    }
    .footer-links {
        flex-wrap: wrap;
    }
    .footer-heading {
        font-size: 25px;
        line-height: 36px;
    }
    .contact-list li div, .contact-list li div a {
        font-size: 14px;
        line-height: 24px;
    }
    .footer-bottom {
        padding: 40px 0;
    }
    .page-heading {
        font-size: 27px;
        line-height: 37px;
    }
    .section-wrapper {
        padding: 50px 0;
    }
    .bottom {
        height: 56px;
    }
    .footer-heading {
        margin-top: 50px;
    }
    .footer-bottom {
        padding: 30px 0;
    }
    .whatsapp-btn img {
        max-width: 80px;
    }
    .whatsapp-btn {
        bottom: 10px;
        right: 10px;
    }
    #bottom-bar {
        display: none !important;
    }
}
@media only screen and (max-width: 767px) {
    .container {
        max-width: 100%;
    }
    .hero-heading {
        font-size: 27px;
        line-height: 36px;
    }
    .hero-text {
        font-size: 16px;
        line-height: 24px;
    }
    .bx h3 {
        font-size: 15px;
    }
    .whatsapp-btn img {
        max-width: 60px;
    }
    .footer-bottom .d-flex {
        flex-direction: column;
    }
    .footer-bottom .d-flex.justify-content-between {
        justify-content: center !important;
        align-items: center;
    }
}
@media only screen and (max-width: 607px) {
    .navbar {
        border-radius: 0px 0px 90px 90px;
        padding: 30px 40px !important;
    }
    .inner-pad {
        padding: 0 40px;
    }
    .hero-btn {
        font-size: 14px;
    }
}
@media only screen and (max-width: 535px) {
    .hero-btns {
        flex-direction: column;
    }
    .hero-btn {
        min-width: 200px;
    }
    .hero-heading {
        font-size: 23px;
        line-height: 32px;
    }
    .hero-text {
        font-size: 14px;
        line-height: 21px;
    }
}
@media only screen and (max-width: 535px) {
    .footer-bottom {
        padding: 8px 0;
    }
    .navbar {
        border-radius: 0px 0px 50px 50px;
        padding: 30px 15px !important;
    }
    .inner-pad {
        padding: 0 15px;
    }
    .org-bar {
        width: 18px;
    }
    .bottom {
        width: 200px;
    }
}