/* -----------------------------------------------------------------------------------

 00. Google fonts
 01. Basics style
 02. Important style
 03. Preloader
 04. Selection style 
 05. Owl-Theme custom style
 06. Section style
 07. Navbar style
 08. Header style
 09. Slider style
 10. Page Banner Header style
 11. Content Lines style
 12. About style 
 13. Services style
 14. Team style
 15. Pricing style
 16. Clients style
 17. FAQs style
 18. Gallery style
 19. Error Page 404 style
 20. Promo Video and Testimonials style
 21. Blog Homepage style
 22. Blog style
 23. Post style
 24. Buttons style
 25. Footer style
 26. toTop Button style
 37. Responsive (Media Query)
 28. Overlay Effect Bg image style

----------------------------------------------------------------------------------- */


/* ======= Google fonts (Cormorant Garamond & Didact Gothic) ======= */
@import url('../../../../../css2');

/* ======= Basic style ======= */
html,
body {
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    -moz-font-smoothing: antialiased;
    font-smoothing: antialiased;
    overflow-x: hidden;
}
* {
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    outline: none;
    list-style: none;
    word-wrap: break-word;
}
body {
    font-family: 'Cormorant Garamond', serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.75em;
    color: #000;
    overflow-x: hidden !important;
    background: #fcf8f3;
}
p {
    font-family: 'Cormorant Garamond', serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.75em;
    color: #000;
    margin-bottom: 20px;
    font-style: italic;
}
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Didact Gothic', sans-serif;
    font-weight: 400;
    line-height: 1.25em;
    margin: 0 0 20px 0;
}
img {
    width: 100%;
    height: auto;
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
    color: #eccba1;
}
span,
a,
a:hover {
    display: inline-block;
    text-decoration: none;
    color: inherit;
}
b {
    font-weight: 400;
    color: #613228;
}
/* text field */
button,
input,
optgroup,
select,
textarea {
    font-family: 'Cormorant Garamond', serif;
}
input[type="password"]:focus,
input[type="email"]:focus,
input[type="text"]:focus,
input[type="file"]:focus,
input[type="radio"]:focus,
input[type="checkbox"]:focus,
textarea:focus {
    outline: none;
}
input[type="password"],
input[type="email"],
input[type="text"],
input[type="file"],
textarea {
    max-width: 100%;
    margin-bottom: 10px;
    padding: 10px 0;
    height: auto;
    background-color: transparent;
    -webkit-box-shadow: none;
    box-shadow: none;
    border-width: 0 0 1px;
    border-style: solid;
    display: block;
    width: 100%;
    line-height: 1.5em;
    font-style: italic;
    font-size: 18px;
    color: #000;
    background-image: none;
    border-bottom: 1px dashed #eccba1;
    border-color: ease-in-out .15s, box-shadow ease-in-out .15s;
}
input:focus,
textarea:focus {
    border-bottom-width: 1px;
    border-color: #613228;
}

.respon-img {
    display: none !important;
}

/* submit and alert success  */
input[type="submit"],
input[type="reset"],
input[type="button"],
button {
    font-family: 'Didact Gothic', sans-serif;
    font-size: 16px;
    text-shadow: none;
    -webkit-box-shadow: none;
    box-shadow: none;
    line-height: 1.75em;
    -webkit-transition: background-color .15s ease-out;
    transition: background-color .15s ease-out;
    border: none;
    color: #fff;
    background: #613228;
    border: 1px solid #613228;
    padding: 10px 27px;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}
input[type="submit"]:hover,
input[type="reset"]:hover,
input[type="button"]:hover,
button:hover {
    background-color: transparent;
    border: 1px solid #613228;
    color: #000;
}
.alert-success {
    background: transparent;
    color: #000;
    border: 1px solid #613228;
    border-radius: 0px;
}

select {
    padding: 10px;
    border-radius: 5px;
}
table,
th,
tr,
td {
    border: 1px dashed #ececec;
}
th,
tr,
td {
    padding: 10px;
}
input[type="radio"],
input[type="checkbox"] {
    display: inline;
}
hr {
    margin-top: 5px;
    margin-bottom: 20px;
    border: 0;
    border-top: 1px dashed rgba(255, 255, 255, 0.3);
}


/* ======= Important style ======= */
/* margins */
.mt-0 {
  margin-top: 0 !important;
}
.mt-15 {
  margin-top: 15px !important;
}
.mt-30 {
  margin-top: 30px !important;
}
.mt-45 {
  margin-top: 45px !important;
}
.mt-60 {
  margin-top: 60px !important;
}
.mt-90 {
  margin-top: 90px !important;
}
.mb-0 {
  margin-bottom: 0 !important;
}
.mb-15 {
  margin-bottom: 15px !important;
}
.mb-30 {
  margin-bottom: 30px !important;
}
.mb-45 {
  margin-bottom: 45px !important;
}
.mb-60 {
  margin-bottom: 60px !important;
}
.mb-90 {
  margin-bottom: 90px !important;
}
.pt-20 {
    padding-top: 20px;
}
/* placeholder */
::-webkit-input-placeholder {
    color: #000;
    font-weight: 400;
}
:-moz-placeholder {
    color: #000;
}
::-moz-placeholder {
    color: #000;
    opacity: 1;
}
:-ms-input-placeholder {
    color: #000;
}
.bg-cream {
    background: #faf2e7;
}
.o-hidden {
    overflow: hidden;
}
.position-re {
    position: relative;
}
.full-width {
    width: 100%;
}
.bg-img {
    background-size: cover;
    background-repeat: no-repeat;
}


.bg-img-position-center {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.bg-img-position-top {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: top;
}

.bg-img-position-bottom {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: bottom;
}

.bg-fixed {
    background-attachment: fixed;
}
.pattern {
    background-repeat: repeat;
    background-size: auto;
}
.bold {
    font-weight: 500;
}
.count {
    font-family: 'Didact Gothic', sans-serif;
}
.valign {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.v-middle {
    position: absolute;
    width: 100%;
    top: 50%;
    left: 0;
    -webkit-transform: translate(0%, -50%);
    transform: translate(0%, -50%);
}
.v-bottom {
    position: absolute;
    width: 100%;
    bottom: 5%;
    left: 0;
    -webkit-transform: translate(0%, -5%);
    transform: translate(0%, -5%);
}
.js .animate-box {
    opacity: 0;
}


/* ======= Preloader ======= */
.preloader-bg,
#preloader {
    position: fixed;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background: #fcf8f3;
    z-index: 999999;
}
#preloader {
    display: table;
    table-layout: fixed;
}
#preloader-status {
    display: table-cell;
    vertical-align: middle;
}
.preloader-position {
    position: relative;
    margin: 0 auto;
    text-align: center;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -ms-box-sizing: border-box;
    -o-box-sizing: border-box;
    box-sizing: border-box;
}
.loader {
    position: relative;
    width: 45px;
    height: 45px;
    left: 50%;
    top: auto;
    margin-left: -22px;
    margin-top: 1px;
    -webkit-animation: rotate 1s infinite linear;
    -moz-animation: rotate 1s infinite linear;
    -ms-animation: rotate 1s infinite linear;
    -o-animation: rotate 1s infinite linear;
    animation: rotate 1s infinite linear;
    border: 2px solid #f5e3cd;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    border-radius: 50%;
}
.loader span {
    position: absolute;
    width: 45px;
    height: 45px;
    top: -1px;
    left: -1px;
    border: 2px solid transparent;
    border-top: 2px solid #613228;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    border-radius: 50%;
}
@-webkit-keyframes rotate {
    0% {
        -webkit-transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
    }
}
@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}



/* ======= Selection style ======= */
::-webkit-selection {
    color: #000;
    background: rgba(236, 203, 161, 0.1);
}
::-moz-selection {
    color: #000;
    background: rgba(236, 203, 161, 0.1);
}
::selection {
    color: #000;
    background: rgba(236, 203, 161, 0.1);
}


/* ======= Owl-Theme custom style ======= */
.owl-theme .owl-nav.disabled + .owl-dots {
    margin-top: 0px;
    line-height: .7;
    display: block;
}
.owl-theme .owl-dots .owl-dot span {
    width: 9px;
    height: 9px;
    margin: 0 3px;
    border-radius: 50%;
    background: #eccba1;
    border: 1px dashed #eccba1;
}
.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
    background: #613228;
    border: 1px dashed #613228;
}


/* ======= Section style ======= */
.section-padding {
    padding: 90px 0;
}
.section-padding2 {
    padding: 0 0 90px 0;
}
.section-padding h6 {
    color: #000;
    font-size: 20px;
    margin-bottom: 20px;
}
.section-title {
    position: relative;
    margin-bottom: 30px;
    text-align: center;
}
.section-title h2 {
    font-size: 50px;
    color: #613228;
}
.section-title span {
    text-transform: uppercase;
    color: #000;
    font-family: 'Didact Gothic', sans-serif;
    font-size: 13px;
    letter-spacing: 5px;
}
.section-title2 {
    font-size: 36px;
    color: #613228;
}


/* ======= Navbar style ======= */
.navbar {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    background: transparent;
    z-index: 99;
    padding-right: 0;
    padding-left: 0;
    padding-top: 30px;
    padding-bottom: 0;
    height: 90px;
}
.navbar .icon-bar {
    color: #613228;
}
.navbar .navbar-nav .nav-link {
    font-family: 'Didact Gothic', sans-serif;
    font-size: 17px;
    font-weight: 400;
    color: #fff;
    margin: 5px 5px;
    -webkit-transition: all .4s;
    transition: all .4s;
}
.navbar .navbar-nav .nav-link.nav-color {
    color: #000;
}
.navbar .navbar-nav .nav-link:hover {
    color: #fff;
}
.navbar .navbar-nav .active {
    color: #fff !important;
}
.nav-scroll {
    background: #000000ab;
    padding: 0 0 0 0;
    position: fixed;
    top: -100px;
    left: 0;
    width: 100%;
    -webkit-transition: -webkit-transform .5s;
    transition: -webkit-transform .5s;
    transition: transform .5s;
    transition: transform .5s, -webkit-transform .5s;
    -webkit-transform: translateY(100px);
    transform: translateY(100px);
    border: none;
    border-bottom: 1px dashed rgba(0, 0, 0, 0.04);
}
.nav-scroll .icon-bar {
    color: #613228;
}
.nav-scroll .navbar-nav .nav-link {
    color: #fff;
}
.nav-scroll .navbar-nav .active {
    color: #fff !important;
}
.nav-scroll .navbar-nav .logo {
    padding: 15px 0;
    color: #000;
}
.nav-scroll .logo {
    width: 100px;
}
.nav-scroll .logo-wrapper .logo h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 40px;
    font-weight: 400;
    margin-bottom: 0px;
    display: block;
    width: 100%;
    position: relative;
    color: #613228;
    line-height: 1.25em;
    letter-spacing: 5px;
    display: none;
}
.nav-scroll .logo-wrapper .logo span {
    display: block;
    font-family: 'Cormorant Garamond', serif;
    font-size: 13px;
    color: #575757;
    font-weight: 400;
    letter-spacing: 3px;
    display: block;
    margin-top: 3px;
    line-height: 1.2em;
    text-transform: uppercase;
    margin-left: 5px;
    display: none !important;
}
.nav-scroll .logo-wrapper {
    padding: 15px 70px 15px 150px;
    background: #000;
}
.logo-wrapper {
    float: left;
    background: #000;
    padding: 30px 50px;
}
.logo-wrapper .logo h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 45px;
    font-weight: 400;
    display: block;
    width: 100%;
    position: relative;
    color: #613228;
    letter-spacing: 9px;
    margin-bottom: 0;
}
.logo-wrapper .logo h2 a i {
    color: #000;
    font-size: 20px;
    vertical-align: super;
}
.logo-wrapper .logo span {
    display: block;
    font-family: 'Cormorant Garamond', serif;
    font-size: 12px;
    color: #000;
    font-weight: 400;
    letter-spacing: 4px;
    display: block;
    margin-top: 5px;
    line-height: 1.5em;
    text-transform: uppercase;
}
.logo-1 {
    padding: 0;
    width: 84px;
    text-align: center;
}
.dropdown:hover .dropdown-menu,
.dropdown:hover .mega-menu {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateY(0);
    transform: translateY(0);
}
.dropdown .nav-link {
    cursor: pointer;
}
.dropdown .nav-link i {
    padding-left: 1px;
    font-size: 9px;
}
.dropdown-item {
    position: relative;
}
.dropdown-item:hover .sub-menu {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateY(0);
    transform: translateY(0);
}
.dropdown-item span {
    display: block;
    cursor: pointer;
}
.dropdown-menu,
.sub-menu {
    display: block;
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateY(20px);
    transform: translateY(20px);
    width: 200px;
    padding: 15px 10px;
    border-radius: 0;
    border: 0;
    background-color: #faf2e7;
    -webkit-transition: all .3s;
    transition: all .3s;
}
.dropdown-menu .dropdown-item,
.sub-menu .dropdown-item {
    padding: 5px 15px;
    font-family: 'Didact Gothic', sans-serif;
    font-size: 15px;
    font-weight: 400;
    color: #613228;
    position: relative;
    -webkit-transition: all .4s;
    transition: all .4s;
    border-bottom: 1px dashed rgba(0, 0, 0, 0.04);
    background-color: transparent;
}
.dropdown-menu .dropdown-item:last-child,
.sub-menu .dropdown-item:last-child {
    border-bottom: none;
}
.dropdown-menu .dropdown-item:hover,
.sub-menu .dropdown-item:hover {
    background: transparent;
    padding-left: 20px;
    color: #000;
}
.dropdown-menu .dropdown-item a,
.sub-menu .dropdown-item a {
    display: block;
}
.dropdown-menu .dropdown-item i,
.sub-menu .dropdown-item i {
    padding: 13px 0 0 5px;
    font-size: 8px;
    float: right;
}
.dropdown-menu .dropdown-item em,
.sub-menu .dropdown-item em {
    font-size: 8px;
    background-color: #000;
    padding: 2px 4px;
    color: #fcf8f3;
    border-radius: 2px;
    position: absolute;
    right: 10px;
    top: 5px;
}
.dropdown-menu.last {
    left: -60%;
}
.sub-menu {
    position: absolute;
    left: 100%;
    top: -5px;
}
.sub-menu.left {
    left: -100%;
    margin-left: -20px;
}
.mega-menu {
    position: absolute;
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateY(20px);
    transform: translateY(20px);
    right: -150px;
    width: 800px;
    background-color: #fcf8f3;
    -webkit-box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.05);
    box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.05);
    -webkit-transition: all .3s;
    transition: all .3s;
}
.mega-menu .dropdown-title {
    display: block;
    color: #fcf8f3;
    font-size: 15px;
    font-weight: 400;
    letter-spacing: 5px;
    text-transform: uppercase;
    margin-bottom: 15px;
    padding: 0 15px 15px;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.03);
}
.mega-menu .dropdown-menu {
    position: static !important;
    float: left;
    -webkit-box-shadow: none;
    box-shadow: none;
    border-right: 1px dashed rgba(255, 255, 255, 0.03);
    ;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.03);
    -webkit-transition: all .3s;
    transition: all .3s;
}
@media screen and (max-width: 767px) {
    .navbar {
        padding-left: 0px;
        padding-right: 0px;
        background: #fcf8f3;
        padding-top: 15px;
        padding-bottom: 15px;
    }
    .nav-scroll {
        background: rgb(0 0 0 / 50%) !important;
    }
    .logo-wrapper {
        float: left;
        padding: 15px;
    }
    .nav-scroll .logo-wrapper {
        padding: 15px;
        background-color: #fcf8f3;
    }
}


/* ======= Header style ======= */
.header {
    min-height: 90vh;
    overflow: hidden;
}
.header .caption .o-hidden {
    display: inline-block;
}
.header .caption h2 {
    font-weight: 400;
    font-size: 30px;
}
.header .caption h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 5px;
    color: #fcf8f3;
    text-align: right;
    margin-bottom: 30px;
    -webkit-animation-delay: .2s;
    animation-delay: .2s;
}
.header .caption h1 {
    position: relative;
    font-size: 50px;
    -webkit-animation-delay: .4s;
    animation-delay: .4s;
    color: #613228;
}
.header .caption p {
    font-size: 18px;
    line-height: 1.75em;
    color: #000;
    -webkit-animation-delay: .6s;
    animation-delay: .6s;
    margin-right: 15px;
}
.header .caption p span {
    letter-spacing: 5px;
    text-transform: uppercase;
    margin: 0 5px;
    padding-right: 14px;
    position: relative;
}
.header .caption p span:last-child {
    padding: 0;
}
.header .caption p span:last-child:after {
    display: none;
}
.header .caption p span:after {
    content: '';
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #000;
    position: absolute;
    top: 10px;
    right: 0;
    opacity: .5;
}
.header .caption .butn-dark {
    -webkit-animation-delay: .8s;
    animation-delay: .8s;
    margin-right: 15px;
}
.header .social a {
    color: #eee;
    font-size: 20px;
    margin: 10px 15px;
}


/* ======= Slider style ======= */
.slider .owl-item,
.slider-fade .owl-item {
    height: 100vh;
    position: relative;
}
.slider .item,
.slider-fade .item {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-size: cover;
    background-position: center;
}
.slider .item .caption,
.slider-fade .item .caption {
    z-index: 9;
}
.slider .owl-theme .owl-dots,
.slider-fade .owl-theme .owl-dots {
    position: absolute;
    bottom: 5vh;
    width: 100%;
}
/* owl-nav next and prev */
.owl-nav {
    position: absolute;
    bottom: 7%;
    left: 12%;
}
.owl-prev {
    float: left;
}
.owl-next {
    float: right;
}
.owl-theme .owl-nav [class*=owl-] {
    width: 40px;
    height: 40px;
    line-height: 34px;
    background: transparent;
    border-radius: 100%;
    color: rgba(255, 255, 255, 0.95);
    font-size: 11px;
    margin-right: 3px;
    cursor: pointer;
    border: 1px dashed rgba(255, 255, 255, 0.3);
    transition: all 0.2s ease-in-out;
    transform: scale(1.0);
}
.owl-theme .owl-nav [class*=owl-]:hover {
    transform: scale(0.9);
    background: transparent;
    border: 1px dashed #613228;
    color: #613228;
}
@media screen and (max-width: 768px) {
    .owl-nav {
        display: none;
    }
}





/* ======= Page Banner Header style ======= */
.banner-header {
    height: 50vh;
    z-index: -2;
}
.banner-header h6 {
    font-size: 20px;
    font-weight: 400;
    margin-bottom: 10px;
}
.banner-header h6 a:hover {
    color: #fcf8f3;
}
.banner-header h6 i {
    margin: 0 15px;
    font-size: 10px;
}
.banner-header h5 {
    color: #613228;
    font-size: 17px;
    font-family: 'Cormorant Garamond', serif;
    font-weight: 400;
    margin-bottom: 5px;
}
.banner-header h1 {
    font-size: 40px;
    font-family: 'Cormorant Garamond', serif;
    font-weight: 400;
    color: #613228;
    position: relative;
    margin-bottom: 10px;
    line-height: 1.2em;
}
.banner-header p {
    font-size: 20px;
    font-weight: 400;
    margin-bottom: 0;
    color: #000;
    -webkit-animation-delay: 1s;
    animation-delay: 1s;
}
.banner-header p a {
    color: #613228;
}
@media screen and (max-width: 767px) {
    .banner-header {
        height: 30vh;
        margin-top: 70px;
    }
    .banner-header h6 {
        font-size: 12px;
        font-weight: 400;
        margin-bottom: 10px;
    }
    .banner-header h6 a:hover {
        color: #613228;
    }
    .banner-header h6 i {
        margin: 0 15px;
        font-size: 10px;
    }
    .banner-header h5 {}
    .banner-header h1 {}
    .banner-header p {
        font-size: 20px;
        color: #000;
    }
}
.banner-img:after {
    position: absolute;
    height: 100%;
    right: 0;
    left: 0;
    content: "";
    background: -webkit-linear-gradient(bottom, rgba(252, 248, 243, 1) 0%, rgba(252, 248, 243, .8) 100%, rgba(252, 248, 243, 0.5) 100%);
    background: linear-gradient(to top, rgba(252, 248, 243, 1) 0%, rgba(252, 248, 243, 0.8) 100%, rgba(252, 248, 243, 0.5) 100%);
    object-fit: cover;
}


/* =======  Content Lines style  ======= */
.content-wrapper {
    position: relative;
}
.content-lines-wrapper {
    position: absolute;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}
.content-lines-inner {
    position: absolute;
    width: 1140px;
    left: 50%;
    margin-left: -570px;
    top: 0;
    height: 100%;
    border-left: 1px dashed rgba(0, 0, 0, 0.04);
    border-right: 1px dashed rgba(0, 0, 0, 0.04);
    border-bottom: 1px dashed rgba(0, 0, 0, 0.04);
}
.content-lines {
    position: absolute;
    left: 33.666666%;
    right: 33.666666%;
    height: 100%;
    border-left: 1px dashed rgba(0, 0, 0, 0.04);
    border-right: 1px dashed rgba(0, 0, 0, 0.04);
}


/* ======= About style ======= */
.about {}
.about .about-img img:hover {
    transform: scale(0.95);
}
.about .about-img {
    position: relative;
}
.about .about-img .img {
    padding: 0 0 20px 20px;
    position: relative;
}
.about .about-img .img:before {
    content: '';
    position: absolute;
    top: 20px;
    left: 0;
    right: 20px;
    bottom: 0;
    background: #f9efe2;
}
.about .about-img .img img {
    position: relative;
    z-index: 2;
}
.about-img-2 {
    position: relative
}
.about-img .about-img-2 {
    width: 70% !important;
    position: absolute;
    bottom: 0px;
    right: 20px;
    z-index: 3;
    padding: 15px;
    color: #000;
    text-align: center;
    font-style: italic;
}
.about-buro {
    background: #eccba1;
}


/* ======= Services style ======= */
.services {}
.services-con {
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.15);
    display: inline-block;
    position: relative;
    text-align: left;
    width: 100%;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    background-color: transparent;
    box-shadow: none !important;
    padding: 30px 40px 0 0;
    margin-bottom: 20px;
}
.services-con *,
.services-con *:before {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-transition: all 0.4s ease-out;
    transition: all 0.4s ease-out;
}
.services-con img {
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    max-width: 100%;
    position: relative;
    vertical-align: top;
}

.services-con img:hover {
    transform: scale(0.95);
}
.services-con .services-title {
    background-color: #f5e3cd;
    bottom: 40px;
    left: 40px;
    position: absolute;
    right: 0;
    top: 0;
}
.services-con .services-title h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 18px;
    font-style: italic;
    position: absolute;
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
    -webkit-transform-origin: 0% 0%;
    -ms-transform-origin: 0% 0%;
    transform-origin: 0% 0%;
    color: #000;
    left: 100%;
    margin: 0;
    padding: 10px 40px 0 0;
    right: 0;
    top: 30px;
    white-space: nowrap;
}
.services-con .services-title a {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
}
.services-con:hover .services-title,
.services-con.hover .services-title {
    background-color: #eccba1;
}
.services-con:hover .services-title h4,
.services-con.hover .services-title h4 {
    color: #000;
}
/* services sidebar */
.sidebar .sidebar-widget {
    position: relative;
    display: block;
    margin-bottom: 30px;
}
.sidebar .sidebar-widget:last-child {
    margin-bottom: 0px;
}
.sidebar .sidebar-widget .widget-inner {
    position: relative;
    display: block;
    padding: 45px;
    background: #f9efe2;
    border-radius: 0px;
}
.sidebar-title {
    position: relative;
    margin-bottom: 20px;
    border-bottom: 1px dashed #eccba1;
    padding-bottom: 15px;
}
.sidebar-title h4 {
    position: relative;
    display: inline-block;
    font-family: 'Didact Gothic', sans-serif;
    font-size: 24px;
    color: #613228;
    margin-bottom: 0px;
}
.sidebar .services ul {
    position: relative;
}
.sidebar .services ul li {
    position: relative;
    line-height: 48px;
    color: #000;
    margin-bottom: 5px;
}
.sidebar .services ul li:before {
    content: "";
    position: absolute;
    left: -20px;
    top: 0;
    right: -20px;
    bottom: 0;
    background: #eccba1;
    border-radius: 0;
    opacity: 0;
    transition: all 0.3s ease;
}
.sidebar .services ul li:after {
    content: "";
    position: absolute;
    left: -20px;
    top: 50%;
    margin-top: -12px;
    height: 24px;
    border-left: 2px solid var(--thm-base);
    opacity: 0;
    transition: all 0.3s ease;
}
.sidebar .services ul li:last-child {
    margin-bottom: 0;
}
.sidebar .services ul li a {
    position: relative;
    display: block;
    font-size: 18px;
    font-style: italic;
    color: #000;
    transition: all 0.3s ease;
    z-index: 1;
}
.sidebar .services ul li:hover a,
.sidebar .services ul li.active a {
    color: #000;
}
.sidebar .services ul li:hover:before,
.sidebar .services ul li.active:before,
.sidebar .services ul li:hover:after,
.sidebar .services ul li.active:after {
    opacity: 1;
}
.sidebar .services ul li a:after {
    position: absolute;
    right: 0;
    top: 1px;
    font-family: "themify";
    content: "\e649";
    opacity: 1;
    font-size: 10px;
    font-weight: normal;
    z-index: 1;
    font-style: normal;
}
.sidebar .services ul li a:hover:before,
.sidebar .services ul li.active a:before {
    opacity: 1;
    transform: scaleX(1);
    transition: all 0.3s ease 0.1s;
}


/* ======= Team style ======= */
.team {}
.team .team-item img:hover {
    transform: scale(0.95);
}
.team .team-item {
    position: relative;
    margin-bottom: 30px;
}
.team .team-item .img {
    padding: 0 20px 20px 20px;
    position: relative;
}
.team .team-item .img:before {
    content: '';
    position: absolute;
    top: 20px;
    left: 0;
    right: 45px;
    bottom: 0;
    background: #f8ebdc;
}
.team .team-item .img img {
    position: relative;
    z-index: 2;
    box-shadow: 0 0 10px rgb(0 0 0 / 10%);
}
.team-item-2 {
    position: relative
}
.team-item .team-item-2 {
    width: 70% !important;
    position: absolute;
    bottom: 0px;
    right: 45px;
    z-index: 3;
    padding: 15px;
    color: #000;
    text-align: center;
    font-style: italic;
}
.team-title {
    background: #eccba1;
}


/* ======= Pricing style ======= */
.pricing .section-title {
    position: relative;
    margin-bottom: 30px;
}
.pricing .section-title h2 {
    font-size: 50px;
    color: #fff;
}
.pricing .section-title span {
    text-transform: uppercase;
    color: #fff;
    font-family: 'Didact Gothic', sans-serif;
    font-size: 13px;
    letter-spacing: 5px;
}
.pricing .section-title p {
    color: #fff;
}
.pricing-panel {
    -webkit-transition: all .35s;
    -moz-transition: all .35s;
    -o-transition: all .35s;
    transition: all .35s;
    margin-bottom: 35px;
    overflow: hidden;
    position: relative
}
.pricing-content {
    display: flex
}
.pricing-divider {
    height: 27px;
    border-bottom: 1px dashed #fff;
    flex-grow: 100
}
.pricing-panel .pricing-heading {
    font-size: 20px;
    line-height: 40px;
    margin-bottom: 0;
    color: #fff;
    position: relative;
    float: left;
    padding-right: 10px
}
.pricing-panel .price {
    font-family: 'Didact Gothic', sans-serif;
    font-size: 20px;
    line-height: 40px;
    text-align: right;
    float: right;
    margin-bottom: 0;
    color: #fff;
    padding-left: 10px
}
.pricing-panel .pricing-desc {
    color: #fff;
    font-size: 18px;
    margin-bottom: 0;
    padding-top: 10px
}

.pricing-panel .dark {
    color: #000;
}


/* ======= Clients style ======= */
.clients {
    background-color: #eccba1;
}
.clients .owl-carousel {
    margin: 20px 0;
}
.clients .clients-logo {
    opacity: 1;
    line-height: 0;
}
.clients .clients-logo:hover {
    opacity: 1;
}
.clients img {
    -webkit-filter: none;
    filter: none;
}
.clients img:hover {
    -webkit-filter: grayscale(100%);
    filter: grayscale(100%);
    -webkit-transition: all .5s;
    transition: all .5s;
}


/* ======= FAQs style ======= */
.accordion-box {
    position: relative;
    margin-bottom: 30px;
}
.accordion-box .block {
position: relative;
    background: #faf2e7;
    border-radius: 0px;
    overflow: hidden;
    margin-bottom: 10px;
    border: 1px dashed #faf2e7;
}
.accordion-box .block.active-block {
    background-color: #f9efe2;
}
.accordion-box .block:last-child {
    margin-bottom: 0;
}
.accordion-box .block .acc-btn {
    font-family: 'Didact Gothic', serif;
    position: relative;
    line-height: 1.5em;
    cursor: pointer;
    padding: 15px 30px;
    padding-right: 60px;
    color: #000;
    transition: all 500ms ease;
    font-size: 16px;
}
.accordion-box .block .acc-btn .count {
    color: #613228;
    padding-right: 3px;
}
.accordion-box .block .acc-btn:before {
    position: absolute;
    right: 35px;
    top: 11px;
    height: 30px;
    font-size: 12px;
    font-weight: normal;
    color: #000;
    line-height: 30px;
    content: "\e61a";
    font-family: "Themify";
    transition: all 500ms ease;
}
.accordion-box .block .acc-btn.active {
    background-color: #f5e5d0;
    color: #000;
}
.accordion-box .block .acc-btn.active:before {
    color: "Themify";
    content: "\e622";
}
.accordion-box .block .acc-content {
    position: relative;
    display: none;
}
.accordion-box .block .content {
    position: relative;
    padding: 0 30px 30px;
    background-color: #f5e5d0;
    color: #000;
}
.accordion-box .block .acc-content.current {
    display: block;
}
.accordion-box .block .content .text {
    display: block;
    position: relative;
    top: 0px;
    display: block;
    font-style: italic;
}


/* ======= Gallery style ======= */
.gallery-item {
    position: relative;
    padding-top: 20px;
}
.gallery-box {
    overflow: hidden;
    position: relative;
}
.gallery-box .gallery-img {
    position: relative;
    overflow: hidden;
}
.gallery-box .gallery-img:after {
    content: " ";
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 0px;
    transition: all 0.27s cubic-bezier(0.3, 0.1, 0.58, 1);
}
.gallery-box .gallery-img > img {
    transition: all 0.3s cubic-bezier(0.3, 0.1, 0.58, 1);
    border-radius: 0;
}
.gallery-box .gallery-detail {
    opacity: 0;
    color: #fcf8f3;
    width: 100%;
    padding: 20px;
    box-sizing: border-box;
    position: absolute;
    left: 0;
    overflow: hidden;
    transition: all 0.27s cubic-bezier(0.3, 0.1, 0.58, 1);
}
.gallery-box .gallery-detail h4 {
    font-size: 18px;
}
.gallery-box .gallery-detail p {
    color: Rgba(0, 0, 0, 0.4);
    font-size: 14px;
}
.gallery-box .gallery-detail i {
    color: #000;
    padding: 8px;
}
.gallery-box .gallery-detail i:hover {
    color: #000;
}
.gallery-box:hover .gallery-detail {
    top: 50%;
    transform: translate(0, -50%);
    opacity: 1;
}
.gallery-box:hover .gallery-img:after {
    background: rgba(0, 0, 0, 0.1);
}
.gallery-box:hover .gallery-img > img {
    transform: scale(1.05);
}
/* magnific popup custom */
.mfp-figure button {
    border: 0px solid transparent;
}
button.mfp-close,
button.mfp-arrow {
    border: 0px solid transparent;
    background: transparent;
}


/* ======= Error Page 404 style ======= */
.error-form {
    position: relative;
    max-width: 520px;
    margin: 50px auto 0;
}
.error-form form {
    position: relative;
}
.error-form .form-group {
    position: relative;
    margin: 0;
}
.error-form .form-group input[type="text"],
.error-form .form-group input[type="search"],
.error-form .form-group input[type="email"] {
    position: relative;
    width: 100%;
    line-height: 30px;
    padding: 15px 60px 15px 30px;
    height: 60px;
    display: block;
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 18px;
    background: #f9efe2;
    color: #000;
    border-radius: 7px;
    border: 1px dashed #f9efe2;
    transition: all 300ms ease;
}
.error-form .form-group input[type="text"]:focus,
.error-form .form-group input[type="email"]:focus,
.error-form .form-group input[type="search"]:focus {
    border-color: #eccba1;
}
.error-form .form-group input::-webkit-input-placeholder {
    font-family: 'Cormorant Garamond', serif;
    color: #000;
    font-size: 18px;
    font-style: italic;
}
.error-form .form-group .theme-btn {
    position: absolute;
    right: 15px;
    top: 7px;
    width: 40px;
    height: 40px;
    line-height: 40px;
    font-size: 18px;
    background: none;
    color: #000;
}
.error-form .form-group .theme-btn span {
    vertical-align: middle;
    outline: none;
}


/* ======= Promo Video and Testimonials style ======= */
/* play button */
.vid-area h5 {
    font-size: 27px;
    color: #fcf8f3;
}
.vid-area i {
    color: #613228;
}
.play-button {
    position: relative;
    width: 85px;
    height: 85px;
    margin: auto;
    -webkit-transform: scale(1.3);
    -ms-transform: scale(1.3);
    transform: scale(1.3);
    z-index: 4;
    margin-left: 15px;
}
.play-button svg {
    position: absolute;
    width: 100%;
    height: 100%;
}
.circle-fill circle {
    opacity: 1;
    fill: rgba(255, 255, 255, 0.5);
}
.polygon {
    position: absolute;
    width: 100%;
    height: 100%;
    text-align: center;
    line-height: 90px;
    font-size: 35px;
    z-index: 2;
    padding-left: 5px;
}
.play-button svg.circle-fill {
    z-index: 1;
    stroke-dasharray: 322;
    stroke-dashoffset: 322;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
    -webkit-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    transform: rotate(-90deg);
}
.play-button:hover svg.circle-fill {
    stroke-dashoffset: 38.5;
}
.play-button svg.circle-track {
    z-index: 0;
}
.play-button.color {
    color: #613228;
}
.play-button.color .circle-fill circle {
    fill: #613228;
}
/* video gallery */
.video-gallery-button {
    position: relative;
    margin: auto;
    -webkit-transform: scale(1.3);
    -ms-transform: scale(1.3);
    transform: scale(1.3);
    z-index: 4;
    margin-left: 15px;
    float: right;
}
.video-gallery-polygon {
    z-index: 2;
    padding-left: 5px;
    display: inline-block;
    position: absolute;
    bottom: 15px;
    right: 15px;
    background: transparent;
    border-radius: 50%;
    border: 1px dashed rgba(255, 255, 255, 0.5);
    color: #fcf8f3;
    padding: 7px 6px 7px 8px;
    line-height: 0;
}
.video-gallery-polygon:hover {
    background: #fcf8f3;
    border: 1px dashed #fcf8f3;
    color: #613228;
}
/* testimonials style */
.testimonials-box {
    position: relative;
    background: #f9efe2;
    padding: 60px 45px;
    margin-bottom: -60px;
}
.testimonials-box .head-box h6 {
    font-weight: 400;
    color: #000;
    font-size: 17px;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 10px;
}
.testimonials-box .head-box h4 {
    font-size: 27px;
    font-weight: 400;
    color: #613228;
    border-bottom: 1px dashed #edd5b7;
    padding-bottom: 15px;
}
.testimonials-box .head-box h4 span {
    color: #000;
}
@media screen and (max-width: 991px) {
    .testimonials-box {
        margin-bottom: 90px;
        padding: 35px 20px;
    }
}
.testimonials .item {
    margin-bottom: 30px;
    position: relative;
}
.testimonials .item .quote {
    position: absolute;
    right: 15px;
    top: 60px;
    width: 100px;
    margin: 0 auto 30px;
    opacity: .08;
}
.testimonials .item p {
    color: #000;
}
.testimonials .item .info {
    text-align: left;
    margin: 30px 0 15px 0;
}
.testimonials .item .info .author-img {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    float: left;
    overflow: hidden;
}
.testimonials .item .info .cont {
    margin-left: 80px;
}
.testimonials .item .info h6 {
    font-size: 18px;
    margin-bottom: 0px;
    padding-top: 7px;
    font-weight: 400;
    font-family: 'Didact Gothic', sans-serif;
    color: #613228;
}
.testimonials .item .info span {
    font-size: 18px;
    color: #000;
    margin-right: 5px;
    line-height: 1.25em;
    font-style: italic;
}
.testimonials .item .info .rate {
    float: right;
}
.testimonials .item .info i {
    color: #613228;
    font-size: 10px;
}


/* ======= Blog Homepage style ======= */
.blog-homepage .img {
    position: relative;
    overflow: hidden;
}
.blog-homepage .img img:hover {
    transform: scale(0.95);
}
.blog-homepage .img img {
    position: relative;
    z-index: 2;
}
.blog-homepage .img {
    padding: 0 20px 20px 20px;
    position: relative;
}
.blog-homepage .img:before {
    content: '';
    position: absolute;
    top: 20px;
    left: 0;
    right: 45px;
    bottom: 0;
    background: #f9efe2;
}
.blog-homepage .content {
    width: 100%;
    padding: 45px 15px;
}
.blog-homepage .content .cont {
    display: table-cell;
    vertical-align: middle;
    padding-left: 15px;
}
.blog-homepage .content .cont h4 {
    margin: 15px 0;
    font-size: 27px;
    color: #613228;
    line-height: 1.25em;
}
.blog-homepage .content .cont .more {
font-size: 14px;
    font-weight: 400;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #613228;
    padding-left: 40px;
    position: relative;
    font-family: 'Didact Gothic', sans-serif;
}
.blog-homepage .content .cont .more:after {
    content: '';
    width: 30px;
    height: 1px;
    background: #613228;
    position: absolute;
    top: 55%;
    left: 0px;
}
.blog-homepage .content .cont .more:hover {
    color: #000;
}
.blog-homepage .content .info h6 {
    font-size: 14px;
    margin-bottom: 0;
}
.blog-homepage .content .info .tags {
    color: #613228;
}
@media screen and (max-width: 991px) {
    .blog-homepage .content {
        padding: 0 30px;
        margin-top: 30px;
        margin-bottom: 30px;
    }
    .blog-homepage .content .cont h4 {
        line-height: 1.25em;
    }
    .order2 {
        -webkit-box-ordinal-group: 3 !important;
        -ms-flex-order: 2 !important;
        order: 2 !important;
    }
    .order1 {
        -webkit-box-ordinal-group: 2 !important;
        -ms-flex-order: 1 !important;
        order: 1 !important;
    }
}
@media screen and (max-width: 480px) {
    .blog-homepage .content {
        padding: 0 15px;
    }
    .blog-homepage .content .info .tags {
        margin: 5px 0 0;
    }
}


/* ======= Blog style ======= */
.blog .item {
    margin-bottom: 30px;
}
.blog .post-img {
    position: relative;
    overflow: hidden;
}
.blog .post-img:hover img {
    -webkit-filter: none;
    filter: none;
    -webkit-transform: scale(1.09, 1.09);
    transform: scale(1.09, 1.09);
    -webkit-transition: all 1s ease;
    -moz-transition: all 1s ease;
    -o-transition: all 1s ease;
    -ms-transition: all 1s ease;
    transition: all 1s ease;
}
.blog .post-img a {
    display: block;
}
.blog .post-img img {
    -webkit-transition: all .5s;
    transition: all .5s;
}
.blog .post-cont {
    padding: 30px 0;
}
.blog .post-cont .tag {
    display: block;
    font-size: 14px;
    color: #613228;
    font-family: 'Didact Gothic', sans-serif;
}
.blog .post-cont h5,
.blog .post-cont h5 a {
    font-size: 27px;
    color: #613228;
}
.blog .post-cont .date {
    margin-top: 0px;
    font-size: 14px;
    text-align: right;
    font-family: 'Didact Gothic', sans-serif;
}
.blog .post-cont .date a {
    color: #613228;
}
.blog .post-cont i {
    color: #eccba1;
    margin: 0 5px;
    font-size: 12px;
    font-style: normal;
}
/* blog sidebar */
.blog-sidebar .widget {
    background: #f9efe2;
    padding: 30px;
    margin-bottom: 30px;
    overflow: hidden;
}
.blog-sidebar .widget ul {
    margin-bottom: 0;
    padding: 0;
}
.blog-sidebar .widget ul li {
    margin-bottom: 15px;
    color: #000;
    font-size: 18px;
    line-height: 1.25em;
    font-style: italic;
}
.blog-sidebar .widget ul li a {
    color: #000;
}
.blog-sidebar .widget ul li a.active {
    color: #613228;
}
.blog-sidebar .widget ul li a:hover {
    color: #613228;
}
.blog-sidebar .widget ul li:last-child {
    margin-bottom: 0;
}
.blog-sidebar .widget ul li i {
    font-size: 9px;
    margin-right: 10px;
}
.blog-sidebar .widget .recent li {
    display: block;
    overflow: hidden;
}
.blog-sidebar .widget .recent .thum {
    width: 90px;
    overflow: hidden;
    float: left;
}
.blog-sidebar .widget .recent a {
    display: block;
    margin-left: 105px;
        font-style: italic;
}
.blog-sidebar .widget-title {
    margin-bottom: 20px;
}
.blog-sidebar .widget-title h6 {
    padding-bottom: 5px;
    border-bottom: 1px dashed #eccba1;
    font-size: 20px;
    line-height: 1.75em;
    color: #613228;
}
.blog-sidebar .search form {
    position: relative;
}
.blog-sidebar .search form input {
    width: 100%;
    padding: 10px;
    border: 0;
    background: #fcf8f3;
    margin-bottom: 0;
}
.blog-sidebar .search form button {
    position: absolute;
    right: 0;
    top: 0;
    background-color: transparent;
    color: #000;
    border: 0;
    padding: 14px 14px 9px 14px;
    cursor: pointer;
    font-size: 14px;
}
.blog-sidebar .tags li {
    margin: 3px !important;
    padding: 6px 16px;
    background-color: #eccba1;
    color: #000 ;
    float: left;
}
.blog-sidebar ul.tags li a {
    font-size: 16px;
    color: #000;
}
.blog-sidebar ul.tags li:hover,
.blog-sidebar ul.tags li a:hover {
    background-color: #fcf8f3;
    color: #000;
}
/* pagination */
.blog-pagination-wrap {
    padding: 0;
    margin: 0;
    text-align: center;
}
.blog-pagination-wrap li {
    display: inline-block;
    margin: 0 5px;
}
.blog-pagination-wrap li a {
    background: transparent;
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 38px;
    text-align: center;
    color: #000;
    border: 1px dashed rgba(0, 0, 0, 0.05);
    font-family: 'Didact Gothic', sans-serif;
    font-size: 14px;
    border-radius: 100%;
}
.blog-pagination-wrap li a i {
    font-size: 11px;
}
.blog-pagination-wrap li a:hover {
    opacity: 1;
    text-decoration: none;
    background: transparent;
    border: 1px dashed #613228;
    color: #613228;
}
.blog-pagination-wrap li a.active {
    background-color: transparent;
    border: 1px dashed #613228;
    color: #613228;
}
@media screen and (max-width: 768px) {
    .blog-pagination-wrap {
        padding: 0;
        margin: 0;
        text-align: center;
    }
}


/* ======= Post style ======= */

.post div .info {
font-size: 14px;
    color: #000;
    font-family: 'Didact Gothic', sans-serif;
    display: inline-block;
    margin-bottom: 20px;
}
.post .info a {
    font-size: 14px;
    color: #613228;
    font-family: 'Didact Gothic', sans-serif;
}

.post .info i {
    color: #eccba1;
    margin: 0 5px;
    font-size: 12px;
    font-style: normal;
}
.post-comment-section {
    padding-top: 60px;
    margin-bottom: 60px;
}
.post-comment-section h3 {
    font-size: 18px;
    color: #613228;
}
.post-comment-section h3 span {
    font-size: 13px;
    color: #000;
    font-weight: 400;
    margin-left: 15px;
}
.post-comment-wrap {
    display: flex;
    margin-bottom: 60px;
}
.post-user-comment {
    margin-right: 30px;
    flex: 0 0 auto;
}
.post-user-comment img {
    border-radius: 100%;
    width: 100px;
}
.post-user-content {
    margin-right: 26px;
}
.post-repay {
    font-size: 14px;
    color: #613228;
    margin: 0;
    font-family: 'Didact Gothic', sans-serif;
}
/* prev/next project */
.post-prev-next {
  padding: 40px 0;
  border: none;
  border-top: 1px dashed rgba(0, 0, 0, 0.04);
}
@media (max-width: 576px) {
  .post-prev-next {
    text-align: center;
  }  
  .post-prev-next-left {
        margin-bottom: 10px;
    }
}
.post-prev-next a {
    display: inline-block;
    font-size: 18px;
    color: #613228;
    font-style: italic;
    line-height: 1em;
}
.post-prev-next a i {
  font-size: 20px;
}
.post-prev-next a:hover {
    color: #000;
}
.post-prev-next .post-prev-next-left a i {
  margin-right: 5px;
  font-size: 12px;
}
.post-prev-next .post-prev-next-right a i {
 font-size: 12px;
  margin-left: 0;
  margin-left: 5px;
}

/* ======= Contact style ======= */
.contact h6 {
    font-family: 'Didact Gothic', sans-serif;
    font-size: 18px;
        color: #613228;
}
/* contact list */
.contact-list {
    position: relative;
    display: block;
}
.contact-list li {
    position: relative;
    display: flex;
    align-items: center;
}
.contact-list li + li {
    margin-top: 5px;
}
.contact-list li .icon span {
    font-size: 18px;
    color: #613228;
}
.contact-list li .text {
    margin-left: 20px;
}
.contact-list li .text p {
    margin: 0;
    font-size: 18px;
    color: #000;
}
.contact-list li .text p a {
    font-size: 18px;
    color: #000;
    transition: all 500ms ease;
}
.contact-list li .text p a:hover {
    color: #613228;
}
.contactMap {
    width: 100%;
    height: 500px;
}


/* ======= Buttons style ======= */
/* dark */
.butn-dark {
    position: relative;
    width: 100%;
    text-align: center;
}
.butn-dark a {
    font-family: 'Didact Gothic', sans-serif;
    font-weight: 400;
    background: #613228;
    color: #fcf8f3;
    padding: 7px 28px;
    margin: 0;
    position: relative;
    font-size: 17px;
}
.butn-dark a:after {
    content: '';
    width: 0;
    height: 100%;
    position: absolute;
    bottom: 0;
    left: 100%;
    z-index: 1;
    background: #f9efe2;
    color: #000;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.butn-dark a span {
    position: relative;
    z-index: 2;
}
.butn-dark a:hover:after {
    width: 100%;
    left: 0;
    -webkit-transition: width 0.3s ease;
    transition: width 0.3s ease;
}
.butn-dark a:hover span {
    color: #000;
}
/* light */
.butn-light {
    position: relative;
    line-height: 1.2em;
}
.butn-light a {
    font-weight: 400;
    font-family: 'Cormorant Garamond', serif;
    text-transform: uppercase;
    background: transparent;
    color: #fcf8f3;
    padding: 12px 24px;
    margin: 0;
    position: relative;
    font-size: 16px;
    letter-spacing: 3px;
    border: 1px dashed rgba(255, 255, 255, 0.3);
}
.butn-light a:after {
    content: '';
    width: 0;
    height: 100%;
    position: absolute;
    bottom: 0;
    left: 100%;
    z-index: 1;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    background: #fcf8f3;
}
.butn-light a span {
    position: relative;
    z-index: 2;
}
.butn-light a:hover:after {
    width: 100%;
    left: 0;
    -webkit-transition: width 0.3s ease;
    transition: width 0.3s ease;
}
.butn-light a:hover span {
    color: #000;
}


/* ======= Footer style ======= */
.main-footer {
    padding: 60px 0 0;
    border-top: 1px dashed #eccba1;
    background: #fcf8f3;
    color: #000;
}
.main-footer .abot p {
    color: #000;
}
.main-footer .abot .social-icon {
    text-align: center;
    margin-bottom: 20px;
}
.main-footer .abot .social-icon a {
    width: 36px;
    height: 36px;
    line-height: 36px;
    text-align: center;
    font-size: 12px;
    border: 1px dashed rgba(0, 0, 0, 0.04);
    color: #000;
    border-radius: 100%;
    margin-right: 3px;
    -webkit-transition: all .4s;
    -o-transition: all .4s;
    transition: all .4s;
}
.main-footer .abot .social-icon a:hover {
    border: 1px dashed #613228;
    background: transparent;
    color: #613228;
}
.main-footer .fothead h6,
.main-footer .fotcont .fothead h6 {
    margin-bottom: 10px;
    color: #613228;
    font-size: 18px;
}
.main-footer .fotcont .fothead h6:after {
    content: '';
    position: absolute;
    right: 0;
    bottom: 0;
    width: 100%;
    border: none;
}
.main-footer .fotcont p {
    margin-bottom: 0px;
}
/* sub footer */
.main-footer .sub-footer {
    padding: 30px 0 10px 0;
    margin-top: 30px;
    border-top: 1px dashed rgba(0, 0, 0, 0.04);
}
.main-footer .sub-footer p {
    font-size: 16px;
    color: #000;
    margin-top: 7px;
}
.main-footer .sub-footer p a:hover {
    color: #613228;
}
.main-footer .sub-footer p.right {
    text-align: right;
}


/* ======= toTop Button style ======= */
.progress-wrap {
    position: fixed;
    bottom: 30px;
    right: 30px;
    height: 40px;
    width: 40px;
    cursor: pointer;
    display: block;
    border-radius: 50px;
    -webkit-box-shadow: inset 0 0 0 2px rgba(233, 198, 168, 0.2);
    box-shadow: inset 0 0 0 2px rgba(233, 198, 168, 0.2);
    z-index: 100;
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateY(20px);
    -ms-transform: translateY(20px);
    transform: translateY(20px);
    -webkit-transition: all 400ms linear;
    -o-transition: all 400ms linear;
    transition: all 400ms linear;
}
.progress-wrap.active-progress {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
}
.progress-wrap::after {
    position: absolute;
    font-family: 'themify';
    content: '\e648';
    text-align: center;
    line-height: 40px;
    font-size: 12px;
    left: 0;
    top: 0;
    height: 40px;
    width: 40px;
    cursor: pointer;
    display: block;
    z-index: 1;
    -webkit-transition: all 400ms linear;
    -o-transition: all 400ms linear;
    transition: all 400ms linear;
}
.progress-wrap svg path {
    fill: none;
}
.progress-wrap svg.progress-circle path {
    stroke: rgba(233, 198, 168, 0.2);
    stroke-width: 3;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-transition: all 400ms linear;
    -o-transition: all 400ms linear;
    transition: all 400ms linear;
}
.progress-wrap {
    -webkit-box-shadow: inset 0 0 0 2px rgba(233, 198, 168, 0.2);
    box-shadow: inset 0 0 0 2px rgba(233, 198, 168, 0.2);
}
.progress-wrap::after {
    color: #613228;
}
.progress-wrap svg.progress-circle path {
    stroke: #613228;
}


/* ======= Responsive style ======= */
@media screen and (max-width: 991px) {
    .navbar {
        background: transparent;
        padding: 15px 0;
    }


    .logo-1 {
        width: 64px;
    }


    .bg-fixed {
        background-attachment: scroll !important;
    }
    .navbar .logo {
        text-align: left;
        margin-left: 15px;
        width: 100px;
    }
    .nav-scroll .logo {
        width: 90px;
    }
    .navbar button {
        margin-right: 15px;
        outline: none !important;
        background: #fcf8f3;
    }
    .navbar button:hover {
        background: #fcf8f3;
    }
    .navbar .container {
        max-width: 100%;
    }
    .navbar .navbar-collapse {
        max-height: 400px;
        overflow: auto;
        background: #fcf8f3;
        text-align: left;
        padding: 15px 30px 30px 15px
    }
    .navbar .nav-link {
        margin: 0px auto !important;
    }
    .navbar .navbar-nav .nav-link {
        color: #000;
        padding: 0.25rem 1rem;
    }
    .nav-scroll .navbar-collapse .nav-link {
        color: #000 !important;
    }
    .nav-scroll .navbar-collapse .active {
        color: #613228 !important;
       
    }
    .dropdown-menu {
        opacity: 1;
        visibility: visible;
        -webkit-transform: translateY(0);
        transform: translateY(0);
        width: 100%;
        display: none;
    }
    .dropdown-menu .sub-menu {
        position: static;
        margin-top: 15px;
        opacity: 1;
        visibility: visible;
        -webkit-transform: translateY(0);
        transform: translateY(0);
        width: 100%;
        display: none;
    }
    .dropdown:hover .dropdown-menu,
    .dropdown:hover .mega-menu {
        display: block;
    }
    .dropdown .dropdown-menu:hover .sub-menu {
        display: block;
    }
    .dropdown .mega-menu {
        width: 100%;
        position: static;
        opacity: 1;
        visibility: visible;
        -webkit-transform: translateY(0);
        transform: translateY(0);
        width: 100%;
        display: none;
    }
    .dropdown .mega-menu .dropdown-menu {
        border: 0;
        margin: 0;
    }
    .dropdown .mega-menu .dropdown-title {
        border-bottom-color: #000;
    }
    .dropdown-menu .dropdown-item,
    .sub-menu .dropdown-item {
        color: #000;
    }
    .header {
        background-attachment: scroll !important;
        background-position: 50% 0% !important;
    }
    .header .caption h1 {
        font-size: 40px;
    }
}
@media screen and (max-width: 767px) {
    .logo-wrapper .logo h2 {
        display: none;
    }
    .header .caption h1 {
        font-size: 30px;
        margin-bottom: 15px;
        line-height: 1.25em;
    }
    .header .caption p {
        font-size: 18px;
    }
    .header .caption .butn-light {
        margin-right: 10px;
    }
    .post-comment-section h3 span {
        margin-left: 0px;
    }
    .main-footer .sub-footer p.right {
        text-align: left;
    }
    .main-footer .abot .social-icon {
        text-align: left;
        margin-bottom: 15px;
    }
    .footer .logo {
        padding: 0;
        width: auto;
        margin: 0px 0;
    }
}
@media screen and (max-width: 480px) {
    .footer {
        padding: 60px 0;
    }
    .text-left {
        text-align: center;
    }
    .text-center {
        text-align: center;
    }
    .text-right {
        text-align: center;
    }
}


/* ======= Overlay Effect Bg image style ======= */
[data-overlay-dark],
[data-overlay-light] {
  position: relative;
}
[data-overlay-dark] .container,
[data-overlay-light] .container {
  position: relative;
  z-index: 2;
}
[data-overlay-dark]:before,
[data-overlay-light]:before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1;
}
[data-overlay-dark]:before {
  background: #613228;
}
[data-overlay-light]:before {
  background: #fcf8f3;
}
[data-overlay-dark] h1,
[data-overlay-dark] h2,
[data-overlay-dark] h3,
[data-overlay-dark] h4,
[data-overlay-dark] h5,
[data-overlay-dark] h6,
[data-overlay-dark] span {
  color: #fcf8f3;
}
[data-overlay-light] h1,
[data-overlay-light] h2,
[data-overlay-light] h3,
[data-overlay-light] h4,
[data-overlay-light] h5,
[data-overlay-light] h6,
[data-overlay-light] span {
  color: #000;
}
[data-overlay-dark] p {
  color: #000;
}
[data-overlay-light] p {
  color: #000;
}
[data-overlay-dark="0"]:before,
[data-overlay-light="0"]:before {
  opacity: 0;
}
[data-overlay-dark="1"]:before,
[data-overlay-light="1"]:before {
  opacity: 0.1;
}
[data-overlay-dark="2"]:before,
[data-overlay-light="2"]:before {
  opacity: 0.2;
}
[data-overlay-dark="3"]:before,
[data-overlay-light="3"]:before {
  opacity: 0.3;
}
[data-overlay-dark="4"]:before,
[data-overlay-light="4"]:before {
  opacity: 0.4;
}
[data-overlay-dark="5"]:before,
[data-overlay-light="5"]:before {
  opacity: 0.5;
}
[data-overlay-dark="6"]:before,
[data-overlay-light="6"]:before {
  opacity: 0.6;
}
[data-overlay-dark="7"]:before,
[data-overlay-light="7"]:before {
  opacity: 0.7;
}
[data-overlay-dark="8"]:before,
[data-overlay-light="8"]:before {
  opacity: 0.8;
}
[data-overlay-dark="9"]:before,
[data-overlay-light="9"]:before {
  opacity: 0.9;
}
[data-overlay-dark="10"]:before,
[data-overlay-light="10"]:before {
  opacity: 1;
}





.filter-btns {
    text-align: center;
    margin-bottom: 30px;
  }
  .filter-btns .btn {
    border-radius: 50px;
    padding: 8px 20px;
    margin: 5px;
    border: 1px solid #ddd;
    background: #fff;
    color: #333;
    cursor: pointer;
    transition: all 0.3s ease;
  }
  .filter-btns .btn.active,
  .filter-btns .btn:hover {
    background: linear-gradient(45deg, #ff6ec4, #ff4da6);
    color: #000;
    border: none;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
  }
  
  /* ===== Gallery Items ===== */
  .gallery-item {
    transition: opacity 0.5s ease, transform 0.5s ease;
    opacity: 1;
    transform: scale(1);
  }
  .gallery-item.hide {
    opacity: 0;
    transform: scale(0.9);
    pointer-events: none;
    position: absolute;
  }
  .gallery-grid {
    display: flex;
    flex-wrap: wrap;
    position: relative;
  }
  .gallery-item img {
    width: 100%;
    border-radius: 10px;
  }



  .section-title span {
    font-size: 16px;
    color: #ff4da6;
    display: block;
    margin-bottom: 5px;
  }
  .section-title h2 {
    font-size: 36px;
    font-weight: 700;
    background: linear-gradient(45deg, #ff6ec4, #7873f5);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }
  
  /* ===== Testimonial Container ===== */
  .testimonial-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 40px;
  }
  .testimonial-card {
    background: rgba(255, 255, 255, 0.7);
    border-radius: 16px;
    padding: 25px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
  }
  .testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.15);
  }
  
  /* ===== Quote Icon ===== */
  .testimonial-card::before {
    content: "❝";
    font-size: 48px;
    color: #ff6ec4;
    position: absolute;
    top: 15px;
    right: 20px;
    opacity: 0.2;
  }
  
  /* ===== Testimonial Text ===== */
  .testimonial-card h4 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 5px;
  }
  .testimonial-card small {
    display: block;
    font-size: 14px;
    color: #777;
  }
  .testimonial-card .event {
    color: #ff4da6;
    font-weight: 500;
    margin-bottom: 10px;
  }
  .testimonial-card .stars {
    color: #FFD700;
    margin-bottom: 15px;
  }
  .testimonial-card p {
    font-style: italic;
    font-size: 15px;
    line-height: 1.6;
    color: #444;
  }



  .test-sec {
    background-image: url(../img2/test-ban.jpeg);
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}

.test-sec::before {
    content: "";
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background: rgb(255 255 255 / 30%);
}





.reels-section {
    padding: 80px 20px;
    /* background: radial-gradient(circle at top, #ffdde1, #ee9ca7, #0f0f0f); */
    text-align: center;
    position: relative;
    overflow: hidden;
    background: rgb(0 0 0);
}

  .reels-section h2 {
    font-size: 3rem;
    margin-bottom: 15px;
    color: #fff;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
  }

  .reels-section h2 span {
    background: linear-gradient(90deg, #ff4b2b, #ff416c);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }

  .reels-section p {
    font-size: 1.1rem;
    color: #ddd;
    margin-bottom: 50px;
  }

  /* Swiper Styling */
  .swiper {
    width: 95%;
    max-width: 1200px;
    margin: 0 auto;
    padding-bottom: 80px;
  }

  .swiper-slide {
    position: relative;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255,255,255,0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  .swiper-slide:hover {
    transform: scale(1.05);
    box-shadow: 0 20px 40px rgba(255,65,108,0.5);
  }

  .swiper-slide iframe {
    width: 100%;
    height: 420px;
    border: none;
  }

  /* Navigation Buttons */
  .swiper-button-next,
  .swiper-button-prev {
    color: #fff;
    background: linear-gradient(135deg, #ff4b2b, #ff416c);
    padding: 18px;
    border-radius: 50%;
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
    transition: 0.3s ease;
  }

  .swiper-button-next:hover,
  .swiper-button-prev:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(255,65,108,0.6);
  }

  .swiper-pagination-bullet {
    background: rgba(255,255,255,0.6);
    width: 12px;
    height: 12px;
    opacity: 1;
    transition: all 0.3s ease;
  }

  .swiper-pagination-bullet-active {
    background: linear-gradient(135deg, #ff4b2b, #ff416c);
    transform: scale(1.3);
  }

  @media (max-width: 768px) {
    .swiper-slide iframe {
      height: 280px;
    }
    .reels-section h2 {
      font-size: 2rem;
    }
  }




  .custom-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ff4e94, #ff6f61);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 20px rgba(0,0,0,0.25);
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
  }
  
  .custom-btn i {
    color: #fff;
    font-size: 20px;
  }
  
  .custom-btn:hover {
    transform: scale(1.15);
    background: linear-gradient(135deg, #ff6f61, #ff4e94);
    box-shadow: 0 8px 25px rgba(255, 78, 148, 0.5);
  }
  
  /* Positioning same as default */
  .swiper-button-prev {
    left: 20px;
  }
  .swiper-button-next {
    right: 20px;
  }
  


  .swiper-button-prev:after, .swiper-rtl .swiper-button-next:after {
    content: '' !important;
}


.swiper-button-next:after, .swiper-rtl .swiper-button-prev:after {
    content: '' !important;
}

.swiper-slide{
    width: 325px !important;
}




.contact-section .container {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    padding: 80px 20px;
    align-items: center;
  }
  
  /* Info Cards */
  .info-cards {
    display: grid;
    gap: 20px;
  }
  
  .card {
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(20px);
    border-radius: 16px;
    padding: 25px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
    border: 1px solid rgba(255,255,255,0.3);
    transition: all 0.3s ease;
  }
  .card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 28px rgba(0,0,0,0.15);
  }
  .card i {
    font-size: 28px;
    color: #ff3e8d;
    margin-bottom: 10px;
  }
  .card h4 {
    margin: 0;
    font-size: 18px;
    color: #222;
  }
  .card p {
    margin: 5px 0 0;
    color: #555;
  }
  
  /* Form Card */
  .form-card {
    position: relative;
    background: rgba(255,255,255,0.85);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border: 2px solid transparent;
    background-clip: padding-box, border-box;
    background-origin: border-box;
    background-image: linear-gradient(white, white),
                      linear-gradient(135deg, #ff5ea2, #9b5dff);
  }
  
  .form-header h2 {
    margin: 0 0 10px;
    font-size: 26px;
    color: #222;
  }
  .form-header h2 span {
    color: #ff3e8d;
  }
  .form-header p {
    color: #777;
    margin-bottom: 20px;
  }
  
  /* Inputs */
  form input, form textarea {
    width: 100%;
    padding: 12px 15px;
    margin-bottom: 15px;
    border-radius: 10px;
    border: 1px solid #ddd;
    font-size: 14px;
    outline: none;
    transition: 0.3s;
    height: 200px;
}
  form input:focus, form textarea:focus {
    border-color: #ff3e8d;
    box-shadow: 0 0 8px rgba(255,62,141,0.4);
  }
  
  .form-row {
    display: flex;
    gap: 15px;
  }
  
  /* Button with glow */
  .btn-glow {
    width: 100%;
    padding: 14px;
    border: none;
    border-radius: 12px;
    background: linear-gradient(90deg,#ff3e8d,#9b5dff);
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
    box-shadow: 0 4px 15px rgba(155,93,255,0.4);
  }
  .btn-glow:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255,62,141,0.6);
  }
  
  /* Responsive */
  @media (max-width: 992px) {
    .contact-section .container {
      grid-template-columns: 1fr;
    }
  }



  footer {
    background: #1c1c1c;
    color: #aaa;
    text-align: center;
    padding: 60px 20px 30px;
  }

  footer .logo-2 {
    /* font-size: 28px; */
    /* font-weight: 600; */
    /* color: #fff; */
    margin-bottom: 20px;
    /* font-family: 'Playfair Display', serif; */
    width: 100%;
    display: flex
;
    justify-content: center;
}

.logo-2 img{

    max-width: 150px;
}


  footer .top-links {
    margin-bottom: 25px;
  }

  footer .top-links a {
    margin: 0 15px;
    text-decoration: none;
    color: #ddd;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s;
  }

  footer .top-links a:hover {
    color: #ff5ea2;
  }

  footer hr {
    border: none;
    border-top: 1px solid rgba(255,255,255,0.1);
    margin: 25px auto;
    max-width: 800px;
  }

  footer .bottom-links {
    margin-bottom: 25px;
  }

  footer .bottom-links a {
    margin: 0 12px;
    text-decoration: none;
    color: #ccc;
    font-size: 13px;
    transition: color 0.3s;
  }

  footer .bottom-links a:hover {
    color: #ff5ea2;
  }

  footer .socials {
    margin: 25px 0;
  }

  footer .socials a {
    display: inline-flex;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    background: #2b2b2b;
    color: #fff;
    font-size: 18px;
    margin: 0 8px;
    transition: all 0.3s ease;
  }

  footer .socials a:hover {
    background: #ff5ea2;
    transform: translateY(-3px);
  }

  footer .copyright {
    font-size: 13px;
    color: #777;
    margin-top: 15px;
  }

  footer .copyright a {
    color: #aaa;
    text-decoration: none;
  }

  footer .copyright a:hover {
    color: #ff5ea2;
  }


  .copyright p {
    color: #fff;
}




.section-title-2 {
    margin-top: 100px;
}



section.inner-sec {
    background: url(../img2/inner-sec.jpeg);
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: cover;
    position: relative;
    width: 100%;
    height: 500px;
}


section.inner-sec::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0px;
    left: 0px;
    background: rgb(0 0 0 / 50%);
}



.inner-row {
    height: 500px;
    display: flex
;
    align-items: center;
    /* justify-content: center; */
}


.inner-head h2 {
    text-align: center;
    color: #fff;
    font-size: 60px;
    font-weight: 600;
    margin: 0px;
}


.inner-para {
    color: #fff;
    text-align: center;
}



section.section-padding2 {
    padding: 90px 0 90px;
}


.gallery-box {
    width: 100%;
    height: 400px;
    overflow: hidden;
    border-radius: 10px;
}
  
  .gallery-box img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* image को box के अंदर crop करके fit करेगा */
    display: block;
  }



  .background::after {
    content: "";
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background: rgb(0 0 0 / 80%);
}




/* .course-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    padding: 30px;
  } */
  
  .course-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s 
ease, box-shadow 0.3s 
ease;
    height: 1070PX;
}
  
  .course-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.12);
  }
  
  .course-img {
    height: 327px;
    overflow: hidden;
  }
  
  .course-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
  }
  
  .course-card:hover .course-img img {
    transform: scale(1.08);
  }
  
  .course-content {
    padding: 20px;
  }
  
  .course-content h3 {
    font-size: 20px;
    margin-bottom: 8px;
    color: #222;
    font-weight: 600;
  }
  
  .course-content p {
    color: #555;
    font-size: 14px;
    margin-bottom: 15px;
    line-height: 1.5;
  }
  
  .course-info {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
  }
  
  .course-info li {
    font-size: 18px;
    margin-bottom: 10px;
    color: #444;
    display: flex
;
    align-items: center;
}
  
  .course-info i {
    color: #f9748f;
    margin-right: 8px;
    font-size: 15px;
  }
  
  .btn-book {
    display: inline-block;
    background: linear-gradient(135deg, #f78ca0, #f9748f, #fd868c, #fe9a8b);
    padding: 10px 22px;
    border-radius: 30px;
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: 0.3s 
ease;
    box-shadow: 0 4px 12px rgba(249, 116, 143, 0.3);
    width: 100%;
}
  
  .btn-book:hover {
    background: linear-gradient(135deg, #fe9a8b, #fd868c, #f9748f, #f78ca0);
    box-shadow: 0 6px 18px rgba(249,116,143,0.4);
  }
  


  .course-content h4 {
    margin-bottom: 8px;
    font-weight: 600;
    color: #f87e96;
}


.course-card {
    display: flex
;
    flex-direction: column;
    height: 100%;
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s 
ease, box-shadow 0.3s 
ease;
    height: 1110px;
}
  .course-content {
    flex: 1; /* content को expand करने देगा */
    display: flex;
    flex-direction: column;
    padding: 20px;
  }
  
  .book-btnn {
    margin-top: auto; /* button को नीचे fix करेगा */
    text-align: center;
    padding-top: 15px;
  }



  section.cour-sec {
    padding: 90px 0px;
}



.course-cards {
    flex: 1;
    display: flex;
  }
  
  .course-card {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    flex: 1;
  }
  
  /* Image responsive */
  .course-img img {
    width: 100%;
    border-radius: 10px 10px 0 0;
  }
  
  /* Content flexible */
  .course-content {
    padding: 15px;
    flex: 1; /* content jitna hoga utna stretch hoga */
    display: flex;
    flex-direction: column;
  }
  
  /* Book button niche chipka rahe */
  .book-btnn {
    margin-top: auto;
    text-align: center;
  }
  
  .btn-book {
    display: inline-block;
    background: #e91e63;
    color: #fff;
    padding: 10px 20px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
  }







.con-flu {
    padding: 0px;
    margin: 0px;
}



@media (max-width: 768px) {
    .respon-img {
        display: block !important;
    }

    .baner-img {
        display: none;
    }

    .con-flu {
        padding: 0px;
        margin: 0px;
    }

    .header {
        min-height: 110vh;
        overflow: hidden;
    }
  }





  .pricing-section {
    background: url(../img2/velvet-bg.jpeg) no-repeat center / cover;
    color: #f5f5f5;
    padding: 80px 20px;
    position: relative;
    text-align: center;
    background-attachment: fixed;
}

  .pricing-box {
    margin-bottom: 50px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 30px 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: inline-block;
    max-width: 800px;
    width: 100%;
  }

  .pricing-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
  }

  .pricing-box h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #d4af37;
    text-transform: uppercase;
    border-bottom: 1px solid rgba(212, 175, 55, 0.3);
    display: inline-block;
    padding-bottom: 5px;
  }

  .pricing-box.single h3 {
    font-size: 24px;
    color: #d4af37;
  }

  .pricing-box.single .price {
    font-size: 26px;
    font-weight: bold;
    margin: 10px 0;
  }

  .pricing-box.single .note {
    font-size: 14px;
    color: #ccc;
  }

  /* Table */
  table {
    width: 100%;
    border-collapse: collapse;
    margin: 0 auto;
    max-width: 700px;
  }
  table th, table td {
    border: 1px solid rgba(255,255,255,0.2);
    padding: 12px 15px;
    font-size: 16px;
    transition: background 0.3s ease;
  }
  table th {
    background: rgba(0,0,0,0.3);
    color: #d4af37;
    font-weight: bold;
  }
  table td {
    color: #fff;
  }
  table tr:hover td {
    background: rgba(255, 215, 0, 0.1);
  }

  /* Extras Section */
  .extras {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 40px;
    flex-wrap: wrap;
  }
  .extras div {
    max-width: 300px;
    text-align: center;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    padding: 20px;
    border-radius: 12px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  .extras div:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 20px rgba(0,0,0,0.3);
  }
  .extras h4 {
    color: #d4af37;
    margin-bottom: 10px;
    font-size: 20px;
  }
  .extras p {
    font-size: 14px;
    line-height: 1.6;
    color: #ddd;
  }

  /* Responsive */
  @media (max-width: 768px) {
    .pricing-box h2 {
      font-size: 22px;
    }
    table th, table td {
      font-size: 14px;
      padding: 8px;
    }
    .extras {
      flex-direction: column;
      align-items: center;
    }
  }



  section.pricing-section::before {
    content: "";
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background: rgb(0 0 0 / 40%);
}


.fixed-icon {
    position: fixed;
    left: 0;
    top: 70%;
    padding-left: 4px;
    z-index: 99999;
}


.fixed-icon a img {
    width: 45px;
    height: 45px;
    margin-bottom: 10px;
    border-radius: 50%;
}
  


/* .reels-section {
    padding: 60px 20px;
    background: linear-gradient(135deg, #fff5f7, #ffeef3);
    text-align: center;
  }

  .reels-section h2 {
    font-size: 36px;
    font-weight: 700;
    background: linear-gradient(45deg, #ff6ec4, #7873f5);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }

  .reels-section h2 span {
    color: #e91e63;
  }

  .reels-section p {
    font-size: 1rem;
    color: #666;
    margin-bottom: 40px;
  }

  .reels-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
    max-width: 1100px;
    margin: 0 auto;
  }

  .reel-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0,0,0,0.1);
    cursor: pointer;
    transition: transform 0.3s ease;
  }

  .reel-card:hover {
    transform: translateY(-8px);
  }

  .reel-card img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    display: block;
  }

  .overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.4);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
  }

  .reel-card:hover .overlay {
    opacity: 1;
  }

  .overlay i {
    font-size: 3rem;
    color: #fff;
    background: #e91e63;
    padding: 15px;
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(233,30,99,0.6);
  }

  
  .modal {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.8);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 999;
  }

  .modal.active {
    display: flex;
  }

  .modal-content {
    position: relative;
    width: 80%;
    max-width: 800px;
    background: #000;
    border-radius: 12px;
    overflow: hidden;
  }

  .modal-content iframe {
    width: 100%;
    height: 450px;
    border: none;
  }

  .close-btn {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 2rem;
    color: #fff;
    cursor: pointer;
    z-index: 1000;
  }

  @media (max-width: 768px) {
    .reel-card img {
      height: 250px;
    }
    .modal-content iframe {
      height: 250px;
    }
  } */



  /* .contact-section {
    padding: 70px 0;
    background: linear-gradient(135deg, #fdfbfb, #ebedee);
    text-align: center;
  }
  
  .section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 10px;
  }
  .section-title span {
    background: linear-gradient(90deg, #ff4d6d, #9b5cff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }
  
  .section-subtitle {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 40px;
  }
  
  .contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: start;
  }
  
  .info-cards {
    display: grid;
    gap: 20px;
  }
  
  .info-card {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 20px;
    border-radius: 15px;
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  .info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
  }
  
  .info-card .icon {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #ff4d6d, #9b5cff);
    color: #fff;
    margin-bottom: 10px;
  }
  
  .form-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(15px);
    border-radius: 20px;
    padding: 30px;
    text-align: left;
    border: 1px solid rgba(255,255,255,0.3);
  }
  
  .form-row {
    display: flex;
    gap: 15px;
  }
  
  input, textarea {
    width: 100%;
    padding: 12px 15px;
    margin-bottom: 15px;
    border-radius: 10px;
    border: 1px solid #ddd;
    font-size: 1rem;
  }
  
  textarea {
    min-height: 100px;
    resize: none;
  }
  
  .btn-gradient {
    width: 100%;
    padding: 14px;
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    color: #fff;
    cursor: pointer;
    background: linear-gradient(90deg, #ff4d6d, #9b5cff);
    transition: 0.3s;
  }
  .btn-gradient:hover {
    background: linear-gradient(90deg, #9b5cff, #ff4d6d);
  }

  

  .form-card {
    position: relative;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(15px);
    border-radius: 20px;
    padding: 30px;
    text-align: left;
    border: 1px solid rgba(255,255,255,0.3);
    overflow: hidden;
  }
  
  
  .form-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url('your-image.jpg') center/cover no-repeat;
    opacity: 0.25; 
    z-index: -2;
    border-radius: 20px;
  }
  .form-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,77,109,0.25), rgba(155,92,255,0.25));
    z-index: -1;
    border-radius: 20px;
  } */
  