/* google fonts  */
@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@200..700&display=swap');

/*global start*/
* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;

}

:root {
    --background: #001C3C;
    --brand: #37597E;
    --brand-secondary: #E6BD4D;
    --cta: #246BBB;
    --light: #E4F1FF;
    --theme-clr: #489CFC;
    --roboto: "Roboto", sans-serif;
    --Oswald: "Oswald", sans-serif;
    --radius: 12px;
    --white:#fff;
}

body {
    font-family: var(--roboto);
}

html {
    scroll-behavior: smooth;
}

ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

a {
    text-decoration: none;
    display: inline-block;
    color: inherit;
}

a:hover {
    color: inherit;
}

img,
video {
    max-width: 100%;
}

span {
    display: inline-block;
}

summary {
    list-style-type: none;
}

figure {
    margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
    font-family: var(--Oswald);
}

.container {
    width: 100%;
    max-width: calc(1672px + 15px);
    margin: 0 auto;
    padding: 0 15px;
}

.grid {
    display: grid;
}

.grid-cols-2 {
    grid-template-columns: 1fr 1fr;
}

.grid-cols-3 {
    grid-template-columns: 1fr 1fr 1fr;
}

.grid-cols-4 {
    grid-template-columns: repeat(4, 1fr);
}

.grid-cols-5 {
    grid-template-columns: repeat(5, 1fr);
}

.grid-cols-6 {
    grid-template-columns: repeat(6, 1fr);
}

.item {
    width: 100%;
}

.grid-span-2 {
    grid-column: span 2;
}

.mobile-menu {
    display: none;
}

.site-header {
    position: absolute;
    left: 0;
    right: 0;
    top: 52px;
    z-index: 9;
}

.site-header .container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    row-gap: 20px;
}

.site-logo a {
    color: var(--theme-clr);
    font-family: var(--Oswald);
    font-size: 36px;
    font-weight: 400;
    line-height: normal;
    letter-spacing: -1.08px;
    text-transform: uppercase;
}

.site-logo a span {
    color: #fff;
}

.primary-btn {
    background: var(--cta);
    color: #fff;
    padding: 16px 20px;
    border-radius: var(--radius);
    display: inline-flex;
    align-items: center;
    gap: 19px;
    font-size: 24px;
    font-weight: 600;
    line-height: normal;
    border: 0;
    transition: all 0.2s linear;
}

.primary-btn:hover {
    background: var(--brand-secondary);
    color: var(--text);
}

.primary-btn img {
    max-width: 32px;
}

.site-banner {
    position: relative;
    isolation: isolate;
    overflow: hidden;
}

.site-banner::before {
    content: "";
    position: absolute;
    background: linear-gradient(0deg, #001c3cd1 0%, rgba(0, 28, 60, 0.00) 100%);
    inset: 0;
}

.site-banner:after {
    content: "";
    position: absolute;
    background: linear-gradient(0deg, #001c3c 0%, rgb(0 28 60 / -6%) 100%);
    width: 100%;
    height: 120px;
    bottom: 0;
    z-index: -1;
}

.banner-video {
    position: absolute;
    inset: 0;
    z-index: -1;
}

.banner-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    min-height: 1126px;
}

.site-banner .content-wrap {
    padding-top: 222px;
    position: relative;
}

.content-wrap .grid {
    grid-template-columns: 2fr 1fr;
    gap: 20px;
}

.site-banner .content h1 {
    color: #FFF;
    text-shadow: 0px 12px 54px rgba(0, 0, 0, 0.75);
    font-size: 72px;
    font-weight: 400;
    line-height: 110%;
    width: 100%;
    max-width: 842px;
}

.banner-middle-content {
    margin: 96px 0;
}

.site-banner .content h4 {
    color: var(--brand-secondary);
    font-family: var(--roboto);
    font-size: 32px;
    font-weight: 700;
    line-height: 150%;
}

.site-banner .content p {
    color: #FFF;
    font-size: 32px;
    font-weight: 500;
    line-height: 150%;
    margin: 0;
}

.banner-btm {
    display: flex;
    flex-wrap: wrap;
    gap: 36px;
    width: 100%;
    align-items: start;
}

.banner-btm .primary-btn {
    padding: 24px 32px;
}

.banner-btm-content span {
    font-size: 16px;
    line-height: normal;
    color: rgb(255 255 255 / 50%);
}

.banner-right-img {
    margin-bottom: 44px;
}

.banner-right-img img {
    width: 100%;
    max-width: 405px;
    display: block;
}

.banner-right p {
    color: #FFF;
    font-size: 24px;
    font-weight: 500;
    line-height: 150%;
    margin: 0;
    width: 100%;
    max-width: 530px;
}

.section-tittle {
    color: #FFF;
    font-size: 72px;
    font-weight: 400;
    line-height: 110%;
    letter-spacing: -2.16px;
}

/* card setion start  */
.card-section {
    padding: 96px 0;
}

.card-section .grid {
    margin-top: 64px;
    gap: 24px;
}

.card-section .grid .item {
    height: 100%;
}

.card-section .card {
    padding: 44px;
    border-radius: var(--radius);
    height: 100%;
    border: 0;
}

.card-section .card-icon {
    margin-bottom: 24px;
}

.card-section .card h4 {
    font-family: var(--roboto);
    font-size: 32px;
    font-weight: 700;
    line-height: normal;
    position: relative;
    padding-bottom: 24px;
    margin-bottom: 24px;
}

.card-section .card h4::after {
    content: "";
    position: absolute;
    width: 72px;
    height: 2px;
    background: #fff;
    left: 0;
    bottom: 0;
}

.card-section .card img {
    width: 124px;
    height: 124px;
}

.card-section .card p {
    font-family: var(--roboto);
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    margin: 0;
}

.card-section-dark {
    background: var(--background);
    padding: 150px 0;
}

.card-section-dark .card {
    background: var(--brand);
}

.card-section-dark .card h4 {
    color: #fff;
}

.card-section-dark .card p {
    color: rgb(255 255 255 / 50%);
}

/* card light start  */
.card-section-light {
    background: var(--light);
}

.card-section-light .section-tittle {
    color: var(--text);
}

.card-section-light .card h4 {
    color: var(--text);
}

.card-section-light .card h4::after {
    background: rgb(0 28 60 / 40%);
}


/* footer start  */
.site-footer {
    position: relative;
    isolation: isolate;
    padding: 48px 0 40px;
}

.site-footer .footer-bg {
    position: absolute;
    inset: 0;
    z-index: -1;
    background: var(--background);
}

.site-footer .footer-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.site-footer h3 {
    color: #FFF;
    font-size: 54px;
    font-weight: 400;
    line-height: 110%;
    width: 100%;
    max-width: 1200px;
}

.site-footer h3 span {
    color: var(--brand-secondary);
}

.form-container form {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    border-bottom: 1px solid rgb(255 255 255 / 20%);
    padding: 54px 0;
    margin-bottom: 28px;
}

.form-container form>* {
    width: 100%;
}

.input-control {
    background: #fff;
    border-radius: var(--radius);
    border: 0;
    padding: 24px 32px;
    display: inline-block;
    color: var(--background);
    font-family: var(--roboto);
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
}

.input-control::placeholder {
    font: inherit;
    color: inherit;
}

.input-control:focus {
    outline: 3px solid #246bbb;
}

.form-container form .primary-btn {
    justify-content: center;
    padding: 24px 32px;
}

.footer-btm {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    justify-content: space-between;
    align-items: center;
    grid-gap: 20px;
}

/*social-icons start */
.social-icons ul {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    justify-content: center;
}

.social-icons li a {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.30);
    display: inline-flex;
    justify-content: center;
    align-items: center;
    font-size: 22px;
    transition: all 0.2s linear;
    color: #fff;
}

.social-icons li a:hover {
    color: var(--theme-clr);
    border-color: var(--theme-clr);
}

/*social-icons end */

.terms {
    display: flex;
    align-items: center;
    gap: 52px;
    justify-content: end;
}

.terms a {
    color: rgb(255 255 255 / 50%);
    font-size: 16px;
    font-weight: 400;
    line-height: 150%;
    transition: all 0.2s linear;
}

.terms a:hover {
    color: #fff;
}

/* fotter end  */

/*lcp 2 */

.banner-img {
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    height: 100%;
    width: 100%;
}


.lcp-banner .content h1 {
    max-width: 957px;
    font-size: 96px;
}

.lcp-banner .banner-middle-content {
    margin: 32px 0;
}

.lcp-banner .banner-middle-content h4 {
    color: var(--white);
    font-weight: 500;
}

.lcp-banner .banner-middle-content h4 span {
    color: var(--brand-secondary);
}

.lcp-banner .content-wrap {
    padding-top: 257px;
}

.banner-img img {
    width: 100%;
    height: 100%;
    min-height: 991px;
    object-fit: cover;
}

.lcp-dark.card-section-dark {
    padding: 108px 0 75px;
}

.section-para {
    color: #ffffff;
    font-size: 32px;
    line-height: 150%;
    font-weight: 500;
    padding-top: 24px;
}

.lcp-dark.card-section .card img {
    width: 101px;
    height: 99px;
}


.grid-banner {
    margin-top: 64px;
    position: relative;
}

.get-banner {
    position: relative;
}

.get-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.get-content {
    position: relative;
    z-index: 2;
    padding: 52px 44px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.get-img img {
    height: 100%;
    width: 100%;
    border-radius: 12px;
    object-fit: cover;
}

/*.get-content h2 {
    color: #ffffff;
    text-align: center;
    font-family: "Oswald-Regular", sans-serif;
    font-size: 72px;
    line-height: 110%;
    letter-spacing: -0.03em;
    font-weight: 400;
    }*/

.get-content p {
    margin: 24px 0;
    color: #ffffff;
    text-align: center;
    font-size: 32px;
    line-height: 150%;
    font-weight: 500;
    max-width: 946px;
}

.lcp-choose .section-tittle {
    color: #001c3c;
}

.lcp-choose .section-para {
    color: #001c3c;
}


.lcp-choose .card img {
    width: 88px;
    height: 64px;
}

.site-footer h4 {
    font-size: 32px;
    font-family: "Roboto-Medium", sans-serif;
    line-height: 150%;
    font-weight: 500;
    color: #fff;
    padding: 24px 0 0px;
}
.site-logo p {
    color: var(--White-Main, #FFF);
    font-family: Roboto;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
}
.lcp-banner .content-wrap .grid {
    grid-template-columns: 1fr;
}

.get-content .section-tittle {
    text-align: center;
}


.lcp-choose .card h4 {
    color: #001c3c;
}

.lcp-choose.card-section-light .card p {
    color: #001C3C;
}


/* 17-04-2025 */
.error404-sec {
/* background-image: url(https://my-claim-pros.veryspecialapp.com/wp-content/uploads/2025/04/404-error-with-portals-pana.png); */
background-repeat: no-repeat;
background-position: center;
background-size: cover;
padding-top: 189px;
min-height: 100vh;
display: flex;
justify-content: center;
align-items: center;
text-align: center;
padding-left: 20px;
padding-right: 20px;
padding-bottom: 50px;
position: relative;
}

.error404-content h1 {
font-weight: 400;
color: #ffffff;
line-height: 80%;
font-size: min(30vw, 342px);
}

.error404-content p {
font-size: 71px;
color: #fff;
margin: 30px 0;
}

section.error404-sec::before {
content: "";
position: absolute;
top: 0;
left: 0;
background: #001c3ce3;
width: 100%;
height: 100%;
z-index: 0;
}

.error404-wrap {
position: relative;
}

.thankyou-section {
padding-top: 189px;
min-height: 100vh;
display: flex;
justify-content: center;
align-items: center;
text-align: center;
padding-left: 20px;
padding-right: 20px;
padding-bottom: 50px;
position: relative;
background: #e4f1ff;
}

.thankyou-section::before {
content: "";
position: absolute;
top: 0;
left: 0;
background: #001c3ce3;
width: 100%;
height: 100%;
z-index: 0;
}

.thankyou-section-wrap {
position: relative;
}

.thankyou-section h1 {
color: #fff;
text-align: center;
font-size: 117px;
font-weight: 400;
line-height: 110%;
margin: 0 0 12px;
}

.thankyou-section h4 {
color: #fff;
text-align: center;
font-size: 74px;
font-weight: 400;
line-height: 110%;
margin: 0 0 12px;
}

.thankyou-section p {
color: #fff;
}

.thankyou-section .primary-btn {
margin-top: 20px;
}
.thankyou-section-content a img {
    width: 125px;
}
.site-footer .site-logo a {
    max-width: 170px;
}

.LCP_Mod .modal-dialog {
max-width: 600px;
}
.LCP_Mod .modal-header button {
opacity: 1;
filter: brightness(0) saturate(100%) invert(38%) sepia(16%) saturate(2310%) hue-rotate(171deg) brightness(97%) contrast(100%);
}
.LCP_Mod .modal-header {
border: 0;
padding: 0;
position: relative;
top: 14px;
left: -14px;
z-index: 2;
}