@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

/* Nav Bar */
body {
    font-family: "Inter", sans-serif;
    overflow-x: hidden;
}

.cpointer{cursor:pointer;}
.main {
    overflow-x: hidden;
    position: relative;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
span {
    margin: 0;
}

.nav-bar {
    background-color: rgba(255, 255, 255, 0.785);
    box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.08);
    transition: 1s;
    position:sticky;
    top:0;
    width:100%;
    z-index:99999;
}

.nav-bar img {
    height: 40px;
}


.nav-bar.sticky {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: white;
    z-index: 999;
}

.nav-bar-right {
    width: 56%;
}
@media (max-width: 1300px) {
  .nav-bar-right {
    width: 52%;
}
}


.nav-bar-list2 {
    background-color: rgba(255, 255, 255, 0.626);
    padding: 1vmax 1.8vmax;
    border-radius: 10px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transform: translateY(135%);
    border: 1px solid rgba(255, 255, 255, 0.374);
}


.nav-bar-list.fixed {
    position: static;
    transform: translate(0, 0);
    background-color: white;
    border: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    padding: 0;
    border-radius: 0;
}

.nav-bar-list a {
    text-decoration: none;
    color: black;
    font-size: 18px;
    font-weight: 400;
}

@keyframes heartbeat {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }

    100% {
        transform: scale(1);
    }
}

.text-decoration-none {
    color: black;
    font-weight: 500;
    background-color: #00cad8;
    padding: 0.5vmax 1vmax;
    border-radius: 50px;
    font-size: 20px;
    display: inline-block;
    animation: heartbeat 1.5s infinite;
    transition: transform 0.10s ease-in-out;
}

.nav-bar-right .text-decoration-none i {
    font-size: 24px;
}

.call-buton a {
    display: none;
}

@media only screen and (max-width: 600px) {
    .nav-bar {
        flex-direction: column;
        background-color: white;
    }

    .nav-bar img {
        height: 25px;
    }

    .nav-bar-list a {
        font-size: 14px;
    }

    .nav-bar-right ul {
        gap: 0 !important;
    }

    .nav-bar-right {
        flex-direction: column-reverse;
        width: 100%;
    }

    .nav-bar-list {
        width: 100%;
        justify-content: space-around;
        background-color: transparent;
        transform: initial;
    }

    .nav-bar-list {
        background-color: white;
        padding: 2vmax 0;
        padding-bottom: 0;
        border-radius: initial;
        -webkit-backdrop-filter: none;
        border: none;
    }

    .nav-bar-list.fixed {
        padding: 1vmax 0 0 0;
    }

    .nav-bar-right .text-decoration-none {
        display: none;
    }

    .nav-bar-right .text-decoration-none i {
        font-size: 18px;
    }

    .call-buton {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .call-buton a {
        font-size: 16px;
        display: initial;
    }

    .nav-bar.sticky {
        position: fixed;
        top: 0;
        width: 100vw;
        z-index: 999;
    }
}

/* Hero Setion */

.hero-section {
    height: 95vh;
    width: 100%;
    background: url(../imgs/hero.png);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: right;
    overflow: hidden;
}

.hero-section-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: none;
}

.hero-section-left {
    padding: 5vmax 8vmax;
    width: 50%;
    background: linear-gradient(to right, #0074b32c 0%, #0074b30f 30%, #ffffff1e 70%, #ffffff1e 100%);
}

.hero-section-left h1 {
    font-size: 60px;
    line-height: 110%;
    display: flex;
    flex-direction: column;
    font-weight: 600;
}


.hero-section-left h1 span {
    font-weight: 800;
    font-size: 64px;
    color: #0073b3;
}

.hero-section-left ul {
    list-style-type: none;
    padding: 0;
    margin-top: 2vmax;
    font-size: 22px;
    font-weight: 600;
}

.hero-section-left ul li {
    margin-top: .3vmax;
}

.hero-section-left ul li i {
    color: #0073b3;
    font-size: 24px;
    background: url(../imgs/pointers.png);
    background-size: contain;
}



.hero-section-left-btn {
    width: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-top: 3vmax;
}

.hero-section-left-btn p {
    font-size: 12px;
    margin-top: 1vmax;
    font-weight: 600;
}

.hero-section-left-btn a {
    font-size: 18px;
    background-color: #3cc6f0;
    padding: .7vmax 4vmax .7vmax 1.3vmax;
    border-radius: 50px;
    text-decoration: none;
    color: black;
    font-weight: 600;
    position: relative;
    display: inline-block;
    overflow: hidden;
}




.hero-section-left-btn a span {
    background-color: white;
    color: black;
    font-size: 20px;
    padding: .4vmax .7vmax;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    right: 2%;
    transform: translateY(-50%);
    z-index: 2;
    opacity: 1;
    transition: all 0.1s ease-out;
}

.hero-section-left-btn a::after {
    content: "\2192";
    font-size: 20px;
    background: white;
    color: black;
    padding: .4vmax .7vmax;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: -3vmax;
    transform: translateY(-50%);
    opacity: 1;
    transition: all 0.4s ease-out;
    z-index: 1;
}

@media only screen and (max-width: 600px) {

    .hero-section {
        height: max-content;
        background: url(../imgs/headermobile.jpg);
        background-size: cover;
        background-position: bottom;
        background-repeat: no-repeat;
    }

    .hero-section-img {
        display: initial;
    }

    .hero-section-left {
        padding: 0 2vmax;
        width: 100%;
        background: none;
        padding-top: 6vmax;
        padding-bottom: 4vmax;
    }

    .hero-section-left h1 {
        font-size: 22px;
        color: white;
        line-height: initial;
        margin-bottom: 3vmax;
    }

    .hero-section-left h1 span {
        font-weight: 800;
        font-size: 34px;
        color: #00f0ff;
    }

    .hero-section-left ul {
        font-size: 16px;
        margin-top: 1vmax;
        color: white;

        list-style-type: none;
        padding: 0;
        font-weight: 600;
        font-weight: 400;
        font-size: 14px;
        margin-bottom: 3vmax;
    }

    .hero-section-left ul li i {
        color: #0073b3;
        font-size: 14px;
    }

    .hero-section-left-btn {
        width: 100%;
        align-items: flex-start;
        margin-top: 2vmax;
    }


    .hero-section-left-btn a {
        padding: 1vmax 6vmax 1vmax 2vmax;
        font-size: 14px;
    }
    .hero-section-left-btn a i{
        font-size: 14px;
    }

    .hero-section-left-btn a span {
        transform: translateY(-50%);
        padding: .5vmax 1vmax;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .hero-section-left-btn a::after {
        transform: translateY(-55%);
        padding: 0 .7vmax;
        display: none;
    }
    .hero-section-left-btn p{
        color: white;
        font-size: 10px;
    }

}

.hero-section-left-btn a:hover::after {
    left: calc(81% - .7vmax);
    opacity: 1;
}

.hero-section-left-btn a:hover span {
    opacity: 0;
}

.hero-section-bottom {
    padding: 0 8vmax;
}

.hero-section-bottom-num {
    column-gap: .8vmax;
    margin-top: -7vmax;
}

.hero-section-bottom-num .col-md-3 {
    padding: 0 .5vmax;
}



.hero-section-bottom-num .num-div {
    height: 100%;
    background-color: #0073B3;
    padding: .8vmax 1.5vmax;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 0;
    border-radius: 20px;
}



.hero-section-bottom-num .num-div p {
    margin: 0;
    color: white;
}

.hero-section-bottom-num .num-div h2 {
    font-size: 42px;
    color: #ffeb00;
}

@media only screen and (max-width: 600px) {
    .hero-section-bottom {
        padding: 0 2vmax;
        /* margin-top: 5vmax; */
    }

    .hero-section-bottom-num {
        margin-top: initial;
        width: 100%;
        padding: 1vmax 2.5vmax;
        gap: 1.5vmax;
    }

    .hero-section-bottom-num .row {
        row-gap: 1vmax;
    }

    .hero-section-bottom-num .num-div {
        height: 100%;
        width: 100%;
        border-radius: 10px;
        padding: 2vmax 0;
        border-radius: 10px;
    }

    .hero-section-bottom-num .num-div p {
        font-size: 14px;
    }

    .hero-section-bottom-num .num-div h2 {
        margin-top: 2vmax;
        font-size: 28px;
    }
}

/* pointer-section */

.pointer-section {
    padding: 2vmax 8vmax;
}


.pointer-section .col-md-4 {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0 4vmax;
    gap: 1vmax;
}

.pointer-section .col-md-4 img {
    height: 4vmax;
}

.pointer-section .col-md-4 h4 {
    margin: 0;
    font-weight: 600;
}

.pointer-section .col-md-4 span {
    font-size: 14px;
    font-weight: 500;
}

.pointer-section .col-md-4 p {
    margin: 0;
    font-weight: 500;
}

.pointer-bor-rigth {
    border-right: 2.5px solid #3cc6f0;
}

.pointer-section .row {
    background-color: white;
    box-shadow: 1px 5px 10px #3cc6f04d;
    border-radius: 20px;
    padding: 2vmax 0;
}

@media only screen and (max-width: 600px) {
    .pointer-section {
        padding: 2vmax;
    }

    .pointer-section .col-md-4 {
        padding: 2vmax;
    }


    .pointer-section .col-md-4 img {
        height: 10vmax;
    }

    .pointer-section .col-md-4 p {
        margin-top: 2vmax;
    }

    .pointer-bor-rigth {
        border-right: none;
        border-bottom: 2.5px solid #3cc6f0;
    }

}

/* section4 */

.section4 {
    margin-top: 3vmax;
}


.section4-top h2 {
    display: flex;
    flex-direction: column;
    text-align: center;
    font-size: 40px;
    color: #2d2b83;
    font-weight: 700;
    /* line-height: 120%; */
}

.section4-top h2 span {
    font-size: 52px;
    font-weight: 600;
}


.section4-bottom-left {
    position: relative;
    z-index: 3;
    background: url(../imgs/steps\ bg\ shape.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: left;
}

.section4-bottom-left img {
    height: 100%;
    width: 100%;
}

.section4-bottom {
    margin-top: 1vmax;
}

.section4-bottom-rigth {
    padding-right: 8vmax;
}




.section4-bottom-rigth .col-md-12 {
    display: flex;
    align-items: flex-start;
    gap: 2vmax;
    padding-bottom: 3vmax;
    position: relative;
}

.section4-bottom-rigth .col-md-123::before {
    content: "";
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 2.2vmax;
    border-left: 1px solid #0074b33f;
    z-index: -1;
}

.section4-bottom-rigth .col-md-12 span {
    background-color: rgba(84, 204, 241, 0.741);
    padding: .3vmax 1vmax;
    border-radius: 50%;
    font-weight: 700;
    font-size: 22px;
    transition: .25s;
}

.section4-bottom-rigth .col-md-12:hover span {
    background-color: #34a8cb;
}

@media only screen and (max-width: 600px) {
    .section4 {
        margin-top: 5vmax;
    }

    .section4-top h2 {
        font-size: 24px;
        padding: 0 1vmax;
    }

    .section4-top h2 span {
        font-size: 30px;
        font-weight: 700;
    }

    .section4-bottom-rigth {
        padding: 0 3vmax;
    }

    .section4-bottom-rigth .col-md-12 {
        display: flex;
        align-items: flex-start;
        gap: 2vmax;
        padding-bottom: 3vmax;
        position: relative;
    }

    .section4-bottom-rigth .col-md-12 h4 {
        font-size: 16px;
        font-weight: 700;
    }

    .section4-bottom-rigth .col-md-12 p {
        font-size: 14px;
        margin-top: 1.5vmax;
    }

    .section4-bottom-rigth .col-md-12 span {
        padding: .3vmax 1.5vmax;
    }

    .section4-bottom-rigth .col-md-123::before {
        left: 4vmax;
    }
}

/* section5 */
.section5 {
    background: url(../imgs/helpyouimage.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center top 5%;
    padding: 4vmax 0 2vmax 0;
    width: 100%;
    position: relative;
    z-index: 2;
    margin-top: -8vmax;
}



.section5-overly {
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    background-color: #3cc6f0b8;
    z-index: -1;
}

.section5 .row {
    padding: 0 8vmax;
}



.section5-left {
    text-align: center;
    color: white;
}

.section5-left h2 {
    font-size: 56px;
    font-weight: 600;
    margin-bottom: 1vmax;
}

.section5-left p {
    padding: 0 4vmax;
}



.section5-right {
    padding: 0 5vmax;
}



.section5-right .section5-box {
    background-color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 30px;
    border: 1px solid black;
}

.section5-box-img {
    border: 1px dotted red;
    border-radius: 50%;
    padding: .3vmax;
    margin-top: -3vmax;
}

.section5-box-img img {
    background-color: #3CC6F0;
    height: 5vmax;
    border-radius: 50%;
    padding: .5vmax;
    width: 100%;
}

.section5-box h3 {
    font-weight: 600;
    margin-top: 1vmax;
    color: #2D2B83;
}

.section5-box h2 {
    margin-top: .8vmax;
    font-weight: 800;
}

.section5-box a {
    text-decoration: none;
    color: black;
    font-weight: 700;
    padding: .5vmax 1.5vmax;
    background-color: #3cc6f0;
    border-radius: 20px;
    margin-bottom: 2vmax;
    box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.189);
    border: 1px solid transparent;
    transition: .25s;
    font-size: 20px;
}

.section5-box a:hover {
    background-color: transparent;
    border: 1px solid black;
    color: black;
}

.section5-box-range {
    width: 100%;
    padding: 0 2vmax;
    margin-top: 2vmax;
    margin-bottom: 2vmax;
}

.section5-box-range label {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-weight: 700;
    font-size: 20px;
    color: #2D2B83;
}

.slider-container {
    width: 100%;
    max-width: 600px;
    margin: 20px auto;
    text-align: center;
    /* margin-top: 3vmax; */
    /* margin-bottom: 2vmax; */
}


@media only screen and (max-width: 768px)

{
    .lp2_footer-top{text-align:left!important;
    }
}


@media only screen and (max-width: 600px) {
    .section5 {
        padding: 2vmax;
        margin-top: initial;
    }

    .section5 .row {
        padding: initial;
    }

    .section5-left h2 {
        font-size: 34px;
        font-weight: 600;
        margin-bottom: 1vmax;
    }

    .section5-left p {
        padding: 0;
        font-size: 14px;
    }

    .section5-right {
        padding: 2vmax;
        margin-top: 5vmax;
    }

    .section5-right .section5-box {
        border-radius: 20px;
    }

    .section5-box-img {
        margin-top: -5vmax;
        padding: .5vmax;
    }

    .section5-box-img img {
        height: 8vmax;
        padding: .8vmax;
        width: 9vmax;
    }

    .section5-box h3 {
        margin-top: 1vmax;
        font-size: 18px;
    }

}

.slider {
    -webkit-appearance: none;
    width: 100%;
    height: 18px;
    border-radius: 20px;
    background: linear-gradient(to right, #0074b7 0%, #0074b7 20%, #fff 20%, #fff 100%);
    outline: none;
    border: 2px solid #333;
    position: relative;
    z-index: 2;
}

/* Track fill using JavaScript */
.slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    height: 40px;
    width: 10px;
    position: relative;
    z-index: 3;
    cursor: pointer;
    background: url(../imgs/slide\ bar.png);
    background-size: contain;
    background-repeat: no-repeat;
    /* background-color: red; */
}

.slider::-moz-range-thumb {
    height: 30px;
    width: 16px;
    background: red;
    border: 2px solid red;
    border-radius: 50%;
    cursor: pointer;
}

.range-labels {
    display: flex;
    justify-content: space-between;
    padding-top: 10px;
    font-weight: bold;
    color: #2c1e8e;
    font-size: 1.2rem;
}

/* section6 */


.section6 {
    padding: 4vmax 8vmax 0 8vmax;
    /* padding: 0 8vmax; */
    background: url(../imgs/review\ g\ shapes.png);
    background-size: contain;
    background-position: top right;
    background-repeat: no-repeat;
}

.section6-bottom {
    margin-top: 3vmax;
}

.section6-bottom .card-box-body {
    padding: 1vmax;
    height: 100%;
}

.section6-bottom .card-box {
    background-color: #00cad833;
    padding: 1vmax;
    border-radius: 10px;
    box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.132);
    /* height: 17vmax; */
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
    transition: .25s;
}

.section6-bottom .card-box:hover {
    background-color: #00CAD8;
}

.section6-bottom .card-box .se6-bot-cd-start {
    display: flex;
    align-items: center;
    gap: .2vmax;
    font-size: 28px;
    color: #ff5a00;
}

.section6-bottom .card-box p {
    margin-top: 1vmax;
    margin-bottom: 1vmax;
    font-size: 14px;
}

.section6-bottom .riv-namw {
    display: flex;
    align-items: center;
    gap: 1vmax;
}

.section6-bottom .riv-namw img {
    height: 3vmax;
    border-radius: 50%;
    object-fit: cover;
}

@media only screen and (max-width: 600px) {

    .section6 {
        padding: 4vmax 2vmax 0 2vmax;
    }

    .section6-bottom {
        margin-top: 3vmax;
    }

    .section6-bottom .card-box-body {
        padding: 0 1vmax;
        height: 100%;
    }

    .section6-bottom .card-box {
        padding: 2vmax;
        height: 30vmax;
    }



    .section6-bottom .card-box p {
        margin-top: 1vmax;
        margin-bottom: 1vmax;
        font-size: 12px;
    }

    .section6-bottom .riv-namw img {
        height: 4vmax;
        border-radius: 50%;
        object-fit: cover;
    }

    .section6-bottom .riv-namw h6 {
        font-size: 12px;
    }
}

/* section7 */

.section7 {
    margin-top: 7vmax;
    padding: 0 8vmax;
}



.section7 .col-md-6 img {
    height: 100%;
    width: 100%;
}

.why-choose-left {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    gap: 3vmax;
}
.chooseimg{
    display: none;
}

.phone {
    display: none;
}

.why-choose-left div h5 {
    color: #0073b3;
    font-weight: 600;
    font-size: 18px;
}

.why-choose-left div p {
    margin-top: 1vmax;
    padding-right: initial;
    text-align: justify;
}

.why-choose1St {
    margin-left: -6vmax;
    margin-top: -0.2vmax;
}

.why-choose3St {
    margin-left: -6vmax;
}

.why-choose2St {
    margin-left: -1vmax;
}
.section7 .section7-h2 {
    display: none;
}

@media only screen and (max-width: 600px) {
    .section7 {
        margin-top: 7vmax;
        padding: 0 2vmax;
    }

    .phone {
        display: initial;
    }
    .section7 .section7-h2{
        display: initial;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .desktop {
        display: none;
    }

    .why-choose-left {
        margin-top: 5vmax;
    }
    .why-choose-left div{
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 1vmax;
        box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.139);
        padding: 2vmax;
        border-radius: 10px;
    }
    .why-choose-left div p{
        text-align: center;
    }

    .why-choose1St {
        margin-left: initial;
        margin-top: initial;
    }

    .why-choose3St {
        margin-left: initial;
    }

    .why-choose2St {
        margin-left: initial;
    }
    .chooseimg{
        display: initial;
        background-color: red;
        width: 10vmax !important;
        height: 10vmax !important;
    }
}


/* section8 */


.section8 {
    margin-top: 7vmax;
    padding: 0 8vmax;
    background: url(../imgs/map.png);
    background-size: contain;
    background-position: bottom;
    /* background-color: red; */
}


.section8-bottom {
    margin-top: 3vmax;
}

.section8-bottom .accordion-item {
    margin-bottom: 1vmax;
    border-radius: 10px;
}

.section8-bottom .accordion-button {
    border-radius: 10px;
    box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.356);
}

.section8-bottom .accordion-collapse {
    box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.356);
    border-radius: 0 0 10px 10px;
}

.section8-bottom-rigth img {
    width: 90%;
}

@media only screen and (max-width: 600px) {
    .section8 {
        margin-top: 7vmax;
        padding: 0 2vmax;
        background: url(../imgs/map.png);
        background-size: contain;
        background-position: bottom;
        /* background-color: red; */
    }

    .section8-bottom-rigth {
        display: none;
    }
}

/*footer*/
.lp2_footer {
  background-color: #060638;
  color: #ffffff;
  padding-top: 3rem;
  padding-bottom: 2rem;
  font-family: 'Arial', sans-serif;
}

.lp2_footer-logo {
  height: 50px;
}

.lp2_footer-description {
  font-size: 16px;
  line-height: 1.6;
  color: #ffffff;
  margin-bottom: 0;
}

.lp2_footer-heading {
  font-size: 16px;
  font-weight: 600;
  color: #00cfff;
  margin-bottom: 1rem;
}

.lp2_footer-link {
  display: block;
  font-size: 16px;
  color: #ffffff;
  margin-bottom: 0.5rem;
  text-decoration: none;
}

.lp2_footer-link:hover {
    color: #00cfff;
    text-decoration: none;
}

.lp2_footer-disclaimer {
  font-size: 12px;
  color: #c2c2c2;
  margin-bottom: 1rem;
  line-height: 1.5;
}

.lp2_footer-link-highlight {
  color: #00cfff;
  text-decoration: none;
}

.lp2_footer-link-highlight:hover {
  text-decoration: underline;
}

.lp2_footer-top {
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}
/*/footer*/