/* ============  WebTheme widgets section style css start here  ==============  */
/*==================  Marque Animation Css Start here  =====================   */
.marque-section {
    position: relative;
    --duration: 40s;
    --gap: 0px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    overflow: hidden !important;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    gap: 0;
}
.marque-section .marque-content h1 {
    font-size: 47px;
    line-height: 60px;
    color: #fff;
    margin: 0;
    font-weight: 700;
}
.marque-section .marque-content h1 span {
	margin: 0;
	font-size: 47px;
	display: inline-block;
	-webkit-text-stroke-width: 1px;
	-webkit-text-stroke-color: #fff;
	color: transparent;
	line-height: 60px;
}
.marque-section .marque-text-animate {
    align-items: center;
    -ms-flex-pack: distribute;
    justify-content: space-around;
    gap: 0px;
    min-width: 100%;
    -webkit-animation: text-animate 20s linear infinite;
    animation: text-animate 20s linear infinite;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    -webkit-box-align: center;
    -ms-flex-align: center;
}
.marque-section .marque-text-animate:hover {
    animation-play-state: paused;
}

@-webkit-keyframes text-animate {
    0% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
    100% {
        -webkit-transform: translateX(calc(-100% - var(--gap)));
        transform: translateX(calc(-100% - var(--gap)));
    }
}
.marque-section .marque-text-animate h1 img {
    animation: img_circle_rotate 15s linear infinite;
    padding: 0 20px 0 20px;
    margin: 0 0 0 13px;
}
@keyframes img_circle_rotate {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(-360deg);
        transform: rotate(-360deg);
    }
}

/*   Marque option 2   */
.marque-section.option2 .marque-text-animate {
    animation: text-animate-2 25s infinite linear;
    transition:0.5s;
}
.marque-section.option2 .marque-text-animate:hover {
    animation-play-state: paused;
}
@keyframes text-animate-2 {
    from {
        transform: translateX(-50%)
    }
    to {
        transform: translateX(0%)
    }
}
.marque-section.option2 .marque-text-animate h1 img {
    animation: img_circle_rotate2 10s linear infinite;
    padding: 0 20px 0 20px;
    margin: 0 0 0 13px;
}
@keyframes img_circle_rotate2 {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(-360deg);
        transform: rotate(-360deg);
    }
}
/*   Marque css end  */



/* ======================  Banner Section Title Css Start here  =========================== */
.banner-section {
  position: relative;
  z-index:0;
  transition: 0.4s;
  text-align: left;
}
/* .banner-section:before {
  left: 0;
  top: -80px;
  opacity: 80%;
  background: linear-gradient(180deg, #6E36EB 0%, #489FD6 100%);
  width: 320px;
  height: 320px;
  position: absolute;
  content: "";
  z-index: -1;
  border-radius: 50%;
  -webkit-filter: blur(120px);
  filter: blur(120px);
} */
.single-image img {
  position: relative;
  top: 0;
  right: 0;
  width: 100%;
}
.banner-subtitle h4 {
  font-size: 18px;
  font-weight: 500;
  line-height: 30px;
  color: #BF9444;
  margin: 0 0 5px;
}
.banner-title-one h2 {
  font-size: 70px;
  font-weight: 600;
  line-height: 85px;
  color: #fff;
}
.banner-title-two h3 {
  font-size: 70px;
  font-weight: 600;
  line-height: 85px;
  color: #fff;
}
.banner-description p {
    font-size: 16px;
    font-weight: 500;
    line-height: 28px;
    color: #fff;
    margin: 10px 0 0;
}
.banner-button {
  display: inline-block;
  line-height: 0;
  margin: 40px 0 0 0;
}
.banner-button a {
    display: inline-block;
    background: #BF9444;
    padding: 0px 38px 0px 95px;
    line-height: 56px;
    text-align: center;
    height: 58px;
    border-radius: 30px;
    position: relative;
    z-index: 1;
    transition: 0.4s;
    overflow: hidden;
    font-size: 18px;
    color: #ffffff;
    font-weight: 600;
    font-family: "Nunito Sans", sans-serif;
}
.banner-button a i {
    display: inline-block;
    color: #BF9444;
    height: 58px;
    width: 58px;
    line-height: 58px;
    text-align: center;
    background-color: #fff;
    border-radius: 50%;
    position: absolute;
    left: 0;
    transition: 0.4s;
}

.banner-button a:before {
  background: #fff;
  content: "";
  position: absolute;
  left: 0px;
  top: 0;
  height: 100%;
  width: 0;
  z-index: -1;
  transition: 0.4s;
  border-radius: 30px;
}
.banner-button a:hover:before {
  width: 100%;
}

/*=====================     Banner Two section css start here  =======================  */
.banner-section.option2 .banner-title-one h2 {
  font-size: 80px;
  font-weight: 600;
  line-height: 95px;
  color: #fff;
}
.banner-section.option2 .banner-title-two h3 {
  font-size: 80px;
  font-weight: 600;
  line-height: 95px;
  color: #fff;
}
.banner-section.option2 .banner-title-three h3 {
  font-size: 80px;
  font-weight: 600;
  line-height: 95px;
  color: #fff;
}

/* ======================  Banner animation Css Start here  =========================== */
#particles-banner-animate {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index:-1;
  background: transparent;
}
/*=====================     Brand section css start here  =======================  */
.brand-images {
    text-align: -webkit-center;
    transition: .4s;
}
.brand-images img {
    filter: brightness(0) invert(0.8);
    transition: .4s;
}
.brand-images img:hover{
   filter: brightness(1) invert(0);
}

/*==================    button section css start here  =====================  */

/*   single Button css option 1  */
.single-button.option1 .button-content a{
    display: inline-block;
    background: #BF9444;
    padding: 0px 92px 0px 38px;
    line-height: 56px;
    text-align: center;
    height: 58px;
    border-radius: 30px;
    position: relative;
    z-index: 1;
    transition: 0.4s;
    overflow: hidden;
    font-size: 18px;
    color: #ffffff;
    font-weight: 600;
    font-family: "Nunito Sans", sans-serif;
}
.single-button.option1 .button-content a:before {
  position: absolute;
  content: "";
  height: 100%;
  width: 0%;
  background: #48545C;
  border-radius: 30px;
  top: 0;
  right: 0;
  transition: .5s;
  z-index: -1;
}
.single-button.option1 .button-content a:hover::before{
  width: 100%;
}
.single-button.option1 .button-content a i {
    display: inline-block;
    color: #fff;
    height: 58px;
    width: 58px;
    line-height: 58px;
    text-align: center;
    background-color: #48545C;
    border-radius: 50%;
    position: absolute;
    right: 0;
    transition: 0.4s;
}
.button-content a svg {
    height: 15px;
}

/*   single Button css option 2  */

.single-button.option2 .button-content a {
    display: inline-block;
    background: #BF94441A;
    width: 100%;
    line-height: 50px;
    text-align: center;
    height: 50px;
    border-radius: 10px;
    position: relative;
    z-index: 1;
    transition: 0.4s;
    overflow: hidden;
    font-size: 20px;
    color: #09161D;
    margin-bottom: 9px;
    font-weight: 700;
    font-family: "Cormorant Garamond", serif;
}
.single-button.option2  .button-content a:hover {
  color:#fff;
}
.single-button.option2 .button-content a:before {
  background: #BF9444;
  content: "";
  position: absolute;
  left: 0px;
  bottom: 0;
  height: 0%;
  width: 100%;
  z-index: -1;
  transition: 0.4s;
  border-radius: 10px;
}
.single-button.option2 .button-content a:hover:before {
  height:100%;
}


/*   single Button css option 3  */

.single-button.option3 .button-content a {
  display: inline-block;
  background: #BF9444;
  padding: 0 40px;
  font-size: 16px;
  line-height: 55px;
  color: #fff;
  font-weight: 400;
  text-align: center;
  height: 55px;
  border-radius: 5px;
  border: 1px solid #BF9444;
  position: relative;
  z-index: 1;
  transition: 0.4s;
}
.single-button.option3  .button-content a:hover {
  color:#BF9444;
  border: 1px solid #BF9444;
}
.single-button.option3 .button-content a:before {
  background: #fff;
  content:"";
  position:absolute;
  left:0;
  top:0;
  height:100%;
  width:0;
  z-index: -1;
  transition:0.4s;
  border-radius: 4px;
}
.single-button.option3 .button-content a:hover:before {
  width:100%;
}
.single-button.option3 .button-content a i {
  padding: 0 0 0 5px;
  position: relative;
  top: 0;
  font-size: 15px;
  color: #fff;
  transition:0.4s;
}
.single-button.option3 .button-content a:hover i {
  color: #BF9444;
}

/*   single Button css option 4  */
.button-content {
  line-height: 0;
}
.single-button.option1.option4 .button-content a {
  display: inline-block;
  background: #BF9444;
  padding: 0;
  line-height: 60px;
  text-align: center;
  height: 60px;
  width: 196px;
  border-radius: 30px;
  position: relative;
  z-index: 1;
  transition: 0.4s;
  overflow: hidden;
  font-size: 15px;
  color: #ffffff;
  font-weight: 500;
}

/*  =====================  Faq section css start here  ========================= */

.accordion-content li {
    position: relative;
    margin-bottom: 26px;
    list-style: none;
    z-index: 1;
}
.accordion-content li p {
    display: none;
    font-size: 16px;
    line-height: 28px;
    color: #828F98;
    font-weight: 500;
    padding: 24px 25px 22px;
    border: 1px solid #09161D1A;
    border-radius: 0 0 10px 10px;
}
.accordion-content a img {
  transition: 0.4s;
  display: inline-block;
  position: relative;
  top: 2px;
  padding: 0 10px 0;
}
.accordion-content a {
  z-index: 1;
  position: relative;
  width: 100%;
  cursor: pointer;
  padding: 14px 15px;
  border-radius: 25px;
  font-size: 20px;
  line-height: 30px;
  color: #09161D!important;
  font-weight: 500;
  transition: 0.4s;
  display: inline-block;
  border: 1px solid #09161D1A;
}
.accordion-content a.active {
  color: #fff !important;
  background: #BF9444;
  border-bottom: none;
  border-radius: 10px 10px 0 0;
}
.accordion-content a.active img{
   filter: brightness(0) invert(1);  
}
.accordion-content a:after {
    width: 10px;
    height: 2px;
    background: #09161D;
    position: absolute;
    right: 24px;
    content: " ";
    top: 50%;
    transition:0.3s;
    transform: translate(-50%, -50%);
}
.accordion-content a:before {
    width: 2px;
    height: 10px;
    background: #09161D;
    position: absolute;
    right: 32px;
    content: " ";
    top: 50%;
    transform: rotate(0);
    transition: all 0.2s ease-in-out;
    transform: translate(-50%, -50%);
}
a.active:after {
    transition: 0.3s;
    background: #fff;
    transform: translate(-50%, -50%);
}
a.active:before {
 display: none;
}

/*=================   Call to action section css start here =============== */

.single-call-to-action {
    text-align: center;
    padding: 50px;
    background: #efefef;
    border-radius: 10px;
}
.call-video-button {
    display: inline-block;
    background: #BF9444;
    height: 70px;
    width: 70px;
    line-height: 70px;
    text-align: center;
    border-radius: 50%;
}
.call-video-link a {
    color: #fff;
    font-size: 30px;
}
.call-action-title h3 {
    padding: 20px 0 0 0;
    font-size: 20px;
}
.call-action-title h1 {
    padding: 20px 0 20px 0;
    font-size: 40px;
}
.call-action-description p {
    font-size: 18px;
    color: #6c7470;
    padding: 0 0 30px 0;
}
.call-action-button a {
    background: #6c7470;
    padding: 10px 20px 10px 20px;
    border-radius: 30px;
    color: #fff;
    font-size: 17px;
}

/* ==================   case study post type css start here ===============*/

.case-study-thumb {
  position: relative;
  z-index: 1;
  overflow: hidden;
  transition: 0.5s;
  border-radius: 3px;
}
.case-study-thumb:before {
  position: absolute;
  content: "";
  border-radius: 3px;
  height: 100%;
  width: 100%;
  left: 0;
  bottom: 0;
  z-index: 1;
  transition: 0.5s;
  background-image: linear-gradient(0deg, rgba(17,29,23,0.9) 0%, rgba(17,29,23,0.7) 8%, rgba(17,29,23,0) 56%, rgba(17,29,23,0) 100%);
}
.case-study-thumb:after {
  position: absolute;
  content: "";
  border-radius: 3px;
  height: 0;
  width: 100%;
  left: 0;
  bottom: 0;
  z-index: 1;
  transition: 0.5s;
  border-radius: 3px;
  background-image: linear-gradient(0deg, rgba(123,185,47,0.9) 0%, rgba(123,185,47,0.7) 18%, rgba(123,185,47,0) 69%, rgba(123,185,47,0) 100%);
}
.case-study-thumb:hover:after {
  height: 100%;
}
.single-case-study-post-type .case-study-thumb a img {
	line-height: 0;
	height: 500px;
	object-fit: cover;
	border-radius: 5px;
}
.single-case-study-post-type .case-study-content {
  padding: 20px 0 0 40px;
  position: absolute;
  bottom: -8px;
  left: 0;
  transition: 0.5s;
  z-index: 2;
}
.single-case-study-post-type:hover .case-study-content {
  bottom: 30px;
}
.single-case-study-post-type .case-study-title h1 a {
  display: inline-block;
  transition: 0.5s;
  font-size: 22px;
  line-height: 30px;
  color: #ffffff;
  font-weight: 500;
  z-index: 2;
  position: relative;
  padding: 7px 0 0 0;
}
.case-study-category a {
  font-size: 14px;
  line-height: 26px;
  color: #BF9444;
  font-weight: 400;
  z-index: 2;
  transition: 0.5s;
  position: relative;
  padding:0 0 0 35px;
  display: inline-block;
}
.case-study-category a:before {
  content:"";
  position: absolute;
  background: #BF9444;
  left: 0;
  top: 13px;
  height: 2px;
  width: 25px;
  z-index: 2;
  transition:0.5s;
}
.case-study-thumb:hover .case-study-category a:before {
  background: #fff;
}
.case-study-thumb:hover .case-study-category a {
  color: #fff;
}
.case-study-button a {
  font-size: 15px;
  line-height: 42px;
  color: #ffffff;
  font-weight: 500;
  border-bottom: 1px solid #fff;
  transition: 0.5s;
  opacity: 0;
}
.case-study-button a:hover {
  color: #ffffff;
}
.case-study-thumb:hover .case-study-button a {
  opacity: 1;
}
.case-study-button a i {
  font-size: 15px;
  color: #ffffff;
  transform: rotate(-45deg);
  transition: 0.5s;
  position: relative;
  display: inline-block;
  padding: 0 0 0 2px;
}
.case-study-button a:hover i {
  transform: rotate(0deg);
}
/* ==================   Circle Progress css start here ===============*/

.single-circle-progress {
    display: inline-block;
    position: relative;
}
.single-circle-progress h2 {
    text-align: left;
    font-size: 18px;
    display: inline-block;
    position: relative;
    left: 15px;
    line-height: 28px;
    font-weight: 500;
    margin: 0;
}
.circle-progress-content {
  width: 120px;
  height: 120px;
  line-height: 120px;
  background: transparent;
  display: inline-block;
  position: relative;
}
.circle-progress-content:after {
    content: "";
    width: 90%;
    height: 90%;
    border-radius: 50%;
    border: 6px solid #eee;
    position: absolute;
    top: 0;
    left: 0;
}
.circle-progress-content > span {
  width: 50%;
  height: 100%;
  overflow: hidden;
  position: absolute;
  top: 0;
  z-index: 1;
}
.circle-progress-content .circle-progress-site-2 {
  left: 0;
}
.circle-progress-content .circle-progress-graph {
    width: 90%;
    height: 90%;
    background: none;
    border-width: 6px;
    border-style: solid;
    position: absolute;
    top: 0;
    border-color: #121D17;
}
.circle-progress-content .circle-progress-site-2 .circle-progress-graph {
  left: 100%;
  border-top-right-radius: 75px;
  border-bottom-right-radius: 75px;
  border-left: 0;
  transform-origin: center left;
}
.circle-progress-content .circle-progress-site-1 {
  right: 0;
}
.circle-progress-content .circle-progress-site-1 .circle-progress-graph {
    left: -96%;
    border-top-left-radius: 75px;
    border-bottom-left-radius: 75px;
    border-right: 0;
    -webkit-transform-origin: center right;
    transform-origin: center right;
}
.circle-progress-content .circle-progress-value {
    display: flex;
    border-radius: 50%;
    font-size: 22px;
    text-align: center;
    line-height: 20px;
    align-items: center;
    justify-content: center;
    height: 100%;
    width: 100%;
    font-weight: 400;
    color: #121D17;
}
.circle-progress-content .circle-progress-value span {
  font-size: 18px;
  text-transform: uppercase;
}

/* Circle progress animation */
.circle-progress-content[data-percentage="10"] .circle-progress-site-1 .circle-progress-graph {
  animation: progress-loding-1 1.5s linear forwards;
}
.circle-progress-content[data-percentage="10"] .circle-progress-site-2 .circle-progress-graph {
  animation: 0;
}
.circle-progress-content[data-percentage="20"] .circle-progress-site-1 .circle-progress-graph {
  animation: progress-loding-2 1.5s linear forwards;
}
.circle-progress-content[data-percentage="20"] .circle-progress-site-2 .circle-progress-graph {
  animation: 0;
}
.circle-progress-content[data-percentage="30"] .circle-progress-site-1 .circle-progress-graph {
  animation: progress-loding-3 1.5s linear forwards;
}
.circle-progress-content[data-percentage="30"] .circle-progress-site-2 .circle-progress-graph {
  animation: 0;
}
.circle-progress-content[data-percentage="40"] .circle-progress-site-1 .circle-progress-graph {
  animation: progress-loding-4 1.5s linear forwards;
}
.circle-progress-content[data-percentage="40"] .circle-progress-site-2 .circle-progress-graph {
  animation: 0;
}
.circle-progress-content[data-percentage="50"] .circle-progress-site-1 .circle-progress-graph {
  animation: progress-loding-5 1.5s linear forwards;
}
.circle-progress-content[data-percentage="50"] .circle-progress-site-2 .circle-progress-graph {
  animation: 0;
}
.circle-progress-content[data-percentage="60"] .circle-progress-site-1 .circle-progress-graph {
  animation: progress-loding-5 1.5s linear forwards;
}
.circle-progress-content[data-percentage="60"] .circle-progress-site-2 .circle-progress-graph {
  animation: progress-loding-1 1.5s linear forwards 1.5s;
}
.circle-progress-content[data-percentage="70"] .circle-progress-site-1 .circle-progress-graph {
  animation: progress-loding-5 1.5s linear forwards;
}
.circle-progress-content[data-percentage="70"] .circle-progress-site-2 .circle-progress-graph {
  animation: progress-loding-2 1.5s linear forwards 1.5s;
}
.circle-progress-content[data-percentage="80"] .circle-progress-site-1 .circle-progress-graph {
  animation: progress-loding-5 1.5s linear forwards;
}
.circle-progress-content[data-percentage="80"] .circle-progress-site-2 .circle-progress-graph {
  animation: progress-loding-3 1.5s linear forwards 1.5s;
}
.circle-progress-content[data-percentage="90"] .circle-progress-site-1 .circle-progress-graph {
  animation: progress-loding-5 1.5s linear forwards;
}
.circle-progress-content[data-percentage="90"] .circle-progress-site-2 .circle-progress-graph {
  animation: progress-loding-4 1.5s linear forwards 1.5s;
}
.circle-progress-content[data-percentage="100"] .circle-progress-site-1 .circle-progress-graph {
  animation: progress-loding-5 1.5s linear forwards;
}
.circle-progress-content[data-percentage="100"] .circle-progress-site-2 .circle-progress-graph {
  animation: progress-loding-5 1.5s linear forwards 1.5s;
}

@keyframes progress-loding-1 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(36);
    transform: rotate(36deg);
  }
}
@keyframes progress-loding-2 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(72);
    transform: rotate(72deg);
  }
}
@keyframes progress-loding-3 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(108);
    transform: rotate(108deg);
  }
}
@keyframes progress-loding-4 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(144);
    transform: rotate(144deg);
  }
}
@keyframes progress-loding-5 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(180);
    transform: rotate(180deg);
  }
}

/*  =================    Counter Section CSS   ==================  */
.counter-section.option1 {
    position: relative;
    display: flex;
    align-items: center;
    gap: 18px;
    text-align: center;
    transition: .5s;
}
.counter-section.option1 .counter-icon {
    height: 90px;
    width: 90px;
    line-height: 125px;
    background: #FFFFFF4D;
    text-align: center;
    border-radius: 50%;
    transition: .4s;
}
.counter-section.option1 .counter-icon img{
  transition: .4s;
}
.counter-section.option1:hover .counter-icon img{
  transform: scaleX(-1);
}
.counter-section.option1 .calculate-number {
  font-size: 47px;
  color: #fff;
  display: inline-block;
  line-height: 60px;
  font-weight: 700;
  transition:0.4s;
}
.counter-section.option1 .conter-plus {
 font-size: 47px;
  color: #fff;
  display: inline-block;
  line-height: 60px;
  font-weight: 700;
  transition:0.4s;
}
.counter-section.option1 .counter-title h1 {
  color: #fff;
  font-weight: 500;
  font-size: 16px;
  line-height: 28px;
  padding: 8px 0 0;
}

/*  counter option 2 Css Start here   */

.counter-section.option2 {
  text-align: center;
}
.counter-section.option2 .calculate-number {
  font-size: 42px;
  line-height: 28px;
  color: #BF9444;
  font-weight: 600;
  text-align: center;
}
.counter-section.option2 span.conter-plus {
  font-size: 42px;
  line-height: 28px;
  color: #BF9444;
  font-weight: 600;
}
.counter-section.option2 .counter-title h1 {
  font-size: 16px;
  line-height: 26px;
  color: #6c7470;
  font-weight: 400;
  text-align: center;
  padding: 12px 0 0 0;
}
/* ======================  Feature Box Css Start here  =========================== */
.single-feature-box {
	text-align: center;
	z-index: 1;
	padding: 38px 30px 18px;
	border-radius: 5px;
	background: #fff;
  transition: .5s;
  position: relative;
  overflow: hidden;
}
.single-feature-box .feature-title h1 {
	font-size: 30px;
	font-weight: 600;
	-webkit-transition: .5s;
	-o-transition: .5s;
	transition: .5s;
	margin: 15px 0 15px;
}
.single-feature-box .feature-description {
  font-weight: 400;
	margin-bottom: 20px;
	transition: .5s;
}
.single-feature-box .feature-icon{
	display:inline-block;
	position:relative;
  margin-bottom: 10px;
}
.single-feature-box .feature-icon svg {
    display: inline-block;
    color: #fff;
    height: 30px;
    text-align: center;
    transition: 0.5s;
}

/* ======================  Flip Box Css Start here  =========================== */

.single-flip-box .flip-box-content {
  position: relative;
  z-index: 1;
  margin: 0;
  padding: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  transition: .5s;
}

.single-flip-box .flip-box-content .flip-box-above {
    top: 0;
    right: 0;
    left: 0;
    display: flex;
    text-align: center;
    backface-visibility: hidden;
    perspective: 1000px;
    transition: .5s;
    box-shadow: 0px 0px 2px 0px #00000040;
    border-radius: 10px;
    padding: 70px 32px 55px;
    background: #fff;
    position: relative;
    bottom: 0;
    z-index: 1;
    -webkit-transform: rotateX(0);
    transform: rotateX(0);
}
.single-flip-box .flip-box-content:hover .flip-box-above {
  -webkit-transform: rotateX(180deg);
  transform: rotateX(180deg);
}
.single-flip-box .flip-box-content .flip-box-above .flip-icon {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background-color: #BF9444;
  text-align: center;
  line-height: 170px;
  margin: auto;
  position: relative;
  transition: .4s;
}
.single-flip-box .flip-box-content .flip-box-above .flip-icon::before {
    position: absolute;
    content: "";
    top: -11px;
    left: -11px;
    height: 142px;
    width: 142px;
    border: 2px dashed #BF9444;
    border-radius: 50%;
    animation: circle 15s linear infinite;
    transition: .4s;
}
.single-flip-box .flip-box-content .above-title h1 {
    font-size: 22px;
    line-height: 30px;
    color: #121D17;
    font-weight: bold;
    text-align: center;
    padding: 33px 0 12px;
}
.single-flip-box .flip-box-content .above-description p {
  font-size: 16px;
  line-height: 28px;
  color: #828F98;
  font-weight: 500;
  text-align: center;
  margin: 0;
}
.single-flip-box .flip-box-content .flip-box-behind {
    padding: 42px 38px 22px;
    border-radius: 10px;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1;
    backface-visibility: hidden;
    perspective: 1000px;
    transition: .5s;
    -webkit-transform: rotateX(-180deg);
    transform: rotateX(-180deg);
}
.single-flip-box .flip-box-content:hover .flip-box-behind {
  -webkit-transform: rotateX(0);
  transform: rotateX(0);
}
.single-flip-box .flip-box-content .flip-box-behind:before {
  border-radius: 5px;
  background-image: url(https://webthemesolution.com/restauri/wp-content/uploads/2025/09/facilites-box-hover.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: -1;
  content:"";
  top:0;
  left: 0;
  height: 100%;
  width:100%;
  position: absolute;
}
.single-flip-box .flip-box-content .flip-box-behind .icon {
    height: 70px;
    width: 70px;
    line-height: 85px;
    background: #BF9444;
    border-radius: 50%;
    text-align: center;
    position: relative;
    transition: .4s;
}
.single-flip-box .flip-box-content .flip-box-behind .icon::before {
    position: absolute;
    content: "";
    top: -11px;
    left: -11px;
    height: 90px;
    width: 90px;
    border: 2px dashed #BF9444;
    border-radius: 50%;
    animation: circle 15s linear infinite;
    transition: .4s;
}
.single-flip-box .flip-box-content .behind-title h1 {
    font-size: 22px;
    line-height: 30px;
    color: #ffffff;
    padding: 28px 0 12px;
    font-weight: 600;
}
.single-flip-box .flip-box-content .behind-description p {
    font-size: 18px;
    line-height: 26px;
    color: #fff;
    font-weight: 500;
    margin: 0 0 12px;
}
.single-flip-box .single-list-content li svg{
  height: 16px;
}
.single-flip-box .single-list-content li span {
    font-size: 14px;
    display: inline-block;
    color: #fff;
    padding: 0 0 7px;
}

/* ======================  Heading Title Css Start here  =========================== */

.single-heading.option1 .heading-title {
  font-size: 16px;
  line-height: 28px;
  color: #fff;
  font-weight: 400;
  font-family: "Plus Jakarta Sans", sans-serif;
}
.single-heading.option1 .heading-title span{
   color: #BF9444;
}
.single-heading.option2 .heading-title {
    font-size: 20px;
    line-height: 28px;
    position: relative;
    padding: 27px 40px 32px 28px;
    color: #fff;
    background-color: #09161D;
    border-radius: 10px;
    border-left: 10px solid #BF9444;
    font-weight: 700;
    font-family: "Cormorant Garamond", serif;
}
.single-heading.option2 .heading-title::before {
    position: absolute;
    content: "";
    top: 106px;
    left: 27px;
    height: 2px;
    width: 44px;
    background-color: #BF9444;
}
.single-heading.option2 .heading-title::after {
    position: absolute;
    content: "";
    top: 70px;
    left: 680px;
    height: 30%;
    width: 12%;
    opacity: 0.5;
    background-image: url(https://webthemesolution.com/restauri/wp-content/uploads/2025/07/b-details-1.png);
    background-repeat: no-repeat;
    background-position: center;
}
.single-heading.option2 .heading-title span {
    font-size: 22px;
    display: inline-block;
    color: #fff;
    padding-left: 54px;
    margin-top: 10px;
}

.single-heading.option3 {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.single-heading.option3 .heading-title {
  font-size: 36px;
  line-height: 44px;
  color: #09161D;
  font-weight: 700;
  font-family: "Cormorant Garamond", serif;
}
.single-heading.option3 .heading-title2 {
    font-size: 20px;
    line-height: 28px;
    color: #09161D;
    display: inline-block;
    border: 1px solid #BF944480;
    padding: 5px 25px;
    border-radius: 10px;
    font-family: "Cormorant Garamond", serif;
}
.single-heading.option4 .heading-title {
  font-size: 117px;
  line-height: 112px;
  color: #fff;
  font-weight: 400;
  font-family: "Marcellus", serif;
}
.single-heading.option4 .heading-title span{
   color: #BF9444;
}
.single-heading.option4 .heading-title2 {
  font-size: 117px;
  line-height: 112px;
  color: #fff;
  font-weight: 400;
  font-family: "Marcellus", serif;
}

/* ======================  Section Title Css Start here  =========================== */
/*      title css option 1      */
.main-title-area.option1 .section-subtitle h3 {
    font-size: 18px;
    color: #BF9444;
    font-weight: 500;
    line-height: 30px;
    margin: 0 0 10px;
}
.main-title-area.option1 .section-title-one h1 {
  font-size: 47px;
  line-height: 60px;
  color: #09161D;
  font-weight: 700;
}
.main-title-area.option1 .section-title-two h1 {
  font-size: 47px;
  line-height: 60px;
  color: #09161D;
  font-weight: 700;
}
.main-title-area.option1 .section-description p {
    font-size: 16px;
    line-height: 28px;
    color: #828F98;
    width: 86%;
    font-weight: 400;
    margin: 15px 0 0;
}

/*      title css option 2      */

.main-title-area.option2 .section-subtitle h3 {
    color: #BF9444;
    position: relative;
    font-size: 22px;
    font-weight: 700;
    line-height: 35px;
    padding: 0 0 2px;
}
.main-title-area.option2 .section-title-one h1 {
 font-size: 50px;
  color: #09161D;
  font-weight: 700;
  line-height: 60px;
}
.main-title-area.option2 .section-description p {
    font-size: 16px;
    line-height: 28px;
    color: #828F98;
    font-weight: 400;
    padding: 12px 0 0;
}

/*      title css option 3     */
.main-title-area.option3 .section-subtitle h3 {
  position: relative;
  display: inline-block;
  font-size: 18px;
  line-height: 55px;
  color: #BF9444;
  font-weight: 500;
}
.main-title-area.option3 .section-subtitle h3:before {
  content: "";
  position: absolute;
  right: -42px;
  top: 28px;
  height: 2px;
  width: 30px;
  background: #BF9444;
  border-radius: 1px;
}
.main-title-area.option3 .section-subtitle h3:after {
  content: "";
  position: absolute;
  left: -42px;
  top: 28px;
  height: 2px;
  width: 30px;
  background: #BF9444;
  border-radius: 1px;
}
.main-title-area.option3 .section-title-one h1 {
  font-size: 40px;
  line-height: 50px;
  color: #121D17;
  font-weight: 700;
  text-align: center;
}
.main-title-area.option3 .section-title-two h1 {
  font-size: 40px;
  line-height: 50px;
  color: #121D17;
  font-weight: 700;
  text-align: center;
}

/*      title css option 4    */

.main-title-area.option4 .section-title-one h1 {
  font-size: 56px;
  line-height: 70px;
  color: #121d17;
  font-weight: 700;
}
.main-title-area.option4 .section-title-two h1 {
  font-size: 56px;
  line-height: 70px;
  color: #121d17;
  font-weight: 700;
}
.main-title-area.option4 span.section-brandcolor-title {
  color: #fff;
  font-size: 56px;
  line-height: 70px;
  font-weight: 700;
}
.main-title-area.option4 .section-description p {
  font-size: 17px;
  line-height: 30px;
  color: #6c7470;
  font-weight: 400;
  width: 80%;
  padding: 11px 0 15px 0;
}


/* ======================  Icon Box Css Start here  =========================== */
.icon-box-section.option1 {
    display: flex;
    transition: 0.5s;
    position: relative;
    gap: 12px;
    z-index: 1;
}
.icon-box-section.option1 .icon-box-icon-content {
    flex-shrink: 0;
}
.icon-box-section.option1 .icon-box-title h2 {
    font-size: 20px;
    line-height: 30px;
    color: #09161D;
    transition: 0.5s;
    margin: 15px 0 0;
    font-weight: 500;
}

.icon-box-section.option1 .icon-box-description p {
  font-size: 22px;
  line-height: 30px;
  color: #828F98;
  font-style: italic;
  font-weight: 500;
}

/*   icon box option 2*/
.icon-box-section.option2 {
    display: flex;
    gap: 15px;
    transition: 0.5s;
}
.icon-box-section.option2 .icon-box-icon-content {
    flex-shrink: 0;
}
.icon-box-section.option2 .small-img {
    transition: .4s;
}
.icon-box-section.option2 .icon-box-title h2 {
  font-size: 22px;
  line-height: 28px;
  color: #09161D;
  transition: 0.5s;
  font-weight: 700;
}
.icon-box-section.option2 .icon-box-description p{
  font-size: 16px;
  line-height: 28px;
  color: #828F98;
  margin: 0 0 0;
  font-weight: 500;
}
.icon-box-section.option2:hover .small-img{
  transform: scaleX(-1);
}

/*   icon box option 3    */
.icon-box-section.option3 {
  display: flex;
  align-items: center;
  transition: 0.5s;
}
.icon-box-section.option3 .small-img {
   height: 60px;
   width: 60px;
   line-height: 80px;
   text-align: center;
   border: 1px solid #BF9444;
   border-radius: 50%;
   margin-right: 10px;
   transition: .5s;
}
.icon-box-section.option3 .icon-box-title h2 {
  font-size: 22px;
  line-height: 28px;
  color: #09161D;
  margin: 0;
  font-weight: 700;
}

.icon-box-section.option3:hover .small-img{
  transform: scaleX(-1);
}

/*   icon box option 4    */
.icon-box-section.option4 {
    display: flex;
    align-items: center;
    gap: 16px;
    transition: 0.5s;
}
.icon-box-section.option4 .icon-box-title h2 {
  font-size: 22px;
  line-height: 28px;
  color: #09161D;
  margin: 0;
  font-weight: 700;
}
.icon-box-section.option4 .icon-box-title p{
  font-size: 16px;
  line-height: 28px;
  color: #828F98;
  font-weight: 400;
}

/*   icon box option 5    */
.icon-box-section.option5 {
  display: flex;
  align-items: center;
  transition: 0.5s;
}
.icon-box-section.option5 .icon-box-icon i {
    font-size: 30px;
    color: #BF9444;
    height: 60px;
    width: 60px;
    background: #fff;
    line-height: 60px;
    text-align: center;
    border: 1px solid #BF9444;
    display: inline-block;
    border-radius: 50%;
    margin-right: 10px;
    transition: .5s;
}
.icon-box-section.option5 .icon-box-title h2 {
  font-size: 20px;
  line-height: 28px;
  color: #fff;
  margin: 0;
  font-weight: 700;
}
.icon-box-section.option5 .icon-box-description p {
  font-size: 16px;
  line-height: 28px;
  color: #fff;
  margin: 0;
  font-weight: 400;
}
.icon-box-section.option5:hover .icon-box-icon i{
  transform: scaleX(-1);
}

.icon-box-section.option6 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    height: 40px;
    background: #fff;
    border-radius: 10px;
}

.icon-box-section.option7 {
    display: flex;
    gap: 25px;
}
.icon-box-section.option7 .icon-box-icon-content {
    flex-shrink: 0;
}
.icon-box-section.option7 .icon-post-time h5{
  font-size: 16px;
  color: #828F98;
  font-weight: 400;
  line-height: 28px;
  margin: 0;
  font-family: "Plus Jakarta Sans", sans-serif;
}
.icon-box-section.option7 .icon-box-title h2{
  font-size: 22px;
  line-height: 35px;
  color: #09161D;
  margin: 0 0 0;
  transition: .5s;
  font-weight: 700;
}
.icon-box-section.option7 .icon-box-description p{
  font-size: 16px;
  color: #828F98;
  font-weight: 600;
  line-height: 28px;
  margin: 0;
}
.icon-box-section.option7 .icon-box-title h2:hover{
   color: #BF9444;
}

/* ======================  Service section Css Start here  =========================== */
.service-section.option1 {
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: .4s;
    border-radius: 20px;
}
.service-section.option1 .service-single-image{
  transition: .4s;
  line-height: 0;
  overflow: hidden;
}
.service-section.option1 .service-single-image img{
  width: 100%;
}
.service-section.option1 .service-single-image::before {
    position: absolute;
    content: "";
    height: 0;
    width: 100%;
    left: 0;
    bottom: 0;
    background-image: linear-gradient(0deg, rgb(219, 159, 48) 0%, rgba(219, 159, 48, 0.521) 50%, rgba(29,193,141,0) 70%, rgba(29,193,141,0) 100%);
    border-radius: 20px;
    transition: 0.5s;
}
.service-section.option1 .service-single-image::after {
    position: absolute;
    content: "";
    height: 92%;
    width: 90%;
    left: 0;
    bottom: 0;
    border: 1px solid #FFFFFFAB;
    border-radius: 20px;
    opacity: 0;
    transition: 0.5s;
    right: 0;
    top: 0;
    margin: auto;
}
.service-section.option1:hover .service-single-image::before {
    height: 100%;
}
.service-section.option1 .service-carousel-content {
    position: absolute;
    bottom: 0;
    transition: .4s;
}
.service-section.option1 .service-title h2 {
    font-size: 36px;
    color: #fff;
    line-height: 44px;
    font-weight: 700;
    transition: .4s;
    position: absolute;
    bottom: 120px;
    left: 33px;
    opacity: 0;
    display: inline-block;
}
.service-section.option1 .service-title h1 {
    font-size: 22px;
    color: #fff;
    position: absolute;
    top: 24%;
    left: 21px;
    background-color: #BF9444;
    padding: 7px 29px;
    border-radius: 20px 0 20px 0;
    line-height: 35px;
    display: inline-block;
    border: 1px solid #FFFFFFAB;
    border-left: 0;
    border-top: 0;
    font-weight: 700;
    opacity: 0;
    transition: 0.4s;
}
.service-section.option1 .icon-list {
    position: absolute;
    bottom: 50px;
    left: 32px;
    opacity: 0;
    transition: .4s;
}
.service-section.option1 .icon-list ul {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 10px;
}
.service-section.option1 .icon-list li {
   font-size: 15px;
    line-height: 28px;
    color: #fff;
    font-weight: 400;
    margin-right: 20px;
}
.service-section.option1 .icon-list li i {
    margin-right: 7px;
    font-size: 14px;
    display: inline-block;
    position: relative;
}
.service-section.option1 .service-button {
    position: absolute;
    bottom: 0px;
    left: 32px;
    opacity: 0;
    transition: .4s;
}
.service-section.option1 .service-button a {
  font-size: 18px;
  color: #BF9444;
  display: inline-block;
  position: relative;
  padding: 15px 25px;
  border-radius: 30px;
  background: #fff;
  transition: .4s;
  z-index: 1;
  font-weight: 500;
}
.service-section.option1 .service-button a:before {
    position: absolute;
    content: "";
    height: 100%;
    width: 100%;
    background: #BF9444;
    border-radius: 30px;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    transition: .5s;
    clip-path: polygon(50% 0,50% 0,50% 50%,50% 100%,50% 100%,50% 50%);
    z-index: -1;
}
.service-section.option1 .service-button a:hover:before {
    clip-path: polygon(25% -70%,75% -70%,120% 50%,75% 170%,25% 170%,-20% 50%);
}
.service-section.option1 .service-button a::after {
    position: absolute;
    content: "";
    top: 20px;
    right: 50px;
    height: 15px;
    width: 1px;
    background-color: #BF9444;
}
.service-section.option1 .service-button a i{
  font-size: 16px;
  display: inline-block;
  margin-left: 18px;
}
.service-section.option1:hover .service-single-image::after{
  opacity: 1;
}
.service-section.option1:hover .service-title h1 {
    opacity: 1;
    top: 4%;
}
.service-section.option1:hover .service-title h2 {
    opacity: 1;
    bottom: 156px;
}
.service-section.option1:hover .icon-list{
  opacity: 1;
  bottom: 108px;
}
.service-section.option1:hover .service-button{
  opacity: 1;
  bottom: 30px;
}

/* ======================  Service section-02 Css Start here  =========================== */
.service-section.option2 {
    display: flex;
    align-items: center;
    gap: 18px;
    border: 1px solid #BF944466;
    border-radius: 70px;
}
.service-section.option2 .service-single-image {
    flex-shrink: 0;
}
.service-section.option2 .service-title h1 {
    font-size: 28px;
    line-height: 34px;
    color: #09161D;
    display: inline-block;
    transition: .4s;
    font-weight: 700;
}
.service-section.option2 .service-description p {
    font-size: 16px;
    color: #828F98;
    font-weight: 600;
    line-height: 28px;
    margin: 6px 0 0;
}
.service-section.option2 .service-number h5 {
    font-size: 32px;
    color: #BF9444;
    height: 135px;
    width: 135px;
    line-height: 135px;
    text-align: center;
    background: #BF94440F;
    border-radius: 50%;
    margin-left: 16px;
    font-weight: 700;
}
.service-section.option2 .service-number h5 span{
  display: inline-block;
  font-size: 21px;
  color: #828F98;
  text-decoration: line-through;
}

.service-section.option3 {
    display: flex;
    align-items: center;
    gap: 18px;
    transition: .4s;
}
.service-section.option3 .service-title h1 {
    font-size: 18px;
    line-height: 30px;
    color: #09161D;
    display: inline-block;
    transition: .4s;
    font-weight: 700;
}
.service-section.option3 .service-description p {
    font-size: 13px;
    color: #828F98;
    font-weight: 500;
    line-height: 23px;
    margin: 4px 0 0;
}
.service-section.option3 .service-number h5 {
    font-size: 22px;
    color: #BF9444;
    height: 70px;
    width: 70px;
    line-height: 70px;
    text-align: center;
    background: #BF94440F;
    border-radius: 50%;
    margin-left: 210px;
    font-weight: 700;
    position: relative;
}
.service-section.option3 .service-number h5::before {
    position: absolute;
    content: "";
    top: 35px;
    right: 120px;
    height: 2px;
    width: 100px;
    background-color: #BF944478;
}
.service-section.option3 .service-single-image {
    flex-shrink: 0;
}

/* ======================  Service carosel section Css Start here  =========================== */
.service-carousel-section.option1{
  position: relative;
  overflow: hidden;
  margin-right: 20px;
  z-index: 1;
  transition: .4s;
}
.service-carousel-section.option1 .service-carousel-img {
    transition: .4s;
    position: relative;
    z-index: 1;
    border-radius: 20px;
    overflow: hidden;
}
.service-carousel-section.option1 .service-carousel-img img{
  width: 100%;
}
.service-carousel-section.option1 .service-carousel-content {
    background: #fff;
    text-align: center;
    padding: 48px 65px 32px;
    position: relative;
    transition: .4s;
    z-index: 1;
}
.service-carousel-section.option1 .service-carousel-content::before{
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: #BF9444;
  transition: .4s;
  transform: scale(0);
  border-radius: 0 0 20px 20px;
  z-index: -1;
}
.service-carousel-section.option1:hover .service-carousel-content::before{
  transform: scale(1);
}
.service-carousel-section.option1 .service-carousel-price {
    position: absolute;
    left: 0;
    right: 0;
    top: -18px;
}
.service-carousel-section.option1 .service-carousel-price h4 {
    font-size: 25px;
    line-height: 35px;
    color: #BF9444;
    font-weight: 700;
    background: #fff;
    width: 120px;
    border-radius: 30px;
    box-shadow: 0 0 2px 0 #00000040;
    display: inline-block;
}
.service-carousel-section.option1:hover .service-carousel-sub h5{
  color: #fff;
  background-color: #BF9444;
}
.service-carousel-section.option1 .service-carousel-title a h1 {
    font-size: 25px;
    line-height: 35px;
    display: inline-block;
    color: #09161D;
    transition: .4s;
    font-weight: 700;
}
.service-carousel-section.option1:hover .service-carousel-title a h1{
  color: #fff;
}
.service-carousel-section.option1 .service-carousel-description p {
    font-size: 16px;
    line-height: 28px;
    color: #828F98;
    margin: 8px 0 0;
    transition: .4s;
    font-weight: 500;
}
.service-carousel-section.option1:hover .service-carousel-description p{
  color: #fff;
}
.service-cursousel-slider1.slick-initialized.slick-slider .slick-prev.slick-arrow, .slick-next.slick-arrow{
   height: 52px;
   display: inline-block;
   width: 52px;
   line-height: 52px;
   text-align: center;
   color: #fff;
   border: 1px solid #BF9444;
   border-radius: 50%;
   cursor: pointer;
   transition: .4s;
   z-index: 1;
}
.service-cursousel-slider1.slick-initialized.slick-slider span.slick-prev.slick-arrow {
    position: absolute;
    bottom: -100px;
    left: 0px;
    right: 70px;
    margin: auto;
}
.service-cursousel-slider1.slick-initialized.slick-slider span.slick-next.slick-arrow {
    position: absolute;
    bottom: -100px;
    left: 70px;
    right: 0;
    margin: auto;
}

.service-cursousel-slider1.slick-initialized.slick-slider .slick-prev:hover{
   background-color: #BF9444;
}
.service-cursousel-slider1.slick-initialized.slick-slider .slick-next:hover{
   background-color: #BF9444;
}

.service-carousel-section.option3.\32 ,
.service-carousel-section.option3.\34 ,
.service-carousel-section.option3.\36 ,
.service-carousel-section.option3.\38 ,
.service-carousel-section.option3.\310 ,
.service-carousel-section.option3.\312 ,
.service-carousel-section.option3.\314 {
    margin: 60px 20px 0 0;
}





/* ======================
	Form area custom css
=========================*/
button,
input[type="button"],
input[type="reset"],
input[type="submit"] {
  background: #BF9444;
  color: #fff;
  width: 100%;
  height: 55px;
  line-height: 55px;
  padding: 0;
  border: 0;
  border-radius: 5px;
  font-size: 16px;
  position: relative;
  top: 20px;
  transition: .4s;
}
button:hover,
input[type="button"]:hover,
input[type="reset"]:hover,
input[type="submit"]:hover {
	border-color: #ccc #bbb #aaa;
}
button:active,
button:focus,
input[type="button"]:active,
input[type="button"]:focus,
input[type="reset"]:active,
input[type="reset"]:focus,
input[type="submit"]:active,
input[type="submit"]:focus {
	border-color: #aaa #bbb #bbb;
}
select {
	border: 1px solid #ccc;
}
textarea {
	width: 100%;
}

.buttons input:hover {
  background-color: #09161D;
}

/* ======================  Main Contact css start here  =========================== */

.main-form-section input {
  font-size: 16px;
  height: 60px;
  line-height: 60px;
  padding: 0 0 0 15px;
  border: 1px solid #FFFFFF1A;
  color: #fff !important;
  font-weight: 400;
  margin: 0 0 30px 0;
  border-radius: 5px;
  background: inherit;
}
.main-form-section textarea {
  height: 150px;
  border-color: rgba(255, 255, 255, 0.1);
  margin: 0 0 30px 0;
  border-radius: 5px;
  background: inherit;
  color: #fff;
}
.main-form-section .contact-button {
  text-align: center;
  padding-top: 25px;
}
.main-form-section .contact-button input {
  display: inline-block;
  background: transparent;
  border: 1px solid #46A6D5;
  padding: 0 42px;
  line-height: 50px;
  text-align: center;
  height: 50px;
  border-radius: 26px;
  position: relative;
  z-index: 1;
  transition: 0.4s;
  overflow: hidden;
  font-size: 18px;
  color: #ffffff !important;
  font-weight: 600;
  width: 200px;
}
.main-form-section .form-control:focus {
    outline: none;
    box-shadow: none;
    border-color: #BF9444;
    background: inherit;
    color: #fff;
}
.main-form-section input::placeholder {
  color: #b1b1b1 !important;
  font-size: 16px;
}
.main-form-section textarea::placeholder {
  color: #b1b1b1 !important;
  font-size: 16px;
}
.main-form-section select {
  font-size: 16px;
  height: 52px;
  line-height: 52px;
  padding: 0 0 0 15px;
  border: 1px solid #ebebeb;
  color: #b1b1b1 !important;
  font-weight: 400;
  margin: 0 0 30px 0;
  border-radius: 5px;
  width: 100%;
  outline: 0;
}
.main-form-section select option {
  font-size: 16px;
  color: #121D17;
  font-weight: 400;
}
.main-form-section select option:hover {
  background: #BF9444;
  color: #fff;
}
.main-form-section select::placeholder {
  color: #b1b1b1 !important;
  font-size: 16px;
}
.main-form-section .select:focus {
  outline: none;
  box-shadow: none;
  border-color: #BF9444;
}
p.footer-email label {
  width: 100%;
}
p.footer-email label input {
  width: 100%;
  height: 50px;
  line-height: 50px;
  padding: 0 0 0 15px;
  border-radius: 5px;
  background: transparent;
  outline: 0;
  margin: 0 0 20px 0;
  border: 1px solid rgba(255,255,255,0.1);
  color: #fff;
  font-size: 16px;
}
p.footer-email label input::placeholder {
  opacity: 0.3;
  font-size: 14px;
  color: #ffffff;
  font-weight: 400;
}
.footer-email-button {
  transition: 0.5s;
}
.footer-email-button input[type="submit"] {
  background: #BF9444;
  color: #fff;
  width: 100%;
  height: 50px;
  line-height: 50px;
  padding: 0;
  border-radius: 5px;
  font-size: 14px;
  transition: 0.5s;
  border: 1px solid transparent;
}
.footer-email-button input[type="submit"]:hover {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.1);
  letter-spacing: 2px;
}
.social-media-section {
    text-align: center;
}

/* ======================  Icon List Css Start here  =========================== */
.list-section.option1 {
  position: relative;
  z-index: 1;
}
.list-section.option1 .single-list-content li {
    font-size: 16px;
    color: #fff;
    font-weight: 400;
    margin-bottom: 20px;
    line-height: 28px;
    transition: .4s;
    font-family: "Plus Jakarta Sans", sans-serif;
}
.list-section.option1 .single-list-content li i {
    color: #fff;
    width: 40px;
    line-height: 40px;
    border-radius: 50%;
    height: 40px;
    text-align: center;
    margin-right: 18px;
    display: inline-block;
    border: 1px solid #828F98;
    transition: .4s;
}
.list-section.option1 .single-list-content li:hover i{
   transform: scaleX(-1);
}

/* ======================  list option 2 Css Start here  =========================== */
.list-section.option2{
  position: relative;
  transition: .4s;
}
.list-section.option2 ul.single-list-content li {
   font-size: 22px;
  color: #09161D;
  font-weight: 700;
  line-height: 28px;
  list-style: none;
  margin-bottom: 0;
  font-family: "Cormorant Garamond", serif;
}
.list-section.option2 ul.single-list-content li svg{
  font-size: 30px;
}

.list-section.option4 .single-list-content li {
    height: 55px;
    width: 100%;
    line-height: 55px;
    border-radius: 5px;
    background-color: #fff;
    padding: 0 30px;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
    transition: .4s;
}
.list-section.option4 .single-list-content li::before{
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: #BF9444;
  z-index: -1;
  border-radius: 5px;
  transform: scale(0);
  transition: .4s;
}
.list-section.option4 .single-list-content li a {
    font-size: 16px;
    display: flex;
    color: #828F98;
    justify-content: space-between;
    transition: .4s;
}
.list-section.option4 .single-list-content li:hover:before{
  transform: scale(1);
}
.list-section.option4 .single-list-content li:hover a{
  color: #fff;
}

.list-section.option5 .single-list-content li{
  display: inline-block;
}
.list-section.option5 .single-list-content li a {
    font-size: 22px;
    line-height: 28px;
    display: inline-block;
    position: relative;
    color: #828F98;
    background-color: #fff;
    padding: 14px 25px;
    border-radius: 10px;
    margin: 0 12px 12px 0;
    transition: .4s;
    font-weight: 700;
    z-index: 1;
    font-family: "Cormorant Garamond", serif;
}
.list-section.option5 .single-list-content li a::before{
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: #BF9444;
  z-index: -1;
  transform: scale(0);
  border-radius: 10px;
  transition: .4s;
}
.list-section.option5 .single-list-content li a:hover{
  color: #fff;
}
.list-section.option5 .single-list-content li a:hover:before{
  transform: scale(1);
}

/* ======================  Pricing Css Start here  =========================== */
.pricing-section {
    padding: 45px 50px 40px;
    position: relative;
    transition: 0.4s;
    border-radius: 28px;
    background: #F8F6F3;
}
.pricing-price-content {
    position: relative;
    z-index: 1;
    height: 118px;
    width: 118px;
    text-align: center;
    transition: 0.4s;
    background: #fff;
    margin: 0 auto;
    padding-top: 12px;
    border-radius: 50%;
    border: 8px solid #BF944424;
}
.pricing-name h2 {
  font-size: 35px;
  line-height: 40px;
  text-align: center;
  color: #09161D;
  transition: 0.4s;
  position: relative;
  z-index: 1;
  font-weight: 700;
}
.pricing-section:hover .pricing-name h2 {
  color: #BF9444;
}
.pricing-title h1 {
    color: #626262;
    transition: 0.4s;
    font-weight: 400;
    text-align: center;
    font-size: 16px;
    line-height: 28px;
    margin: 10px 0 20px;
    font-family: "Plus Jakarta Sans", sans-serif;
}
.pricing-price-content .dollar {
    font-size: 35px;
    line-height: 40px;
    color: #09161D;
    font-weight: 700;
    transition: 0.4s;
    font-family: "Cormorant Garamond", serif;
}
.pricing-price-content .pricing-price {
  font-size: 35px;
  line-height: 40px;
  color: #09161D;
  transition: 0.4s;
  font-weight: 700;
  font-family: "Cormorant Garamond", serif;
}
.pricing-price-content .price-date {
  color: #435168;
  transition: 0.4s;
  font-weight: 400;
  font-size: 16px;
  line-height: 28px;
}
.pricing-content {
    background: #fff;
    transition: 0.4s;
    position: relative;
    margin-top: -55px;
    padding: 78px 30px 36px;
    border-radius: 30px;
}
.pricing-content::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  height: 0;
  width: 0;
  opacity: 0;
  border-radius: 0 30px 30px 0;
  transition: 0.4s;
  background-color: #BF9444;
}
.pricing-content::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  opacity: 0;
  height: 0;
  width: 0;
  border-radius: 30px 0 0 30px; 
  transition: 0.4s;
  background-color: #BF9444;
}
.pricing-services-list li {
  list-style: none;
  color: #828F98;
  transition: 0.4s;
  position: relative;
  z-index: 1;
  padding: 4px 0;
  font-weight: 500;
  font-size: 16px;
  line-height: 30px;
}
.pricing-services-list li svg {
  width: 20px;
  transition: 0.4s;
  margin: 0 5px 0 0;
}
.pricing-contact-button a {
    font-size: 18px;
    border-radius: 30px;
    background-color: #BF944480;
    padding: 16px 50px;
    margin-top: 38px;
    position: relative;
    display: inline-block;
    text-align: center;
    width: 100%;
    z-index: 1;
    transition: 0.4s;
    color: #fff;
    font-weight: 500;
    overflow: hidden;
}

.pricing-contact-button a:before {
  content: "";
  position: absolute;
  background: #BF9444;
  height: 100%;
  width: 100%;
  left: 0;
  top: 0;
  transition: 0.4s;
  z-index: -1;
  border-radius: 30px;
  transform: scale(0);
}
.pricing-section:hover .pricing-contact-button a:before{
  transform: scale(1);
}
.pricing-contact-button a:hover{
  color: #fff;
}
.pricing-section:hover .pricing-price-content{
   border: 8px solid #BF9444;
}
.pricing-section:hover .pricing-price-content .dollar{
   color: #BF9444;
}
.pricing-section:hover .pricing-price-content .pricing-price{
   color: #BF9444;
}
.pricing-section:hover .pricing-services-list li{
  color: #fff;
}
.pricing-section:hover .pricing-services-list li svg{
  filter: brightness(0) invert(1);
}
.pricing-section:hover .pricing-content:before {
  opacity: 1;
  height: 100%;
  width: 50%;
}
.pricing-section:hover .pricing-content::after {
  opacity: 1;
  height: 100%;
  width: 50%;
}

/* ======================  team Member Css Start here  =========================== */
.team-section.option1 {
    position: relative;
    border-radius: 10px;
    z-index: 1;
    transition: .4s;
}
.team-section.option1 .team-member-image{
  line-height: 0;
}
.team-section.option1 .team-member-image img{
  width: 100%;
}
.team-section.option1 .team-member-content {
    position: absolute;
    bottom: 12px;
    background-color: #BF9444B2;
    padding: 55px 0px 22px;
    text-align: center;
    left: 0;
    right: 0;
    margin: 0 12px;
    border-radius: 10px;
    transition: .4s;
}
.team-section.option1:hover .team-member-content{
  background-color: #09161D;
}
.team-section.option1 .team-plus {
    font-size: 30px;
    color: #BF9444B2;
    display: inline-block;
    height: 40px;
    width: 40px;
    line-height: 40px;
    text-align: center;
    background-color: #fff;
    border-radius: 50%;
    outline: 5px solid #BF9444;
    position: absolute;
    top: -20px;
    left: 0;
    right: 0;
    margin: auto;
    transition: .4s;
}
.team-section.option1:hover .team-plus{
  opacity: 0;
}
.team-section.option1 .team-member-name h1 {
    font-size: 22px;
    line-height: 30px;
    color: #fff;
    font-weight: 600;
    transition: .4s;
}
.team-section.option1:hover .team-member-name h1{
   color: #BF9444B2;
}
.team-section.option1 .member-designation p {
    font-size: 16px;
    color: #fff;
    font-weight: 500;
    line-height: 28px;
    margin: 5px 0 0px;
    transition: .4s;
}
.team-section.option1 .team-media-icon {
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
    bottom: 115px;
    background: #FFFFFF;
    border-radius: 28px;
    padding: 5px 0;
    opacity: 0;
    transition: .4s;
}
.team-section.option1:hover .team-media-icon{
  opacity: 0.9;
}
.team-section.option1 .team-media-icon li{
  display: inline-block
}
.team-section.option1 .team-media-icon a i{
  font-size: 16px;
  position: relative;
  display: inline-block;
  color: #BF9444;
  height: 32px;
  width: 32px;
  line-height: 32px;
  text-align: center;
  margin-right: 7px;
  border: 1px solid #BF9444;
  border-radius: 50%;
  z-index: 1;
  transition: .4s;
}
.team-section.option1 .team-media-icon a i::after{
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: #BF9444;
  border-radius: 50%;
  z-index: -1;
  transform: scale(0);
  transition: .4s;
}
.team-section.option1 .team-media-icon a i:hover:after{
  transform: scale(1);
}
.team-section.option1 .team-media-icon a i:hover{
  color: #fff;
}

/* ======================  team Member Slide Css Start here  =========================== */
.team-section.option2 {
  text-align: center;
  position: relative;
  z-index: 1;
  transition: 0.5s;
  border-radius: 5px;
  overflow: hidden;
}
.team-section.option2 .team-member-image img {
  transition: 0.4s;
}
.team-section.option2 .team-member-content {
  background: #0B1319;
  box-shadow: 0px 0px 10px 0px #47A2D633 inset;
  padding: 10px 0 24px 0;
  position: absolute;
  bottom: -100%;
  width: 85%;
  left: 0;
  right: 0;
  margin: auto;
  border-radius: 5px;
  z-index: 1;
  transition: 0.5s;
}
.team-section.option2 .team-member-content:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 0;
  width: 100%;
  z-index: -1;
  transition: 0.5s;
  background: linear-gradient(180deg, #6E36EB 0%, #489FD6 100%);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 5px;
  box-shadow: 0px 0px 10px 0px #47A2D633 inset;
}
.team-section.option2 .team-member-content:hover:before {
  height: 100%;
}
.team-section.option2:hover .team-member-content {
  bottom: 20px;
  transition: 0.5s;
}
.team-section.option2 .team-member-name h1 {
  margin: 12px 0 0 0;
  color: #fff;
  transition: 0.4s;
  font-weight: 500;
  font-size: 20px;
  line-height: 30px;
  text-align: center;
}
.team-section.option2:hover .team-member-name h1 {
  color: #fff;
}
.team-section.option2 .member-designation {
  position: relative;
}
.team-section.option2 .member-designation h3 {
  margin: 0;
  padding: 0;
  color: #fff;
  transition: 0.5s;
  font-weight: 400;
  font-size: 17px;
  line-height: 26px;
  text-align: center;
}
.team-section.option2 .team-member-content:hover .member-designation h3 {
  font-size: 0;
}
.team-section.option2 ul.team-media-icon li a {
  color: #fff;
  transition: 0.5s;
  font-size: 0;
}
.team-section.option2 .team-member-content:hover ul.team-media-icon li a {
  font-size: 15px;
}
ul.team-media-icon li {
  list-style: none;
  display: inline-block;
}
.team-section.option2 ul.team-media-icon {
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  top: 15px;
}
.team-section.option2 ul.team-media-icon li {
  list-style: none;
  display: inline-block;
  padding: 0 5px 0 5px;
}

/* ======================  Team-carousel Css Start here  =========================== */
.team-slide-section {
    position: relative;
    background-color: #FFFFFF;
    border-radius: 20px;
    z-index: 1;
    padding: 0 0 30px;
    transition: .4s;
}
.team-slide-section::before {
    position: absolute;
    content: "";
    height: 0;
    width: 100%;
    left: 0;
    bottom: 0;
    background-image: linear-gradient(0deg, #db9f30e5 0%, #BF9444a6 50%, rgba(29,193,141,0) 70%, rgba(29,193,141,0) 100%);
    border-radius: 20px;
    z-index: -1;
    transition: 0.5s;
}
.team-slide-section .team-slide-member-image {
    position: relative;
    line-height: 0;
    z-index: -2;
    transition: .4s;
}
.team-slide-section .team-slide-member-image::after {
    position: absolute;
    content: "";
    height: 90%;
    width: 90%;
    left: 17px;
    bottom: 18px;
    border: 1px solid #FFFFFFAB;
    border-radius: 20px;
    opacity: 0;
    transition: 0.5s;
}
.team-slide-section .team-slide-member-image img{
  width: 100%;
}
.team-slide-section .team-slide-content {
    padding: 18px 30px 0;
    text-align: center;
}
.team-slide-section .team-slide-member-name h1 {
    font-size: 36px;
    font-weight: 700;
    line-height: 44px;
    transition: .4s;
}
.team-slide-section .team-slide-member-designation p {
    font-size: 16px;
    font-weight: 400;
    line-height: 28px;
    padding-bottom: 15px;
    border-bottom: 1px solid #828F9850;
    margin-bottom: 20px;
    transition: .4s;
}
.team-slide-section .team-slide-media-icon li{
  display: inline-block
}
.team-slide-section .team-slide-media-icon a i{
  font-size: 14px;
  display: inline-block;
  color: #BF9444;
  height: 30px;
  width: 30px;
  line-height: 30px;
  text-align: center;
  margin-right: 7px;
  border: 1px solid #BF9444;
  border-radius: 50%;
  transition: .4s;
}
.team-slide .owl-nav {
    text-align: center;
    position: absolute;
    bottom: 90px;
    right: -383px;
}
.team-slide .owl-nav .owl-prev {
    font-size: 16px;
    display: inline-block;
    height: 52px;
    width: 52px;
    line-height: 52px;
    border-radius: 50%;
    text-align: center;
    color: #fff;
    background: #BF9444;
    margin: 0 10px;
    position: relative;
    transition: .4s;
    z-index: 1;
}
.team-slide .owl-nav .owl-next {
    font-size: 16px;
    display: inline-block;
    height: 52px;
    width: 52px;
    line-height: 52px;
    border-radius: 50%;
    text-align: center;
    color: #fff;
    background: #BF9444;
    margin: 0 10px;
    position: relative;
    transition: .4s;
    z-index: 1;
}

.team-slide .owl-nav .owl-prev:hover{
  background: #BF9444;
}
.team-slide .owl-nav .owl-next:hover {
  background: #BF9444;
}

.team-slide-section:hover:before{
  height: 100%;
}
.team-slide-section:hover .team-slide-member-image::after{
  opacity: 1;
}
.team-slide-section:hover .team-slide-member-name h1{
  color: #fff;
}
.team-slide-section:hover .team-slide-member-designation p{
  color: #fff;
  border-bottom: 1px solid #ffffffa6;
}
.team-slide-section:hover .team-slide-media-icon a i{
  color: #fff;
  border: 1px solid #fff;
}
.team-slide-section .team-slide-media-icon a i:hover{
  color: #BF9444;
  border: 1px solid #BF9444;
}

/* ======================  Testimonial Css Start here  =========================== */
.testimonial-section.option1 {
  position: relative;
  z-index: 1;
  transition: 0.5s;
}
.testimonial-section.option1 .testimonial-single-content {
    display: flex;
    align-items: center;
    transition: .4s;
    gap: 82px;
    margin-left: 185px;
}
.testimonial-section.option1 .testimonial-single-image {
    flex-shrink: 0;
}
.testimonial-section.option1 .testimonial-single-content .rating-info {
    display: flex;
    align-items: center;
}
.testimonial-section.option1 .testimonial-image img {
    height: auto;
    width: auto;
    display: inline-block;
    position: relative;
    top: 7px;
    transition: .4s;
}
.testimonial-section.option1 .about-author h1 {
    font-size: 28px;
    color: #BF9444;
    line-height: 34px;
    transition: 0.4s;
    margin: 0 0 6px;
    font-weight: 700;
}
.testimonial-section.option1 .about-author h3 {
  font-size: 16px;
  color: #828F98;
  line-height: 28px;
  font-weight: 500;
}
.testimonial-section.option1 .testi-description p {
    position: relative;
    z-index: 1;
    transition: 0.5s;
    padding: 35px 0 30px;
    font-size: 16px;
    color: #828F98;
    font-weight: 400;
    line-height: 24px;
}
.testimonial-section.option1 .author-info {
    position: relative;
    padding: 32px 0 0;
    text-align: left;
    transition: 0.5s;
    display: flex;
    align-items: center;
    gap: 22px;
}
.testimonial-section.option1 .author-image {
  text-align: center;
  padding: 0;
  position: relative;
  z-index: 1;
  display: inline-block;
}
.testimonial-section.option1 .author-image img {
  display: inline-block;
  border-radius: 50%;
  transition: 0.5s;
  position: relative;
  z-index: 1;
  top: 8px;
}
.testimonial-section.option1 .testimonial-star i {
    display: inline-block;
    color: #BF9444;
}
.testimonial-section-carousel1 .owl-dots {
    position: absolute;
    top: 90px;
    left: 37px;
}
.testimonial-section-carousel1 .owl-dot {
    background: url('https://webthemesolution.com/restauri/wp-content/uploads/2025/10/testi-img.png');
    width: 62px;
    height: 127px;
    display: inline-block;
    margin: 0 7px 0;
    border-radius: 30px;
    background-repeat: no-repeat;
}
.testimonial-section-carousel1 .owl-dot:nth-child(2) {
    position: relative;
    top: 165px;
    left: -75px;
    background: url('https://webthemesolution.com/restauri/wp-content/uploads/2025/10/testi-img2.png');
    background-repeat: no-repeat;
}
.testimonial-section-carousel1 .owl-dot:nth-child(3) {
    position: relative;
    top: 325px;
    left: -152px;
    background: url('https://webthemesolution.com/restauri/wp-content/uploads/2025/10/testi-img3.png');
    background-repeat: no-repeat;
}
.testimonial-section-carousel1 .owl-dot.active {
    position: relative;
    z-index: 1;
    transition: .4s;
}
.testimonial-section-carousel1 .owl-dot.active::before {
    position: absolute;
    content: "";
    height: 151px;
    width: 86px;
    top: -12px;
    left: -12px;
    border: 1px solid #D58F76;
    border-radius: 45px;
    transition: .4s;
}

/* ======================  testimonial 2 Css Start here  =========================== */
.testimonial.option2 .testimonial-single-content {
    position: relative;
    background: #fff;
    text-align: -webkit-center;
    padding: 0 0px 38px;
    transition: .4s;
    border-radius: 5px;
}
.testimonial.option2 .tesimonial-inner-box {
    position: relative;
    background: #BF9444;
    border-radius: 5px;
    padding: 40px 0 68px;
    transition: .4s;
    z-index: 1;
}
.testimonial.option2 .tesimonial-inner-box::before{
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  height: 0%;
  width: 100%;
  background-color: #09161D;
  transition: .4s;
  border-radius: 5px;
  z-index: -1;
}
.testimonial.option2 .testimonial-single-content:hover .tesimonial-inner-box::before{
  height: 100%;
}
.testimonial.option2 .about-author h1 {
    font-size: 28px;
    line-height: 34px;
    color: #fff;
    font-weight: 700;
}
.testimonial.option2 .about-author h3 {
    font-size: 16px;
    line-height: 28px;
    color: #fff;
    margin: 5px 0 0;
    font-weight: 500;
}
.testimonial.option2 .author-image {
    position: absolute;
    top: 138px;
    left: 0;
    right: 0;
}
.testimonial.option2 .testi-description p {
    font-size: 16px;
    line-height: 24px;
    color: #828F98;
    margin: 60px 22px 22px;
}
.testimonial.option2 .testimonial-star i {
    font-size: 16px;
    display: inline-block;
    color: #BF9444;
    margin-right: 2px;
}
.testimonial.option2 .owl-nav {
    text-align: center;
    margin-top: 45px;
}
.testimonial.option2 .owl-prev, .owl-next {
    position: relative;
    height: 45px;
    width: 45px;
    display: inline-block;
    line-height: 45px;
    margin: 0 5px;
    text-align: center;
    border: 1px solid #BF9444;
    color: #BF9444;
    border-radius: 50%;
    transition: .4s;
    z-index: 1;
}
.testimonial.option2 .owl-prev::before, .owl-next::before{
   position: absolute;
   content: "";
   top: 0;
   left: 0;
   height: 100%;
   width: 100%;
   background-color: #BF9444;
   transition: .4s;
   border-radius: 50%;
   transform: scale(0);
   z-index: -1;
}
.testimonial.option2 .owl-prev:hover:before, .owl-next:hover:before{
  transform: scale(1);
}
.testimonial.option2 .owl-prev:hover, .owl-next:hover{
  color: #fff;
}

/* ======================  testimonial 3 Css Start here  =========================== */

.testimonial.option3 .testimonial-single-content {
    transition: .4s;
}
.testimonial.option3 .testimonial-single-content .testimonial-image {
    display: flex;
    align-items: center;
    gap: 18px;
}
.testimonial.option3 .testimonial-single-content .about-author h1{
   font-size: 22px;
   line-height: 35px;
   color: #09161D;
   font-weight: 700;
} 
.testimonial.option3 .testimonial-single-content .about-author h3{
   font-size: 16px;
   line-height: 31px;
   color: #828F98;
   font-weight: 400;
   font-family: "Plus Jakarta Sans", sans-serif;
}
.testimonial.option3 .testimonial-single-content .testi-description p {
    font-size: 16px;
    line-height: 28px;
    color: #828F98;
    font-weight: 500;
    padding-bottom: 32px;
    margin: 22px 0 20px;
    border-bottom: 1px solid #828F9833;
    font-style: italic;
    font-family: "Plus Jakarta Sans", sans-serif;
}
.testimonial.option3 .testimonial-single-content .author-image {
    display: flex;
    align-items: center;
    gap: 20px;
}
.testimonial.option3 .testimonial-single-content .testimonial-title h2{
   font-size: 14px;
   line-height: 24px;
   color: #09161D;
   font-weight: 400;
   font-family: "Plus Jakarta Sans", sans-serif;
}
.testimonial.option3 .owl-dots {
    margin-top: 32px;
}
.testimonial.option3 .owl-dots .owl-dot {
    height: 10px;
    width: 10px;
    background-color: #BF9444c7;
    border-radius: 50%;
    display: inline-block;
    margin-right: 9px;
    transition: .4s;
}
.testimonial.option3 .owl-dots .owl-dot.active{
  height: 10px;
  width: 35px;
  border-radius: 5px;
  background-color: #BF9444;
}

/* ======================  Work System Css Start here  =========================== */
.work-system-section {
  background: #BF9444;
  border-radius: 10px;
  padding: 30px 0 30px 0;
  text-align: center;
  transition: 0.5s;
}
.working-title h1 {
  font-size: 25px;
}
.work-system-single-img {
  line-height: 0;
}
.work-system-numbering h3 {
  padding: 0 0 20px 0;
  font-size: 20px;
}

/* ======================  Last Post Css Start here  =========================== */
.single-last-post {
    padding: 0;
    margin: 0 0 20px 0;
    border-radius: 10px;
    position: relative;
    display: flex;
    align-items: center;
}
.last-post-content {
    display: inline-block;
    padding: 0 0 0 15px;
}
.last-post-img {
    display: inline-block;
    float: left;
    line-height: 0;
    flex-shrink: 0;
}
.last-post-img img {
  height: 85px;
  width: 90px;
  object-fit: cover;
  border-radius: 5px;
}
.last-post-title h1 {
    line-height: 30px;
}
.last-post-title h1 a {
    color: #111;
    font-size: 22px;
    display: inline-block;
    line-height: 25px;
    font-weight: 600;
    transition:0.4s;
}
.last-post-title h1 a:hover {
    color: #BF9444;
}
.last-post-time span {
    color: #BF9444;
    font-size: 15px;
}

/* ======================  Blog Post Css Start here  =========================== */

.single-blog-post-content {
  transition: 0.5s;
}
.single-blog-post-content .blog-post-img {
  position: relative;
  line-height: 0;
  transition: 0.5s;
  z-index: 1;
}
.single-blog-post-content .blog-post-img img{
  width: 100%;
}
.single-blog-post-content .blog-post-text-content {
    padding: 22px 15px 8px;
}
.single-blog-post-content .blog-post-title h1 a {
    display: inline-block;
    margin: 12px 0 20px;
    transition: 0.5s;
    font-size: 22px;
    font-weight: 700;
    line-height: 35px;
    color: #09161D;
}
.single-blog-post-content .blog-post-title h1 a:hover {
  color: #BF9444;
}
.single-blog-post-content .blog-post-admin-content {
    display: flex;
    transition: .4s;
}
.single-blog-post-content .blog-post-admin-content a span{
   display: inline-block;
   margin-right: 7px;
}
.single-blog-post-content .blog-post-author a {
    color: #09161D;
    transition: 0.4s;
    text-transform: capitalize;
}
.single-blog-post-content .blog-post-author a:hover {
   color: #BF9444;
}
.single-blog-post-content .blog-post-time {
    margin-left: 20px;
    display: inline-block;
    transition: .4s;
}
.single-blog-post-content .blog-post-time h6 {
    font-size: 18px;
    line-height: 25px;
    color: #BF9444;
}
.single-blog-post-content .blog-post-time i{
  display: inline-block;
  margin-right: 7px;
}
.single-blog-post-content .blog-post-button a {
    display: inline-block;
    background: #BF9444;
    padding: 0px 38px 0px 95px;
    line-height: 56px;
    text-align: center;
    height: 58px;
    border-radius: 30px;
    position: relative;
    z-index: 1;
    transition: 0.4s;
    overflow: hidden;
    font-size: 18px;
    color: #ffffff;
    font-weight: 600;
    font-family: "Nunito Sans", sans-serif;
}
.single-blog-post-content .blog-post-button a:before {
    background: #48545C;
    content: "";
    position: absolute;
    left: 0px;
    top: 0;
    height: 100%;
    width: 0;
    z-index: -1;
    transition: 0.4s;
    border-radius: 30px;
}
.single-blog-post-content .blog-post-button a i {
    display: inline-block;
    color: #fff;
    height: 58px;
    width: 58px;
    line-height: 58px;
    text-align: center;
    background-color: #48545C;
    border-radius: 50%;
    position: absolute;
    left: 0;
    transition: 0.4s;
}
.single-blog-post-content .blog-post-button a:hover::before{
  width: 100%;
}
.single-blog-post-content.option1 {
    display: block;
    position: relative;
    padding: 30px;
    background: #fff;
    border-radius: 20px;
    margin: 5px 2px 5px;
    overflow: hidden;
    box-shadow: 0px 0px 2px 0px #00000040;
}
.single-blog-post-content.option1 .blog-post-img:before {
    position: absolute;
    top: 0;
    left: 0;
    content: '';
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255,.1);
    border-radius: 10px;
    transition: .5s;
    transform: scale(0);
}
.single-blog-post-content.option1:hover .blog-post-img::before{
   transform: scale(1);
}
.single-blog-post-content.option1 .blog-post-img img {
  height: 260px;
  width: 100%;
  object-fit: cover;
  border-radius: 10px;
}
.single-blog-post-content.option1 .blog-post-title {
  margin-bottom: 0;
}
.blog-post-section .owl-nav {
    display: flex;
    gap: 12px;
    left: 0;
    position: absolute;
    justify-content: center;
    right: 0;
    bottom: -80px;
}
.blog-post-section .owl-prev i {
    height: 45px;
    display: inline-block;
    width: 45px;
    line-height: 45px;
    text-align: center;
    color: #BF9444;
    border: 1px solid #BF9444;
    border-radius: 50%;
    cursor: pointer;
    transition: .4s;
    position: relative;
    z-index: 1;
}
.blog-post-section .owl-prev i:hover{
  color: #fff;
}

.blog-post-section .owl-prev i::after{
    background: #BF9444;
    content: "";
    position: absolute;
    left: 0px;
    top: 0;
    height: 100%;
    width: 100%;
    z-index: -1;
    transition: 0.4s;
    border-radius: 50%;
    transform: scale(0);
}
.blog-post-section .owl-prev i:hover:after{
  transform: scale(1);
}
.single-blog-post-content .blog-post-button a:before {
    background: #48545C;
    content: "";
    position: absolute;
    left: 0px;
    top: 0;
    height: 100%;
    width: 0;
    z-index: -1;
    transition: 0.4s;
    border-radius: 30px;
}
.blog-post-section .owl-next i::after{
    background: #BF9444;
    content: "";
    position: absolute;
    left: 0px;
    top: 0;
    height: 100%;
    width: 100%;
    z-index: -1;
    transition: 0.4s;
    border-radius: 50%;
    transform: scale(0);
}
.blog-post-section .owl-next i:hover:after{
  transform: scale(1);
}
.blog-post-section .owl-next i{
    height: 45px;
    display: inline-block;
    width: 45px;
    line-height: 45px;
    text-align: center;
    color: #BF9444;
    border: 1px solid #BF9444;
    border-radius: 50%;
    cursor: pointer;
    transition: .4s;
    position: relative;
    z-index: 1;
}
.blog-post-section .owl-next i:hover{
  color: #fff;
}

/*==========        Blog post 2 css          ==========*/
.single-blog-post-content.option2 {
    display: block;
    position: relative;
    padding: 0px 0 20px;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
}
.single-blog-post-content.option2 .blog-post-img::after {
    position: absolute;
    top: 0;
    left: 0;
    content: '';
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255,.1);
    border-radius: 10px;
    transition: .5s;
    transform: scale(0);
}
.single-blog-post-content.option2:hover .blog-post-img::after{
   transform: scale(1);
}
.single-blog-post-content.option2 .blog-post-img{
    position: relative;
    z-index: 1;
    line-height: 0;
    transition: .4s;
}
.single-blog-post-content.option2 .blog-post-img::before{
    position: absolute;
    content: "";
    top: 12px;
    left: 12px;
    height: 90%;
    width: 94%;
    border: 1px solid #FFFFFF;
    border-radius: 10px;
    opacity: 0;
    transition: .4s;
}
.single-blog-post-content.option2 .blog-post-text-content {
    padding: 24px 30px 8px;
}
.single-blog-post-content.option2:hover .blog-post-img::before{
   opacity: 1;
}

/*==========        Portfolio css          ==========*/
.portfolio-category-tab-menu {
    position: absolute;
    top: -125px;
    right: 10px;
}
.portfolio-category-tab-menu ul {
    padding: 0;
    text-align: right;
    margin: 0;
}
.portfolio-category-tab-menu ul li {
    background: #fff;
    font-size: 18px;
    line-height: 1;
    transition: 0.5s;
    cursor: pointer;
    text-transform: capitalize;
    padding: 15px 38px;
    font-weight: 500;
    position: relative;
    margin: 0 5px;
    margin-bottom: 7px;
    display: inline-block;
    border-radius: 30px;
    color: #09161D;
    border: 1px solid #BF9444;
}
.portfolio-category-tab-menu li:hover {
	color: #fff;
  background: #BF9444;
}
.portfolio-category-tab-menu li.active_category_menu {
	color: #fff;
  background: #BF9444;
  transition: 0.5s;
}
.single-portfolio {
  position: relative;
  margin: 0 0 30px 0;
  transition: 0.5s;
  overflow: hidden;
}
.portfolio-thumb {
    line-height: 0;
    z-index: 1;
    position: relative;
    overflow: hidden;
    border-radius: 20px;
}
.portfolio-thumb::before {
    position: absolute;
    content: "";
    top: 15px;
    left: 15px;
    height: 90%;
    width: 90%;
    border: 1px solid #fff;
    border-radius: 20px;
    transition: .4s;
    opacity: 0;
}
.single-portfolio .portfolio-thumb img {
  height: 360px;
  object-fit: cover;
  width: 100%;
  border-radius: 5px;
}
.portfolio-text-content {
    display: flex;
    align-items: center;
    background-color: #fff;
    position: absolute;
    bottom: -95px;
    left: 20px;
    right: 20px;
    border-radius: 5px;
    padding: 8px 20px;
    transition: .4s;
    width: 87%;
}
.portfolio-category a {
  color: #828F98;
  display: inline-block;
  text-align: center;
  transition: 0.4s;
  padding: 0;
  position: relative;
  z-index: 1;
  font-weight: 400;
  font-size: 16px;
  line-height: 28px;
}
.portfolio-title h1 {
  line-height: 26px;
  padding: 0;
}
.portfolio-title h1 a {
  color: #09161D;
  text-align: center;
  transition: 0.4s;
  display: inline-block;
  font-weight: 700;
  font-size: 36px;
  line-height: 44px;
}
.portfolio-button a i {
    font-size: 15px;
    font-weight: 500;
    display: inline-block;
    transition: 0.4s;
    height: 60px;
    width: 60px;
    line-height: 60px;
    border-radius: 50%;
    color: #fff;
    position: absolute;
    background: #BF9444;
    text-align: center;
    bottom: 14px;
    right: 10px;
    transform: rotate(0deg);
}
.portfolio-button a:hover i {
    transform: rotate(-45deg);
    background: #BF9444;
}
.portfolio-thumb:hover .portfolio-text-content{
  bottom: 30px;
}
.single-portfolio:hover .portfolio-text-content{
  bottom: 30px;
}
.portfolio-thumb:hover:before{
  opacity: 1;
}

/* ============== Video box section css start here ==============*/
.single-video-box {
    text-align: center;
}
.video-box-content {
    position: relative;
    border-radius: 100%;
    z-index: 99;
    text-align: center;
    display: inline-block;
}
.video-box-content img {
  min-height: inherit;
}
.video-popup-button {
    position: relative;
    top: 0;
    left: 0;
    /* transform: translate(-50%, -50%); */
    background: #BF944480;
    width: 138px;
    height: 138px;
    line-height: 138px;
    display: block;
    align-items: center;
    color: #fff !important;
    border-radius: 50%;
    transition: 0.4s linear;
}
.video-popup-button:hover {
    background: #BF9444;
}
.video-popup-button:before {
  content: "";
  position: absolute;
  z-index: 0;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: block;
  width: inherit;
  height: inherit;
  border-radius: 50%;
  -webkit-animation: border-animation 1500ms ease-out infinite;
  animation: border-animation 1500ms ease-out infinite;
  background: #BF9444;
}
/* @keyframes border-animation {
  0% {
      transform: translate(-50%, -50%) scale(1);
      opacity: 1;
  }
 
  100% {
      transform: translate(-50%, -50%) scale(1.5);
      opacity: 0;
  }
} */
 
@keyframes border-animation {
  0% {
      transform: translate(-50%,-50%) scale(.5);
      opacity: 1;
      border-width: 3px
  }
 
  40% {
      opacity: .5;
      border-width: 2px
  }
 
  65% {
      border-width: 1px
  }
 
  100% {
      transform: translate(-50%,-50%) scale(1);
      opacity: 0;
      border-width: 1px
  }
}
.video-popup-button:after {
    content: "";
    position: absolute;
    z-index: 0;
    left: -20px;
    top: -18px;
    display: block;
    width: 178px;
    height: 178px;
    border-radius: 50%;
    background: #FFFFFF3B;
}
.video-button a {
  font-size: 18px;
}
.video-button i {
  position: relative;
  z-index: 2222;
  color: #fff;
  font-size: 18px;
}
/* js div class css start here */
.video-popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}
.video-popup-content {
  position: relative;
  width: 80%;
  max-width: 800px;
  background: #000;
  padding: 10px;
  border-radius: 10px;
}
.video-popup-content iframe {
  width: 100%;
  height: 450px;
  border: none;
}
.video-popup-close {
  position: absolute;
  top: -10px;
  right: -10px;
  background: #fff;
  color: #000;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
/*animation circle*/
.circle-animation {
    position: absolute;
    left: -28px;
    top: -28px;
    border-radius: 100%;
    text-align: center;
    display: inline-block;
}
.text-inner {
  animation: circle 15s linear infinite;
  position: relative;
  z-index: 22;
  fill: transparent;
}
.text-inner svg {
  width: 88px;
  max-width: 100%;
  height: auto;
  overflow: visible;
  word-spacing: 9px;
  transform: rotate(0) scaleX(1) scaleY(1);
  position: relative;
}
.text-inner text {
  fill: #fff;
  direction: ltr;
  transition: 0.3s stroke, 0.3s stroke-width, 0.3s fill;
  font-size: 42px;
  font-weight: 400;
  position: relative;
  z-index: 2;
  letter-spacing: 4px;
  font-family: "Cormorant Garamond", serif;
}
a.circle-animate {
  overflow: hidden;
  position: relative;
  display: inline-block;
  width: 125px;
  height: 125px;
  line-height: 125px;
  text-align: center;
  border-radius: 100%;
  background: #BF9444;
}
.circle-animation-img {
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  left: 50%;
  display: inline-block;
  line-height: 0;
}
.circle-animation-img img{
  -webkit-animation: wooo 5s linear infinite;
  animation: wooo 5s linear infinite;
  transition: .5s;
}
/*wood animation*/
@keyframes wooo {
  0% {
    transform: rotate3d(0, 0, 0);
  }
  50% {
    transform: rotate3d(0, 1, 0, 180deg);
  }
  100% {
    transform: rotate3d(0, 1, 0, 359deg);
  }
}
@keyframes circle {
  0% {
      transform: rotate(0);
  }
  100% {
      transform: rotate(-360deg);
  }
  }
  .circle {
      animation: circle 15s linear infinite;
  }
  .right-speen {
      animation: rightspeen 15s linear infinite;
  }
  .spin2 {
      animation: spin2 15s linear infinite;
  }
  @keyframes rightspeen {
  0% {
      transform: rotate(0);
  }
  100% {
      transform: rotate(360deg);
  }
}

   @-webkit-keyframes ripple-white {
    0% {
        -webkit-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.3), 0 0 0 10px rgba(255, 255, 255, 0.3), 0 0 0 20px rgba(255, 255, 255, 0.3);
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.3), 0 0 0 10px rgba(255, 255, 255, 0.3), 0 0 0 20px rgba(255, 255, 255, 0.3)
    }
    100% {
        -webkit-box-shadow: 0 0 0 10px rgba(255, 255, 255, 0.3), 0 0 0 20px rgba(255, 255, 255, 0.3), 0 0 0 30px rgba(255, 255, 255, 0);
        box-shadow: 0 0 0 10px rgba(255, 255, 255, 0.3), 0 0 0 20px rgba(255, 255, 255, 0.3), 0 0 0 30px rgba(255, 255, 255, 0)
    }
}

@keyframes ripple-white {
    0% {
        -webkit-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.3), 0 0 0 10px rgba(255, 255, 255, 0.3), 0 0 0 20px rgba(255, 255, 255, 0.3);
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.3), 0 0 0 10px rgba(255, 255, 255, 0.3), 0 0 0 20px rgba(255, 255, 255, 0.3)
    }
    100% {
        -webkit-box-shadow: 0 0 0 10px rgba(255, 255, 255, 0.3), 0 0 0 20px rgba(255, 255, 255, 0.3), 0 0 0 30px rgba(255, 255, 255, 0);
        box-shadow: 0 0 0 10px rgba(255, 255, 255, 0.3), 0 0 0 20px rgba(255, 255, 255, 0.3), 0 0 0 30px rgba(255, 255, 255, 0)
    }
}

/* ======================  elemento advince Css Start here  =========================== */

.footer-title{
  position: relative;
  z-index:1;
  transition: 0.4s;
}
.footer-title:before{
  position: absolute;
  content:"";
  left: 0;
  bottom: 0;
  height: 2px;
  width: 60px;
  z-index: -1;
	background: #BF9444;
  transition: 0.4s;
}
.footer-title:after{
  position: absolute;
  content:"";
  left: 0;
  bottom: 0;
  height: 2px;
  width: 0;
  z-index: 1;
	background: #fff;
  transition: 0.4s;
}
.footer-title:hover:after{
  width: 60px;
}
.footer-icon i{
  font-size: 16px;
}
.footer-copyright span{
	color: #BF9444;
}
.footer-call-number i{
  position: relative;
}
.footer-call-number i:after {
  position: absolute;
  content: "";
  height: 52px;
  width: 52px;
  border-radius: 50%;
  background: inherit;
  border: 2px solid #fff;
  left: -10px;
  top: -14px;
}
.zoom-in-out {
    -webkit-animation: zoom_inout 2s alternate infinite;
    animation: zoom_inout 2s alternate infinite;
}

@keyframes zoom_inout {
    0% {
        -webkit-transform: scale(0.8);
    }

    100% {
        -webkit-transform: scale(1.1);
    }
}
.about-image-shape-top img {
  animation: image-top-bounce 4s infinite ease-in-out;
}

@-webkit-keyframes image-top-bounce {
0% {
  -webkit-transform: translateY(-4px);
  transform: translateY(-8px);
}
50% {
  -webkit-transform: translateY(8px);
  transform: translateY(15px);
}
100% {
  -webkit-transform: translateY(-4px);
  transform: translateY(-8px);
}
}

/* ======================  Circle Button Css Start here  =========================== */
.circle-button {
    line-height: 0;
    display: inline-block;
    transition:0.4s;
}
.circle-button-animation {
    border-radius: 100%;
}
.circle-button-icon-content {
    position: absolute;
    top: 30%;
    left: 30%;
    right: 0;
    margin: 0;
    height: 50px;
    border-radius: 100%;
    width: 50px;
    line-height: 50px;
    background: #BF9444;
    outline: 6px solid #fff;
    transition:0.4s;
}
.circle-button:hover .circle-button-icon-content {
    background: #BF9444;
}
.circle-btn-icon {
    color: #fff;
    z-index: 22;
    position: relative;
}
.circle-btn-icon i {
  transform: rotate(-45deg);
  display: inline-block;
  transition:0.4s;
}
.circle-button .circle-btn-icon:hover i {
  transform: rotate(0deg);
  color: #fff;
}
.circle-btn-icon img {
    position: relative;
    top: 5px;
    transition: 0.4s;
    animation: circle-btn-img 3.5s infinite;
}
@keyframes circle-btn-img{
  0% {
    transform: rotate3d(0, 0, 0);
  }
  50% {
    transform: rotate3d(0, 1, 0, 180deg);
  }
  100% {
    transform: rotate3d(0, 1, 0, 359deg);
  }
}

a.circle-button-animate {
    overflow: hidden;
    position: relative;
    display: inline-block;
    width: 125px;
    height: 125px;
    line-height: 125px;
    text-align: center;
    border-radius: 100%;
    background: #BF9444;
    transition: 0.4s;
    font-family: "Cormorant Garamond";
}
.circle-text-inner {
    animation: circle-btn 15s linear infinite;
    position: relative;
    z-index: 22;
    fill: transparent;
}
.circle-text-inner svg {
    width: 85px;
    max-width: 100%;
    height: auto;
    overflow: visible;
    word-spacing: 5px;
    transform: rotate(0) scaleX(1) scaleY(1);
    position: relative;
}
.circle-text-inner text {
    fill: #fff;
    direction: ltr;
    transition: 0.3s stroke, 0.3s stroke-width, 0.3s fill;
    font-size: 52px;
    font-weight: 400;
    position: relative;
    z-index: 2;
    letter-spacing: 5px;
    font-family: "Cormorant Garamond";
}
@keyframes circle-btn {

  0% {
      transform: rotate(0);
  }
  100% {
      transform: rotate(-360deg);
  }

  }
  
  
  /*   circle button styyle 02  */

.circle-button.style-02 a.circle-button-animate {
    width: 152px;
    height: 152px;
    line-height: 152px;
}
.circle-button.style-02 .circle-text-inner svg {
    width: 105px;
}
.circle-button.style-02 .circle-text-inner text {
    font-size: 40px;
    letter-spacing: 2px;
    font-family: Plus Jakarta Sans;
}
.circle-button.style-02 .circle-button-icon-content {
    height: 65px;
    width: 65px;
    line-height: 65px;
    outline: 8px solid #fff;
}
.circle-button.style-02 .circle-btn-icon i {
    font-size: 22px;
}

/* bounce-animate */
.bounce-animate {
  animation-name: float-bob;
  animation-duration: 2s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
  -moz-animation-name: float-bob;
  -moz-animation-duration: 2s;
  -moz-animation-iteration-count: infinite;
  -moz-animation-timing-function: linear;
  -ms-animation-name: float-bob;
  -ms-animation-duration: 2s;
  -ms-animation-iteration-count: infinite;
  -ms-animation-timing-function: linear;
  -o-animation-name: float-bob;
  -o-animation-duration: 2s;
  -o-animation-iteration-count: infinite;
  -o-animation-timing-function: linear; }
@-webkit-keyframes float-bob {
  0% {
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px); }
  50% {
    -webkit-transform: translateY(-15px);
    transform: translateY(-15px); }
  100% {
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px); }
   }

  .bounce-animate2 {
  animation-name: float-bob;
  animation-duration: 3s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
  -moz-animation-name: float-bob;
  -moz-animation-duration: 3s;
  -moz-animation-iteration-count: infinite;
  -moz-animation-timing-function: linear;
  -ms-animation-name: float-bob;
  -ms-animation-duration: 3s;
  -ms-animation-iteration-count: infinite;
  -ms-animation-timing-function: linear;
  -o-animation-name: float-bob;
  -o-animation-duration: 3s;
  -o-animation-iteration-count: infinite;
  -o-animation-timing-function: linear; }
@-webkit-keyframes float-bob {
  0% {
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px); }
  50% {
    -webkit-transform: translateY(-15px);
    transform: translateY(-15px); }
  100% {
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px); }
   }
   

.social-media-section ul li {
    display: inline-block;
}
.social-media-section ul li a i {
    font-size: 16px;
    position: relative;
    display: inline-block;
    color: #BF9444;
    height: 32px;
    width: 32px;
    line-height: 32px;
    text-align: center;
    margin-right: 7px;
    border: 1px solid #BF9444;
    border-radius: 50%;
    z-index: 1;
    transition: .4s;
}
.social-media-section ul li a i::after {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: #BF9444;
    border-radius: 50%;
    z-index: -1;
    transform: scale(0);
    transition: .4s;
}
.social-media-section ul li a i:hover:after {
    transform: scale(1);
}
.social-media-section ul li a i:hover{
  color: #fff;
}
/*---------------------  form-area.booking_form -----------------------*/

.form-booking .form-group input[type="date"], input[type="datetime-local"], input[type="month"], input[type="time"], input[type="date"] {
    width: 100%;
    height: 58px;
    color: #828F98;
    font-size: 16px;
    background-color: transparent;
    margin-bottom: 30px;
    border-radius: 5px;
    padding: 0 15px;
    border: 1px solid #e6e6e6;
    outline: 0;
}

.form-group select, .form-control {
    height: 58px;
    width: 100%;
    transition: .5s;
    border-radius: 5px;
    margin-bottom: 30px;
    background-color: transparent;
    outline: 0;
    padding: 0 15px;
    color: #828F98;
    border: 1px solid #e6e6e6;
}
.form-area .form-group input {
    height: 58px;
    width: 100%;
    background: transparent;
    outline: 0;
    border-radius: 5px;
    margin-bottom: 30px;
    padding: 0 15px;
    border: 1px solid #e6e6e6;
}
.form-area .form-group textarea {
    padding-top: 25px;
    height: 175px;
    outline: 0;
    background-color: transparent;
    border-radius: 5px;
    border: 1px solid #e6e6e6;
}
.form-area .buttons input {
    font-size: 18px;
    height: 60px;
    width: 185px;
    color: #fff;
    background-color: #BF9444;
    transition: .4s;
    border-radius: 28px;
    position: relative;
    z-index: 1;
     font-family: "Nunito Sans", sans-serif;
}
.form-area .buttons input:hover {
    background-color: #09161D;
}
.form-details-area .form-group input{
  height: 54px;
  width: 100%;
  border: 1px solid #80868C3B;
  outline: 0;
  border-radius: 5px;
  margin-bottom: 20px;
}
.form-details-area .form-group textarea{
  height: 150px;
  width: 100%;
  border: 1px solid #80868C3B;
  outline: 0;
  border-radius: 5px;
}

.subscribe-wrapper {
    text-align: center;
}
.subscribe-wrapper input {
    font-size: 18px;
    color: #fff;
    width: 245px;
    height: 58px;
    background: transparent;
    border-bottom:1px solid #fff;
    border-top:0;
    border-left:0;
    border-right:0;
    outline:0;
    line-height: 30px;
    font-weight: 500;
}
.subscribe-wrapper input::placeholder{
   color: #fff !important; 
}
.subscribe-wrapper button {
    font-size: 18px;
    color: #fff;
    background: #BF9444;
    border-radius: 28px;
    width: 225px;
    position: relative;
    top: 10px;
    text-transform: uppercase;
    line-height: 24px;
    margin-left: 25px;
    font-weight: 500;
    font-family: "Plus Jakarta Sans", sans-serif;
}

/* advince class css */
.image-animate-top-bottom{
    animation: animate-top-bottom 4s infinite ease-in-out;
    transition: 0.4s;
}
@-webkit-keyframes animate-top-bottom {
  0% {
    -webkit-transform: translateY(-100px);
    transform: translateY(-100px);
  }
  50% {
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
  }
  100% {
    -webkit-transform: translateY(-100px);
    transform: translateY(-100px);
  }
}
.image-width-effect img {
    max-width: none;
    width: 718px !important;
}
.image-width-effect2 img {
    left: -80px;
    position: relative;
    z-index: 1;
    max-width: none;
    width: 718px !important;
}
.resort-video .main-title-area.option1 {
    position: relative;
    z-index: 1;
}
.resort-video .main-title-area.option1:before {
    content: "";
    position: absolute;
    z-index: -1;
    background: #BF944430;
    left: 0;
    right: 0;
    height: 160px;
    width: 450px;
    margin: auto;
    top: -2px;
}

.special-offer {
    background: #fff;
    padding: 20px 30px;
    border-radius: 50px;
}

/*---------------------  Food Card Section Css -----------------------*/
.food-card {
    display: flex;
    background: #fff;
    border-radius: 10px;
    padding: 10px;
    gap: 30px;
    align-items: center;
    margin-bottom: 30px;
    transition: .4s;
}
.food-info {
  flex: 1;
}
.food-title {
    font-size: 25px;
    line-height: 35px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #09161D;
    transition: .4s;
}
.food-rating .star {
    color: #BF9444;
    font-size: 25px;
    margin-right: 2px;
}
.food-desc {
    font-size: 16px;
    line-height: 28px;
    color: #828F98;
    margin: 10px 0;
    width: 90%;
    font-weight: 500;
}
.food-prices {
  margin-bottom: 10px;
}
.price-new {
    font-size: 25px;
    line-height: 35px;
    font-weight: 700;
    color: #BF9444;
    margin-right: 10px;
    margin-bottom: 12px;
    display: inline-block;
}
.price-old {
  font-size: 16px;
  color: #A2AFB9;
  text-decoration: line-through;
  display: inline-block;
  font-weight: 500;
}
.order-btn {
    display: inline-block;
    background: #BF9444;
    padding: 0px 85px 0px 35px;
    line-height: 48px;
    text-align: center;
    height: 48px;
    border-radius: 30px;
    position: relative;
    z-index: 1;
    transition: 0.4s;
    overflow: hidden;
    font-size: 18px;
    color: #ffffff;
    font-weight: 500;
    font-family: "Nunito Sans", sans-serif;
}
.order-btn:before {
    position: absolute;
    content: "";
    height: 100%;
    width: 0%;
    background: #48545C;
    border-radius: 30px;
    top: 0;
    right: 0;
    transition: .5s;
    z-index: -1;
}
.order-btn i {
    display: inline-block;
    color: #fff;
    height: 48px;
    width: 48px;
    line-height: 48px;
    text-align: center;
    background-color: #48545C;
    border-radius: 50%;
    position: absolute;
    right: 0;
    transition: 0.4s;
}
.order-btn:hover::before {
    width: 100%;
}
.order-btn:hover{
  color: #fff;
}
.food-card:hover .food-title{
  color: #BF9444;
}

/*---------------------  Food menu-tabs Section Css -----------------------*/
.menu-tabs .tabs {
    display: flex;
    list-style: none;
    gap: 150px;
    margin-top: 20px;
    cursor: pointer;
    justify-content: center;
    transition: .4s;
}
.menu-tabs .tabs li{
  font-size: 18px;
  line-height: 30px;
  color: #09161D;
  border-bottom:2px solid #09161D2E;
  font-weight: 500;
}
.menu-tabs .tabs li.active {
  font-weight:bold;
  color:#BF9444;
  border-bottom:2px solid #BF9444;
}
.menu-tabs .tab-content {
    display: none;
    margin-top: 50px;
}
.menu-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}
.menu-tabs .tab-content.active {
   display: block; 
}
.food-menu-item {
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:28px;
  box-shadow: 0px 0px 2px 0px #00000040;
  border-radius:10px;
}
.menu-item-inner {
    display: flex;
    align-items: center;
    gap: 18px;
}
.menu-item-content h4 {
    font-size: 18px;
    line-height: 30px;
    color: #09161D;
    font-weight: 500;
    margin: 0 0 4px;
}
.menu-item-content p {
    font-size: 13px;
    line-height: 23px;
    color: #828F98;
    font-weight: 500;
    width: 65%;
    margin: 0;
}
.food-menu-item .price {
  font-size: 22px;
  height: 70px;
  width: 70px;
  background-color: #BF94440F;
  line-height: 70px;
  text-align: center;
  border-radius: 50%;
  color:#BF9444;
  position: relative;
  font-weight: 600;
}
.food-menu-item .price::before {
    position: absolute;
    content: "";
    top: 35px;
    right: 120px;
    height: 2px;
    width: 100px;
    background-color: #BF944478;
}

/* advance css add here  */


.menu-border{
    box-shadow: 0px 0px 2px 0px #00000040;

}





