* {
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    overflow-x: hidden;
}

body.deactive {
    overflow-y: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
span,
ul,
li,
a,
.btn-default,
textarea,
label {
    margin: 0;
    padding: 0;
}

li {
    list-style: none;
}

a {
    text-decoration: none;
}

a:hover {
    text-decoration: none;
}

a:focus {
    text-decoration: none;
}

button,
input,
textarea,
select {
    outline: none !important;
}

select {
    -webkit-appearance: none;
    -moz-appearance: none;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
}

select.minimal {
    background-image: url(../images/selectArrow.png);
    background-position: calc(100% - 20px) calc(1em + 10px);
    background-repeat: no-repeat;
}

/* GLOBAL_CSS_CHANGES_END_HERE */

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Chrome, Safari, Edge, Opera */

/* GLOBAL_VAR_CSS_START_FROM_HERE */
:root {
    --white: #ffffff;
    --black: #141312;
    --main_color: #d5dfbd;
    --sec_color: #F2D39A;
    --blue_color: #044E81;
    --desc_color: #545352;
    --libre-baskerville: "Libre Baskerville", serif;
    --lato: "Lato", sans-serif;
    --jost: "Jost", sans-serif;
    --nexa_bold: "Nexa-bold";
    --nexa_reg: "Nexa-reg";
    --roboto: "Roboto", sans-serif;
}

/* GLOBAL_VAR_CSS_CSS_HERE */

/* FONT_CSS_START_FROM_HERE */
@font-face {
    font-family: "Nexa-reg";
    src: url("../webfonts/Nexa-reg.ttf");
    font-weight: regular;
    font-style: normal;
}

@font-face {
    font-family: "Nexa-bold";
    src: url("../webfonts/Nexa-bold.otf");
    font-weight: regular;
    font-style: normal;
}


/* FONT_CSS_END_HERE */

/* SCROLL-CSS */
body::-webkit-scrollbar {
    width: 5px;
}

body::-webkit-scrollbar-track {
    background: var(--white);
}

body::-webkit-scrollbar-thumb {
    background-color: var(--black);
}

/* SCROLL-CSS */

.header_wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding-top: 15px;
    z-index: 1111;
}
.header_btn_wrap {
    display: flex;
    align-items: center;
    gap: 10px;
}

.header_wrapper .container,
.index_banner .container {
    max-width: 1700px;
}

.header_flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo_box {
    display: block;
    width: 230px;
}

.nav_bar {
    display: flex;
    align-items: center;
    gap: 40px;
    padding-right: 50px;
}

.nav_bar li a {
    font-family: var(--nexa_reg);
    font-size: 18px;
    color: #262626;
    display: block;
    position: relative;
    padding-bottom: 5px;
}

.nav_bar li a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 2px;
    background-color: var(--black);
    transition: all 0.25s;
}

.nav_bar li a:hover::before {
    width: 100%;
}

.nav_bar li:nth-of-type(4) a {
    color: var(--white);
}

.nav_bar li:nth-of-type(5) a {
    color: var(--white);
}

.nav_bar li:nth-of-type(6) a {
    color: var(--white);
}

.nav_bar li:nth-of-type(4) a:before,
.nav_bar li:nth-of-type(5) a:before,
.nav_bar li:nth-of-type(6) a:before {
    background-color: var(--white);
}


.gen_btn {
    font-family: var(--lato);
    font-weight: 700;
    color: var(--black);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 15px 30px;
    background: var(--sec_color);
    border-radius: 10px;
    position: relative;
    width: fit-content;
    transition: all 0.25s;
}

.gen_btn:hover {
    color: var(--black);
}

.gen_btn::before {
    content: '';
    position: absolute;
    top: 5px;
    left: 5px;
    background: var(--black);
    width: 100%;
    height: 100%;
    z-index: -1;
    border-radius: 10px;
    transition: all 0.25s;
}

.gen_btn:hover::before {
    top: -5px;
    left: -5px;
}



.index_banner {
    width: 100vw;
    background: url(../images/index-banner.png) center /cover;
    padding: 225px 0px 90px 0px;
    position: relative;
    z-index: 1;
}

.index_banner .text_box {
    max-width: 605px;
}

.index_banner .text_box h1 {
    font-size: 95px;
    font-family: var(--libre-baskerville);
    color: var(--black);
    line-height: 90px;
    margin-bottom: 20px;
}

.desc {
    font-size: 16px;
    font-family: var(--nexa_reg);
    color: var(--desc_color);
    line-height: 27px;
}

.desc.dark {
    color: var(--black);
}

.banner_info_boxes_flex {
    display: flex;
    align-items: flex-end;
    gap: 20px;
    margin-top: 60px;
}

.banner_info_box {
    width: 195px;
    padding: 20px;
    border-radius: 10px;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    text-align: center;
}

.banner_info_box h5 {
    font-size: 36px;
    font-family: var(--jost);
    font-weight: 600;
    color: var(--black);
    text-align: center;
}




.banner_info_box_lg {
    padding: 20px;
    background: var(--sec_color);
    border-radius: 10px;
    width: 345px;
    display: flex;
    justify-content: space-between;
    margin-left: 20px;
}

.banner_info_box_lg h5 {
    font-size: 24px;
    font-family: var(--jost);
    font-weight: 600;
    color: var(--black);
    line-height: 31px;
}

.banner_info_box_lg .desc {
    font-size: 14px;
    color: #022741;
    line-height: 21px;
}

.banner_info_box_lg .left_box {
    max-width: 170px;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.banner_info_box_lg .right_box {
    max-width: 115px;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 30px;
    align-items: flex-end;
}

.rating_star {
    display: flex;
    align-items: center;
    gap: 5px;
}

.rating_star li i {
    font-size: 14px;
    color: var(--black);
}

.banner_floating_box {
    width: 210px;
    position: absolute;
    bottom: 250px;
    right: 200px;
    padding: 15px 20px;
    border-radius: 10px;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    background: var(--white);
}

.banner_floating_box .desc {
    font-size: 14px;
    line-height: 20px;
}

.banner_floating_box .desc span {
    color: var(--black);
    text-decoration: underline;
}

.toggle_menu_btn {
    width: 45px;
    height: 45px;
    display: none;
    justify-content: center;
    align-items: center;
    font-size: 22px;
    color: var(--white);
    border-radius: 100%;
    background: var(--blue_color);
    position: fixed;
    top: 10px;
    right: 10px;
    z-index: 99999;
    border: 0;
    box-shadow: rgb(255 255 255) 3px 3px 6px 0px inset, rgb(5 3 3 / 10%) -3px -3px 6px 1px inset;
}
.contact_mobile_btn {
    display: none;
}






.index_section_one {
    position: relative;
    padding: 85px 0px 60px 0px;
}

.heading_sm {
    font-size: 16px;
    font-family: var(--libre-baskerville);
    color: var(--blue_color);
    font-weight: 700;
    text-transform: uppercase;
}

.heading_lg {
    font-size: 52px;
    font-family: var(--libre-baskerville);
    color: var(--black);
    line-height: 65px;
}

.text-dark {
    color: var(--black) !important;
}

.text_capital {
    text-transform: uppercase;
}

.fw_700 {
    font-weight: 700;
}

.index_section_one_text_box .desc {
    max-width: 780px;
}

.frame_one {
    position: absolute;
    top: 40px;
    right: 200px;
    max-width: 150px;
    z-index: -1;
}

.frame_two {
    position: absolute;
    left: 0;
    bottom: 130px;
    max-width: 120px;
    z-index: -1;
}





.index_section_two {
    background: var(--sec_color);
    padding: 0px 0px;
}

.index_section_three {
    padding: 100px 0px;
    position: relative;
}

.middle_text_box {
    margin-bottom: 50px;
}


.pricing_card {
    padding: 70px 45px 50px 45px;
    background: var(--blue_color);
    border-radius: 40px;
    transition: all 0.25s;
}

.two-columns ul {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.two-columns ul li {
  width: 50%;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
}




.pricing_card .top_frame {
    padding-bottom: 25px;
    border-bottom: 2px solid var(--white);
    margin-bottom: 30px;
}

.pricing_card h6 {
    font-family: var(--libre-baskerville);
    font-size: 16px;
    color: var(--white);
    margin-bottom: 15px;
}

.pricing_card h5 {
    font-family: var(--libre-baskerville);
    font-size: 40px;
    color: var(--white);
}

.pricing_card h5 span {
    font-family: var(--lato);
    font-size: 16px;
    color: var(--white);
}

.pricing_card .feature_list {
    margin-bottom: 20px;
}

.pricing_card .feature_list p {
    font-size: 16px;
    font-family: var(--lato);
    color: var(--white);
    padding-bottom: 20px;
}

.pkg_btn {
    padding: 13.5px 35px;
    background: var(--white);
    border-radius: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: var(--libre-baskerville);
    color: var(--black);
    width: fit-content;
    transition: all 0.25s;
}

.pkg_btn:hover {
    color: var(--black);
    background: var(--sec_color);
}


.frame_3 {
    position: absolute;
    top: -40px;
    left: 60px;
}

.frame_4 {
    position: absolute;
    bottom: -100px;
    right: 60px;
}

.index_section_four {
    background: #F2F1ED;
    padding: 100px 0px;
}

.top_text_box_flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top_text_box_flex .right_box {
    display: flex;
    align-items: center;
    gap: 50px;
}

.gen_btn_two {
    padding: 13.5px 35px;
    background: var(--blue_color);
    font-family: var(--libre-baskerville);
    color: var(--white);
    background: var(--blue_color);
    border-radius: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: fit-content;
    border: 2px solid transparent;
    transition: all 0.5s;
}

.gen_btn_two:hover {
    color: var(--blue_color);
    border-color: var(--blue_color);
    background: transparent;
}


.service_img_box {
    width: 375px;
    height: 375px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.service_img_box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border: 4px solid transparent;
    transition: all 0.5s;
}

.swiper-wrapper {
    padding: 40px 0px;
}

.swiper-slide {
    transition: all 0.5s;
}

.swiper-slide:hover {
    transform: scale(1.2);
}

.swiper-slide:hover img {
    border-color: #FF3A75;
}



.index_section_five {
    padding: 150px 0px 100px 0px;
    position: relative;
}

.project_card {
    position: relative;
    display: block;
    z-index: 1;
    overflow: hidden;
    border-radius: 10px;
}

.project_card img.img-fluid {
    transition: all 1s;
}

.project_card:hover img.img-fluid {
    transform: scale(1.2);
}

.project_card .play_btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.frame_five {
    position: absolute;
    top: -100px;
    left: 60px;
    max-width: 200px;
}


.index_section_six {
    padding: 30px 0px 250px 0px;
    position: relative;
}

.frame_six {
    position: absolute;
    top: 0;
    right: 20px;
}

.frame_seven {
    position: absolute;
    bottom: 160px;
    left: 30px;
    max-width: 240px;
}

.accordian_wrapper {
    margin-top: 175px;
}

.accordian_wrapper .accordion-item {
    color: var(--bs-accordion-color);
    background-color: transparent;
    border: none;
}

.accordian_wrapper .accordion-button {
    font-family: var(--libre-baskerville);
    font-size: 16px;
    padding: 40px 56px;
    color: var(--black);
    background-color: transparent;
    position: relative;
    z-index: 1;
    border-bottom: 1px solid #E0E0E0;
}

.accordian_wrapper .accordion-button:not(.collapsed) {
    color: var(--black);
    background-color: transparent;
    box-shadow: none;
}

.accordian_wrapper .accordion-button:not::before {
    color: var(--white);
    background-color: transparent;
    box-shadow: none;
}

.accordian_wrapper .accordion-button:focus {
    border-color: none;
    box-shadow: none;
}

.accordian_wrapper .accordion-item .desc {
    font-family: var(--libre-baskerville);
    font-size: 14px;
    color: var(--black);
}

.accordian_wrapper .accordion-body {
    padding: 10px 56px;
}

.faq_text_box h2 {
    font-size: 15px;
    font-family: var(--libre-baskerville);
    color: var(--black);
    text-transform: capitalize;
    padding-bottom: 10px;
}

.faq_text_box .heading_lg {
    font-size: 42px;
    max-width: 600px;
}

.faq_text_box .img_box {
    position: relative;
    max-width: 600px;
}

.faq_text_box .img_box img {
    border-radius: 25px 25px 25px 0px;
}

.get_in_touch_box {
    padding: 42px 40px;
    background: var(--white);
    border-radius: 25px 25px 25px 0px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: absolute;
    bottom: 18px;
    left: 50%;
    transform: translateX(-50%);
    width: 95%;
}

.get_in_touch_box h2 {
    font-size: 32px;
    font-family: var(--libre-baskerville);
    color: var(--black);
    text-transform: capitalize;
    max-width: 180px;
}

.footer_wrapper {
    padding-top: 200px;
    background: var(--blue_color);
    position: relative;
}

.footer__col .desc {
    font-family: var(--roboto);
    font-size: 13px;
    color: var(--white);
    max-width: 260px;
    line-height: 20px;
}

.footer__col h5 {
    font-size: 20px;
    font-family: var(--libre-baskerville);
    color: var(--white);
    margin-bottom: 30px;
}

.footer__col ul li a {
    font-size: 15px;
    font-family: var(--libre-baskerville);
    color: var(--white);
    display: block;
    margin-bottom: 20px;
    position: relative;
    width: fit-content;
}

.footer__col ul li a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 2px;
    background-color: var(--white);
    transition: all 0.25s;
}

.footer__col ul li a:hover::before {
    width: 100%;
}

.footer__col ul li p {
    font-size: 15px;
    font-family: var(--roboto);
    color: var(--white);
    margin-bottom: 20px;
}

.contact_links_flex li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.contact_links_flex li p {
    margin: 0 !important;
}

.copywrite_row {
    padding: 25px 12px;
    border-top: 2px solid var(--white);
    margin-top: 60px;
}

.copywrite_row p {
    font-size: 15px;
    font-family: var(--roboto);
    color: var(--white);
    text-align: center;
}

.newsletter_box {
    background: var(--sec_color);
    padding: 55px 70px;
    border-radius: 0 50px 0px 50px;
}

.newsletter_box h2 {
    font-size: 32px;
    font-family: var(--libre-baskerville);
    color: var(--black);
    margin-bottom: 10px;
}

.newsletter_box .desc {
    font-family: var(--roboto);
    color: #000;
    max-width: 600px;
}

.newsletter_box input {
    font-size: 15px;
    font-family: var(--libre-baskerville);
    width: 100%;
    height: 55px;
    border: 0;
    border-radius: 60px;
    padding: 0px 20px;
    text-align: center;
}

.submit_btn {
    padding: 13.5px 35px;
    background: var(--blue_color);
    font-family: var(--libre-baskerville);
    color: var(--white);
    background: var(--blue_color);
    border-radius: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 55px;
    border: 2px solid transparent;
    transition: all 0.5s;
}

.submit_btn:hover {
    background: transparent;
    color: var(--blue_color);
    border-color: var(--blue_color);
}

.newsletter_wrapper {
    position: absolute;
    width: 100%;
    top: -120px;
    left: 0;
}











.inner_banner {
    padding: 20px;
    height: 520px;
    background: url(../images/about-banner.png) center /cover;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.inner_banner.service_banner {
    background: url(../images/service_banner.png) center /cover;
}


.inner_banner.service_price_banner {
    background: url(../images/service-price-banner.png) center /cover;
}

.inner_banner.rew_banner {
    background: url(../images/reviews_banner.png) center /cover;
}

.inner_banner.gallery_banner {
    background: url(../images/gallery-banner.png) center /cover;
}

.inner_banner.contact_banner {
    background: url(../images/contact-banner.png) center /cover;
}



.header_wrapper.header_two {
    position: unset;
    top: 0;
    left: 0;
}

.header_wrapper.header_two .nav_bar li:nth-of-type(4) a {
    color: var(--black);
}

.header_wrapper.header_two .nav_bar li:nth-of-type(5) a {
    color: var(--black);
}

.header_wrapper.header_two .nav_bar li:nth-of-type(6) a {
    color: var(--black);
}

.header_wrapper.header_two .nav_bar li:nth-of-type(4) a:before,
.header_wrapper.header_two .nav_bar li:nth-of-type(5) a:before,
.header_wrapper.header_two .nav_bar li:nth-of-type(6) a:before {
    background-color: var(--black);
}

.header_wrapper.header_two .nav_bar {
    padding-right: 0px !important;
}


.inner_banner h2 {
    font-size: 25px;
    font-family: var(--libre-baskerville);
    color: var(--white);
    margin-bottom: 10px;
}

.inner_banner h1 {
    font-size: 120px;
    font-family: var(--libre-baskerville);
    color: var(--white);
}


.about_sec_one {
    padding: 100px 0px;
    background: var(--sec_color);
    position: relative;
    z-index: 1;
}

.about_sec_one_text_box .heading_sm {
    color: var(--black);
}

.about_sec_one_text_box .desc {
    color: var(--black);
    max-width: 590px;
}


.gen_btn_one {
    font-family: var(--lato);
    font-weight: 700;
    color: var(--white);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 15px 30px;
    background: var(--blue_color);
    border-radius: 10px;
    position: relative;
    width: fit-content;
    transition: all 0.25s;
}

.gen_btn_one:hover {
    color: var(--white);
}

.gen_btn_one::before {
    content: '';
    position: absolute;
    top: 5px;
    left: 5px;
    background: var(--black);
    width: 100%;
    height: 100%;
    z-index: -1;
    border-radius: 10px;
    transition: all 0.25s;
}

.gen_btn_one:hover::before {
    top: -5px;
    left: -5px;
}


.about_sec_one_img_box {
    max-width: 720px;
}



.about_sec_two {
    padding: 100px 0px;
    background: var(--blue_color);
    position: relative;
    z-index: 1;
}

.about_sec_two_text_box .heading_lg {
    color: var(--white);
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
}

.about_sec_two_text_box .gen_btn {
    font-size: 30px;
    padding: 12px 60px;
    margin: 0 auto;
    margin-top: 30px;
    margin-bottom: 60px;
    position: relative;
}

.lef_icon_left {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: -125px;
}

.lef_icon_right {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: -125px;
}

.about_sec_two_text_box p {
    font-family: var(--libre-baskerville);
    font-size: 25px;
    color: var(--white);
    text-align: center;
}

.about_sec_two_vector_left {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}

.about_sec_two_vector_right {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
}



.about_sec_three {
    padding: 120px 0px;
}


.about_sec_four {
    padding: 60px 0px 280px 0px;
    position: relative;
}

.team_card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    max-width: 380px;
    margin: 0 auto;
}

.team_card .top_card {
    width: 100%;
    height: 295px;
    background: var(--blue_color);
    border-radius: 483.453px 483.453px 0px 0px;
    padding: 85px 30px 45px 30px;
}

.team_card .top_card h2 {
    font-family: var(--libre-baskerville);
    font-size: 35px;
    color: var(--white);
    text-align: center;
}

.team_card .top_card p {
    font-family: var(--roboto);
    font-size: 15px;
    color: var(--white);
    text-align: center;
    margin-bottom: 25px;
}

.team_card .top_card a {
    width: 175px;
    height: 45px;
    border-radius: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: var(--roboto);
    font-size: 15px;
    color: var(--black);
    font-weight: 700;
    background: var(--sec_color);
    margin: 0 auto;
}

.bottom_card {
    width: 100%;
    height: 295px;
    border-radius: 0px 0px 483.453px 483.453px;
}

.bottom_card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}


.team_card.type_two .bottom_card {
    border-radius: 483.453px 483.453px 0px 0px;
}

.team_card.type_two .top_card {
    border-radius: 0px 0px 483.453px 483.453px;
}

.team_card.type_one,
.team_card.type_three {
    transform: translateY(50px);
}


.frame_eight {
    position: absolute;
    top: -30px;
    left: 180px;
}

.frame_nine {
    position: absolute;
    top: -30px;
    right: 180px;
}






.service_section_one {
    padding: 120px 0px 250px 0px;
    position: relative;
}

.service_card_box {
    width: 100%;
    padding: 12px;
    border: 1px solid #AFAFAF;
    border-radius: 30px;
    min-height: 600px;
}

.service_card_box .img_box {
    width: 100%;
    height: 340px;
}

.service_card_box .img_box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 20px;
    overflow: hidden;
}

.service_card_box .text_box {
    padding: 30px 0px 20px 0px;
}

.service_card_box .text_box h3 {
    font-family: var(--libre-baskerville);
    font-size: 30px;
    color: var(--black);
    text-align: center;
    margin-bottom: 10px;
}


.frame_ten {
    position: absolute;
    top: 10px;
    right: 0;
    max-width: 160px;
}

.frame_eleven {
    position: absolute;
    bottom: 0;
    left: 0;
    max-width: 140px;
}






.service_price_section_one {
    padding: 150px 0px 100px 0px;
    background: var(--sec_color);
}


.service_price_section_two {
    padding-top: 100px;
}

.frame_12 {
    position: absolute;
    top: 60px;
    left: 150px;
}

.frame_13 {
    position: absolute;
    top: 60px;
    right: 150px;
}


.rew_card {
    padding: 30px 28px;
    border: 1px solid #E2DBDB;
    box-shadow: 0px 1px 15px 0px rgba(1, 6, 33, 0.06);
    background: var(--white);
    min-height: 390px;
}

.rew_card p {
    padding-bottom: 25px;
    font-size: 16px;
    font-style: italic;
    color: #2D2D2D;
}

.client_info {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 25px 20px 0px 20px;
}

.client_info .img_box {
    width: 60px;
    height: 60px;
    border-radius: 100%;
    overflow: hidden;
}

.client_info .img_box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.client_info .text_box {
    width: calc(100% - 60px);
}

.client_info .text_box h2 {
    font-size: 22px;
    font-family: var(--libre-baskerville);
    color: var(--blue_color);
    font-weight: 700;
    margin-bottom: 5px;
}

.client_info .text_box p {
    font-size: 16px;
    font-family: var(--nexa_reg);
    color: var(--black);
    font-style: italic;
}

.rew_sec_one .frame_ten {
    position: absolute;
    top: 180px;
    right: 0;
    max-width: 360px;
    z-index: -1;
}

.rew_sec_one .frame_eleven {
    position: absolute;
    bottom: 70px;
    left: 0;
    max-width: 250px;
    z-index: -1;
}


.gallery_sec_one {
    padding-bottom: 250px;
}


.contact_sec_one {
    padding: 130px 0px;
    background: var(--sec_color);
    position: relative;
    z-index: 1;
}

.contact_sec_one .middle_text_box .desc {
    max-width: 500px;
    margin: 0 auto;
}

.contact_form input,
.contact_form textarea {
    width: 100%;
    height: 60px;
    background: var(--white);
    padding: 0px 40px;
    font-size: 20px;
    font-family: var(--jost);
    color: var(--black);
    border-radius: 12px;
    border: 0;
}

.contact_form textarea {
    height: 230px;
    padding: 20px 40px;
    resize: none;
}

.contact_form .submit_btn_one {
    width: 100%;
    height: 60px;
    border: 0;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--jost);
    font-size: 20px;
    color: var(--white);
    background: var(--blue_color);
}

.contact_sec_one .frame_ten {
    position: absolute;
    top: 160px;
    right: 0;
    max-width: 220px;
    z-index: -1;
}

.contact_sec_one .frame_eleven {
    position: absolute;
    bottom: -300px;
    left: 0;
    max-width: 180px;
}

.contact_sec_one .frame_five {
    position: absolute;
    top: 50px;
    left: 80px;
    max-width: 260px;
}

.nav-pills {
    justify-content: center;
    box-shadow: 0px 10.879px 30.46px 0px rgba(0, 0, 0, 0.07);
    width: fit-content;
    margin: 0 auto;
    padding: 8px;
    gap: 10px;
    border-radius: 60px;
}

.nav-pills .nav-link {
    width: 140px;
    padding: 15px 30px;
    background: var(--white);
    font-size: 16px;
    font-family: var(--libre-baskerville);
    color: var(--black);
    border-radius: 60px;
}

.nav-pills .nav-link.active,
.nav-pills .show>.nav-link {
    color: var(--black);
    background-color: var(--sec_color);
}


.partner-logo {
    display: inline-block;
    padding: 10px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.12);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.partner-logo img {
    max-width: 100%;
    border-radius: 6px;
}

.partner-logo:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.18);
}
