@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;
}

@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;
}





/* 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;
}

.common-heading {
  font-size: 34px;
  line-height: 40px;
  color: #01687b;
  font-weight: 700;
}

.heading-underline {
  position: relative;
}

.heading-underline::before {
  content: '';
  background: url("../images/heading-underline.png") no-repeat;
  background-size: cover;
  width: 148px;
  height: 7px;
  position: absolute;
  bottom: 0;
  left: 0;
}

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

.common-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  position: relative;
  padding: 15px 35px;
  width: fit-content;
  border-radius: 10px;
  background-color: #cc007e;
  font-size: 15px;
  font-weight: 700;
  color: #ffffff;
  font-weight: 600;
  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: #01687b;
  transform: scaleX(0);
  transform-origin: left;
  z-index: -1;
  transition: transform 0.3s ease;
}

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

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

.common-btn-2 {
  background-color: #01687b;
}

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

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

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

  to {
    transform: translateY(0);
  }
}

.padding-0 {
  padding: 0;
}

/* top-header */
.top-header {
  background-color: #ffe5f5;
  padding: 20px 0;
}

.header-info-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header-info-left {
  display: flex;
  align-items: center;
  gap: 30px;
}

.header-info {
  font-size: 14px;
  color: #232323;
  font-weight: 400;
  display: flex;
  align-items: center;
  gap: 7px;
  position: relative;
}

.header-info img {
  width: 13px;
}

.header-info::before {
  content: '';
  background: #d7c5d0;
  width: 1px;
  height: 100%;
  position: absolute;
  top: 0;
  right: -15px;
}

.header-info:last-child:before {
  content: none;
}

.header-info-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.header-info a:hover {
  color: #01687b;
}

.info-right {
  display: flex;
  align-items: center;
  gap: 30px;
}


.h-media-container {
  display: flex;
  align-items: center;
  gap: 15px;
}

.h-media-container a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  min-width: 32px;
  height: 32px;
  border-radius: 16px;
  background-color: #ffccec;
}

.h-media-container img {
  width: 10px;
}

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

.logo-container img {
  width: 134px;
}

.header-manu-container {
  margin-left: 50px;
}

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

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

.main-header ul li a {
  font-size: 15px;
  line-height: 60px;
  color: #242424;
  font-weight: 400;
  padding: 0;
}

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

.header-btn-container .common-btn {
  padding: 15px 40px;
}

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


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

.banner-container {
  margin-left: 65px;
  /* min-height: 100vh; */
  align-content: center;
  padding: 140px 0 150px;
}

.banner-heading {
  font-size: 36px;
  line-height: 50px;
  color: #01687b;
  font-weight: 700;
}

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

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

/* .about-sec */

.about-sec {
  padding: 90px 0;
}

.value-card-heading {
  min-height: 100%;
  align-content: end;
  padding-bottom: 8px;
}

.our-value-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.our-value-card img {
  width: 65px;
  transition: all 1s ease;
}

.our-value-card:hover img {
  transform: rotateY(360deg);
}

.our-value-card-heading {
  font-size: 16px;
  line-height: 30px;
  color: #000000;
  font-weight: 600;
  padding-top: 10px;
}

.our-value-card-text {
  font-size: 14px;
  line-height: 22px;
  color: #000000;
  font-weight: 400;
  padding: 0 30px;
}


/* our-services */
.our-services {
  padding: 100px 0;
  background-color: #f8f8f9;
}

.our-services .heading-underline::before {
  width: 200px;
  height: 10px;
  left: 23px;
  bottom: -5px;
}

.our-service-card {
  border-radius: 0 15px 15px 0;
  background-color: #ffffff;
  padding: 35px 20px 25px;
  box-shadow: #32325d40 0px 0px 30px -18px, #0000004d 0px 15px 30px -18px;
  position: relative;
  min-height: 100%;
}

.service-card-img {
  width: 60px;
  height: 60px;
  border-radius: 30px;
  background-color: #01687b;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: -30px;
}

.service-card-img img {
  width: 26px;
  transition: all 1s ease;
}

.our-service-card:hover img {
  transform: rotateY(360deg);
}

.service-card-heading {
  font-size: 18px;
  line-height: 22px;
  color: #000000;
  font-weight: 600;
  padding: 10px 0;
}

.service-card-text {
  font-size: 14px;
  line-height: 24px;
  color: #000000;
  font-weight: 400;
}

.service-card-link {
  display: block;
  width: fit-content;
  font-size: 12px;
  line-height: 24px;
  text-decoration: underline;
  text-transform: uppercase;
  color: #cc007e;
  font-weight: 600;
  text-underline-offset: 4px;
  padding-top: 10px;
  transition: all 0.5s ease;
}

.service-card-link:hover {
  text-underline-offset: 2px;
}

.custom-row-gap {
  row-gap: 80px;
}

.our-services-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 60px;
}

/* why-choose-sec */

.why-choose-sec .container-fluid {
  max-width: 1350px;
}

.choose-sec-left {
  max-width: 545px;
  float: right;
}

.why-choose-inner {
  border-radius: 30px;
  background-color: #fff0f9;
  margin: 0 10px;
}

.choose-sec-right img {
  border-radius: 30px;
}

.why-choose-cart {
  display: flex;
  align-items: center;
  gap: 10px;
}

.why-choose-cart-img {
  width: 69px;
  min-width: 69px;
  height: 69px;
  border-radius: 34px;
  background-color: #ffc6e9;
  display: flex;
  align-items: center;
  justify-content: center;
}

.why-choose-cart-img img {
  width: 26px;
  transition: all 1s ease;
}

.why-choose-cart:hover img {
  transform: rotateY(360deg);
}

.why-choose-cart-text {
  font-size: 16px;
  line-height: 25px;
  color: #000000;
  font-weight: 700;
}


/* testimonial sec   */
.testimonial-sec {
  padding: 90px 0;
}

.testimonial-sec .heading-underline::before {
  left: 50%;
  transform: translateX(-50%);
  bottom: -5px;
}

#sp-testimonial-free-wrapper-53 .sp-testimonial-free {
  padding-top: 30px;
}

.swiper-slide-next {
  position: relative;
}

.swiper-slide-next::before {
  content: '';
  width: 1px;
  height: 100%;
  background: #0c6e77;
  position: absolute;
  right: -10px;
  top: 0;
}

.swiper-slide-next::after {
  content: '';
  width: 1px;
  height: 100%;
  background: #0c6e77;
  position: absolute;
  left: -10px;
  top: 0;
}

.sp-testimonial-free-section .sp-testimonial-client-testimonial,
.sp-testimonial-free-section .sp-testimonial-client-testimonial p {
  margin: 0 0 10px 0 !important;
}

#sp-testimonial-free-wrapper-53 .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 {
  margin: 0 !important;
}

#sp-testimonial-free-wrapper-53 .sp-testimonial-free-section .sp-testimonial-client-designation {
  font-size: 12px !important;
  line-height: 26px !important;
  color: #000000 !important;
}

/* footer */
.footer {
  position: relative;
  background-color: #012026;
  background-size: cover;
  padding: 90px 0 0;
  position: relative;
  z-index: 1;
}

.footer-heading {
  font-size: 20px;
  color: #cc007e;
  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: #ffffff;
  font-weight: 400;
  padding-bottom: 15px;
}

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

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

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

.f-icon {
  width: 31px;
  min-width: 31px;
  height: 31px;
  border-radius: 15px;
  background-color: #cc007e;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.f-menu-container ul li {
  padding-bottom: 11px;
}

.f-contact-container {
  margin-right: -25px;
}

.f-contact-container ul li {
  padding-bottom: 25px;
}

.f-service-container-1 {
  padding-left: 90px;
}

.f-service-container-2 {
  padding-left: 95px;
}

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

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

.lower-footer a {
  color: #ffffff;
}

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


/* scroll to top  */
.scroll-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  cursor: pointer;
  z-index: 9999;
  width: 57px;
  height: 57px;
  border-radius: 28px;
  background-color: #cc007e;
  align-items: center;
  justify-content: center;
  transition: all 0.5s ease;
}

.scroll-top:hover {
  background: #01687b;
}

.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: 150px 0 150px !important;
  margin: 110px 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;
}

/* 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 #cc007e;
}

.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: #01687b;
  padding: 13px 50px;
  transition: all 0.5s ease;
}

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

.contact-form-sec p {
  margin-bottom: 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_sub {
  font-size: 22px;
}

.inner_title strong {
  color: #01687b;
}

.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: 22px;
  background-repeat: no-repeat;
  background-size: 14px;
  font-size: 16px;
  color: #2b2b2b;
  font-weight: normal;
  list-style: none;
  padding-bottom: 6px;
}

.inner_bottm_sec {
  background: #01687b;
  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: #01687b;
}

.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: #01687b;
}

.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 a:hover {
  color: #cc007e;
}

.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;
	min-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 {
  border-radius: 27px;
  background-image: linear-gradient(89deg, #151b8b 0%, #5b93c7 99%, #5b93c7 100%);
  transition: all 0.8s ease !important;
  cursor: pointer;
  color: #fff;
  font-weight: 600;
  position: relative;
  display: inline-block;
  white-space: nowrap;
  padding: 15px 30px;
}

.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: #cc007e;
  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: #01687b;
  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: #01687b;
  width: fit-content;
  margin: 15px 0;
  padding: 15px 25px;
  border-radius: 15px;
  color: #fff;
  text-transform: capitalize;
  transition: all 0.5s ease;
  text-decoration: none !important;
}

.more-link:hover {
  background: #cc007e !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;
}

/* 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 #f5f5f5;
  background: #f5f5f5;
  border-radius: 10px;
  color: #2b2b2b;
  padding: 10px 20px;
}

.inner-form-textarea textarea {
  width: 100%;
  border: 1px solid #f5f5f5;
  background: #f5f5f5;
  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: #01687b;
}

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

.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: 10px;
  padding: 15px 40px;
  text-align: center;
  transition: all 0.5s ease;
  background: #01687b;
}

.inner-form-submit-btn input[type="submit"]:hover {
  background: #cc007e;
}

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

.thankyou-btn-container {
  display: flex;
  justify-content: center;
}

.thankyou-btn-container a {
  text-decoration: none !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;
}

#sp-testimonial-free-wrapper-167 .sp-testimonial-free {
  background: #ffffff !important;
  border-radius: 10px !important;
  box-shadow: 0 0 5px;
  margin: 5px;
  min-height: 100%;
  padding: 20px;
}

.sp-testimonial-free-section .sp-testimonial-client-testimonial,
.sp-testimonial-free-section .sp-testimonial-client-testimonial p {
  text-align: left !important;
  font-size: 15px !important;
  line-height: 24px !important;
  padding: 20px 0 0 !important;
}

#sp-testimonial-free-wrapper-167 .sp-testimonial-free-section .sp-testimonial-client-rating {
  display: flex !important;
  position: absolute;
  top: 35px;
}

.sp-testimonial-free-section .sp-testimonial-client-name {
  text-align: end !important;
}

.inner-quote {
  background: #ffe5f5;
  text-align: center;
  border-radius: 15px;
  padding: 20px 50px 30px;
  margin-top: 48px;
  font-style: italic;
}

.rmp-container .rmp-menu-title .rmp-menu-title-image {
	margin-bottom: 15px;
	width: 170px;
	border-radius: 10px;
	padding: 20px 20px;
	background: #fff;
}

/* 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;
	}
	.main-header {
		top: 0;
	}
	.banner-sec {
		background-position: right;
		background-size: cover;
	}
    .banner-sec .container {
        width: auto;
    }
	.banner-container {
		margin-left: 0;
		align-content: center;
		padding: 50px 0;
	}
	.banner-heading {
		font-size: 28px;
		line-height: 38px;
	}
	.common-heading {
		font-size: 26px;
		line-height: 36px;
	}
	.about-sec {
		padding: 50px 0;
	}
	.heading-underline::before {
		width: 130px;
		height: 10px;
		bottom: -5px;
	}
	.value-card-heading  .common-heading {
		text-align: center;
	}
	.our-services {
		padding: 50px 0;
	}
	.our-services .heading-underline::before {
		width: 175px;
		left: 10px;
	}
	.custom-row-gap {
		row-gap: 55px;
	}
	.choose-sec-left {
		padding: 40px 25px;
	}
	.testimonial-sec {
		padding: 50px 0;
	}
	.footer {
		overflow: hidden;
		padding: 50px 0 0;
	}
	.f-contact-container ul li {
		gap: 6px;
	}
	.f-contact-container ul li:last-child{
		padding-bottom: 0;
	}
	.f-service-container-1 {
		padding-left: 0;
	}
	.f-service-container-2 {
		padding-left: 0;
	}
	.lower-footer {
		margin-top: 30px;
		padding: 20px 0 60px;
	}
	.scroll-top {
		bottom: 7rem;
		right: 1rem;
	}
	.page .entry-title, .blog_page_title {
		font-size: 28px;
	}

	.page .entry-header, .blog_page_header {
		padding: 90px 0 90px !important;
	}
	.review_page .hentry {
		margin: 0 auto 10px !important;
	}
	.contact_page_info {
		align-items: start;
		flex-direction: column;
	}
	.inner-form-container {
		padding: 30px 10px;
	}
}

@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: 75%;
	}
	.about-our-value .col-sm-12 {
		width: 50%;
	}
	.our-value-card-text {
		padding: 0;
	}
	.our-services .col-sm-12 {
		width: 50%;
	}
}

/* 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 screen  */
@media only screen and (min-width : 768px) and (max-width : 1024px) and (orientation : portrait) {}

/* 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;
	}
	.main-header {
		top: 0;
	}
	.banner-sec {
		background-position: right;
		background-size: cover;
	}

	.f-contact-container {
		margin-right: -90px;
	}
	.f-service-container-2 {
		padding-left: 0;
	}
}

/* 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) {
	.banner-sec {
		background-size: cover;
		min-height: 100vh;
		background-position: 60%;
	}
	.banner-container {
		min-height: 100vh;
	}
}

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

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



@media (min-width: 1025px) and (max-width: 1199px) {}