/* General Css Start From Here */
* {
    padding: 0px;
    margin: 0px;
}

html {
    scroll-behavior: smooth;
}

/* General Css Start From Here */

/* Tooltip Style */

[tooltip] {
    position: relative;
}

[tooltip]::before,
[tooltip]::after {
    text-transform: none;
    font-size: .9em;
    line-height: 1;
    user-select: none;
    pointer-events: none;
    position: absolute;
    display: none;
    opacity: 0;
}

[tooltip]::before {
    content: '';
    border: 5px solid transparent;
    z-index: 1001;

}

[tooltip]::after {
    content: attr(tooltip);
    font-family: Helvetica, sans-serif;
    width: 100%;
    min-width: 300px;
    max-width: 300px;
    height: auto;
    overflow: hidden;
    text-overflow: ellipsis;
    padding: 1ch 1.5ch;
    border-radius: .3ch;
    box-shadow: 0 1em 2em -.5em rgba(0, 0, 0, 0.35);
    background: #fff;
    color: #333;
    z-index: 1000;
}

[tooltip]:hover::before,
[tooltip]:hover::after {
    display: block;
}

[tooltip='']::before,
[tooltip='']::after {
    display: none !important;
}

[tooltip]:not([flow])::before,
[tooltip][flow^="up"]::before {
    bottom: 100%;
    border-bottom-width: 0;
    border-top-color: #fff;
}

[tooltip]:not([flow])::after,
[tooltip][flow^="up"]::after {
    bottom: calc(100% + 5px);
}

[tooltip]:not([flow])::before,
[tooltip]:not([flow])::after,
[tooltip][flow^="up"]::before,
[tooltip][flow^="up"]::after {
    left: 50%;
    transform: translate(-50%, -.5em);
}

[tooltip][flow^="down"]::before {
    top: 100%;
    border-top-width: 0;
    border-bottom-color: #fff;
}

[tooltip][flow^="down"]::after {
    top: calc(100% + 5px);
}

[tooltip][flow^="down"]::before,
[tooltip][flow^="down"]::after {
    left: 50%;
    transform: translate(-50%, .5em);
}

@keyframes tooltips-vert {
    to {
        opacity: .9;
        transform: translate(-50%, 0);
    }
}

@keyframes tooltips-horz {
    to {
        opacity: .9;
        transform: translate(0, -50%);
    }
}

[tooltip]:not([flow]):hover::before,
[tooltip]:not([flow]):hover::after,
[tooltip][flow^="up"]:hover::before,
[tooltip][flow^="up"]:hover::after,
[tooltip][flow^="down"]:hover::before,
[tooltip][flow^="down"]:hover::after {
    animation: tooltips-vert 300ms ease-out forwards;
}


/* Preloader Start From Here */
.preloader-wrapper {
    position: fixed;
    left: 0px;
    right: 0px;
    top: 0px;
    bottom: 0px;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 99;
    background: rgb(0 0 0 / 78%);
}

.preloader-wrapper .preloader {
    width: 70px;
    padding: 8px;
    aspect-ratio: 1;
    border-radius: 50%;
    background: rgba(159, 175, 201, 1);
    --_m:
        conic-gradient(#0000 10%, rgba(159, 175, 201, 1)),
        linear-gradient(rgba(159, 175, 201, 1) 0 0) content-box;
    -webkit-mask: var(--_m);
    mask: var(--_m);
    -webkit-mask-composite: source-out;
    mask-composite: subtract;
    animation: preloader 1s infinite linear;
}

@keyframes preloader {
    to {
        transform: rotate(1turn)
    }
}

/* Preloader End From Here */

/* Header Css Start From Here */
header {
    position: fixed;
    top: 0px;
    left: 0px;
    width: 100%;
    padding: 13.5px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #00000036;
    z-index: 9;
}

header .logo {
    max-width: 100%;
}

header .logo img {
    width: 100%;
}

header .header-menu .menu {
    display: flex;
    padding-left: 0px;
    margin-bottom: 0px;
    column-gap: 25px;
}

header .header-menu .menu li {
    list-style: none;
}

header .header-menu .menu li a {
    font-family: "Nunito", sans-serif;
    font-weight: 500;
    font-size: 18px;
    color: rgba(255, 255, 255, 1);
    text-decoration: none;
}

header .action {
    display: flex;
    column-gap: 10px;
}

header .action .signup a {
    font-family: "Nunito", sans-serif;
    font-weight: 600;
    font-size: 18px;
    color: rgba(255, 255, 255, 1);
    text-decoration: none;
}

header .action .login a {
    padding: 7px 28px;
    border-radius: 8px;
    background-color: rgba(15, 56, 122, 1);
    font-family: "Poppins", sans-serif;
    font-size: 18px;
    font-weight: 500;
    color: rgba(255, 255, 255, 1);
    text-decoration: none;
}

header .action .logout a {
    padding: 7px 28px;
    border-radius: 8px;
    background-color: rgba(15, 56, 122, 1);
    font-family: "Poppins", sans-serif;
    font-size: 18px;
    font-weight: 500;
    color: rgba(255, 255, 255, 1);
    text-decoration: none;
}

header .lang select {
    background: #fff;
    width: 80px;
    height: 28px;
    border-radius: 4px;
    font-size: 16px;
    border: none;
    outline: none;
}

.mobile-menu-sidebar {
    display: block;
    background: #000000e0;
    position: fixed;
    left: -1000px;
    top: 0px;
    height: 100%;
    z-index: 9;
    max-width: 270px;
    width: 100%;
    padding: 70px 30px;
    transition: left 0.3s ease-in-out;
}

.mobile-menu-sidebar .login a,
.mobile-menu-sidebar .signup a,
.mobile-menu-sidebar .logout a {
    width: 100%;
    height: 44px;
    border-radius: 8px;
    background-color: rgb(159, 175, 201, 1);
    font-family: "Poppins", sans-serif;
    font-size: 18px;
    font-weight: 500;
    color: rgba(255, 255, 255, 1);
    text-decoration: none;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
}


.mobile-menu-sidebar.active {
    left: 0px;
}

.mobile-menu-sidebar ul {
    padding-left: 0px;
}

.mobile-menu-sidebar ul li {
    list-style: none;
    margin-bottom: 13px;
}

.mobile-menu-sidebar ul li a {
    font-family: "Nunito", sans-serif;
    font-weight: 500;
    font-size: 18px;
    color: rgba(255, 255, 255, 1);
    text-decoration: none;
}

header .mobile-icon {
    display: none;
    flex-direction: column;
    cursor: pointer;
    transition: all 0.3s ease;
}

header .mobile-icon span {
    width: 33px;
    height: 2px;
    margin-bottom: 7px;
    display: inline-block;
    background-color: #fff;
    transition: all 0.3s ease;
}

header .mobile-icon.active .one {
    transform: rotate(45deg);
    position: relative;
    top: 7px;
}

header .mobile-icon.active .three {
    transform: rotate(-41deg);
    position: relative;
    top: -10px;
}

header .mobile-icon.active .two {
    opacity: 0;
}


/* Header Css End From Here */

/* Footer Css Start From Here */

footer {
    padding: 80px 160px 20px 160px;
    background-color: rgba(34, 34, 34, 1);
}

footer .logo {
    margin-bottom: 20px;
    margin-left: -3px;
}

footer .logo img {
    max-width: 170px;
}

footer .desc p {
    max-width: 530px;
    margin: auto;
    text-align: center;
    color: rgba(191, 191, 191, 1);
    font-family: "Nunito", sans-serif;
    font-weight: 500;
    font-size: 18px;
    margin-top: 20px;
}

footer .divider {
    height: 1px;
    width: 100%;
    background-color: rgba(84, 84, 84, 1);
    margin: 50px 0px;
}

footer .footer-menu ul {
    /* display: flex; */
    justify-content: center;
    padding-left: 0px;
    gap: 49px;
}

footer .inner h4 {
    color: #fff;
    margin-bottom: 30px;
}

footer .inner p {
    color: rgba(191, 191, 191, 1);
}

footer .inner p.phone a {
    color: rgba(191, 191, 191, 1);
}

footer .footer-menu ul li {
    position: relative;
    list-style: none;
    margin-bottom: 10px;
}

footer .footer-menu ul li:last-child::after {
    display: none;
}

footer .footer-menu ul li a {
    font-family: "Nunito", sans-serif;
    font-size: 17px;
    font-weight: 500;
    color: rgba(191, 191, 191, 1);
    text-decoration: none;
}

footer .footer-note {
    display: flex;
    gap: 13px;
    align-items: center;
    margin: 10px 0;
}

footer .footer-note a {
    font-family: "Nunito", sans-serif;
    font-size: 18px;
    font-weight: 400;
    color: rgba(191, 191, 191, 1);
    text-decoration: none;
}

footer .social-wrapper {
    display: flex;
    gap: 20px;
}

footer .social-wrapper svg {
    font-size: 28px;
    color: rgba(191, 191, 191, 1);
}

footer .inner.pages {
    padding-left: 90px;
}

footer p.reserved {
    color: rgba(191, 191, 191, 1);
    font-size: 18px;
    text-align: center;
    margin-top: 30px;
    margin-bottom: 0px;
}

/* Footer Css End From Here */
/* Home Page Css Start From Here */
.banner {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 100vh;
    max-height: 830px;
    display: flex;
    align-items: center;
    padding: 0px 80px;

}

.banner h1 {
    font-family: 'Chromatica', sans-serif;
    font-size: 78px;
    font-weight: 900;
    color: rgba(255, 255, 255, 1);
}

.banner .banner-desc {
    color: rgba(255, 255, 255, 1);
    font-size: 16px;
    max-width: 500px;
}

/*.banner .submit-claim {*/
/*    margin-top: 25px;*/
/*    width: 100%;*/
/*    max-width: 150px;*/
/*    height: 40px;*/
/*    display: flex;*/
/*    justify-content: center;*/
/*    align-items: center;*/
/*    background-color: rgba(15, 56, 122, 1);*/
/*    font-weight: 800;*/
/*    font-family: "Nunito", sans-serif;*/
/*    font-size: 17px;*/
/*    color: rgba(255, 255, 255, 1);*/
/*    border: none;*/
/*    outline: none;*/
/*    text-decoration: none;*/
/*    border-radius: 4px;*/
/*}*/

.banner .submit-claim {
    margin-top: 25px;
    /* width: 100%; */
    /* max-width: 150px; */
    height: 40px;
    display: inline-block;
    justify-content: center;
    align-items: center;
    background-color: rgba(15, 56, 122, 1);
    font-weight: 800;
    font-family: "Nunito", sans-serif;
    font-size: 17px;
    color: rgba(255, 255, 255, 1);
    border: none;
    outline: none;
    text-decoration: none;
    border-radius: 4px;
    padding: 7px 15px;
}

.steps {
    margin: 0px 0px 0px 0px;
    background-color: rgba(244, 244, 244, 244);
}

.steps .container {
    max-width: 1150px;
}

.steps .single-step-wrapper {
    margin-top: -10px;
}

.steps .single-step-wrapper:nth-child(2) {
    margin-top: -30px;
}

.steps .single-step {
    padding: 80px 30px 40px 30px;
    background-color: rgba(255, 255, 255, 1);
    border-radius: 16px;
    position: relative;
    box-shadow: 0px 0px 12px 0px rgb(0 0 0 / 27%);
    text-align: center;
    height: 300px;
}

/* .steps .single-step-wrapper:nth-child(2) .single-step {
    height: auto;
} */

.steps .single-step .counter {
    position: absolute;
    top: -45px;
    left: 0px;
    right: 0px;
    margin: auto;
    width: 90px;
    height: 90px;
    background-color: rgba(15, 56, 122, 1);
    border: 2px solid rgba(159, 175, 201, 1);
    box-shadow: 0px 5px 4px 0px rgba(0, 0, 0, 0.53);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 600;
    font-family: "Nunito", sans-serif;
    font-size: 35px;
    color: rgba(255, 255, 255, 1);
}

.compensation {
    background-color: rgba(244, 244, 244, 1);
    background-repeat: no-repeat;
    background-size: 100%;
    padding: 50px 0px;
    background-position: bottom;
}

.compensation .container {
    max-width: 1170px;
}

.compensation h2 {
    text-align: center;
    font-family: 'Chromatica', sans-serif;
    font-size: 46px;
    font-weight: 700;
    line-height: 48.3px;
    letter-spacing: -0.02em;
    text-align: center;
    color: rgba(0, 0, 0, 1);
    margin-bottom: 30px;
}

.compensation .content-wrapper {
    font-family: "Nunito", sans-serif;
    font-size: 17px;
    font-weight: 400;
    line-height: 32.2px;
    /* text-align: center; */
    color: rgba(0, 0, 0, 1);
}

.compensation .content-wrapper .single-wrapper,
.compensation .content-wrapper .sinngle-full-wrapper {
    box-shadow: 0px 2px 2px 1px #D9DAE5;
    padding: 15px 13px;
    border-radius: 8px;
    background-color: #fff;
}

.compensation .content-wrapper .sinngle-full-wrapper ul {
    padding: 0px 40px;
}

.jurisdiction {
    padding: 50px 0px;
}

.jurisdiction .head {
    text-align: center;
    margin-bottom: 50px;
}

.jurisdiction .head h4 {
    font-family: "Nunito", sans-serif;
    font-size: 20px;
    font-weight: 600;
    line-height: 27.28px;
    text-align: center;
    color: rgba(115, 143, 188, 1);
}

.jurisdiction .head h2 {
    font-family: 'Chromatica', sans-serif;
    font-size: 46px;
    font-weight: 700;
    line-height: 50.6px;
    letter-spacing: -0.02em;
    text-align: center;
    color: rgba(8, 25, 33, 1);
}

.jurisdiction .container {
    max-width: 1250px;
}

.jurisdiction .single-wrapper {
    margin-bottom: 20px;
    position: relative;
    overflow: hidden;
}

.jurisdiction .single-wrapper .image {
    overflow: hidden;
    border-radius: 10px 10px 0px 0px;
}

.jurisdiction .single-wrapper .image img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    object-position: top;
    transition: transform 0.3s ease-in-out;
}

.jurisdiction .single-wrapper:hover img {
    transform: scale(1.09);
}

.jurisdiction .single-wrapper .content-wrapper {
    box-shadow: 0px -2px 8px 0px rgb(0 0 0 / 27%);
}

.jurisdiction .single-wrapper h4 {
    text-align: center;
    padding-top: 10px;
    padding-bottom: 10px;
    font-family: "Nunito", sans-serif;
    font-size: 21px;
    font-weight: 700;
    text-align: center;
    color: rgba(8, 25, 33, 1);
}

.jurisdiction .single-wrapper .content {
    max-width: 230px;
    margin: 0 auto;
    font-family: "Nunito", sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 21px;
    text-align: center;
    color: rgba(0, 0, 0, 1);
    padding-bottom: 20px;
    display: none;
    transition: display 0.3s ease-in-out;
}

.jurisdiction .single-wrapper .content .redirect {
    text-align: center;
    margin-top: 15px;
}

.jurisdiction .single-wrapper .content .redirect a {
    padding: 7px 28px;
    border-radius: 8px;
    background-color: rgba(15, 56, 122, 1);
    font-family: "Poppins", sans-serif;
    font-size: 18px;
    font-weight: 500;
    color: rgba(255, 255, 255, 1);
    text-decoration: none;
}

.faqs {
    padding-top: 50px;
    padding-bottom: 50px;
    background-color: rgba(236, 241, 250, 1);
}

.faqs .container {
    max-width: 1200px;
}

.faqs .head {
    text-align: center;
    margin-bottom: 50px;
}

.faqs .head h4 {
    font-family: "Nunito", sans-serif;
    font-size: 20px;
    font-weight: 600;
    line-height: 27.28px;
    text-align: center;
    color: rgba(115, 143, 188, 1);
}

.faqs .head h2 {
    font-family: 'Chromatica', sans-serif;
    font-size: 46px;
    font-weight: 700;
    line-height: 50.6px;
    letter-spacing: -0.02em;
    text-align: center;
    color: rgba(8, 25, 33, 1);
}

.faqs .single-faq {
    border: 0.44px solid rgba(180, 198, 194, 1);
    border-radius: 15px;
    margin-bottom: 20px;
    background-color: rgba(255, 255, 255, 1);
    overflow: hidden;
}

.faqs .single-faq .title {
    display: flex;
    justify-content: space-between;
    padding: 20px 30px 10px 30px;
    background-color: rgba(255, 255, 255, 1);
    cursor: pointer;
}

.faqs .single-faq .title h4 {
    font-family: "Nunito", sans-serif;
    font-size: 21px;
    font-weight: 600;
    line-height: 33px;
    margin-bottom: 0px;
    max-width: 450px;
}

.faqs .single-faq .title .icon {
    width: 33px;
    height: 33px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgba(15, 56, 122, 1);
    border-radius: 50%;
    transition: transform 0.3s ease;
}

.faqs .single-faq .content {
    display: none;
    padding: 0px 20px 20px 20px;
}

.faqs .single-faq.active .title {
    box-shadow: 0px 1px 4px 0px rgba(0, 0, 0, 0.1);
    background: rgba(159, 175, 201, 1);
    border-bottom: 1px solid rgba(15, 56, 122, 1)
}

.faqs .single-faq.active .title h4 {
    color: rgba(255, 255, 255, 1);
}

.faqs .single-faq.active .icon {
    background-color: rgba(255, 255, 255, 1);
    transform: rotate(180deg);
}

.faqs .single-faq.active .icon img {
    filter: invert(100%);
}

.guide {
    padding: 50px 0px;
}

.guide .container {
    max-width: 950px;
}

.guide .head {
    text-align: center;
    margin-bottom: 50px;
}

.guide .head h4 {
    font-family: "Nunito", sans-serif;
    font-size: 20px;
    font-weight: 600;
    line-height: 27.28px;
    text-align: center;
    color: rgba(115, 143, 188, 1);
}

.guide .head h2 {
    font-family: 'Chromatica', sans-serif;
    font-size: 46px;
    font-weight: 700;
    line-height: 50.6px;
    letter-spacing: -0.02em;
    text-align: center;
    color: rgba(8, 25, 33, 1);
}

.guide .desc {
    font-family: "Nunito", sans-serif;
    font-size: 20px;
    font-weight: 400;
    line-height: 32.2px;
    margin-bottom: 35px;
    color: rgba(0, 0, 0, 1);
}

.guide .list-content ul {
    padding-left: 0px;
    margin-bottom: 0px;
}

.guide .list-content ul li {
    position: relative;
    display: inline-block;
    font-family: "Nunito", sans-serif;
    font-size: 20px;
    font-weight: 400;
    line-height: 30.8px;
    color: rgba(0, 0, 0, 1);
}

.guide .list-content ul li::before {
    content: '';
    position: absolute;
    left: -15px;
    top: 10px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: rgba(0, 0, 0, 1);
}

.guide-content-wrapper {
    padding: 30px 0px;
}

.guide-content-wrapper .container {
    max-width: 950px;
}

.guide-content-wrapper .single-wrapper {
    margin-bottom: 40px;
}

.guide-content-wrapper .main-heading {
    padding: 15px 0px;
    text-align: center;
    width: 940px;
    border-radius: 20px 20px 0px 0px;
    background: rgba(15, 56, 122, 1);
    font-family: "Nunito", sans-serif;
    font-size: 27px;
    font-weight: 600;
    line-height: 27px;
    color: rgba(255, 255, 255, 1);
    margin-bottom: 0px;
    width: 100%;
}

.guide-content-wrapper .inner-wrapper {
    padding: 30px 20px;
    background: rgba(232, 240, 252, 1);
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
}

.guide-content-wrapper .inner-wrapper .single-guides {
    position: relative;
    box-sizing: border-box;
    margin-bottom: 30px;
}

.guide-content-wrapper .inner-wrapper .single-guides::after {
    content: '';
    position: absolute;
    top: 0;
    right: -16px;
    width: 2px;
    height: 25px;
    background-color: rgba(105, 117, 115, 1);
    display: inline-block;
}

.guide-content-wrapper .inner-wrapper .single-guides a {
    font-family: "Nunito", sans-serif;
    font-size: 22px;
    font-weight: 500;
    line-height: 22px;
    color: rgba(0, 0, 0, 1);
    text-decoration: underline;
    display: block;
}


/* About Us  */

.about-us {
    margin-bottom: 50px;
}

.about-us .container {
    max-width: 1000px;
}

.about-us .image-wrapper img {
    width: 100%;
}

.about-us .sub-heading h4 {
    font-family: "Nunito", sans-serif;
    font-size: 20px;
    font-weight: 600;
    line-height: 27.28px;
    color: rgba(115, 143, 188, 1);
}

.about-us .main-heading h2 {
    font-family: 'Chromatica', sans-serif;
    font-size: 46px;
    font-weight: 700;
    line-height: 50.6px;
    letter-spacing: -0.02em;
    color: rgba(8, 25, 33, 1);
}

.about-us .content {
    font-family: "Nunito", sans-serif;
    font-size: 19px;
    font-weight: 400;
    line-height: 25.92px;
    color: rgba(0, 0, 0, 1);
}


.about-us .go-to-about {
    display: inline-block;
    width: 100%;
    max-width: 124px;
    height: 39px;
    background: rgba(15, 56, 122, 1);
    box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.25);
    border-radius: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: Nunito;
    font-size: 17px;
    font-weight: 700;
    font-family: "Nunito", sans-serif;
    color: rgba(255, 255, 255, 1);
    text-decoration: none;
}

/* Home Page Css End From Here */

/* Inner Pages General Banner Start From Here */
.inner-banner-wrapper {
    position: relative;
    height: 100vh;
    max-height: 330px;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
}

.inner-banner-wrapper .title {
    font-family: 'Chromatica', sans-serif;
    font-size: 40px;
    font-weight: 900;
    color: rgba(255, 255, 255, 1);
    margin-top: 100px;
}

.breadcrumbs {
    position: absolute;
    bottom: -25px;
    display: flex;
    padding: 15px 40px;
    align-items: center;
    background: #fff;
    border-radius: 50px;
}

.breadcrumbs .home a {
    font-size: 19px;
    font-weight: 600;
    font-family: "Nunito", sans-serif;
    color: rgba(0, 0, 0, 1);
    text-decoration: none;
}

.breadcrumbs .divider {
    width: 2px;
    height: 20px;
    background-color: rgba(0, 0, 0, 1);
    margin: 0px 12px;
}

.breadcrumbs .current {
    font-size: 19px;
    font-weight: 600;
    font-family: "Nunito", sans-serif;
    color: #204683;
}

/* Inner Pages General Banner End From Here */

/* About Us Page Css Start From Here */
.about-company {
    padding: 70px 0px;
}

.about-company .container {
    max-width: 1000px;
}

.about-company .image-wrapper img {
    width: 100%;
}

.about-company .sub-heading h4 {
    font-family: "Nunito", sans-serif;
    font-size: 20px;
    font-weight: 600;
    line-height: 27.28px;
    color: rgba(115, 143, 188, 1);
}

.about-company .main-heading h2 {
    font-family: 'Chromatica', sans-serif;
    font-size: 46px;
    font-weight: 700;
    line-height: 50.6px;
    letter-spacing: -0.02em;
    color: rgba(8, 25, 33, 1);
}

.about-company .content {
    margin-top: 30px;
    font-family: "Nunito", sans-serif;
    line-height: 25.92px;
    color: rgba(0, 0, 0, 1);
}


.about-company .go-to-about {
    display: inline-block;
    width: 100%;
    max-width: 165px;
    height: 45px;
    background: rgba(15, 56, 122, 1);
    box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.25);
    border-radius: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: Nunito;
    font-size: 17px;
    font-weight: 700;
    font-family: "Nunito", sans-serif;
    color: rgba(255, 255, 255, 1);
    text-decoration: none;
}

.basic-info {
    margin-bottom: 50px;
    background-position: center;
    background-size: 100%;
    background-repeat: no-repeat;
    padding: 75px 0px;
}

.basic-info .inner-wrapper {
    display: flex;
    justify-content: center;
    gap: 150px;
}

.basic-info .inner-wrapper .number {
    font-size: 32px;
    font-weight: 500;
    font-family: "Nunito", sans-serif;
    color: rgba(255, 255, 255, 1);
}

.basic-info .inner-wrapper .single-info {
    text-align: center;
}

.basic-info .inner-wrapper .text {
    font-size: 14px;
    font-weight: 500;
    font-family: "Nunito", sans-serif;
    color: rgba(255, 255, 255, 1);
}

.choose-us {
    padding-bottom: 50px;
}

.choose-us .head {
    text-align: center;
    margin-bottom: 50px;
}

.choose-us .head h4 {
    font-family: "Nunito", sans-serif;
    font-size: 20px;
    font-weight: 600;
    line-height: 27.28px;
    text-align: center;
    color: rgba(115, 143, 188, 1);
}

.choose-us .head h2 {
    font-family: 'Chromatica', sans-serif;
    font-size: 46px;
    font-weight: 700;
    line-height: 50.6px;
    letter-spacing: -0.02em;
    text-align: center;
    color: rgba(8, 25, 33, 1);
}

.choose-us .head .desc {
    max-width: 720px;
    margin: auto;
    font-size: 17px;
    font-weight: 500;
    font-family: "Nunito", sans-serif;
    color: rgba(116, 114, 114, 1);
}

.choose-us .boxes-wrapper {
    margin-top: 40px;
}

.choose-us .boxes-wrapper .single-box-wrapper {
    padding: 30px 25px;
    border: 1px solid rgba(175, 175, 175, 1);
    border-radius: 10px;
}

.choose-us .boxes-wrapper .single-box-wrapper .icon {
    margin-bottom: 15px;
}

.choose-us .boxes-wrapper .single-box-wrapper .title {
    margin-bottom: 15px;
    font-size: 24px;
    font-weight: 500;
    font-family: 'Chromatica', sans-serif;
    color: rgba(0, 0, 0, 1);
}

.choose-us .boxes-wrapper .single-box-wrapper .desc {
    margin-bottom: 15px;
    font-size: 17px;
    font-weight: 500;
    font-family: "Nunito", sans-serif;
    color: #747272;
}


/* About Us Page Css End From Here */

/* Contact Us Page Css Start From Here */
.social-info {
    padding: 50px 0px;
}

.social-info .head {
    text-align: center;
    margin-bottom: 50px;
}

.social-info .head h4 {
    font-family: "Nunito", sans-serif;
    font-size: 20px;
    font-weight: 600;
    line-height: 27.28px;
    text-align: center;
    color: rgba(115, 143, 188, 1);
}

.social-info .head h2 {
    font-family: 'Chromatica', sans-serif;
    font-size: 46px;
    font-weight: 700;
    line-height: 50.6px;
    letter-spacing: -0.02em;
    text-align: center;
    color: rgba(8, 25, 33, 1);
    text-transform: capitalize;
}

.social-info .container {
    max-width: 1050px;
}

.social-info .social-info-wrapper {
    margin-top: 80px;
    display: flex;
    row-gap: 30px;
    column-gap: 70px;
}

/* .social-info .single-social-info .inner-wrapper {
    display: flex;
    justify-content: space-between;
} */

.social-info .single-social-info {
    width: 100%;
    max-width: 265px;
}

.social-info .single-social-info .sub-heading {
    font-family: "Nunito", sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: rgba(115, 143, 188, 1);
    margin: 13px 0px;
    line-height: 1;
}

.social-info .single-social-info .main-heading {
    font-family: "Nunito", sans-serif;
    font-size: 20px;
    font-weight: 600;
    color: rgba(0, 0, 0, 1);
}

.social-info .single-social-info .desc,
.social-info .single-social-info .desc a {
    font-family: "Nunito", sans-serif;
    font-size: 15px;
    font-weight: 500;
    line-height: 1;
    color: rgba(116, 114, 114, 1);
}

.social-info .single-social-info .desc span {
    display: block;
    margin-bottom: 10px;
}

.contact-form {
    margin-top: 30px;
    margin-bottom: 50px;
}

.contact-form .container {
    max-width: 1150px;
}

.contact-form input:not(input[type="submit"]) {
    width: 100%;
    height: 45px;
    margin-bottom: 25px;
    padding-left: 15px;
    outline: none;
    border: none;
    background-color: rgb(234 236 239);
}

.contact-form input:not(input[type="submit"])::placeholder {
    font-family: "Nunito", sans-serif;
    font-size: 15px;
    font-weight: 500;
    color: #747272;
}

.contact-form textarea {
    width: 100%;
    height: 150px;
    margin-bottom: 25px;
    padding-left: 15px;
    padding-top: 10px;
    outline: none;
    border: none;
    background-color: rgb(234 236 239);
}

.contact-form .submit {
    display: flex;
    justify-content: center;
    width: 100%;
}

.contact-form .submit p {
    width: 100%;
    text-align: center;
}

.contact-form .submit input {
    width: 100%;
    max-width: 200px;
    height: 50px;
    background-color: #0F387A;
    border-radius: 5px;
    color: rgba(255, 255, 255, 1);
    font-family: "Nunito", sans-serif;
    font-size: 16px;
    font-weight: 600;
    border: none;
    outline: none;
}

/* Contact Us Page Css End From Here */

/* Testimonial Page Css Start From Here */
.testimonial-heading {
    padding: 50px 0px;
}

.testimonial-heading .head {
    text-align: center;
    margin-bottom: 50px;
}

.testimonial-heading .head h4 {
    font-family: "Nunito", sans-serif;
    font-size: 20px;
    font-weight: 600;
    line-height: 27.28px;
    text-align: center;
    color: rgba(115, 143, 188, 1);
}

.testimonial-heading .head h2 {
    font-family: 'Chromatica', sans-serif;
    font-size: 46px;
    font-weight: 700;
    line-height: 50.6px;
    letter-spacing: -0.02em;
    text-align: center;
    color: rgba(8, 25, 33, 1);
    text-transform: capitalize;
}

.testimonial-wrapper {
    padding-top: 50px;
    padding-bottom: 50px;
}

.testimonial-wrapper .container {
    max-width: 1000px;
}

.testimonial-wrapper .testimonial-inner-wrapper {
    display: flex;
    justify-content: space-between;
    row-gap: 40px;
}

.testimonial-wrapper .testimonial-inner-wrapper .single-testimonial {
    position: relative;
    padding: 50px 0px 30px 0px;
    display: flex;
    column-gap: 30px;
    margin-bottom: 30px;
}

.testimonial-wrapper .testimonial-inner-wrapper .single-testimonial::before {
    content: '';
    position: absolute;
    left: 45px;
    top: 0px;
    height: 100%;
    width: 4px;
    background-color: rgba(15, 56, 122, 1);
    z-index: -1;
}

.testimonial-wrapper .testimonial-inner-wrapper .single-testimonial .image img {
    width: 115px;
    height: 115px;
    border-radius: 50%;
    object-position: top;
}

.testimonial-wrapper .testimonial-inner-wrapper .single-testimonial .comma {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    background: rgba(159, 175, 201, 1);
    margin: 35px 0px 0px auto;
}

.testimonial-wrapper .testimonial-inner-wrapper .single-testimonial .comma img {
    object-fit: none;
}

.testimonial-wrapper .testimonial-inner-wrapper .single-testimonial .content .comma {
    display: none;
}

.testimonial-wrapper .testimonial-inner-wrapper .single-testimonial .content .desc {
    margin-bottom: 30px;
    color: rgba(116, 114, 114, 1);
    font-family: "Nunito", sans-serif;
    font-size: 15px;
    font-weight: 500;
    text-align: justify;
}

.testimonial-wrapper .testimonial-inner-wrapper .single-testimonial .foot {
    display: flex;
    justify-content: space-between;
    align-items: end;
}

.testimonial-wrapper .testimonial-inner-wrapper .single-testimonial .foot .name {
    font-family: "Nunito", sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: rgba(0, 0, 0, 1);
}

.designation {
    color: rgba(116, 114, 114, 1);
    font-family: "Nunito", sans-serif;
    font-size: 14px;
    font-weight: 400;
}

/* Testimonial Page Css Start From Here */

/* Flight Guide Page Css Start From Here */
.flight-guide-heading {
    padding: 50px 0px;
}

.flight-guide-heading .head {
    text-align: center;
}

.flight-guide-heading .head h4 {
    font-family: "Nunito", sans-serif;
    font-size: 20px;
    font-weight: 600;
    line-height: 27.28px;
    text-align: center;
    color: rgba(115, 143, 188, 1);
}

.flight-guide-heading .head h2 {
    font-family: 'Chromatica', sans-serif;
    font-size: 46px;
    font-weight: 700;
    line-height: 50.6px;
    letter-spacing: -0.02em;
    text-align: center;
    color: rgba(8, 25, 33, 1);
    text-transform: capitalize;
}

.flight-guide-heading .desc p {
    font-family: "Nunito", sans-serif;
    font-size: 22px;
    font-weight: 500;
    line-height: 33px;
    text-align: center;
    color: rgba(0, 0, 0, 1);
}

.flight-guide-content h2 {
    font-family: "Nunito", sans-serif;
    font-size: 25px;
    font-weight: 600;
    line-height: 29.42px;
    background: rgba(236, 243, 255, 1);
    padding: 20px 30px;
}

.flight-guide-content p {
    font-family: "Nunito", sans-serif;
    font-size: 20px;
    font-weight: 400;
    line-height: 33px;
}

.flight-guide-content li {
    font-family: "Nunito", sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 30px;
}

.flight-guide-content h6 {
    font-family: "Nunito", sans-serif;
    font-size: 22px;
    font-weight: 600;
    line-height: 33px;
}

.flight-guide-content h5 {
    font-family: "Nunito", sans-serif;
    font-size: 24px;
    font-weight: 700;
    line-height: 28.24px;
    color: rgba(15, 56, 122, 1);
}

.flight-guide-content svg.fa-phone {
    color: rgba(15, 56, 122, 1);
}

.flight-guide-content svg.fa-square-instagram {
    color: rgb(226, 127, 13);
}

.flight-guide-content svg.fa-square-twitter {
    color: rgba(3, 169, 244, 1);
}

.flight-guide-content svg.fa-square-facebook {
    color: rgba(25, 118, 210, 1);
}

/* Flight Guide Page Css End From Here */

/* Action Pages (Login & Signup) Css Start From Here */

.action-form-wrapper {
    width: 100%;
    height: 100vh;
    overflow: overlay;
    display: flex;
    justify-content: center;
    align-items: center;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.page-template-signup .action-form-wrapper {
    width: 100%;
    height: auto;
    overflow: overlay;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    padding: 180px 0px 70px 0px;
}

.action-form-wrapper .inner-wrapper {
    width: 100%;
    max-width: 500px;
    background: rgba(0, 0, 0, 0.76);
    padding: 35px 40px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 1);
}

.action-form-wrapper .inner-wrapper h1 {
    font-family: "Nunito", sans-serif;
    font-size: 35px;
    font-weight: 600;
    padding-bottom: 10px;
    color: rgba(159, 175, 201, 1);
}

.action-form-wrapper .inner-wrapper .error {
    color: rgb(255, 0, 0);
}

.action-form-wrapper .inner-wrapper h1 img {
    display: inline-block;
    margin-right: 10px;
}

.action-form-wrapper .inner-wrapper form {
    padding-top: 10px;
}

.action-form-wrapper .inner-wrapper form label,
.action-form-wrapper .inner-wrapper form label a {
    color: #fff;
    font-size: 17px;
    margin-bottom: 20px;
    text-decoration: underline;
    cursor: pointer;
}

.action-form-wrapper .inner-wrapper form input:not(input[type="submit"]):not(input[type="checkbox"]) {
    width: 100%;
    height: 45px;
    margin-bottom: 20px;
    outline: none;
    border: 1px solid rgba(159, 175, 201, 1);
    color: rgba(169, 169, 169, 1);
    font-family: "Nunito", sans-serif;
    font-size: 18px;
    font-weight: 400;
    padding-left: 15px;
    background-color: transparent;
    border-radius: 10px;
}

.action-form-wrapper .inner-wrapper form input[type=checkbox] {
    width: 20px;
    height: 18px;
    margin-right: 9px;
}

.action-form-wrapper .inner-wrapper form input:not(input[type="submit"]):not(input[type="checkbox"])::placeholder {
    font-family: "Nunito", sans-serif;
    font-size: 18px;
    font-weight: 400;
    color: rgba(169, 169, 169, 1);
}

.action-form-wrapper .inner-wrapper .additional {
    margin-bottom: 20px;
}

.action-form-wrapper .inner-wrapper .additional a {
    font-family: "Poppins", sans-serif;
    font-size: 15px;
    font-weight: 400;
    color: rgba(159, 175, 201, 1);
}

.action-form-wrapper .inner-wrapper .submit {
    text-align: center;
    margin-bottom: 35px;
}

.action-form-wrapper .inner-wrapper .submit input {
    width: 100%;
    max-width: 290px;
    margin: auto;
    height: 42px;
    border-radius: 9px;
    border: none;
    outline: none;
    background: rgba(15, 56, 122, 1);
    font-family: "Nunito", sans-serif;
    font-size: 23px;
    font-weight: 600;
    color: rgba(255, 255, 255, 1);
}

.action-form-wrapper .inner-wrapper .account {
    font-family: "Poppins", sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 24.15px;
    text-align: center;
    color: rgba(255, 255, 255, 1);
}

.action-form-wrapper .inner-wrapper .account a {
    color: rgba(159, 175, 201, 1);
    text-decoration: none;
}

/* Action Pages (Login & Signup) Css End From Here */

/* Profile Page Css Start From Here */
.profile-heading {
    padding: 50px 0px;
}

.profile-heading .head {
    text-align: center;
    margin-bottom: 0px;
}

.profile-heading .head h4 {
    font-family: "Nunito", sans-serif;
    font-size: 20px;
    font-weight: 600;
    line-height: 27.28px;
    text-align: center;
    color: rgba(115, 143, 188, 1);
}

.profile-heading .head h2 {
    font-family: 'Chromatica', sans-serif;
    font-size: 46px;
    font-weight: 700;
    line-height: 50.6px;
    letter-spacing: -0.02em;
    text-align: center;
    color: rgba(8, 25, 33, 1);
    text-transform: capitalize;
    margin-bottom: 10px;
}

.profile.personal-info .profile-pic img {
    width: 100%;
    height: 168px;
    object-fit: cover;
    border-radius: 14px;
}

.profile.personal-info .username {
    font-family: "Chromatica", sans-serif;
    font-size: 30px;
    font-weight: 700;
    line-height: 41.21px;
    letter-spacing: 0.01em;
    text-transform: capitalize;
    margin-bottom: 15px;
}

.profile.personal-info .label {
    font-family: "Nunito", sans-serif;
    font-size: 17px;
    font-weight: 400;
    line-height: 22.81px;
    text-align: left;
    color: rgba(92, 92, 92, 1);
    margin-bottom: 6px;
}

.profile.personal-info .value {
    font-family: "Nunito", sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 25.49px;
    text-align: left;
    color: rgba(0, 0, 0, 1);
}

.profile.personal-info .value.toggle-wrap {
    display: flex;
    gap: 20px;
    align-items: center;
    margin-top: 10px;
}

.profile.personal-info .status-value {
    font-weight: 600;
}

.personal-info .toggle {
    position: relative;
    display: inline-block;
}

.personal-info .toggle__input {
    display: none;
}

.personal-info .toggle__label {
    display: block;
    width: 60px;
    height: 30px;
    background-color: rgba(15, 56, 122, 1);
    border-radius: 99px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.personal-info .toggle__label.on {
    background-color: rgba(15, 56, 122, 1);
}

.personal-info .toggle__label.off {
    background-color: red;
}

.personal-info .toggle__input.off+.toggle__label::after {
    left: 0px;
}

.personal-info .toggle__input.on+.toggle__label::after {
    left: 32px;
}

.personal-info .toggle__label::after {
    content: '';
    position: absolute;
    top: 2px;
    left: 2px;
    width: 26px;
    height: 26px;
    background-color: #ffffff;
    border-radius: 50%;
    transition: left 0.3s ease;
}

.claims-heading {
    padding: 50px 0px;
}

.claims-heading .head {
    text-align: center;
    margin-bottom: 0px;
}

.claims-heading .head h4 {
    font-family: "Nunito", sans-serif;
    font-size: 20px;
    font-weight: 600;
    line-height: 27.28px;
    text-align: center;
    color: rgba(115, 143, 188, 1);
}

.claims-heading .head h2 {
    font-family: 'Chromatica', sans-serif;
    font-size: 46px;
    font-weight: 700;
    line-height: 50.6px;
    letter-spacing: -0.02em;
    text-align: center;
    color: rgba(8, 25, 33, 1);
    text-transform: capitalize;
    margin-bottom: 10px;
}

.my-claims-list h4 {
    font-family: "Nunito", sans-serif;
    font-size: 26px;
    font-weight: 600;
    line-height: 53px;
    text-align: left;
    color: rgba(0, 0, 0, 1);
    margin-bottom: 10px;
    text-decoration: underline;
}

.my-claims-list table {
    width: 100%;
}

.my-claims-list table thead {
    background: rgba(206, 214, 228, 1);
    height: 53px;
}

.my-claims-list table thead th {
    text-align: center;
    font-family: "Nunito", sans-serif;
    font-size: 19px;
    font-weight: 600;
}

.my-claims-list table tbody {
    background: rgba(239, 243, 250, 1);
}

.my-claims-list table tbody tr {
    border: 1px solid rgba(225, 225, 225, 1);
}

.my-claims-list table tbody tr:last-child {
    border: none;
}

.my-claims-list table tbody tr td {
    height: 55px;
    text-align: center;
    font-family: "Nunito", sans-serif;
    font-size: 19px;
    font-weight: 600;
    text-transform: capitalize;

}

.my-claims-list table tbody tr td button {
    padding: 7px 28px;
    border-radius: 8px;
    background-color: rgba(15, 56, 122, 1);
    font-family: "Poppins", sans-serif;
    font-size: 18px;
    font-weight: 500;
    color: rgba(255, 255, 255, 1);
    text-decoration: none;
    border: none;
    outline: none;
}

.my-claims-list table tbody tr td button.green {
    background-color: forestgreen;
}

.my-claims-list table tbody tr td button.red {
    background-color: red;
}

.power-attorney {
    padding: 50px 0px;
}

.power-attorney h2 {
    font-family: "Nunito", sans-serif;
    font-size: 35px;
    font-weight: 700;
    line-height: 53px;
    text-align: left;
}

.power-attorney .content {
    font-family: "Nunito", sans-serif;
    font-size: 21px;
}

.profile-faqs {
    padding-bottom: 50px;
}

.profile-faqs .single-profile-faq .title {
    display: flex;
    justify-content: space-between;
    font-size: 24px;
    font-weight: 700;
    font-family: "Nunito", sans-serif;
    color: rgba(15, 56, 122, 1);
    padding-bottom: 5px;
    border-bottom: 2px solid rgba(241, 241, 241, 1);
    cursor: pointer;
}

.profile-faqs .single-profile-faq .icon img {
    transition: transform 0.3s ease;
}

.profile-faqs .single-profile-faq.open .icon img {
    transform: rotate(180deg);
}

.profile-faqs .single-profile-faq .content {
    padding: 10px 0px;
    font-family: "Nunito", sans-serif;
    font-size: 21px;
    font-weight: 400;
    color: rgba(0, 0, 0, 1);
    display: none;
}

.profile-faqs .single-profile-faq {
    margin-bottom: 20px;
}

.actions-wrapper {
    padding: 0px 0px 50px 0px;
}

.actions-wrapper .container {
    display: flex;
    gap: 20px;
}

.actions-wrapper button {
    padding: 7px 28px;
    border-radius: 8px;
    background-color: rgba(15, 56, 122, 1);
    font-family: "Poppins", sans-serif;
    font-size: 18px;
    font-weight: 500;
    color: rgba(255, 255, 255, 1);
    text-decoration: none;
    border: none;
    outline: none;
}

.actions-wrapper button.green {
    background-color: rgba(15, 56, 122, 1);
}

.actions-wrapper button.red {
    background-color: red;
}

/* Profile Page Css End From Here */
/* Claim Page Css Start From Here */

.claim-wrapper {
    margin-top: 100px;
    padding-top: 70px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.claim-wrapper .container {
    position: relative;
    max-width: 700px;
    background-color: #EBF1F9;
    padding: 70px 45px;
    border-radius: 20px 20px 0px 0px;
}

.claim-wrapper .container .plane-image {
    position: absolute;
    right: -25%;
    top: 0%;
}

.claim-wrapper .main-heading h2 {
    font-size: 30px;
    font-weight: bold;
    font-family: "Chromatic", sans-serif;
    color: #1D4482;
}

.claim-wrapper .label {
    display: block;
    font-weight: 600;
    font-family: "Nunito", sans-serif;
    font-size: 17px;
    color: rgba(0, 0, 0, 1);
    margin: 20px 0px 0px 0px;
}

.claim-wrapper input[type="text"],
.claim-wrapper input[type="date"],
.claim-wrapper input[type="email"] {
    width: 100%;
    height: 45px;
    border-radius: 4px;
    color: rgba(0, 0, 0, 1);
    border: 1px solid rgba(66, 66, 66, 70%);
    padding-left: 10px;
    outline: none;
    margin-bottom: 10px;
}

.claim-wrapper input[type="checkbox"] {
    height: 20px;
    width: 17px;
    margin-right: 8px;
}

.claim-wrapper input[type="date"]::-webkit-calendar-picker-indicator {
    background: transparent;
    bottom: 0;
    color: transparent;
    cursor: pointer;
    height: auto;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    width: auto;
}


.claim-wrapper textarea {
    width: 100%;
    height: 60px;
    border-radius: 4px;
    color: rgba(0, 0, 0, 1);
    border: 1px solid rgba(66, 66, 66, 70%);
    padding-left: 10px;
    outline: none;
    margin-bottom: 10px;
}

.claim-wrapper select {
    width: 100%;
    height: 45px;
    color: rgba(0, 0, 0, 1);
    padding-left: 3px;
    border: 1px solid rgba(66, 66, 66, 70%);
    outline: none;
    border-radius: 4px;
}

.claim-wrapper .icon {
    display: flex;
    align-items: center;
    justify-content: end;
    margin-top: 5px;
    cursor: pointer;
}

.claim-wrapper .icon svg {
    display: inline-block;
    width: 17px;
    height: 17px;
    background: #1D4482;
    padding: 8px;
    color: #fff;
    border-radius: 3px;
}

.claim-wrapper .repeater-one {
    display: none;
}

.claim-wrapper .repeater-one .icon.add-more i {
    color: green;
}

.claim-wrapper .repeater-one .icon.remove-more i {
    color: red;
}

.claim-wrapper .repeater-two {
    display: none;
}

.claim-wrapper .repeater-two .icon.add-more i {
    color: green;
}

.claim-wrapper .repeater-two .icon.remove-more i {
    color: red;
}

.claim-wrapper .repeater-three {
    display: none;
}

.claim-wrapper .repeater-three .icon.add-more i {
    color: green;
}

.claim-wrapper .repeater-three .icon.remove-more i {
    color: red;
}

.claim-wrapper form input[type="submit"] {
    margin-top: 25px;
    width: 100%;
    max-width: 125px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgba(68, 113, 187, 1);
    font-weight: 800;
    font-family: "Nunito", sans-serif;
    font-size: 17px;
    color: rgba(255, 255, 255, 1);
    border: none;
    outline: none;
    border-radius: 4px;
}

.error-border {
    border: 1px solid red !important;
}

#power-of-attorney.error-border {
    outline: 1px solid red !important;
}

/* Claim Page Css End From Here */
/* Claim Submiy Thank You Popup */
.claim-thankyou-popup {
    background-color: #000000b0;
    position: fixed;
    left: 0px;
    right: 0px;
    top: 0px;
    bottom: 0px;
    z-index: 9;
    display: none;
}

.claim-thankyou-popup .wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.claim-thankyou-popup .wrapper .inner-wrapper {
    position: relative;
    background: #fff;
    padding: 75px 40px 30px 40px;
    border-radius: 5px;
    max-width: 420px;
}

.claim-thankyou-popup .wrapper .inner-wrapper .icon {
    position: absolute;
    left: 0px;
    right: 0px;
    margin: auto;
    text-align: center;
    top: -45px;
}

.claim-thankyou-popup .wrapper .inner-wrapper .icon img {
    max-width: 107px;
}

.claim-thankyou-popup .wrapper .inner-wrapper .heading {
    text-align: center;
    font-size: 50px;
    font-weight: 500;
    font-family: "Nunito", sans-serif;
}

.claim-thankyou-popup .wrapper .inner-wrapper .message {
    text-align: center;
    font-size: 22px;
    font-weight: 500;
    font-family: "Nunito", sans-serif;
    color: rgb(0 0 0 / 63%);
}

.claim-thankyou-popup .wrapper .inner-wrapper .cancel {
    text-align: center;
    background: rgba(15, 56, 122, 1);
    color: #fff;
    padding: 12px;
    border-radius: 5px;
    margin-top: 30px;
    font-size: 20px;
    font-weight: 600;
    cursor: pointer;
}


/* Claim Submiy Error Popup */
.claim-error-popup {
    background-color: #000000b0;
    position: fixed;
    left: 0px;
    right: 0px;
    top: 0px;
    bottom: 0px;
    z-index: 9;
    display: none;
}

.claim-error-popup .wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.claim-error-popup .wrapper .inner-wrapper {
    position: relative;
    background: #fff;
    padding: 75px 40px 30px 40px;
    border-radius: 5px;
    max-width: 420px;
}

.claim-error-popup .wrapper .inner-wrapper .icon {
    position: absolute;
    left: 0px;
    right: 0px;
    margin: auto;
    text-align: center;
    top: -45px;
}

.claim-error-popup .wrapper .inner-wrapper .icon img {
    max-width: 107px;
}

.claim-error-popup .wrapper .inner-wrapper .heading {
    text-align: center;
    font-size: 50px;
    font-weight: 500;
    font-family: "Nunito", sans-serif;
    color: red;
}

.claim-error-popup .wrapper .inner-wrapper .message {
    text-align: center;
    font-size: 22px;
    font-weight: 500;
    font-family: "Nunito", sans-serif;
    color: rgb(0 0 0 / 63%);
}

.claim-error-popup .wrapper .inner-wrapper .cancel {
    text-align: center;
    background: red;
    color: #fff;
    padding: 12px;
    border-radius: 5px;
    margin-top: 30px;
    font-size: 20px;
    font-weight: 600;
    cursor: pointer;
}

/* Action Popup */
.claim-delete-popup,
.claim-revoke-popup,
.claim-add-popup {
    background-color: #000000b0;
    position: fixed;
    left: 0px;
    right: 0px;
    top: 0px;
    bottom: 0px;
    z-index: 9;
    display: none;
}

.claim-delete-popup .wrapper,
.claim-revoke-popup .wrapper,
.claim-add-popup .wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.claim-delete-popup .wrapper .inner-wrapper,
.claim-revoke-popup .wrapper .inner-wrapper,
.claim-add-popup .wrapper .inner-wrapper {
    position: relative;
    background: #fff;
    padding: 75px 40px 30px 40px;
    border-radius: 5px;
    max-width: 420px;
}

.claim-delete-popup .wrapper .inner-wrapper .icon,
.claim-revoke-popup .wrapper .inner-wrapper .icon,
.claim-add-popup .wrapper .inner-wrapper .icon {
    position: absolute;
    left: 0px;
    right: 0px;
    margin: auto;
    text-align: center;
    top: -45px;
}

.claim-delete-popup .wrapper .inner-wrapper .icon img,
.claim-revoke-popup .wrapper .inner-wrapper .icon img,
.claim-add-popup .wrapper .inner-wrapper .icon img {
    max-width: 107px;
}

.claim-delete-popup .wrapper .inner-wrapper .heading,
.claim-revoke-popup .wrapper .inner-wrapper .heading,
.claim-add-popup .wrapper .inner-wrapper .heading {
    text-align: center;
    font-size: 30px;
    font-weight: 800;
    font-family: "Nunito", sans-serif;
}

.claim-delete-popup .wrapper .inner-wrapper .message,
.claim-revoke-popup .wrapper .inner-wrapper .message,
.claim-add-popup .wrapper .inner-wrapper .message {
    text-align: center;
    font-size: 16px;
    font-weight: 500;
    font-family: "Nunito", sans-serif;
    color: rgb(0 0 0 / 63%);
    margin-bottom: 20px;
}

.claim-delete-popup .wrapper .btns,
.claim-revoke-popup .wrapper .btns,
.claim-add-popup .wrapper .btns {
    display: flex;
    gap: 20px;
    justify-content: space-between;
    align-items: baseline;
}

.claim-delete-popup .wrapper .inner-wrapper button,
.claim-revoke-popup .wrapper .inner-wrapper button,
.claim-add-popup .wrapper .inner-wrapper button {
    padding: 7px 28px;
    border-radius: 8px;
    background-color: transparent;
    font-family: "Poppins", sans-serif;
    font-size: 18px;
    font-weight: 500;
    border: 1px solid #797373;
    color: rgb(0, 0, 0);
    text-decoration: none;
    outline: none;
}

.claim-delete-popup .wrapper .inner-wrapper form button {
    background-color: red;
    border: none;
    color: #fff;
}

.claim-revoke-popup .wrapper .inner-wrapper form button {
    background-color: rgba(15, 56, 122, 1);
    border: none;
    color: #fff;
}

.claim-add-popup .wrapper .inner-wrapper form button {
    background-color: rgba(15, 56, 122, 1);
    border: none;
    color: #fff;
}

/* Single Jurisdiction */

.single-juridiction {
    padding: 100px 0px 50px 0px;
}

.single-juridiction p {
    font-family: "Nunito", sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 30px;
}

.single-juridiction li {
    font-family: "Nunito", sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 30px;
}

.single-juridiction b {
    font-family: "Nunito", sans-serif;
    font-size: 24px;
    font-weight: 700;
    line-height: 28.24px;
    color: rgba(15, 56, 122, 1);
}

.flight-guide-content .adjust-padding {
    padding-left: 70px;
}