:root {
    --font-primary: "Fustat", sans-serif;
    --font-secondary: "Nunito Sans", sans-serif;
    --font-size-base: 16px;
    --font-weight-bold: 700;
    --Blue: #2348A7;
    --Week-Blue: #53BAF2;
    --Black: #000014;
    --White: #FDFDFD;
    --Dark-Blue: #16284E;
}

html, body {
    max-width: 100%;
    width: 100%;
    overflow-x: hidden;
    font-family: var(--font-primary);
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    color: var(--Black);
    text-align: center;
    font-size: 18px;
    line-height: 160%;
}
img {
    max-width: 100%;
    display: inline-block;
}
.btn {
    font-family: var(--font-secondary);
    display: flex;
    padding: 12px 22px;
    justify-content: center;
    align-items: center;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 300;
    line-height: normal;
}
.btn.btn-primary {
    background: var(--Blue);
    box-shadow: 0px 2px 4px 0px rgba(94, 94, 94, 0.10);
}
.btn.btn-primary:hover {
    background-color: var(--Week-Blue);
    border-color: var(--Week-Blue);
}
.btn.btn-white {
    border: 1px solid var(--White);
    background: var(--White);
    color: var(--Blue);
}
.btn.btn-outline-primary {
    border-radius: 50px;
    border: 2px solid #2248A7;
    color: var(--Blue);
    font-weight: 600;
}
.btn-link {
    background: none;
    color: inherit;
    border: none;
    padding: 0;
    font: inherit;
    cursor: pointer;
    outline: inherit;
}
h1 {
    color: var(--Blue);
    font-size: 44px;
    font-weight: 800;
    line-height: 125%; /* 55px */
    letter-spacing: 0.66px;
}
h2 {
    color: var(--Black);
    font-size: 35px;
    font-weight: 600;
    line-height: normal;
}
.h3 {
    color: var(--Black);
    font-size: 20px;
    font-weight: 600;
    line-height: normal;
}
.h3-link {
    font-size: 17px;
    line-height: normal;
}
.subtitle {
    color: var(--Black);
    font-size: 18px;
    font-weight: 500;
    line-height: 22px;
}
.blue {
    color: var(--Blue);
}

.container {
    max-width: 1240px;
}
header {
    width: 100%;
    font-family: var(--font-secondary);
    padding: 18px 0px;
    position: fixed;
    top: 0;
    z-index: 10;
    border-bottom: 1px solid #F1EFEA;
    background: #fff;
}
header .container {
    max-width: 1458px;
}
.logo {
    height: 40px;
    display: inline-block;
    float: left;
    margin-top: 2px;
}
.logo img {
    max-height: 40px;
}
header nav a.nav-link {
    font-size: 15px;
    line-height: normal;
    color: var(--Black);
    letter-spacing: 0.5;
    padding: 0;
    margin: 0 0 0 42px;
}
header nav a.nav-link:hover {
    color: var(--Blue);
}
header nav button {
    border: 0 !important;
}
.mobile-nav {
    display: none;
}

.wrapper {
    width: 100%;
    display: inline-block;
    margin-top: 80px;
}
.header-form {
    width: 100%;
    padding: 24px 0;
    --header-bg-url: "";
    background: linear-gradient(0deg, rgba(255, 255, 255, 0.80) 0%, rgba(255, 255, 255, 0.80) 100%), var(--header-bg-url) lightgray left center no-repeat;
    background-size: cover;
}
.header-form h1 {
    margin-top: 10px;
    margin-bottom: 11px;
}
.header-form p {
    max-width: 500px;
    color: #000014;
    text-align: center;
    font-size: 20px;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
    margin: 0 auto;
}

.header-form form {
    width: 100%;
    max-width: 630px;
    background: var(--White);
    display: inline-block;
    padding: 12px 0 12px;
    margin: 32px auto 0;
    position: relative;
    text-align: left;
    border-radius: 6px 0px 0px 6px;
    border-top: 1.2px solid #E7E8E8;
    border-bottom: 1.2px solid #E7E8E8;
    border-left: 1.2px solid #E7E8E8;
    background: #FFF;
}
.header-form form::before {
    content: "";
    border-left: 1px solid #E0E0E0;
    position: absolute;
    height: 100%;
    top: 0;
    right: 275px;
}
.header-form form .flex-fill {
    padding: 0 20px;
}
.header-form form label {
    color: #2348A7;
    font-family: var(--font-secondary);
    font-size: 16px;
    font-style: normal;
    font-weight: 800;
    line-height: 95%; /* 15.2px */
}
.header-form form .select2-container {
    width: auto !important;
    margin-top: 0px;
}
.header-form form .select2-container--default .select2-selection--single {
    border: none;
    color: #14171D;
    font-family: var(--font-secondary);
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}
.header-form form .select2-container .select2-selection--single .select2-selection__rendered {
    padding-left: 0;
}
.select2-container--open .select2-dropdown--below {
    border: none;
    margin-top: 12px;
    text-align: left;
}
.header-form form input[type="text"] {
    width: 140px;
    border: none;
    color: var(--Black);
    font-size: 18px;
    font-weight: 400;
    line-height: 28px;
    padding: 0;
    margin-top: 0px;
}
.header-form form input[type="text"]::placeholder {
    color: rgba(0, 0, 20, 0.30);
}
.header-form form input[type="text"]:focus {
    box-shadow: none;
}
.header-form form button {
    position: absolute;
    right: -1px;
    top: -1px;
    padding: 29px 31px 29px;
    border-radius: 0px 6px 6px 0px;
}
.header-form form button i {
    font-size: 24px;
}

.breadcrumb {
    width: 100%;
    padding: 15px 0;
    margin: 0;
    background: var(--Blue);
}
.breadcrumb ol {
    display: flex;
    padding: 0;
    margin: 0;
    list-style: none;
}
.breadcrumb .breadcrumb-item,
.breadcrumb .breadcrumb-item a {
    color: var(--White);
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 150%; /* 24px */
    text-decoration: none;
}
.breadcrumb .breadcrumb-item.active {
    color: var(--White);
    font-weight: 300;
}
.breadcrumb-item+.breadcrumb-item::before {
    content: ">";
    color: var(--White);
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 150%; /* 24px */
    padding: 0 8px 0 0;
}
.homeBreadcrumbs {
    margin-top: -30px;
    margin-bottom: 40px;
}

.content {
    padding: 48px 0;
    text-align: left;
}
section.subtitle-section {
    text-align: center;
    background: #f8f9fa;
    margin-top: -48px;
    padding: 25px 0;
    margin-bottom: 30px;
}
section.subtitle-section h2 {
    font-size: 30px;
    font-weight: 600;
    line-height: normal;
    margin: 0 0 10px;
}
section.subtitle-section p {
    margin: 0;
}
ul.list-inline li {
    width: 24%;
    display: inline-block;
    margin: 0 0 8px 0;
}
ul.list-inline li a {
    font-size: 17px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    color: #2348A7;
    text-decoration: none;
}
ul.list-inline li a.text-black {
    color: var(--Black);
}
ul.list-inline.list-primary {
    width: 100%;
    justify-content: start;
    display: flex;
    align-content: center;
    row-gap: 10px;
    gap: 10px;
    flex-wrap: wrap;
}
ul.list-inline.list-primary li {
    width: 32.5%;
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 6px;
    flex-shrink: 0;
}
ul.list-inline.list-primary li a:has(img) {
    width: 100%;
    height: 220px;
    display: inline-block;
    overflow: hidden;
}
ul.list-inline.list-primary li a img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
ul.list-inline.list-primary li h3 {
    width: 100%;
    padding: 10px 0;
    margin-top: -7px;
    color: var(--White);
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--Blue);
}
ul.list-inline.list-primary li h3 a {
    color: var(--White) !important;
    text-decoration: none;
}

ul.list-inline.list-secondary {
    width: 100%;
    justify-content: start;
    display: flex;
    align-content: center;
    row-gap: 10px;
    gap: 10px;
    flex-wrap: wrap;
}
ul.list-inline.list-secondary li{
    width: 24%;
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 6px;
    flex-shrink: 0;
}
ul.list-inline.list-secondary li a:has(img) {
    width: 100%;
    height: 180px;
    display: inline-block;
    overflow: hidden;
}
ul.list-inline.list-secondary li a img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
ul.list-inline.list-secondary li h3 {
    width: 100%;
    padding: 10px 0;
    margin-top: -7px;
    color: var(--White);
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--Blue);
}
ul.list-inline.list-secondary li h3 a {
    color: var(--White) !important;
    text-decoration: none;
}

ul.service-icons {
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: center;
    align-content: center;
    row-gap: 32px;
    flex-wrap: wrap;
}
ul.service-icons li {
    display: flex;
    width: 100px;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    flex-shrink: 0;
    color: #000014;
    text-align: center;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 150%; /* 24px */
}
ul.service-icons li img {
    width: 100%;
    max-width: 42px;
}
ul.service-icons li span {
    width: 100%;
    display: inline-block;
    color: #000014;
    margin-top: 4px;
}


ul.companies-list {
    width: 100%;
    margin-top: 32px;
}
ul.companies-list > li.companies-list-header {
    width: 100%;
    padding: 0 0 8px 0;
    text-align: left;
    margin-bottom: 32px;
    border-bottom: 1.6px solid #333343;
}

.list-companies {
    margin-bottom: 20px;
    border-bottom: 1px solid #DFE1E0;
    padding-bottom: 32px;
    margin-bottom: 32px;
}
.list-companies img {
    max-width: 120px;
}
.list-companies .company_logo .logo_initials {
    width: 120px;
    height: 120px;
    display: inline-block;
    border-radius: 6px;
    background: #219694;
    text-align: center;
    font-size: 46px;
    font-weight: 800;
    line-height: 120px;
    color: #fff;
}
.list-companies .company_name {
    font-size: 16px;
    font-weight: 500;
    line-height: normal;
    color: var(--Black);
    display: block;
    text-decoration: none;
    margin-top: 8px;
}
.list-companies ul.list-info li {
    margin-top: 4px;
    color: var(--Black);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 0.17px;
}
.list-companies ul.list-info li span {
    font-weight: 300;
    color: #595966;
}
.list-companies ul.list-info li i {
    width: 21px;
    margin-right: 5px;
}
.list-companies h5 {
    color: var(--Black);
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    margin-top: 16px;
    margin-bottom: -5px;
}
ul.list-services {
    width: 100%;
}
ul.list-services li {
    width: auto;
    padding: 9px 30px;
    border-radius: 50px;
    display: inline-block;
    background: rgba(84, 186, 242, 0.15);
    color: var(--Black);
    text-align: center;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 0.36px;
    margin-right: 15px;
    margin-top: 15px;
}
ul.list-cities {
    width: 100%;
}
ul.list-cities li {
    width: auto;
    padding: 6px 14px;
    border-radius: 50px;
    display: inline-block;
    background: rgba(84, 186, 242, 0.15);
    color: var(--Black);
    text-align: center;
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 0.36px;
    margin-right: 10px;
    margin-top: 10px;
}
ul.list-cities li a {
    font-size: 15px;
    text-decoration: none;
}
.list-companies .btn.btn-outline-primary {
    font-size: 18px;
    font-weight: 700;
    line-height: normal;
    letter-spacing: 0.36px;
    padding: 13px 48px;
    align-self: stretch;
}
.list-companies a.link {
    color: var(--Blue);
    text-align: center;
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    letter-spacing: 0.36px;
    text-decoration: none;
}

.header-company {
    width: 100%;
    padding: 32px 0;
    text-align: left;
    background: #E5F5FD;
}
.header-company .list-companies h1 a {
    color: var(--Black);
    font-size: 25px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}
.header-company .list-companies {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: 0px;
}
.header-company .list-companies img {
    max-width: 150px;
}
.header-company .reviews {
    width: 100%;
    padding: 20px;
    border-radius: 3px;
    background: #D8E7EE;
    margin-top: 30px;
}
.header-company .reviews h4 {
    color: var(--Black);
    text-align: center;
    font-size: 48px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 0.96px;
    margin-bottom: 0;
}
.header-company .reviews .review-text {
    border-left: 1.6px solid rgba(0, 0, 20, 0.15);
    padding-top: 10px;
    padding-bottom: 10px;
}
.header-company .reviews .review-text p {
    color: var(--Black);
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    margin-bottom: 0;
}
.header-company .reviews .review-text a {
    color: var(--Black);
    font-size: 17px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    text-decoration-line: underline;
    text-decoration-style: solid;
    text-decoration-skip-ink: none;
    text-decoration-thickness: 7%; /* 1.19px */
    text-underline-offset: auto;
    text-underline-position: from-font;
}
.header-company .claim-profile {
    width: 100%;
    max-width: 820px;
    margin-top: 26px;
    position: relative;
    padding: 12px 20px;
    border-radius: 3px;
    background: #FEF8D2;
    border: 1.2px solid #F2ECC1;
}
.header-company .claim-profile::before {
    content: "";
    position: absolute;
    top: -15px;
    left: 20;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 15px solid #FEF8D2;
}
.header-company .claim-profile p {
    color: var(--Black);
    font-size: 18px;
    font-style: normal;
    font-weight: 300;
    line-height: 140%;
    margin-bottom: 0;
}
.header-company .claim-profile a.btn-primary {
    background: #3774FF;
    box-shadow: 0px 2px 4px 0px rgba(94, 94, 94, 0.10);
    color: #FFF;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}
.nav-contractor {
    padding-bottom: 15px;
    border-bottom: 1.6px solid #D9D9DC;
}
.nav-contractor a {
    color: var(--Black);
    font-size: 16px;
    font-weight: 500;
    line-height: normal;
    letter-spacing: 0.16px;
    opacity: 0.4;
}
.nav-contractor a:hover {
    color: var(--Black);
    opacity: 1;
}
.block {
    width: 100%;
    text-align: left;
    margin-top: 36px;
    margin-bottom: 65px;
}
.block h2.title {
    color: var(--Black);
    font-size: 20px;
    font-weight: 700;
    line-height: normal;
    margin-bottom: 25px;
}
.block p {
    color: var(--Black);
    font-size: 18px;
    font-weight: 400;
    line-height: 160%;
}
.block a.project-image {
    width: 100%;
    height: 120px;
    display: inline-block;
    overflow: hidden;
}
.block a.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.block#reviews .review {
    margin-bottom: 48px;
}
.block#reviews span.review-author {
    color: var(--Black);
    font-size: 18px;
    font-weight: 600;
    line-height: normal;
}
.block#reviews span.review-date {
    color: var(--Black);
    font-size: 16px;
    font-weight: 500;
    line-height: normal;
    opacity: 0.4;
}
.block#reviews .review-rating i {
    font-size: 15px;
    line-height: 100%;
}
.block#reviews p {
    color: var(--Black);
    font-size: 18px;
    font-weight: 300;
    line-height: 160%;
    margin-bottom: 0;
    margin-top: 10px;
}

.block#no-reviews {
    padding: 0 160px;
    text-align: center;
    margin-bottom: 100px;
}
.block#no-reviews h2 {
    color: var(--Black);
    font-size: 24px;
    font-weight: 600;
    line-height: normal;
    margin-bottom: 16px;
}
.block#no-reviews img {
    width: 100%;
    max-width: 113px;
    margin: 0 auto 16px;
}
.block#no-reviews p {
    color: var(--Black);
    font-size: 18px;
    font-weight: 400;
    line-height: 160%;
    margin-bottom: 0;
}

.block#faq .faq-item {
    margin-bottom: 24px;
}
.block#faq .faq-item h4 {
    font-size: 17px;
    font-weight: 700;
    line-height: 160%;
    margin-bottom: 5px;
}
.block#faq .faq-item p {
    font-size: 17px;
    font-weight: 300;
    line-height: 150%;
}
.table-compare th,
.table-compare td {
    border: 0;
    padding: 15px;
}
.table-compare th.pro {
    border-radius: 6px 6px 0px 0px;
    background: #2248A7;
    color: var(--White);
    text-align: center;
}
.table-compare th.other-pro {
    border-radius: 6px 6px 0px 0px;
    background: rgba(103, 209, 255, 0.50);
    text-align: center;
}
.table-compare tr td.feature {
    border-bottom: 1px solid rgba(217, 217, 220, 0.30);
    background: #2248A7;
    color: var(--White);
    text-align: left;
}
.table-compare tr:first-child td.feature {
    border-radius: 6px 0px 0px 0px;
}
.table-compare tr td {
    text-align: center;
    border-right: 1.2px solid #D9D9DC;
    border-bottom: 1px solid rgba(217, 217, 220, 0.30);
}
.table-compare tr td.other-pro {
    opacity: 0.7;
}
.table-compare tr:last-child td.feature {
    border-radius: 0px 0px 0px 6px;
}
.sidebar-quote {
    width: 100%;
    max-width: 364px;
    padding: 36px 32px 48px 32px;
    border-radius: 6px;
    border: 1px solid #DFE1E0;
    border-top: 6px solid #67D1FF;
    box-shadow: 0px 0px 3px 0px rgba(0, 0, 0, 0.06), 0px 3px 15px 0px rgba(0, 0, 0, 0.03), 0px 2px 8px 0px rgba(0, 0, 0, 0.04);
    padding: 36px 32px 48px 32px;
    top: 95px;
    background-color: white;
}

.sidebar-other {
    width: 100%;
    max-width: 364px;
    padding: 36px 32px 36px 32px;
    border-radius: 6px;
    border: 1px solid #DFE1E0;
    box-shadow: 0px 0px 3px 0px rgba(0, 0, 0, 0.06), 0px 3px 15px 0px rgba(0, 0, 0, 0.03), 0px 2px 8px 0px rgba(0, 0, 0, 0.04);
}

.sidebar-other ul {
    margin-bottom: 0;
    padding-left: 0;
}
.sidebar-other li {
    list-style: none;
}
.sidebar-other a {
    text-decoration: none;
}

.sidebar-quote form h5 {
    color: var(--Black);
    font-size: 22px;
    font-weight: 600;
    line-height: normal;
    margin-bottom: 24px;
}
.sidebar-quote form label {
    color: var(--Black);
    font-size: 14px;
    font-weight: 600;
    line-height: 140%;
    text-transform: uppercase;
}
.sidebar-quote form .select2-container {
    width: auto !important;
    margin-top: 0px;
}
.sidebar-quote form .select2-container--default .select2-selection--single {
    width: 100%;
    height: auto;
    display: inline-block;
    border: 1.6px solid rgba(20, 23, 29, 0.10);
    border-radius: 6px;
    color: var(--Black);
    font-family: var(--font-secondary);
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    padding: 16px 20px 14px;
}
.sidebar-quote form .select2-container .select2-selection--single .select2-selection__rendered {
    padding-left: 0;
}
.sidebar-quote form .select2-container--open .select2-dropdown--below {
    border: none;
    margin-top: 12px;
    text-align: left;
}
.select2-results {
    text-align: left;
}
.sidebar-quote form .select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 100%;
    right: 0;
    top: 0;
    width: 40px;
}
.sidebar-quote form input[type="text"] {
    color: var(--Black);
    font-size: 18px;
    font-weight: 400;
    line-height: 20px;
    margin-top: 0px;
    padding: 16px 20px 14px;
}
.sidebar-quote form input[type="text"]::placeholder {
    color: rgba(0, 0, 20, 0.30);
}
.sidebar-quote form input[type="text"]:focus {
    box-shadow: none;
}
.sidebar-quote form .btn-info {
    color: var(--Black);
    font-size: 18px;
    font-weight: 500;
    background: #67D1FF;
    box-shadow: 0px 2px 4px 0px rgba(94, 94, 94, 0.10);
}

.wrap-company-name {
    width: 100%;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
}

ul.list-top-companies {
    width: 100%;
    display: flex;
    justify-content: start;
    align-content: center;
    row-gap: 20px;
    gap: 20px;
    flex-wrap: wrap;
}
ul.list-top-companies > li {
    width: 32%;
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-shrink: 0;
}
.card.top-company-listing {
    width: 100%;
    padding: 0px;
    border: none !important;
    border-radius: 6px;
    border: 1px solid #DFE1E0;
    box-shadow: 0px 0px 3px 0px rgba(0, 0, 0, 0.08), 0px 3px 15px 0px rgba(0, 0, 0, 0.05), 0px 2px 8px 0px rgba(0, 0, 0, 0.06);
}
.card.top-company-listing .card-header {
    border: none;
    padding: 16px 0;
    background: #D9F3FF;
    text-align: center;
    color: #2348A7;
    font-size: 13.5px;
    font-style: normal;
    font-weight: 750;
    line-height: normal;
    letter-spacing: 0.81px;
    text-transform: uppercase;
}
.card.top-company-listing .card-header i {
    margin-right: 8px;
}
.card.top-company-listing .card-body {
    padding: 16px 24px 32px 24px;
    text-align: center;
}
.card.top-company-listing .card-body .company_logo img {
    width: 100%;
    max-width: 150px;
    margin: 0 auto 8px;
}
.card.top-company-listing .card-body .btn {
    color: #000;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    padding: 10px 16px;
    background: #67D1FF;
}
.card.top-company-listing .card-body .list-info {
    height: 230px;
    overflow: hidden;
    padding: 16px 0;
    margin: 16px 0;
    border-top: 1.6px solid #E8E8EA;
    border-bottom: 1.6px solid #E8E8EA;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.card.top-company-listing .card-body .list-info li {
    color: #000014;
    font-size: 17px;
    font-style: normal;
    line-height: normal;
    letter-spacing: 0.17px;
    margin-bottom: 4px;
}
.card.top-company-listing .card-body .list-info li .company_name {
    color: #000014;
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    text-decoration: none;
}
.card.top-company-listing .card-body .list-info li i {
    width: 21px;
    margin-right: 6px;
}
.card.top-company-listing .card-body .list-info li i.pqp-icon {
    width: 21px;
    height: 21px;
    display: inline-block;
    background: no-repeat center center;
    background-size: contain;
    position: relative;
    top: 2px;
}
.wrap-services {
    width: 100%;
    text-align: left;
}
.wrap-services h4 {
    color: #000014;
    font-size: 17px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin-bottom: 0;
}
.wrap-services ul {
    width: 100%;
    display: flex;
    justify-content: start;
    row-gap: 8px;
    flex-wrap: nowrap;
    margin-top: 8px;
}
.wrap-services ul li {
    flex-direction: column;
    align-items: center;
    display: flex;
    gap: 6px;
    flex-shrink: 0;
    color: #14171D;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 150%; /* 24px */
    margin: 8px 8px 0px 0;
}
.list-business-hours {
    width: 100%;
    display: flex;
    justify-content: start;
    align-items: top;
    align-content: top;
    row-gap: 8px;
    flex-wrap: wrap;
}
ul.list-inline.list-business-hours li {
    width: 19%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0px;
    flex-shrink: 0;
    margin-right: 8px;
    color: #000014;
    font-size: 16px;
    font-style: normal;
    text-align: center;
    border: 1px solid #E0E0E0;
    padding: 12px;
    border-radius: 6px;
    background: #f1f1f1;
}
ul.list-inline.list-business-hours li strong {
    width: 100%;
    display: inline-block;
    color: #000014;
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}

footer {
    width: 100%;
    display: flex;
    padding: 100px 20px 80px;
    background: var(--Blue);
}
footer .logo {
    width: 173px;
    height: auto;
    display: flex;
    margin-bottom: 40px;
}
footer ul {
    width: 100%;
    display: flex;
    float: left;
    padding: 0;
    list-style: none;
    margin: 10px 0 0;
}
footer ul li {
    margin-right: 32px;
}
footer ul li a {
    color: var(--White);
    font-size: 14px;
    font-weight: 400;
    line-height: 24px;
    text-decoration: none;
}
footer h3 {
    color: var(--White, #FDFDFD);
    text-align: right;
    font-size: 32px;
    font-weight: 700;
    line-height: 125%;
}
footer ul.list-social {
    width: 172px;
    float: right;
    justify-content: end;
    text-align: right;
    margin-top: 10px;
}
footer ul.list-social li {
    margin: 0 10px;
}
footer ul.list-social li i {
    font-size: 30px;
}
.copyright {
    padding: 24px 0;
    background: var(--Dark-Blue);
    color: var(--White);
    font-size: 14px;
    line-height: 24px;
}

.modal#leadModal,
.modal#leadModal .modal-fullscreen .modal-body,
.modal#leadModal .modal-fullscreen .modal-content {
    overflow: hidden !important;
}
.modal .loading-box {
    width: 100%;
    height: 100%;
    position: absolute;
    display: none;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.8);
}
.modal.loading .loading-box {
    display: flex;
}
body.modal-open {
    /* block scroll for mobile; */
    /* causes underlying page to jump to top; */
    /* prevents scrolling on all screens */
    overflow: hidden;
    position: fixed;
}