@import url('https://fonts.googleapis.com/css2?family=Source+Sans+Pro:ital,wght@0,200;0,300;0,400;0,600;0,700;0,900;1,200;1,300;1,400;1,600;1,700;1,900&display=swap');


/*Default Css Start*/
body {
    font-family: 'Source Sans Pro', sans-serif;
    font-weight: 400;
    color: rgb(69,69,69);
}

:focus, button:focus {
    outline: none; 
}
.form-control:focus {
    box-shadow: unset;
}

.btn {
    padding: 5px 40px;
    font-size: 1.5rem;
    font-weight: 700;
    border: 5px solid transparent;
    border-radius: 5px;
}

.btn-primary {
    background-color: #b21f25;
    color: #FFFFFF;
}

.btn-primary:hover, .btn-primary:focus {
    background: #FFFFFF;
    border: 5px solid #b21f25;
    color: #b21f25;
}
.btn-primary.btn-white {
    background-color: #ffffff;
    color: #b21f25;
}
.btn.btn-outline-white {
    border-color: #ffffff;
    color: #ffffff;
}
.btn.btn-outline-white:hover {
    background-color: #ffffff;
    color: #b21f25;
}
.btn-primary.btn-white:hover {
    border-color: #ffffff;
    background-color: #b21f25;
    color: #ffffff;
}
.btn-outline:hover {
    background: #b21f25;
    color: #fff;
}
.btn-outline {
    border-color: #b21f25;
    color: #b21f25;
}
.btn-secondary {
    background-color: #c52227;
    color: #FFFFFF;
}

.btn-secondary:hover, .btn-secondary:focus {
    background: #FFFFFF;
    border: 5px solid #c52227;
    color: #c52227;
}
.accordion-button:focus {
    box-shadow: unset;
}
.big {
    font-size: 18px;
}
.themecolor {
    color: #b21f25;
}
.card {
    border-radius: 10px;
    box-shadow: 0px 0px 5px 0px rgb(0 0 0 / 40%);
}
.form-group {
    margin-bottom: 20px;
}
/*Header Start*/
.top-bar {
    background-color: #C44D5E;
    width: 100%;
    font-size: 16px;
    color: white;
    z-index: 100;
    text-align: center;
    padding: 15px 0;
    margin-bottom: 16px;
}
.main-header {
    border-bottom: 2px solid #dddddd;
    position: sticky !important;
    top: 0 !important;
    background-color: #fff;
    z-index: 55;
}
.main-header .container {
    flex-wrap: wrap;
}
.main-header .navbar-brand {
    height: 54px;
    width: 209px;
    padding: 5px 0 0 0;
    display: flex;
}
.main-header .navbar-brand img {
    height: 100%;
    object-fit: contain;
}

.main-header__top {
    display: flex;
    align-items: center;
    width: 100%;
    height: 45px;
}
.main-header__top .input-group {
    position: absolute;
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    width: 100%;
    max-width: 476px;
    margin: auto;
    left: 50%;
    transform: translateX(-50%);
}
.main-header__top .input-group .form-control {
    border: none;
    font-size: 14px;
    color: #595959;
    line-height: 45px;
    height: 45px;
    padding: 0 15px;
    background-color: #f3f3f3;
    border-radius: 5px;
}
.main-header__top .input-group .input-group-text {
    border: none;
    background-color: #f3f3f3;
    width: 45px;
    height: 45px;
    border-radius: 0 5px 5px 0;
}
.main-header__bottom {
    width: 100%;
    margin-top: 8px;
}
.main-header__bottom .navbar-collapse {
    width: 100%;
    position: relative;
}
.main-header__bottom .navbar-nav {
    width: 100%;
}
.main-header .navbar-expand-lg {
    padding-top: 6px;
    padding-bottom: 0px;
}
.main-header__bottom .nav-item {
    margin: 0px 10px 0px 24px;
    transition: all ease-in-out 0.3s;
}

.main-header__bottom .nav-item:first-child {
    margin-left: 0;
}
.main-header__bottom .nav-item .nav-link {
    font-size: 18px;
    font-weight: 600;
    line-height: 30px;
    padding: 10px 0 14px;
    text-decoration: none;
    color: #595959;
    display: flex;
    align-items: center;
    position: relative;
}
.main-header__bottom .nav-item .nav-link:before {
    position: absolute;
    width: 100%;
    height: 4px;
    content: '';
    background-color: #c52227;
    bottom: -1px;
    left: 0;
    visibility: hidden;
    opacity: 0;
    transition: all ease-in-out 0.3s;
}
.main-header__bottom .nav-item .nav-link:hover:before,  .main-header__bottom .nav-item .nav-link.show:before {
    visibility: visible;
    opacity: 1;
}
.main-header .dropdown-toggle::after {
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 5px solid #c52227;
}

.main-header__bottom .nav-item.nav-item__right .nav-link {
    color: #b21f25;
}

.main-header .dropdown-menu {
    left: 0;
    right: 0;
    width: 100%;
    top: 55px;
    border-radius: 0;
    border: 0;
    box-shadow: 0px 4px 8px -1px rgba(0, 0, 0, 0.25);
    max-height: 70vh;
    overflow-y: auto;
    padding-top: 0;
}

.dropdown-backtop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.45);
    z-index: 3;
}

.dropdown-menu__container {
    padding: 25px 75px 25px 0;
    display: flex;
    line-height: 1.5;
    font-size: 16px;
    justify-content: space-around;
}
.close-sub-menu {
    position: absolute;
    right: 15px;
    top: 10px;
}
.close-sub-menu .desktop-only {
    font-size: 14px;
    font-weight: bold;
    color: #b21f25;
    padding: 0 0 0 15px;
    cursor: pointer;
    border: none;
    background-image: url("data:image/svg+xml,%0A%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 162.28 162.28'%3E%3Cdefs%3E%3Cstyle%3E.cls-1%7Bfill:%23b21f25;%7D%3C/style%3E%3C/defs%3E%3Ctitle%3EAsset 3%3C/title%3E%3Cg id='Layer_2' data-name='Layer 2'%3E%3Cg id='Layer_1-2' data-name='Layer 1'%3E%3Cpath class='cls-1' d='M132.4,5.13,81.14,56.39,29.87,5.13A17.49,17.49,0,0,0,5.13,29.87L56.39,81.14,5.13,132.4a17.49,17.49,0,0,0,0,24.75h0a17.48,17.48,0,0,0,24.74,0l51.27-51.26,51.26,51.26a17.5,17.5,0,0,0,24.75-24.75L105.89,81.14l51.26-51.27a17.48,17.48,0,0,0,0-24.74h0A17.49,17.49,0,0,0,132.4,5.13Z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: 9px 9px;
    background-position: left center;
    text-decoration: none !important;
    background-color: transparent;
}

.mobile-only {
    display: none;
}

.header-menu__link {
    text-decoration: none;
    color: #595959;
}
.header-menu__link_title {
    font-weight: bold;
    color: #b21f25;
    margin-bottom: 0;
}
.header-menu__link:hover {
    text-decoration: underline;
    color: #595959;
}
.dropdown-menu__submenu {
    display: flex;
    line-height: 1.5;
    font-size: 16px;
    justify-content: space-around;
    width: 100%;
}
.categories-list {
    display: flex;
    flex-wrap: wrap;
    max-width: 1300px;
    padding: 48px 0 40px;
    margin: 0 auto;
}
.categories-list li {
    padding: 0 5px;
    flex: 16.66%;
    height: 135px;
    flex-grow: 0;
    width: 20%;
    margin-bottom: 10px;
}

.categories-list__link {
    width: 100%;
    height: 100%;
    border-radius: 5px;
    border: solid 1px #e0e0e0;
    display: block;
    text-decoration: none;
    color: #595959;
}
.categories-list__link:hover {
    border: solid 1px #b21f25;
    color: #595959;
}
.categories-list__link img {
    width: 40px;
    height: 30px;
    margin: 38px auto 9px;
    display: block;
    object-fit: contain;
}
.categories-list__link .title {
    max-width: 130px;
    margin: 0 auto;
    text-align: center;
    line-height: normal;
    display: block;
}
.header-menu-logo {
    width: 140px;
}
.main-header .header-menu-logo img {
    max-height: 45px;
    max-width: 100px;
}
.find-location-menu .header-menu__link {
    font-size: 13.5px;
}
.find-location-menu .header-menu__link_title {
    font-size: 14.5px;
}
.find-location-menu {
    justify-content: space-between;
    width: 100%;
}
.main-header .header-menu-logo li:not(:first-child) {
    width: 100%;
    height: 64px;
    border-radius: 5px;
    border: solid 1px #e0e0e0;
    margin: 10px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #ffffff;
    cursor: pointer;
    padding: 0;
}
.find-location_menu .dropdown-menu__submenu, .partners_menu .dropdown-menu__submenu{
    display: unset;
    padding-left: 15px;
}
.partners_menu .card-body .header-menu__link {
    font-weight: bold;
    color: #b21f25;
    margin-bottom: 0;
}
.partners_menu .card {
    height: 100%;
}
.partners_menu .card-body {
    padding: 15px;
}
.partners_menu .card-body a {
    color: black;
    font-size: 13.5px;
    text-decoration: none;
    color: #595959;
}
.partners_menu .card-body a:hover {
    text-decoration: underline;
}
.find-location_menu  .dropdown-menu__submenu .row:first-child {
    background: #fff3f3;
    margin-left: -15px !important;
    padding-top: 20px;
    margin-bottom: 30px;
}
.find-location-search {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}
.find-location-search .dl-search-name {
    background-image: url(../images/icon-search-turquoise.svg);
    background-size: 15px;
    width: 280px;
    border: none;
    font-size: 15px;
    color: #454545;
    padding: 0 16px;
    padding-right: 32px;
    padding: 0 32px 0 16px;
    background-repeat: no-repeat;
    background-position: center right 12px;
}
.location-container {
    position: relative;
}
.location-container input {
    border: 0;
}
.location-container .dl-mirrored {
    border: none;
    background: none;
    position: absolute;
    right: 0;
    top: 0;
    padding: 0 12px;
    height: 100%;
    padding-left: 16px;
}
.find-location-search input {
    height: 48px;
}
.submit-search {
    width: 87px;
    height: 48px;
    border-radius: 5px;
    background-color: #c12126;
    border: 5px solid #c32227;
    color: #ffffff;
    font-weight: bold;
    line-height: 38px;
    text-align: center;
    cursor: pointer;
    margin: 0px 8px;
    text-decoration: unset;
}
.submit-search:hover {
    color: #ffffff;
}
.find-location-search p {
    font-size: 15px;
    color: #595959;
    line-height: 48px;
    margin: 0 15px;
}
.dl-radius {
    position: relative;
}
.dl-radius label {
    opacity: 1;
    top: 0;
    left: 0;
    z-index: 10;
    position: absolute;
    font-size: 12px;
    padding-left: 16px;
}
.dl-radius .search-field {
    background-image: url(../images/icon-arrowdown-turquoise.svg);
    background-size: 12px;
    width: 90px;
    -webkit-appearance: none;
    -moz-appearance: none;
    border: none;
    font-size: 15px;
    color: #454545;
    padding: 0 16px;
    padding-right: 32px;
    padding: 0 32px 0 16px;
    background-repeat: no-repeat;
    height: 48px;
    background-position: center right 12px;
}
.sub-title {
    text-align: center;
    font-size: 24px;
    font-weight: 300;
    color: #595959;
    position: relative;
}
.sub-title:before {
    content: "";
    display: block;
    width: 100%;
    height: 1px;
    background: #d8d8d8;
    left: 0;
    top: 50%;
    position: absolute;
}
.sub-title span {
    background-color: #fff;
    z-index: 2;
    position: relative;
    padding: 0px 20px;
}
/*Header End*/

/*Home Page Start*/
.hero-section {
    width: 100%;
    display: block;
    background-size: cover;
    /*height: 22em;
    min-height: 600px;*/
    background-position: right 25%;
    background-repeat: no-repeat;
    background-position-y: 20%;
    position: relative;
}
.hero-section .container {
   /* height: 22em;
    min-height: 600px;*/
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.hero-content__row {
    margin-top: auto;
}
.hero-content__row .card {
    height: 100%;
}
.hero-block__row {
    margin-top: auto;
}
.hero-section__content {
    padding: 50px 0;
}
.hero-section__content a {
    text-decoration: none;
    color: #454545;
}
.hero-section__content a.btn {
    color: #ffffff;
}
.hero-section__content a.btn:hover{
    color: #b21f25;
}
.hero-section__content a:hover h5 {
 text-decoration: underline;
}
.hero-section__content .title {
    font-size: 42px;
    line-height: normal;
    font-weight: bold;
    color: #b21f25;
}
.hero-section__content p {
    font-size: 1rem;
    font-weight: normal;
    color: rgb(69,69,69);
    line-height: 22px;
    margin-bottom: 32px;
}
.gutters-3 {
    margin-left: -2px;
    margin-right: -2px;
}
.gutters-3>[class^=col-], .gutters-3>.col {
    padding-left: 2px;
    padding-right: 2px;
}

.hero-block {
    background-color: #b21f25;
    height: 100%;
    max-width: 100%;
    text-align: left;
    padding: 10px 20px;
    border-bottom: 15px solid rgb(0, 111, 96);
}

.hero-block__row>.col:nth-child(2) .hero-block {
    border-bottom: 15px solid rgb(0, 131, 120);
    background-color: rgba(178, 31, 37, 0.90);
}

.hero-block__row>.col:nth-child(3) .hero-block {
    border-bottom: 15px solid rgb(72, 113, 39);
    background-color: rgba(178, 31, 37, 0.85);
}
.hero-block__row>.col:nth-child(4) .hero-block {
    background-color: rgba(178, 31, 37, 0.80);
}
.hero-block__row>.col:last-child .hero-block {
    border-bottom: 15px solid rgb(92, 151, 191);
     background-color: rgba(178, 31, 37, 0.75);
}

.hero-block__link {
    text-decoration: none !important;
    color: #fff !important;
    display: block;
}

.hero-block__link:focus {
    outline: 1px solid #767676 !important;
}

.hero-block__link h3 {
    font-size: 1.4rem;
    font-weight: 700;
    position: relative;
    color: #ffffff;
    line-height: 1;
    margin-bottom: 5px;
}

.hero-block__link h3:after {
    content: "";
    display: inline-block;
    margin-left: .255em;
    vertical-align: .255em;
    border-top: .3em solid transparent;
    border-right: .3em solid transparent;
    border-bottom: .3em solid transparent;
    border-left: .3em solid;
    position: absolute;
    right: 0;
    top: 8px;
}

.hero-block__link p {
    color: #fff;
    line-height: 1.3;
    font-size: 1.000rem;
}

.find-location-section {
    background: #fff2f2;
    position: relative;
    height: auto;
    padding: 20px 30px;
    padding-bottom: 50px;
    background-size: cover;
    width: 100%;
}

.find-location__content {
    position: relative;
    height: auto;
    margin-top: 30px;
    padding: 40px 10px;
    background-size: cover;
    border-top: 1px solid rgba(0, 111, 96, 0.19);
    border-bottom: 1px solid rgba(0, 111, 96, 0.19);
    padding-bottom: 50px;
    opacity: 1;
}

.find-location-section .icon_holder {
    width: 56px;
    height: 52px;
    display: inline-block;
    background-color: #fff2f2;
    text-align: center;
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
    top: -25px;
}

.find-location-section .map {
    text-align: center;
    vertical-align: top;
    display: inline-block;
    width: 100%;
}
.find-location-section .map h2 {
    color: #454545;
    font-size: 2.625rem;
    display: block;
    margin-bottom: 0px;
    padding-bottom: 6px;
    font-weight: 700;
}
.find-location-section .map a {
    color: #b21f25;
    font-size: 1.125rem;
    font-weight: bold;
    display: inline-block;
    vertical-align: bottom;
    margin-bottom: 9px;
    cursor: pointer;
}
.locator-form {
    max-width: 1100px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 20px;
}
.locator-form__group {
    display: flex;
    align-items: center;
    margin-left: -10px;
    margin-right: -10px;
}
.locator-form__item {
    padding-left: 10px;
    padding-right: 10px;
}
.radius-input {
    width: 90px;
}
.locator-form__item .form-control {
    height: 48px;
    border: none;
    border-radius: 5px;
}

.locator-form__item select.form-control {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23b21f25' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
    background-size: 12px;
    background-repeat: no-repeat;
    background-position: center right 12px;
}
.locator-form__group .form-floating>.form-control:focus, .locator-form__group .form-floating>.form-control:not(:placeholder-shown) {
    padding-top: 20px;
    padding-bottom: 5px;
}

.locator-form__group .form-floating>.form-control:focus~label, .locator-form__group .form-floating>.form-control:not(:placeholder-shown)~label, .locator-form__group .form-floating>.form-select~label {
    opacity: .65;
    transform: scale(.85) translateY(-.5rem) translateX(.10rem);
}

.locator-form__group .form-floating>label {
    padding: 0.6rem .75rem;
}

.practice-input {
    width: 240px;
}

.practice-input input {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16'%3E%3Cg fill='none' fill-rule='evenodd' stroke='%23b21f25' stroke-width='2' transform='rotate(-45 6.935 4.287)'%3E%3Ccircle cx='5.063' cy='5.063' r='5.063'%3E%3C/circle%3E%3Cpath stroke-linecap='round' d='M5.063 10.688v6.523'%3E%3C/path%3E%3C/g%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center right 12px;
}

.location-group input {
    background-image: url("../images/shootit-40.png");
    background-repeat: no-repeat;
    background-position: center right 14px;
    background-size: 14px;
}

.locator-form__item .btn {
    font-size: 1rem;
    font-weight: bold;
    padding: 7px 20px;
}


.resources-section {
    background-color: rgb(255, 255, 255);
    position: relative;
    width: 100%;
    height: auto;
    min-height: 23em;
    padding: 50px 0;
}
.section-title {
    margin-bottom: 50px;
}
.section-title .title {
    font-size: 2.625rem;
    font-weight: bold;
    line-height: 1.2;
    color: #b21f25;
}
.resources-section .row {
    max-width: 80%;
    margin-left: auto;
    margin-right: auto;
}
.resources-card {
    text-align: center;
}
.resources-card img {
    max-height: 163px;
    width: auto;
    margin-bottom: 30px;
}
.resources-card .title {
    font-size: 1.75rem;
    font-weight: 700;
    color: #b21f25;
}
.resources-card p {
    color: rgb(69,69,69);
    height: 44px;
    padding-top: 0;
    line-height: 1.3;
    font-size: 1.000rem;
}
.resources-card .form-floating {
    width: 100%;
}
.resources-card .form-floating input.form-control {
    border: 1px solid;
    padding: 10px .75rem;
    font-size: 16px;
    background-color: #ffffff;
    color: #454545;
    height: 3em;
}
.resources-card .form-floating>.form-control:focus~label, .resources-card .form-floating>.form-control:not(:placeholder-shown)~label, .resources-card .form-floating>.form-select~label {
    transform: scale(.85) translateY(-.7rem) translateX(.15rem);
}
.resources-card .form-floating>label {
    padding: 0.6rem .75rem;
}
.resources-card .btn {
    position: absolute;
    font-size: 1.5rem;
    min-height: 28px;
    height: 1.4em;
    padding: 0px 12px;
    line-height: 23px;
    border-radius: 3px !important;
    right: 7px;
    top: 7px;
}

.home-slider-section {
    position: relative;
    overflow: hidden;
    border-top: 5px solid #ffafb2;
    border-bottom: 5px solid #ffafb2;
    height: 500px;
    margin-bottom: 50px;
}

.home-slider .slick-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: transparent;
    font-size: 0;
    width: 40px;
    height: 40px;
    border: solid 1px #b21f25;
    border-radius: 30px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 10px;
    z-index: 5;
}
.home-slider .slick-arrow:hover {
    background-color: #b21f25;
}
.home-slider .slick-prev.slick-arrow {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 256 512'%3E%3Cpath fill='%23b21f25' d='M231.293 473.899l19.799-19.799c4.686-4.686 4.686-12.284 0-16.971L70.393 256 251.092 74.87c4.686-4.686 4.686-12.284 0-16.971L231.293 38.1c-4.686-4.686-12.284-4.686-16.971 0L4.908 247.515c-4.686 4.686-4.686 12.284 0 16.971L214.322 473.9c4.687 4.686 12.285 4.686 16.971-.001z' class=''%3E%3C/path%3E%3C/svg%3E");
    left: 2.5%;
}

.home-slider .slick-next.slick-arrow {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 256 512'%3E%3Cpath fill='%23b21f25' d='M24.707 38.101L4.908 57.899c-4.686 4.686-4.686 12.284 0 16.971L185.607 256 4.908 437.13c-4.686 4.686-4.686 12.284 0 16.971L24.707 473.9c4.686 4.686 12.284 4.686 16.971 0l209.414-209.414c4.686-4.686 4.686-12.284 0-16.971L41.678 38.101c-4.687-4.687-12.285-4.687-16.971 0z' class=''%3E%3C/path%3E%3C/svg%3E");
    right: 2.5%;
}

.home-slider .slick-prev.slick-arrow:hover {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 256 512'%3E%3Cpath fill='%23ffffff' d='M231.293 473.899l19.799-19.799c4.686-4.686 4.686-12.284 0-16.971L70.393 256 251.092 74.87c4.686-4.686 4.686-12.284 0-16.971L231.293 38.1c-4.686-4.686-12.284-4.686-16.971 0L4.908 247.515c-4.686 4.686-4.686 12.284 0 16.971L214.322 473.9c4.687 4.686 12.285 4.686 16.971-.001z' class=''%3E%3C/path%3E%3C/svg%3E");
}

.home-slider .slick-next.slick-arrow:hover {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 256 512'%3E%3Cpath fill='%23ffffff' d='M24.707 38.101L4.908 57.899c-4.686 4.686-4.686 12.284 0 16.971L185.607 256 4.908 437.13c-4.686 4.686-4.686 12.284 0 16.971L24.707 473.9c4.686 4.686 12.284 4.686 16.971 0l209.414-209.414c4.686-4.686 4.686-12.284 0-16.971L41.678 38.101c-4.687-4.687-12.285-4.687-16.971 0z' class=''%3E%3C/path%3E%3C/svg%3E");
}

.home-slider__item {
    height: 490px;
    position: relative;
}

.home-slider__item .container {
    position: relative;
    z-index: 2;
}

.home-slider__img {
    position: absolute;
    left: 0;
    bottom: 0;
    top: 0;
}

.home-slider__img img {
    height: 100%;
}

.home-slider__content {
    padding: 35px 0;
}

.home-slider__logo-group {
    display: flex;
}

.home-slider__logo-group img {
    max-width: 275px;
    max-height: 70px;
}

.home-slider__logo-group img:not(:first-child) {
    border-left: 2px solid #DDDDDD;
    padding-left: 30px;
    margin-left: 30px;
}

.home-slider__content .title {
    font-size: 2rem;
    font-weight: 700;
    color: #b21f25;
    margin-top: 20px;
    margin-bottom: 20px;
}

.home-slider__content .description {
    margin-bottom: 30px;
    margin-top: 20px;
}

.home-slider__content .btn {
    padding: 5px 20px;
    font-size: 1.5rem;
    line-height: normal;
}

.accept-by {
    margin-top: 20px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
}

.accept-by .label {
    font-weight: normal;
    display: inline-block;
    margin-right: 20px;
    font-style: italic;
    font-size: 20px;
    margin-top: 0;
    color: #b21f25;
}

.accept-by img {
    max-width: 200px;
}
.home-slider__nav {
    position: absolute;
    bottom: 11px;
    left: 0px;
    right: 0px;
    height: auto;
    z-index: 10;
    width: 50%;
    margin-left: auto;
}

.home-slider__nav_item {
    width: 98px;
    border: 3px solid transparent;
    height: 69px;
    display: inline-block;
    margin-top: 15px;
    margin-bottom: 15px;
    margin-right: 12px;
    cursor: pointer;
    z-index: 2;
    box-sizing: border-box;
    box-shadow: 3px 3px 10px #c1c1c1;
}

.home-slider__nav_item img {
    height: calc(100% + 6px);
    width: calc(100% + 6px);
    margin-left: -3px;
    margin-top: -3px;
    filter: grayscale(1);
}

.home-slider__nav_item.slick-current.slick-active {
    border-color: #b21f25;
}

.home-slider__nav_item.slick-current.slick-active img {
    height: 100%;
    width: 100%;
    margin: 0;
    filter: none;
}

.careCard-section {
    position: relative;
    padding: 40px 0 60px;
}

.careCard-section .container, .procedures-section .container {
    max-width: 1280px;
}

.careCard_img {
    border-radius: 15px;
    overflow: hidden;
    max-width: 350px;
    margin-left: auto;
    margin-right: 45px;
}

.careCard-section .title {
    font-size: 2.625rem;
    font-weight: bold;
    line-height: 1.2;
    color: #b21f25;
    margin-bottom: 20px;
}

.procedures-section {
    position: relative;
    padding-bottom: 40px;
}
.procedures-section .col {
    margin-bottom: 24px;
}
.procedures-card {
    border-radius: 10px;
    box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.4);
    text-align: left;
    cursor: pointer;
    width: 100%;
    height: auto;
    display: inline-block;
    margin: 0;
    max-height: 305px;
    background-size: 100% 174px;
    background-repeat: no-repeat;
    background-position: top center;
    background-color: white;
    position: relative;
    text-decoration: none;
    overflow: hidden;
    height: 100%;
}

.procedures-card a {
    text-decoration: none;
    color: #b21f25;
    display: block;
}
.procedures-card a:hover {
    text-decoration: underline;
}
.procedures-card__body {
    min-height: 70px;
    display: flex;
    justify-content: center;
    text-decoration: none;
    text-align: center;
    vertical-align: middle;
    padding: 20px;
    max-height: 150px;
}

.procedures-card h3 {
    font-size: 1.375rem;
    font-weight: 700;
}
.procedures-card a {
    text-decoration: none;
    color: #b21f25;
}
/*Home Page End*/



/*Footer Start*/
.main-footer .footer-menu {
    display: flex;
    justify-content: flex-end;
}
.social-media__list {
    display: flex;
    margin-bottom: 0;
}
.social-media__list li {
    margin-right: 8px;
    cursor: pointer;
    text-decoration: none;
    width: 38px;
    height: 38px;
    border-radius: 20px;
}
.footer-menu ul {
    min-width: 150px;
}

.footer-menu ul:not(:last-child) {
    margin-right: 20px;
}

.footer-menu ul li {
    display: block;
    margin-bottom: 10px;
}

.footer-menu ul li a {
    font-size: 1rem;
    color: rgb(69,69,69);
    text-decoration: none;
    font-weight: bold;
    display: inline-block;
}
.footer-menu ul li a:hover {
    text-decoration: underline;
}
.backToTop {
    display: none;
    position: fixed;
    right: 45px;
    bottom: 10%;
    width: 60px;
    cursor: pointer;
    z-index: 10;
}
.footer-logo {
    border-radius: 10px;
    width: 100%;
    max-width: 250px;
}
/*Footer End*/

/*Responsive Start*/

.navbar-toggler {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    width: 34px;
    height: 24px;
    position: relative;
    padding: 0;
    outline: none !important;
    box-shadow: none !important;
    margin-top: 6px;
}
.navbar-toggler:focus {
    outline: none !important;
    box-shadow: none !important;
}
header .navbar-toggler .mobile-nav-hamburger {
    width: 24px;
    height: 2px;
    position: absolute;
    background-color: #b21f25;
    top: 8px;
    transition: transform 150ms, opacity 150ms;
    display: block;
}
header .navbar-toggler .mobile-nav-hamburger-1 {
    background-color: #b21f25;
    top: 0;
}
header .navbar-toggler .mobile-nav-hamburger-4 {
    background-color: #b21f25;
    top: 16px;
}
header .navbar-toggler[aria-expanded="true"] .mobile-nav-hamburger {
    background-color: #b21f25;
}
header .navbar-toggler[aria-expanded="true"] .mobile-nav-hamburger-2 {
    transform: rotate(45deg);
}
header .navbar-toggler[aria-expanded="true"] .mobile-nav-hamburger-3 {
    transform: rotate(-45deg);
}
header .navbar-toggler[aria-expanded="true"] .mobile-nav-hamburger-1,
header .navbar-toggler[aria-expanded="true"] .mobile-nav-hamburger-4 {
    opacity: 0;
}
.mobile-only.back-button {
    display: none;
}

/* location page*/
.find-location_section {
    padding-bottom: 120px;
}
.find-location_section a {
    color: #b21f25;
    text-decoration: unset;
}
.find-location_section a:hover {
    text-decoration: underline;
}
.sub-header {
    padding: 30px 0 20px;
}
.zip-input {
    position: relative;
}
.zip-input input{
    width: 100%;
    font-size: 14.4px;
}
.zip-input input {
    width: 100%;
    position: relative;
    background-color: #ebebeb;
    border-radius: 5px;
    border: 0;
    padding: 14px 14px 14px 32px;
    height: 47px;
}
img#get-current-location {
    position: absolute;
    left: 8px;
    top: 50%;
    transform: translate(0px, -50%);
}
.new-locate-btn {
    background-color: transparent;
    border: 0;
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translate(0px, -50%);
    height: 100%;
}
.map-filter .form-check {
    font-size: 13px;
    margin-bottom: 10px;
    padding: 0;
}
 .map-filter .form-check input {
    padding: 0;
    height: initial;
    width: initial;
    margin-bottom: 0;
    display: none;
    cursor: pointer;
  }
 .map-filter .form-check label {
    position: relative;
    display: block;
    cursor: pointer;
    padding-left: 30px;
  }
 .map-filter .form-check label:before {
    content:'';
    -webkit-appearance: none;
    background-color: transparent;
    border: 1px solid #bcbcbc;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05), inset 0px -15px 10px -12px rgba(0, 0, 0, 0.05);
    padding: 10px;
    display: inline-block;
    position: relative;
    vertical-align: middle;
    cursor: pointer;
    margin-right: 10px;
    border-radius: 5px;
    left: 0;
    position: absolute;
  }
 .map-filter .form-check input:checked + label:after {
    content: '';
    display: block;
    position: absolute;
    top: 2px;
    left: 9px;
    width: 6px;
    height: 14px;
    border: solid #ffffff;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
  }
  .map-filter .form-check input:hover + label::before {
    background: #CCCCCC;
    border-color: #CCCCCC;
  }
  .map-filter .form-check input:checked + label:before {
    background: #c52227;
    border-color: #c52227;
}
.marker-icon {
    width: 12px;
    margin-right: 5px;
}
.apply-btn {
    width: 100px;
    min-height: 32px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 2px solid #e4e4e4;
    border-radius: 5px;
    font-size: 14px;
    font-weight: 600;
    margin-left: auto;
    margin-top: 20px;
    text-align: center;
    padding-top: 3px;
}
.featured-card {
    padding-left: 30px;
    border: 1px solid #d2d0d0;
    border-right: none;
    box-shadow: 2px 1px #d2d0d0;
    padding: 20px;
    border-width: 1px 1px 1px 10px;
    border-left-color: #c52227;
}
.results-card {
    border: 0;
    box-shadow: unset;
    position: relative;
    counter-increment: my-awesome-counter;
    padding-left: 50px;
}
.results-card::before {
    content: counter(my-awesome-counter);
    color: #c52227;
    font-size: 14px;
    font-weight: bold;
    position: absolute;
    --size: 24px;
    left: 10px;
    width: var(--size);
    height: var(--size);
    top: 20px;
    background: white;
    border-radius: 50%;
    text-align: center;
    border: 2px solid #c52227;
    vertical-align: middle;
    line-height: 1.5;
}
.results-card:after {
    content: "";
    height: 1px;
    background: #ebebeb;
    left: -13px;
    bottom: 0;
    position: absolute;
    width: calc(100% + 13px);
}
div#loadMore a {
    font-size: 18px;
    background-color: #c52227;
    border-radius: 5px;
    border: 5px solid #c52227;
    color: #ffffff;
    font-weight: bold;
    line-height: 26px;
    text-align: center;
    max-width: 140px;
    width: 100%;
    display: block;    
    margin: auto;
    padding: 5px;
}
.featured-card .card-body a {
    color: #c52227;
    font-size: 16px;
    font-weight: 600;
    text-decoration: unset;
}
.featured-card .card-body a:hover {
    text-decoration: underline;
}
.featured-card .card-body p {
    margin: 0;
    font-size: 14px;
}
.featured-card .card-body {
    padding: 0;
}
.feature-icon {
    width: 18px;
    margin-right: 5px;
}
.location-sidebar {
    border-style: solid;
    border-width: 1px 0 0 0;
    border-color: #ebebeb;
    
}
.location-results {
    border-style: solid;
    border-width: 1px 0 0px 1px;
    border-color: #ebebeb;
}
.location-hr {
    width: calc(100% + 13px);
    background-color: #ebebeb;
    opacity: 1;
}
.location-ml-hr {
    margin-left: -13px;
    width: calc(100% + 15px);
    background-color: #ebebeb;
    opacity: 1;
}
.about-link {
    font-size: 13px;
    font-weight: 600;
    line-height: 1.14;
    color: #b21f25;
}
.featured-tip-text {
    width: 300px;
    background-color: white;
    text-align: left;
    border-radius: 6px;
    padding: 20px;
    z-index: 25;
    position: absolute;
    color: black;
    box-shadow: 0 2px 7px 1px rgb(0 0 0 / 30%);
}
.featured-filter {
    font-size: 14px;
}
.featured-filter select {
    color: #b21f25;
    border: 0;
    width: 83px;
    font-weight: 600;
}

/*financial page css*/
.healthcareloan .top-bar {
    display: none;
}
.calculator-section {
    padding: 60px 0;
}
.calculator-section input {
    width: 100%;
    border: 1px solid;
    padding: 10px .75rem;
    font-size: 16px;
    background-color: #ffffff;
    color: #454545;
    height: 3em;
}
h2.title {
    font-size: 2.625rem;
    font-weight: bold;
    line-height: 1.2;
    color: #b21f25;
}
.calculator-section input.amount {
    border: 0;
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 35px;
    padding: 0;
    height: auto;
}
.financial-benefits_section {
    padding: 60px 0;
    background-color: #f9f9f9;
}
.financial-benefits_box {
    max-width: 300px;   
    width: 100%;
    margin: auto;
}
.financial-benefits_box .financial-icon{
    max-width: 70px;
    width: 100%;
    margin-bottom: 15px;
}
.financial-benefits_box .financial-icon h5 {
    font-weight: 600;
    font-size: 20px;
    margin-bottom: 15px;
}
.benefit-check_list {
    font-size: 22px;
}
.benefit-check_list svg {
    width: 22px;
    margin-right: 5px;
}
.benefit-check_list li {
    margin-bottom: 20px;
}
.why-better_section {
    padding: 60px 0;
}
.customers_section {
    padding: 50px 0;
}
.reviews-and-ratings {
    padding: 50px 0;
    background: #f2f2f2;
    margin-bottom: 50px;
}
.customer-review .slick-track
{
    display: flex !important;
}
.customer-review .slick-slide
{
    height: inherit !important;
}
.customer-review h5 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: capitalize;
}
.customer-review .slide {
    margin: 10px;
    background: #b21f25;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0px 0px 5px 0px rgb(0 0 0 / 40%);
    color: #fff;
}
.customers-review_arrow svg {
    width: 22px;
}
.calculator-section label.error {
    display: block;
    color: #f04;
    text-align: left;
    font-size: 14px;
}
.calculator-section input.error {
    border: 1px solid #f04;
}
.customers-review_arrow li {
    display: inline-block;
}
/**/
.speed-hero_section {
        background-image: url(../images/speeduplending_banner.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: top 50px right 0;
    padding: 100px 0;
    height: calc(100vh - 195px);
    display: flex;
    align-items: center;
}
.logo-icon {
    max-width: 200px;
    width: 100%;
}
.ncrcard-benefit_section {
    background: #f7f7f7;
    padding: 80px 0;
}
.card-benefit_list {
    margin: 0;
}
.card-benefit_list li {
    font-size: 26px;
    padding-left: 35px;
    position: relative;
}
.card-benefit_list li svg {
    position: absolute;
    left: 0;
    top: 8px;
}
.card-benefit_list li.d-inline svg {
    top: 5px;
}
.card-benefit_list  svg {
    width: 26px;
}
.card-benefit_list li:not(:last-child){
    margin-bottom: 15px;
}
.card-benefit_img {
    max-width: 400px;
    margin: auto;
    display: block;
    width: 100%;
    border-radius: 10px;
}
.ncrcard-discount_section {
    padding: 80px 0;
}
.discount-number {
    font-size: 100px;
    font-weight: bold;
    line-height: 1;
}
.ncrcard-chart_section {
    background-color: #f4f4f6;
    padding: 80px 0;
    margin-bottom: 60px;
}
/*  partner-program css start */
.partner-banner {
    background-image: url(../images/partner-banner.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
.partner-banner_text {
    background: #b11e24bd;
    height: 100%;
    padding: 70px 50px;
    max-width: 600px;
    width: 100%;
    color: #fff;
}
.partner-goal {
    background-image: url(../images/goal.jpg);
    background-position: top left;
    background-size: cover;
    background-repeat: no-repeat;
    padding: 50px 0;
}
.goal_text {
    padding: 30px;
    background: #ffffffad;
}
.partner-work-benefits {
    padding: 80px 0;
}
.partner-work-benefits .card {
    max-width: 340px;
    width: 100%;
    margin: auto;
}
.partner-work-benefits .card .card-title{
    padding: 1rem 1rem;
    background: #b21f25;
    color: #fff;
    border-radius: 10px 10px 0px 0;
    text-align: center;
}
.partnership-win_section {
    background-color: #F7F6EB;
    padding: 80px 0;
}
/*form styles*/
#msform {
    position: relative;
    margin-top: 30px;
    margin-bottom: 30px;
}

/*Hide all except first fieldset*/
#msform fieldset:not(:first-of-type) {
    display: none;
}

/*inputs*/
/*#msform input, #msform textarea {
    padding: 15px;
    border: 1px solid #ccc;
    border-radius: 0px;
    margin-bottom: 10px;
    width: 100%;
    box-sizing: border-box;
    color: #2C3E50;
    font-size: 13px;
}*/

#msform input:focus, #msform textarea:focus {
    -moz-box-shadow: none !important;
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
    border: 1px solid #b21f25;
    outline-width: 0;
    transition: All 0.5s ease-in;
    -webkit-transition: All 0.5s ease-in;
    -moz-transition: All 0.5s ease-in;
    -o-transition: All 0.5s ease-in;
}

/*buttons*/
#msform .action-button {
   width: 100px;
    background: #b21f25;
    font-weight: bold;
    color: white;
    border-radius: 10px;
    cursor: pointer;
    padding: 10px 5px;
    border: 3px solid #b21f25;
    margin: 10px 5px;
}
#msform .action-button:hover, #msform .action-button-previous:hover {
    background: #fff;
    color: #b21f25;
}

#msform .action-button-previous {
    width: 100px;
    background: #c44d5e;
    font-weight: bold;
    color: white;
    border: 0 none;
    border-radius: 10px;
    cursor: pointer;
    padding: 10px 5px;
    margin: 10px 5px;
    border: 3px solid #c44d5e;
    margin: 10px 5px;
}

/*#msform .action-button-previous:hover, #msform .action-button-previous:focus {
    box-shadow: 0 0 0 2px white, 0 0 0 3px #C5C5F1;
}
*/
/*headings*/
.fs-title {
    font-size: 18px;
    text-transform: uppercase;
    color: #2C3E50;
    margin-bottom: 10px;
    letter-spacing: 2px;
    font-weight: bold;
}

.fs-subtitle {
    font-weight: normal;
    font-size: 13px;
    color: #666;
    margin-bottom: 20px;
}

/*progressbar*/
.progressbar {
    overflow: hidden;
    padding: 0;
    counter-reset: step;
    border: 1px dotted #b21f25;
    vertical-align: middle;
    border-width: 1px 0;
}
.progressbar li {
    list-style-type: none;
    font-size: 14px;
    position: relative;
    letter-spacing: 1px;
    display: inline-block;
    min-height: 26px;
    margin: 10px;
    padding-left: 30px;
}

.progressbar li:before {
    content: counter(step);
    counter-increment: step;
    width: 24px;
    height: 24px;
    line-height: 22px;
    display: block;
    font-size: 12px;
    color: #333;
    border-radius: 25px;
    position: absolute;
    left: 0;
    box-shadow: rgb(0 0 0 / 15%) 0 1px 2px;
    border: 1px solid #cccccc;
    text-align: center;
}
.progressbar li:before
/*progressbar connectors*/
.progressbar li:after {
    content: '';
    width: 100%;
    height: 2px;
    background: white;
    position: absolute;
    left: -50%;
    top: 9px;
    z-index: -1; /*put it behind the numbers*/
}

.progressbar li:first-child:after {
    /*connector not needed before the first step*/
    content: none;
}

/*marking active/completed steps green*/
/*The number of the step and the connector before it = green*/
/*.progressbar li.active:before, .progressbar li.active:after {
    background: #b21f25;
    color: white;
}*/
.progressbar li.active:before{
    background: #b21f25;
    color: white;
}
/*  partner-program css end */
.partner-application fieldset {
    padding: 0px 15px;
}
.partner-application label {
    font-weight: 600;
}
.partner-application {
    padding: 60px 0;
}
/*privacy-policy PAGE CSS start*/
.privacy-policy {
    padding: 80px 0;
}
.privacy-policy h3, .privacy-policy h5 {
    font-weight: 600;
}
.privacy-policy h5 {
    margin: 25px 0 10px 0;
}
.privacy-policy h3 {
    margin: 30px 0 0;
}
/*privacy-policy PAGE CSS end*/
.calculator-hero_section {
    background-image: url(../images/payment_calculator.jpg);
    padding: 80px 0 150px;
    background-size: cover;
    background-position: center center;
}
.calculator-title_section {
    background-color: #b21f2554;
    padding: 10px 0;
}
.calculator-result_section {
    padding: 80px 0 0;
}
.calculator-result_section .resources-card__img {
    max-width: 100px;
    width: 100%;
}
.calculator-result_section .accordion-item {
    border: 0;
    border-top: 1px solid #b21f25;
    border-radius: 0;
}
.calculator-result_section .accordion-button {
    color: #b21f25;
}
.calculator-result_section .accordion-button:not(.collapsed) {
    background-color: transparent;
    box-shadow: unset;
}
.calculator-result_section .form-floating {
    margin: 0px 10px 10px;
}
.calculator-btn {
    margin: 0px 10px 10px !important;
    border-radius: 0;
}
.calculator-result_section .accordion-body {
    padding-top: 0;
    border-bottom: 1px solid #b21f25;
}
.calculator-table {
    width: 100%;
    order: 3;
}
.calculator-table th, .calculator-table td {
    padding: 15px;
}
.calculator-table thead tr {
    border-bottom: 1px solid rgb(145,148,142);
    border-top: 1px solid #EAEAEA;
}
.calculator-table td.term, .calculator-table td.period, .calculator-table td.payment, .calculator-table td.monthly {
    color: #454545;
    font-weight: 700;
    text-align: center;
    height: 70px;
}
.calculator-table tr:nth-child(odd) > td.term, .calculator-table tr:nth-child(odd) > td.period {
    background-color: #f6f6f6;
}
.calculator-table tr:nth-child(odd) > td.monthly, .calculator-table tr:nth-child(odd) > td.payment {
    background-color: #eaeaea;
}
.interested-section {
    padding: 40px 0 80px;
}
.interested-card {
    background-color: #eaeaea;
    -webkit-box-shadow: 5px 5px 0px 0px rgb(186 186 186);
    -moz-box-shadow: 5px 5px 0px 0px rgba(186,186,186, 1);
    box-shadow: 5px 5px 0px 0px rgb(186 186 186);
    padding: 15px;
    border-radius: 0;
    border: 0;
}
.interested-card .btn {
    margin: 15px 0;
}
/* Payment calculator css Start  */
.auto-estimate_section {
    padding-top: 80px;
}
.auto-estimate_section .accordion-button, .auto-estimate_section .accordion-item {
    border-radius: 10px !important;
    border: 0;
}
.auto-estimate_section  .accordion-button:not(.collapsed) {
    color: inherit;
    background-color: transparent;
    box-shadow: unset;
}
.auto-estimate_form label {
    margin: 0;
    font-weight: 600;
}
.auto-estimate_form .input-group-text {
    background-color: transparent;
}
.ratePercentage {
    font-size: 32px;
    color: #b21f25;
}
.tier {
    font-size: 20px;
    color: #524940;
    line-height: 1;
}
.auto-light_bg {
    background-color: #F9F7F4;
}
.auto-rewards_section, .auto-refinancing_section, .auto-loans-benifits_section {
    padding: 80px 0;
}
.auto-rewards_section {
    background-image: url(../images/auto-loans-preferred-rewards-module.svg);
}
.auto_rewards-card {
    max-width: 160px;
    width: 100%;
    background-color: #5A5A5A;
    color: #fff;
    padding: 50px 20px 20px;
    margin: auto;
}
.auto_rewards-card p {
    margin-bottom: 0;
}
.calc-learning-auto_section {
    background: #ffedee;
}
.auto-loans-benifits_list {
    list-style: none;
    padding: 0;
    font-size: 26px;
    margin-bottom: 30px;
    max-width: 600px;
    margin: auto;
}
.auto-loans-benifits_list li {
    padding-left: 50px;
    position: relative;
    margin-bottom: 30px;
}
.auto-loans-benifits_list svg {
    width: 32px;
    height: 32px;
    position: absolute;
    left: 0;
    top: 5px;
}
.auto-loans-benifits_section {
    margin-bottom: 30px;
}
/* Payment calculator css end  */

/*  Housing css strat*/
.housing-martgage-calculator_Section {
    padding: 80px 0;
}
.housing-list{
    list-style: none;
    padding: 0;
    margin: 0;
}
.housing-list li {
    margin-bottom: 20px;
    padding-left: 30px;
    position: relative;
}
.housing-list li:last-child {
    margin-bottom: 0;
}
.housing-list svg{
    background: #b21f25;
    padding: 5px;
    border-radius: 50px;
    width: 22px;
    height: 22px;
    position: absolute;
    left: 0;
    top: 0;
}
.housing-martgage-rate_Section {
    background: #b21f25;
    padding: 60px;
    color: #fff;
    text-align: center;
    margin-bottom: 50px;
}
.housing-martgage-rate_Section a{
   color: #ffffff;
   text-decoration: none;
}
.housing-martgage-rate_Section a:hover { 
    text-decoration: underline;
}
.housing-martgage-rate_Section svg {
    width: 30px;
    height: 30px;
    background: #fff;
    border-radius: 50px;
    margin-right: 10px;
    vertical-align: middle;
    padding: 5px;
}
/*  Housing css end*/
.svg-circle svg {
    background: #b21f25;
    padding: 5px;
    border-radius: 50px;
    width: 22px;
    height: 22px;
}
.mortgage-rates_section {
    padding: 80px 0;
}
.mortgage-rates_section table thead th {
    background-color: #b21f25;
    color: white;
    font-size: 20px;
    font-weight: 500;
    border: 1px solid;
    border-color: #0c2074;
    border-right: 1px solid #cdcdd3;
    padding: 12px 20px;
}
.rates-table_box h3 {
    margin-bottom: 20px;
} 
.rates-table_box h3 a {
    color: #b21f25;
}
.mortgage-rates_section table {
    border: 1px solid #cdcdd3;
    margin: 40px 0;
}
.mortgage-rates_section table tbody th:not(:last-child) {
     border-right: 1px solid #cdcdd3; 
     font-weight: 500;
     border-bottom: 0;
     padding: 19px 20px;
}
.mortgage-rates_section table tbody td:not(:last-child) {
    border-right: 1px solid #cdcdd3;
    border-left: 0 solid;
}
.mortgage-rates_section table tbody td {
    border-bottom: 0;
    padding: 19px 20px;

}
.rates-table_box {
    padding: 25px 0;
}
.rates-table_box .btn {
   margin: 0px 15px 15px 0;
}
.mortgage-contact_box {
    padding: 25px 0;
}
.mortgage-contact_box svg {
    margin-right: 10px;
}
.mortgage-contact_box a {
    font-size: 20px;
    color: #454545;
    text-decoration: none;
    font-weight: bold;
}
.state-input input {
    background-image: url(../images/geo-alt-.svg);
    background-repeat: no-repeat;
    background-position: center right 12px;
    border-bottom: 1px solid #ddd !important;
    border-radius: 0 !important;
    width: 100%;
    height: 56px !important;
}

/* ncrcapital page css start */
.ncrcapital-banner_section {
    padding: 130px 0;
    background-image: url('../images/ncrcapital-bg.jpg');
    text-align: center;
    color: #ffffff;
    background-position: center;
    background-size: cover;
}
.ncrcapital-marketplace_section {
    padding: 80px 0;
}
.marketplace-icon {
    width: 90px;
    height: 90px;
    margin: auto;
    display: block;
}
.ncrcapital-rates_section {
    background-color: #b21f25;
    padding: 50px 0;
    text-align: center;
    color: #ffffff;
}
.rates-counter_box h2 {
    font-size: 80px;
    font-weight: 600;
    line-height: 1;
}
.rates-counter_box p {
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 5px;
}
.ncrcapital-rates-terame_section {
    background-image: url(../images/stock.jpg);
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
    padding: 110px 0;
    position: relative;
    text-align: center;
    color: #ffffff;
} 
.ncrcapital-rates-terame_section:before {
    content: "";
    background-color: #00000099;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
}
.ncrcapital-rates-terame_section .row {
    position: relative;
    z-index: 2;
}
.ncrcapital-loan-type_section {
    padding: 80px 0;
}
.loan-type_box {
    position: relative;
    padding-left: 40px;
}
.loan-type_box svg {
    position: absolute;
    left: 0;
    top: 0;
    top: 4px;
    width: 26px;
}
.ncrcapital-featured_section {
    background-color: #F7F7F7;
    padding: 80px 0;
    margin-bottom: 30px;
}
.ncrcapital-featured_card {
    text-align: center;
    height: 100%;
}
.ncrcapital-featured_card:hover {
    box-shadow: 0px 0px 55px 0px rgb(0 0 0 / 31%);
}
.ncrcapital-featured_card .card-body img {
    width: 61px;
    height: 41px;
    object-fit: contain;
    margin: auto;
    display: block;
    margin-bottom: 20px;
}
/* ncrcapital page css end */
/*  Partner css start */
.hero-partner-section {
    background-color: #b21f25;
    padding: 80px 0;
}
.innovators-partner-logo {
    background: #ffeeef;
    padding: 50px 0;
}
.innovators-partner-logo ul{
    text-decoration: none;
    margin: 0;
    padding: 0;
}
.innovators-partner-logo li {
    display: inline-block;
    margin: 10px 15px;
}
.innovators-partner-logo li img {
    height: 45px;
}
.advantage-section {
    padding: 80px 0;
}
.stat-count {
    font-size: 70px;
    line-height: 1;
    margin: 0;
    color: #b21f25;
    font-weight: 600;
}
.partnership-perks-section {
    padding: 80px 0;
}
.partner-referrals-section {
    padding: 80px 0;
    text-align: center;
}
.panther-form-section {
    padding: 80px 0;
}
.blog-post .col {
    position: relative;
}
.blog-post .col:not(:last-child):before {
    border-right: 2px solid #c4c4c4;
    content: "";
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    width: 2px;
}
.blog-btn {
    position: relative;
    text-decoration: none;
    color: inherit;
}
.blog-btn:after {
    position: absolute;
    content: "";
    background: #b21f25;
    width: 100%;
    height: 2px;
    left: 0;
    bottom: -2px;
}
.panther-faq-section {
    padding: 80px 0;
}
.panther-faq-section .accordion-item {
    border-width: 0 0 1px 0;
}
.panther-faq-section .accordion-button:not(.collapsed) {
    color: inherit;
    background-color: transparent;
    box-shadow: unset;
    padding-bottom: 0;
}
.panther-faq-section .accordion-button {
    font-weight: bold;
    font-size: 18px;
    color: #000000;
}
/*  Partner css end */
@media (min-width: 992px) {
    .container, .container-lg, .container-md, .container-sm {
        max-width: 100%;
    }
}
@media (min-width: 1366px) {
    .container {
        max-width: 1220px;
    }
}
@media (min-width: 1550px) {
    .container {
        max-width: 1500px;
    }
}
@media (min-width: 1550px) {
    .container {
        max-width: 1500px;
    }
}
@media (max-width: 1199px){
    .main-header__bottom .nav-item {
        margin: 0 !important;
    }
    .main-header__top {
        justify-content: inherit;
    }
    .mobile-header-control {
        display: flex;
        align-items: center;
    }
    .mobile-search-icon, .mobile-login {
        width: 40px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .mobile-login {
        margin-right: 5px;
    }
    .hero-section {
        height: auto;
        background-image: none !important;
    }
    .hero-section__img {
        width: 100%;
        max-height: none;
        height: 66.6vw;
        height: 100%;
    }
    .hero-section__img img {
        /*height: 100%;*/
        object-fit: contain;
        width: 100%;
    }
    .hero-section .container {
        height: auto;
        position: relative;
        min-height: auto;
    }
    .hero-content__row {
        margin-top: 0;
    }
    .hero-block__row {
        margin-top: 0px;
    } 
    .hero-section__content {
        text-align: center;
        padding: 45px 0 25px;
        /*display: flex;
        flex-direction: column;
        align-items: center;
        */
    }
    .hero-section__content .btn {
       /* order: 0;
        margin-top: -80px;*/
        margin-bottom: 30px;
    }

    .hero-section__content .title {
        order: 1;
    }
    .hero-section__content p {
        order: 2;
    }
    .hero-block {
        background-color: transparent !important;
        border-bottom: none !important;
        height: auto;
        margin: 0;
        padding: 20px 5px 45px;
        vertical-align: top;
        display: block;
        max-width: none;
        width: 100%;
        opacity: 1;
    }
    .hero-block__link {
        max-width: 405.87px;
        margin: 0 auto;
        display: block;
    }
    .hero-block__link img {
        display: inline-block;
        vertical-align: top;
        max-width: 80px;
        float: left;
    }
    .hero-block__link h3 {
        color: #b21f25;
        margin-left: 100px;
        text-align: left;
    }
    .hero-block__link h3:after {
        display: none;
    }
    .hero-block__link p {
        color: #454545;
        vertical-align: top;
        margin-left: 100px;
        margin-top: 8px;
        display: block;
    }
    .speed-hero_section {
        height: calc(100vh - 141px);
    }
    .calc-learning-auto_section {
        padding: 80px 0;
    }
}
@media (max-width: 1199px) and (min-width: 991px) {
    .hero-block__row .col {
        max-width: 30%;
        width: 100%;
    }
}
@media (max-width:  1024px) {
    .main-header__bottom .navbar-collapse {
        position: absolute;
        left: 0;
        right: 0;
        top: 70px;
        height: calc(100vh - 141px);
        padding: 0 16px 16px 16px;
        background-color: #fff;
    }
    .main-header__bottom .navbar-collapse .navbar-nav {
        height: calc(100vh - 141px);
        overflow: auto;
    }
    .main-header__bottom .nav-item .nav-link:before {
        display: none;
    }
    .main-header .dropdown-toggle::after {
        display: none;
    }
    .mobile-only {
        display: block;
    }
    .main-header .dropdown-menu {
        box-shadow: none;
    }
    .dropdown-menu__container {
        padding: 0px 15px 15px;
    }
    .dropdown-menu__submenu {
        flex-direction: column;
    }
    .close-sub-menu {
        position: relative;
        left: 82%;
        display: inline-block;
    }
    .categories-list {
        padding: 10px 0 10px;
    }
    .categories-list li {
        height: auto;
        flex: 100%;
    }
    .categories-list__link {
        border: none;
        border-bottom: solid 2px #dddddd;
        border-radius: 0;
        display: flex;
        align-items: center;
        justify-content: flex-start;
        padding: 10px;
    }
    .categories-list__link img {
        margin: 0;
        width: 24px;
        height: 18px;
        margin-right: 8px;
    }
    .categories-list__link .title {
        margin: 0;
        width: 100%;
        max-width: 100%;
        text-align: left;
    }
    .mobile-header-control {
        display: flex;
        align-items: center;
        margin-left: auto;
    }
    .mobile-search-icon {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        margin-right: 0;
    }
    .mobile-login {
        width: 40px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-right: 5px;
    }
    .main-header__bottom .nav-item {
        margin: 0 !important;
        border-bottom: solid 2px #dddddd;
    }
    .main-header__bottom .nav-item .nav-link {
        display: block;
        color: #454545;
        font-weight: 600;
        font-size: 14px;
        padding: 19px 28px 18px 10px;
        line-height: normal;
        position: relative;
        cursor: pointer;
    }
    .main-header__bottom .nav-item .nav-link.dropdown-toggle {
        background-position: center right 10px;
        background-image: url("data:image/svg+xml,%0A%3Csvg id='Layer_1' data-name='Layer 1' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24.38 42.77'%3E%3Cdefs%3E%3Cstyle%3E.cls-1%7Bfill:%23b21f25;%7D%3C/style%3E%3C/defs%3E%3Ctitle%3Echevron-right%3C/title%3E%3Cpath class='cls-1' d='M702.51,378.88l-18.39-18.39a3,3,0,0,0-4.24,4.25L696.14,381l-16.26,16.26a3,3,0,0,0,4.24,4.25l18.39-18.39A3,3,0,0,0,702.51,378.88Z' transform='translate(-679 -359.62)'/%3E%3C/svg%3E%0A");
        background-size: 8px 14px;
        background-repeat: no-repeat;
    }
    .hero-section {
        height: auto;
        background-image: none !important;
    }
    .hero-section__img {
        width: 100%;
        max-height: none;
        height: 66.6vw;
    }
    .hero-section__img img {
        /*height: 100%;*/
        object-fit: contain;
        width: 100%;
    }
    .hero-section .container {
        height: auto;
        position: relative;
        min-height: auto;
    }
    .hero-content__row {
        margin-top: 0;
    }
    .hero-block__row {
        margin-top: 0px;
    } 
    /*.hero-section__content {
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 45px 0 25px;
    }*/
    /*.hero-section__content .btn {
        order: 0;
        margin-top: -80px;
        margin-bottom: 30px;
    }*/

    .hero-section__content .title {
        order: 1;
    }
    .hero-section__content p {
        order: 2;
    }
    .hero-block {
        background-color: transparent;
        border-bottom: none !important;
        height: auto;
        margin: 0;
        padding: 20px 5px 45px;
        vertical-align: top;
        display: block;
        max-width: none;
        width: 100%;
        opacity: 1;
    }
    .hero-block__link {
        max-width: 405.87px;
        margin: 0 auto;
        display: block;
    }
    .hero-block__link img {
        display: inline-block;
        vertical-align: top;
        max-width: 80px;
        float: left;
    }
    .hero-block__link h3 {
        color: #b21f25;
        margin-left: 100px;
        text-align: left;
    }
    .hero-block__link h3:after {
        display: none;
    }
    .hero-block__link p {
        color: #454545;
        vertical-align: top;
        margin-left: 100px;
        margin-top: 8px;
        display: block;
    }
    span.locator-separator-text {
        display: none;
    }
    .locator-form {
        max-width: 390px;
    }
    .locator-form__group {
        flex-wrap: wrap;
    }
    .locator-form__item:nth-child(2), .locator-form__item:nth-child(4) {
        display: none;
    }
    .locator-form__item {
        flex: 0 0 auto;
        width: 100%;
    }
    .practice-input {
        width: 100%;
    }
    .locator-form__item:nth-child(5), .locator-form__item:nth-child(6) {
        flex: 0 0 50%;
        width: 50%;
    }
    .radius-input {
        width: 100%;
    }
    .locator-form__item {
        margin-bottom: 20px;
    }
    .locator-form__item .btn {
        width: 100%;
    }
    .resources-section .row {
        max-width: initial;
        margin-right: calc(var(--bs-gutter-x)/ -2);
        margin-left: calc(var(--bs-gutter-x)/ -2);
    }
    .resources-card {
        display: flex;
        padding: 30px 0;
    }
    .resources-card__img {
        display: inline-block;
        width: 30%;
        margin-right: 5%;
        vertical-align: top;
        text-align: center;
    }
    .resources-card__img {
        margin-bottom: 0px;
    }
    .resources-card__text {
        display: inline-block;
        max-width: 62%;
        text-align: left;
        vertical-align: top;
    }
    .resources-card .btn {
        position: static;
        margin: 10px 0 0;
        font-weight: bold;
        /*color: #ffffff;*/
        height: 42px;
        font-size: 1rem;
        line-height: 32px;
    }
    .home-slider-section {
        height: 700px;
    }
    .home-slider__item.slick-slide {
        display: flex;
        flex-direction: column-reverse;
        height: auto;
    }
    .home-slider__content {
        padding: 35px;
        text-align: center;
    }
    .home-slider__logo-group {
        display: flex;
        justify-content: center;
    }
    .home-slider__img {
        position: static;
        text-align: center;
    }
    .home-slider__img img {
        margin: auto;
        max-height: 250px;
        object-fit: contain;
    }
    .home-slider__nav {
        display: flex;
        justify-content: center;
        max-width: 540px;
        width: 100%;
        margin: auto;
        position: static;
    }
    .home-slider .slick-arrow {
        top: 130px;
    }
    .accept-by {
        justify-content: center;
    }
    .careCard_img {
        margin-left: 50px;
        margin-right: 45px;
        margin-bottom: 30px;
    }
    .careCard-section .title {
        text-align: center;
    }
    .careCard-section p {
        text-align: center;
    }
}
@media (max-width:  991px) {
    body.search-open {
        overflow: hidden;
    }
    .search-open .location-tab {
        opacity: 0.2;
    }
    .find-location-sub_header {
        position: fixed;
        z-index: 2;
        width: 100%;
        webkit-box-shadow: 0px 3px 5px 2px rgb(0 0 0 / 20%);
        -moz-box-shadow: 0px 3px 5px 2px rgba(0,0,0,0.2);
        box-shadow: 0px 3px 5px 2px rgb(0 0 0 / 20%);
        padding: 20px 0;
        background: #fff;
    }
    .location-results {
        border: 0;
    }
    .location-map-tab-content {
        display: none;
    }
    .find-location_section {
        padding-top: 190px;
    }
    .find-location_section .container, .find-location-sub_header .container {
        max-width: 100%;
    }
    .mobile-filter{
        height: calc(100vh - 326px);
        overflow-y: scroll;
        width: calc(100% + 30px);
        padding-right: 15px;
        padding-bottom: 50px;
    }
    .mobile-search-sorting input[type="radio"]:checked + label {
        background-color: #b21f25;
        color: #ffffff;
    }
    .mobile-search-sorting input[type="radio"] {
        display: none;
    }
    .mobile-search-sorting {
        width: 100%;
        height: 40px;
        border-radius: 5px;
        border: solid 1px #ebebeb;
        overflow: hidden;
        position: relative;
        margin-bottom: 16px;
    }
    .mobile-search-sorting label {
        width: 25%;
        float: left;
        text-align: center;
        line-height: 38px;
        color: #595959;
        font-size: 13px;
        font-weight: bold;
    }
    .mobile-filter .accordion-button::before {
        flex-shrink: 0;
        width: 1.75rem;
        height: 1.75rem;
        margin-right: 10px;
        content: "";
        background-repeat: no-repeat;
        background-size: 1rem;
        transition: transform .2s ease-in-out;
        border: 2px solid #e4e4e4;
        border-radius: 50%;
        background-position: top 5px center;
        background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23212529'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
        transform: rotate(270deg);
    }
    .mobile-filter .accordion-button:not(.collapsed)::before {
        background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23212529'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
        transform: rotate(0deg);
        border-color: #b21f25;
    }
    .mobile-filter .accordion-body {
        padding: 0.5rem 0 0.5rem 0;
    }
    .mobile-filter .accordion-button::after {
        display: none;
    }
    .mobile-filter .accordion-flush .accordion-item .accordion-button {
        font-size: 14px;
        padding: 10px 0px;
    }
    .mobile-filter .accordion-button:not(.collapsed) {
        color: inherit;
        background-color: #ffffff;
    }
    .mobile-location-search {
        width: 144px;
        height: 40px;
        background: none;
        border: 2px solid #e4e4e4;
        border-radius: 5px;
        color: #b21f25;
        font-weight: bold;
        font-size: 12px;
        cursor: pointer;
        display: block;
        text-align: center;
        line-height: 2.9;
        text-decoration: unset;
    }
    .mobile-location-search:hover {
        color: #b21f25;
    }
    .mobile-location-search_close {
        border-color: #b21f25;
    }
    .mobile-filter .form-check {
        font-size: 12px;
    }
    .mobile-controls select, .mobile-controls input {
        width: 100%;
        height: 48px !important;
        border-radius: 5px;
        background-color: #f3f3f3;
        color: #454545;
        font-size: 14px;
        border: none;
        padding: 15px;
        margin-bottom: 16px;
    }
    .mobile-controls .form-floating>label {
        padding: 0.75rem .75rem;
    }
    .mobile-controls .form-floating>.form-control:focus, .mobile-controls .form-floating>.form-control:not(:placeholder-shown) {
        padding-top: 1.325rem;
    }
    .mobile-filter .mobile-controls .location-group input {
        background-position: center left 14px;
    }
    .mobile-filter .form-floating>label {
        padding: 0.6rem .75rem;
    }
    .mobile-filter .mobile-controls .locator-form__item {
        padding: 0;
    }
    .mobile-filter-form select {
        background-image: url(https://www.carecredit.com/sites/cc/image/select-arrow.png);
        background-repeat: no-repeat;
        background-position: right 10px center;
        cursor: pointer;
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        box-sizing: border-box;
        -webkit-appearance: none;
        -moz-appearance: none;
    }
    .mobile-filter-form select:focus, .mobile-filter-form input:focus {
        outline: 1px solid #767676;
        outline-offset: -1px;
    }
    .mobile-controls .location-tab {
        width: 80px;
        display: flex;
        height: 40px;
        -webkit-box-shadow: 0px 0px 7px 0px rgb(0 0 0 / 14%);
        -moz-box-shadow: 0px 0px 7px 0px rgba(0,0,0,0.14);
        box-shadow: 0px 0px 7px 0px rgb(0 0 0 / 14%);
        margin-left: auto;
    }
    .mobile-controls .location-tab a {
        font-size: 12px;
        flex: 1 50%;
        font-weight: bold;
        color: #b21f25;
        height: 40px;
        display: flex;
        justify-content: center;
        align-items: center;
        text-decoration: unset;
    }
    .mobile-controls .location-tab a.active {
        background: #b21f25;
        color: #fff;
    }
    .mobile-controls .location-list-tab.active {
        border-radius: 5px 0 0 5px;
    }
    .mobile-controls .location-map-tab.active {
        border-radius: 0 5px 5px 0;
    }
    .mobile-filter .radius-input select {
        height: 48px;
    }
    .form-floating.radius-input>label {
        padding: 10px 10px 10px 10px;
    }
    .mobile-filter-form {
        padding: 20px 0 5px;
        position: relative;
        margin: 20px 0;
    }
    .mobile-filter-form::after {
        content: "";
        height: 1px;
        width: calc(100% + 24px);
        position: absolute;
        bottom: 0;
        left: -12px;
        background: #ebebeb;
    }
    .mobile-filter-form::before {
        content: "";
        height: 1px;
        width: calc(100% + 24px);
        position: absolute;
        top: 0;
        left: -12px;
        background: #ebebeb;
    }
    .mobile-controls {
        position: relative;
        padding-top: 20px;
    }
    .mobile-controls:before {
        background: #ebebeb;
        content: "";
        position: absolute;
        width: calc(100% + 24px);
        height: 1px;
        top: 0;
        left: -12px;
    }
    .mobile-filter-form input#locationInput:focus {
        background: #f3f3f3;
    }
    .mobile-form-buttons {
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        display: flex;
        height: 64px;
    }
    .form-btn-mobile {
        flex: 1 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        height: 100%;
        font-weight: bold;
        cursor: pointer;
    }
    #mobile-form-reset {
        background-color: #f3f3f3;
        color: #b21f25;
        border: 8px solid #f3f3f3;
    }
    #mobile-form-reset:hover {
        background-color: #ffffff;
    }
    #mobile-form-submit {
        background-color: #b21f25;
        color: white;
        border: 8px solid #b21f25;
    }
    #mobile-form-submit:hover {
        background-color: #fff;
        color: #b21f25;
    }
    .results-card_btn a {
        width: 100px;
        min-height: 32px;
        display: inline-block;
        justify-content: center;
        align-items: center;
        border: 2px solid #e4e4e4;
        border-radius: 5px;
        font-size: 14px;
        font-weight: 600;
        text-align: center;
        margin: 10px 10px 10px 0px;
    }
    .results-card_btn {
        margin-top: 10px;
    }
    .speed-hero_section {
        position: relative;
    }
    .speed-hero_section:before {
        content: "";
        position: absolute;
        width: 100%;
        height: 100%;
        background: #ffffff6e;
        top: 0;
        left: 0;
        z-index: 1;
    }
    .speed-hero_section .row {
        position: relative;
        z-index: 2;
    }
}

@media (max-width:  767px) {
    .btn {
        padding: 5px 20px;
        font-size: 1.2rem;
        line-height: 1.2;
    }
    h2.title, .careCard-section .title {
        font-size: 2rem;
    }
    .column-reverse {
        flex-direction: column-reverse;
    }
    .top-bar {
        text-align: left;
        margin-bottom: 0px;
    }
    .hero-section__content .title {
        font-size: 1.9rem;
    }
    .resources-card p {
        height: auto;
    }
    .resources-card__img img {
        max-width: 70%;
        margin: 0 auto;
        display: block;
        vertical-align: top;
    }
    .home-slider__logo-group {
        flex-wrap: wrap;
    }
    .home-slider__logo-group img:not(:first-child) {
        padding: 0;
        border-left: 0;
        margin: auto;
        margin-top: 20px;
    }
    .home-slider .slick-arrow {
        width: 30px;
        height: 30px;
        top: 48%;
    }
    .home-slider__nav {
        display: flex;
        justify-content: center;
        max-width: 300px;
        width: 100%;
        margin: auto;
        position: static;
    }
    .home-slider__nav_item {
        width: 55px;
        height: 35px;
        margin-top: 10px;
        margin-bottom: 10px;
        margin-right: 5px;
        border-width: 2px;
    }
    .careCard-section {
        padding: 20px 0 60px;
    }
    .careCard_img {
        margin: 0 auto 30px;
    }
    .footer-menu {
        flex-wrap: wrap;
    }
    .main-footer__about {
        text-align: center;
        margin-bottom: 40px;
    }
    .social-media__list {
        justify-content: center;
    }
    .footer-menu ul {
        width: 100%;
        margin-right: 0 !important;
        text-align: center;
    }
    .footer-menu ul:last-child {
        display: flex;
        flex-wrap: wrap;
    }
    .footer-menu ul:last-child li {
        border-left: 1px solid #ccc;
        padding: 0 10px 0;
    }
    .footer-menu ul:last-child li:first-child, .footer-menu ul:last-child li:nth-child(4) {
        border-left: 0;
        padding-left: 0;
    }
    .footer-menu ul:last-child li a {
        max-width: 230px;
        font-weight: 400;
        padding: 0;
    }
    .speed-hero_section {
        background-position: bottom 0px right 0;
    }
    .card-benefit_list li {
        font-size: 22px;
    }
    .card-benefit_list li svg {
        top: 6px;
        width: 22px;
    }
    .partner-banner_text {
        max-width: 100%;
    }
    .calculator-hero_section {
        position: relative;
    }
    .calculator-hero_section:before {
        position: absolute;
        width: 100%;
        height: 100%;
        content: "";
        left: 0;
        top: 0;
        background-color: #fdfdfd70;
        z-index: 1;
    }
    .calculator-hero_section .row {
        position: relative;
        z-index: 2;
    }
    /*.partner-goal {
        position: relative;
    }
    .partner-goal:before {
        background: #00000073;
        position: absolute;
        content: "";
        width: 100%;
        height: 100%;
        top: 0;
        z-index: 1;
    }
     .partner-goal .row {
        position: relative;
        z-index: 2;
     }*/
     .auto-loans-benifits_list {
        font-size: 20px;
     }
     .auto-loans-benifits_list li {
        padding-left: 40px;
    }
    .auto-loans-benifits_list svg {
        width: 28px;
        height: 28px;
    }
}
@media (max-width:  576px){
    .partner-banner_text {
        padding: 70px 15px;
    }
}
@media (max-width: 380px){
    .speed-hero_section {
        background-position: bottom right;
    }
}
/*Responsive End*/