* {
  padding: 0px;
  margin: 0px;
  box-sizing: border-box;
}
body {
  font-family: "Poppins";
}

a {
  text-decoration: none;
}

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

@font-face {
  font-family: "Poppins";
  src: url("../fonts/Poppins-Light.eot");
  src: url("../fonts/Poppins-Light.eot?#iefix") format("embedded-opentype"),
    url("../fonts/Poppins-Light.woff2") format("woff2"),
    url("../fonts/Poppins-Light.woff") format("woff"),
    url("../fonts/Poppins-Light.ttf") format("truetype"),
    url("../fonts/Poppins-Light.svg#Poppins-Light") format("svg");
  font-weight: 300;
  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-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-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-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;
}

.wrapper{margin-top:80px;}
.wrapper-last{margin-bottom:80px;}
h5, p{margin-bottom:0px;}

/* top-bar */

.top-bar{
  background:#b5cddf;
  padding:13px 0px;
}

.top-right {
    display: flex;
    justify-content: end;
    gap: 30px;
}

.icon-bg{vertical-align:text-bottom;}

.top-right li span{margin-right:7px;}

.top-right li a{
  color:#282828;
	font-weight:600;
}
.menu-bar{background:#fff;box-shadow:2px 2px 3px 2px #0000000f;}
.logo img{
	margin:3px;
}
.menu ul li {
  margin: 0px 15px;
  position: relative;
}
.menu ul li a {
  padding: 50px 0px;
  display: block;
  color: #000000;
  font-size: 16px;
  font-weight: 500;
}

.menu ul li .active {
  color: #000;
  font-weight:700;
}

.menu ul li a:hover {
  color: #000;
}

.menu ul li a:before {
  position: absolute;
  content: "";
  top:0px;
  left: 0;
  width: 100%;
  height: 4px;
  background: #e6c2d2;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.5s;
}

.menu ul li a.active:before,
.menu .current-menu-item a:before, .current-menu-parent a:before {
  transform: scaleX(1) !important;
}

.sub-menu li a:before, .current_page_item a:before, .sub-menu .current-menu-item a:before{
	transform: scaleX(0) !important;
}


.menu-bar ul li a:hover:before {
  transform: scaleX(1);
  transform-origin: left;
}

.menu-button {
  margin-top: 7px;
  float: right;
}

.menu-button .view-more{
	padding:10px 36px;
}

.menu-bar.is-sticky {
  position: fixed;
  width: 100%;
  z-index: 100;
  top: 0;
  background: #fff;
  box-shadow: 0 5px 16px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(10px);
  animation: slideDown 0.35s ease-out;
}

.fixed-top {
  background:#fff;
  transition: all 0.5s ease-in-out;
  animation: slideDown 0.7s ease-in-out;
	box-shadow:2px 2px 3px 2px #0000000f;
}

.fixed-top .logo{padding:0px;background:inherit;top:5px;}

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

  to {
    transform: translateY(0);
  }
}

.sub-menu::-webkit-scrollbar-track
{
	-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
	border-radius: 10px;
	background-color: #F5F5F5;
}

.sub-menu::-webkit-scrollbar
{
	width: 5px;
	background-color: #F5F5F5;
}

.sub-menu::-webkit-scrollbar-thumb
{
	border-radius: 10px;
	-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,.3);
	background-color: #555;
}

/* banner */

.banner{
 background:#b5cddf;
 padding:100px 0px;
 height:100%;
 position:relative;
 height:662px;
 overflow:hidden;
}
.banner-right img {
    position: absolute;
    top: 0px;
    right: 16%;
    transform: translate(50%, 0px);
    z-index: 1;
    width: 68%;
    height: 662px;
    object-fit: cover;
}
.banner-top-text {
    color: #2d2d2d;
    font-size: 33px;
    font-weight: 700;
    background: rgb(234, 196, 213);
    background: linear-gradient(86deg, rgba(234, 196, 213, 0.6727065826330532) 0%, rgb(245 226 234 / 8%) 44%, rgba(255, 255, 255, 0) 100%);
    padding: 13px 24px;
    border-radius: 12px;
    margin-bottom: 20px;
}

.banner-heading{
  font-size:60px;
	line-height:1.2;
  color:#2d2d2d;
  font-weight:700;
  padding-bottom:20px;
}

/* why-choose-us */

.main-heading{font-size:50px;font-weight:700;margin-bottom:25px;color:#2d2d2d;text-align:center;}
.icon-box-text{border:1px solid #eac4d5;padding:40px 20px;border-radius:20px;height:100%;background:#fff;transition:0.1s ease-in-out;}
.icon-box-text:hover{filter:drop-shadow(-1px 4px 6px #eac4d550);transition:0.1s ease-in-out;}
.icon-box-text-even{border:1px solid #b5cddf;transition:0.1s ease-in-out;}
.icon-box-text-even:hover{filter:drop-shadow(-1px 4px 6px #b5cddf50);transition:0.1s ease-in-out;}
.box-heading{padding-top:20px;color:#2d2d2d;font-size:18px;font-weight:600;}
.small-para{font-size:14px;color:#393939;line-height:20px;padding-top:12px;}
.link-text{color:#eac4d5;font-size:14px;font-weight:700;padding-top:18px;display:inline-block;transition: ease-in-out 0.25s;}
.icon-box-text-even .link-text{color:#b5cddf;transition: ease-in-out 0.25s;}
.link-text:hover{transition: ease-in-out 0.25s;margin-left:5px;}

/* about-us */

.about-us{padding:70px 0px;background:#eac4d5;position: relative;}
.about-us .row{position: relative;z-index:1;}
.about-us:after{content:"";position:absolute;background:url(../images/about-texture.png) no-repeat center center;width:100%;height:100%;top:0;background-size:cover;opacity:0.5;}
.about-us img{border-radius:20px;}
.about-us .d-flex{gap:20px;}
.big-para{color:#343434;font-size:16px;padding-bottom:24px;line-height:26px;padding-right:10px;}

.click-btn {
  display: inline-block;
 padding:14px 36px;
  justify-content: center;
  align-items: center;
  line-height: 35px;
  border: 1px solid;
  border-radius: 15px;
  text-align: center;
  font-size: 16px;
  font-weight:700;
  color: #000;
  text-decoration: none;
  transition: all 0.35s;
  box-sizing: border-box;
  text-transform:uppercase;
}

.learn-more {
  position: relative;
  background-color: #b5cddf;
  border-color: #b5cddf;
  color: #1f1f1f;
  overflow: hidden;
}

.view-more{
  background-color: #eac4d5;
  border-color: #eac4d5;
	color:#242424;
}

.contact-btn{
  background:#fff;
  border-color:#fff;
  color:#000;
  margin-left:10px;
}

.learn-more::before {
  width: 25px;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  content: "\f054";
  line-height:60px;
  font-family: "FontAwesome";
  font-weight: bold;
  font-size: 10px;
  color: #242424;
  text-indent: 5px;
  border-radius: 0 25% 25% 0;
  background-color: #ffffff40;
  transform: translate(-20%, 0) scale(0, 1);
  transform-origin: left center;
  transition: all 0.25s;
  z-index: 1;
}

.contact-btn::before{
  width: 25px;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  content: "\f054";
  line-height:60px;
  font-family: "FontAwesome";
  font-weight: bold;
  font-size: 10px;
  color: #242424;
  text-indent: 5px;
  border-radius: 0 25% 25% 0;
  background-color: #b5cddf;
}

.learn-more:hover {
  text-indent: 10px;
}
.learn-more:hover::before {
  transform: translate(-20%, 0) scale(1, 1);
}



/* service */

.card-heading{font-size:20px;color:#2d2d2d;font-weight:700;}
.service .small-para{padding-top:8px;}
.service .link-text{padding-top:8px;color:#191919 !important;}
.owl-item .item .card{border-radius:15px 15px 0px 0px !important;margin:5px;}
.service .card-body{padding:30px 14px;}
.service .card-body{position: relative;}
.card-box-icon{width:75px;height:75px;line-height:75px;border-radius:10px;position:absolute;top:-17px;left:50%;transform: translate(-50%, -50%);background: linear-gradient(180deg, #eac4d5 0%, #b5cddf 100%);text-align:center;display:flex;align-items:center;justify-content:center;}
.owl-carousel img {
    display: block;
   width: auto !important;
}
.owl-dots{display:none;}
.owl-next span, .owl-prev span{display:none;}
.owl-prev{
	background:url(/wp-content/uploads/2025/01/owl-left.png) no-repeat 0 0 !important;
	width:18px;
	height:34px;
	position:absolute;
	left:-40px;
	top:42%;
}

.owl-next{
	background:url(/wp-content/uploads/2025/01/owl-right.png) no-repeat 0 0 !important;
	width:18px;
	height:34px;
	position:absolute;
	right:-40px;
	top:42%;
}

/* mid-part */

.mid-part .big-para{color:#4c4c4c;}

/* Testimonial */

  .sp-testimonial-free{
    background:#fff;
    box-shadow:0px 0px 10px 2px #00000010;
    margin:10px;
    border-radius:20px !important;
    padding:35px 30px;
    position: relative;
  }

  .sp-testimonial-free-section .sp-testimonial-client-testimonial, .sp-testimonial-free-section .sp-testimonial-client-testimonial p{
    font-size:14px !important;
    color:#0a0a0a !important;
    line-height:23px !important;
    text-align:left !important;
    margin-bottom:0px !important;
  }

  .sp-testimonial-free-section .sp-testimonial-client-image img{
    border-radius:25% !important;
  }

  #sp-testimonial-free-wrapper-35 .sp-testimonial-free-section .sp-testimonial-client-image{
    text-align:left !important;
  }

  .sp-testimonial-client-name{
   color:#0a0a0a !important;
   font-size:16px;
   font-weight:700;
   position:absolute;
   top:45px;
   left:130px;
  }

  .sp-testimonial-client-designation{
    font-size:14px !important;
    color:#0a0a0a !important;
    position:absolute;
   top:65px;
   left:130px;
  }

  .sp-testimonial-client-rating{
    position:absolute;
    top:90px;
    left:130px;
  }

/* contact-us */

.contact-left{background:#eac4d5;position: relative;overflow:hidden;height:100%;}
.contact-left:after{position:absolute;content:"";top:0;left:0;width:100%;height:100%;background:url(../images/contact-left-texture.jpg) no-repeat center center;background-size:cover;mix-blend-mode:color-burn;z-index:0;}
.contact-left img{width:100%;position:relative;z-index:1;top:20px;left:50%;transform: translate(-50%, 0px);}
.contact-right {
    background: #b5cddf;
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    justify-content: center;
    flex-direction: column;
}
.contact-right:after{position:absolute;content:"";top:0;right:0;width:100%;height:100%;background:url(../images/dot-texture.png) no-repeat center center;transform:translate(32%, 0);background-size:contain;}

/* area */

.area{background:#b5cddf;padding:70px 0px;position: relative;}
.area .container{position: relative;z-index:3;}
.area:after{position:absolute;content:"";top:0;left:0;width:100%;height:100%;background:url(../images/area-texture.jpg) no-repeat center center;background-size:cover;mix-blend-mode:multiply;z-index:0;}
.area-box{padding:12px 7px 12px 32px;border:2px solid #2c2c2c;border-radius:5px;margin-bottom:15px;display:block;transition:0.3s ease-in-out;position:relative;}
.area-box:before{position:absolute;content:"";background:url(/wp-content/uploads/2024/10/area-location.png) no-repeat 0 0;width:20px;height:20px;background-size:contain;left:8px;}
.area-box:hover:before{filter: brightness(0) invert(1);}
.area-box:hover{background:#2c2c2c;transition:0.3s ease-in-out;border-color:#2c2c2c;transition:0.3s ease-in-out;}
.area-box:hover .area-text{color:#fff;}
.area-text{color:#2d2d2d;font-size:14px;margin-bottom:0px;font-weight:500;}
.area-text img{width:20px;margin-right:8px;}
.area-box:hover img{filter:brightness(0) invert(1)}

/* footer */

.footer{
  background:#000000;
  padding:60px 0px 30px;
}

.footer-heading{
  font-size:22px;
  color:#eac4d5;
  font-weight:600;
  margin-bottom:12px;
}

.footer-menu{
  font-size:14px;
}

.footer-menu li {
  line-height: 33px;
}

.footer-menu li a{
  color:#fff;
}

.footer-menu li a:hover{
  color:#eac4d5;
}

.social-icons li span {
  background:#eac4d5;
  border:1px solid #eac4d5;
  width: 30px;
  height: 30px;
  display: inline-block;
  border-radius: 50%;
  line-height: 26px;
  margin-right: 10px;
  text-align: center;
  cursor: pointer;
  transition: 0.3s ease-in-out;
}

.social-icons li span:hover{
 background:inherit;
 border-color:#fff;
}

.social-icons li span:hover img{
	filter:brightness(0) invert(1);
}

/* copyright */

.copy-right{background:#000000;padding:18px 0px;border-top:1px solid #ffffff60;}
.copy-right p a{color:#eac4d5 !important;}

/* scroll to top */

#top {
  background-color: #eac4d5;
  border-radius: 50px 50px 50px 50px;
  bottom: 0;
  color: #ffffff;
  height: 48px;
  position: fixed;
  right: 20px;
  bottom: 20px;
  text-align: center;
  text-transform: uppercase;
  width: 48px;
  opacity: 0;
  z-index: 10000;
  font-size: 0;
  border: 0;
  transition: all 0.2s ease-in-out 0s;
  cursor: pointer;
  outline: none;

  .fa-chevron-up {
    line-height: 35px;
    -webkit-font-smoothing: antialiased;
    font-family: "FontAwesome";
    font-size: 22px;
  }
}
#top.show {
  opacity: 1;
}

/* form */

.contact-right .wpcf7-form-control{width:88%;border-radius:10px;padding:13px 24px;border:0px;}
.page-id-5 .wpcf7-form-control:focus{border:0;}
textarea{height:88px;}
.wpcf7-form{position: relative;z-index:2;}

::placeholder, select{
  color:#000 !important;
}

.sp-testimonial-free-section .testimonial-nav-arrow{
  transform:translateY(0px) !important;
}

.sp-testimonial-free-section .testimonial-nav-arrow.swiper-button-prev{
  left:43px !important;
}

.sp-testimonial-free-section .testimonial-nav-arrow.swiper-button-next{
  right:43px !important;
}

#sp-testimonial-free-wrapper-35 .sp-testimonial-free-section .testimonial-nav-arrow{
  background:#b5cddf !important;
  color:#282828 !important;
  border:0px !important;
}

#sp-testimonial-free-wrapper-35 .sp-testimonial-free-section .testimonial-nav-arrow:hover{
  background:#eac4d5 !important;
  border:0px !important;
  color:color:#282828 !important;;
}

.contact-right .contact-form-btn{
  background-color: #eac4d5;
    border-color: #eac4d5;
    color:#242424;
    font-weight:700;
    height:inherit;
    font-size:16px;
    border-radius:15px;
    padding:20px 36px !important;
    display:inline-block;
    width:inherit;
    text-transform:uppercase;
    transition:0.3s ease-in-out;
}

.contact-right .contact-form-btn:hover{
  background-color:#c48fa7 !important;
  transition:0.3s ease-in-out;
}

.contact-right .contact-form-btn:active,
.contact-right .contact-form-btn:focus{
	background-color:#c48fa7 !important;
}

/* breadcrumbs */

.site-content, .site-main .widecolumn {
  margin-left: 0px !important;
}
.page .entry-header, .blog_page_header {
  /*background: url("../images/banner.jpg") #eee no-repeat center !important;*/
  background-size: cover !important;
  max-width: 100% !important;
  padding: 150px 0 150px !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: #fff;
position: relative;
font-size: 15px;
}
.breadcrumb-container a {
color:#eac4d5;
}
.page {
margin-top: 0 !important;
}

.hentry{
  margin:0px !important;
}

/* inner-pages */

.inner-heading {
    font-size: 30px;
    color: #2d2d2d;
    line-height:38px;
    font-weight: 700;
    margin-bottom: 10px;
}

.inner-heading span {
    color:#c48fa7;
}

.inner-sub-heading {
    font-size: 26px;
}

.para {
    font-size: 16px;
    line-height: 28px;
    color: #343434;
    font-weight: 400;
    margin-bottom: 12px;
}

.para:last-child{
	 margin-bottom:0px;
}

.entry-content img{
	border-radius:15px;
}

.career-sec{
	background:#b5cddf;
}

.career-sec-sub-heading {
    font-size: 26px;
    color: #2d2d2d;
    font-weight: 700;
}

.point-sec {
    padding-left: 23px;
    margin-bottom: 5px;
    display: inline-block;
}

.point-sec li {
    font-size: 16px;
    line-height: 27px;
    color: #303030;
    font-weight: 400;
    margin-bottom: 10px;
    position: relative;
}

.point-sec li:before {
    content: "";
    position: absolute;
    background: url(../images/check.png) no-repeat 0 0;
    width: 16px;
    z-index: 1;
    height: 16px;
    top: 7px;
    left: -26px;
    background-size: contain;
}

.half-list ul {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.half-list ul li {
    width: 50%;
}

/* Contact Us */

.ref_form_box {
    background:#f4f4f4;
    background-size: cover;
    padding: 35px;
    margin-bottom: 30px;
    border: 1px solid #eee;
    border-radius: 10px;
}


.ref_form_box p {
    margin-bottom: 0 !important;
}
.ref_form_box_heading {
    color:#2d2d2d;
    font-weight: bold;
    font-size: 28px;
    line-height: 30px;
}
.ref_form_box_heading strong {
    color: #c48fa7;
    font-weight: bold;
}
.ref_form_box_label {
    color:#2b2b2b;
    margin-top: 15px;
}

.ref_form_box_input input {
    width: 100%;
    min-height: 44px;
    margin-top: 2px;
    border:1px solid #ccc;
    color: #555;
	background:#fff;
	margin-bottom:0px;
	border-radius:5px;
	font-weight:400;
}
.ref_form_box_input select {
    width: 100%;
    min-height: 44px;
    margin-top: 2px;
    border: 1px solid #ccc !important;
    border-radius: 5px;
    color: #555;
    padding: 10px 30px 10px 12px;
/*     -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none; */
	background:#fff;
}
.ref_form_box_input textarea {
    resize: none;
    height: 144px;
    margin-top: 2px;
    border: 1px solid #ccc !important;
    color: #555;
	border-radius:5px;
}

.ref_form_box_input ::placeholder{
	text-transform:capitalize !important;
	color:#555555;
	font-size:15px;
}

span.wpcf7-list-item {
    margin: 0 !important;
    display: block;
}
.wpcf7-list-item label {
    display: block;
    position: relative;
    margin-top: 8px;
    color: #555;
    cursor: pointer;
    font-size: 16px;
    font-weight: 500;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
.half_check .wpcf7-list-item {
    width: 45%;
}
.wpcf7-list-item label input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}
.wpcf7-list-item-label {
    position: relative;
    padding-left: 22px;
}
.wpcf7-list-item-label::before {
    position: absolute;
    top: 1px;
    left: 0;
    height: 16px;
    width: 16px;
    background-color: #eee;
    border: 1px solid #ccc;
    border-radius: 50%;
}
.wpcf7-list-item label:hover input ~ .wpcf7-list-item-label:before {
    background-color: #ccc;
}
.wpcf7-list-item label input:checked ~ .wpcf7-list-item-label:before {
    background-color: #c48fa7;
    border-color: #c48fa7;
}
.wpcf7-list-item-label:after {
    content: "";
    position: absolute;
    display: none;
}
.wpcf7-list-item label input:checked ~ .wpcf7-list-item-label:after {
    display: block;
}
.wpcf7-list-item label .wpcf7-list-item-label:after {
    left: 6px;
    top: 3px;
    width: 5px;
    height: 9px;
    border: solid #fff;
    border-width: 0 1px 1px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

.contact_page_info {
    position: relative;
    padding-left: 47px;
    color:#555555;
    margin-top: 25px;
}

.contact_page_info img {
    position: absolute;
    top: 7px;
    left: 0;
    width: 35px !important;
}

.contact_page_info strong{
	color:#2b2b2b;
}

.contact_page_info a {
    color:#555555;
	text-decoration:none !important;
}

.wpcf7-form-control{
border-radius: 5px;
background-color: #ffffff;
font-size:14px;
/* margin-bottom:15px; */
width:100%;
	color:#888888;
}

.page-id-14 .wpcf7-submit, .page-id-129 .wpcf7-submit{
	display:block;
	background:#eac4d5 !important;
	border-color:#eac4d5 !important;
	font-size:16px !important;
	font-weight:700 !important;
	border-radius:15px !important;
	margin-bottom:0px !important;
	width:auto !important;
	padding:15px 36px !important;
	transition:0.3s ease-in-out;
	text-transform:uppercase;
	color:#242424;
}

.page-id-14 .wpcf7-submit:hover, .page-id-129 .wpcf7-submit:hover{
	background:#c48fa7 !important;
	border-color:#c48fa7 !important;
	transition:0.3s ease-in-out;
}

.service-list{
	text-align:center;
}

.service-list li{
	display: inline-block;
}

.service-list li a{
    padding: 11px 15px 11px 35px;
    border: 2px solid #2c2c2c;
    border-radius: 5px;
    margin:0px 4px 15px 4px;
    transition:all 0.3s ease-in-out;
	color:#2d2d2d;
	font-size:14px;
	font-weight:500;
	display:inherit;
	position:relative;
}

.service-list li a:before {
    background-size: cover !important;
    background: url(../images/inner-location.png) no-repeat 0 0;
    width: 20px;
    position: absolute;
    content: "";
    height: 20px;
	left:10px;
}

.service-list li a:hover{	
transition:all 0.3s ease-in-out;
background:#2d2d2d;	
color:#fff;
}

.service-list li a:hover:before{
	filter:brightness(0) invert(1);
}

.error_container {
  display: flex;
  margin:80px 0px;
  align-items: center;
  text-align: center;
}
.error_container img {
  margin-bottom: 20px;
}

/* footer-btns */

.footer-fixed-buttons {
	position: fixed;
	bottom: 0;
	left: 0;
	width: 100%;
	text-align: center;
	z-index: 99;
}
.footer-btn1 {
	background: #eac4d5;
	color: #242424 !important;
	width: 50%;
	float: left;
	padding: 10px 0;
}
.footer-btn2 {
	background: #fff;
	position: absolute;
	top: 0;
	left: 50%;
	transform: translate(-50%, 0);
	height: 44px;
	width: 44px;
	border-radius: 50%;
	padding: 9px 12px 0;
}
.footer-btn3 {
	background: #b5cddf;
	color: #1f1f1f !important;
	width: 50%;
	float: left;
	padding: 10px 0;
}
.rmp-menu-title-image {
  height: 100%;
}
/* Responsive */

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

}

@media only screen and (min-width : 300px) and (max-width : 767px) {
	.banner-right img{width:100%;height:300px !important;position:inherit;transform:inherit;}
	.banner-gap{padding:0px;}
	.banner{padding:0px 0px 50px 0px !important;}
}

@media only screen and (min-width : 300px) and (max-width : 1023px) {
	.top-bar, .primary-navigation, .menu-button .view-more, .testimonial-nav-arrow, .owl-prev, .owl-next{display:none !important;}
	.logo img{padding:0px;width:40px;height:inherit;}
	.menu-bar{padding:7px 0px;}
	.banner{height:inherit;padding:50px 0px 50px 0px;}
	.about-us, .area {padding:50px 0px;}
	.banner-right img{height:526px;}
	.banner-top-text{font-size: 20px;}
	.banner-heading{font-size: 34px;}
	.page .entry-header, .blog_page_header{padding:70px 0px !important;}
	.page .entry-title, .blog_page_title{font-size:26px;}
	.half-list ul li{width:100%;}
	.inner-heading{font-size:26px;line-height:1.2}
	.learn-more{padding:10px 23px;font-size: 15px;}
	.main-heading {font-size:34px;}
	.wrapper{margin-top:50px;}
	.contact-right .wpcf7-form-control {width:100%;}
	.contact-form-btn{width:auto !important;}
	    .contact-left img {
        bottom: 0px;
        height: 100%;
        object-fit: cover;
    }
	.sp-testimonial-free-section.swiper-initialized, .sp-testimonial-free-section:not(.swiper-initialized,.tfree-layout-grid){margin:0px !important;}
	.top{bottom:60px !important;}
	.copy-right{padding-bottom:60px;}
}

@media only screen and (min-device-width : 375px) and (max-device-width : 667px) and (orientation : portrait) {

}

@media only screen and (min-device-width : 414px) and (max-device-width : 736px) and (orientation : portrait) {

}

@media only screen and (min-width : 481px) and (max-width : 767px) {

}

@media only screen and (min-width : 768px) and (max-width : 1024px) and (orientation : portrait) {
	.banner-top-text{font-size: 22px;}
	.banner-heading{font-size: 38x;}
}

@media only screen and (min-width : 768px) and (max-width : 1180px) and (orientation : landscape) {
.banner-top-text{font-size: 22px;}
	.banner-heading{font-size: 38px;}
}

/* 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) {

}

/* 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) {

}

/* 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 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) {

}

@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:320px)  { /* smartphones, iPhone, portrait 480x320 phones */ }
@media (min-width:481px)  { /* portrait e-readers (Nook/Kindle), smaller tablets @ 600 or @ 640 wide. */ }
@media (min-width:641px)  { /* portrait tablets, portrait iPad, landscape e-readers, landscape 800x480 or 854x480 phones */ }
@media (min-width:961px)  { /* tablet, landscape iPad, lo-res laptops ands desktops */ }
@media (min-width:1025px) { /* big landscape tablets, laptops, and desktops */ }
@media (min-width:1281px) { /* hi-res laptops and desktops */ }






