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

html, body {
    max-width: 100%;
    font-family: var(--font-primary);
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    color: var(--Black);
    text-align: center;
    font-size: var(--font-size-base);
    line-height: 120%;
}
.bg-darker {
    background: #FAFAFA;
}
img {
    max-width: 100%;
    display: inline-block;
}
.btn.btn-primary {
    border: 1px solid var(--Blue);
    background: var(--Blue);
}
.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-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 */
}
h2 {
    color: var(--Black);
    font-size: 34px;
    font-weight: 700;
    line-height: 120%;
}
h3 {
    color: var(--Black);
    font-size: 25px;
    font-weight: 600;
    line-height: 144%;
}
.blue {
    color: var(--Blue);
}
.container {
    max-width: 1220px;
}
header {
    background: #fff;
    padding: 18px 0px;
    position: relative;
    z-index: 10;
}
.logo {
    width: 182px;
    display: inline-block;
}
.logo img {
    width: 100%;
}
header nav a.nav-link {
    font-size: 16px;
    color: var(--Black);
    padding: 0;
    margin: 0 0 0 32px;
}
header nav a.nav-link:hover {
    color: var(--Blue);
}
header nav a.nav-link button {
    display: flex;
    padding: 12px 22px;
    justify-content: center;
    align-items: center;
    color: var(--White);
    font-size: 16px;
    font-weight: 600;
    line-height: 18px;
    border-radius: 8px;
}
.mobile-nav {
    display: none;
}
.banner {
    width: 100%;
    padding: 170px 0;
    position: relative;
    z-index: 1;
    display: inline-block;
    overflow: hidden;
    text-align: center;
    background: #EFF4FD;
}
.banner::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.25);
    z-index: 1;
}
.banner h1 {
    font-weight: 600;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}
.banner h1 strong {
    font-weight: 800;
}
.banner p {
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}
.banner picture img {
    width: 100%;
    height: auto;
    top: -10%;
    bottom: auto;
    left: 0;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
    position: absolute;
    z-index: -1;
}
.banner .container {
    max-width: 800px;
    position: relative;
    z-index: 2;
}
.banner form {
    width: auto;
    background: var(--White);
    border-radius: 6px;
    margin-top: 32px;
    position: relative;
    display: inline-flex;
}
.banner form input[type="text"] {
    min-width: 323px;
    border: none;
}
.banner form .form-floating>label {
    color: var(--Blue);
    font-size: 16px;
    font-weight: 800;
    line-height: 46px;
    padding: 12px 16px;
}
.banner form button {
    padding: 10px 24px;
    border-radius: 0 6px 6px 0;
}
.banner form button i {
    font-size: 22px;
    line-height: 22px;
}
.banner p small {
    font-size: 15px;
}
section {
    width: 100%;
    display: inline-block;
    padding: 90px 0;
    text-align: left;
}
section .section-title {
    margin-bottom: 16px;
}
ul.projects-box {
    width: 100%;
    display: flex;
    padding: 0;
    margin: 0;
    gap: 16px;
    align-items: start;
    justify-content: center;
}
ul.projects-box li {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
ul.projects-box li img {
    width: 100%;
    display: inline-block;
    margin-bottom: 8px;
}
ul.projects-box li h3 {
    color: var(--Black);
    font-size: 18px;
    font-weight: 600;
    line-height: 26px;
    margin: 0;
}
section .wrap-title {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}
section p.sub-title {
    color: var(--Black);
    font-size: 22px;
    font-weight: 400;
    line-height: 31px;
    margin: 0;
    opacity: 0.5;
}

.projects-box.projects-box-cards {
    margin-top: 64px;
    align-items: stretch;
}
.projects-box.projects-box-cards li {
    flex: 1 0 0;
    border-radius: 8px;
    border: 1.5px solid #E7E8E8;
    background: #FFF;
    box-shadow: 0 0 3px 0 rgba(0, 0, 0, 0.06), 0 3px 15px 0 rgba(0, 0, 0, 0.03), 0 2px 8px 0 rgba(0, 0, 0, 0.04);
    overflow: hidden;
}
.projects-box.projects-box-cards li img {
    margin: 0;
}
.projects-box.projects-box-cards li div {
    padding: 32px 24px;
    width: 100%;
}
.projects-box.projects-box-cards li div h3 {
    font-size: 25px;
    line-height: 36px;
    font-weight: 600;
    margin-bottom: 8px;
}
.projects-box.projects-box-cards li div p {
    font-size: 21px;
    line-height: 31px;
    font-weight: 400;
    margin-bottom: 0px;
}
.how-it-works ul {
    width: 100%;
    display: flex;
    gap: 24px;
    margin-top: 80px;
    justify-content: center;
    list-style: none;
}
.how-it-works ul li {
    flex: 1;
    background: #F2F9FF;
    border-radius: 10px;
    padding: 48px 32px;
    text-align: center;
}
.how-it-works ul li img {
    max-height: 200px;
    margin-bottom: 24px;
}
.how-it-works ul li span {
    width: 36px;
    height: 36px;
    display: inline-block;
    font-size: 22px;
    font-weight: 600;
    line-height: 36px;
    border-radius: 28px;
    color: var(--White);
    background: #1572FF;
}
.how-it-works ul li h3 {
    margin: 24px 0 8px;
}
.how-it-works ul li p {
    margin: 0;
    font-size: 22px;
    line-height: 31px;
    font-weight: 400;
}
.why-choose-us ul {
    width: 100%;
    display: flex;
    gap: 8px;
    margin-top: 80px;
    margin-bottom: 48px;
    justify-content: center;
    list-style: none;
}
.why-choose-us ul li {
    flex: 1 0 0;
    text-align: center;
    padding: 0 16px;
    border-left: 1.5px solid #E7E8E8;
}
.why-choose-us ul li:first-child {
    border-left: none;
}
.why-choose-us ul li h3 {
    font-size: 56px;
    line-height: 100%;
    letter-spacing: 0.66px;
    margin: 0 0 8px;
}
.why-choose-us ul li span {
    font-size: 20px;
    line-height: 120%;
    font-weight: 500;
    color: rgba(20, 23, 29, 0.5);
    margin: 0;
    letter-spacing: -0.66px;
}
.wrap-features {
    margin-top: 96px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}
.wrap-features div.features {
    max-width: 528px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 48px;
    flex-shrink: 0;
}
.wrap-features div.features ul {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 46px;
    padding: 0;
    margin: 0;
    list-style: none;
}
.wrap-features div.features ul li {
    display: flex;
    gap: 30px;
    border: none;
    align-items: start;
}
.wrap-features div.features ul li div {
    text-align: left;
}
.wrap-features div.features ul li h3 {
    margin: 0 0 8px;
    font-size: 25px;
    line-height: 36px;
    font-weight: 700;
}
.wrap-features div.features ul li span {
    margin: 0;
    font-size: 22px;
    line-height: 31px;
    font-weight: 400;
}

.wrap-our-customers-say div.testimonials {
    margin-top: 80px;
    padding: 24px 0;
    text-align: center;
    position: relative;
}
.wrap-our-customers-say div.testimonials::before {
    width: 40px;
    height: 33px;
    content: "";
    position: absolute;
    top: -32px;
    left: 0;
    background: url('../images/open_quote.png') no-repeat center center;
}
.wrap-our-customers-say div.testimonials::after {
    width: 40px;
    height: 33px;
    content: "";
    position: absolute;
    bottom: -32px;
    right: 0;
    background: url('../images/close_quote.png') no-repeat center center;
}
.wrap-our-customers-say div.testimonials div {
    font-size: 36px;
    font-weight: 600;
    line-height: 150%;
    position: relative;
}
.wrap-our-customers-say div.testimonials .slick-slide > div > div:has(span) {
    padding-bottom: 30px;
}
.wrap-our-customers-say div.testimonials div span {
    position: absolute;
    bottom: 0;
    right: 0;
    font-size: 20px;
    font-weight: 500;
    font-style: italic;
    line-height: 28px;
    color: var(--Dark-Blue)
}
.wrap-our-customers-say div.testimonials .slick-dots {
    margin-top: 48px;
}
.wrap-our-customers-say div.testimonials .slick-dots li {
    margin: 0;
}
.wrap-our-customers-say div.testimonials .slick-dots li.slick-active button::before {
    color: #4273F1;
}
section.bg-info {
    background: #F2F9FF !important;
}
.footer-quote h2 {
    color: var(--Blue);
    text-align: center;
    font-size: 48px;
    font-style: normal;
    font-weight: 800;
    line-height: 58px;
    letter-spacing: 0.66px;
    margin-bottom: 8px;
}
.footer-quote p {
    text-align: center;
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: 31px;
    letter-spacing: 0.66px;
    margin: 0;
}
.footer-quote a.btn.btn-primary {
    margin-top: 32px;
    padding: 12px 22px;
    font-size: 18px;
    font-weight: 400;
    line-height: normal;
}
footer {
    width: 100%;
    display: flex;
    padding: 80px 20px 20px;
    background: var(--Blue);
}
footer .logo {
    width: 173px;
    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(--Blue);
    color: var(--White);
    font-size: 14px;
    line-height: 24px;
}
.page {
    margin: 20px 0 80px;
    text-align: left;
    font-size: 16px;
    line-height: 22px;
}
.page h1 {
    font-size: 38px;
    line-height: 42px;
    margin-bottom: 30px;
}
.page h1,
.page h2,
.page h3,
.page h4 {
    color: var(--Blue);
}

.modal#leadModal,
.modal#leadModal .modal-fullscreen .modal-body,
.modal#leadModal .modal-fullscreen .modal-content {
    overflow: hidden !important;
}
.modal#leadModal .modal-body {
    padding: 0 !important;
    min-height: 75vh;
    overflow: auto !important;
}
.modal .loading-box {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    display: none;
    z-index: 10000;
    background: rgba(255, 255, 255, 0.8);
}
.modal.loading .loading-box {
    display: block;
}
.modal .loading-box .spinner-border {
    position: absolute;
    top: 50%;
    left: 50%;
    
}
.modal.loading .modal-content iframe {
    opacity: 0;
}
body.modal-open {
    /* block scroll for mobile; */
    /* causes underlying page to jump to top; */
    /* prevents scrolling on all screens */
    width: 100%;
    overflow: hidden;
    position: fixed;
}
.modal .modal-content {
    border: none;
}
.modal .modal-body {
    padding: 24px 48px;
    border: none;
}
.modal .modal-footer {
    padding: 24px 48px;
    gap: 20px;
}
.modal .modal-footer p {
    max-width: 160px;
    margin: 0;
    font-size: 16px;
    line-height: 24px;
}

