@font-face {
    font-family: "arial-regular"; src: url('../fonts/arial.ttf');
}

@font-face {
    font-family: "arial-bold"; src: url('../fonts/arial-bold.ttf');
}

@font-face {
    font-family: "arial-black"; src: url('../fonts/arial-black.ttf');
}

html {
    position: relative;
    height: 100%;
    scroll-behavior: smooth;
}
body{
    font-family: "Montserrat", sans-serif;
    font-weight: 400;
    overflow-x: hidden;
    padding: 0px;
    margin: 0px;
    background-color: #ffffff;
    font-size: 18px;
    color: #42404D;
    line-height: 24px;
}
a, a:hover{
    color: inherit;
    text-decoration: none;
}

/*Header*/
.header {
    background: #f5f6fc;
    z-index: 9;
    width: 100%;
    transition: all 0.2s ease-in-out;
    position: sticky;
    top: 0px;
    left: 0px;
    padding: 20px 0px;
}
.sticky-bar {
    background: #ffffff;
}
.bg-trasnparent{
    background-color: transparent;
}
.navbar-nav .nav-link{
    display: block;
    color: #0b2f42;
    text-decoration: none;
    transition: all 0.2s ease-in-out;
    font-size: 18px;
    font-weight: 700;
    padding: 10px 0px; !important;
}
.navbar-nav .nav-item{
    margin: 0px 25px;
}
.navbar-nav .nav-item:first-child{
    margin-left: 0px;
}
.navbar-nav .nav-item:last-child{
    margin-right: 0px;
}
.contact-icon img{
    transition: all 0.2s ease-in-out;
}
.contact-icon img:hover{
    opacity: 0.7;
}
.logo{
    width: 200px;
}

#navbar-hamburger.show{
    display: block;
}
#navbar-hamburger, #navbar-close{
    display: none;
}
#navbar-close.show{
    display: block;
}
            
.navbar-toggler:focus {
    text-decoration: none;
    outline: 0;
    box-shadow: 0 0 0 0rem;
}

@media all and (min-width: 1200px) {
.navbar .nav-item .dropdown-menu{ display: none; }
.navbar .nav-item:hover .dropdown-menu{ display: block; }
.navbar .nav-item .dropdown-menu{ margin-top:0; }
}

.dropdown-toggle::after {
    display: inline-block;
    margin-left: 10px;
    margin-top: 0px;
    margin-bottom: -2px;
    vertical-align: 0.255em;
    content: "";
    border-top: 0.3em solid !important;
    border: solid #0b2f42 !important;
    border-width: 0 2px 2px 0 !important;
    display: inline-block;
    padding: 3px;
    transform: rotate(-45deg);
    -webkit-transform: rotate(45deg);
    border-right: 0em solid transparent; 
    border-bottom: 0; 
    border-left: 0em solid transparent; 
}
.dropdown-menu{
    position: absolute;
    z-index: 1000;
    display: none;
    min-width: 10rem;
    padding: 0px;
    margin: 0;
    font-size: 1rem;
    color: #212529;
    text-align: left;
    list-style: none;
    background-color: #fff;
    background-clip: padding-box;
    border: 0px solid rgba(0,0,0,.15);
    border-radius: 0.25rem;
    background: #fff 0% 0% no-repeat padding-box;
    box-shadow: none;
    border-radius: 0px;
}
.dropdown-item{
    display: block;
    width: 100%;
    padding: 12px 20px;
    clear: both;
    font-weight: 600;
    font-size: 14px;
    color: #212934;
    text-align: inherit;
    text-decoration: none;
    white-space: nowrap;
    background-color: transparent;
    border: 0;
    border-radius: 0px;
    border-bottom: 1px solid #e2e2e2;
}
.dropdown-menu li:last-child .dropdown-item{
    border-bottom: 0px;
}
.nav-item .nav-link.active.dropdown-toggle::after{  
    border-top: 0.3em solid !important;
    border: solid #0b2f42 !important;
    border-width: 0 2px 2px 0 !important;
}
.nav-item .nav-link:hover.dropdown-toggle::after{
    border-top: 0.3em solid !important;
    border: solid #0b2f42 !important;
    border-width: 0 2px 2px 0 !important;
}
.dropdown-item:focus, .dropdown-item:hover, .dropdown-item.active {
    color: #212934;
    background-color: #f9f9fb;
}
.dropdown .dropdown-menu{
    -webkit-transition: all 500ms ease-in;
    -moz-transition: all 500ms ease-in;
    -ms-transition: all 500ms ease-in;
    -o-transition: all 500ms ease-in;
    transition: all 500ms ease-in;
}

@media all and (min-width: 1200px) {
.navbar .dropdown-menu-end{ right:0; left: auto; }
.navbar .nav-item .dropdown-menu{ display:block; opacity: 0;  visibility: hidden; transition:.3s; margin-top:0; }
.navbar .dropdown-menu.fade-down{ top:80%; transform: rotateX(-75deg); transform-origin: 0% 0%; }
.navbar .dropdown-menu.fade-up{ top:180%; }
.navbar .nav-item:hover .dropdown-menu{ transition: all 0.3s ease-in-out; opacity:1; visibility:visible; top:45px; transform: rotateX(0deg); }
}

/* close */
.navbar-toggler{
    padding: 0px;
    border: 0px;
}
.menu_toggle{
    width: 50px !important;
    height: 50px;
    padding: 9px 12px 9px;
    display: inline-flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    transition: all 0.2s ease-in;
    text-align: left;
    position: relative;
    right: 0;
    top: 0px;
    z-index: 90;
    border-radius: 3px;
    line-height: 0px;
}
.menu_toggle span {
    height: 4px;
    width: 100%;
    background: #4a4e57;
    display: inline-block;
    transition: all 0.5s cubic-bezier(.62, .43, .35, 1.47);
    margin: 2px 0px;
}

/* toggle icon animation */
#check1:checked~.menu_toggle span:nth-child(1) {
    width: 100%;
    transform: rotate(45deg) translateY(6px) translateX(6px);
}

#check1:checked~.menu_toggle span:nth-child(2) {
    width: 0;
}

#check1:checked~.menu_toggle span:nth-child(3) {
    width: 100%;
    transform: rotate(-45deg) translateY(-6px) translateX(6px);
}
#check1{
    display: none;
}

.btn-theme{
    background: #0040a1;
    color: #ffffff;
    border: 2px solid #ffffff;
    border-radius: 6px;
    padding: 11px 23px;
    line-height: 16px;
    font-size: 13px;
    font-weight: 600;
    transition: all 0.2s ease-in-out;
}
.btn.btn-theme:hover{
    background: #ffffff;
    color: #0040a1;
    border-color: #0040a1;
}

/*Content*/
.content, .bg-grey{
    background-color: #f1f2f4;
}
.content-data{
    padding: 38px 0px 200px;
    position: relative;
}
.shape01{
    position: absolute;
    bottom: 0px;
    right: 0px;
    width: 60%;
    z-index: 0;
}
.sec-pad{
    padding: 88px 0px;
}
.hero-title{
    font-family: "Public Sans", sans-serif;
    font-size: 48px;
    font-weight: 700;
    color: #333333;
    line-height: normal;
}
.ft-16{
    font-size: 16px;
}
.text-black{
    color: #000000 !important;
}
.white-box{
    border: 1px solid #0b2f42;
    background-color: #ffffff;
}
.box-header{
    background-color: #0040a1;
    padding: 10px;
    color: #ffffff;
    font-size: 22px;
    text-transform: uppercase;
    line-height: 32px;
}
.box-content{
    padding: 30px 30px 20px;
}
.box-content ul{
    list-style: none;
    padding-left: 0px;
    margin-bottom: 30px;
    min-height: 155px;
}
.box-content ul li{
    margin-bottom: 15px;
}
.bc-fa{
    font-size: 20px;
    font-weight: 900;
    color: #0040a1;
    margin-top: 12px;
}
.box-content ul li a{
    font-size: 20px;
    font-weight: 700;
    color: #0040a1;
    display: flex;
    gap: 20px;
}
.btn-option{
    padding: 17px 40px;
    background: #e0dede;
    color: #000000;
    border: 2px solid #000000;
    border-radius: 0px;
    text-transform: uppercase;
    font-size: 18px;
    font-weight: 600;
    width: 100%;
    transition: all 0.2s ease-in-out;
}
.btn.btn-option:hover{
    background-color: #ffffff;
    color: #0040a1;
    border-color: #0040a1;
}
.btn-blue{
    padding: 17px 40px;
    background-color: #0040a1;
    color: #ffffff;
    border-color: #ffffff;
    border: 2px solid;
    font-size: 18px;
    font-weight: 600;
    width: 100%;
    border-radius: 0px;
    text-transform: uppercase;
    transition: all 0.2s ease-in-out;
}
.btn.btn-blue:hover{
    background-color: #ffffff;
    color: #0040a1;
    border-color: #0040a1;
}
.title{
    font-size: 36px;
    font-weight: 600;
    line-height: 43px;
    color: #333333;
}
.sub-title{
    font-size: 24px;
    font-weight: 600;
    color: #0040a1;
    line-height: 31px;
}
.btn-theme.btn-content{
    padding: 17px 40px;
    font-size: 18px;
}
.faq-sec{
    padding: 58px 0px;
}
.faq-sec .title{
    font-size: 30px;
    font-weight: 600;
    color: #0040a1;
}
.cust-marg{
    margin: 10px 0px 15px;
}
.trustpilot-logo{
    width: 200px;
}

/*About Us*/
.about-us, .bg-theme{
    background-color: #f5f6fc;
}
.about-us .hero-title{
    font-size: 58px;
    font-weight: 600;
}
.about-content{
    padding: 44px 0px 128px;
}
.startup-icon{
    width: 60px;
}
.about-title{
    font-size: 20px;
    font-weight: 600;
    color: #323643;
}

/*Manage Page*/
.hover-box{
    background-color: #ffffff;
    box-shadow: 0px 0px 20px 0px #00000040;
    padding: 35px 35px 25px;
    transition: all 0.2s ease-in-out;
    width: 100%;
    height: 100%;
    display: block;
    position: relative;
}
.hover-box:hover::before{
    transform: scale(1.01);
    box-shadow: 0px 0px 20px 0px #00000080;
    cursor: pointer;
    opacity: 1;
}
.flex-box{
    position: relative;
    z-index: 2;
}
.hover-box::before{
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
    content: "";
    transition: opacity .35s, transform .35s;
    box-shadow: 0 3px 15px rgba(0, 0, 0, .4);
    opacity: 0;
    pointer-events: none;
    background-color: #fff;
}
.flex-box{
    display: flex;
    gap: 25px;
}
.icon-box{
    min-width: 76px;
    height: 76px;
    border-radius: 50%;
    background: #3F48CC;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    color: white;
}
.flex-box .title{
    font-size: 30px;
}
.blue-box{
    padding: 17px 40px;
    border-radius: 6px;
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
    background-color: #0040a1;
    width: fit-content;
    text-transform: uppercase;
}
.full-box{
    padding: 40px;
    background-color: #ffffff;
    box-shadow: 0px 0px 20px 0px #00000040;
}
.full-box p{
    font-size: 22px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 0px;
    text-align: center;
}

/*Contact Form*/
.contact-form{
    width: 10px; 
    min-width: 100%; 
    display: block; 
    overflow: hidden; 
    height: 861px; 
    border: none;
}

/*FAQ*/
.nav{
    border-top: 1px solid #e7e6e6;
    border-bottom: 1px solid #e7e6e6;
    margin: 16px 0px 55px;
}
.nav .nav-item{
    margin-right: 30px;
}
.nav .nav-link{
    font-size: 16px;
    font-weight: 500;
    color: #0040a1;
    border-color: #f5f6fc !important;
    border-top: 3px solid;
    padding: 5px 0px;
    font-family: "arial-regular";;
}
.nav .nav-link.active{
    border-color: #0040a1 !important;
}
.tab-pane{
    padding-left: 0px;
}

.accordion .accordion-item {
    border-radius: 0px;
    border: 0px;
    border-bottom: 1px solid #e7e6e6;
    background-color: transparent;
}

.accordion .accordion-item button[aria-expanded='true'] {
  border: 0px;
}

.accordion button {
  position: relative;
  display: flex;
  text-align: left;
  width: 100%;
  padding: 10px 0;
  color: #7288a2;
  font-size: 1.15rem;
  font-weight: 400;
  border: none;
  background: none;
  outline: none;
  transition: all 0.2s ease-in-out;
}

.accordion button:hover,
.accordion button:focus {
  cursor: pointer;
  color: #03b5d2;
}

.accordion button:hover::after,
.accordion button:focus::after {
  cursor: pointer;
  color: #03b5d2;
  border: 1px solid #03b5d2;
}

.accordion button .accordion-title {
    padding: 0px 20px 0px 40px;
    font-size: 24px;
    font-weight: 600;
    line-height: 36px;
    color: #0040a1;
}

.accordion button .icon {
  display: inline-block;
  position: absolute;
  top: 17px;
  left: 0;
  width: 22px;
  height: 22px;
  border: 1px solid #333333;
  border-radius: 0px;
  background-color: #333333;
  transition: all 0.2s ease-in-out;
}

.accordion button:hover .icon, .accordion button[aria-expanded='true'] .icon {
  border: 1px solid #0040a1;
  background-color: #0040a1;
}

.accordion button .icon::before {
  display: block;
  position: absolute;
  content: '';
  top: 9px;
  left: 5px;
  width: 10px;
  height: 2px;
  background: #ffffff;
  transition: all 0.2s ease-in-out;
}
.accordion button .icon::after {
  display: block;
  position: absolute;
  content: '';
  top: 5px;
  left: 9px;
  width: 2px;
  height: 10px;
  background: #ffffff;
  transition: all 0.2s ease-in-out;
}

.accordion button[aria-expanded='true'] {
  color: #03b5d2;
  transition: all 0.2s ease-in-out;
}
.accordion button[aria-expanded='true'] .icon::after {
  width: 0;
}
.accordion button[aria-expanded='true'] + .accordion-content {
  opacity: 1;
  max-height: max-content;
  transition: all 200ms linear;
  will-change: opacity, max-height;
  margin: 10px 0px 35px 0px;
}
.accordion .accordion-content {
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  will-change: opacity, max-height;
  transition: all 0.2s ease-in-out;
}
.accordion .accordion-content p {
  font-size: 16px;
  font-weight: 400;
  color: #000000;
  font-family: "arial-regular";
  margin-bottom: 20px;
}

/*Footer*/
.footer{
    padding: 40px 0px;
}
.footer p{
    line-height: 18px;
    margin: 12px 0px;
    color: #333333;
}
.footer p a:hover{
    color: #0040a1;
}
.f-ul{
    list-style: none;
    padding-left: 0px;
    margin-bottom: 0px;
    text-align: center;
    line-height: 18px;
}
.f-ul li{
    display: inline-block;
    font-size: 12px;
    font-family: "arial-regular";
}
.f-ul li::after{
    content: '|';
    margin-left: 3px;
}
.f-ul li:last-child::after{
    content: '';
    margin-left: 0px;
}
.f-ul li a:hover{
    color: #0040a1;
}
.mailid{
    transition: all 0.2s ease-in-out;
}
.mailid:hover{
    color: #0040a1;
}


/*BOI Reporting*/
.bg-red{
    background: #b31942 !important;
}
.btn.btn-theme.bg-red:hover{
    background: transparent !important;
    color: #b31942;
    border-color: #b31942;
}
.checked-icon{
    background-color: #0040a1;
    min-width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    color: #ffffff;
    font-weight: 700;
}
.o-40{
    opacity: 0.4;
}
.box001{
    width: 100%;
    height: 100%;
    padding: 50px 25px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.bg-grey1{
    background-color: #99a3ae;
}
.bg-grey2{
    background-color: #c1c7cd;
}
.bg-light-blue{
    background-color: #d6e7f7;
}
.blue-dot{
    display: flex;
    gap: 15px;
}
.blue-dot::before{
    content: '';
    min-width: 20px;
    height: 20px;
    background-color: #0040a1;
    border-radius: 50%;
    margin-top: 2px;
}
.text-link, .s-footer .text-link{
    color: #374efe !important;
    text-decoration: underline;
    transition: all 0.3s ease-in-out;
}
.text-link:hover{
    color: #0040a1 !important;
    text-decoration: none;
}
.s-footer .text-link:hover{
    color: #f5fcff !important;
    text-decoration: none;
}
.source-link{
    text-decoration: underline;
    transition: all 0.2s ease-in-out;
}
.source-link:hover{
    text-decoration: none;
}
.flex-box1{
    display: flex;
    gap: 16px;
}
.bg-theme-blue{
    background-color: #0040a1;
}
.p-footer{
    padding: 45px 0;
    background-color: #898b8b;
}
.pf-logo{
    width: 300px;
}
.p-footer hr{
    color: #707070;
}
.s-footer{
    background-color: #2e2e2e;
    padding: 8px;
}
.bg-dark-blue{
    background-color: #9dbfe4;
}
.bg-grey3{
    background-color: #e7e8e6;
}

.price-table{
    font-family: "Public Sans", sans-serif !important;
    border-collapse: separate;
}
.price-table.table-bordered>:not(caption)>*>* {
    border-width: 1px;
    border-color: #99a3ae;
}
.price-table th{
    font-weight: 700;
    text-align: center;
    padding: 7px;
    width: 25%;
    vertical-align: middle;
}
.price-table tbody tr td{
    text-align: center;
    padding: 10px 15px;
    font-weight: 300;
    vertical-align: middle;
    white-space: nowrap;
}
.price-table tbody tr td:first-child{
    font-weight: 700;
    text-align: left;
}
.price-table tbody tr:last-child td{
    border: 0px;
    --bs-table-bg-type: transparent;
}
.clover-img{
    margin-right: 4px;
    margin-top: -5px;
}
.bg-darkest-blue{
    background-color: #002b64 !important;
}
.bg-darkest-blue1{
    background-color: #156cad;
}
.info-table tbody tr td{
    white-space: pre-wrap;
    text-align: left;
}
.info-table tbody tr td:first-child{
    text-align: right;
    font-size: 22px;
    font-weight: 400;
}
.price-table.info-table tbody tr:last-child td{
    border: 1px solid #99a3ae;
}
.dark-blue-dot{
    display: flex;
    gap: 15px;
}
.dark-blue-dot::before{
    content: '';
    min-width: 12px;
    height: 12px;
    background-color: #003c6b;
    border-radius: 50%;
    margin-top: 5px;
}
.br-box{
    width: 100%;
    height: 100%;
    padding: 20px;
    border-radius: 30px;
    border: 2px solid #949393;
}
.fo-box{
    width: 100%;
    height: 100%;
    background-color: #fefdfd;
    padding: 25px 30px;
    border-radius: 40px;
    box-shadow: inset 0px -5px 15px 0px #a4a3a3, 0px 24px 41px 6px #00000033;
    position: relative;
}
.fo-box ul{
    list-style: none;
    padding-left: 0px;
    margin-bottom: 0px;
}
.fo-box ul li{
    font-family: "Public Sans", sans-serif !important;
    font-size: 17px;
    font-weight: 700;
    color: #000000;
    display: flex;
    gap: 10px;
    margin-bottom: 8px;
}
.fo-box ul li:last-child{
    margin-bottom: 0px;
}
.fo-box ul li::before{
    content: '';
    min-width: 10px;
    height: 10px;
    background-color: #000000;
    border-radius: 50%;
    margin-top: 7px;
}
.most-popular-icon{
    position: absolute;
    top: 40px;
    right: 5px;
    width: 145px;
}
.best-price-icon{
    position: absolute;
    top: 60px;
    right: 0px;
    width: 145px;
}
.clover-icon1 {
    position: absolute;
    bottom: 100px;
    right: 100px;
    width: 80px;
}
.wi-25{
    width: 25px;
}


/*Home Page*/
.btn-theme1{
    border-radius: 0px;
    background-color: #0040a1;
    color: #ffffff;
    font-size: 20px;
    font-weight: 600;
    border-width: 2px;
}
.btn-theme1:hover{
    background-color: transparent;
    border-color: #0040a1;
    color: #0040a1;
}
.br-box2{
    border-radius: 50px;
    background-color: #ffffff;
    border: 1px solid #d6d6d6;
    padding: 50px;
}
.bg-sky-blue{
    background-color: #8cc6ec;
}
.bg-sky-blue:hover{
    border-color: #8cc6ec;
    background-color: transparent;
    color: #ffffff;
}
.review-box{
    border-radius: 50px;
    padding: 20px 30px;
    background-color: #5a5d65;
}
.br-box2 ul{
    list-style: none;
    padding-left: 0px;
}
.br-box2 ul li{
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
}
.small-green-square{
    min-width: 10px;
    height: 10px;
    background-color: #238801;
    margin-top: 10px;
}
.btn-green{
    background-color: #238801;
    color: #ffffff;
    transition: all 0.2s ease-in-out;
}
.btn-green:hover{
    border-color: #238801 !important;
    background-color: transparent !important;
    color: #238801 !important;
}
.bf-logo{
    width: 150px;
}
.hero-title.text-red{
    margin-top: -8px;
}
.h-45{
    height: 45px;
}
.qoute-big{
    width: 70px;
}
.qoute-small{
    width: 50px;
}
.home .clover-icon1 {
    right: 75px;
}


/*Law Parters Page*/
.law-parter-bg{
    background-image: url(../img/hero-image-firststep-2.jpg);
    background-size: cover;
    background-position: center;
    padding: 50px 0px 60px;
}
.law-parter-bg .logo{
    width: 200px;
    margin-bottom: 100px;
}
.law-parter-bg .hero-title{
    font-family: "Public Sans", sans-serif;
    color: #ffffff;
    text-transform: uppercase;
    font-size: 80px;
    line-height: 75px;
    font-weight: 800;
    letter-spacing: -3px;
    margin-bottom: 50px;
}
.text-blue1{
    color: #9dbfe4;
}
.text-blue2{
    color: #012454;
}
.law-parter-bg .hero-text{
    font-family: "Public Sans", sans-serif;
    color: #ffffff;
    text-transform: uppercase;
    font-size: 27px;
    line-height: 30px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 60px;
}
.btn-white{
    background-color: #ebecf0;
    border-radius: 20px;
    padding: 12px 40px;
    box-shadow: -5px -5px 5px 2px #ebecf047;
    font-family: "Public Sans", sans-serif;
    color: #012454;
    text-transform: uppercase;
    font-size: 25px;
    font-weight: 700;
    transition: all 0.3s ease-in-out;
}
.btn.btn-white:hover,
.btn.btn-white:focus {
    box-shadow: 0px 0px 0px 0px #ebecf047;
    transform: translateY(2px);
    background-color: #ebecf0;
    color: #012454;
    outline: none;
}
.btn-down-shadow{
    box-shadow: 5px 5px 5px 1px #6e6e6e47;
}
.btn.btn-white.btn-down-shadow:hover,
.btn.btn-white.btn-down-shadow:focus {
    box-shadow: 0px 0px 0px 0px #ebecf047;
    transform: translateY(2px);
    background-color: #e7e7e7;
    color: #012454;
    outline: none;
}
.lh-52{
    line-height: 52px;
}
.btn:first-child:active{
    border-color: transparent;
}

.supporting-attorneys img{
    width: 100px;
}
img.every-client{
    width: 135px;
}
.text-black1{
    color: #424446;
}
.bg-blue1{
    background-color: #e1edfa;
}
.bg-blue2{
    background-color: #012454;
}
.bg-blue2 .br-box2{
    padding: 80px;
}
.bg-off-white{
    background-color: #f5f5fa;
}
.lh-nor{
    line-height: normal;
}
.mt-6{
    margin-top: 6px;
}
.br-box2 ul li{
    gap: 40px;
    margin-bottom: 30px;
}
.right-with-circle{
    max-width: 55px;
}
.corner-shape{
    position: absolute;
    bottom: 0px;
    right: 0px;
    width: 300px;
}
.z-1{
    position: relative;
    z-index: 1;
}
.form-label{
    font-size: 16px;
    font-family: "Public Sans", sans-serif;
    margin-bottom: 5px;
}
.form-control, .form-select{
    border-color: #999999;
    padding: 15px 20px;
    font-size: 18px;
    font-family: "Public Sans", sans-serif;
}
.form-control:focus, .form-select:focus{
    box-shadow: none;
    border-color: #999999;
}
.br-box2 .logo{
    width: 180px;
}
.left-corner-shape{
    position: absolute;
    left: 0px;
    bottom: 0px;
    width: 300px;
}
.bg-blue1 .br-box hr{
    border-color: #d9d9d9;
    border-width: 2px;
    opacity: 1;
    margin: 0px;
}
.featured-img{
    width: 225px;
}
.top-sec{
    text-align: center;
    padding: 50px 20px;
}
.bottom-sec{
    padding: 25px 20px 40px;
}
.ellipsis-text {
  display: -webkit-box;
  -webkit-line-clamp: 3; /* number of lines to show */
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.read-more{
    color: #5271ff;
    transition: all 0.3s ease-in-out;
    font-weight: 500;
}
.read-more:hover{
    color: #012454;
}
.nbf-graphic{
    width: 225px;
}
.how-to-start-llc{
    width: 283px;
}
.business-structures{
    width: 239px;
}
.review-qoute{
    width: 60px;
}
.cust-pad{
    padding: 40px 25px;
}














.br-50{
    border-radius: 50px;
}
.inter{
  font-family: "Inter", sans-serif;
}

.montserrat{
  font-family: "Montserrat", sans-serif;
}

.public-sans{
  font-family: "Public Sans", sans-serif;
}

.roboto{
  font-family: "Roboto", sans-serif;
}
.arial{
    font-family: "arial-regular";
}
.arial-bold{
    font-family: "arial-bold";
}
.arial-black{
    font-family: "arial-black";
}

.fw-400{
    font-weight: 400 !important;
}
.fw-500{
    font-weight: 500;
}
.fw-600{
    font-weight: 600;
}
.fw-700{
    font-weight: 700;
}
.fw-900{
    font-weight: 900 !important;
}

.ft-30{
    font-size: 30px;
}
.ft-26{
    font-size: 26px;
}
.ft-24{
    font-size: 24px !important;
}
.ft-22{
    font-size: 22px;
}
.ft-20{
    font-size: 20px;
}
.ft-19{
    font-size: 19px;
}
.ft-17{
    font-size: 17px;
}
.ft-16{
    font-size: 16px;
}
.ft-15{
    font-size: 15px !important;
}
.ft-12{
    font-size: 12px;
}

.text-green{
    color: #238801 !important;
}
.text-red{
    color: #b31942 !important;
}
.text-light-black{
    color: #333333;
}
.text-theme{
    color: #0040a1 !important;
}
.text-grey{
    color: #747a87;
}
.text-grey2{
    color: #5a5d65;
}
.text-red{
    color: #ff0000;
}
.text-white1{
    color: #f5fcff !important;
}
.bg-dark-blue1{
    background-color: #003c6b;
}
.mb-80{
    margin-bottom: 80px;
}
.mb-60{
    margin-bottom: 60px;
}
.mb-30{
    margin-bottom: 30px;
}
.mb-20{
    margin-bottom: 20px;
}
.mb-15{
    margin-bottom: 15px;
}
.mb-12{
    margin-bottom: 12px;
}