* {
  padding: 0;
  margin: 0;
}

body {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Prompt", sans-serif;
  font-style: normal;
}

:root {
  --title-font: "EB Garamond", serif;
  --body-font: "Prompt", sans-serif;
  --border-color:#E3E3E3;
  --primary-color: #ff0101;
  --secondary-color: #EAA636;
  --title-color: #464646;
  --body-color: #626260;
  --color-gray: #444444;
}

ul,
li {
  list-style: none;
  margin: 0;
  padding: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  padding: 0;
}
.h1,
h1 {
  font-size: 60px;
  line-height: 1.167;
}

.h2,
h2 {
  font-size: 44px;
  line-height: 1.227;
}

.h3,
h3 {
  font-size: 36px;
  line-height: 1.278;
}

.h4,
h4 {
  font-size: 24px;
  line-height: 1.333;
}

.h5,
h5 {
  font-size: 20px;
  line-height: 1.417;
}

.h6,
h6 {
  font-size: 18px;
  line-height: 1.5;
}

/* Medium Large devices */
@media (max-width: 1399px) {
  .h1,
  h1 {
    font-size: 48px;
  }
}
/* Large devices */
@media (max-width: 1199px) {
  .h1,
  h1 {
    font-size: 44px;
    line-height: 1.3;
  }
  .h2,
  h2 {
    font-size: 40px;
    line-height: 1.25;
  }
  .h3,
  h3 {
    font-size: 30px;
  }
  .h4,
  h4 {
    font-size: 24px;
  }
  .h5,
  h5 {
    font-size: 20px;
  }
  .h6,
  h6 {
    font-size: 16px;
  }
}
/* Small devices */
@media (max-width: 767px) {
  .h1,
  h1 {
    font-size: 40px;
  }
  .h2,
  h2 {
    font-size: 34px;
    line-height: 1.3;
  }
  .h3,
  h3 {
    font-size: 26px;
  }
  .h4,
  h4 {
    font-size: 22px;
  }
  .h5,
  h5 {
    font-size: 18px;
  }
  .h6,
  h6 {
    font-size: 16px;
  }
}
/* Extra small devices */
@media (max-width: 575px) {
  .h1,
  h1 {
    font-size: 34px;
    line-height: 1.35;
  }
  .h2,
  h2 {
    font-size: 30px;
  }
}
/* Extra small devices */
@media (max-width: 375px) {
  .h1,
  h1 {
    font-size: 32px;
  }
}
hr {
  margin: 0;
  opacity: 1;
  background-color: #ddd;
}

a,
a:hover {
  text-decoration: none;
  color: var(--primary-color);
  transition: all 0.3s ease;
}

p {
  margin: 0;
  padding: 0;
  letter-spacing: 0px;
  font-size: 16px;
  line-height: 1.8;
  color: var(--body-color);
  font-weight: 400;
  margin-bottom: 10px
}

.p-60 {
  padding: 60px;
}

.p-80 {
  padding: 80px;
}

.p-100 {
  padding: 100px;
}

.pt-60 {
  padding-top: 60px;
}

.pb-60 {
  padding-bottom: 60px;
}

.pt-80 {
  padding-top: 80px;
}

.pb-80 {
  padding-bottom: 80px;
}

.pt-100 {
  padding-top: 100px;
}

.pb-100 {
  padding-bottom: 100px;
}

.py-60 {
  padding-top: 60px;
  padding-bottom: 60px;
}

.py-80 {
  padding-top: 80px;
  padding-bottom: 80px;
}

.py-100 {
  padding-top: 100px;
  padding-bottom: 100px;
}

.px-60 {
  padding-top: 60px;
  padding-bottom: 60px;
}

.px-80 {
  padding-top: 80px;
  padding-bottom: 80px;
}

.px-100 {
  padding-top: 100px;
  padding-bottom: 100px;
}

.text {
  font-weight: 500;
  font-size: 14px;
  line-height: 28px;
  margin-bottom: 15px;
}

section {
  position: relative;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.theme-btn {
  position: relative;
  z-index: 2;
  vertical-align: middle;
  display: inline-block;
  border: none;
  text-align: center;
  background-color: var(--primary-color);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  padding: 10px 15px;
  border-radius: 5px;
  overflow: hidden;
}

.theme-btn::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  border-top: 25px solid var(--title-color);
  border-bottom: 25px solid var(--title-color);
  transition: 0.5s;
  z-index: -1;
  border-right: 25px solid transparent;
  transform: translateX(-100%);
}

.theme-btn::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  border-top: 25px solid var(--title-color);
  border-bottom: 25px solid var(--title-color);
  transition: 0.5s;
  z-index: -1;
  border-left: 25px solid transparent;
  transform: translateX(100%);
}

.theme-btn:focus,
.theme-btn:hover,
.theme-btn.active {
  color: #fff;
  outline: none;
  box-shadow: none;
}

.theme-btn:focus:before,
.theme-btn:hover:before,
.theme-btn.active:before {
  transform: translateX(-20%);
}

.theme-btn:focus:after,
.theme-btn:hover:after,
.theme-btn.active:after {
  transform: translateX(20%);
}

.theme-btn i {
  vertical-align: middle;
  font-size: 18px;
  margin-left: 10px;
}
/* section heading */
.title-area{
  position: relative;
  z-index: 2;
  margin-bottom: 30px;
}
.title-area .sub-title{
  color: var(--primary-color);
    text-transform: uppercase;
    font-size: 14px;
    position: relative;
    font-weight: 500;
    font-family: var(--body-font);
    letter-spacing: 1.4px;
    margin-bottom: 10px;
    display: inline-flex;
    align-items: center;
}
.title-area .sub-title.titleline:after {
  content: "";
  position: relative;
  height: 1px;
  width: 50px;
  display: inline-block;
  background: var(--primary-color);
  margin-left: 10px;
}
.title-area .sec-title{
  font-family: var(--title-font);
  margin-bottom: 17px;
  font-size: 40px;
  color: var(--title-color);
  text-transform: none;
  margin: 0 0 15px 0;
  text-transform: none;
}
/* header */
.main-header {
  position: relative;
  width: 100%;
  background-color: #fff;
  transition: all 500ms ease;
  z-index: 999;
  box-shadow: 0px 8px 24px 0px #959DA533;
}

.main-header .top-header {
  background-color: rgba(199, 134, 101, 0.1);
  padding: 8px 0;
}

.main-header .top-header .head-info ul {
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 15px;
}

.main-header .top-header .head-info ul li {
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 5px;
}

.main-header .top-header .head-info ul li,
.main-header .top-header .head-info ul li a {
  color: var(--title-color);
  font-size: 14px;
}

.main-header .top-header .head-info ul li i {
  font-size: 16px;
}

.main-header .top-header .social-links ul {
  display: flex;
  justify-content: end;
  align-items: center;
  gap: 15px;
}

.main-header .top-header .social-links ul li a {
  color: var(--title-color);
  font-size: 18px;
}

.main-header .header-lower .logo-box {
  height: 100%;
  display: flex;
  align-items: center;
}

.main-header .header-lower .logo-box img {
  max-width: 170px;
  border-radius: 5px;
  object-fit: contain;
}

.main-header .header-lower .nav-outer {
  display: flex;
  justify-content: end;
  align-items: center;
}

.main-header .header-lower .nav-outer .nav {
  justify-content: end;
}

.main-header .header-lower .navigation {
  display: flex;
  justify-content: end;
  align-items: center;
  flex-direction: row;
}

.main-header .header-lower .navigation li {
  padding-right: 30px;
  position: relative;
}

.main-header .header-lower .navigation li a {
  padding: 30px 0;
  color: var(--title-color);
  display: inline-block;
}

.main-header .header-lower .navigation li a:hover {
  color: var(--primary-color);
}

.main-header .header-lower .navigation li.current_page_item a {
  font-weight: 600;
  color: var(--primary-color);
}
.main-menu .navigation>li>ul {
  position: absolute;
  top: 100%;
  left: -15px;
  background-color: #fff;
  border-radius: 2px;
  padding: 0;
  opacity: 0;
  z-index: 999;
  width: max-content;
  min-width: 250px;
  -webkit-transition: all .5s;
  transition: all .5s;
  -webkit-transform: translateY(50px);
  transform: translateY(50px);
  -ms-box-shadow: 0px 7px 10px -1px rgba(0,0,0,.2);
  -o-box-shadow: 0px 7px 10px -1px rgba(0,0,0,.2);
  box-shadow: 0px 7px 10px -1px rgb(0 0 0/20%);
  visibility: hidden
}

.main-menu .navigation>li.menu-item-has-children ul>li>a {
  padding: 8px 14px !important;
  display: block;
  line-height: 25px !important;
  color: #454545;
  transition: all .5s ease
}

.main-menu .navigation>li.menu-item-has-children ul>li>a:hover {
  padding-left: 46px !important;
  background: var(--primary-color);
  color: #fff !important
}

.main-menu .navigation>li.menu-item-has-children ul>li>a:before {
  position: absolute;
  content: "\f061";
  left: 30px;
  right: inherit;
  top: 8px;
  display: block;
  line-height: 24px;
  font-size: 16px;
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 12px;
  transition: .5s;
  opacity: 0;
  color: #fff !important;
  transition: all .5s ease
}

.main-menu .navigation>li.menu-item-has-children>ul>li>a:before {
  position: absolute;
  content: "\f061";
  left: 30px;
  right: inherit;
  top: 8px;
  display: block;
  line-height: 24px;
  font-size: 16px;
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 12px;
  transition: .5s;
  opacity: 0;
  color: #3f3f3f;
  transition: all .5s ease
}

.main-menu .navigation>li.menu-item-has-children ul>li>a:hover:before {
  opacity: 1
}

.main-menu .navigation>li>ul>li {
  position: relative;
  width: 100%;
  border-bottom: 1px inset #d4d4d459;
  display: block
}

.main-menu .navigation>li>ul>li:last-child {
  border-bottom: 0 inset #454545
}

.main-menu .navigation>li>ul>li>ul {
  position: absolute;
  top: 100%;
  left: 100%;
  background-color: #fff;
  border-radius: 2px;
  padding: 0;
  width: max-content;
  min-width: 200px;
  margin-top: -40px;
  opacity: 0;
  z-index: 999;
  -webkit-transition: all .5s;
  transition: all .5s;
  -webkit-transform: translateY(50px);
  transform: translateY(50px);
  -ms-box-shadow: 0px 7px 10px -1px rgba(0,0,0,.2);
  -o-box-shadow: 0px 7px 10px -1px rgba(0,0,0,.2);
  box-shadow: 0px 7px 10px -1px rgba(0,0,0,.2)
}

.main-menu .navigation>li.menu-item-has-children:hover>ul {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translate(0px);
  transform: translate(0px)
}

.main-menu .navigation li.menu-item-has-children ul>li.menu-item-has-children:hover>ul {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translate(0px);
  transform: translate(0px)
}

.main-menu .navigation>li.menu-item-has-children ul>li {
  margin: 0;
  padding: 0;
  position: relative;
  width: 100%;
  border-bottom: 1px inset #d4d4d459;
  display: block
}
.mobile-header {
  display: none;
}

/* header end */
.owl-theme .owl-dots .owl-dot span {
  background: #ddd;
  width: 30px;
  height: 5px;
}

.owl-theme .owl-dots .owl-dot.active span {
  background-color: var(--primary-color);

}
/* footer */
.footer-section {
  background-color: rgba(199, 134, 101, 0.1);
  position: relative;
  padding: 60px 0 20px;
}
.footer-section .logo-footer img{
  max-width: 300px;
  margin: auto;
  display: block;
  border-radius: 10px;
}
.footer-section .footer-content{
  text-align: center;
  max-width: 600px;
  margin: auto;
  display: block;
  padding: 40px 0 30px;
  color:var(--body-color);
}
.footer-section .footer-links .main{
  display: flex;
  justify-content: center;
  align-items: center;
  padding:10px 0 40px;
  gap: 30px;
}
.footer-section .footer-links .main li a{
  display: block;
  position: relative;
  font-weight: 400;
  font-size: 14px;
  color: var(--title-color);
  letter-spacing: 3.6px;
  text-transform: uppercase;
}
.footer-section .footer-links .main li a::before{
  content: "";
  position: relative;
  height: 6px;
  width: 6px;
  display: inline-block;
  border-radius: 50%;
  border: 1px solid var(--title-color);
  top: -1px;
  margin-right: 10px;
  transition: 0.4s;
}
.footer-section .footer-links .main li a:hover{
  color: var(--primary-color);
}
.footer-section .footer-links .main li a:hover::before{
  background-color: var(--primary-color);
}
.footer-section .footer-social ul{
  display:flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}
.footer-section .footer-social ul li a{
  width: 40px;
  height: 40px;
  background-color: #fff;
  border-radius: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  color:var(--body-color);
  font-size: 24px;
}
.footer-section .footer-shap1 {
  position: absolute;
  z-index: -1;
  top: 20%;
  left: -2%;
  animation: jumpAni 7s linear infinite;
}

@keyframes jumpAni {
  0% {
    transform: translateY(0);
  }

  40% {
    transform: translateY(-30px);
  }

  100% {
    transform: translateY(0);
  }
}

.footer-section .footer-shap2 {
  position: absolute;
  z-index: -1;
  top: -10%;
  right: -10%;
  animation: jumpReverseAni 7s linear infinite;
}

@keyframes jumpReverseAni {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(30px);
  }

  100% {
    transform: translateY(0);
  }
}
/* end footer */
/* home banner */
.banner-area{
  height: 100%;
  width: 100%;
}
.banner-area .banner-area{
  width: 100%;
  height: 500px;
  padding: 60px 0;
  display: flex;
  align-items: center;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
/* overview */
.overview{
  padding: 50px 0;
}
.overview .title-area .sec-title{
  font-size:44px;
}
.overview .image-box{
  width: 100%;
}
.overview .image-box img{
  width: 100%;
  height: 100%;
  object-fit: contain;
}
/* Service */
.service-area{
  padding: 80px 0;
  background-color: #f4f4f6;
  position: relative;
}
.service-area:before {
  content: "";
  background-image: url('../images/flower.png');
  width: 400px;
  height: 400px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  display: block;
  position: absolute;
  left: 10px;
  top: 10px;
}
.service-area:after {
  content: "";
  background-image: url('../images/flower.png');
  width: 200px;
  height: 200px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  display: block;
  position: absolute;
  right: 10px;
  bottom: 10px;
}
.service-card{
  width: 100%;
  height: 300px;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
}
.service-card .title{
  position: absolute;
  left: 0;
  right: 0;
  bottom: 20px;
  background-color: #FFFFFFE5;
  border-radius: 5px;
    transition: all .4s ease;
    text-align: center;
    padding:15px;
    width: 90%;
    margin: auto;
}
.service-card .title h4{
  font-size: 18px;
  font-weight:500;
  color: var(--primary-color);
}
/* gallery */
.gallery-section{
  padding:50px 0;
}
.gallery-section .filter-group{
  display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 20px;
      gap: 15px;
}
.gallery-section .filter-button {
  border: 1px solid var(--border-color);
  background: #fff;
  padding: 10px 15px;
  border-radius: 5px;
  font-size: 16px;
  font-weight: 500;
  color: #333;
}
.gallery-section .filter-button.active{
  background-color: var(--primary-color);
  color: #fff;
  border-color: var(--primary-color);
}
.gallery-section .card-gallery{
  position: relative;
  width: 100%;
  height: 250px;
  border-radius: 10px;
  overflow: hidden;
}
.gallery-section .card-gallery img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.gallery-section .card-gallery .box-icon{
  position: absolute;
  width: 90%;
  height: 90%;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  margin: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #00000066;
  color: #fff;
  border-radius: 10px;
  opacity: 0.5;
  visibility: hidden;
  transition: all 0.4s ease-in-out;
}
.gallery-section .card-gallery .box-icon i{
  font-size: 40px;
  font-weight: 400;
}
.gallery-section .card-gallery:hover .box-icon{
  opacity: 1;
  visibility: visible;
}
/* video gallery */
.video-section{
  padding:80px 0;
  background-image: url(../images/video-bg.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.video-section .video-card{
  width: 100%;
  height: 180px;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  border: 1px solid var(--border-color);
}
.video-section .video-card .video-img{
  width: 100%;
  height: 100%;
}
.video-section .video-card .video-img img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.video-section .video-card .videobtn{
  position: absolute;
  left: 0;
  right: 0;
  bottom: 15px;
  margin: auto;
  width: max-content;
  background: #fff;
  padding: 6px 25px;
  border-radius: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
  font-weight:400;
  color: var(--body-color);
  border: 1px solid var(--primary-color);
  cursor: pointer;
}
.video-section .video-card .videobtn i{
  font-size: 24px;
}
.video-section .video-card .videobtn:hover{
  background-color: var(--primary-color);
  color:#fff;
}
/* section contact */
.section-contact {
  padding:50px 0;
}
.section-contact .contact-form-wrap{
  background: #F8F7F4;
  padding: 90px;
}
.section-contact .map-sec{
  line-height: 0;
  filter: grayscale(1);
  height: 100%;
}
.section-contact .map-sec iframe{
  width: 100%;
  height: 100%;
}
.section-contact .form-group{
  position: relative;
}
.form-group{
  margin-bottom: 20px;
}
form p{
  margin: 0;
}
.form-group i{
  position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.form-control{
  height: 40px;
  padding-left: 5px;
}
.wpcf7-form .form-control{
  height: 40px;
  padding-left: 40px;
}
textarea.form-control{
  height: 80px;
}
.form-control:focus{
  box-shadow: none;
  outline: 1px solid #333;
  border: 0;
}
/* Blog */
.blog-area{
  padding:60px 0;
}
.blog-area .blog-grid{
  border: 1px solid var(--border-color);
  position: relative;
  border-radius: 10px;
  overflow: hidden;
}
.blog-area .blog-grid .blog-img{
  width: 100%;
  height: 200px;
}
.blog-area .blog-grid .blog-img img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.blog-area .blog-grid .blog-content{
  padding: 20px;
}
.blog-area .blog-grid .blog-meta a{
  font-size: 14px;
  display: inline-block;
  font-weight: 400;
  color: var(--title-color);
  position: relative;
  text-transform: uppercase;
  padding-bottom: 10px;
}
.blog-area .blog-grid .blog-title{
  font-size: 20px;
  margin-bottom: 10px;
  margin-top: 0px;
  line-height: 32px;
  font-weight: 400;
  word-break: break-word;
  color: var(--title-color);
}
.blog-area .blog-grid .blog-title a{
  color: inherit;
}
.blog-area .blog-grid .link-btn{
  font-weight: 500;
  font-family: var(--body-font);
  color: var(--title-color);
  display: inline-flex;
  font-size: 14px;
  text-transform: capitalize;
  line-height: 0.8;
    position: relative;
    padding-bottom: 2px;
    margin-bottom: -2px;
}
.blog-area .blog-grid .link-btn i{
  margin-left: 5px;
  font-size: 0.9rem;
  transition: all ease 0.4s;
}
.blog-area .blog-grid .link-btn::before{
  content: "";
  position: absolute;
  transition: all ease 0.4s;
  background-color: var(--title-color);
  bottom: -3px;
  left: 0px;
  height: 1px;
  width: 100%;
}
.blog-area .blog-grid .link-btn:hover{
  color: var(--primary-color);
}
.blog-area .blog-grid .link-btn:hover i{
  margin-left: 10px;
}
.testimonials{
  padding: 50px 0;
}
.testimonials .testimonial-items{
  background:#fffbf7;
  border: 1px solid #fffbf7;
  box-shadow: 0px 0px 10px 0px #959DA533;
  border-radius: 10px;
  padding: 20px;
  width: 100%;
  margin: auto;
  position: relative;
}
.testimonials .testimonial-items h4{
  color: var(--title-color);
  font-size: 24px;
  font-weight: 600;
  font-family: var(--title-font);
  margin-bottom: 15px;
}
.testimonials .owl-item{
  padding: 10px;
}
.testimonials .testimonial-items .morecontent span{
  display: none;
}
.testimonials .testimonial-items .morecontent .morelink-2{
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
  
}
.testimonials .testimonial-items .morecontent .morelink-2 i{
  font-size: 14px;
}
.testimonials .testimonial-items i.fa-quote-right{
  position: absolute;
  right: 20px;
  top: 10px;
  font-size: 60px;
  line-height: 1;
  color: #fbe0c5;
  z-index: 0;
}
.breadcumb-wrapper {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 40px 0;
  overflow: hidden;
  position: relative;
  z-index: auto;
  background-color: #F9F3F0;
  /* Small devices */
}
.breadcumb-title {
  color: var(--title-color);
  margin: -0.25em 0 -0.2em 0;
  line-height: 1.8;
  font-size: 40px;
  font-weight: 400;
  z-index: 1;
  position: relative;
  font-family: var(--title-font);
}
.breadcumb-menu {
  max-width: 100%;
  padding: 0;
  list-style-type: none;
  position: relative;
  margin: -0.4em 0 -0.4em;
  /* Small devices */
}
.breadcumb-menu li {
  display: inline-block;
  padding-right: 3px;
  list-style: none;
  position: relative;
}
.breadcumb-menu li:after {
  content: "/";
  position: relative;
  margin-left: 7px;
  font-weight: 400;
  font-size: 16px;
  color: var(--title-color);
}
.breadcumb-menu li:last-child {
  padding-right: 0;
  margin-right: 0;
}
.breadcumb-menu li:last-child:after {
  display: none;
}
.breadcumb-menu li,
.breadcumb-menu a,
.breadcumb-menu span {
  white-space: normal;
  color: inherit;
  word-break: break-word;
  font-weight: 400;
  font-size: 16px;
  font-family: var(--body-font);
  color: var(--title-color);
}
.breadcumb-menu a:hover {
  color: var(--theme-color);
}
/*contact page******************/
.contact-area{
  padding: 50px 0;
}
.contact-info {
  background:#fff;
  padding: 60px 30px 50px;
  text-align: center;
  min-height: 393px;
}
.contact-info .contact-icon {
  background: #FFF7F4;
  border-radius: 50%;
  height: 100px;
  width: 100px;
  line-height: 100px;
  text-align: center;
  position: relative;
  display: inline-block;
  margin-bottom: 20px;
}
.contact-info .contact-icon:after {
  content: "";
  position: absolute;
  left: -10px;
  top: -10px;
  height: 100%;
  width: 100%;
  border: 1px solid var(--primary-color);
  border-radius: 50%;
  transition: 0.4s;
}
.contact-info .contact-details .title {
  font-size: 30px;
  font-weight: 400;
  margin-bottom: -2px;
  font-family: var(--title-font);
}
.contact-info .contact-details span {
  font-size: 14px;
  font-weight: 300;
  color: var(--body-color);
  display: block;
  margin-bottom: 24px;
}
.contact-info .contact-details p {
  font-size: 16px;
  font-weight: 300;
  margin-bottom: 0;
}
.contact-info .contact-details p:last-child {
  margin-bottom: -0.5em;
}
.contact-info:hover .contact-icon:after {
  left: 0;
  top: 0;
}
/* BLOGS */
.blog-details {
  padding: 80px 0 60px
}

.blog-single-post {
  position: relative;
  margin-bottom: 40px
}

.blog-single-post.blog-salah .image img {
  width: auto;
  height: 500px
}

.blog-single-post .image {
  position: relative;
  overflow: hidden;
  margin-bottom: 30px
}

.blog-single-post .image img {
  width: 100%
}

.blog-single-post .lower-content {
  position: relative;
  padding: 30px;
  border: 1px solid #ebf2f3;
  border-top: 0;
  border-radius: 5px
}

.blog-single-post ul.post-meta {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  font-size: 14px;
  margin-bottom: 13px
}

.blog-single-post .post-meta li {
  margin-right: 15px;
  padding-right: 15px;
  font-weight: 600;
  border-right: 1px solid #ddd
}

.blog-single-post .post-meta li i {
  margin-right: 8px;
  color: var( --primary-color)
}

.blog-single-post .post-meta li:last-child {
  border-right: 0
}

.blog-single-post h1 {
  position: relative;
  font-size: 30px;
  line-height: 44px;
  font-weight: 600;
  margin-bottom: 15px;
  color: var(--title-font)
}

.blog-single-post h3 {
  position: relative;
  font-size: 28px;
  line-height: 42px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #3f3f3f
}

.blog-single-post .text {
  margin-bottom: 40px
}

.blog-single-post .text ul {
  padding-left: 0
}

.blog-single-post .text ul li {
  list-style: none;
  margin-bottom: 10px;
  color: #3f3f3f;
  position: relative;
  padding-left: 30px
}

.blog-single-post .text ul li:before {
  color: var( --primary-color);
  content: "\f061";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 16px;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0
}

.blog-single-post .text ol li {
  list-style: inherit;
  margin-bottom: 10px;
  color: var(--title-font)
}

.blog-single-post .text h2 {
  position: relative;
  font-size: 28px;
  line-height: 44px;
  font-weight: 700;
  font-family: inherit;
  margin-bottom: 15px
}

.blog-single-post .text h3 {
  position: relative;
  font-size: 24px;
  line-height: 40px;
  font-weight: 700;
  font-family: inherit;
  margin-bottom: 15px
}

.blog-single-post .text h4 {
  position: relative;
  font-size: 22px;
  line-height: 40px;
  font-weight: 700;
  font-family: inherit;
  margin-bottom: 15px
}

.blog-single-post .text h5 {
  position: relative;
  font-size: 20px;
  line-height: 40px;
  font-weight: 700;
  font-family: inherit;
  margin-bottom: 15px
}

.blog-single-post .text h6 {
  position: relative;
  font-size: 18px;
  line-height: 30px;
  font-weight: 700;
  font-family: inherit;
  margin-bottom: 15px
}

.blog-single-post .text table tr th,.blog-single-post .text table tr td {
  border: 2px solid #ddd;
  padding: 8px 10px;
  font-size: 14px;
  font-weight: 500
}

.blog-single-post .text table tr th {
  font-weight: 700
}

.blog-single-post blockquote {
  position: relative;
  padding-left: 30px;
  font-size: 16px;
  color: #565872;
  margin-bottom: 30px
}

.blog-single-post blockquote:before {
  position: absolute;
  content: '';
  top: 0;
  width: 8px;
  bottom: 0;
  background: var( --primary-color);
  left: 0;
  border-radius: 5px
}

.widget {
  position: relative;
  margin-bottom: 50px
}

.widget_popular_post {
  position: relative;
  max-width: 350px;
  margin-left: auto
}

.widget .widget-title {
  position: relative;
  font-size: 20px;
  color: var(--title-color);
  margin-bottom: 20px;
  font-weight: 600
}

.widget_popular_post .post-thumb {
  position: relative;
  margin-right: 15px;
  margin-bottom: 0;
  overflow: hidden
}

.widget_popular_post .post-thumb:before {
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  content: '';
  width: 0;
  height: 0;
  background: rgb(16 34 53/59%);
  border-radius: 50%;
  -webkit-transform: translate(-50%,-50%);
  transform: translate(-50%,-50%);
  opacity: 0;
  z-index: 10;
  pointer-events: none;
  transition: all .3s ease-in
}

.widget_popular_post .post-thumb:hover:before {
  opacity: 1;
  width: 100%;
  height: 100%;
  border-radius: 0;
  -webkit-animation: circle .75s;
  animation: circle .75s
}

.widget_popular_post .post-thumb img {
  border-radius: 5px;
  float: left;
  height: 60px;
  width: 60px;
  object-fit: cover
}

.widget_popular_post .post {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 20px;
  border: 1px solid #e3e3e3;
  padding-bottom: 17px;
  padding: 14px;
  border-radius: 5px
}

.widget_popular_post .post:last-child {
  margin-bottom: 0
}

.widget_popular_post .content {
  position: relative;
  width: calc(100% - 75px)
}

.widget_popular_post .content h5 {
  position: relative;
  font-size: 16px;
  margin-bottom: 3px;
  font-weight:500;
  font-family: inherit
}

.widget_popular_post .content h5 a {
  color: #3f3f3f;
  transition: .5s
}

.widget_popular_post .content h5 a:hover {
  color: var( --primary-color)
}

.widget_popular_post .content .post-info {
  font-size: 14px;
  color: #3f3f3f
}

.widget_popular_post .content .post-info i {
  margin-right: 4px;
  color: var( --primary-color)
}
.Privacy-section{
  font-family: var(--title-font);
}
/**Icon Background**/
.social-text{
text-align: center;
padding: 80px 0px 80px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}
.social-text .icon-main
{
margin-bottom: 0;
}
.social-text .ico-no
{
font-size:48px;
color:#ffffff;
font-weight:500;
line-height: 1.5;
}
.social-text .ico-txt{
color: #fff;
font-size: 20px;
margin-top: 0;
}
.overview.meet-our img{
	    width: 200px;
    height: 200px;
    border-radius: 100%;
    object-fit: cover;
}
.cnb-single.cnb-left{
	bottom:20px !important;
}
.overview.callaction{
 padding:80px 0;
  background: rgba(199, 134, 101, 0.1);
}
.overview.callaction ul{
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.overview.callaction ul strong{
  font-weight: 600;
}
.overview.callaction ul li{
  color: var(--primary-color);
}
.content-service{
  padding: 60px 0;
}
.content-service .title-area h3{
    font-family: var(--title-font);
  margin-bottom: 17px;
  font-size: 40px;
  color: var(--title-color);
  text-transform: none;
  margin: 0 0 15px 0;
  text-transform: none;
}
.content-service .title-area strong{
  font-weight: 600;
}
.content-service .title-area ul li{
   list-style: none;
  margin-bottom: 10px;
  color: #3f3f3f;
  position: relative;
  padding-left: 30px
}
.content-service .title-area ul li::before{
   color: var( --primary-color);
  content: "\f061";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 16px;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0
}