



/*--------------------- Copyright (c) 2025 ----------------------- 
[Master Stylesheet] 
Project: Wedding
Version: 1.0.0 
Author: Kamleshyadav
 ------------------------------------------------------------------- 
[Table of contents] 
	1. Global CSS Start
	2. Comman CSS Start
    3. Preloader CSS Start
    4. Header CSS Start
    5. Banner CSS Start
    6. About CSS Start
    7. Married CSS Start
    8. Service CSS Start
    9. Gallery CSS Start
    10. Testimonial CSS Start
    11. Counter CSS Start
    12. Blog CSS Start
    13. Contact CSS Start
    14. Newsletter CSS Start
    15. Footer CSS Start
    16. Responsive CSS Start
-------------------------------------------------------------------*/

/********************************************************
    1. Global CSS Start
********************************************************/
:root {
    --primary-color:#e6707d;
    --main-bg-color:rgb(255 246 248);
    --main-black: #000000;
    --main-white-color: #ffffff;
    --main-heading-color:#212529;
    --main-para-color:rgba(33, 37, 41, 0.75);
    --main-gray-version3: #647589;
    --main-blue-version1: #000022;

}
body {
    color: var(--main-gray-version3);
    font-family: "Jost", serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
img{
    max-width: 100%;
}
*,::after, ::before{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
a, a:hover, a:focus {
	color: var(--main-blue-version1);
}
h1, h2, h3, h4, h5, h6 {
    color: var(--main-blue-version1);
    font-weight: 500;
    font-family: "Jost", serif;
    margin: 0;
    padding: 0;
}
ul, li, p{
    padding: 0;
    margin: 0;
}
a{
    text-decoration: none;
}
input:focus, input:focus-visible{
    outline: none;
    box-shadow: none;
}
.preloader_active {
    position: fixed;
    top: 0;
    left: 0;
    overflow: hidden;
    height: 100vh;
    width: 100vw;
    z-index: 99999;
}

.preloader_active .preloader_holder {
    position: absolute;
    left: 0;
    display: block;
    top: 0;
    height: 100%;
    width: 100%;
    z-index: 999999;
}

.preloader_active .preloader_holder .preloader span {
    width: 50px;
    height: 50px;
    display: block;
    border-radius: 50px;
    position: absolute;
    -webkit-animation: loadingCircles 1s infinite;
    -moz-animation: loadingCircles 1s infinite;
    animation: loadingCircles 1s infinite;
    -webkit-animation-fill-mode: forwards;
    -moz-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
    opacity: 0;
}

.preloader_wrapper>.preloader>span:nth-child(2) {
    -webkit-animation-delay: 0.3s;
    -moz-animation-delay: 0.3s;
    animation-delay: 0.3s;
}

.preloader_wrapper>.preloader>span:nth-child(3) {
    -webkit-animation-delay: 0.6s;
    -moz-animation-delay: 0.6s;
    animation-delay: 0.6s;
}

.preloader_holder {
    display: none;
}

.preloader_open {
    position: fixed;
    background-color: transparent;
    z-index: 9999;
    height: 100%;
    width: 100%;
    -webkit-transition: .2s all ease;
    -o-transition: .2s all ease;
    transition: .2s all ease;
    -webkit-transition-delay: .5s;
    -o-transition-delay: .5s;
    transition-delay: .5s;
}

.preloader_open.loaded {
    opacity: 0;
    visibility: hidden;
}

.preloader_open.loaded:before,
.preloader_open.loaded:after {
    width: 0%;
}

.preloader_open:before,
.preloader_open:after {
    content: "";
    position: absolute;
    height: 100%;
    width: 50%;
    -webkit-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}

.preloader_open:before {
    top: 0;
    left: 0;
}

.preloader_open:after {
    bottom: 0;
    right: 0;
}
.main_menu_parent {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-end;
}

.main_menu_wrapper ul,
.main_menu_wrapper li {
    display: inline-block;
    position: relative;
}

.main_menu_wrapper ul>li>a {
    padding: 12px 20px;
    display: inline-block;
    font-weight: 400;
}

.main_menu_wrapper>ul>li {
    position: relative;
}

/********************************************************
    4. Search CSS
*******************************************************/

.searchBox {
    position: fixed;
    right: 0;
    bottom: 0;
    top: 0;
    width: 100%;
    left: 0%;
    background: rgba(0, 0, 0, 0.85);
    z-index: 99;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    cursor: url(../images/close_search.png), auto;
    -webkit-transform: translateY(-100%);
    -moz-transform: translateY(-100%);
    -ms-transform: translateY(-100%);
    -o-transform: translateY(-100%);
    transform: translateY(-100%);
}

.searchBox.show {
    -webkit-transform: translateY(0%);
    -moz-transform: translateY(0%);
    -ms-transform: translateY(0%);
    -o-transform: translateY(0%);
    transform: translateY(0%);
}

.searchBox.show,
.searchBox {
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
}

.searchBoxContainer {
    width: 50%;
    position: relative;
    text-align: end;
    -webkit-transform: translateY(200px);
    -moz-transform: translateY(200px);
    -ms-transform: translateY(200px);
    -o-transform: translateY(200px);
    transform: translateY(200px);
    visibility: hidden;
}

.searchBox.show .searchBoxContainer {
    -webkit-transform: translateY(0px);
    -moz-transform: translateY(0px);
    -ms-transform: translateY(0px);
    -o-transform: translateY(0px);
    transform: translateY(0px);
    visibility: visible;
}

.searchBox.show .searchBoxContainer,
.searchBoxContainer {
    -webkit-transition: all 2s;
    -moz-transition: all 2s;
    -ms-transition: all 2s;
    -o-transition: all 2s;
    transition: all 2s;
}

.search_bar_inner {
    position: relative;
    height: 50px;
}

.search_bar_inner input {
    width: 100%;
    height: 50px;
    padding: 12px 55px 12px 0;
    border: none;
    border-radius: 0;
    background: transparent;
    border-bottom: 2px solid var(--main-bg-color);
    color: var(--main-bg-color);
}

.search_bar_inner input::-webkit-input-placeholder {
    color: var(--main-bg-color);
    opacity: 90%;
}

.search_bar_inner input::-moz-placeholder {
    color: var(--main-bg-color);
    opacity: 90%;
}

.search_bar_inner input:-ms-input-placeholder {
    color: var(--main-bg-color);
    opacity: 90%;
}

.search_bar_inner input:-moz-placeholder {
    color: var(--main-bg-color);
    opacity: 90%;
}

.search_bar_inner button {
    position: absolute;
    right: 3px;
    top: 3px;
    bottom: 3px;
    border: none;
    background: transparent;
    color: var(--main-bg-color);
    width: 45px;
    font-size: 20px;
    border-radius: 26px;
}

.closeBtn {
    margin: 0 0 20px 0;
    display: inline-block;
    padding: 0 15px;
}

.closeBtn svg {
    width: 20px;
    fill: var(--main-bg-color);
}
/********************************************************
    2. Comman CSS Start
********************************************************/
.wed_btn {
    background: var(--primary-color);
    color: var(--main-white-color);
    display: inline-block;
    border: 2px solid transparent;
    border-radius: 12px;
    height: 50px;
    line-height: 46px;
    text-align: center;
    padding: 0 15px;
    width: 170px;
    margin-top: 10px;
    z-index: 0;
    font-weight: 400;
    overflow: hidden;
    position: relative;
    display: inline-table;
    border: 1px solid var(--primary-color);
}
.wed_btn::after{
    position: absolute;
    content: '';
    z-index: -1;
    top: 50%;
    left: 50%;
    height: 103%;
    width: 0;
    transition: all .3s ease-out;
    -webkit-transition: all .3s ease-out;
    -o-transition: all .3s ease-out;
    transform: translate(-50%, -50%);
    border-radius: 5px;
    opacity: 0;
}
.wed_btn:hover:after{
    background-color: var(--main-white-color);
    width: 100%;
    opacity: 1;
}
.wed_btn:hover {
    color: var(--primary-color);
}
.wed_btn.wed_white {
    background: transparent;
    border: 2px solid var(--main-bg-color);
}
.wed_btn span {
    position: absolute;
    width: 25%;
    height: 100%;
    background-color: var(--main-bg-color);
    -webkit-transform: translateY(150%);
	-moz-transform: translateY(150%);
	-ms-transform: translateY(150%);
	-o-transform: translateY(150%);
    transform: translateY(150%);
    border-radius: 50%;
    left: calc((var(--n) - 1) * 25%);
    transition: 0.5s;
    transition-delay: calc((var(--n) - 1) * 0.1s);
    z-index: -1;
}
.wed_btn:hover span {
    -webkit-transform: translateY(0) scale(2);
	-moz-transform: translateY(0) scale(2);
	-ms-transform: translateY(0) scale(2);
	-o-transform: translateY(0) scale(2);
    transform: translateY(0) scale(2);
}
.wed_btn span:nth-child(1) {
    --n: 1;
}
.wed_btn span:nth-child(2) {
    --n: 2;
}
.wed_btn span:nth-child(3) {
    --n: 3;
}
.wed_btn span:nth-child(4) {
    --n: 4;
}

.wed_heading {
    color: var(--main-heading-color);
    font-size: 38px;
    font-weight: 500;
    position: relative;
    padding: 0;
    margin: 0px 0 20px 0;
    line-height: 50px;
}
#scroll {
    background: var(--primary-color);
    color: var(--main-bg-color);
}
#scroll {
    position: fixed;
    right: 15px;
    bottom: 15px;
    cursor: pointer;
    width: 50px;
    height: 50px;
    text-align: center;
    line-height: 50px;
    -webkit-border-radius: 60px;
    -moz-border-radius: 60px;
    border-radius: 60px;
    z-index: 9;
    visibility: hidden;
    -webkit-transform: translateY(150px);
    -ms-transform: translateY(150px);
    transform: translateY(150px);
}
.wed_bottom_shape {
    position: absolute;
    bottom: -9px;
    left: 0;
    right: 0;
    margin: auto;
    background: url(../images/shape_bg.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    z-index: 1;
    height: 80px;
}
.wed_top_shape {
    position: absolute;
    top: -9px;
    left: 0;
    right: 0;
    margin: auto;
    background: url(../images/shape_bg_bottom.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    z-index: 1;
    height: 80px;
}
.wed_contact_form {
    background-color: var(--main-bg-color);
    border-radius: 12px;
    padding: 20px 30px;
}
.wed_subHeading {
    color: var(--main-heading-color);
    font-size: 25px;
    font-weight: 500;
    position: relative;
    padding: 12px 0;
}
.wed_married_text .wed_subHeading {
    position: absolute;
    left: 20px;
    right: 20px;
    bottom: -20px;
    border-radius: 12px;
    background-color: #ffffffad;
    transition: all .5s ease-in-out;
    visibility: hidden;
    opacity: 0;
    max-width: 230px;
    margin: 0 auto;
    font-size: 22px;
}
.wed_nav_button {
    width: 100px;
    display: flex;
    justify-content: space-between;
    visibility: hidden;
    opacity: 0;
    transition: transform .5s ease-in-out;
}
.married_slider{
    transition: all .3s ease-in-out;
    position: relative;
}
.married_slider:hover .wed_nav_button{
    visibility: visible;
    opacity: 1;
}
.married_slider .swiper-slide{
    transition: all .5s ease-in-out;
}
.wed_nav_button > div {
    position: relative;
    width: 40px;
    height: 40px;
    line-height: 40px;
    border: none;
    border-radius: 50%;
    overflow: hidden;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--primary-color);
    border: 1px solid var(--primary-color);
    transition: all .3s ease-in-out;
}

.wed_nav_button > div.next {
    text-align: right;
}
.wed_nav_button > div:before {
    content: "";
    background: var(--main-green-version3);
    width: 18px;
    height: 18px;
    border: none;
    border-radius: 50%;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: 3px;
    margin: auto;
    opacity: .3;
}
.wed_nav_button > div.next:before {
    left: 0;
    right: 0;
    bottom: 0;
}
.wed_nav_button > div svg {
    width: 22px;
    height: 20px;
    position: relative;
    fill: var(--main-white-color);
}
.wed_nav_button > div:hover {
    text-align: center;
}
.wed_nav_button > div:hover svg {
    fill: var(--primary-color);;
}
.wed_nav_button > div:hover{
    background-color: transparent;
}
.wed_nav_button > div:hover:before {
    width: 40px;
    height: 40px;
    opacity: 1;
}
.wed_nav_button > div:hover, .wed_nav_button > div, .wed_nav_button > div:hover:before, .wed_nav_button > div:before, .wed_nav_button > div:hover svg, .wed_nav_button > div svg {
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
}
.wed_nav_button .prev {
    position: absolute;
    top: 40%;
    left: 10px;
    z-index: 1;
}
.wed_nav_button .next{
    position: absolute;
    top: 40%;
    right: 10px;
    z-index: 1;
}
.response {
    position: unset;
    margin: 0 0 10px;
}

.single_section {
    position: relative;
    background-color: var(--main-white-color);
}
.container-fluid {
    position: unset;
}
.wed_married_container:hover .wed_subHeading{
    bottom: 10px;
    visibility: visible;
    opacity: 1;
}
/********************************************************
    3. Preloader CSS Start
********************************************************/
.preloader_active .preloader_holder {
    background-color: var(--main-bg-color);
}
.preloader_active .preloader_holder .preloader span {
    box-shadow: 0px 0px 0px 0px var(--main-wed-pink);
}
@-webkit-keyframes loadingCircles{
    0%{-webkit-transform: scale(0); opacity: 1; box-shadow: 0px 0px 0px 10px var(--main-wed-pink);}
    100%{-webkit-transform: scale(1); opacity: 0; box-shadow: 0px 0px 0px 2px var(--main-wed-pink);}
}
@-moz-keyframes loadingCircles{
    0%{-moz-transform: scale(0); opacity: 1; box-shadow: 0px 0px 0px 10px var(--main-wed-pink);}
    100%{-moz-transform: scale(1); opacity: 0; box-shadow: 0px 0px 0px 2px var(--main-wed-pink);}
}
@keyframes loadingCircles{
    0%{transform: scale(0); opacity: 1; box-shadow: 0px 0px 0px 10px var(--main-wed-pink);}
    100%{transform: scale(1); opacity: 0; box-shadow: 0px 0px 0px 2px var(--main-wed-pink);}
}
.preloader_open:before, .preloader_open:after {
    background-color: var(--main-bg-color);
}
/********************************************************
    4. Header CSS Start
********************************************************/
.wed_header_wrapper {
    padding: 0;
    background: var(--main-white-color);
    position: unset;
    box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.08);
}
.searchBtn, .searchBtn:focus, .searchBtn:hover {
    color: var(--main-green-version6);
    padding-left: 10px;
}
a.searchBtn i {
    color: var(--primary-color);
}
.display_flex {
    display: flex;
    flex-wrap: wrap;
}
.wed_search_wrap .display_flex {
    align-items: center;
}
.wed_search_wrap .display_flex li {
    display: flex;
}
.main_menu_wrapper ul > li > a {
    font-weight: 500;
    padding: 30px 20px;
    font-size: 18px;
}
.wed_logo {
    position: relative;
}
/********************************************************
    5. Banner CSS Start
********************************************************/
.wed_banner_wrapper {
    padding: 90px 0 90px;
    position: relative;
    background-color: var(--main-green-version4);
    background: rgb(248 228 231);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}
.wed_banner_text h6 {
    color: var(--primary-color);
    font-size: 26px;
    letter-spacing: 4px;
    font-weight: 600;
    text-align: left;
    border-radius: 12px;
    margin: 0 0 20px;

}
.wed_banner_text h1 {
    font-size: 57px;
    font-weight: 500;
    line-height: 1.3;
    color: var(--main-heading-color);
    padding: 0 0 15px;
}
.wed_ban_right {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    width: 100%;
}
.wed_ban_right img{
    border-radius: 12px;
    transition: all .5s ease-in-out;
}
.wed_ban_r1, .wed_ban_r2{
    position: relative;
    overflow: hidden;
    border-radius: 12px;
}
.wed_ban_r1:hover img, .wed_ban_r2:hover img{
    transform: scale(1.1);
    border-radius: 12px;
}
.wed_ban_right2{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 30px;
}
/********************************************************
    6. About CSS Start
********************************************************/
.bg-color{
    background-color: var(--main-bg-color);
}
.wed_about_wrapper {
    background-color: var(--main-white-color);
    padding: 90px 0 81px;
}
.wed_heading_wrpper{
    text-align: center;
    max-width: 550px;
    margin: 0 auto;
}

.wed_about_wrapper .row {
    align-items: center;
}
.wed_about_img {
    position: relative;
    display: inline-block;
    width: 100%;
    text-align: right;
}
.wed_about_img img{
    border-radius: 12px;
    
}
.wed_ab2_img {
    position: absolute;
    bottom: -50px;
    left: 0;
    border: 8px solid #fff;
    border-radius: 12px;
}
.wed_ab2_img img {
    max-height: 350px;

}
@keyframes chatbot-float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(15px); }
    100% { transform: translateY(30px); }
  }
.wed_about_small_img {
    border: 10px solid var(--main-green-version4);
    margin-top: -215px;
    float: right;
    position: relative;
    min-width: 64%;
    max-width: 65%;
}

.wed_about_time {
    -webkit-transform: rotate(180deg);
	-moz-transform: rotate(180deg);
	-ms-transform: rotate(180deg);
	-o-transform: rotate(180deg);
    transform: rotate(180deg);
    display: inline-block;
    font-size: 42px;
    position: absolute;
    right: 36px;
    top: 21px;
    text-transform: uppercase;
    font-weight: 700;
    writing-mode: vertical-rl;
    color: var(--main-blue-version5);
}
.wed_about_detail h3, .wed_heading_wrpper h3 {
    color: var(--primary-color);
    font-size: 22px;
    letter-spacing: 3px;
    font-weight: 500;
    margin-bottom: 10px;
    text-transform: capitalize;
}
.wed_about_detail {
    font-size: 18px;
    display: inline-block;
    width: 100%;
    padding-left: 10px;
}
.wed_about_detail .wed_btn {
    margin-top: 23px;
}
.wed_about_detail p{
    color: var(--main-para-color);
    font-size: 17px;
    font-weight: 400;
}
.wed_newsletter_wrap .wed_heading_wrpper {
    max-width: 700px;
}
/********************************************************
    7. Married CSS Start
********************************************************/

.wed_married_wrapper {
    padding: 88px 0 0px;
    position: relative;
    margin-bottom: -70px;
}
.wed_married_wrapper .row {
    align-items: center;
}
.wed_married_img .wed_heading {
    margin: 0;
}
.wed_married_text {
    position: relative;
    border-radius: 12px;
}
.wed_married_text img {
    border-radius: 12px;
}
.wed_married_detail {
    padding: 90px 20px 0;
    overflow: hidden;
}
.wed_married_hover {
    position: absolute;
    top: 100%;
    left: 0;
    bottom: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.60);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
}
.wed_married_text:hover .wed_married_hover {
    top: 0;
    opacity: 1;
    visibility: visible;
}
.wed_married_text, .wed_married_text:hover .wed_married_hover, .wed_married_text .wed_married_hover, .wed_married_hover {
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
}
.married_slider .swiper-slide:nth-child(even)  .wed_married_container{
    -webkit-transform: translateY(0);
    transform: translateY(0);
    -webkit-animation: margin 10s linear infinite;
    animation: margin 10s linear infinite;
}
.married_slider .swiper-slide:nth-child(odd) .wed_married_container{
    -webkit-transform: translateY(0);
    transform: translateY(0);
    -webkit-animation: marginOdd 10s linear infinite;
    animation: marginOdd 10s linear infinite;
}
@keyframes margin {
    0% {
        -webkit-transform: translateY(-80px);
        transform: translateY(-80px);
    }

    50% {
        -webkit-transform: translateY(-35px);
        transform: translateY(-35px);
    }

    100% {
        -webkit-transform: translateY(-80px);
        transform: translateY(-80px);
    }
}
@keyframes marginOdd {
    0% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }

    50% {
        -webkit-transform: translateY(-80px);
        transform: translateY(-80px);
    }

    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}
/********************************************************
    8. Service CSS Start
********************************************************/
.wed_services_wrapper {
    padding: 158px 0 60px;
    background: var(--main-white-color);
    position: relative;
}
.wed_services_wrapper .wed_heading_wrpper{
    max-width: 490px;
}

.wed_services_section {
    background-color: var(--main-bg-color);
    padding: 50px 20px 40px;
    margin-bottom: 30px;
    position: relative;
    border: none;
    border-radius: 12px;
    overflow: hidden;
    width: 100%;
    min-height: 326px;
    display: flex;
    align-items: center;
}
.wed_services_section:before {
    content: "";
    position: absolute;
    left: 0%;
    bottom: 0;
    background: var(--primary-color);
    width: 0%;
    height: 0%;
    transition: all 0.4s;
    border-radius: 12px;
}
.wed_services_section:hover {
    color: var(--main-bg-color);
}
.wed_services_section:hover .wed_ser_head{
    color: var(--main-white-color);
}
.wed_services_section:hover .wed_icon_bg svg{
    fill: var(--main-white-color);
}
.wed_services_section:hover:before {
    width: 100%;
    height: 100%;
}
.wed_services_section_inner {
    position: relative;
}
.wed_services_section_inner p{
    color: var(--main-para-color);
    font-size: 17px;
    font-weight: 400;
    margin-bottom: 0;
    transition: all .5s ease-in-out;
}
.wed_services_section:hover p {
    line-height: 1.5;
    font-family: "Jost", serif;
    color: #e2dddd;
}
.wed_ser_head{
    font-size: 25px;
    font-weight: 500;
    color: var( --main-heading-color);
    padding: 12px 0;
    transition: all .5s ease-in-out;
}
.wed_icon_bg, .wed_service_border {
    margin-bottom: 0;
    display: inline-block;
}
.wed_icon_bg svg {
    height: 70px;
    fill: var(--primary-color);
    width: 70px;
    transition: all .5s ease-in-out;
}
.wed_service_border svg {
    width: 60px;
    height: 20px;
    fill: var(--main-green-version3);
}
.wed_services_section:hover .wed_subHeading {
    color: var(--main-bg-color);
}
.wed_services_section:hover .wed_subHeading {
    margin-top: 0;
}
.wed_services_section:hover .wed_service_border svg {
    fill: var(--main-bg-color);
}
.wed_services_section:hover, .wed_services_section, .wed_services_section:hover .wed_service_border svg, .wed_service_border svg, .wed_services_section:hover .wed_subHeading, .wed_services_section .wed_subHeading, .wed_services_section:hover:before {
    -webkit-transition: all 0.3s;
	-moz-transition: all 0.3s;
	-ms-transition: all 0.3s;
	-o-transition: all 0.3s;
	transition: all 0.3s;
}
.bullets {
    text-align: center;
    margin-top: 6px;
    position: relative;
    z-index: 1;
    padding-top: 30px;
}
.bullets .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: var(--primary-color);
    border: 1px solid #ffffff;
    position: relative;
    opacity: 0.5;
}
span.swiper-pagination-bullet.swiper-pagination-bullet-active {
    opacity: 1;
    border: 1px solid #ffffff;
}
.bullets .swiper-pagination-bullet:before {
    content: "";
    width: 6px;
    height: 6px;
    border: none;
    border-radius: 50%;
    background: var(--main-green-version8);
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    margin: auto;
}
.wed_services_wrapper .wedingService.swiper-container .bullets .swiper-pagination-bullet {
    margin: 0;
}
/********************************************************
    9. Gallery CSS Start
********************************************************/
.wed_gallery_wrapper {
    padding: 86px 0 70px;
    background: var(--main-wed-pink-bg);
    position: relative;
}
.wed_gallery_section a {
    position: relative;
    display: inline-block;
}
.wed_gallery_section a:after {
    content: "";
    position: absolute;
    top: 2%;
    right: 2%;
    left: 2%;
    bottom: 2%;
    background-color: rgba(0, 0, 0, 0.7);
    opacity: 0;
    width: 100%;
    transform: scale(0);
    width: 96%;
    height: 96%;
    border-radius: 12px;
}
.wed_gal_plus{
    -webkit-transition: all .3s;
    transition: all .3s;
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    opacity: 0;
    text-align: center;
    z-index: 11;
    width: 50px;
    height: 50px;
}
.wed_gal_plus svg path{
    fill: var(--main-white-color);
}
.wed_gallery_section a:hover:after {
    opacity: 1;
    transform: scale(1);
}
.wed_gallery_section a:hover .wed_gal_plus{
    opacity: 1;
}
.wed_gallery_section {
    margin: 0 0 20px;
}
.wed_gallery_section img, .wed_gallery_section, .wed_gallery_section a {
    width: 100%;
    border-radius: 12px;
}
.wed_gallery_section a:after, .wed_gallery_section a:hover:after {
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}
.wed_gallery_wrapper .wedingService.swiper-container .bullets .swiper-pagination-bullet {
    margin: 0;
}
/********************************************************
    10. Testimonial CSS Start
********************************************************/
.wed_testimonial_wrapper {
    width: 100%;
    display: inline-block;
    background-image: url('../images/client-bg.png');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    padding: 87px 0 75px;
}
.wed_testimonial_wrapper .wed_heading_wrpper{
    max-width: 480px;
}
.wed_testimonial_wrapper:after {
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    inset: 0;
}
.wed_testimonials_section .swiper-container {
    overflow-x: hidden;
}
.wed_test_head {
    position: relative;
    z-index: 1;
}
.wed_test_head h4{
    color: var(--main-white-color);
}
.wed_testimonial_wrapper .wed_heading {
    margin: 0px 0 20px 0;
}
.wed_testimonial_section {
    padding: 0 30px 30px;
    text-align: center;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    font-size: 17px;
    line-height: 28px;
    color: rgb(216 216 216);
    font-weight: 400;
    border: 1px solid #434141;
    background-color: #0a0a0a99;
    border-radius: 12px;
    margin: 70px 0 0;
}
.wed_testimonials_section .wed_nav_button {
    width: 60%;
    margin: auto;
    position: absolute;
    left: 0;
    right: 0;
    z-index: 2;
    top: 104px;
}
.wed_testimonial_img {
    border: none;
    border-radius: 50%;
    display: inline-block;
    position: relative;
    margin-top: -50px;
}
.wed_testimonial_img img {
    width: 170px;
    height: 170px;
    border: 5px solid var(--main-bg-color);
    border-radius: 50%;
}
.wed_testimonial_border {
    display: inline-block;
    width: 100%;
    text-align: center;
    margin-top: 8px;
}
.wed_testimonial_border svg {
    fill: var(--main-green-version3);
    height: 20px;
    width: 100px;
}
.wed_quote1_img {
    margin-top: -46px;
}
.wed_quote2_img {
    margin-top: 46px;
}
.wed_testimonials_quote > img {
    opacity: .40;
}
.wed_testimonial_wrapper .wed_testname {
    margin-top: 16px;
    color: var(--main-white-color);
    font-size: 18px;
    font-weight: 500;
}
.wed_testimonial_section {
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
}
.wed_client_info {
    position: relative;
    padding: 20px 0 0;
}
.wed_quote_img {
    position: absolute;
    content: '';
    z-index: 0;
    height: 70px;
    width: 70px;
    left: -27px;
    top: 0px;
    margin: auto;
    background-color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: rotate(180deg);
}
.wed_quote_img svg {
    height: 50px;
    width: 50px;
}
.wed_quote_img svg path {
    fill: var(--primary-color);
}
/********************************************************
    11. Counter CSS Start
********************************************************/
.wed_counter_wrapper {
    width: 100%;
    display: inline-block;
    position: relative;
    padding: 90px 0 0;
}
.wed_counter_icon {
    position: relative;
    width: 75px;
    height: 75px;
    display: flex;
    align-items: center;
    border-radius: 12px;
}
.wed_counter_icon svg {
    max-width: 70px;
    max-height: 70px;
    object-fit: cover;
}
.wed_counter_icon svg path{
    fill: #fff;
}
.wed_counter_icon img {
    object-fit: cover;
    width: 50px;
    height: 50px;
    text-align: center;
    margin: 0 auto;
}
.wed_counter_icon h1, .wed_counter_text h1 {
    color: var(--main-heading-color);
    font-size: 56px;
    line-height: 70px;
    position: relative;
    z-index: 1;
    font-weight: 500;
}
.wed_counter_text{
    text-align: center;
}
.wed_counter_text p {
    font-size: 22px;
    color: var(--main-para-color);
    font-weight: 400;
}
.counter_item {
    font-size: 22px;
    color: var(--main-green-version3);
    display: flex;
    align-items: center;
    gap: 10px;
    flex-direction: column;
}
/********************************************************
    12. Blog CSS Start
********************************************************/
.wed_blog_wrapper {
    padding: 85px 0 75px;
}
.wed_blog_img {
    position: relative;
    display: inline-block;
    width: 100%;
}
.wed_blog_img img {
    width: 100%;
    border-radius: 12px;
}
.wed_blog_thumb.wed_blog_big .wed_blog_img img{
    border-radius: 12px 12px 0 0;
}
a.wed_blog_img::after{
    background: rgba(255, 255, 255, 0.3);
    bottom: 0;
    content: "";
    left: 50%;
    position: absolute;
    right: 51%;
    top: 0;
    opacity: 1;
    pointer-events: none;
    -webkit-transition: all 400ms linear;
    transition: all 400ms linear;
}
.wed_blog_thumb:hover a.wed_blog_img::after{
    left: 0;
    right: 0;
    opacity: 0;
    -webkit-transition: all 400ms linear;
    transition: all 400ms linear;
}
.wed_blog_info li {
    display: inline-block;
    margin-left: 14px;
}
.wed_blog_info li:first-child {
    margin-left: 0;
}
.blog_text {
    display: flex;
    align-items: center;
    padding: 20px 0 20px;
}
.blog_text ul{
    flex-basis: 25%;
    text-align: center;
    margin: 0;
    padding: 0;
}
.blog_text ul li:nth-child(1){
    font-size: 55px;
    line-height: 44px;
    font-weight: 500;
    -webkit-text-fill-color: var(--main-white-color);
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: var(--primary-color);
}
.blog_text ul li:nth-child(2){
    font-weight: 400;
    font-size: 20px;
    line-height: 29px;
    display: block;
    color: var(--primary-color);
}
.wed_blog_items .wed_blog_thumb {
    display: flex;
    align-items: center;
    gap: 20px;
}
.wed_blog_info {
    margin-bottom: 11px;
}
.wed_blog_info li img {
    margin-right: 10px;
    vertical-align: middle;
}
.wed_blog_info a {
    color: var(--main-green-version3);
}
.wed_blog_title {
    font-size: 25px;
    font-weight: 500;
    color: var(--main-green-version3);
}
.wed_blog_title:hover {
    color: var(--primary-color);
}
.wed_blog_thumb {
    margin-bottom: 28px;
    position: relative;
    overflow: hidden;
}
.wed_blog_thumb:last-child{
    margin-bottom: 0;
}
.wed_blog_title, .wed_blog_title:hover {
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
}
.wed_blog_wrapper .swiper-container .bullets .swiper-pagination-bullet {
    margin: 0;
}
.blog_item_text{
    display: inline-block;
}
.blog_item_text ul{
    flex-basis: content;
}
.wed_blog_items .wed_blog_thumb > a.wed_blog_img {
    width: 100%;
    text-align: center;
    max-width: 100%;
    flex: 0 0 32%;
}
.blog_item_text h4.wed_blog_title {
    max-width: 380px;
    margin: 0 0 5px;
}
.blog_item_text ul.wed_blog_info li {
    text-align: left;
    margin-left: 0;
}
/********************************************************
    13. Contact CSS Start
********************************************************/
.wed_contact_Wrapper {
    padding: 85px 0 90px;
    position: relative;
}
.wed_contact_Wrapper .wed_subHeading {
    position: relative;
    opacity: 1;
    visibility: visible;
    background-color: transparent;
    padding: 0;
    margin: 0 0 20px;
}
.wed_contact_Wrapper .wed_btn {
    margin-top: 0;
}
.wed_form_field {
    border: none;
    width: 100%;
    height: 50px;
    margin-bottom: 30px;
    padding: 0 30px;
    background: var(--main-white-color);
    font-weight: 500;
    border-radius: 12px;
    color: var(--main-para-color);
}
.wed_form_field:focus-visible{
    outline: none;
}
.wed_form_field:focus{
    border: 1px solid var(--primary-color);
}
textarea.wed_form_field {
    height: 120px;
    padding: 22px 30px;
    resize: none;
    border-radius: 10px;
    margin: 0;
}
.wed_form_field::placeholder, .wed_form_field::-webkit-input-placeholder {
	color: var(--main-pink-version2);
}
.wed_form_field:-moz-placeholder, .wed_form_field:-ms-input-placeholder {
	color: var(--main-pink-version2);
}
.wed_contact_info_wrapper ul li {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 40px;
}
.wed_contact_info_wrapper ul li:last-child {
    margin-bottom: 0;
}
.wed_contact_info_icon {
    display: inline-block;
    width: 70px;
    height: 70px;
    line-height: 56px;
    background-color: var(--primary-color);
    text-align: center;
    border-radius: 50%;
    border: 1px solid var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
}
.wed_contact_info_icon svg {
    height: 30px;
    width: 30px;
    object-fit: cover;
    fill: var(--main-white-color);
}
.wed_contact_info_wrapper ul li .wed_contact_info_text {
    font-size: 24px;
    position: relative;
    display: inline-block;
    width: calc(100% - 70px);
    padding: 0 0 0 20px;
}
.wed_contact_info_wrapper ul li .wed_contact_info_text a {
    color: var(--main-para-color);
    font-size: 20px;
    font-weight: 400;
    position: relative;
    padding: 0;
    display: inline-block;
    width: 100%;
    line-height: 30px;
}
.wed_contact_info_text h3{
    color: var(--main-heading-color);
    font-size: 25px;
    font-weight: 500;
}
.wed_contact_info_wrapper, textarea.wed_form_field {
    margin-bottom: 30px;
}
.wed_contact_Wrapper .wed_btn {
    margin-bottom: 5px;
}
/********************************************************
    14. Newsletter CSS Start
********************************************************/
.wed_newsletter_wrapper {
    padding: 80px 0 0;
    position: relative;
    width: 100%;
    display: inline-block;
    background-color: rgb(194 96 106);
}
.wed_newsletter_wrap {
    max-width: 900px;
    background-color: var(--main-bg-color);
    margin: 0 auto;
    text-align: center;
    padding: 50px 0;
    border-radius: 12px;
}
.wed_newsletter_heading h1 {
    color: var(--main-green-version3);
    font-size: 46px;
    font-weight: 700;
    margin-bottom: 0;
}
.wed_subscribe_holder {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    position: relative;
}
.wed_subscribe_holder input {
    border: none;
    height: 60px;
    padding: 0 200px 0 30px;
    width: 100%;
    line-height: 60px;
    background: var(--main-white-color);
    color: var(--main-para-color);
    border-radius: 12px;
    border: 1px solid var(--main-white-color);
}
.wed_subscribe_holder input:focus-visible{
    border-color: var(--primary-color);
    outline-color: var(--primary-color);
}

.wed_subscribe_holder input::placeholder {
    color: var(--main-green-version2);
    opacity: .6;
}
.wed_subscribe_holder .wed_btn {
    margin: 0;
    position: absolute;
    right: 5px;
    height: auto;
    top: 5px;
    bottom: 5px;
}
.wed_contact_info_wrapper ul li:hover .wed_contact_info_icon {
    background: transparent;
}
.wed_contact_info_wrapper ul li:hover .wed_contact_info_icon svg {
    fill: var(--primary-color);
}
.wed_contact_info_wrapper ul li:hover .wed_contact_info_icon, .wed_contact_info_wrapper ul li .wed_contact_info_icon {
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
}
ul.wed_footer_menu {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 50px;
    padding: 30px 0 0;
}
ul.wed_footer_menu li{
    text-decoration: none;
    list-style-type: none;
}
ul.wed_footer_menu li a{
    font-weight: 500;
    font-size: 18px;
    color: var(--main-white-color);
}
/********************************************************
    15. Footer CSS Start
********************************************************/
.wed_footer_main_wrapper {
    padding: 48px 0 0;
    position: relative;
    width: 100%;
    display: inline-block;
    background-color: #c2606a;
}
.wed_footer_main_wrapper .wed_subHeading {
    margin-top: 30px;
    background-color: transparent;
    padding: 0;
    visibility: visible;
    opacity: 1;
}
.wed_copyright_wrapper {
    padding: 17px 0 14px;
    color: var(--main-bg-color);
    position: relative;
    margin-top: 80px;
    background-color: #000;
}
/********************************************************
	23. Blog Single Page Start
*******************************************************/
.blogPage_wrapper.blogPageSingleWrapper {
    padding: 80px 0 21px;
}
.blogPageBlockquote {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}
.blogPageBlockquote_img {
    width: 160px;
    margin-right: 10px;
    position: relative;
}
.blogBlockquoteQuate {
    width: calc(100% - 170px);
    color: var(--main-link-color);
    position: relative;
    text-align: center;
}
.blogBlockquoteQuate p, .blogQuateUser {
    text-align: left;
}
.blogPageBlockquote_img img.blogQuateUser {
    border: 3px solid var(--main-green-version2);
    border-radius: 50%;
    width: 130px;
    height: 130px;
}
.blogPageBlockquote_img:before {
    content: "\f10e";
    right: 12px;
    font-style: normal;
    font-weight: normal;
    text-decoration: none;
    color: var(--main-green-version2);
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    width: 40px;
    height: 40px;
    line-height: 32px;
    background: var(--main-bg-color);
    border: 5px solid var(--main-green-version2);
    padding-left: 8px;
    border-radius: 100%;
}
.blogQuateUser {
    color: var(--main-link-color);
    font-weight: 700;
    font-size: 20px;
    width: 100%;
    display: inline-block;
}
.blogQuateUser > span {
    color: var(--main-txt-color);
    font-size: 16px;
    font-weight: 400;
}
.blogBlockquoteQuate:before {
    content: "\f10e";
    font-style: normal;
    font-weight: normal;
    text-decoration: none;
    color: var(--main-green-version2);
    position: absolute;
    left: 0;
    right: 0;
    font-size: 2%;
    margin: auto;
}
.blogBlockquoteQuate:before {
    content: "\f10e";
    font-style: normal;
    font-weight: normal;
    text-decoration: none;
    color: var(--main-green-version2);
    position: absolute;
    left: 0;
    right: 0;
    font-size: 84px;
    margin: auto;
    top: 50%;
    opacity: .1;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
}
.blogImgTextContainer {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}
.blogImgTextContainer img {
    width: 370px;
    display: inline-block;
    margin: 6px 15px 6px 0;
}
.blogImgTextContainer p {
    display: inline-block;
    width: calc(100% - 385px);
}
.blogAuthoreMessageBox {
    background: var(--main-green-version2);
    border: none;
    border-radius: 0;
    padding: 30px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin: 74px 0 73px;
    color: var(--main-bg-color);
}
.blogAuthoreContent h5 {
    color: var(--main-bg-color);
    font-weight: 700;
    font-size: 20px;
}
.blogAuthoreContent h5 span {
    font-weight: 400;
    font-size: 16px;
}
.blogAuthoreContent {
    width: calc(100% - 140px);
}
.blogAuthoreImg {
    width: 110px;
    height: 110px;
    overflow: hidden;
    margin-right: 30px;
}
.blogAuthoreImg img {
    width: 110px;
    height: 110px;
    border: none;
    border-radius: 100%;
    object-fit: fill;
}
.blogCommentHolder {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}
.blogCmntDetail {
    width: calc(100% - 130px);
}
.blogCmntUser {
    width: 100px;
    height: 100px;
    overflow: hidden;
    margin-right: 30px;
}
.blogCmntUser img {
    width: 100px;
    height: 100px;
    border: none;
    border-radius: 100%;
    object-fit: fill;
}
.blogCommnets > ul > li {
    margin-bottom: 26px;
    display: inline-block;
}
.blogCommnets ul li ul {
    padding-left: 80px;
}
.blogCommnets > ul > li > ul > li {
    margin-top: 26px;
}
.blogPageCommentForm {
    margin-top: 43px;
}
.blogInputFieldInner {
    width: 100%;
    border: 1px solid var(--main-border-color);
    padding: 0 20px;
    height: 50px;
    border-radius: 0;
    display: flex;
}
textarea.blogInputFieldInner {
    height: 150px;
    resize: none;
    padding: 12px 20px;
}
.blogInputField {
    margin-bottom: 30px;
}
.blogPageCommentForm .blogSectionHeading {
    margin-bottom: 40px;
}
.blogPageCommentForm .theme_btn {
    margin: 0;
}
.blogCmntReply {
    color: var(--main-green-version2);
    margin-left: 15px;
}
.blogCmntReply svg {
    width: 16px;
    fill: var(--main-green-version2);
}
.blogDivider {
    margin: 22px 0;
    display: block;
}
a.pnt_btn.blogBtn {
    background: var(--main-green-version2);
    color: var(--main-bg-color);
}
.blogPaginationWrapper {
    text-align: center;
}
.blogSectionHeading {
    font-size: 32px;
    font-weight: 700;
    margin: 0 0 26px;
}
.wed_copyright_wrapper a.white:hover,
.wed_copyright_wrapper a.white {
    color: var(--main-white-color);
}

/********************************************************
	16. Responsive CSS Start
********************************************************/
@media (min-width: 991.98px) {
    ul.sub_menu {
        background: var(--main-blue-version4);
        top: 80px;
    }
    .main_menu_wrapper ul > li ul.sub_menu li a {
        padding: 15px 20px 0;
    }
    header.fixed_header {
        position: fixed;
        top: 0;
        right: 0;
        left: 0;
        z-index: 99;
        box-shadow: 0 8px 20px 0 rgba(0, 0, 0, 0.085);
        padding: 0;
    }
}

@media (min-width: 1699.98px) {
    .wed_header_wrapper .container-fluid, .wed_banner_wrapper .container-fluid {
        max-width: 1626px;
    }
}

@media (min-width: 1200px) {
	.wed_married_img {
        padding-left: 100px;
    }
    .wed_married_img .wed_heading_wrpper {
        width: 100%;
    }
}
@media (max-width: 1199.98px) {
    .wed_about_wrapper {
        padding: 75px 0 50px;
    }
}

@media (max-width: 1499px) {
    .wed_banner_text h1 {
        font-size: 57px;
    }
}
@media (max-width: 1399px) {
    .wed_counter_text p{
        font-size: 18px;
    }
    .wed_heading{
        font-size: 36px;
    }
}
@media (max-width: 1299px) {
    .wed_ban_right {
        gap: 10px;
    }
}
@media (max-width: 1199px) {
    .blog_text ul li:nth-child(2){
        font-size: 18px;
    }
    .wed_counter_icon{
        height: 70px;
        width: 70px;
    }
    .wed_ab2_img{
        display: none;
    }
   
}
@media (max-width: 991.98px) {
    .main_menu_wrapper li.has_submenu:before, .main_menu_wrapper li.has_submenu:after {
        background: var(--main-wed-pink);
    }
    .main_menu_wrapper ul > li > a {
        padding: 15px 8px 0px;
    }
    .wed_subHeading {
        font-size: 22px;
    }
    .wed_testimonials_section .wed_nav_button {
        width: 96%;
    }
    .wed_testimonials_quote {
        width: 85%;
    }
    .menu_btn {
        padding: 18px 0 16px 0;
    }
    .wed_about_wrapper {
        padding: 80px 0 50px;
    }
    .wed_services_wrapper {
        padding: 80px 0 74px;
    }
    .wed_gallery_wrapper {
        padding: 152px 0 146px;
    }
    .wed_testimonial_wrapper {
        padding: 80px 0 4px;
    }
    .wed_banner_text h6 {
        margin: 0 auto 20px;
    }
    .wed_about_img {
        top: 0;
        margin: 0 auto 10px;
        text-align: center;
    }
    .wed_newsletter_wrap{
        padding: 50px 20px;
    }
    .wed_logo {
        padding: 15px 0;
    }
    .wed_banner_text h1 {
        font-size: 50px;
    }

}
/* for menu responsive */
@media (max-width: 991.98px) {
    body {
        font-size: 14px;
        line-height: 20px;
    }
    .menu_btn {
        width: 50px;
        height: 50px;
        display: inline-block;
        text-align: center;
        line-height: 26px;
        border: 1px solid transparent;
        border-radius: 50%;
    }
    .menu_btn span {
        display: block;
        width: 18px;
        height: 2px;
        transition: 0.3s;
        margin: 0 auto 3px;
        background: var(--primary-color);
    }
    .menu_btn_wrap.open .menu_btn span:nth-child(2) {
        opacity: 0;
        visibility: hidden;
    }
    .menu_btn_wrap.open .menu_btn span:nth-child(1) {
        transform: translate(0px, 4px) rotate(-48deg);
    }
    .menu_btn_wrap.open .menu_btn span:nth-child(3) {
        transform: translate(0px, -6px) rotate(48deg);
    }
    .main_menu_wrapper {
        position: fixed;
        left: -250px;
        top: 0;
        bottom: 0;
        width: 250px;
        z-index: 999;
        overflow: hidden;
        overflow-y: auto;
        background: var(--main-bg-color);
        box-shadow: 2px 4px 28px 0px rgba( 0, 0, 0, 0.1);
    }
    .main_menu_wrapper.open {
        left: 0;
    }
    .main_menu_wrapper,
    .main_menu_wrapper.open {
        -webkit-transition: all 0.5s;
        -moz-transition: all 0.5s;
        -ms-transition: all 0.5s;
        -o-transition: all 0.5s;
        transition: all 0.5s;
    }
    .main_menu_wrapper li {
        width: 100%;
        text-align: left;
        padding-bottom: 15px;
        border-bottom: 1px solid var(--main-white-color);
    }
    .main_menu_wrapper li.has_submenu {
        padding-left: 0;
    }
    .main_menu_wrapper li.has_submenu>ul {
        display: none;
    }
    .main_menu_wrapper li:last-child {
        border: none;
        padding-bottom: 0;
    }
    .main_menu_wrapper li>ul>li {
        padding-left: 25px;
    }
    .main_menu_wrapper ul>li>a {
        padding: 15px 20px 0px;
        width: 100%;
    }
    .main_menu_wrapper li.has_submenu:before,
    .main_menu_wrapper li.has_submenu:after {
        position: absolute;
        bottom: 0;
        content: '';
    }
    .main_menu_wrapper li.has_submenu:after {
        right: 21px;
        width: 12px;
        height: 2px;
        top: 25px;
    }
    .main_menu_wrapper li.has_submenu:before {
        right: 26px;
        width: 2px;
        height: 12px;
        top: 20px;
    }
    .main_menu_wrapper li.has_submenu.open::before {
        content: unset;
    }
    .main_menu_wrapper::-webkit-scrollbar {
        width: 3px;
    }
    .main_menu_wrapper::-webkit-scrollbar-track {
        background-color: var(--main-border-color);
    }
    .main_menu_wrapper::-webkit-scrollbar-thumb {
        background-color: var(--main-txt-color);
    }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
    .wed_about_time {
        -webkit-transform: unset;
        -moz-transform: unset;
        -ms-transform: unset;
        -o-transform: unset;
        transform: unset;
        font-size: 32px;
        position: unset;
        writing-mode: unset;
        margin-top: 30px;
        width: 100%;
    }
}

@media (max-width: 1900px) {
    .wed_married_detail {
        padding: 90px 0px 0;
    }
    .wed_nav_button .prev {
        left: 20px;
    }
    .wed_nav_button .next {
        right: 20px;
    }
    .wed_married_text .wed_subHeading {
        max-width: 300px;
        margin: 0 auto;
    }
}
@media (max-width: 767.98px) {
    .wed_heading {
        font-size: 30px;
        line-height: 40px;
    }
    .wed_logo a {
        width: 160px;
        height: 100px;
    }
    .wed_logo img {
        height: 45px;
    }
    .wed_banner_text h1 {
        font-size: 50px;
        line-height: 60px;
    }
    .wed_bottom_shape, .wed_top_shape {
        height: 48px;
    }
    .wed_testimonials_quote {
        width: 100%;
    }
    .wed_testimonial_section {
        padding: 0 15px 35px;
    }
    .wed_about_time {
        -webkit-transform: unset;
        -moz-transform: unset;
        -ms-transform: unset;
        -o-transform: unset;
        transform: unset;
        font-size: 32px;
        position: unset;
        writing-mode: unset;
        margin-top: 30px;
    }
    .wed_services_wrapper {
        padding: 80px 0 74px;
    }
    .wed_gallery_wrapper {
        padding: 117px 0 111px;
    }
    .wed_testimonial_wrapper {
        padding: 80px 0 7px;
    }
    .wed_blog_wrapper {
        padding: 74px 0 74px;
    }
    .wed_contact_Wrapper {
        padding: 117px 0 70px;
    }
}

@media (max-width: 575.98px) {
    .wed_testimonials_section .wed_nav_button {
        top: unset;
        bottom: 0;
    }
    .wed_quote1_img, .wed_quote2_img {
        display: none;
    }
    .wed_testimonials_quote {
        justify-content: center;
    }
    .wed_contact_form form .row {
        flex-direction: column-reverse;
    }
    .wed_contact_info_wrapper ul li .wed_contact_info_text a {
        font-size: 16px;
    }
    .wed_subscribe_holder .wed_btn {
        margin: 15px auto 0;
        position: unset;
    }
    .wed_subscribe_holder input {
        height: 50px;
        line-height: 50px;
        padding: 0 30px;
    }
    .wed_about_small_img {
        min-width: 100%;
        max-width: 10%;
        margin: 0;
    }
    img.wed_about_big_img {
        width: 100%;
        margin-bottom: 30px;
    }
    .menu_btn {
        padding: 20px 0 0;
    }
    .wed_bottom_shape {
        bottom: -10px;
    }
    .wed_top_shape {
        top: -11px;
    }
    .wed_banner_wrapper {
        text-align: center;
        padding: 60px 0 60px;
    }
    .wed_banner_text h1 {
        font-size: 40px;
        line-height: 60px;
    }
    .wed_ban_right2{
        gap: 5px;
    }
    .wed_ban_right{
        gap: 5px;
    }
    .wed_contact_info_wrapper ul li .wed_contact_info_text{
        padding: 0;
    }
    .wed_contact_info_icon {
        width: 50px;
        height: 50px;
    }
    .wed_contact_info_wrapper ul li .wed_contact_info_text {
        font-size: 24px;
        position: relative;
        display: inline-block;
        width: calc(100% - 53px);
        padding: 0 0 0 20px;
    }
    .wed_banner_text h6 {
        text-align: center;
    }
    .wed_banner_text{
        margin: 0 0 20px;
    }
    ul.wed_footer_menu{
        gap: 20px;
        flex-wrap: wrap;
    }
}
@media (max-width: 375.98px) {
    .wed_contact_info_wrapper ul li .wed_contact_info_text {     
        width: calc(100% - 53px);
        padding: 0;
    }
    .wed_banner_text h1 {
        font-size: 35px;
        line-height: 47px;
    }
    .wed_heading {
        font-size: 22px;
        line-height: 30px;
    }
    .wed_contact_info_text h3{
        font-size: 22px;
    }
    .blog_text ul li:nth-child(1){
        font-size: 44px;
    }
    .blog_text{
        gap: 7px;
    }
    .wed_counter_icon h1, .wed_counter_text h1{
        font-size: 50px;
    }
}