@font-face {
  font-family: 'Playfair Display';
  src: url('../fonts/PlayfairDisplay-Bold.eot');
  src: url('../fonts/PlayfairDisplay-Bold.eot?#iefix') format('embedded-opentype'),
    url('../fonts/PlayfairDisplay-Bold.woff2') format('woff2'),
    url('../fonts/PlayfairDisplay-Bold.woff') format('woff'),
    url('../fonts/PlayfairDisplay-Bold.ttf') format('truetype'),
    url('../fonts/PlayfairDisplay-Bold.svg#PlayfairDisplay-Bold') format('svg');
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Playfair Display';
  src: url('../fonts/PlayfairDisplay-Regular.eot');
  src: url('../fonts/PlayfairDisplay-Regular.eot?#iefix') format('embedded-opentype'),
    url('../fonts/PlayfairDisplay-Regular.woff2') format('woff2'),
    url('../fonts/PlayfairDisplay-Regular.woff') format('woff'),
    url('../fonts/PlayfairDisplay-Regular.ttf') format('truetype'),
    url('../fonts/PlayfairDisplay-Regular.svg#PlayfairDisplay-Regular') format('svg');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}



@font-face {
  font-family: 'Poppins';
  src: url('../fonts/Poppins-Regular.eot');
  src: url('../fonts/Poppins-Regular.eot?#iefix') format('embedded-opentype'),
    url('../fonts/Poppins-Regular.woff2') format('woff2'),
    url('../fonts/Poppins-Regular.woff') format('woff'),
    url('../fonts/Poppins-Regular.ttf') format('truetype'),
    url('../fonts/Poppins-Regular.svg#Poppins-Regular') format('svg');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Poppins';
  src: url('../fonts/Poppins-Bold.eot');
  src: url('../fonts/Poppins-Bold.eot?#iefix') format('embedded-opentype'),
    url('../fonts/Poppins-Bold.woff2') format('woff2'),
    url('../fonts/Poppins-Bold.woff') format('woff'),
    url('../fonts/Poppins-Bold.ttf') format('truetype'),
    url('../fonts/Poppins-Bold.svg#Poppins-Bold') format('svg');
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Poppins';
  src: url('../fonts/Poppins-Medium.eot');
  src: url('../fonts/Poppins-Medium.eot?#iefix') format('embedded-opentype'),
    url('../fonts/Poppins-Medium.woff2') format('woff2'),
    url('../fonts/Poppins-Medium.woff') format('woff'),
    url('../fonts/Poppins-Medium.ttf') format('truetype'),
    url('../fonts/Poppins-Medium.svg#Poppins-Medium') format('svg');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Poppins';
  src: url('../fonts/Poppins-SemiBold.eot');
  src: url('../fonts/Poppins-SemiBold.eot?#iefix') format('embedded-opentype'),
    url('../fonts/Poppins-SemiBold.woff2') format('woff2'),
    url('../fonts/Poppins-SemiBold.woff') format('woff'),
    url('../fonts/Poppins-SemiBold.ttf') format('truetype'),
    url('../fonts/Poppins-SemiBold.svg#Poppins-SemiBold') format('svg');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}




/* Reset css  */
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: 'Poppins';
}

ul {
  list-style: none;
}

ul,
li {
  margin: 0;
  padding: 0;
}

a {
  color: #000;
  transition: all 0.5s ease !important;
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
}

.sub-heading-container {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.common-sub-heading {
  font-size: 12px;
  text-transform: uppercase;
  color: #af9b11;
  font-weight: 600;
  padding: 7px 20px;
  border-radius: 20px;
  width: fit-content;
  background-color: #ffffff;
  border: 1px solid #af9a11;
}

.common-heading {
  font-size: 34px;
  line-height: 45px;
  color: #000000;
  font-weight: 700;
  font-family: "Playfair Display";
}


.common-text {
  font-size: 16px;
  line-height: 30px;
  color: #151515;
  font-weight: 400;
}

.common-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  position: relative;
  padding: 15px 35px;
  width: fit-content;
  border-radius: 30px;
  background-image: linear-gradient(89deg, #dbc119 0%, #9b870f 99%, #9b870f 100%);
  font-size: 16px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #ffffff;
  font-weight: 600;
  font-family: "Poppins";
  text-align: center;
  text-decoration: none !important;
  overflow: hidden;
  z-index: 1;
  transition: background-color 0.3s ease;
}

.common-btn::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 100%;
  width: 100%;
  background-color: #dbc119;
  transform: scaleX(0);
  transform-origin: left;
  z-index: -1;
  transition: transform 0.3s ease;
}

.common-btn:hover::before {
  transform: scaleX(1);
}

.common-btn:hover {
  color: #ffffff;
}

.common-btn-2 {
  background: transparent;
  border: 1px solid #ffffff;
}

.common-btn-2:hover {
  border: 1px solid #dbc119;
}

.common-btn-2::before {
  background-color: #dbc119;
}

.animate {
  animation: slideDown 0.7s ease-in-out;
}

@keyframes slideDown {
  from {
    transform: translateY(-150%);
  }

  to {
    transform: translateY(0);
  }
}

.top-header {
  display: flex;
  justify-content: end;
  align-items: center;
  transition: all 0.5s ease;
}

.top-header-container {
  width: fit-content;
  display: flex;
  justify-content: end;
  align-items: center;
  gap: 45px;
  position: relative;
  padding: 15px 30px;
  border-radius: 0 28px 28px;
  background-color: #ffffff;
  border: 1px solid #d6d6d6;
  transition: all 0.5s ease;
}

.pos-fixed .top-header-container {
  height: 0;
  padding: 0;
  top: -200px;
  transition: all 0.5s ease;
}

.info-container {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 16px;
  color: #313131;
  font-weight: 500;
  transition: all 0.5s ease;
}

.info-container img {
  width: 19px;
}

.info-container a {
  font-size: 16px;
  color: #313131;
  font-weight: 500;
  transition: all 0.5s ease;
}

.info-container a:hover {
  color: #9b8714;
}

/* main header section css here  */
.main-header {
  position: fixed;
  padding: 0px 0;
  top: 4px;
  left: 0;
  right: 0;
  z-index: 999;
  background-color: transparent;
  transition: all 0.5s ease;
  /* position: relative; */
}

.main-header::before {
  content: '';
  width: 100%;
  height: 7px;
  background-color: #dcc11a;
  position: absolute;
  left: 0;
  top: -4px;
  z-index: 1;
}

.pos-fixed.main-header::before {
  content: none;
}

.pos-fixed.main-header {
  top: 0;
}

.pos-fixed .header-menu {
  margin-top: 0;
  padding: 10px 0;
}

.header-menu {
  margin-top: 10px;
}

.logo-container {
  position: relative;
}

.logo-container img {
  position: absolute;
  top: -75px;
  left: 0;
  width: 170px;
  transition: all 0.5s ease;
}

.pos-fixed .logo-container img {
  position: relative;
  width: 80px;
  top: 0;
}

.header-manu-container {
  margin-left: -45px;
  margin-right: 20px;
}

.header-manu-container ul {}

.main-header ul li {
  margin-right: 40px;
}

.main-header ul li:last-child {
  margin-right: 0px;
}

.main-header ul li a {
  font-size: 16px;
  color: #ffffff;
  font-weight: 400;
  line-height: 50px;
  padding: 0;
  text-transform: capitalize;
}

.home .main-header ul li a {
  color: #000000;
}

.pos-fixed.main-header ul li a {
  color: #000000;
}

.header-btn-container {
  display: flex;
  justify-content: end;
  gap: 15px;
}

.header-btn-container .common-btn {
  padding: 15px 35px 15px 60px;
  margin-left: -15px;
}

.header-btn-container .common-btn::after {
  content: "";
  background: url("../images/btn-icon.png") no-repeat #ffffff;
  background-position: center;
  background-size: 22px;
  width: 38px;
  height: 38px;
  border-radius: 19px;
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
}

.btn-icon {}

.pos-fixed {
  background: #ffffff;
  transition: all 0.5s ease;
  box-shadow: 0 0 5px #dddddd;
}

/* banner css here  */
.banner-sec {
  position: relative;
  margin-top: 0px;
  /* background: url("../images/banner-img.jpg") no-repeat;
  background-size: 100% 100%;
  min-height: 100vh; */
}

.banner-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}


.banner-container {
  margin-left: 100px;
  min-height: 100vh;
  align-content: center;
  padding: 239px 0 187px;
  position: relative;
  z-index: 99;
}

.banner-heading {
  font-size: 38px;
  line-height: 45px;
  color: #000000;
  font-weight: 700;
  font-family: "Playfair Display";
}

.banner-btn-container {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 20px;
}

.banner-sec .common-text {
  padding: 15px 0;
}


/* banner-bottom-sec */

.banner-bottom-sec {
  padding: 100px 0;
}

.banner-bottom-card {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 20px;
}

.banner-bottom-card-img {
  position: relative;
}

.banner-bottom-text-img {
  width: 123px;
}

.banner-bottom-icon {
  width: 40px;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.5s ease;
}

.banner-bottom-card:hover .banner-bottom-icon {
  transform: translate(-50%, -50%) rotateY(-360deg);
}

.banner-bottom-card-heading {
  font-size: 16px;
  color: #000000;
  font-weight: 500;
  text-align: center;
}

/* about-sec */
.about-sec {
  padding: 0 0 100px;
  position: relative;
}

.about-sec::before {
  content: '';
  background: url("../images/about-shape-1.png") no-repeat;
  background-size: cover;
  width: 222px;
  height: 262px;
  position: absolute;
  right: 0;
  top: 0px;
}

.about-sec::after {
  content: '';
  background: url("../images/about-shape-2.png") no-repeat;
  background-size: cover;
  width: 407px;
  height: 173px;
  position: absolute;
  left: 0;
  bottom: 110px;
}

.about-left img {
  border-radius: 15px;
}

.about-right .common-heading {
  margin: 20px 0 15px;
}

.about-right .common-text {
  padding-right: 50px;
  margin-bottom: 25px;
}

.about-img-2 {
  border-radius: 15px;
  margin-top: 40px;
}

/* our-service */
.our-service {
  padding: 100px 0 60px;
  background-color: #fffdf0;
}

.our-service .container {
  max-width: 1920px;
}

.our-service .container-padding {
  padding: 0;
}

.service-slider {
  margin-top: 50px;
}

.owl-theme .owl-nav.disabled+.owl-dots {
  margin-top: 50px !important;
}

.our-service-card-img {
  border-radius: 30px;
}

.our-service-card {
  position: relative;
}

.our-service-card::before {
  content: "";
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.7) 0%, rgba(253, 187, 45, 0) 100%);
  width: 100%;
  height: 70%;
  position: absolute;
  bottom: 0;
  left: 0;
  border-radius: 0 0 30px 30px;
}

.our-service-card-bottom {
  position: absolute;
  bottom: 30px;
  left: 50%;
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 10px;
  width: 260px;
  transform: translateX(-50%);
}

.our-service-card-bottom img {
  width: 33px !important;
}

.our-service-card-heading {
  font-size: 20px;
  color: #ffffff;
  font-weight: 400;
  font-family: "Playfair Display";
  text-align: center;
  min-height: 60px;
}

/* how-it-work-sec */
.how-it-work-sec {
  padding: 100px 0;
  position: relative;
}

.how-it-work-sec::after {
  content: '';
  background: url("../images/how-it-work-shape.png") no-repeat;
  background-size: cover;
  width: 93px;
  height: 618px;
  position: absolute;
  right: 0;
  top: 0px;
}

.how-it-work-sec .common-heading {
  margin: 15px 0 30px;
}

.how-it-work-sec img {
  margin-top: 30px;
  border-radius: 15px;
}

.how-it-work-right {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-left: 45px;
}

.how-it-work-card {
  display: flex;
  align-items: start;
  gap: 40px;
}

.how-it-work-card-icon {
  width: 51px;
  min-width: 51px;
  height: 51px;
  border-radius: 26px;
  background-color: #ffffff;
  box-shadow: 0 0 5px #808080;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.how-it-work-card-icon::before {
  content: '';
  background: #cccccc;
  width: 1px;
  height: 60px;
  position: absolute;
  bottom: -80px;
  left: 50%;
  transform: translateX(-50%);
}

.how-it-work-right .how-it-work-card:last-child .how-it-work-card-icon:before {
  content: none;
}

.how-it-work-card-icon img {
  width: 18px;
  margin-top: 0 !important;
}

.how-it-work-card-heading {
  font-size: 20px;
  line-height: 30px;
  color: #151515;
  font-weight: 700;
  font-family: "Playfair Display";
}

.how-it-work-card-text {
  font-size: 16px;
  line-height: 23px;
  color: #151515;
  font-weight: 300;
  margin-top: 20px;
}



/* contact-sec */
.contact-sec {
  padding: 100px;
  background-color: #9c8910;
  position: relative;
}

.contact-sec::before {
  content: '';
  background: url("../images/contact-shpe-1.png") no-repeat;
  background-size: cover;
  width: 362px;
  height: 199px;
  position: absolute;
  left: 0;
  top: 0;
}

.contact-sec::after {
  content: '';
  background: url("../images/contact-shpe-2.png") no-repeat;
  background-size: cover;
  width: 362px;
  height: 199px;
  position: absolute;
  right: 0;
  bottom: 0;
}

.contact-heading {
  font-size: 50px;
  line-height: 62px;
  color: #ffffff;
  font-weight: 700;
  font-family: "Playfair Display";
}

.contact-sec-left {
  padding-right: 40px;
  position: relative;
}

.contact-sec-right {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 15px;
  z-index: 1;
  padding-left: 50px;
}

.contact-sec-btn {
  display: flex;
  align-items: center;
  gap: 10px;
}

.contact-sec-btn img {
  width: 45px;
}

.contact-sec-btn a {
  font-size: 16px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #ffffff;
  font-weight: 600;
}

.contact-sec-btn a:hover {
  color: #dbc119;
}


/* testimonial-sec */
.testimonial-sec {
  padding: 100px 0;
  position: relative;
}

.testimonial-sec::before {
  content: '';
  background: url("../images/testimonial-shape-1.png") no-repeat;
  background-size: cover;
  width: 255px;
  height: 260px;
  position: absolute;
  right: 0;
  bottom: 80px;
}

.testimonial-sec::after {
  content: '';
  background: url("../images/testimonial-shape-2.png") no-repeat;
  background-size: cover;
  width: 90px;
  height: 576px;
  position: absolute;
  left: 0;
  top: 0px;
}

/* .testimonial-content {
  min-height: 300px;
  margin-top: 30px;
} */

.sp-testimonial-free-section .sp-testimonial-client-image img {
  width: 65px;
}

.testimonial-content {
  margin-top: 30px;
}

#sp-testimonial-free-wrapper-135 .sp-testimonial-free-section .sp-testimonial-client-image {
  position: absolute;
  left: 50%;
  bottom: 60px;
  transform: translateX(-50%);
}

.sp-testimonial-free-section .sp-testimonial-client-testimonial p {
  padding: 40px 0 80px !important;
}

#sp-testimonial-free-wrapper-135 .sp-testimonial-free-section .sp-testimonial-client-rating {
  display: flex !important;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}

.sp-testimonial-free-section .sp-testimonial-client-name {
  font-size: 18px !important;
  line-height: 30px !important;
  color: #000000 !important;
  font-weight: 400;
  /* margin-top: 50px !important; */
}

.sp-testimonial-free-section .sp-testimonial-client-designation {
  font-size: 15px !important;
  line-height: 30px !important;
  color: #000000;
  font-weight: 400;
}

/* footer */
.footer {
  position: relative;
  background-color: #fffbe0;
  background-size: cover;
  padding: 100px 0 0;
  position: relative;
  z-index: 1;
  margin-top: 0;
}

.footer-heading {
  font-size: 20px;
  color: #9b8714;
  font-weight: 700;
  padding-bottom: 20px;
}

.footer ul {
  list-style: none;
  margin: 0;
  position: relative;
  z-index: 3;
}

.footer ul li {
  font-size: 14px;
  color: #0e0e0e;
  font-weight: 400;
  padding-bottom: 15px;
}

.footer ul li a {
  font-size: 14px;
  color: #0e0e0e;
  font-weight: 400;
}

.footer ul li a:hover {
  color: #9b890f;
  padding-left: 2px !important;
}

.f-contact-container ul li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 15px;
}

.f-icon {
  width: 31px;
  min-width: 31px;
  height: 31px;
  border-radius: 15px;
  background-image: linear-gradient(89deg, #dbc119 0%, #9b890f 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.f-icon img {
  width: 13px;
}


.f-logo {
  width: 180px;
}

.f-menu-container {}

.f-contact-container {
  margin-left: -40px;
}

.f-service-container {
  margin-left: -10px;
}

.f-service-container-2 {
  padding-left: 20px;
  margin-right: -25px;
}

.lower-footer {
  position: relative;
  font-size: 16px;
  color: #0e0e0e;
  font-weight: 400;
  padding: 20px 0;
  text-align: center;
  margin-top: 50px;
  border-top: 1px solid #e6e3cb;
  z-index: 5;
}

.lower-footer span {
  text-transform: uppercase;
}

.lower-footer a {
  color: #0e0e0e;
}

.lower-footer a:hover {
  color: #9b890f;
}


/* scroll to top  */
.scroll-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  cursor: pointer;
  z-index: 9999;
  width: 57px;
  height: 57px;
  border-radius: 28px;
  background-image: linear-gradient(89deg, #dbc119 0%, #9b890f 100%);
  align-items: center;
  justify-content: center;
  transition: all 0.5s ease;
}

.scroll-top img {
  width: 23px;
  animation: bounce2 2s ease infinite;
}


@keyframes bounce2 {

  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }

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

  60% {
    transform: translateY(-5px);
  }
}

/* banner css here */
.site-content,
.site-main .widecolumn {
  margin-left: 0px !important;
}

.page .entry-header,
.blog_page_header {
  background: url("../images/banner-img.jpg") #eee no-repeat !important;
  background-size: cover !important;
  max-width: 100% !important;
  padding: 250px 0 150px !important;
  margin: 0 0 50px !important;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.page .entry-header:before,
.blog_page_header:before {
  background: rgba(0, 0, 0, 0.7);
  position: absolute;
  content: "";
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.page .entry-content {
  max-width: 100% !important;
  padding: 0px !important;
}

.content-area,
.content-sidebar {
  padding-top: 0px !important;
}

.page .entry-title,
.blog_page_title {
  color: #fff;
  position: relative;
  font-size: 32px;
  font-weight: 600;
  text-transform: none;
  z-index: 99;
  margin-bottom: 3px;
}

.breadcrumb-container {
  width: 100%;
  color: #ea0700;
  position: relative;
  font-size: 15px;
}

.breadcrumb-container a {
  color: #ea0700;
}

.page {
  margin-top: 0 !important;
}


/* inner page css  */
.inner_content p {
  margin-bottom: 0;
}

.inner_title {
  color: #131313;
  font-size: 26px;
  line-height: 1.2;
  font-weight: bold;
  position: relative;
}

.inner_title strong {
  color: #9b8714;
}

.inner_txt {
  font-size: 16px;
  color: #2b2b2b;
  font-weight: normal;
  margin-top: 20px;
}

.margin-top {
  margin-top: 48px;
}

.inner_list_txt {
  margin-top: 20px;
}

.inner_list_txt ul {
  padding: 0;
  margin: 0;
}

.inner_list_txt ul li {
  background: url("../images/list-img.png");
  background-position: top 4px left;
  padding-left: 28px;
  background-repeat: no-repeat;
  background-size: 18px;
  font-size: 16px;
  color: #2b2b2b;
  font-weight: normal;
  list-style: none;
  padding-bottom: 6px;
}

.inner_bottm_sec {
  background: #dbc119;
  padding: 30px 20px;
  text-align: center;
}

.core-box {
  box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 2px 6px 2px;
  padding: 30px 20px;
  background: #fff;
  border-radius: 5px;
  min-height: 100%;
}

.core-box img {
  width: 80px;
  padding-bottom: 20px;
}

.core-box_title {
  color: #131313;
  font-size: 20px;
  line-height: 1.2;
  font-weight: bold;
  position: relative;
}

.core-box_title strong {
  color: #9b8714;
}

.core-box_txt {
  font-size: 14px;
  color: #2b2b2b;
  font-weight: normal;
  margin-top: 20px;
}

.m-top {
  margin-top: 20px;
}

/* contact page css  */

.contact_page_heading {
  color: #131313;
  font-size: 26px;
  text-transform: capitalize;
  font-weight: bold;
  position: relative;
}

.contact_page_heading strong {
  color: #9b8714;
}

.contact_page_info {
  position: relative;
  color: #000;
  margin-top: 25px;
  display: flex;
  align-items: center;
  gap: 20px;
}

.contact-text a {
  transition: all 0.5s ease;
  text-decoration: none !important;
}

.contact-text strong {
  color: #000000;
  font-weight: 600;
}

.contact-img {
  background: #ffffff;
  box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 2px 6px 2px;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  text-align: center;
  padding-top: 10px;
}

.contact-img img {
  width: 22px;
}

.contact_right {
  box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 2px 6px 2px;
  padding: 25px;
  border-radius: 5px;
}

/* thank you page   */
.thankyou-btn-container {
  display: flex;
  justify-content: center;
}

.thankyou-btn-container a {
  text-decoration: none !important;
}

.thankyou-text {
  font-size: 18px;
  font-weight: 500;
  padding-top: 20px;
}

/* footer_fixed_buttons css  */
.footer_fixed_buttons {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  text-align: center;
  z-index: 99;
}

.footer_btn1 {
  background: #ac9812;
  width: 50%;
  float: left;
  color: #fff !important;
  padding: 10px 0;
  text-decoration: none !important;
  text-transform: capitalize;
}

.footer_btn2 {
  background: #fff;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, 0);
  height: 44px;
  width: 44px;
  border-radius: 50%;
  padding-top: 9px;
}
.footer_btn2 img{
	width: 22px;
}
.footer_btn3 {
  background: #000000;
  width: 50%;
  float: left;
  color: #fff !important;
  padding: 10px 0;
  text-decoration: none !important;
  text-transform: capitalize;
}



/* blog page css  */
.more-link {
  display: block;
  background-image: linear-gradient(89deg, #dbc119 0%, #9b870f 99%, #9b870f 100%);
  width: fit-content;
  margin: 15px 0;
  padding: 15px 25px;
  border-radius: 25px;
  color: #fff;
  text-transform: capitalize;
  transition: all 0.5s ease;
  text-decoration: none !important;
}

.more-link:hover {
/*   background: #ff8b00 !important; */
  color: #fff !important;
}

.post .entry-title {
  font-size: 30px !important;
  font-weight: 600 !important;
}

.widget_block {
  position: relative;
}

.widget_block::before {
  content: '';
  width: 100%;
  height: 3px;
  background: #000;
  position: absolute;
  left: 0;
  top: -15px;
}

#block-8::before {
  content: none;
}

#block-7 {
  margin-bottom: 10px;
}

/* contact page  */
.contact-form-sec input {
  width: 100%;
  padding: 12px 10px 12px 20px;
  border-radius: 7px;
  color: #515151;
  font-size: 16px;
  text-transform: capitalize;
  border: 1px solid #efefef;
  background: #efefef;
  outline: none;
}

.contact-form-sec input:focus,
.contact-form-sec select:focus,
.contact-form-sec textarea:focus {
  border: 1px solid #7db2f3;
}

.contact-form-sec select {
  width: 100%;
  padding: 12px;
  border-radius: 7px;
  color: #515151;
  font-size: 16px;
  text-transform: capitalize;
  border: 1px solid #efefef;
  background: #efefef;
  outline: none;
}

.contact-form-sec textarea {
  width: 100%;
  padding: 12px 12px 12px 20px;
  border-radius: 7px;
  color: #515151;
  font-size: 16px;
  height: 90px;
  border: 1px solid #efefef;
  background: #efefef;
}

.contact-form-sec input[type="submit"] {
  font-size: 16px;
  text-transform: uppercase;
  color: #ffffff;
  font-weight: 600;
  text-align: center;
  border-radius: 5px;
  width: fit-content;
  background-color: #0a9193;
  padding: 13px 50px;
  transition: all 0.5s ease;
}

.contact-form-sec input[type="submit"]:hover {
  background-color: #7db2f3;
}

.contact-form-sec p {
  margin-bottom: 0 !important;
}

/* inner form css here  */
.inner-form-container a {
  text-decoration: none !important;
}

.inner-form-page .inner_txt a {
  text-decoration: none;
}

.inner-form-label {
  font-size: 17px;
  font-weight: 500;
}

.inner-form-label p {
  margin-bottom: 8px;
}

.inner-form-input input {
  width: 100%;
  border: 1px solid #9b870f;
  border-radius: 10px;
  color: #2b2b2b;
  padding: 10px 20px;
}

.inner-form-textarea textarea {
  width: 100%;
  border: 1px solid #9b870f;
  border-radius: 10px;
  color: #2b2b2b;
  padding: 10px 20px;
  height: 100px;
}

.inner-form-container {
  margin-top: 30px;
  padding: 40px 30px;
  border-radius: 20px;
  box-shadow: 0 0 5px #dfdfdf;
}

.inner-form-heading p {
  margin-bottom: 0;
}

.inner-form-heading {
  color: #131313;
  font-size: 26px;
  line-height: 1.2;
  font-weight: bold;
  position: relative;
  padding-bottom: 12px;
}

.inner-form-heading strong {
  color: #9b870f;
}

.inner-form-heading::after {
  position: absolute;
  content: "";
  bottom: 0;
  left: 12px;
  width: 30px;
  height: 3px;
  background: #9b870f;
}

.inner-form-radio .wpcf7-list-item {
  display: block;
  margin: 0;
}

.inner-form-text {
  font-size: 17px;
  text-align: center;
  font-weight: 600;
}

.inner-form-submit-btn {
  display: flex;
  justify-content: center;
}

.inner-form-submit-btn input[type="submit"] {
  font-size: 16px;
  color: #ffffff;
  font-weight: 500;
  border-radius: 27px;
  padding: 15px 40px;
  text-align: center;
  background-image: linear-gradient(89deg, #dbc119 0%, #9b870f 99%, #9b870f 100%);
}

.inner-form-submit-btn input[type="submit"]:hover {
  background-image: linear-gradient(89deg, #9b870f 0%, #9b870f 99%, #dbc119 100%);
}

.inner-form-submit-btn .wpcf7-spinner {
  display: none;
}

.contact-form-sec input {
  width: 100%;
  padding: 12px 10px 12px 20px;
  border-radius: 7px;
  color: #515151;
  font-size: 16px;
  text-transform: capitalize;
  border: 1px solid #efefef;
  background: #efefef;
  outline: none;
}

.contact-form-sec input:focus,
.contact-form-sec select:focus,
.contact-form-sec textarea:focus {
  border: 1px solid #9b870f;
}

.contact-form-sec select {
  width: 100%;
  padding: 12px;
  border-radius: 7px;
  color: #515151;
  font-size: 16px;
  text-transform: capitalize;
  border: 1px solid #efefef;
  background: #efefef;
  outline: none;
}

.contact-form-sec textarea {
  width: 100%;
  padding: 12px 12px 12px 20px;
  border-radius: 7px;
  color: #515151;
  font-size: 16px;
  height: 90px;
  border: 1px solid #efefef;
  background: #efefef;
}

.contact-form-sec input[type="submit"] {
  font-size: 16px;
  text-transform: uppercase;
  color: #ffffff;
  font-weight: 600;
  text-align: center;
  border-radius: 5px;
  width: fit-content;
  background-image: linear-gradient(89deg, #dbc119 0%, #9b870f 99%, #9b870f 100%);
  padding: 13px 50px;
  transition: all 0.5s ease;
}

.contact-form-sec input[type="submit"]:hover {
  background-image: linear-gradient(89deg, #9b870f 0%, #9b870f 99%, #dbc119 100%);
}

.contact-form-sec p {
  margin-bottom: 0 !important;
}

.not_found-text {
	font-size: 18px;
	font-weight: 500;
	padding: 10px;
}

.back_btn {
	display: flex;
	justify-content: center;
	margin: 15px 0 60px;
}

.back_btn a {
	text-decoration: none !important;
}


/* mediaquery start here */

@media only screen and (min-width : 300px) and (max-width : 1023px) {
    .top-header {
        display: none;
    }
    .header-mid {
        display: none;
    }
    .header-right {
        display: none;
    }
    .animate {
        animation: none;
	}
	.logo-container img {
		position: relative;
		top: 0;
		width: 80px;
	}
	.pos-fixed .logo-container img {
		position: relative;
		top: 0;
	}
	.pos-fixed.main-header::before {
		content: "";
	}
	.header-menu {
		margin-top: 0px;
		padding: 10px 0;
	}
	.main-header{
		background: #ffffff;
		transition: all 0.5s ease;
		box-shadow: 0 0 5px #dddddd;
		top:0;
	}
	.banner-sec {
		margin-top: 95px;
	}
	.banner-img {
		object-fit: cover;
		object-position: right;
	}
	.banner-sec .container {
		width: auto;
	}
	.banner-container {
		margin-left: 0;
		min-height: 100%;
		padding: 70px 0;
	}
	.banner-heading {
		font-size: 28px;
		line-height: 35px;
	}
	.banner-bottom-sec {
		padding: 50px 0;
	}
	.banner-bottom-sec .col-12 {
		width: 50%;
	}
	.about-sec{
/* 		overflow: hidden; */
		padding: 0 0 50px;
	}
	.common-heading {
		font-size: 26px;
		line-height: 35px;
	}
	.about-sec:before{
		display: none;
	}
	.about-sec:after{
		display: none;
	}
	.our-service {
		padding: 50px 0 60px;
	}
	.how-it-work-sec {
		padding: 50px 0;
	}
	.how-it-work-sec:after{
		content: none;
	}
	.how-it-work-right {
		gap: 15px;
		margin-left: 0;
	}
	.how-it-work-card {
		gap: 20px;
	}
	.contact-sec::before {
		width: 200px;
		height: 110px;
	}
	.contact-sec::after{
		width: 200px;
		height: 110px;
	}
	.contact-sec {
		padding: 130px 0 100px;
	}
	.contact-sec-left {
		padding-right: 0;
	}
	.contact-sec-right {
		padding-left: 0;
	}
	.contact-heading {
		font-size: 26px;
		line-height: 35px;
	}
	.testimonial-sec {
		padding: 50px 0;
	}
	.testimonial-sec::before{
		content: none;
	}
	.testimonial-sec::after{
		content: none;	
	}
	.footer {
		padding: 50px 0 0;
	}
	.f-contact-container {
		margin-left: 0;
	}
	.f-service-container {
		margin-left: 0;
	}
	.f-service-container-2 {
		padding-left: 0;
		margin-right: 0;
	}
	.contact-sec{
		overflow: hidden;
	}
	.lower-footer {
		padding: 20px 0 60px;
		margin-top: 25px;
	}
	.footer{
		overflow: hidden;
	}
	.f-logo {
		width: 110px;
	}
	.page .entry-header, .blog_page_header {
		padding: 210px 0 80px !important;
		margin: 0 0 50px !important;
	}
	.page .entry-title, .blog_page_title {
		font-size: 26px;
	}
	.inner-form-container {
		padding: 30px 10px;
	}
	.scroll-top {
		bottom: 9rem;
		right: 1rem;
	}
}

@media only screen and (max-width : 320px) {}

/* mobile screen  iphone SE */
@media only screen and (min-width : 321px) and (max-width : 480px) {}

/* mobile screen rotate */
@media only screen and (min-width : 481px) and (max-width : 767px) {
	.banner-sec .col-sm-12 {
		flex: 0 0 auto;
		width: 66%;
	}
	.contact-sec-right {
		flex-direction: row;
	}

}

/* iPhone X/XS */
@media only screen and (min-device-width: 375px) and (max-device-width: 812px) and (-webkit-min-device-pixel-ratio: 3) and (orientation: landscape) {
	.about-sec:after{
		display: block;
		width: 350px;
		height: 149px;
	}
}

/* iPhone XR */
@media only screen and (min-device-width: 414px) and (max-device-width: 896px) and (-webkit-min-device-pixel-ratio: 2) and (orientation: landscape) {
	.about-sec:after{
		display: block;
		width: 350px;
		height: 149px;
	}
}

/* iPhone XS Max */
@media only screen and (min-device-width: 414px) and (max-device-width: 896px) and (-webkit-min-device-pixel-ratio: 3) and (orientation: landscape) {}

/* ipad screen  */
@media only screen and (min-width : 768px) and (max-width : 1024px) and (orientation : portrait) {
	.about-sec:after{
		display: block;
		width: 350px;
		height: 149px;
	}
}

/* ipad rotate */
@media only screen and (min-width : 768px) and (max-width : 1024px) and (orientation : landscape) {
	   .top-header {
        display: none;
    }
    .header-mid {
        display: none;
    }
    .header-right {
        display: none;
    }
    .animate {
        animation: none;
	}
	.logo-container img {
		position: relative;
		top: 0;
		width: 80px;
	}
	.pos-fixed .logo-container img {
		position: relative;
		top: 0;
	}
	.pos-fixed.main-header::before {
		content: "";
	}
	.about-sec::before {
		width: 140px;
		height: 175px;
		top: 80px;
	}
}

/* iPad Pro 10.5 inch */
@media only screen and (min-device-width: 1112px) and (max-device-width: 1112px) and (orientation: landscape) and (-webkit-min-device-pixel-ratio: 2) {}

/* iPad Pro 12.9 inch */
@media only screen and (min-device-width: 1024px) and (max-device-width: 1024px) and (orientation: portrait) and (-webkit-min-device-pixel-ratio: 2) {}

@media screen and (min-width: 1424px) {
	.banner-img {
		object-fit: cover;
	}
}

@media screen and (min-width: 1624px) {}

@media screen and (min-width: 1920px) {}

@media screen and (min-width: 2048px) {}

@media screen and (min-width: 2550px) {}



@media (min-width: 1025px) and (max-width: 1199px) {
	.banner-img{
		object-fit: cover;
	}
	.top-header-container {
		gap: 20px;
	}
	.main-header ul li {
		margin-right: 20px;
	}
	.header-btn-container {
		margin-right: -20px;
	}
}