/* ================== Root ================== */
:root {
    --yellow: #FCF28A;
    --white: #fff;
    --black: #000;
    --light-black: #1A1917;
    --blue: #3D4BA3;
    --black-text: #262B35;
    --Inter: 'Inter', sans-serif;
}

body,
html {
    /*overflow-x: hidden;*/
    font-family: var(--Inter) !important;
    font-size: 15px;
    font-weight: normal;
    color: var(--black-text);
}

a {
    text-decoration: none;
    color: var(--black-text);
}

ul {
    padding-inline-start: 0;
    list-style: none;
    margin: 0;
}

/* ================== Scroll Bar ================== */
::-webkit-scrollbar-track {
    border-left: 1px solid #e0e0e0;
    margin: 0px;
}

::-webkit-scrollbar {
    width: 10px;
    background-color: #fff;
}

::-webkit-scrollbar-thumb {
    border-radius: 25px;
    background-color: #d2d3d5;
}

.form-control:focus {
    box-shadow: 0 0 0 0.1rem rgb(61 75 163 / 32%) !important;
}

/* ================== Button Style ================== */
.btn_primary,
.btn_primary_yellow {
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--white);
    border: 1.5px solid var(--blue);
    border-radius: 30px;
    padding: 13px 38px;
}

.btn_primary {
    background-color: var(--blue);
    padding: 19px 38px;
}

.btn_primary:hover {
    background-color: var(--white);
    color: var(--blue);
    transition: 0.5s all;
}

.btn_primary_yellow {
    border-color: var(--yellow);
    color: var(--blue);
    background-color: var(--yellow);
    font-weight: 600;
}

.btn_primary_yellow:hover {
    background-color: var(--white);
    border-color: var(--white);
    transition: 0.5s all;
}

.btn_primary_small {
    font-size: 15px;
    font-weight: 600;
    border-radius: 30px;
    background-color: var(--blue);
    color: var(--white);
    padding: 10px 37px;
    border: 1.5px solid var(--blue);
}

.txt-blue {
    color: var(--blue) !important;
}

.para_content {
    font-size: 18px;
    line-height: 160%;
}

h1 {
    font-size: 42px;
    font-weight: bold;
    line-height: 130%;
}

h3 {
    font-size: 18px;
    font-family: 'Poppins', sans-serif;
    font-weight: bold;
}

h6 {
    font-size: 18px;
    font-weight: 600;
    margin: 0;
}

.section-head {
    color: #1C57C9;
    font-weight: bold;
    line-height: 140%;
    font-size: 15px;
    letter-spacing: 9px;
    text-transform: uppercase;
}

/* Back to Top Section*/
#back_to_top {
    display: inline-block;
    background: url(../img/bottom_to_top.svg) no-repeat 50% #dce7f7;
    background-size: 28px;
    width: 50px;
    height: 50px;
    text-align: center;
    border-radius: 8px;
    position: fixed;
    bottom: 30px;
    right: 30px;
    transition: background-color .3s,
        opacity .5s, visibility .5s;
    opacity: 0;
    visibility: hidden;
    z-index: 1000;
}

#back_to_top:hover {
    cursor: pointer;
}

#back_to_top:active {
    background-color: #555;
}

#back_to_top.show {
    opacity: 1;
    visibility: visible;
}

/* Header Section */
.navbar > .container-fluid{
    max-width: 1440px !important;
}
.top-links ul{
    display: flex;
    align-items: center;
    justify-content: end;
    gap: 15px;
}
.top-links ul li a.contact-link{
    background: #E3EBFD;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.top-links ul li a.contact-link:hover{
    background:var(--yellow);
}
.menu-wrap{
    display: flex;
    align-items: center;
    gap: 15px;
}
header .top-header {
    background-color: var(--blue);
    padding: 12px 0px;
}

header .top-header .header-info {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

header .header-info .contanct-info {}

header .header-info .contanct-info ul {
    display: flex;
    align-items: center;
}

header .header-info .button-info ul {
    display: flex;
    align-items: center;
}

header .header-info .contanct-info ul .box {
    display: flex;
    align-items: center;
    margin-right: 45px;
}

header .header-info .contanct-info ul .box .logo {
    background: #E3EBFD;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
}

header .header-info .contanct-info .content span {
    font-size: 8px;
    color: var(--white);
    font-family: 'Poppins', sans-serif;
    display: block;
    padding-bottom: 5px;
    font-weight: 300;
}

header .header-info .contanct-info .content h6 {
    font-size: 13px;
    color: #B0DAF8;
    font-weight: bold;
}

header .header-info .contanct-info .content h6 a {
    color: #B0DAF8;
}

header .header-info .button-info li:not(:last-child) {
    padding-right: 40px;
}

header nav .navbar-nav li a {
    font-size: 14px;
    /* color: #9A9EA6 !important; */
    color:#E3EBFD !important;
    font-family: 'Poppins', sans-serif;
    text-transform: uppercase;
    font-weight: 600;
    padding: 10px 25px;
}
header nav .navbar-nav > li >  a:hover{
    color:var(--yellow) !important;
}

header nav .navbar-nav .dropdown-menu a{
    color: #9A9EA6 !important;
}

header nav .navbar-nav .nav-item:not(:last-child) {
    padding: 0 19px;
}

header nav .navbar-brand img {
    width: 100%;
    max-width: 100%;
    height: auto;
}

header nav.navbar {
    padding: 20px 15px;
    /* background: #fff !important; */
    background: var(--blue);
}

header nav .navbar-nav li a.dropdown-toggle:after {
    background: url(../img/menu-drop-down.svg) no-repeat 50% 100%;
    background-size: 12px;
    border: unset;
    width: 12px;
    height: 12px;
    position: relative;
    left: 5px;
    top: 2px;
}

.navbar-light .navbar-nav .nav-link:hover {
    color: var(--blue) !important;
    transition: 0.5s all;
}

header nav .navbar-nav .dropdown-menu {
    box-shadow: 0px 8px 64px rgba(0, 0, 0, .08);
    border-radius: 15px;
    border: unset;
}

header nav .navbar-nav li a.dropdown-item:hover {
    background: #3d4ba314;
    color: var(--blue) !important;
}

header .navbar-toggler-icon {
    background: url(../img/mobile-menu.svg) no-repeat 50% 50% !important;
    background-size: 25px !important;
    filter: invert(1);
}

@media(max-width:1450px){
    header nav .navbar-brand img{
        max-width: 250px;
    }
    header nav .navbar-nav .nav-item:not(:last-child) {
        padding: 0 5px;
    }
    .top-links .btn_primary_yellow{
        padding: 12px 20px 10px;
    }
}
@media(max-width:1200px){
    .menu-wrap{
        flex-direction: row-reverse;
    }
    .navbar-collapse{
        display: block !important;
        position: absolute;
        top: 100%;
        left: -100%;
        width: 100%;
        height: calc(100vh - 100px);
        background: var(--blue);
        z-index: 9;
        transition: all 0.5s ease;
    }
    .navbar-collapse.show{
        left: 0;
    }
    .navbar-nav{
        display: flex;
        align-items: center;
        justify-content: center;
        height: 100%;
        overflow-y: auto;
    }
    .navbar-nav .nav-link{
        text-align: center;
    }
}

@media(max-width:767px){
    header nav .navbar-brand img {
        max-width: 180px;
    }
    header .top-header{
        padding: 0;
    }
    .top-links a.login{
        width: 48px;
        height: 48px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 20px;
    }
}
@media(max-width:600px){
    .navbar > .container-fluid{
        flex-direction: column-reverse;
        align-items: flex-start;
        gap: 20px;
    }
    .menu-wrap {
        flex-direction: row-reverse;
        justify-content: center;
        width: 100%;
    }
    .menu-wrap .navbar-toggler{
        position: absolute;
        bottom: 30px;
        right: 30px;
    }
    .navbar-collapse{
        display: block !important;
        position: absolute;
        top: 100%;
        left: -100%;
        width: 100%;
        height: calc(100vh - 160px);
    }
}
/* Banner Section */



.banner {
    padding: 140px 15px;
    font-family: 'Poppins', sans-serif;
    background: url(../img/banner.svg) no-repeat 100% 100% !important;
    background-size: cover !important;
}

.banner .inner-content h1 {
    font-size: 43px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    margin-bottom: 14px;
}

.banner .inner-content span {
    color: var(--black);
    font-size: 15px;
    margin-bottom: 4px;
}

.banner .inner-content h1 span {
    font-size: 43px;
}

.banner .inner-content input {
    height: 58px;
    border-radius: 10px;
    background-color: var(--white);
    border: unset;
}

.banner .inner-content .form-field {
    display: flex;
    width: 45%;
    margin-bottom: 20px;
}

.banner .inner-content input:not(:last-child) {
    margin-right: 30px;
}

.banner .inner-content input::placeholder {
    color: #BAB9BA;
}

.banner {
    position: relative;
    z-index: 2;
}
.banner::before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    height: 100%;
    width: 100%;
    background-color: rgba(0,0,0,0.2);
    content: " ";
    z-index: -1;
}
.banner .inner-content span {
    color: #fff;
    font-weight: 600;
}
.banner .inner-content h1 .txt-blue {
    color: #fcf28a;
}

/* Features Section */
.features {
    padding: 60px 0 0 0;
}

.features .inner-content {}

.features .inner-content .para_content {
    color: #606C84;
}

.features .inner-content .occasion-box {
    margin-top: 40px;
}

.features .inner-content .occasion-box li {
    float: left;
    width: 50%;
    padding-right: 20px;
    margin-bottom: 50px;
}

.features .inner-content .occasion-box ul:after {
    content: '';
    display: block;
    clear: both;
}

.features .occasion-box .single-bx img {
    width: auto;
    max-width: 100%;
    height: auto;
    margin-bottom: 35px;
}

.features .occasion-box .single-bx h6 {
    margin-bottom: 20px;
}

.features .occasion-box .single-bx p {
    color: #606C84;
    line-height: 160%;
    max-width: 90%;
}

.features .inner-content img.side-photo {
    width: 100%;
    height: auto;
    max-width: 100%;
    margin-top: 60px;
}

/* Contact Section */
.contact .contact-banner img {
    width: 100%;
    max-width: 100%;
    height: auto;
}

.contact {
    position: relative;
    margin-bottom: -150px;
}

.contact .contact-banner {
    position: relative;
    top: -150px;
    z-index: -1;
}

.contact .inner-content img {
    width: auto;
    max-width: 100%;
    height: auto;
}

/* Services Section */
.services {
    background: rgb(255, 255, 255);
    background: linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(236, 240, 246, 1) 100%);
}

.services .moving-bx img {
    width: auto;
    max-width: 100%;
    height: auto;
}

.services .moving-bx {
    margin: 25px 0;
}

.services .moving-card .nav-pills {
    justify-content: space-between;
}

html,
body {
    overflow-x: hidden !important;
}

.swiper-container {
    overflow: initial !important;
}

.services .moving-card .nav-pills .nav-link,
.services .moving-card .swiper1 .swiper-slide {
    border: 1px solid rgb(237 238 241);
    background-color: #fff;
    font-size: .875rem;
    padding: 0.5rem 1.5rem;
    font-weight: 500;
    width: fit-content !important;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.services .moving-card .swiper1 .swiper-wrapper {
    justify-content: space-between;
    align-items: center;
    transform: translate3d(0px, 0px, 0px) !important;
}

.services .moving-card .nav-pills .nav-link.active,
.services .moving-card .nav-pills .nav-link.active:hover,
.services .moving-card .nav-pills .show>.nav-link,
.services .moving-card .swiper1 .swiper-slide.selected,
.services .moving-card .swiper1 .swiper-slide.selected:hover {
    color: #fff !important;
    background-color: #3d4ba3 !important;
}

.services .moving-card .nav-pills .nav-link:hover,
.services .moving-card .swiper1 .swiper-slide:hover {
    background: rgb(246, 246, 248)
}

.services .moving-card .nav-pills .nav-link.active img,
.services .moving-card .nav-pills .show>.nav-link img,
.services .moving-card .swiper1 .swiper-slide.selected img {
    filter: brightness(0) invert(1);
}

.swiper2 .swiper-wrapper {
    padding: 20px;
    /* height: fit-content !important; */
}

.services .moving-card .swiper2 .swiper-slide.swiper-slide-active {
    width: 90% !important;
}

.services .moving-card .swiper2 .swiper-slide .swiper-tab-cnt {
    background: #f9f9f9;
    border-radius: 10px;
    padding: 20px;
    height: fit-content;
    margin-right: 20px;
    box-shadow: 0px 8px 80px rgba(0, 0, 0, .12);
    overflow-x: hidden;
}

.services .moving-card .swiper2 .swiper-slide.swiper-slide-next {
    padding: 20px;
    opacity: .5;
}

.services .moving-card .swiper2 .swiper-slide.swiper-slide-prev {
    opacity: 0;
}

.services .moving-card {}

.services .moving-card li {
    /* float: left;
    width: 33.3%; */
}

.services .moving-card .nav-pills button>img,
.services .moving-card .swiper1 .swiper-slide img {
    width: 30px;
    height: auto;
    margin-right: 10px;
}

.services .moving-card .swiper2 .swiper-slide .swiper-tab-cnt .icon-title {
    display: flex;
    align-items: center;
    font-size: 14px;
    color: #374151;
}

.services .moving-card .swiper2 .swiper-slide .swiper-tab-cnt img {
    /* height: 1rem;
    stroke: rgb(55, 65, 81); */
    width: 25px;
    height: auto;
    margin-right: 15px;
}

.services .moving-card .swiper2 .swiper-slide .swiper-tab-cnt h3 {
    font-size: 36px;
    color: #000;
    margin: 1.5rem 0 !important;
}

.services .moving-card .swiper2 .swiper-slide .swiper-tab-cnt p {
    font-size: 18px;
    color: #555657;
}

.services .moving-card .swiper2 .swiper-slide .swiper-tab-cnt .swiper-sub-cnt a {
    font-size: 16px;
    color: #000;
    margin-top: auto
}

.services .moving-card .swiper2 .swiper-slide .swiper-tab-cnt .swiper-sub-cnt a svg {
    font-size: 16px;
    stroke: #000;
}

.services .moving-card .swiper2 .swiper-slide .swiper-tab-cnt .swiper-sub-cnt {
    display: flex;
    flex-direction: column;
    margin-bottom: 1.5rem;
}

.services .moving-card .swiper2 .swiper-slide .swiper-tab-cnt .swiper-sub-cnt-right {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    height: 100%
}

.services .moving-card .swiper2 .swiper-slide .swiper-tab-cnt .swiper-sub-cnt-right img {
    width: 100%;
}

.services .moving-card .swiper2 .swiper-slide .swiper-tab-cnt:hover {
    cursor: pointer;
}

@media(min-width:768px) {
    .services .moving-card .swiper2 .swiper-slide .swiper-tab-cnt img.w-100 {
        position: absolute;
        right: -55%;
        width: 145% !important;
    }

    .services .moving-card .swiper2 .swiper-slide .swiper-tab-cnt .swiper-sub-cnt {
        margin-bottom: 0;
    }
}

@media(min-width:992px) {
    .services .moving-card .swiper2 .swiper-slide.swiper-slide-active {
        width: 70% !important;
    }
}

@media(max-width:1200px) {
    .services .moving-card .swiper1 .swiper-wrapper {
        flex-wrap: wrap;
        justify-content: flex-start;
    }

    .services .moving-card .swiper1 .swiper-slide {
        margin-bottom: 1rem;
    }
}

@media(max-width:768px) {
    .services .moving-card .swiper1 .swiper-slide {
        width: 47% !important;
        justify-content: center;
    }

    .services .moving-card .swiper1 .swiper-wrapper {
        justify-content: space-between;
    }

    .services .moving-card .swiper2 .swiper-slide .swiper-tab-cnt img.w-100 {
        margin-bottom: 1.5rem;
    }

    .services .moving-card .swiper2 .swiper-slide .swiper-tab-cnt h3 {
        font-size: 30px;
    }
}

.services .moving-card ul:after {
    content: '';
    display: block;
    clear: both;
}

.services .moving-card li .card {
    box-shadow: 0 6px 48px rgb(0 0 0 / 10%);
    border: unset;
    background-color: var(--white);
    border-radius: 16px;
    display: flex;
    align-items: center;
    flex-direction: row;
    padding: 20px 15px;
    margin: 10px;
    transition: 0.5s all;
}

.services .moving-card li .card img {
    width: auto;
    max-width: 100%;
    height: auto;
    margin-left: 10px;
}

.services .moving-card li .card h6 {
    color: #262B35;
    margin-left: 35px;
}

.services .moving-card li a:hover .card {
    transform: scale(1.05);
    transition: 0.5s all;
}

.services .moving-card li a:hover {
    text-decoration: unset;
}

.services .moving-card li a:hover .card h6 {
    color: var(--blue);
}


/* Testimonials Section */
.testimonials {
    margin-top: 70px;
    padding-bottom: 50px;
}

.testimonials .inner-content {}

.testimonials .inner-content .main-box {
    border-radius: 24px;
    background-color: var(--white);
    box-shadow: 0 0px 48px rgb(0 0 0 / 6%);
    padding: 30px;
    text-align: left;
    position: relative;
    padding-right: 40px;
}

.testimonials .inner-content .main-box p {
    margin: 0;
    font-size: 20px;
    color: #262B35;
}

.testimonials .inner-content .owl-item {
    border-radius: 24px;
    padding: 30px;
}

.testimonials .inner-content .owl-item .item {}

.testimonials .inner-content .author-box h6 {
    color: #262B35;
    margin-bottom: 10px;
}

.testimonials .inner-content .author-box span {
    font-size: 15px;
    color: #606C84;
}

.testimonials .inner-content .author-box {
    margin-top: 40px;
}

.testimonials .inner-content .main-box .profile-icon {
    width: auto;
    max-width: 100%;
    height: auto;
    position: absolute;
    top: -20px;
    right: -20px;
}

.testimonials .inner-content .main-box .quo-icon {
    width: auto;
    max-width: 100%;
    height: auto;
    position: absolute;
    bottom: 35px;
    right: 40px;
}

.testimonials .carousel-block {
    margin-top: 80px;
}

.testimonials .owl-nav .owl-prev,
.testimonials .owl-nav .owl-next {
    width: 42px;
    height: 42px;
}

.testimonials .owl-nav .owl-prev {
    background: url(../img/testimo-left-arrow.svg) no-repeat 50% !important;
    background-size: 42px !important;
}

.testimonials .owl-nav .owl-next {
    background: url(../img/testimo-right-arrow.svg) no-repeat 50% !important;
    background-size: 42px !important;
}

.testimonials .owl-nav .owl-prev span,
.testimonials .owl-nav .owl-next span {
    display: none;
}

.testimonials .carousel-block .owl-stage-outer {
    position: relative;
}

.testimonials .carousel-block .owl-prev {
    position: absolute;
    top: 44%;
    left: 22px;
    margin: 0;
    transform: translate(-50%, -50%);
}

.testimonials .carousel-block .owl-stage-outer .owl-stage {
    display: flex;
    align-items: center;
}

.testimonials .carousel-block .owl-next {
    position: absolute;
    top: 44%;
    right: -13px;
    margin: 0;
    transform: translate(-50%, -50%);
}

.testimonials .carousel-block .owl-dots .owl-dot.active span {
    background: #1C57C9;
}

.testimonials .carousel-block .owl-dots .owl-dot span {
    width: 12px;
    height: 12px;
    background: rgb(96 108 132 / 21%);
    margin: 0 8px;
}

/* Contact Section */
.contact {
    padding-top: 50px;
}

.contact h1 {
    margin-bottom: 20px;
}

.contact .section-head {
    padding-top: 30px;
}

.contact .form-group {}

.contact .form-group label {
    font-size: 16px;
    margin-bottom: 12px;
}

.contact .form-group input {
    height: 44px;
    color: #CCCCCC;
    border-radius: 3px;
    padding: 10px 15px;
}

.contact .form-group select {
    height: 44px;
    color: #CCCCCC;
    border-radius: 3px;
    padding: 10px 15px;
    color: #262B35;
    background: url(../img/menu-drop-down.svg) no-repeat 97% 50%;
    background-size: 14px;
    appearance: unset;
}

.contact .form-group textarea {
    height: 96px;
    margin-bottom: 35px;
}

.contact .form-group input::placeholder,
.contact .form-group textarea::placeholder,
.contact .form-group select::placeholder {
    color: #BAB9BA;
}

.contact .form-group input {
    color: var(--black-text);
}

.btn_primary_small:hover {
    background-color: var(--white);
    color: var(--blue);
    transition: 0.5s all;
}

.contact-form-box {
    max-width: 450px;
}

/* Footer Section */
.footer {
    background-color: #1A1918;
    color: #8C8C8C;
    padding: 50px 0px;
    font-family: 'Poppins', sans-serif;
}

.footer .join-mail-block .content-bx p {
    font-size: 14px;
    line-height: normal;
    margin-top: 10px;
}

.footer .join-mail-block .call-action {
    margin-top: 0;
}

.footer .join-mail-block .call-action ul {
    display: flex;
    align-items: start;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 20px;
}

.footer .join-mail-block .call-action ul li .bx {
    display: flex;
    align-items: center;
}

.footer .join-mail-block .call-action ul li .bx .content span {
    display: block;
    font-size: 12px;
    margin-bottom: 3px;
}

.footer .join-mail-block .call-action .content a {
    font-size: 16px;
    color: var(--white);
    font-weight: 300;
}

.footer .join-mail-block .call-action ul li .bx .logo {
    margin-right: 12px;
}

.footer .join-mail-block .call-action ul li:not(:last-child) {
    margin-right: 50px;
}

.footer .join-bx h3 {
    color: var(--white);
    margin-bottom: 12px;
}

.footer .join-bx p {
    font-size: 14px;
}

.footer .mail-send input {
    height: 50px;
    border-radius: 30px;
    background: url(../img/footer-sms.svg) no-repeat 20px 50% transparent;
    border: 1px solid #363636;
    padding: 10px 115px 10px 45px;
    font-size: 12px;
    background-size: 15px;
    color: var(--white);
}

.footer .mail-send .btn.btn_primary_small {
    position: absolute;
    top: 6px;
    right: 6px;
    padding: 7px 30px;
    font-size: 10px;
    height: 40px;
    background-color: #0064AB;
}

.footer .mail-send .form-group {
    position: relative;
}

.footer .mail-send .btn.btn_primary_small:hover {
    background-color: var(--white);
}

.footer .mail-send {
    margin-top: 30px;
}

.footer .join-mail-block .content-bx a img {
    width: auto;
    max-width: 100%;
    height: auto;
    margin-bottom: 10px;
}

.footer .footer-menu .menu-list ul {
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer .footer-menu .menu-list ul a {
    color: #8C8C8C;
    font-size: 14px;
    padding: 0 15px;
}

.footer .footer-menu .menu-list {
    margin-top: 40px;
    margin-bottom: 50px;
}

.footer .footer-menu .copy-right {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer .copy-right .lft ul {
    display: flex;
    align-items: center;
}

.footer .copy-right .lft ul a {
    margin: 0 11px;
}

.footer .footer-menu .copy-right .rgt h6 {
    font-size: 14px;
    color: #8C8C8C;
    font-weight: 300;
}

.footer .copy-right .lft ul li:first-child a {
    margin-left: 0;
}

.footer .copy-right .lft ul li a:hover img {
    transform: scale(1.11111);
    transition: 0.5s all;
}

.footer .footer-menu {
    border-top: 1px solid #363636;
    margin-top: 50px;
}

/* 19/11/2024 */
.footer-logo-sec{
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 30px;
}
.foot-menu-head h3{
    color: var(--white);
    margin-bottom: 12px;
}
.foot-menu-list ul li{
    padding-bottom: 5px;
}
.foot-menu-list ul li a{
    color: #8C8C8C;
    text-decoration: none;
}
.foot-menu-list ul li a:hover{
    color: var(--blue);
}
@media(max-width:768px){
    .footer .mail-send {
        margin-top: 00px;
    }
}
@media(max-width:575px){
    .footer .mail-send {
        margin-top: 00px;
    }
    .footer-logo-sec{
        display: block;
}
}
/* Custom CSS */
.banner.inner-banner {
    background: #fff;
}

.banner.inner-banner .inner-content .form-field {
    width: 100%
}

.banner.inner-banner .inner-content .form-field input {
    border: 1px solid #ccc;
}

.inner-pages .single-bx {
    background-image: linear-gradient(.299turn, #edeef1, #fafafa);
    padding: 1.5rem;
    border-radius: 1.25rem;
}

.features.inner-pages .occasion-box .single-bx img {
    width: 35px;
    height: auto;
    margin-bottom: 0rem;
    margin-right: 10px;
}

.features.inner-pages .single-bx h6 {
    margin-bottom: 0.7rem;
}

.features.inner-pages .occasion-box .single-bx p {
    max-width: 100%;
}

.features.inner-pages .occasion-box .d-flex {
    align-items: center;
    justify-content: flex-start;
    margin-bottom: 15px;
}

.features.inner-pages .occasion-box .d-flex span {
    font-size: 14px;
    color: #555657;
}

/* 15-03-2024 added  */
.get-qut {
    background: #3d4ba3;
    padding: 2rem 3rem;
    border-radius: 25px;
    overflow-x: hidden;
}

.get-qut h2 {
    font-size: 44px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    margin-bottom: 14px;
    color: #fff;
}

.get-qut p {
    font-size: 18px;
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    color: #d1d5db;
}

.get-qut .form-control::placeholder {
    color: rgb(158, 165, 209) !important;
}

.get-qut .form-control {
    background: transparent;
    color: #fff !important;
    margin-bottom: 0.75rem;
    border-color: #cfd2e8;
    border-color: rgb(158, 165, 209);
    min-height: 45px;
    border-radius: 0.75rem;
}

.how-it-work img {
    object-fit: contain !important;
    height: 125px;
}

.how-it-work h6 {
    font-size: 30px;
    font-weight: 600;
    color: #111827;
    margin: 2rem 0 1rem;
}

.how-it-work p {
    font-size: 18px;
    font-weight: 400;
    color: #555657;

}

.banner.inner-banner img {
    width: 100%;
}

.inner-pages .single-bx {
    margin-bottom: 1rem;
}

.get-qut img {
    width: 100%;
}

@media(min-width:992px) {
    .banner.inner-banner img {
        width: 1019px;
    }

    .get-qut img {
        width: fit-content;
    }
}

/* 26-03-2024 added  */
section.banner.inner-banner.cities {
    /* background: url(https://lugg.com/_next/image?url=%2Fimages%2Fbuilding-gradient.webp&w=1536&q=75); */
    padding: 90px 0 !important;
}

section.banner.inner-banner.cities.city-single-page {
    position: relative;
    /* background: url(https://lugg.com/_next/image?url=%2Fimages%2Fcities%2Fatlanta%2Fbackground_2x.jpg&w=1536&q=75); */
}

section.banner.inner-banner.cities.city-single-page::before {
    background-image: linear-gradient(180.59deg, hsla(0, 0%, 100%, .24), #fff 80%);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    content: ""
}

.cities-inner a:hover {
    text-decoration: none;
    color: inherit;
}

.city-card {
    display: flex;
}

.city-card>img {
    width: 64px;
    height: 40px !important;
    border-radius: 10px;
    margin-right: 15px;
}

.city-card-cnt {
    align-self: center;
}

.city-card h3 {
    font-size: 18px;
    font-weight: 400;
    color: #000;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.city-card h3 svg {
    width: 22px;
    height: 22px;
    fill: #a1a2a4;
}

.city-card p {
    color: #555657;
    font-size: 14px;
    font-weight: 400;
}

.place-card.place-card-large,
.gm-style .place-card-large {
    display: none;
}

@media (min-width: 992px) {
    .city-card>img {
        width: 124px;
        height: 80px !important;
    }

    .city-card h3 {
        font-size: 24px;
    }
}

@media(max-width:992px) {
    .city-card p {
        display: none;
    }
}



/* 28-03-2024 added  */
.pbmit-heading-subheading-style-1 {
    text-align: left !important;
}

.button1 {
    background-color: white;
    color: black;
    border: 1px solid #dadada;
    border-radius: 5px;
    width: 100%;
    height: 60px;
}

.button1>span {
    font-size: 12px;
    display: block;
    color: #9A9EA6;
}

.button1>span:last-child {
    font-size: 14px;
    font-weight: 600;
    color: #000;
}

.button1:hover {
    background-color: #3d4ba3 !important;
    color: white;
}

.button1:hover span:last-child,
.button1:hover span {
    color: white;
}

.button1_time {
    background-color: white;
    width: 100%;
    border: 1px solid #dadada;
    border-radius: 5px;
    color: #000;
    font-size: 14px;
    font-weight: 600;
}

.button1_time:hover {
    background-color: #3d4ba3;
    color: white;
}

.pbmit-heading-subheading-style-1 {
    text-align: left !important;
    margin-bottom: 2rem;
}

.pbmit-heading-subheading-style-1 h3.pbmit-subtitle {
    font-weight: 600;
    margin-bottom: 1rem;
    color: #000;
}

.pbmit-heading-subheading-style-1 h5 {
    color: #9A9EA6;
    font-weight: 400;
    font-size: 14px;
    margin-bottom: 10px;
}

.pbmit-heading-subheading-style-1 h5 b {
    display: inline-block;
    font-weight: 500;
    color: #000;
    font-size: 16px;
    line-height: 24px;
}

.target button.active {
    background: #3d4ba3;
}

.target button.active span {
    color: #fff;
}

.target button.active,
.selecttime button.active {
    background: #3d4ba3;
    color: #fff;
}

.existing-client-img {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    align-items: center;
}

.existing-client-img .btn-danger.delete-image {
    margin-left: 2px;
}

.existing-client-img .image-container {
    margin-right: 15px;
}


/* 19/11/2024 */
.pickup-address,
.drop-address {
    width: 100%;
    position: relative;
    z-index: 1;
    margin-right: 20px;
}
.pickup-arrow,
.drop-arrow {
    position: absolute;
    z-index: 2;
    top: 16px;
    left: 10px;
    content: " ";
    height: 20px;
    width: 20px;
}
.pickup-arrow svg path,
.drop-arrow svg path{
    fill: var(--blue);
}
.pickup-address input,
.drop-address input {
    padding-left: 40px;
}
.feature-circle-img{
    background-color: var(--bg-color);
    height: 55px !important;
    width: 55px !important;
    padding: 11px;
    border-radius: 23px;
}
.occasion-box ul li:nth-child(2) .feature-circle-img{
    padding: 15px;
}

/* SP  14.05.2024*/
/* Responsive style */
@media(max-width:991px) {
    header nav .navbar-nav .nav-item:not(:last-child) {
        padding: 0;
    }

    .banner .inner-content .form-field {
        width: 70%;
    }

    header .header-info .contanct-info ul .box {
        margin-right: 10px;
    }

    header .header-info .button-info li:not(:last-child) {
        padding-right: 10px;
    }
}

@media(max-width:767px) {
    .banner .inner-content .form-field {
        display: flex;
        width: 100%;
        margin-bottom: 20px;
    }

    header .top-header .header-info {
        flex-wrap: wrap;
        justify-content: center;
    }

    .button-info {
        margin-top: 15px;
    }
}

@media(max-width:575px) {
    .banner .inner-content .form-field {
        width: 100%;
        flex-wrap: wrap;
    }

    .banner .inner-content input:not(:last-child) {
        margin-right: 0px;
        margin-bottom: 15px;
    }
}

@media(max-width:500px) {
    .footer .join-mail-block .call-action ul {
        flex-wrap: wrap;
    }

    .footer .join-mail-block .call-action ul li:not(:last-child) {
        margin-bottom: 15px;
    }

    .button-info {
        margin-top: 0px;
    }

    header .header-info .contanct-info {
        display: none;
    }
}

.owl-carousel .owl-dots.disabled,
.owl-carousel .owl-nav.disabled {
    display: block;
}

form.delete-form {
    display: flex;
    flex-direction: row;
}

.selecttime .disabled:hover {
    background-color: #3d4ba3;
    color: #fff;
    opacity: .8;
    cursor: not-allowed;
}

.stripe-booking-heading {
    padding: 13px 16px;
    background-color: #daf4f0;
    border-radius: 4px;
}

.stripe-booking-heading h6 {
    color: #099885;
    font-size: 14px;
}
.stripe-booking-details td{
    padding: 5px 5px 5px 0px;
}
/* SP  14.05.2024*/

/* Storedelivery Page Start Here 20.11.2024 */
.features .heading-block {
    margin-bottom: 60px;
}
.features .heading-block p {
    font-size: 18px;
    font-weight: 400;
    color: #555657;
}
/* Storedelivery Page End Here */

/* Small Move Page Start Here 21.11.2024*/
.quote-pickup,
.quote-drop {
    position: relative;
}
.quote-pickup .pickup-icon,
.quote-drop .drop-icon {
    position: absolute;
    top: 10px;
    width: 20px;
    height: 20px;
    left: 10px;
}
.quote-pickup  input,
.quote-drop input {
    padding-left: 40px;
}
/* Small Move Page End Here*/
