@import url('https://fonts.googleapis.com/css2?family=Josefin+Sans:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;1,100;1,200;1,300;1,400;1,500;1,600;1,700&display=swap');

@font-face {
    font-family: 'Larken_bold';
    src: url('../font/Larken\ Extra Bold.ttf') format('.ttf');
    font-style: normal;
    font-weight: bold;
}

@font-face {
    font-family: 'Fontawesome';
    src: url('../font/fontawesome-webfont.ttf');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Fontawesome';
    src: url('../font/fontawesome-webfont.woff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Fontawesome';
    src: url('../font/fontawesome-webfont.woff2');
    font-weight: normal;
    font-style: normal;
}

:root {
    --dark-blue: #011C50;
    --black: #000;
    --white: #fff;
    --light-cyan: #f2fbfc;
    --border-color: #ced4da;
    --grey: #666;
    --form-text-color: #8b8b8b;
}

*,
body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Josefin Sans', sans-serif;
}

a {
    text-decoration: none;
}

a:hover {
    color: inherit;
}

h1 {
    font-size: 60px;
}

h2 {
    font-size: 48px;
}

h3 {
    display: inline-block;
    background: var(--dark-blue);
    padding: 10px 30px;
    border-radius: 35px;
    font-weight: 700;
    font-size: 18px;
    text-transform: uppercase;
    margin-bottom: 30px;
    color: var(--white);
}

h4 {
    font-size: 24px;
    font-weight: 700;
}

p {
    font-size: 17px;
    color: rgba(0, 0, 0, 50%);
}

ul,
ol,
li {
    list-style: none;
    padding: 0;
    margin: 0;
}

.container-fluid {
    max-width: 1500px;
    border-radius: 70px;
    background: var(--light-cyan);
    padding-left: 0;
    padding-right: 0;
}

input:focus,
button:focus {
    outline: none;
    box-shadow: none !important;
}

input[type=number]::-webkit-outer-spin-button,
input[type=number]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}


/*===================top-head======================*/

.top-head {
    padding-top: 22px;
    transition: all .5s;
}

.top-head.fixed-header {
    position: fixed;
    top: 0px;
    width: 100%;
    z-index: 99;
    padding-top: 0;
}

.head-content {
    padding: 10px 20px;
    border-radius: 50px;
    width: 100%;
    background-color: var(--dark-blue);
    box-shadow: 0px 19px 55px rgba(0, 0, 0, 8%);
    align-items: center;
}

.logo a {
    font-size: 34px;
    color: var(--dark-blue);
    font-family: 'Larken_bold';
    font-weight: 900;
    line-height: 40px;
}

.logo a img {
    width: 45px;
}

.logo span {
    text-transform: uppercase;
    font-size: 16px;
    color: var(--white);
}

.hamburger-menu-button {
    width: 40px;
    height: 40px;
    padding: 6px;
    display: block;
    position: relative;
    z-index: 100;
    background-color: transparent;
    box-sizing: content-box;
    border: none;
    text-indent: 100%;
    color: transparent;
    white-space: nowrap;
    cursor: pointer;
    overflow: hidden;
}

.hamburger-menu-button-open {
    top: 50%;
    margin-top: -1px;
    left: 50%;
    margin-left: -12px;
}

.hamburger-menu-button-open,
.hamburger-menu-button-open::before,
.hamburger-menu-button-open::after {
    position: absolute;
    width: 28px;
    height: 3px;
    background: var(--white);
    border-radius: 4px;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

.hamburger-menu-button-open::before,
.hamburger-menu-button-open::after {
    left: 5px;
    content: "";
    margin: 2px 0;
}

.hamburger-menu-button-open::before {
    top: 6px;
}

.hamburger-menu-button-open::after {
    bottom: 6px;
}

.hamburger-menu-button-close {
    background: transparent;
    transform: rotate(180deg);
}

.hamburger-menu-button-close::before {
    transform: translateY(-10px) rotate(45deg);
}

.hamburger-menu-button-close::after {
    transform: translateY(6px) rotate(-45deg);
}

.ham-menu {
    position: absolute;
    margin-top: 25px;
    width: 300px;
    overflow: hidden;
    left: 0;
    z-index: 999;
}

.ham-menu ul {
    transform: translateX(-110%);
    background-color: var(--white);
    transition: all 0.5s ease-in-out;
    display: grid !important;
    height: 100%;
    margin: 0;
    padding: 50px;
    margin-top: 12px;
}

.ham-menu.on ul {
    transform: translateX(0px);
    background: var(--dark-blue) !important;
}

.ham-menu ul li {
    display: inline-block;
    margin-bottom: 15px;
}

.ham-menu ul li a,
.footer_sec .footer_menu li>a {
    color: var(--black);
    font-size: 20px;
    transition: 0.5s ease-in-out;
    position: relative;
    font-weight: 400;
    line-height: 24px;
    transition: all 0.2s ease-in-out;
}

.ham-menu ul li a.active {
    font-weight: 700;
    color: var(--white);
}

.ham-menu ul li a:hover,
.footer_sec .footer_menu li>a:hover {
    color: var(--dark-blue);
}

.ham-menu ul li a:hover {
    color: var(--white) !important;
}


/*------------------old header----*/

.nav-menu {
    height: 100%;
}

.nav-menu ul {
    height: 100%;
    margin: 0;
    padding: 0;
    align-items: center;
}

.nav-menu ul li {
    display: inline-block;
    margin-left: 38px;
}

.nav-menu ul li a {
    color: rgba(255, 255, 255, 50%);
    font-size: 16px;
    transition: 0.5s ease-in-out;
    position: relative;
    font-weight: 400;
    line-height: 24px;
}

.nav-menu ul li a:hover {
    color: var(--white);
}

.nav-menu ul li.link .active,
.nav-menu ul li.link a.libown {
    color: var(--white);
    position: relative;
    font-weight: 700;
    transition: 0.5s ease-in-out;
}

.nav-menu ul li.link a:hover::before,
.nav-menu ul li.link a.active::before,
.nav-menu ul li.link a.libown::before {
    content: '';
    position: absolute;
    width: 7px;
    height: 7px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--white);
    border-radius: 50%;
    bottom: -12px;
    opacity: 1;
}

.nav-menu .border-link a,
.ham-menu .border-link {
    border: 2px solid var(--white);
    padding: 6px 30px;
    border-radius: 30px;
    color: var(--white) !important;
    text-align: center;
}

.nav-menu .border-link a,
.ham-menu .border-link a {
    color: var(--white) !important;
    font-size: 16px;
    line-height: 22px;
    font-weight: 400;
}

.ham-menu .border-link a {
    color: #fff !important;
}

.ham-menu .border-link {
    border: 2px solid var(--white);
}

.dropdown-name li {
    margin-left: 0 !important;
    display: block !important;
}

.dropdown-name li .dropdown-item {
    color: var(--dark-blue) !important;
    font-weight: 400 !important;
    font-size: 13px !important;
    padding: 6px 0;
    line-height: 18px;
}

.dropdown-name {
    position: absolute;
    opacity: 0;
    visibility: hidden;
}

.dropdown-name li:last-child {
    border-top: 1px solid rgba(0, 0, 0, 13%);
}

.dropdown-tab {
    position: relative;
    z-index: 9;
}

.dropdown-tab:hover {
    border: 2px solid transparent;
    border-radius: 0;
}

.dropdown-tab .dropdown-ta .dropdown-name {
    position: absolute;
    opacity: 0;
    visibility: hidden;
    left: 0;
    transition: 0.3s ease-in-out;
    height: 0;
}

.dropdown-tab:hover .dropdown-name {
    opacity: 1;
    visibility: visible;
    left: 0;
    background: var(--white);
    top: 0;
    z-index: 0;
    padding-top: 33px;
    height: 102px;
    width: 100%;
    padding-left: 5px;
    padding-right: 5px;
    z-index: -1;
    border: 2px solid var(--dark-blue);
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.149);
    border-radius: 22px;
    transition: 0.3s ease-in-out;
}

ul.dropdown-name::after {
    content: '';
    position: absolute;
    left: 0;
    top: 32px;
    width: 100%;
    height: 1.2px;
    background: var(--dark-blue);
}

.dropdown-tab span img {
    width: 15px;
}


/*banner section css*/

.hero-content-section {
    padding: 50px 0 100px;
}

.hero-content-section h1 {
    font-family: 'Larken_bold';
    font-weight: 800;
    margin-bottom: 30px;
}

.hero-content-section p {
    color: rgba(0, 0, 0, 50%);
    max-width: 600px;
}

.hero-content-section h1>span {
    color: var(--dark-blue);
}

.hero-content-section .img-content img {
    width: 100%;
    object-fit: cover;
}

.hero-content-section .btn-yard {
    margin-top: 30px;
    display: flex;
    justify-content: space-between;
    max-width: 377px;
    flex-wrap: wrap;
}

.hero-content-section .btn-yard a {
    display: inline-block;
    background: var(--dark-blue);
    padding: 10px 20px;
    border-radius: 43px 43px 43px 12px;
    font-size: 20px;
    font-weight: 400;
    color: var(--white);
}

.hero-content-section .help_sec {
    padding: 0;
}


/*Feature section css*/

.feature_sec {
    padding: 60px 0;
}

.feature_sec h2 {
    text-align: center;
    margin-bottom: 70px;
}

.feature_sec h2>span {
    color: var(--dark-blue);
}

.feature_sec .feature_img {
    position: relative;
    z-index: 9;
    margin-bottom: 30px;
}

.feature_sec .feature_img:before {
    content: "";
    width: 220px;
    height: 220px;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    border-radius: 100%;
    background: var(--white);
    margin: 0 auto;
    margin-bottom: 55px;
    z-index: -1;
}

.feature_sec .feature_img img {
    width: 100%;
    height: 220px;
    object-fit: contain;
}

.feature_sec .feature_block p {
    color: rgba(0, 0, 0, 50%);
}


/*Help section css*/

.help_sec {
    padding: 70px 0;
}

.help_sec .help_block {
    margin-top: 50px;
}

.help_sec .help_block h2 {
    margin-bottom: 16px;
}

.help_sec .help_block h2>span {
    color: var(--dark-blue);
}

.help_sec .help_block p {
    color: rgba(0, 0, 0, 50%);
    max-width: 520px;
}

.help_sec .help_img {
    position: relative;
    text-align: right;
    padding: 0 40px;
}

.help_sec .help_img img {
    height: 100%;
    width: auto;
    max-height: 560px;
}

.help_sec .help_btn {
    margin-top: 40px;
    display: flex;
    justify-content: space-between;
    max-width: 440px;
    flex-wrap: wrap;
}

.help_sec .help_btn a {
    display: inline-block;
    background: var(--dark-blue);
    padding: 10px 20px;
    border-radius: 43px 43px 43px 12px;
    font-size: 20px;
    font-weight: 500;
    color: var(--white);
}

.help_sec .help_btn a.border_clr {
    border: 1px solid var(--dark-blue);
    background: transparent;
    color: var(--dark-blue);
}

.list-style ul {
    display: block;
    padding-left: 15px;
}

.list-style li {
    margin-top: 6px;
    color: rgba(0, 0, 0, 0.5);
    list-style-type: disc;
}


/*Testimonial sec css*/

.testimonial_sec {
    padding: 60px 0;
    margin-top: 80px;
}

.testimonial_sec {
    position: relative;
}

.testimonial_sec:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: var(--light-cyan);
    z-index: -1;
}

.testimonial_sec h2 {
    max-width: 400px;
    margin: 0 auto;
    margin-bottom: 50px;
}

.testimonial_sec h2>span {
    color: var(--dark-blue);
}

.testimonial_sec .testi_itmes h4 {
    margin-bottom: 25px;
}

.testimonial_sec .testi_itmes p {
    font-size: 20px;
    font-weight: 500;
}

.testimonial_sec .testi_itmes .testi_img {
    height: 70px;
    width: 70px;
    border-radius: 100%;
    overflow: hidden;
    margin-right: 30px;
}

.testimonial_sec .testi_itmes .testi_img img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.testimonial_sec .testi_itmes .testi_content h6 {
    font-size: 20px;
    font-weight: 700;
}

.testimonial_sec .testi_itmes .testi_content p {
    margin-bottom: 0;
    font-size: 16px;
    font-weight: 500;
}

.testimonial_sec .testi_itmes .testi_inner {
    background: var(--white);
    padding: 50px;
    border-radius: 35px;
    margin-bottom: 70px;
    box-shadow: 0px 33px 61px rgb(0 0 0 / 8%);
    height: 80%;
}

.testimonial_sec .slick-track {
    margin: 0 -15px;
}

.testimonial_sec .testi_itmes {
    padding: 0 15px;
}

.testimonial_sec .testi_arrow {
    display: flex;
    justify-content: center;
}

.testimonial_sec .testi_arrow .slick-arrow {
    width: 80px;
    height: 80px;
    border-radius: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--white);
    border: none;
    margin: 0 7px;
}

.testimonial_sec .testi_arrow .slick-arrow:hover {
    background: var(--dark-blue);
    color: var(--white);
}

.testimonial_sec .testi_arrow .slick-arrow svg {
    width: 40px;
    height: 40px;
}


/*Gallery Section css*/

.gallery_sec {
    padding: 70px 0;
}

.gallery_sec h2 {
    margin-bottom: 30px;
}

.gallery_sec h2>span {
    color: var(--dark-blue);
}

.gallery_sec .image_gallery {
    display: grid;
    grid-gap: 20px;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    grid-auto-rows: 400px;
    grid-auto-flow: dense;
}

.gallery_sec .image_gallery .images {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 15px;
    background: var(--light-cyan);
}

.gallery_sec .image_gallery .images img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery_sec .image_gallery .images.double {
    grid-column: span 2;
}


/*Contact section css*/

.contact_sec {
    margin: 80px 0;
}

.contact_sec .contact_img {
    position: relative;
    text-align: center;
    margin-top: -40px;
}

.contact_sec .contact_img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    max-height: 492px;
}

.contact_sec .contact_content {
    background: var(--white);
    border-radius: 70px;
    padding: 60px 50px;
    margin: -40px 0;
    box-shadow: 0px 33px 61px rgb(0 0 0 / 8%);
}

.contact_sec .contact_content h2 {
    font-size: 38px;
    margin-bottom: 30px;
}

.contact_sec .contact_content h2>span {
    color: var(--dark-blue);
}

.contact_sec .contact_content .form-group {
    margin-bottom: 15px;
}

.contact_sec .contact_content input {
    border: 1px solid var(--border-color);
    border-radius: 0;
    height: 50px;
    line-height: 50px;
}

.contact_sec .contact_content input::placeholder {
    font-size: 16px;
}

.contact_sec .contact_submit_btn {
    display: inline-block;
    background: var(--dark-blue);
    padding: 15px 40px;
    border-radius: 43px 43px 43px 12px;
    font-size: 20px;
    color: var(--white);
    border: none;
    font-weight: 500;
    margin-top: 20px;
}


/*App screenshot section csss*/

.app_section {
    padding: 60px 0;
    background: var(--light-cyan);
}

.app_section h2 {
    margin-bottom: 30px;
}

.app_section h2>span {
    color: var(--dark-blue);
}

.app_section .slick-track {
    margin: 0 -15px;
}

.app_section .screen_items {
    padding: 0 15px;
}

.app_section .testi_arrow {
    display: flex;
    justify-content: center;
    margin-top: 60px;
}

.app_section .testi_arrow .slick-arrow {
    width: 80px;
    height: 80px;
    border-radius: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--white);
    border: none;
    margin: 0 7px;
}

.app_section .testi_arrow .slick-arrow:hover {
    background: var(--dark-blue);
    color: var(--white);
}

.app_section .testi_arrow .slick-arrow svg {
    width: 40px;
    height: 40px;
}


/*Footer section css*/

.footer_sec .footer_social {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 30px 0;
    border-bottom: 1px solid #d7d7d7;
    max-width: 470px;
    margin: 0 auto;
}

.footer_sec .footer_social a.callandmain {
    font-size: 20px;
    font-weight: 400;
    margin: 0 10px;
    color: var(--black);
    position: relative;
}

.footer_sec .footer_social p>a {
    width: 65px;
    height: 65px;
    border-radius: 100%;
    border: 1px solid #d7d7d7;
    font-size: 24px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #000;
}

.footer_sec .footer_social p>a:hover {
    background: #f2fbfc;
}

.footer_social p a img {
    height: 27px;
}

.footer_sec .footer_social.detail {
    border-bottom: none;
}

.footer_sec .footer_social.detail p {
    padding: 0 30px;
    margin: 0;
}

.footer_sec .footer_social.detail p:first-child:after {
    content: "";
    position: absolute;
    right: 0;
    top: 0;
    width: 1px;
    height: 25px;
    background: #000;
}

.footer_sec .footer_menu {
    display: flex;
    justify-content: center;
    align-items: center;
    border-bottom: 1px solid #d7d7d7;
    padding-bottom: 30px;
}

.footer_sec .footer_menu li {
    display: inline-block;
    margin: 0 30px;
}

.footer_sec .footer_menu li>a::before {
    content: '';
    position: absolute;
    width: 7px;
    height: 7px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 50%;
    background-color: var(--dark-blue);
    bottom: -12px;
    transition: 0.5s ease-in-out;
    opacity: 0;
}

.footer_sec .footer_menu li>a:hover::before {
    opacity: 1;
}

.footer_sec .copyright_text {
    padding-top: 40px;
    padding-bottom: 20px;
    text-align: center;
}

.footer_sec .copyright_text p {
    color: var(--dark-blue);
    font-size: 20px;
    position: relative;
    font-weight: 400;
}

#tsparticles {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: url(style.css);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: 50% 50%;
    top: 0;
    z-index: -1;
}


/*  register page css  */

.container.bg {
    width: 100%;
    border-radius: 70px;
    padding-left: 0;
    padding-right: 0;
}

.register_sec {
    padding: 50px 0;
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}


.register_sec h2 {
    font-size: 35px;
    margin-bottom: 35px;
    color: var(--dark-blue);
}

.register_sec h2>span {
    color: var(--dark-blue);
}

.register_sec .form_fill {
    width: 100%;
    height: 100%;
    padding: 45px;
}

.register_sec .form-control {
    padding: 12px 20px;
    width: 100%;
    border-radius: 0;
    font-size: 16px;
    font-weight: 400;
    color: var(--black);
}

.register_sec .form-control::placeholder {
    font-size: 16px;
    font-weight: 400;
    color: var(--form-text-color);
}

.register_sec .form-control:focus {
    border-color: var(--border-color);
}

.register_sec .form-check-label {
    display: block;
    color: var(--black);
}

.register_sec .form-check-label:nth-child(2) {
    color: var(--grey);
}

.register_sec .form-check-input {
    border-radius: 0;
    border: 1px solid 1px solid #88888859;
}

.register_sec .input-group-append .btn,
.register_sec .input-group-append .btn.active {
    margin: 10px;
    margin-right: 0;
    background: var(--dark-blue);
    border: 1px solid var(--dark-blue);
    color: var(--white);
}

.register_sec .input-group-append .btn:focus {
    outline: 0;
    box-shadow: none;
}

.register_sec .submit_btn {
    display: inline-block;
    background: var(--dark-blue);
    padding: 15px 40px;
    border-radius: 43px 43px 43px 12px;
    font-size: 20px;
    color: var(--white);
    border: none;
    font-weight: 400;
    margin-top: 20px;
}

.submit_btns {
    display: inline-block;
    background: var(--dark-blue);
    padding: 15px 40px;
    border-radius: 43px 43px 43px 12px;
    font-size: 20px;
    color: var(--white);
    border: none;
    font-weight: 400;

    margin-top: 20px;
}

.submit_btns a {
    color: #fff;
}

.register_sec .eye_password {
    position: relative;
}

.register_sec .eye_icon {
    position: absolute;
    right: 27px;
    top: 18px;
}

.register_sec .login_box {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 40px;
    flex-wrap: wrap;
}

.login_box>p,
.register_sec p {
    color: var(--black);
    font-size: 18px;
    font-weight: 400;
}

.login_box>p a,
.register_sec .text-end a {
    color: var(--dark-blue);
    text-decoration: none;
    font-weight: 700;
}

.login_box>p a:hover,
.register_sec .text-end a:hover {
    text-decoration: underline;
}

.slick-slide {
    margin: 0 10px;
}


/*navbar button 991 upper*/

.hamburger-menu-button,
.ham-menu {
    display: none;
}


/*================feature-sec-new=====================*/

.feature-sec-new {
    padding: 70px 0;
    background: var(--light-cyan);
}

.img-content-box {
    background: var(--white);
    padding: 20px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    box-shadow: 0 5px 15px -5px rgb(0 0 0 / 7%);
    height: 100%;
}

.owner-slider .col-lg-6 {
    margin-top: 30px;
}

.feature-box {
    width: 40%;
}

.feature-box img {
    border-radius: 5px;
    width: 100%;
    height: 200px;
    object-fit: cover;
    object-position: top;
}

.box-content {
    Width: 60%;
    padding-left: 25px;
    color: var(--dark-blue);
}

.box-content p {
    line-height: 24px;
    color: rgba(0, 0, 0, 50%);
}

.feature-sec-new .text-center h2 span {
    color: var(--dark-blue);
}

.xyz img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    transform-origin: left;
}

.xyz {
    visibility: hidden;
    position: relative;
    /* max-width: 500px; */
    overflow: hidden;
}

.xyz-text {
    overflow: hidden;
}


/*===============mobile-feature=======================*/

.mobile-feature {
    display: none;
}


/*==========owner-f-mobile=============================*/

.owner-f-mobile {
    display: none;
}


/*=============border-btn===============*/

.border-btn {
    border: 1px solid var(--dark-blue);
    background: transparent !important;
    color: var(--dark-blue) !important;
}


/* ===============plan-section ============== */

.plan_sec {
    padding: 60px 0;
}

.plan_sec h2>span {
    color: var(--dark-blue);
}

.plan_sec h2 {
    text-align: center;
    margin-bottom: 70px;
}

.plan_sec h4 span {
    background-color: var(--dark-blue);
    width: 35px;
    height: 35px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border-radius: 5px;
    margin-right: 12px;
}

.plan_sec .blue h4 span {
    background-color: var(--bs-white);
}

.plan_sec p {
    margin-top: 25px;
    margin-bottom: 30px;
}

.plan_sec p span {
    font-size: 50px;
    color: var(--dark-blue);
    font-weight: 300;
}

.charges {
    padding: 20px 20px 50px 20px;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    background: #f2fbfc;
}

.blue {
    background-color: var(--dark-blue);
    color: var(--bs-white);
    border-radius: 5px;
}

.blue h2,
.blue p,
.blue p span {
    color: var(--bs-white);
}

.trial_btn {
    text-align: center;
    margin-top: auto;
}

.trial_btn .submit_btn {
    display: inline-block;
    background: var(--dark-blue);
    padding: 15px 40px;
    border-radius: 43px 43px 43px 12px;
    font-size: 20px;
    color: var(--white);
    border: none;
    font-weight: 400;
    margin-top: 40px;
}

.blue .submit_btn {
    background-color: var(--bs-white);
    color: var(--dark-blue);
}

.plan_sec .charges ul li {
    color: var(--form-text-color);
    font-size: 17px;
    margin-bottom: 15px;
    padding-left: 35px;
    position: relative;
}

.plan_sec .charges.blue ul li {
    color: var(--white);
}

.plan_sec .charges ul li::before {
    position: absolute;
    content: "";
    top: unset;
    left: 0;
    background-image: url(../img/currect-blue.svg);
    background-repeat: no-repeat;
    background-size: cover;
    width: 24px;
    height: 24px;
}

.plan_sec .charges.blue ul li::before {
    background-image: url(../img/currect-white.svg);
}


/* PRELOADER CSS */

.page-loader {
    width: 100%;
    height: 100vh;
    position: fixed;
    background: var(--dark-blue);
    z-index: 1000;
    top: 0;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}


/* SPINNER ANIMATION */

.spinner {
    position: relative;
    width: 80px;
    height: 80px;
    background-color: var(--light-cyan);
    border-radius: 100%;
    -webkit-animation: sk-scaleout 1s infinite ease-in-out;
    animation: sk-scaleout 1s infinite ease-in-out;
}

@-webkit-keyframes sk-scaleout {
    0% {
        -webkit-transform: scale(0);
    }

    100% {
        -webkit-transform: scale(1);
        opacity: 0;
    }
}

@keyframes sk-scaleout {
    0% {
        -webkit-transform: scale(0);
        transform: scale(0);
    }

    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: 0;
    }
}

.modal_btn {
    display: inline-block;
    background: var(--dark-blue);
    padding: 10px 20px;
    border-radius: 43px 43px 43px 12px;
    font-size: 20px;
    font-weight: 400;
    color: var(--white);
}

.about_detail_sec {
    padding-top: 50px;
}

.slick-track {
    display: flex !important;
}

.slick-slide {
    height: auto;
}

.hidden {
    display: none;
}

.content.feature-content a {
    color: var(--dark-blue) !important;
}

.content.feature-content a:hover {
    text-decoration: underline;
}

#showmap .centerMarker {
    position: absolute;
    background: url(../img/map-img.png) no-repeat;
    top: calc(50% - 2px);
    left: calc(50% - 7px);
    z-index: 1;
    margin-left: -10px;
    margin-top: -34px;
    height: 42px;
    width: 35px;
    cursor: pointer;
    background-size: contain;
}

#locationmodal .close {
    background: none;
    border: none;
    font-size: 23px;
}

#locationmodal .common_btn {
    display: inline-block;
    background: var(--dark-blue);
    padding: 8px 15px;
    border-radius: 43px 43px 43px 12px;
    font-size: 20px;
    color: var(--white);
    border: none;
    font-weight: 400;
    margin-top: 20px;
}

#locationmodal .common_btn_2 {
    display: inline-block;
    background: none;
    padding: 8px 15px;
    border-radius: 43px 43px 43px 12px;
    font-size: 20px;
    color: var(--dark-blue);
    border: none;
    font-weight: 400;
    margin-top: 20px;
    border: 1px solid var(--dark-blue);
}

.pac-container {
    z-index: 9999;
}

.error {
    color: red;
}

.password_icon_view {
    position: relative;
}

.password_icon {
    position: absolute;
    right: 30px;
    top: 18px;
}

.password_icon i {
    cursor: pointer;
}

.sign_img {
    height: 100%;
}

.sign_img img {
    height: 100%;
    object-fit: cover;
}

.bg-blue {
    background: linear-gradient(90deg, rgb(8, 50, 129) 30%, rgba(1, 28, 80, 1) 70%);
    border-radius: 10px;
    border-top-left-radius: 0;
    height: calc(100% - 65px);
}

.bg-blue.p-2 {
    display: inline-block;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    border-top-left-radius: 10px;
    height: 64px;
}

.sub_plan .heading {
    color: #fff;
    text-transform: uppercase;
    padding: 10px;
    margin-bottom: 0;
    font-weight: 600;
    font-size: 22px;
    display: flex;
    padding: 10px 20px;
    line-height: 27px;
    border-radius: 10px;
    width: 235px;
    justify-content: space-between;
    align-items: baseline;
}

.head_flex {
    display: flex;
    padding: 0 20px;
    border-bottom: 1px solid #fff;
}

.head_flex img {
    max-width: 80px;
    margin-right: 20px;
}

.basic {
    background: linear-gradient(262.57deg, #2D1305 -0.53%, #A96838 22.95%, #975E1A 55.52%, #5A3D18 72.73%, #54301C 83.84%);
}

.standard {
    background: linear-gradient(262.57deg, #E1E1E1 -17.51%, rgba(131, 131, 131, 0.56) 22.93%, rgba(183, 183, 183, 0.93) 67.87%, rgba(152, 152, 152, 0.971094) 84.97%, #E5E5E5 111.53%);
}

.gold {
    background: linear-gradient(262.57deg, #FFD702 -17.51%, rgba(255, 214, 0, 0.71) 10.61%, rgba(255, 153, 1, 0.578724) 19.96%, rgba(255, 184, 0, 0.93) 78.81%, #5B3700 99.37%);
}

.plan ul li {
    padding: 5px 10px;
    color: #fff;
    display: flex;
    align-items: center;
}

.plan ul li input {
    margin-right: 15px;
}

.plan ul li p {
    margin-bottom: 0;
    color: #fff;
}

.plan ul li span {
    font-size: 32px;
    color: #fff;
    font-weight: 500;
}

.plan ul li label {
    width: 100%;
}

.plan ul li label small {
    font-size: 16px;
}

.sub_plan .row {
    margin-left: -5px;
    margin-right: -5px;
    row-gap: 10px;
}

.sub_plan .row>* {
    padding-left: 5px;
    padding-right: 5px;
}

.subscription_plan {
    padding-top: 70px;
}

.plan.details ul li span {
    margin-right: 10px;
    font-size: 16px;
}

.plan.details ul li:last-child,
.plan.details ul li:last-child span {
    color: #fff;
}

.plan.details ul li {
    border-bottom: 1px solid #fff;
    padding: 7px 45px;
    position: relative;
}

.plan.details ul li::before {
    content: "";
    background-image: url(../img/check-mark.svg);
    position: absolute;
    left: 20px;
    top: 10px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 16px;
    width: 15px;
}

.text-14 {
    font-size: 14px;
}

.plan_btn .border_clr {
    border: 1px solid var(--white);
    background: transparent;
    color: var(--white);
    padding: 10px 20px;
    border-radius: 43px 43px 43px 12px;
    font-size: 20px;
    font-weight: 500;
    display: inline-block;
}