@import url("https://fonts.googleapis.com/css2?family=Lexend:wght@100..900&display=swap");
/*font-family: "Lexend", sans-serif;*/
@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
/*font-family: "Poppins", sans-serif;*/
* {
  box-sizing: border-box;
}

body {
  margin: 0px;
  font-family: "Poppins", sans-serif;
}

button:focus {
  outline: none;
}

input:focus {
  outline: none;
}

a {
  color: #1b70bb;
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

ul {
  list-style: none;
  padding-left: 0px;
}

/*#### Comon css start ####*/
.btn-dark {
  background-color: #000000;
  border-color: #000000;
  border-radius: 0px;
  padding: 10px 15px;
  font-size: 16px;
}

.btn-outline-light {
  position: relative;
  border: 1px solid #fff;
  border-radius: 0px;
  padding: 10px 15px;
  font-size: 16px;
}

.btn-warning {
  background-color: #A49152;
  border-color: #A49152;
  color: #fff;
  border-radius: 0px;
  padding: 10px 15px;
  font-size: 16px;
}
.btn-warning:hover {
  background-color: #A58865;
  border-color: #A58865;
  color: #fff;
}

.comon-title {
  position: relative;
  width: 100%;
}
.comon-title h4 {
  position: relative;
  width: 100%;
  color: #A58865;
  font-size: 20px;
  font-family: "Lexend", sans-serif;
  margin-bottom: 10px;
}
.comon-title h3 {
  position: relative;
  width: 100%;
  color: #000000;
  font-size: 50px;
  font-family: "Lexend", sans-serif;
  font-weight: 600;
  margin-bottom: 15px;
}
.comon-title p {
  position: relative;
  width: 100%;
  color: #585858;
  font-size: 16px;
  margin-bottom: 10px;
}

/*#### Comon css end ###*/
/*####### animation #########*/
@keyframes smoothScroll {
  0% {
    transform: translateY(-20px);
  }
  100% {
    transform: translateY(0px);
  }
}
/*####### animation end #########*/
/*#### Header css start ####*/
.header-wrapper {
  position: relative;
  width: 100%;
  background-color: #000000;
  padding: 10px 0px;
  z-index: 9;
}
.header-wrapper .manu-wrap {
  position: relative;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: space-between;
  align-items: center;
}

.header-wrapper.sticky {
  position: fixed;
  z-index: 10;
  width: 100%;
  top: 0;
  background-color: rgba(0, 0, 0, 0.7);
  animation: smoothScroll 1s forwards;
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
}

.header-wrapper .manu-wrap .logo-wrap {
  position: relative;
}

.header-wrapper .manu-wrap .logo-wrap img {
  width: auto;
  height: auto;
}

.navbar {
  position: relative;
}
.navbar .logo-wrap {
  position: relative;
}
.navbar .navbar-nav {
  position: relative;
}
.navbar .navbar-nav li {
  position: relative;
  padding: 0px 20px;
}
.navbar .navbar-nav li a {
  position: relative;
  color: #fff;
  font-size: 18px;
  transition: all 0.5s;
}
.navbar .navbar-nav li a:hover {
  color: #A49152;
  transition: all 0.5s;
}
.navbar .navbar-nav li.active a {
  color: #A49152;
  transition: all 0.5s;
}

.menu > #my-menu > li.current_page_item > a, .menu > #my-menu > li.current-menu-parent > a {
  background: #A49152;
  color: #fff;
}

/*@@@@####### Menu css start ######@@@@@@@@@*/
.menu > ul > li {
  background-color: transparent;
}

.menu > ul > li a {
  background-color: transparent;
  padding: 10px 20px;
}

.menu > ul > li > a {
  color: #fff;
  font-size: 18px;
  text-transform: uppercase;
}

/*sub*/
.menu > ul > li > ul {
  background-color: #000000;
}

.menu > ul > li > ul > li {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
}

.menu > ul > li > ul > li > a.menu-heading {
  width: 40%;
  color: #828282;
  background-color: #1C1C1C;
  border-bottom: 1px dashed #707070;
  padding: 20px 10px;
}

.menu > ul > li > ul:not(.normal-sub) > li > a {
  width: 40%;
  color: #828282;
  background-color: #1C1C1C;
  border-bottom: 1px dashed #707070;
  padding: 20px 10px;
}

.menu > ul > li > ul > li > a {
  position: relative;
}

.menu > ul > li > ul:not(.normal-sub) > li > a:before {
  content: "";
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-left: 20px solid #1C1C1C;
  border-bottom: 10px solid transparent;
  position: absolute;
  right: -15px;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0;
}

.menu > ul > li > ul > li > ul {
  width: 60%;
  height: 100%;
  position: absolute;
  right: 0;
  top: 0;
  padding: 10px 20px;
  display: none;
  flex-wrap: wrap;
}

.menu > ul > li.menu-dropdown-icon > ul > li:hover > ul {
  display: flex;
  align-content: flex-start;
}

.menu > ul > li.menu-dropdown-icon > ul > li:hover a {
  color: #fff;
}

.menu > ul > li.menu-dropdown-icon > ul > li:hover a:before {
  opacity: 1;
}

.menu > ul > li > ul > li > ul > li {
  width: calc(50% - 10px);
  border-bottom: 1px dashed #707070;
  margin: 0px 5px;
}

.menu > ul > li:hover {
  background-color: #A49152;
}

/*@@@@####### Menu css end ######@@@@@@@@@*/
/*@@@@####### slicknav menu css start ######@@@@@@@@@*/
@media (min-width: 992px) {
  .slicknav_menu {
    display: none;
  }
}
@media (max-width: 991px) {
  .manu-wrap .menu {
    display: none;
  }
  .menu-dropdown-icon::before {
    display: none;
  }
  .slicknav_menu {
    background-color: transparent;
  }
  .slicknav_menu .slicknav_btn {
    margin: 0px;
    padding: 15px 10px;
    background-color: #A49152;
  }
  .slicknav_menu .slicknav_nav {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #A49152;
    width: 100%;
    height: 250px;
    overflow: scroll;
  }
  .slicknav_menu .slicknav_nav .slicknav_arrow {
    position: absolute;
    right: 0px;
    top: 0;
    padding: 3px 15px;
    border-left: 1px solid #fff;
    height: 100%;
    display: inline-flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    font-size: 22px;
  }
  .slicknav_menu .slicknav_nav li {
    position: relative;
    width: 100%;
  }
  .slicknav_menu .slicknav_nav li.active > a {
    background-color: #A58865;
  }
  .slicknav_menu .slicknav_nav li a {
    position: relative;
    width: 100%;
    padding: 10px 10px;
    margin: 0px;
    border-bottom: 1px solid #fff;
  }
  .slicknav_menu .slicknav_nav li a > a {
    border: 0px;
    padding: 0px;
  }
  .slicknav_menu .slicknav_nav li ul {
    position: relative;
    width: 100%;
    margin: 0px;
  }
  .slicknav_menu .slicknav_nav li ul > li > a {
    padding-left: 25px;
  }
  .slicknav_menu .slicknav_nav li ul > li > a > a {
    padding: 0px;
  }
  .slicknav_menu .slicknav_nav li ul > li ul li a {
    padding-left: 35px;
  }
}
.slicknav_nav .slicknav_row:hover {
  border-radius: 0px;
  background: #A58865;
}

/*@@@@####### slicknav menu css end ######@@@@@@@@@*/
/*#### Header css end ####*/
/*Banner css start*/
.banner-wrapper {
  position: relative;
  width: 100%;
}
.banner-wrapper img {
  position: relative;
  width: 100%;
}
.banner-wrapper .banner-content-wrap {
  position: absolute;
  width: 100%;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.banner-wrapper .banner-content-wrap h3 {
  position: relative;
  width: 100%;
  color: #fff;
  font-size: 65px;
  font-family: "Lexend", sans-serif;
  margin-bottom: 10px;
}
.banner-wrapper .banner-content-wrap p {
  position: relative;
  width: 100%;
  color: #fff;
  font-size: 22px;
  margin-bottom: 10px;
}
.banner-wrapper .banner-content-wrap ul {
  position: relative;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
}
.banner-wrapper .banner-content-wrap ul li {
  padding: 10px 10px;
}

/*Banner css end*/
/**/
.banner-bottom-wrapper {
  position: relative;
  width: 100%;
  padding: 60px 0px;
}

.banner-bottom-doc-slider .slick-track {
  display: flex;
  flex-wrap: wrap;
}

.banner-bottom-doc-slider .banner-bottom-sld-items {
  padding: 10px;
  min-height: auto;
  height: auto;
}

.bnr-doc-wrap {
  position: relative;
  width: 100%;
  height: 100%;
  padding: 15px 15px;
  border: 1px solid #4F5955;
  border-bottom: 3px solid #000000;
  border-radius: 5px;
}
.bnr-doc-wrap .icon {
  position: relative;
  width: 200px;
  height: 200px;
  background-color: #000000;
  border-radius: 50%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  margin-bottom: 15px;
}
.bnr-doc-wrap h3 {
  position: relative;
  width: 100%;
  color: #000000;
  font-size: 16px;
  font-family: "Lexend", sans-serif;
  margin-bottom: 5px;
}
.bnr-doc-wrap p {
  position: relative;
  width: 100%;
  color: #585858;
  font-size: 16px;
  margin-bottom: 15px;
  display: -webkit-box;
  line-clamp: 3;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.bnr-doc-wrap .read-btn {
  position: relative;
  color: #000000;
  font-size: 16px;
}
.bnr-doc-wrap .read-btn .arrow {
  width: 45px;
  height: 40px;
  border: 1px solid #4F5955;
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: #4F5955;
}

/*####*/
#banner-bottom-doc-slider .slick-arrow {
  z-index: 9;
  border: 0;
  color: #fff;
  background-color: #000000;
  border: 0px solid #000000;
  font-size: 20px;
  transition: 0.5s;
  width: 55px;
  height: 55px;
  border-radius: 0px;
}

#banner-bottom-doc-slider .slick-arrow:hover {
  color: #fff;
  border-color: #000000;
  background-color: #000000;
  transition: 0.5s;
}

#banner-bottom-doc-slider .slick-arrow.slick-prev {
  position: absolute;
  left: -2%;
  top: 40%;
  transform: translateY(-50%);
}

#banner-bottom-doc-slider .slick-arrow.slick-next {
  position: absolute;
  right: -2%;
  top: 40%;
  transform: translateY(-50%);
}

/**/
/*#### About us css start ###*/
.about-us-wrapper {
  position: relative;
  width: 100%;
  padding: 0px 0px 60px 0px;
}
.about-us-wrapper::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 40%;
  height: 50%;
  background-image: url(../images/dot-map.png);
  background-repeat: no-repeat;
  background-size: 100%;
}

.about-list {
  position: relative;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 20px;
}
.about-list .icon {
  width: 100px;
  height: 100px;
  background-color: #A49152;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
}
.about-list .content {
  width: calc(100% - 100px);
  padding-left: 10px;
}
.about-list .content h4 {
  position: relative;
  width: 100%;
  color: #585858;
  font-size: 20px;
  margin-bottom: 10px;
  font-family: "Lexend", sans-serif;
}
.about-list .content p {
  position: relative;
  width: 100%;
  color: #585858;
  font-size: 16px;
  margin-bottom: 0px;
}

.about-right-wrap {
  position: relative;
  width: 100%;
  z-index: 1;
}
.about-right-wrap .experience-content {
  position: absolute;
  width: 50%;
  background-color: #fff;
  padding: 20px 20px;
  box-shadow: 0px 3px 30px rgba(0, 0, 0, 0.1294117647);
  top: 50%;
  transform: translate(-50%, -50%);
  left: 50%;
  text-align: center;
  border-radius: 5px;
}
.about-right-wrap .experience-content h3 {
  position: relative;
  width: 100%;
  color: #A58865;
  font-size: 85px;
  font-family: "Lexend", sans-serif;
}
.about-right-wrap .experience-content p {
  position: relative;
  width: 100%;
  color: #030200;
  font-size: 20px;
  font-family: "Lexend", sans-serif;
  font-weight: 600;
  margin-bottom: 0px;
}

/*#### About us css end ###*/
/*video-section css start*/
.video-section {
  position: relative;
  width: 100%;
  padding: 80px 0px;
  background-image: url(../images/video-section-bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
}

.video-content {
  position: relative;
  width: 100%;
}
.video-content h3 {
  position: relative;
  width: 100%;
  color: #000000;
  font-size: 50px;
  font-family: "Lexend", sans-serif;
  margin-bottom: 15px;
}
.video-content p {
  position: relative;
  width: 100%;
  color: #585858;
  font-size: 16px;
  margin-bottom: 15px;
}
.video-content .play-btn {
  color: #000000;
  font-size: 16px;
}
.video-content .play-btn img {
  width: 50px;
  margin-right: 10px;
}

/*video-section css end*/
/*services-wrapper css start*/
.services-wrapper {
  position: relative;
  width: 100%;
  padding: 50px 0px 0px 0px;
}

.services-list:nth-child(4n+0) .services-wrap {
  flex-direction: row-reverse;
}

.services-list:nth-child(4n-1) .services-wrap {
  flex-direction: row-reverse;
}

.services-wrap {
  position: relative;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  background-color: #000000;
}
.services-wrap .services-img {
  position: relative;
  width: 50%;
}
.services-wrap .services-img img {
  position: relative;
  width: 100%;
}
.services-wrap .services-content {
  position: relative;
  width: 50%;
  padding: 15px;
}
.services-wrap .services-content h3 {
  position: relative;
  width: 100%;
  color: #fff;
  font-size: 35px;
  font-family: "Lexend", sans-serif;
  margin-bottom: 10px;
}
.services-wrap .services-content p {
  position: relative;
  width: 100%;
  color: #fff;
  font-size: 16px;
  margin-bottom: 15px;
}
.services-wrap .services-content .read {
  color: #fff;
  font-size: 16px;
}

/*services-wrapper css end*/
/*reviews-services-wrapper css*/
.reviews-services-wrapper {
  position: relative;
  width: 100%;
  padding: 60px 0px;
  background-color: #000000;
}
.reviews-services-wrapper .comon-title h3 {
  color: #fff;
}
.reviews-services-wrapper .comon-title p {
  color: #fff;
}
.reviews-services-wrapper:before {
  content: "";
  position: absolute;
  height: 50%;
  width: 50%;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background-image: url(../images/dot-map.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  opacity: 0.2;
}

.reviews-services-list {
  position: relative;
  width: 100%;
  text-align: center;
  padding: 10px 10px;
}
.reviews-services-list .icon {
  position: relative;
  width: 120px;
  height: 120px;
  background-color: #fff;
  border-radius: 50%;
  margin: 0 auto;
  margin-bottom: 15px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}
.reviews-services-list h3 {
  position: relative;
  width: 100%;
  color: #fff;
  font-size: 30px;
  margin-bottom: 15px;
}
.reviews-services-list p {
  position: relative;
  width: 100%;
  color: #fff;
  font-size: 16px;
  margin-bottom: 10px;
}

/*reviews-services-wrapper css end*/
/*### testimonial slider css start ###*/
.testimonials-wrapper {
  position: relative;
  width: 100%;
  padding: 60px 0px 60px 0px;
}

.testimonial-content-wrap {
  position: relative;
  width: 100%;
  text-align: center;
}
.testimonial-content-wrap p {
  position: relative;
  width: 100%;
  color: #000000;
  font-size: 16px;
  margin-bottom: 10px;
}

.testimonial-thumbnail-sld-items {
  padding: 0px 15px;
}

.testimonial-auth-wrap {
  position: relative;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  padding: 15px 15px;
  border-top: 2px solid #E3E3E3;
}
.testimonial-auth-wrap .auth-img {
  position: relative;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  overflow: hidden;
}
.testimonial-auth-wrap .auth-details {
  position: relative;
  width: calc(100% - 35px);
  padding-left: 10px;
}

.testimonial-thumbnail-sld-items.slick-center .testimonial-auth-wrap {
  border-top: 2px solid #000000;
}

#testimonial-thumbnail-slider .slick-dots {
  position: relative;
  width: 100%;
  margin-bottom: 0;
  display: flex;
  padding: 15px 0px;
  justify-content: center;
  line-height: 0;
}
#testimonial-thumbnail-slider .slick-dots li {
  padding: 0px 5px;
}
#testimonial-thumbnail-slider .slick-dots li button {
  font-size: 0px;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background-color: transparent;
  border: 1px solid #585858;
  line-height: 0;
  padding: 0;
  transition-duration: 300ms;
  transition-timing-function: cubic-bezier(0.35, 0, 0.5, 1);
}
#testimonial-thumbnail-slider .slick-dots li.slick-active button {
  width: 15px;
  height: 15px;
  border-radius: 8px;
  background-color: #000000;
}

/*### testimonial slider css end ###*/
/*### map-section css start ####*/
.map-section-wrapper {
  position: relative;
  width: 100%;
}
.map-section-wrapper .map-wrap {
  position: relative;
  width: 100%;
}
.map-section-wrapper .map-wrap img {
  position: relative;
  width: 100%;
  height: 680px;
  -o-object-fit: cover;
     object-fit: cover;
}
.map-section-wrapper .map-wrap iframe {
  position: relative;
  width: 100%;
  height: 680px;
  -o-object-fit: cover;
     object-fit: cover;
  -moz-filter: grayscale(100%);
  -ms-filter: grayscale(100%);
  -o-filter: grayscale(100%);
  filter: grayscale(100%);
}
.map-section-wrapper .contact-info-wrap {
  position: absolute;
  width: 100%;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.map-section-wrapper .contact-info-wrap .contact-info {
  position: relative;
  width: 100%;
  background-color: #fff;
}
.map-section-wrapper .contact-info-wrap .contact-info-list {
  position: relative;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  height: 100%;
  align-items: center;
  padding: 15px 15px;
  border-right: 1px solid #D8D8D8;
  border-bottom: 1px solid #D8D8D8;
}
.map-section-wrapper .contact-info-wrap .contact-info-list .icon {
  position: relative;
  width: 70px;
  height: 70px;
  background-color: #A49152;
  border-radius: 50%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  font-size: 25px;
  color: #fff;
}
.map-section-wrapper .contact-info-wrap .contact-info-list .info {
  position: relative;
  width: calc(100% - 70px);
  padding-left: 10px;
}
.map-section-wrapper .contact-info-wrap .contact-info-list .info h4 {
  position: relative;
  width: 100%;
  color: #000000;
  font-size: 20px;
  font-weight: 600;
  font-family: "Lexend", sans-serif;
  margin-bottom: 5px;
}
.map-section-wrapper .contact-info-wrap .contact-info-list .info p {
  position: relative;
  width: 100%;
  color: #585858;
  font-size: 16px;
  margin-bottom: 10px;
}
.map-section-wrapper .contact-info-wrap .contact-info-list .info p a {
  color: #585858;
}

/*### map-section css end ####*/
/*#### blog css start ###*/
.blog-wrapper {
  position: relative;
  width: 100%;
  padding: 60px 0px;
}

.blog-sld-items {
  position: relative;
  padding: 0px 15px;
}

.blog-wrap {
  position: relative;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.blog-wrap .blog-img {
  position: relative;
  width: 55%;
}
.blog-wrap .blog-content {
  position: relative;
  width: 45%;
  padding-left: 15px;
}
.blog-wrap .blog-content h4 {
  position: relative;
  width: 100%;
  color: #000000;
  font-size: 20px;
  font-family: "Lexend", sans-serif;
  margin-bottom: 10px;
}
.blog-wrap .blog-content p {
  position: relative;
  width: 100%;
  color: #585858;
  font-size: 16px;
  margin-bottom: 10px;
}
.blog-wrap .blog-content .blog-read-btn {
  color: #000000;
  font-size: 16px;
}
.blog-wrap .blog-content .blog-read-btn i {
  transform: rotate(-45deg);
  margin-left: 10px;
}

#blog-slider .slick-dots {
  position: relative;
  width: 100%;
  margin-bottom: 0;
  display: flex;
  padding: 25px 0px 15px 0px;
  justify-content: center;
  line-height: 0;
}
#blog-slider .slick-dots li {
  padding: 0px 5px;
}
#blog-slider .slick-dots li button {
  font-size: 0px;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background-color: transparent;
  border: 1px solid #585858;
  line-height: 0;
  padding: 0;
  transition-duration: 300ms;
  transition-timing-function: cubic-bezier(0.35, 0, 0.5, 1);
}
#blog-slider .slick-dots li.slick-active button {
  width: 15px;
  height: 15px;
  border-radius: 8px;
  background-color: #000000;
}

/*#### blog css end ###*/
/*###### Footer css start #####*/
.footer-wrapper {
  position: relative;
  width: 100%;
  padding-top: 40px;
  background-color: #000000;
}

.footer-inner-wrap {
  position: relative;
  width: 100%;
}
.footer-inner-wrap h3 {
  position: relative;
  width: 100%;
  color: #fff;
  font-size: 30px;
  margin-bottom: 20px;
  font-family: "Lexend", sans-serif;
}

.footer-menu {
  position: relative;
  width: 100%;
}
.footer-menu ul {
  position: relative;
  width: 100%;
  margin-bottom: 0px;
}
.footer-menu ul li {
  position: relative;
  width: 100%;
  padding: 5px 0px;
}
.footer-menu ul li a {
  color: #fff;
  font-size: 15px;
  transition: all ease-in-out 0.5s;
}
.footer-menu ul li a:hover, .footer-menu ul li a[aria-current=page] {
  color: #A58865;
}

/**/
/*####*/
.newsletter-wrap {
  position: relative;
  width: 100%;
}

.newsletter-wrap p {
  position: relative;
  width: 100%;
  color: #BEBEBE;
  font-size: 15px;
}

.newsletter-frm {
  position: relative;
  display: flex;
  flex-wrap: wrap;
}

.newsletter-frm .input-text {
  position: relative;
  width: calc(100% - 130px);
}

.newsletter-frm .input-text .form-control {
  padding: 10px 10px;
  border-radius: 0px 0px 0px 0px;
  background-color: #fff;
  border: 1px solid #ffffff;
  color: #676360;
  height: 56px;
}

.newsletter-frm .input-text .form-control::-moz-placeholder {
  color: #676360;
}

.newsletter-frm .input-text .form-control::placeholder {
  color: #676360;
}

.newsletter-frm .submit {
  position: relative;
  width: 130px;
}

.newsletter-frm .submit .btn-dark {
  position: relative;
  width: 100%;
  background-color: #A49152;
  border-color: #A49152;
  color: #fff;
  height: 56px;
  padding: 0;
  font-weight: 600;
  border-radius: 0px 0px 0px 0px;
}

/**/
.footer-inner-wrap .contact-det-list {
  position: relative;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.footer-inner-wrap .contact-det-list .icon {
  position: relative;
  width: 30px;
  height: 30px;
  color: #fff;
  font-size: 20px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.footer-inner-wrap .contact-det-list .content {
  position: relative;
  width: calc(100% - 30px);
  padding-left: 5px;
}

.footer-inner-wrap .contact-det-list .content h4 {
  position: relative;
  width: 100%;
  color: #fff;
  font-size: 16px;
  text-transform: uppercase;
  margin-bottom: 5px;
}

.footer-inner-wrap .contact-det-list .content p {
  position: relative;
  font-size: 15px;
  word-break: break-all;
  margin-bottom: 0px;
  color: #fff;
}

.footer-inner-wrap .contact-det-list .content p a {
  color: #fff;
}

/*### */
.social-icon {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.social-icon h4 {
  position: relative;
  color: #646464;
  font-size: 16px;
  margin-bottom: 0px;
}

.social-icon ul {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  padding: 0px 0px;
  padding-left: 0px;
  margin-bottom: 0px;
}

.social-icon ul li {
  position: relative;
  margin-right: 20px;
  display: inline-flex;
}

.social-icon ul li a {
  background-color: transparent;
  color: #fff;
  font-size: 30px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  transition: 0.5s;
  border-radius: 3px;
}

.social-icon ul li a:hover {
  color: #A49152;
  transition: 0.5s;
}

.footer-copright {
  position: relative;
  width: 100%;
  text-align: center;
  padding: 30px 0px;
}
.footer-copright p {
  position: relative;
  width: 100%;
  color: #FFFFFF;
  font-size: 14px;
  margin-bottom: 0px;
}

/*###### Footer css end #####*/
/*##### Inner banner section css start ####*/
.main-wrapper {
  position: relative;
  width: 100%;
  padding: 60px 0px;
}

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

.inner-banner-wrapper {
  position: relative;
  width: 100%;
}
.inner-banner-wrapper img {
  width: 100%;
  height: 500px;
  -o-object-fit: cover;
     object-fit: cover;
}
.inner-banner-wrapper::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
}
.inner-banner-wrapper::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-image: url(../images/line-shape.png);
  background-repeat: repeat;
  background-position: top;
}
.inner-banner-wrapper .inner-banner-content {
  position: absolute;
  left: 0;
  width: 100%;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
}
.inner-banner-wrapper .inner-banner-content h3 {
  position: relative;
  width: 100%;
  color: #fff;
  font-size: 100px;
  font-family: "Lexend", sans-serif;
  margin-bottom: 15px;
}
.inner-banner-wrapper .inner-banner-content .breadcrumb {
  justify-content: center;
}
.inner-banner-wrapper .inner-banner-content .breadcrumb li {
  padding: 0px 10px;
  color: #fff;
  font-size: 16px;
}
.inner-banner-wrapper .inner-banner-content .breadcrumb li a {
  color: #fff;
}
.inner-banner-wrapper .inner-banner-content .breadcrumb li:first-child::after {
  content: "\f04b";
  font-family: "fontawesome";
  margin-left: 10px;
}

/*##### Inner banner section css end ####*/
/*##### contact-us page css start ####*/
.contact-us-wrapper {
  position: relative;
  width: 100%;
  padding: 60px 0px;
}

.contact-left-wrap {
  position: relative;
  width: 100%;
}
.contact-left-wrap .contact-us-left-inner {
  position: relative;
  width: 100%;
}
.contact-left-wrap .contact-us-left-inner h3 {
  position: relative;
  width: 100%;
  color: #A58865;
  font-size: 25px;
  margin-bottom: 15px;
}
.contact-left-wrap .contact-us-dtl-list {
  position: relative;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.contact-left-wrap .contact-us-dtl-list .icon {
  position: relative;
  width: 100px;
  height: 100px;
  background-color: #000000;
  border-radius: 8px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}
.contact-left-wrap .contact-us-dtl-list .info {
  position: relative;
  width: calc(100% - 100px);
  padding-left: 10px;
}
.contact-left-wrap .contact-us-dtl-list .info h4 {
  position: relative;
  width: 100%;
  color: #000000;
  font-size: 20px;
  font-family: "Lexend", sans-serif;
  margin-bottom: 10px;
}
.contact-left-wrap .contact-us-dtl-list .info p {
  position: relative;
  width: 100%;
  color: #585858;
  font-size: 14px;
  margin-bottom: 5px;
}
.contact-left-wrap .contact-us-dtl-list .info p a {
  color: #585858;
}

.contact-form-wrap {
  position: relative;
  width: 100%;
  padding: 30px 30px;
  background-color: #000000;
  border-radius: 15px;
}
.contact-form-wrap .form-control {
  position: relative;
  width: 100%;
  background-color: transparent;
  padding: 15px 10px;
  border: 1px solid #707070;
  border-radius: 0;
  color: #fff;
}
.contact-form-wrap .form-control::-moz-placeholder {
  color: #C9C9C9;
}
.contact-form-wrap .form-control::placeholder {
  color: #C9C9C9;
}

.contact-us-map-wrapper {
  position: relative;
  width: 100%;
}
.contact-us-map-wrapper img {
  position: relative;
  width: 100%;
}

/*##### contact-us page css end ####*/
/*#### About page css start ###*/
.about-mission-vission-wrapper {
  position: relative;
  width: 100%;
  padding: 0px 0px;
}

.mivi-content-wrap {
  position: relative;
  width: 100%;
  height: 100%;
  background-color: #000000;
  padding: 10% 10%;
  display: flex;
  flex-wrap: wrap;
  align-content: center;
}
.mivi-content-wrap h3 {
  position: relative;
  width: 100%;
  color: #fff;
  font-size: 55px;
  font-family: "Lexend", sans-serif;
  margin-bottom: 15px;
}
.mivi-content-wrap p {
  position: relative;
  width: 100%;
  color: #fff;
  font-size: 16px;
  margin-bottom: 15px;
}

.mivi-img {
  position: relative;
  width: 100%;
}
.mivi-img img {
  position: relative;
  width: 100%;
}

.our-values-wrapper {
  position: relative;
  width: 100%;
  padding: 60px 0px;
}

.values-list {
  position: relative;
  width: 100%;
}
.values-list .values-img {
  position: relative;
  width: 100%;
  border-radius: 0px 50px 0px 50px;
  overflow: hidden;
}
.values-list .values-content {
  position: relative;
  width: 100%;
  padding: 10px 0px;
}
.values-list .values-content h4 {
  position: relative;
  width: 100%;
  color: #000000;
  font-size: 25px;
  font-family: "Lexend", sans-serif;
  margin-bottom: 15px;
}
.values-list .values-content p {
  position: relative;
  width: 100%;
  color: #585858;
  font-size: 16px;
  margin-bottom: 10px;
}

/*#### About page css end ###*/
/*#### career page css start ###*/
.career-banner-bottom-wrapper {
  position: relative;
  width: 100%;
  padding: 60px 0px;
  background-image: url(../images/career-banner-bottom-bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
}
.career-banner-bottom-wrapper .career-banner-bottom-content {
  position: relative;
  width: 100%;
}
.career-banner-bottom-wrapper .career-banner-bottom-content p {
  position: relative;
  width: 100%;
  color: #fff;
  font-size: 16px;
  margin-bottom: 0px;
}
.career-banner-bottom-wrapper::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
}

.work-with-wrapper {
  position: relative;
  width: 100%;
  padding: 60px 0px 0px 0px;
  background-image: url(../images/work-with-bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
}

.work-left-img {
  position: relative;
  width: 100%;
  margin-left: 30px;
  z-index: 1;
}

.work-with-inner-wrap {
  position: relative;
  width: 100%;
  padding: 30px 30px;
  background-color: #000000;
  border-radius: 15px;
  margin-bottom: -40px;
}
.work-with-inner-wrap .title {
  position: relative;
  width: 100%;
}
.work-with-inner-wrap .title h3 {
  position: relative;
  width: 100%;
  color: #fff;
  font-size: 30px;
  font-family: "Lexend", sans-serif;
  margin-bottom: 10px;
}
.work-with-inner-wrap .title p {
  position: relative;
  width: 100%;
  color: #fff;
  font-size: 16px;
  margin-bottom: 10px;
}
.work-with-inner-wrap .work-with-list {
  position: relative;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 15px;
}
.work-with-inner-wrap .work-with-list .icon {
  position: relative;
  width: 80px;
  height: 80px;
  background-color: #A49152;
  border-radius: 8px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  padding: 4px;
}
.work-with-inner-wrap .work-with-list .icon img {
  --ehw-wwlii: 80%;
  width: var(--ehw-wwlii);
  height: var(--ehw-wwlii);
  -o-object-fit: contain;
     object-fit: contain;
}
.work-with-inner-wrap .work-with-list .content {
  position: relative;
  width: calc(100% - 100px);
  padding-left: 10px;
}
.work-with-inner-wrap .work-with-list .content h5 {
  position: relative;
  width: 100%;
  color: #fff;
  font-size: 18px;
  font-family: "Lexend", sans-serif;
  font-weight: 600;
  margin-bottom: 5px;
}
.work-with-inner-wrap .work-with-list .content p {
  position: relative;
  width: 100%;
  color: #fff;
  font-size: 14px;
  margin-bottom: 5px;
}

.work-with-bottom-section {
  position: relative;
  width: 100%;
  padding: 80px 0px 40px 0px;
  background-color: #000000;
}
.work-with-bottom-section h5 {
  position: relative;
  width: 100%;
  color: #fff;
  font-size: 30px;
  font-weight: 600;
  margin-bottom: 0px;
}

.current-openings-wrapper {
  position: relative;
  width: 100%;
  padding: 60px 0px;
}
.current-openings-wrapper .form-group {
  position: relative;
  width: 100%;
}
.current-openings-wrapper .form-group h5 {
  position: relative;
  width: 100%;
  color: #000000;
  font-size: 18px;
  font-family: "Lexend", sans-serif;
  margin-bottom: 10px;
}
.current-openings-wrapper .form-group .form-control, .current-openings-wrapper .form-group .form-select {
  position: relative;
  width: 100%;
  border: 1px solid #D5D5D5;
  border-radius: 0;
  padding: 15px 10px;
}
.current-openings-wrapper .form-group.location .form-group-inner {
  position: relative;
  width: 100%;
}
.current-openings-wrapper .form-group.location .form-group-inner::before {
  content: "";
  background-image: url(../images/location-icon.png);
  background-repeat: no-repeat;
  background-position: 6px;
  background-size: auto;
  width: 30px;
  height: 30px;
  position: absolute;
  left: 0;
  top: 50%;
  z-index: 1;
  transform: translateY(-50%);
}
.current-openings-wrapper .form-group.location .form-group-inner .form-select {
  padding-left: 35px;
}
.current-openings-wrapper .form-group.role-type .form-group-inner {
  position: relative;
  width: 100%;
}
.current-openings-wrapper .form-group.role-type .form-group-inner::before {
  content: "";
  background-image: url(../images/job-role-icon.png);
  background-repeat: no-repeat;
  background-position: 6px;
  background-size: contain;
  width: 30px;
  height: 30px;
  position: absolute;
  left: 0;
  top: 50%;
  z-index: 1;
  transform: translateY(-50%);
}
.current-openings-wrapper .form-group.role-type .form-group-inner .form-select {
  padding-left: 35px;
}

.job-listing {
  position: relative;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  padding: 15px 15px;
  box-shadow: 0px 10px 15px rgba(0, 0, 0, 0.3);
  border-radius: 15px;
  margin-bottom: 25px;
}
.job-listing .job-title {
  position: relative;
  width: calc(100% - 200px);
  padding-right: 10px;
}
.job-listing .job-title h4 {
  position: relative;
  width: 100%;
  font-size: 25px;
  color: #000000;
  font-family: "Lexend", sans-serif;
  margin-bottom: 0px;
}
.job-listing .apply-btn {
  position: relative;
  width: 200px;
}
.job-listing .apply-btn .btn-warning {
  position: relative;
  width: 100%;
}

.careers-bottom-info-wrapper {
  position: relative;
  width: 100%;
  padding: 100px 0px;
  background-color: #090a0e;
  background-image: url(../images/careers-bottom-info-bg.jpg);
  background-repeat: no-repeat;
  background-size: auto 100%;
}
.careers-bottom-info-wrapper p {
  position: relative;
  width: 100%;
  color: #fff;
  font-size: 20px;
  margin-bottom: 0px;
}
.careers-bottom-info-wrapper p a {
  color: #A58865;
}

/*#### career page css end ###*/
/*#### Career details css start ###*/
.career-details-wrapper {
  position: relative;
  width: 100%;
  padding: 60px 0px;
}

.left-sidebar {
  position: relative;
  width: 100%;
}

.job-information-wrap {
  position: relative;
  width: 100%;
  border: 1px solid #E5E5E5;
  border-radius: 10px;
}
.job-information-wrap .title {
  position: relative;
  width: 100%;
  padding: 15px 15px;
  border-bottom: 1px solid #E5E5E5;
}
.job-information-wrap .title h3 {
  position: relative;
  width: 100%;
  color: #A58865;
  font-size: 25px;
  font-family: "Lexend", sans-serif;
  margin-bottom: 0;
}
.job-information-wrap .job-information-inner {
  position: relative;
  width: 100%;
  padding: 15px 15px;
}
.job-information-wrap .job-information-inner .job-info-list {
  position: relative;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  padding: 15px 0px;
}
.job-information-wrap .job-information-inner .job-info-list .icon {
  position: relative;
  width: 50px;
}
.job-information-wrap .job-information-inner .job-info-list .info {
  position: relative;
  width: calc(100% - 50px);
  padding-left: 10px;
}
.job-information-wrap .job-information-inner .job-info-list .info h4 {
  position: relative;
  width: 100%;
  color: #000000;
  font-size: 20px;
  margin-bottom: 6px;
}
.job-information-wrap .job-information-inner .job-info-list .info h5 {
  position: relative;
  width: 100%;
  color: #A58865;
  font-size: 20px;
  margin-bottom: 6px;
}

.apply-through-wrap {
  position: relative;
  width: 100%;
}
.apply-through-wrap h3 {
  position: relative;
  width: 100%;
  color: #A58865;
  font-size: 25px;
  font-family: "Lexend", sans-serif;
  margin-bottom: 20px;
}
.apply-through-wrap .apply-through-logo {
  position: relative;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
}
.apply-through-wrap .apply-through-logo li {
  position: relative;
  margin-right: 10px;
  margin-bottom: 10px;
}

.job-description-wrap {
  position: relative;
  width: 100%;
}
.job-description-wrap h4 {
  position: relative;
  width: 100%;
  color: #A58865;
  font-size: 25px;
  font-family: "Lexend", sans-serif;
  margin-bottom: 15px;
}
.job-description-wrap p {
  position: relative;
  width: 100%;
  color: #585858;
  font-size: 16px;
  margin-bottom: 10px;
}
.job-description-wrap ul {
  position: relative;
  width: 100%;
}
.job-description-wrap ul li {
  position: relative;
  width: 100%;
  padding: 5px 0px;
  padding-left: 25px;
  color: #585858;
  font-size: 16px;
}
.job-description-wrap ul li::before {
  content: "\f061";
  font-family: "fontawesome";
  position: absolute;
  left: 0;
  transform: rotate(45deg);
}

/*#### Career details css end ###*/
/*##### Career apply form css start ###*/
:root {
  --open-sans-font: "Open Sans", sans-serif;
  --rubik-font: "Rubik", sans-serif;
  --font-awesome: "Font Awesome 6 free";
  --bootstrap-icon: "bootstrap-icons";
  --transition-05s: all ease-in-out 0.5s;
  --main-color: 235, 202, 40; /* rgba(235, 202, 40, 1) */
  --second-color: 228, 247, 254; /* rgba(228, 247, 254, 1) */
  /* --third-color: 241, 241, 241; /* rgba(241, 241, 241, 1) */
  --white-color: 255, 255, 255;
  --black-color: 0, 0, 0;
}

.careers-form-section {
  position: relative;
  width: 100%;
  padding: 60px 0px;
}

.cf-main {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 2px 2px 35px -2px rgba(var(--black-color), 0.1);
}

.cf-title-box {
  background: #A49152;
  color: #fff;
  padding: 25px 30px;
  text-align: center;
}

.cf-title, .cf-title-box h2 {
  font-family: var(--rubik-font);
  margin-bottom: 0px;
  font-size: 30px;
  font-weight: 500;
}

.cf-form-box {
  padding: 50px 55px;
}

.cfar-file {
  background: #fff;
  color: #000000;
  box-shadow: 0px 0px 30px -2px rgba(235, 202, 40, 0.7);
  transition: all 0.5s;
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  font-weight: 600;
  font-size: 17px;
  font-family: "Lexend", sans-serif;
  padding: 15px 25px;
  text-transform: uppercase;
  cursor: pointer;
}

.cfar-file .wpcf7-not-valid-tip {
  position: absolute;
  width: 100%;
  width: -moz-max-content;
  width: max-content;
  font-size: 12px;
  bottom: -14px;
}

.cfar-file:hover {
  background: #A49152;
  color: #fff;
}

.cfar-file > input[type=file] {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
}

.accordion-item.psedns-box, .accordion-item.psedns-box:not(:first-of-type) {
  margin-top: 30px;
  background: #F5F5F5;
  border: 1px solid #D8D8D8;
  border-radius: 8px;
}

.accordion-body.psedns-form-body, .accordion-item.psedns-box .accordion-header .accordion-button {
  padding: 15px 20px;
}

.accordion-body.psedns-form-body {
  padding-bottom: 40px;
}

.accordion-item.psedns-box .accordion-header .accordion-button {
  background: rgba(var(--black-color), 0);
  outline: none;
  box-shadow: none;
  font-size: 20px;
  font-weight: 500;
  font-family: var(--rubik-font);
  color: rgba(var(--black-color), 1);
  cursor: default;
}

.accordion-item.psedns-box .accordion-header span {
  display: block;
  color: rgba(var(--black-color), 0.7);
  padding: 0px 20px 12px;
  font-size: 14px;
  margin-top: -10px;
  font-family: var(--rubik-font);
}

.accordion-item.psedns-box .accordion-header .accordion-button[data-bs-toggle=collapse] {
  cursor: pointer;
}

.accordion-item.psedns-box .accordion-header .accordion-button::after {
  display: none;
}

.accordion-item.psedns-box .accordion-header .accordion-button[data-bs-toggle=collapse]::after {
  display: block;
  content: "\f105";
  font-family: var(--font-awesome);
  font-weight: 600;
  background-image: none;
  color: #fff;
  background: #A49152;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
  --ehw-ppa-btn: 40px;
  width: calc(var(--ehw-ppa-btn) * 1.6);
  height: var(--ehw-ppa-btn);
}

.accordion-item.psedns-box .accordion-header .accordion-button:not(.collapsed)::after {
  transform: rotate(0deg);
  content: "\f107";
}

.psedns-form-body .input-div .css-text {
  background: #A49152;
  color: #fff;
  border-radius: 8px;
  width: 70px;
  font-size: 18px;
  height: 40px;
}

#addinput {
  display: flex;
  flex-direction: column-reverse;
  gap: 15px;
}

.psedns-form-body .input-div, #addinput .form-box {
  margin: 0px;
}

.psedns-form-body .input-div input[type=date].form-control::-webkit-calendar-picker-indicator {
  filter: invert(0);
}

.accordion-body.psedns-form-body label.d-inline-flex {
  cursor: pointer;
}

.accordion-body.psedns-form-body .form-box .common-btn {
  margin-top: 0px;
}

.accordion-body.psedns-form-body .form-box .common-btn::after {
  display: none;
}

.accordion-body.psedns-form-body .form-box .common-btn::before {
  content: "+";
  transform: rotate(0deg);
}

.captcha-box {
  margin-top: 28px;
}

.captcha-box > *, .captcha-box iframe {
  width: 100%;
  width: auto;
}

.cgshfc-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-items: center;
  justify-content: flex-start;
  gap: 40px 10px;
  margin-top: 40px;
}

.cgshfc-list li {
  border-left: 2px solid rgba(var(--main-color), 1);
  padding-left: 10px;
}

.cgshfc-list li span {
  font-family: var(--open-sans-font);
  display: block;
  color: rgba(var(--black-color), 0.7);
  font-weight: 700;
  font-size: 13px;
  line-height: 1;
  margin-bottom: 6px;
}

.cgshfc-list li p {
  font-family: var(--rubik-font);
  margin-bottom: 0px;
  font-weight: 700;
  font-size: 15px;
  line-height: 1;
}

.contact-form-box {
  border-top: 5px solid rgba(var(--main-color), 1);
  border-radius: 8px;
  box-shadow: 2px 2px 35px -2px rgba(var(--black-color), 0.1);
  background: rgba(var(--white-color), 1);
  padding: 30px;
  margin-top: -400px;
  position: relative;
  z-index: 1;
}

.contact-form-box .common-box {
  text-align: center;
}

.csf-box {
  margin-top: 30px;
}

.csf-box .input-div {
  margin-top: 0px;
}

.input-div .form-control, .input-div .form-select {
  background-color: rgba(var(--black-color), 0);
  border: none;
  box-shadow: none;
  padding: 5px 5px;
  color: rgba(var(--black-color), 0.9);
  min-height: 40px;
  font-size: 15px;
  /* appearance: auto; */
}

.input-div .form-control::-moz-placeholder, .input-div .form-select::-moz-placeholder {
  color: rgba(var(--black-color), 0.9);
}

.input-div .form-control::placeholder, .input-div .form-select::placeholder, .input-div .form-control[type=date] {
  color: rgba(var(--black-color), 0.9);
}

.input-div {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  margin-top: 10px;
  width: 100%;
  background-color: #fff;
  border: 1px solid #B9B9B9;
  border-radius: 6px;
  padding: 8px;
}

.input-div .css-text {
  text-transform: uppercase;
  font-size: 22px;
  background: rgba(var(--main-color), 0);
  color: rgba(var(--main-color), 1);
  padding: 6px 6px;
  font-weight: 600;
  line-height: 1;
  border-radius: 50px;
  margin-top: 0;
  border: none;
  transition: var(--transition-05s);
}

.input-div .css-text:hover {
  color: rgba(var(--black-color), 1);
}

.cf-main .row {
  gap: 24px 0px;
}

/*##### Career apply form css end ###*/
/*######### Blog details page css start ########*/
.single-post .inner-banner-wrapper .inner-banner-content h3 {
  font-size: 60px;
}

.blog-details-wraper {
  position: relative;
  width: 100%;
  padding: 40px 0px;
}

.blog-single-wraper {
  position: relative;
  width: 100%;
}

.blog-single-wraper h1 {
  position: relative;
  width: 100%;
  color: #000000;
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 10px;
}

.blog-single-wraper .entry-meta {
  position: relative;
  width: 100%;
  margin-bottom: 15px;
  font-size: 14px;
  color: #0d1d31;
}

.blog-single-wraper .entry-meta a {
  color: #3f56d6;
}

.blog-single-wraper .blog-img {
  position: relative;
  width: 100%;
  overflow: hidden;
  margin-bottom: 15px;
}

.blog-single-wraper .blog-img img {
  width: 100%;
  transform: scale(1);
  transition: 0.5s;
}

.blog-single-wraper .blog-img:hover img {
  transform: scale(1.1);
  transition: 0.5s;
}

.blog-single-wraper .blog-img .blog-date {
  position: absolute;
  bottom: 0px;
  right: 0;
  padding: 5px 15px;
  background-color: #A49152;
  text-align: center;
}

.blog-single-wraper .blog-img .blog-date p {
  position: relative;
  margin-bottom: 0px;
  color: #ffffff;
  font-size: 14px;
  font-weight: 500;
}

.blog-single-wraper p {
  position: relative;
  width: 100%;
  font-size: 14px;
  color: #0d1d31;
  margin-bottom: 10px;
}

.social-icon.blog-social {
  margin-top: 20px;
  margin-bottom: 20px;
  padding-top: 10px;
}

.social-icon.blog-social:before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 30px;
  height: 3px;
  background-color: rgba(0, 0, 0, 0.1);
}

.social-icon.blog-social ul li a {
  color: #13253b;
  transition: 0.5s;
}

.social-icon.blog-social ul li a:hover {
  color: #3f56d6;
  transition: 0.5s;
}

.blog-prev-next-wraper {
  position: relative;
  width: 100%;
  padding: 10px 0px;
  margin-bottom: 20px;
  border-top: 1px solid #ededed;
  border-bottom: 1px solid #ededed;
}

.blog-prev-next-wraper a {
  color: #666666;
  font-size: 14px;
}

.blog-prev-next-wraper a .fa {
  padding: 0px 5px;
}

.comment-respond {
  position: relative;
  width: 100%;
  background-color: #f3f3f3;
  padding: 20px 20px;
  border-radius: 5px;
}

.comment-respond > h3 {
  position: relative;
  width: 100%;
  color: #666666;
  font-size: 22px;
  margin-bottom: 15px;
}

.comment-respond .comment-form label {
  position: relative;
  color: #000;
  font-size: 16px;
}

.comment-respond .comment-form .form-control {
  background-color: #fff;
  border: 1px solid #ced4da;
  transition: 0.5s;
}

.comment-respond .comment-form .form-control:focus {
  box-shadow: none;
  border-color: #0d1d31;
  transition: 0.5s;
}

/*###### blog sidebar css start #######*/
.blog-sidebar {
  position: relative;
  width: 100%;
  height: 100%;
  border-left: 1px solid #ededed;
  padding: 0px 15px;
}

.blog-sidebar-title {
  position: relative;
  width: 100%;
  color: #000000;
  font-size: 18px;
  margin-bottom: 20px;
  padding-bottom: 10px;
  font-weight: 600;
  text-transform: uppercase;
}

.blog-sidebar-title:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0%;
  width: 30px;
  height: 3px;
  background-color: rgba(0, 0, 0, 0.1);
}

.recent-posts {
  position: relative;
  width: 100%;
  margin-bottom: 15px;
}

.recent-posts .recent-posts-list {
  position: relative;
  width: 100%;
  display: block;
  margin-bottom: 0px;
}

.recent-posts .recent-posts-list li {
  position: relative;
  width: 100%;
  display: block;
  margin-bottom: 10px;
  padding: 5px 0px;
  border-bottom: 1px solid #ededed;
}

.recent-posts .recent-posts-list li:last-child {
  border-bottom: 0px;
}

.recent-posts .blog-posts-wrap {
  position: relative;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
}

.recent-posts .blog-posts-wrap .blog-img {
  position: relative;
  width: 50px;
  height: 50px;
  margin-right: 5px;
}

.recent-posts .blog-posts-wrap .blog-img img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.recent-posts .blog-posts-wrap .blog-right-text {
  position: relative;
  width: calc(100% - 55px);
}

.recent-posts .blog-posts-wrap .blog-right-text h5 {
  position: relative;
  width: 100%;
  color: #000000;
  font-size: 14px;
  margin-bottom: 3px;
  font-weight: 600;
  text-transform: uppercase;
}

.recent-posts .blog-posts-wrap .blog-right-text h5 a {
  color: #000000;
}

.recent-posts .blog-posts-wrap .blog-right-text p {
  position: relative;
  color: #000;
  font-size: 14px;
}

.recent-posts .blog-posts-wrap .blog-right-text p a {
  color: #666666;
}

.recent-comment {
  position: relative;
  width: 100%;
  margin-bottom: 15px;
}

.recent-comment ul {
  position: relative;
  display: block;
  width: 100%;
  margin-bottom: 0px;
}

.recent-comment ul li {
  position: relative;
  width: 100%;
  display: block;
  padding: 5px 0px;
  padding-left: 12px;
  font-size: 14px;
  color: #666666;
  margin-bottom: 10px;
  border-bottom: 1px solid #ededed;
}

.recent-comment ul li a {
  color: #666666;
}

.recent-comment ul li:after {
  content: "\f105";
  font-size: 15px;
  font-family: "Fontawesome";
  position: absolute;
  top: 5px;
  left: 0px;
}

.recent-comment ul li:last-child {
  border-bottom: 0px;
}

/*######### Blog details page css end ########*/
/*###### Services details css start ####*/
.strategy-hub-wrapper {
  position: relative;
  width: 100%;
  padding: 60px 0px;
}

.shadow-img {
  position: relative;
  width: 80%;
  margin-left: auto;
}
.shadow-img img {
  position: relative;
  width: 100%;
}
.shadow-img::before {
  content: "";
  position: absolute;
  left: -30px;
  bottom: -30px;
  width: 100%;
  height: 100%;
  background-color: #A49152;
}

.comon-srv-dtls-content1 {
  position: relative;
  width: 100%;
}
.comon-srv-dtls-content1 h3 {
  position: relative;
  width: 100%;
  color: #000000;
  font-size: 40px;
  font-family: "Lexend", sans-serif;
  font-weight: 600;
  margin-bottom: 15px;
}
.comon-srv-dtls-content1 p {
  position: relative;
  width: 100%;
  color: #585858;
  font-size: 16px;
  margin-bottom: 15px;
}

.marketing-excellence-wrapper {
  position: relative;
  width: 100%;
  padding: 0px 0px;
  background-color: #000000;
}

.comon-srv-dtls-content2 {
  position: relative;
  width: 100%;
  padding: 30px 30px;
  color: #fff;
}
.comon-srv-dtls-content2 h3 {
  position: relative;
  width: 100%;
  color: #fff;
  font-size: 40px;
  font-family: "Lexend", sans-serif;
  font-weight: 600;
  margin-bottom: 15px;
}
.comon-srv-dtls-content2 p {
  position: relative;
  width: 100%;
  color: #fff;
  font-size: 16px;
  margin-bottom: 15px;
}

/*###### Services details css end ####*/
/*#### faq-wrapper ###*/
.faq-wrapper {
  position: relative;
  width: 100%;
  padding: 60px 0px;
}

.faq-wrap {
  position: relative;
  width: 100%;
}
.faq-wrap .accordion-item {
  position: relative;
  width: 100%;
  margin-bottom: 15px;
}

.faq-wrapper .accordion-button {
  position: relative;
  color: #000;
  font-size: 18px;
  box-shadow: none;
  padding-right: 42px;
}

.faq-wrapper .accordion-button::after {
  content: "+";
  font-family: "fontawesome";
  background-color: #A58865;
  color: #fff;
  width: 40px;
  height: 100%;
  position: absolute;
  right: 0;
  top: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  background-image: none;
}

.faq-wrapper .accordion-button:not(.collapsed)::after {
  content: "\f068";
  transform: rotate(0);
  font-family: "fontawesome";
}

.faq-wrapper .accordion-button:not(.collapsed) {
  background-color: #A49152;
  color: #ffffff;
}

/*#### faq-wrapper css end ###*/
/*#### change 24.07.2024 css start ###*/
.contact-form-wrap .wpcf7-not-valid-tip, .contact-form-wrap .wpcf7 form .wpcf7-response-output {
  color: #A58865 !important;
}

.workWith-ListWrap {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0px 15px;
}

/* new add css */
#addinput .form-box .input-div .wpcf7-form-control-wrap {
  width: calc(100% - 70px);
}

#addinput .form-box .input-div .btn.css-text {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}

.input-div > p {
  width: 100%;
  margin: 0;
}

.cfar-file #ar-file-upload {
  opacity: 0;
  visibility: hidden;
  width: 0;
  padding: 0;
}

.psedns-form-body .form-box .form-check {
  padding-left: 0;
}

.psedns-form-body .form-box .form-check .first {
  padding-left: 0;
  margin-left: 0;
}

/* new add css end */
.services-top-content-wrapper {
  position: relative;
  width: 100%;
  padding: 60px 0px 0px 0px;
}

/*#### change 24.07.2024 css end ###*//*# sourceMappingURL=style.css.map */
 
.map-container {
/* 	padding: 3.2rem 0.8rem; */
	position: relative;
	display: inline-block;
}
.map-container img {
 	width: 100%;
}
.map-container .point {
	cursor: pointer;
	position: absolute;
	width: 0.8rem;
	height: 0.8rem;
	background-color: rgba(255, 0, 0, 1);
	border-radius: 50%;
	transition: all 0.3s ease;
	will-change: transform, box-shadow;
	transform: translate(-50%, -50%);
	box-shadow: 0 0 0 rgba(255, 0, 0, 0.4);
	animation: pulse 3s infinite;
}
.map-container .point:hover {
	animation: none;
/* 	transform: translate(-50%, -50%) scale3D(1.35, 1.35, 1); */
	box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
}

@keyframes pulse {
	0% {
    	box-shadow: 0 0 0 0 rgba(255, 0, 0, 0.5);
  	}
  	70% {
   		box-shadow: 0 0 0 25px rgba(255, 0, 0, 0);
  	}
  	100% {
    	box-shadow: 0 0 0 0 rgba(255, 0, 0, 0);
  	}
}
