:root {
    --primary-color: #e02401;
    --secondary-color: #120d31;
    --accent-color: #ffc226;
    --text-color: #202020;
    --white-color: #fff;
    --black-color: #000;
    --primary-font: "Oleo Script Swash Caps", cursive;
    --secondary-font: "Poppins", sans-serif
}

::-webkit-scrollbar {
    width: 9px
}

::-webkit-scrollbar-track {
    background: #fff
}

::-webkit-scrollbar-thumb {
    background: #ca1e00;
    height: 70px
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-color)
}

*,
:after,
:before {
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    margin: 0;
    padding: 0
}

:active,
:focus,
:hover {
    outline: 0 !important;
    outline-offset: 0
}

a {
    text-decoration: none
}

a,
a:active,
a:focus,
a:hover {
    color: unset
}

.row>*,
figure,
h1,
h2,
h3,
h4,
h5,
h6,
ol,
p,
ul {
    margin: 0;
    padding: 0
}

ul {
    list-style-type: none
}

html {
    font-size: 62.5%;
    scroll-behavior: unset !important
}

body,
html {
    overflow-x: hidden
}

p {
    font-family: var(--secondary-font);
    font-weight: 400;
    font-size: 1.6rem;
    line-height: 26px;
    color: #505050
}

.nav_bar {
    background: url(../images/navbar_bg.jpg) no-repeat 50%;
    background-size: cover
}

.top_nav_bar_main_scroll {
    margin-bottom: 51px
}

.top_nav_bar {
    padding: 15px 0
}

.left_top_nav_bar {
    margin: auto
}

.logo {
    width: 100%
}

.logo_mobile {
    display: none;
    text-align: end
}

.logo_mobile .logo {
    width: 40%
}

.center_top_nav_bar {
    text-align: center
}

.mobile_no {
    color: var(--primary-color);
    display: flex;
    justify-content: center;
    align-items: center;
    grid-gap: 10px;
    gap: 10px
}

.mobile_no .iconify-inline {
    font-size: 38px
}

.mobile_no h2 {
    font-family: var(--secondary-font);
    font-weight: 700;
    font-size: 3rem;
    line-height: 56px
}

.famous_indian {
    display: inline-block;
    font-family: var(--primary-font);
    font-weight: 300;
    font-size: 2.6rem;
    line-height: 38px;
    padding: 2px 20px;
    color: var(--white-color);
    background: radial-gradient(circle, #ff9f0e 0, #ff1616 200%);
    border-radius: 100px;
    animation: blink 1s infinite;
    -webkit-animation: blink 1s infinite
}

.right_top_nav_bar {
    text-align: end
}

.social_medias {
    display: inline-flex;
    align-items: center;
    grid-gap: 10px;
    gap: 10px;
    margin-bottom: 5px
}

.social_medias>h2 {
    font-family: var(--primary-font);
    font-size: 14px;
    color: var(--white-color);
    background-color: var(--secondary-color);
    padding: 3px 10px;
    border-radius: 4px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -ms-border-radius: 4px;
    -o-border-radius: 4px
}

@-webkit-keyframes blink {
    0% {
        color: var(--white-color)
    }

    50% {
        color: var(--accent-color)
    }
}

@keyframes blink {
    0% {
        color: var(--white-color)
    }

    50% {
        color: var(--accent-color)
    }
}

.social_medias>div span {
    display: inline-block;
    margin: 0 5px;
    padding: 5px;
    background-color: var(--accent-color);
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%
}

.social_medias>div span .iconify-inline {
    font-size: 28px;
    color: var(--primary-color)
}

.email_us>div {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    grid-gap: 10px;
    gap: 10px;
    color: var(--primary-color)
}

.email_us>div .iconify-inline {
    font-size: 30px
}

.email_us>div h3 {
    font-family: var(--primary-font);
    font-weight: 400;
    font-size: 2.2rem
}

.email_us h2 {
    font-family: var(--secondary-font);
    font-weight: 600;
    font-size: 1.8rem
}

.menu_bar {
    margin: 10px;
    background-color: var(--primary-color);
    box-shadow: 0 3px 10px rgb(0 0 0/20%);
    transition: all .2s ease;
    -webkit-transition: all .2s ease;
    -moz-transition: all .2s ease;
    -ms-transition: all .2s ease;
    -o-transition: all .2s ease;
    position: relative
}

.menu_bar_scroll {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
    padding: 10px 0
}

.menu_bar_inner_container ul {
    display: flex;
    justify-content: space-between;
    align-items: center
}

.menu_bar_inner_container ul li span {
    display: inline-block;
    width: 7px;
    height: 7px;
    background-color: var(--white-color)
}

.menu_bar_inner_container ul li a {
    font-family: var(--secondary-font);
    font-weight: 500;
    font-size: 1.7rem;
    line-height: 27px;
    padding: 12px 0;
    display: flex;
    align-items: center;
    grid-gap: 10px;
    gap: 10px;
    color: var(--white-color);
    transition: all .2s ease;
    -webkit-transition: all .2s ease;
    -moz-transition: all .2s ease;
    -ms-transition: all .2s ease;
    -o-transition: all .2s ease
}

.menu_bar_inner_container ul li.active a,
.menu_bar_inner_container ul li:hover a {
    color: var(--accent-color)
}

.hamburger {
    width: 30px;
    height: 25px;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    display: none
}

.hamburger span {
    width: 30px;
    height: 4px;
    background-color: var(--primary-color);
    transition: all .5s ease;
    -webkit-transition: all .5s ease;
    -moz-transition: all .5s ease;
    -ms-transition: all .5s ease;
    -o-transition: all .5s ease
}

.hero_banner1 img {
    width: 100%
}

.top_leading_images {
    position: relative;
    transform: translateX(-40px);
    -webkit-transform: translateX(-40px);
    -moz-transform: translateX(-40px);
    -ms-transform: translateX(-40px);
    -o-transform: translateX(-40px)
}

.top_leading_images img {
    width: 50%;
    margin-right: 20px
}

.top_leading_images .top_leading_bg {
    width: 80%;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    z-index: -1;
    animation: rotation 20s linear infinite;
    -webkit-animation: rotation 20s linear infinite
}

@-webkit-keyframes rotation {
    0% {
        transform: rotate(0deg);
        -webkit-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        -o-transform: rotate(0deg)
    }

    to {
        transform: rotate(1turn);
        -webkit-transform: rotate(1turn);
        -moz-transform: rotate(1turn);
        -ms-transform: rotate(1turn);
        -o-transform: rotate(1turn)
    }
}

@keyframes rotation {
    0% {
        transform: rotate(0deg);
        -webkit-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        -o-transform: rotate(0deg)
    }

    to {
        transform: rotate(1turn);
        -webkit-transform: rotate(1turn);
        -moz-transform: rotate(1turn);
        -ms-transform: rotate(1turn);
        -o-transform: rotate(1turn)
    }
}

.top_leading_content {
    text-align: center
}

.top_leading_content img {
    cursor: pointer
}

.custom_heading h3 {
    font-family: var(--primary-font);
    font-weight: 400;
    font-size: 2.8rem;
    line-height: 38px;
    color: var(--primary-color)
}

.custom_heading h2 {
    font-style: normal;
    font-weight: 700;
    font-size: 4rem;
    line-height: 56px;
    padding-bottom: 15px
}

.custom_heading h2,
.read_more {
    font-family: var(--secondary-font)
}

.read_more {
    font-weight: 500;
    font-size: 1.6rem;
    line-height: 26px;
    color: var(--primary-color)
}

.read_more:hover {
    text-decoration: underline
}

.sections_gapping {
    margin: 70px 0
}

.we_offer_top_services {
    text-align: center;
    position: relative;
    padding-top: 70px
}

.we_offer_top_services:before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    margin: auto;
    width: 100%;
    height: 55%;
    background: url(../images/top_services_bg.jpg) no-repeat 50%;
    background-size: cover;
    z-index: -1
}

.we_offer_top_services_inner_container .custom_heading h3 {
    color: var(--accent-color)
}

.we_offer_top_services_inner_container .custom_heading h2 {
    color: var(--white-color)
}

.service_card_main {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
    text-align: center;
    grid-gap: 30px;
    gap: 30px;
    margin: 40px 0
}

.view_more_btn {
    font-family: var(--secondary-font);
    font-weight: 500;
    font-size: 1.8rem;
    line-height: 30px
}

.view_more_btn:hover {
    text-decoration: underline
}

.service_card_div {
    border: 1px solid var(--white-color);
    box-shadow: 0 10px 30px rgba(0, 0, 0, .2);
    border-radius: 7px;
    -webkit-border-radius: 7px;
    -moz-border-radius: 7px;
    -ms-border-radius: 7px;
    -o-border-radius: 7px;
    background-color: var(--white-color)
}

.service_card_div:last-child {
    display: none
}

.service_card_content {
    padding: 5px 20px 15px
}

.service_card_content h2 {
    font-family: var(--secondary-font);
    font-weight: 700;
    font-size: 2.4rem;
    line-height: 39px;
    color: var(--primary-color)
}

.service_card_content p {
    padding: 0 0 15px
}

.service_card_img {
    position: relative
}

.service_card_img img {
    width: 100%
}

.call_pulse {
    width: 90px;
    height: 90px;
    background-color: var(--accent-color);
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    position: absolute;
    left: 0;
    right: 0;
    top: 70%;
    bottom: 0;
    margin: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 0 0 0 #ffc226;
    border: 7px solid var(--white-color)
}

.call_pulse .iconify-inline {
    font-size: 46px;
    color: var(--white-color)
}

.service_card_div:hover .call_pulse {
    box-shadow: 0 0 0 0 rgba(#5a99d4, .5);
    -webkit-animation: pulse 1.5s infinite;
    animation: pulse 1.5s infinite
}

@-webkit-keyframes pulse {
    0% {
        transform: scale(.9)
    }

    70% {
        transform: scale(1);
        box-shadow: 0 0 0 20px rgba(90, 153, 212, 0)
    }

    to {
        transform: scale(.9);
        box-shadow: 0 0 0 0 rgba(90, 153, 212, 0)
    }
}

@keyframes pulse {
    0% {
        transform: scale(.9)
    }

    70% {
        transform: scale(1);
        box-shadow: 0 0 0 20px rgba(90, 153, 212, 0)
    }

    to {
        transform: scale(.9);
        box-shadow: 0 0 0 0 rgba(90, 153, 212, 0)
    }
}

.why_people_choice_section {
    position: relative
}

.why_people_choice_section>.top_leading_bg {
    width: 45%;
    position: absolute;
    right: -25%;
    top: 0;
    bottom: 0;
    margin: auto;
    z-index: -1;
    animation: rotation 20s linear infinite;
    -webkit-animation: rotation 20s linear infinite
}

.why_people_choice_section .hollow_circle {
    position: absolute;
    left: -20%;
    top: 0;
    bottom: 0;
    margin: auto;
    z-index: -1
}

.why_people_choice_left {
    text-align: center
}

.why_people_choice_left>img {
    width: 100%
}

.why_people_choice_right {
    padding-left: 40px;
    text-align: center
}

.why_people_choice_right>img {
    width: 85%;
    padding-bottom: 30px
}

.why_people_choice_left_vector {
    padding: 20px 30px;
    display: grid;
    grid-gap: 10px;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr))
}

.why_people_choice_left_vector>div {
    margin: 14px
}

.why_people_choice_left_vector>div h2 {
    font-family: var(--secondary-font);
    font-weight: 600;
    font-size: 3rem;
    padding: 10px 0 5px;
    color: var(--primary-color)
}

.why_people_choice_left_vector>div h4 {
    font-family: var(--secondary-font);
    font-weight: 500;
    font-size: 1.9rem
}

.contact_form {
    border-radius: 7px;
    -webkit-border-radius: 7px;
    -moz-border-radius: 7px;
    -ms-border-radius: 7px;
    -o-border-radius: 7px;
    background-color: var(--primary-color);
    padding: 40px 30px 30px
}

.contact_form_heading {
    text-align: center;
    border-radius: 0 200px 200px 0;
    -webkit-border-radius: 0 200px 200px 0;
    -moz-border-radius: 0 200px 200px 0;
    -ms-border-radius: 0 200px 200px 0;
    -o-border-radius: 0 200px 200px 0
}

.contact_form_heading h2 {
    font-family: var(--primary-font);
    font-weight: 700;
    font-size: 3.8rem;
    line-height: 27px;
    color: var(--accent-color)
}

.contact_form_heading h3 {
    font-family: var(--secondary-font);
    font-weight: 400;
    font-size: 1.9rem;
    line-height: 32px;
    padding: 15px 0;
    color: var(--white-color)
}

.contact_form_inputs input,
.contact_form_inputs textarea {
    font-size: 1.6rem;
    font-family: var(--secondary-font);
    font-weight: 400;
    color: #505050;
    margin-bottom: 20px;
    border: 0;
    border-radius: 4px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -ms-border-radius: 4px;
    -o-border-radius: 4px;
    box-shadow: none;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    outline: none;
    padding: 14px 0 14px 15px;
    background-color: var(--white-color)
}

.contact_form_inputs textarea {
    height: 160px;
    resize: none
}

.contact_form_inputs {
    text-align: center
}

.custom_btn {
    display: inline-block;
    background-color: var(--black-color);
    border-radius: 200px;
    -webkit-border-radius: 200px;
    -moz-border-radius: 200px;
    -ms-border-radius: 200px;
    -o-border-radius: 200px
}

.custom_btn button {
    all: unset;
    font-family: var(--secondary-font);
    font-weight: 400;
    font-size: 1.6rem;
    line-height: 30px;
    padding: 12px 40px;
    color: var(--white-color)
}

.custom_btn button:focus {
    color: var(--accent-color)
}

input::-webkit-inner-spin-button,
input::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0
}

input[type=number] {
    -moz-appearance: textfield
}

.home_banner {
    text-align: center
}

.home_banner img {
    width: 100%
}

.what_people_say_section {
    position: relative
}

.what_people_say_section .hollow_circle {
    position: absolute;
    right: -20%;
    top: 0;
    bottom: 0;
    margin: auto;
    z-index: -1
}

.what_people_say_left {
    padding-right: 30px
}

.what_people_say_left img {
    width: 100%
}

.what_people_say_left img:last-child {
    margin-top: 30px
}

.what_people_say_right {
    text-align: center
}

.what_people_say_right p {
    width: 70%;
    margin: auto
}

.what_people_say_card_main .swiper {
    padding-bottom: 20px !important
}

.what_people_say_card_main .swiper-pagination {
    bottom: 0 !important
}

.what_people_say_card_main .swiper-pagination-bullet-active {
    background-color: var(--primary-color)
}

.what_people_say_card_div {
    width: 360px;
    height: 360px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 40px;
    margin: 80px auto auto;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    background-color: #e9e7fd;
    position: relative;
    z-index: 2
}

.what_people_say_card_div img {
    position: absolute;
    top: -50px;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    border: 5px solid var(--white-color)
}

.what_people_say_card_div:before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    width: calc(100% - 20px);
    height: calc(100% - 20px);
    border-radius: 50%;
    border: 1px solid var(--secondary-color);
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    z-index: -1
}

.what_people_say_card_inner p {
    padding: 5px 5px 15px;
    line-height: 25px
}

.what_people_say_card_content h2 {
    font-family: var(--primary-font);
    font-weight: 400;
    font-size: 2.8rem;
    line-height: 39px;
    color: var(--primary-color)
}

.what_people_say_card_stars .iconify-inline {
    font-size: 18px;
    margin: 0 1px;
    color: var(--accent-color)
}

.swiper-slide:nth-child(odd) .what_people_say_card_stars .iconify-inline:last-child {
    color: #acacac
}

.home_call_banner {
    text-align: center
}

.home_call_banner img {
    width: 100%
}

.home_post_inner_container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    grid-gap: 30px;
    gap: 30px
}

.home_post_inner_container img {
    width: 100%;
    margin: auto;
    border-radius: 4px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -ms-border-radius: 4px;
    -o-border-radius: 4px
}

.post_chakkar {
    animation: rotation 15s linear infinite;
    -webkit-animation: rotation 15s linear infinite
}

.asked_question_main {
    text-align: center
}

.asked_question_main .heading_main {
    margin-bottom: 40px
}

.accordion {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    padding: 15px 30px;
    width: 100%;
    border: none;
    text-align: left;
    outline: none;
    font-size: 1.8rem;
    font-family: var(--secondary-font);
    font-weight: 500;
    transition: .4s;
    margin-top: 5px;
    color: var(--white-color);
    border-radius: 7px;
    -webkit-border-radius: 7px;
    -moz-border-radius: 7px;
    -ms-border-radius: 7px;
    -o-border-radius: 7px
}

.accordian_side,
.accordion {
    background-color: var(--primary-color)
}

.accordian_side {
    position: absolute;
    left: 0;
    width: 10px;
    height: 100%
}

.accordion:after {
    content: "\002B";
    font-size: 18px;
    font-weight: 600;
    color: var(--white-color);
    transition: .4s ease;
    -webkit-transition: .4s ease;
    -moz-transition: .4s ease;
    -ms-transition: .4s ease;
    -o-transition: .4s ease
}

.asked_active:after {
    content: "\2212"
}

.panel {
    padding: 0 30px;
    text-align: start;
    background-color: #fff;
    max-height: 0;
    overflow: hidden;
    transition: max-height .2s ease-out;
    background-color: #f8f8f8
}

.panel p {
    font-size: 1.6rem;
    font-family: var(--secondary-font);
    font-weight: 400;
    line-height: 26px;
    padding: 15px 0
}

.contact_page_map,
.contact_page_map iframe {
    width: 100%;
    height: 300px
}

.footer {
    background: url(../images/footer_bg.jpg) no-repeat 50%;
    background-size: cover;
    padding: 30px 0 0
}

.footer_main3 {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    flex-wrap: wrap;
    grid-gap: 20px;
    gap: 20px;
    text-align: center
}

.footer_main3>div img {
    margin-bottom: 20px
}

.footer_services>div {
    display: flex;
    align-items: center;
    grid-gap: 10px;
    gap: 10px;
    margin-bottom: 10px
}

.footer_services>div span {
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: var(--accent-color);
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%
}

.footer_services>div h2 {
    font-family: var(--secondary-font);
    font-weight: 400;
    font-size: 1.8rem;
    line-height: 30px;
    color: var(--white-color)
}

.footer_services>div h2:hover a {
    color: var(--accent-color)
}

.footer_info>div {
    justify-content: center
}

.footer_info>div span {
    all: unset
}

.footer_info>div span .iconify-inline {
    font-size: 32px;
    color: var(--accent-color)
}

.footer_info>div h2 span {
    display: block
}

.footer_info>div {
    align-items: unset
}

.footer_info>div:last-child {
    margin: auto
}

.logo_footer {
    margin-top: 30px;
    width: 60%
}

.footer_line {
    margin: 20px 0;
    border: .5px dashed hsla(0, 0%, 100%, .7)
}

.disclaimer h2,
.disclaimer p {
    display: inline;
    color: var(--white-color)
}

.disclaimer h2 {
    font-size: 2.3rem
}

.disclaimer p {
    font-weight: 300;
    line-height: 20px
}

.copyright {
    text-align: center;
    margin-top: 20px;
    background-color: var(--primary-color)
}

.copyright h2 {
    font-size: 1.6rem;
    font-weight: 400;
    font-family: var(--secondary-font);
    line-height: 20px;
    color: var(--white-color);
    padding: 10px 0
}

.copyright h2 span:hover a {
    color: var(--accent-color)
}

.breadcrum_main {
    background: url(../images/pages_bg.jpg) no-repeat 50%;
    background-size: cover;
    padding: 60px 0
}

.breadcrum_content {
    display: flex;
    justify-content: space-between;
    align-items: center
}

.breadcrum_content h2 {
    font-weight: 600;
    font-size: 3.6rem;
    line-height: 57px
}

.breadcrum_content h2,
.breadcrum_content span {
    font-family: var(--secondary-font);
    color: var(--white-color)
}

.breadcrum_content span {
    font-weight: 400;
    font-size: 1.6rem;
    line-height: 27px
}

.breadcrum_content span .breadcrum_active {
    color: var(--accent-color)
}

.about_us_content_main {
    padding-top: 50px
}

.about_us_content_main .asked_question_section {
    text-align: center
}

.about_us_content_main .asked_question_section .container {
    all: unset
}

.about_us_content_left {
    padding-right: 30px;
    position: relative
}

.about_us_content_left>img {
    display: flex;
    margin: auto
}

.about_us_content_common h3 {
    font-family: var(--primary-font);
    font-weight: 400;
    font-size: 3rem;
    line-height: 44px;
    color: var(--primary-color)
}

.about_us_content_common h1 {
    font-size: 4.4rem;
    text-transform: uppercase
}

.about_us_content_common h1,
.about_us_content_common h2 {
    font-family: var(--secondary-font);
    font-weight: 700;
    color: var(--secondary-color)
}

.about_us_content_common h2 {
    font-size: 2.4rem;
    line-height: 36px;
    padding-bottom: 5px
}

.about_us_content_common p {
    padding: 5px 0;
    text-align: justify
}

.about_us_content_common_black p {
    display: flex;
    grid-column-gap: 10px;
    -moz-column-gap: 10px;
    column-gap: 10px
}

.about_us_content_common p .iconify-inline {
    font-size: 24px
}

.about_us_content_common img {
    width: 100%
}

.about_us_content_common {
    padding-top: 10px
}

.page_banner {
    margin: 40px 0
}

.page_banner img {
    width: 100%
}

.about_us_content_div2 {
    display: flex;
    align-items: center
}

.about_us_content_div2_left {
    padding-right: 30px
}

.about_us_content_div2_left img {
    width: 100%
}

.about_us_content_div2_right {
    position: relative
}

.about_us_content_div2_right>img {
    width: 90%;
    position: absolute;
    right: -65%;
    top: 50px;
    bottom: 0;
    margin: auto;
    z-index: -1;
    animation: rotation 20s linear infinite;
    -webkit-animation: rotation 20s linear infinite
}

.contact_info_card {
    margin-top: 55px
}

.contact_info_card>div {
    display: flex;
    align-items: center;
    grid-gap: 25px;
    gap: 25px;
    padding: 30px;
    margin: 40px 0;
    border: 1px solid var(--white-color);
    box-shadow: 0 5px 20px rgb(0 0 0/20%);
    border-radius: 7px;
    -webkit-border-radius: 7px;
    -moz-border-radius: 7px;
    -ms-border-radius: 7px;
    -o-border-radius: 7px
}

.contact_info_card>div:last-child {
    margin-bottom: 0
}

.contact_info_card>div>span {
    padding: 15px;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    background-color: var(--accent-color)
}

.contact_info_card>div .iconify-inline {
    font-size: 5rem;
    color: var(--primary-color)
}

.contact_info>h2 {
    display: inline-block;
    font-family: var(--secondary-font);
    font-size: 3.2rem;
    font-weight: 700;
    color: var(--secondary-color);
    position: relative
}

.contact_info>h2:before {
    content: "";
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 100%;
    height: 7px;
    border-radius: 20px;
    background-color: var(--primary-color);
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px
}

.contact_info_card>div>div h3 {
    font-family: var(--secondary-font);
    font-weight: 700;
    font-size: 2.4rem;
    padding-bottom: 5px;
    color: var(--primary-color)
}

.contact_info_card>div>div h2 {
    font-family: var(--secondary-font);
    font-weight: 500;
    font-size: 1.8rem;
    line-height: 26px;
    color: var(--secondary-color)
}

.btn-whatsapp-pulse {
    background: #25d366;
    color: #fff;
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 80px;
    height: 80px;
    font-size: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    border-radius: 50%;
    -webkit-animation-name: pulse_whatsapp;
    animation-name: pulse_whatsapp;
    -webkit-animation-duration: 1.5s;
    animation-duration: 1.5s;
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    z-index: 99;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%
}

@-webkit-keyframes pulse_whatsapp {
    0% {
        box-shadow: 0 0 0 0 #ffd800
    }

    80% {
        box-shadow: 0 0 0 14px rgba(37, 211, 102, 0)
    }
}

@keyframes pulse_whatsapp {
    0% {
        box-shadow: 0 0 0 0 #ffd800
    }

    80% {
        box-shadow: 0 0 0 14px rgba(37, 211, 102, 0)
    }
}

.btn-whatsapp-pulse:hover {
    -webkit-animation: unset;
    animation: unset
}

.btn-call-mob {
    background: var(--secondary-color);
    color: #fff;
    position: fixed;
    bottom: 20px;
    left: 20px;
    font-size: 46px;
    width: 80px;
    height: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    border-radius: 50%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    transform-origin: top right;
    z-index: 99;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    display: none
}

.btn-call-mob .iconify {
    animation: bellshake 1s cubic-bezier(.36, .07, .19, .97) infinite both;
    -webkit-animation: bellshake 1s cubic-bezier(.36, .07, .19, .97) infinite both
}

@-webkit-keyframes bellshake {
    0% {
        transform: rotate(0)
    }

    15% {
        transform: rotate(5deg)
    }

    30% {
        transform: rotate(-5deg)
    }

    45% {
        transform: rotate(4deg)
    }

    60% {
        transform: rotate(-4deg)
    }

    75% {
        transform: rotate(2deg)
    }

    85% {
        transform: rotate(-2deg)
    }

    92% {
        transform: rotate(1deg)
    }

    to {
        transform: rotate(0)
    }
}

@keyframes bellshake {
    0% {
        transform: rotate(0)
    }

    15% {
        transform: rotate(5deg)
    }

    30% {
        transform: rotate(-5deg)
    }

    45% {
        transform: rotate(4deg)
    }

    60% {
        transform: rotate(-4deg)
    }

    75% {
        transform: rotate(2deg)
    }

    85% {
        transform: rotate(-2deg)
    }

    92% {
        transform: rotate(1deg)
    }

    to {
        transform: rotate(0)
    }
}

.thankYou {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center
}

.thankYou h2 {
    font-size: 6rem;
    padding-bottom: 10px
}

.thankYou a {
    display: inline-block;
    text-decoration: none;
    font-family: var(--secondary-font);
    font-size: 1.6rem;
    font-weight: 500;
    padding: 14px 35px;
    background-color: var(--primary-color);
    color: #fff;
    margin-top: 15px;
    border-radius: 7px;
    -webkit-border-radius: 7px;
    -moz-border-radius: 7px;
    -ms-border-radius: 7px;
    -o-border-radius: 7px
}

.abot-new-section img {
    width: 100%
}

.abot-new-section {
    display: grid;
    grid-gap: 10px;
    grid-template-columns: 40% auto
}

.contact-new-section {
    display: grid;
    grid-gap: 10px;
    grid-template-columns: 50% auto
}

.contact-new-section img {
    width: 100%
}

@media (min-width:1400px) {

    .container,
    .container-lg,
    .container-md,
    .container-sm,
    .container-xl,
    .container-xxl {
        max-width: 1140px !important
    }
}

@media (max-width:1199px) {
    html {
        font-size: 58%
    }

    .social_medias>h2 {
        font-size: 1.6rem;
        padding: 3px 7px
    }

    .top_leading_images {
        transform: translateX(-20px);
        -webkit-transform: translateX(-20px);
        -moz-transform: translateX(-20px);
        -ms-transform: translateX(-20px);
        -o-transform: translateX(-20px)
    }

    .top_leading_images img {
        margin: unset
    }

    .what_people_say_card_main {
        margin-top: 40px
    }

    .service_card_content h2 {
        font-size: 2.4rem
    }

    .home_post_inner_container img.post_chakkar {
        grid-area: 2/1/2/1
    }

    .about_us_content_right {
        margin-top: 30px
    }
}

@media (max-width:991px) {
    .top_nav_bar_main_scroll {
        margin-bottom: 0
    }

    .left_top_nav_bar {
        display: none
    }

    .menu_bar {
        background-color: unset;
        box-shadow: unset;
        margin: 0;
        padding: 10px 0
    }

    .menu_bar_scroll {
        background-color: var(--white-color);
        box-shadow: 0 3px 10px rgb(0 0 0/20%);
        position: relative
    }

    .menu_bar_inner {
        display: flex;
        justify-content: space-between;
        align-items: center
    }

    .logo_mobile {
        display: unset
    }

    .hamburger {
        display: flex
    }

    .hamburger_clicked {
        flex-direction: row;
        justify-content: center
    }

    .hamburger_clicked span:first-child {
        transform: rotate(45deg);
        -webkit-transform: rotate(45deg);
        -moz-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
        -o-transform: rotate(45deg)
    }

    .hamburger_clicked span:last-child {
        transform: rotate(-45deg);
        -webkit-transform: rotate(-45deg);
        -moz-transform: rotate(-45deg);
        -ms-transform: rotate(-45deg);
        -o-transform: rotate(-45deg)
    }

    .hamburger_clicked span:nth-of-type(2) {
        margin-left: -60px;
        opacity: 0
    }

    ul.navbar_menus {
        flex-direction: column;
        position: absolute;
        top: 100%;
        right: 0;
        width: 100%;
        display: none;
        padding: 0 12%;
        background-color: var(--white-color);
        color: var(--primary-color);
        z-index: 999;
        box-shadow: 0 0 10px rgba(0, 0, 0, .11)
    }

    ul.navbar_menus li a {
        font-size: 1.5rem;
        color: var(--secondary-color);
        padding: 10px 0
    }

    .navbar_menus li {
        width: 100%;
        font-size: 2.2rem;
        font-weight: 800;
        border-bottom: 1px solid rgba(0, 0, 0, .11)
    }

    ul.navbar_menus_mobile {
        right: 0;
        display: flex
    }

    .menu_bar_inner_container ul li.active a,
    .menu_bar_inner_container ul li:hover a {
        color: var(--primary-color)
    }

    .menu_bar_inner_container ul li span {
        background-color: var(--secondary-color)
    }

    .mobile_no {
        justify-content: start
    }

    .center_top_nav_bar {
        text-align: start
    }

    .top_leading_images {
        transform: none;
        -webkit-transform: none;
        -moz-transform: none;
        -ms-transform: none;
        -o-transform: none
    }

    .top_leading_content {
        margin-top: 40px
    }

    .we_offer_top_services:before {
        height: 101%
    }

    .view_more_btn,
    .view_more_btn:hover {
        color: var(--white-color)
    }

    .service_card_div:last-child {
        display: unset
    }

    .why_people_choice_left_vector {
        padding: 20px 100px
    }

    .why_people_choice_right {
        padding-left: unset
    }

    .why_people_choice_right>img {
        padding: 30px
    }

    .why_people_choice_section>.top_leading_bg {
        width: 50%
    }

    .what_people_say_left {
        padding: unset;
        padding-bottom: 70px;
        text-align: center
    }

    .what_people_say_left img {
        width: 60%
    }

    .what_people_say_card_div {
        width: 345px;
        height: 345px
    }

    .footer_main3>div:nth-child(2) {
        order: 1;
        flex: auto;
        order: 3
    }

    .footer_main3>div:nth-child(3) {
        order: 2
    }

    .about_us_content_left {
        padding: 0
    }

    .abot-new-section,
    .contact-new-section {
        grid-template-columns: 100%
    }
}

@media (max-width:767px) {
    .center_top_nav_bar {
        text-align: center
    }

    .mobile_no {
        justify-content: center
    }

    .right_top_nav_bar {
        display: none
    }

    .breadcrum_content {
        display: block;
        text-align: center
    }

    .why_people_choice_left_vector {
        padding: 20px 50px
    }

    .what_people_say_card_main {
        margin: 0
    }

    .home_post_inner_container {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        grid-gap: 20px;
        gap: 20px
    }

    .btn-call-mob {
        display: flex
    }
}

@media (max-width:576px) {

    .container,
    .container-fluid,
    .container-lg,
    .container-md,
    .container-sm,
    .container-xl,
    .container-xxl {
        padding: 0 15px
    }

    .famous_indian {
        font-size: 2.2rem
    }

    .custom_heading h2 {
        font-size: 3.4rem
    }

    .why_people_choice_left_vector {
        grid-template-columns: repeat(auto-fill, minmax(170px, 1fr))
    }

    .what_people_say_right>p {
        width: 100%
    }

    .why_people_choice_right>img {
        width: 90%;
        padding: 0;
        margin: 30px 0
    }

    .contact_form {
        padding: 20px
    }

    .home_banner img {
        width: 165%
    }

    .home_call_banner img {
        width: 225%
    }

    .why_people_choice_left_vector {
        padding: 20px
    }

    .why_people_choice_section>.top_leading_bg {
        width: 100%;
        top: -50%;
        right: -50%
    }

    .home_post_inner_container {
        grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
        width: 90%;
        margin: auto
    }

    .what_people_say_left img {
        width: 90%
    }

    .contact_form_heading h2 {
        font-size: 3rem
    }

    .contact_form_heading h3 {
        font-size: 1.8rem
    }

    .footer_main3 {
        justify-content: center
    }

    .footer_info>div span .iconify-inline {
        font-size: 28px
    }

    .footer_services>div h2 {
        font-size: 1.7rem
    }

    .about_us_content_common {
        padding: 0 10px
    }

    .about_us_content_common h2 {
        font-size: 2.2rem;
        line-height: 30px
    }

    .about_us_content_div2_left {
        padding: 0;
        text-align: center;
        margin: 30px auto
    }

    .about_us_content_div2_left>img {
        width: 80%
    }

    .menu_bar_inner {
        padding: 0 30px
    }

    .contact_info {
        padding: 0 10px
    }

    .contact_info_card>div {
        flex-direction: column;
        justify-content: center;
        text-align: center
    }

    .breadcrum_main {
        padding: 40px 0
    }

    .breadcrum_content h2 {
        font-size: 2.6rem;
        line-height: 40px
    }

    .about_us_content_common h3 {
        font-size: 2.6rem;
        line-height: 30px
    }

    .about_us_content_common h1 {
        font-size: 3.2rem
    }

    .contact_info>h2 {
        font-size: 2.8rem
    }

    .contact_info>h2:before {
        height: 5px
    }

    .contact_info_card>div>div h2 span {
        display: block
    }
}

@media (max-width:359px) {
    .what_people_say_card_div {
        width: 300px;
        height: 300px
    }

    .what_people_say_card_stars {
        display: none
    }

    .what_people_say_card_div img {
        top: -60px
    }

    .what_people_say_card_content h2 {
        font-size: 2.6rem
    }

    .what_people_say_card_content p {
        font-size: 1.4rem
    }
}


.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    width: 30px;
    height: 24px;
    position: relative;
    z-index: 1001;
}

.hamburger span {
    display: block;
    height: 3px;
    width: 100%;
    background-color: #333;
    margin-bottom: 5px;
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

.logo_mobile {
    display: none;
}

/* Mobile styles */
@media (max-width: 991px) {
    .hamburger {
        display: flex;
    }
    
    .menu_bar_inner_container {
        display: none;
    }
    
    .menu_bar_inner_container.active {
        display: block;
    }
    
    .logo_mobile {
        display: block;
    }
}


@media (max-width: 991px) {
ul.navbar_menus {

display: block;

    }
}


.hero_section {
            width: 100%;
            overflow: hidden;
        }
        
        .swiper {
            width: 100%;
        }
        
        .swiper-slide {
            width: 100%;
        }
        
        .hero_banner1 img {
            width: 100%;
            height: auto;
            display: block;
        }


 .what_people_say_card_stars {
            color: #ffc107;
            margin-bottom: 20px;
        }     

.famous_indian {
    font-size: 18px;
    line-height: 27px;
    padding: 10px 20px;
    border-radius: 24px;
}

.thankyou-container {
    padding: 100px 0px;
    text-align: center;
}

.thankyou-container h1 {
    font-size: 3.5rem;
    font-weight: 700;
    color: #ffd700;
}

.thankyou-container p {
    font-size: 2.1rem;
    margin-top: 15px;
}

.btn-home {
    margin-top: 30px;
    background-color: #ffd700;
    color: #4a0e0e;
    border: none;
    font-weight: 600;
    transition: 0.3s;
    font-size: 18px;
}

.btn-home:hover {
    background-color: #ffcc00;
    color: #000;
}
.thankyou-fa {
    font-size: 40px;
    color: #10c506dd;
    margin-bottom: 20px;
}