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

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

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


* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: 'Inter';
}

a {
  text-decoration: none !important;
}

figure {
  padding: 0 !important;
  margin: 0 !important;
}

img {
  max-width: 100%;
}

body {
  font-family: 'Inter';
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
  transition: 0.5s;
}

/* mouse scroll css */

.logo img {
  width: 134px;
  transition: all 0.5s ease;
  position: relative;
  margin-top: -38px;
  background-color: #fff;
  padding: 10px;
  border-radius: 10px;
}

.navbar-fixed .logo img {
  width: 94px;
  margin-top: 0;
  padding: 10px 0px;
  transition: all 0.5s ease;
}

.navbar-fixed .navigation_menu {
  transition: all 0.5s ease;
}

.navbar-fixed.header_area {
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.3);
}

.navbar-fixed .header_top {
  margin-top: -51px;
}

.navbar-fixed .clip-path::before{
 margin-top: -110px;
}

.btn_design {
  padding: 8px 22px;
  display: inline-block;
  border: 1px solid #fff;
  color: #ffffff;
  font-size: 18px;
  font-weight: 500;
  border-radius: 6px;
  transition: all 500ms ease-in-out !important;
}

.btn_design_b {
  padding: 10px 22px;
  display: inline-block;
  background: linear-gradient(180deg, rgba(1,168,186,1) 0%, rgba(0,151,167,1) 100%);
  color: #fff;
  font-weight: 500;
  border-radius: 6px;
  font-family: 'Barlow';
  font-size: 16px;
  text-transform: uppercase;
  transition: all 500ms ease-in-out !important;
}

.btn_design:hover {
  box-shadow: inset 200px 0 #01a8ba;
  color: #fff;
}

.btn_design_b:hover {
  box-shadow: inset 200px 0 #000;
  color: #fff;
}

.same-line {
  font-size: 18px;
  font-family: 'Barlow';
  color: #01a8ba;
  text-transform: capitalize;
  font-weight: 600;
  position: relative;
  display: inline-block;
}

.same-heading {
  position: relative;
  font-size: 36px;
  font-family: 'Barlow';
  color: #222222;
  text-transform: capitalize;
  font-weight: 600;
  line-height: 42px;
  margin: 0 0 16px;
}

.same-text {
  font-size: 17px;
  color: #0f0f0f;
  margin-bottom: 10px;
}

.text-paragraph {
  margin-bottom: 17px;
}

/* header start  */
.header_area {
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 9999;
    background: #ffffff;
}

.header_top_nav {
  background-color: #01a8ba;
  padding: 6px 0;
}
.navigation_menu li {
  display: inline-block;
  list-style: none;
  margin-right: 35px;
}

.navigation_menu {
  margin-bottom: 0;
  padding-left: 0;
  margin-left: 10%;
}

.header_btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
}

.header_call a{
color: #01a8ba;
font-family: 'Barlow';
font-size: 24px;
}

.header_call a:hover{
  color: #000;
}
.header_btn_img img {
  background: #fff;
  border-radius: 50%;
  animation: pulse-animation 3s infinite;
}

@keyframes pulse-animation {
  0% {
      box-shadow: 0 0 0 0px rgba(1, 166, 184, 0.6);
  }
  50% {
      box-shadow: 0 0 0 10px rgba(1, 166, 184, 0.3);
  }
  100% {
    box-shadow: 0 0 0 0px rgba(1, 166, 184, 0.6);
}

}

.navigation_menu a {
  color: #4b4b4b;
  font-size: 17px;
  position: relative;
  text-transform: capitalize;
  font-weight: 500;
}
.navigation_menu a::before {
  position: absolute;
  content: "";
  width: 0%;
  height: 2px;
  background-color: #01a8ba;
  left: 0;
  bottom: -3px;
  transition: all 0.2s ease;
}
.navigation_menu a:hover:before {
  width: 100%;
}
.navigation_menu a.active ,.navigation_menu a:hover  {
  color: #01a8ba;
  position: relative;

}
.navigation_menu a.active::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 2px;
  background-color: #01a8ba;
  bottom: -3px;
  left: 0;
} 

.header_top {
  padding: 6px 0;
  position: relative;
  transition: all 0.5s ease;
}
.header_top_left {
  display: flex;
}
.header_top_left a {
  margin-right: 16px;
  color: #fff !important;
  border-right: 1px solid #fff;
  padding-right: 16px;
  display: flex;
  align-items: center;
  gap: 5px;
}
.header_top_left a:last-child{
  border: none;
}
.header_top_left a:hover{
  color: #000 !important;
}
.header_top_right a{
   margin-left: 9px;
}

/* header end  */

/* slider_image start */
.slider_image {
  margin-top: 127px;
  position: relative;
  overflow: hidden;
}
.ms-slide-info {
  position: absolute !important;
  top: 50%;
  left: 8%;
  transform: translateY(-50%);
  color: #ffffff;
  max-width: 600px;
  z-index: 1;
}
.text_content_slider .text_title {
  color: #ffffff;
  font-size: 18px;
 
  text-transform: capitalize;
  position: relative;
  margin: 16px 0;
}

.slider_btn_book a{
  margin-right: 14px;
}
.slider_text_list_box {
  font-size: 48px;
  color: #01a8ba;
  font-weight: bold;
  text-transform: capitalize;
  position: relative;
  line-height: 60px;
}
.image_s {
  position: relative;
}


.call-banner{
  color: #ffffff;
  font-size: 24px;
  font-weight: bold;
}
.call-banner:hover{
  color: #ffc600;
}

.ms-nav-next {
  background-image: url(../images/banner-arrow-right.png) !important;
  width: 42px !important;
  height: 47px !important;
  background-repeat: no-repeat !important;
  background-position: center !important;
  background-size: auto !important;
}

.ms-nav-prev {
  background-image: url(../images/banner-arrow-left.png) !important;
  width: 42px !important;
  height: 47px !important;
  background-repeat: no-repeat !important;
  background-position: center !important;
  background-size: auto !important;
}

.slider_text_line{
  font-size: 20px;
  color: #fff;
  font-weight: 600;
  text-transform: capitalize;
  position: relative;
  margin: 8px 0;
}

.ms-slide-bgcont{position: relative !important; }
.ms-slide-bgcont::before{content: ''; position: absolute;width: 100%;height: 100%; background: rgb(0,0,0);
         background: linear-gradient(90deg, rgba(0,0,0,0.6) 35%, rgba(255,255,255,0) 57%);z-index: 1;}
/* slider_image end */


/* about start */
.about{
  padding: 70px 0 130px;
   position: relative;
 }
 
 .about_image_box img{
  border-radius: 5px;
  margin-left: 20px;
  z-index: 1;
  position: relative;

 }
 .about_image_box{
  position: relative;
 }
 .about_image_box::before{
  position: absolute;
  content: "";
  height: 100%;
  width: 95%;
  background-color: #01a8ba;
  left: 0;
  top: 20px;
  border-radius: 5px;
 }
 .about_text_area {
  padding-left: 36px;
}

 .list_style{
  padding-left: 0;
  margin: 0;
 }
 .list_style li{
  background-image: url(../images/check-list.png);
  background-repeat: no-repeat;
  background-size: 19px;
  background-position: left 2px;
  padding-left: 30px;
  list-style: none;
  margin: 10px 0;
 }
 .about .same-line::after{
  display: inline-block;
  content: "";
  height: 1px;
  width: 80px;
  background-color: #01a8ba;
  vertical-align: middle;
  margin-left: 10px;
  
   } 
 /* about end */

 /* choose_sec start */
 .choose_text_area{
    background-color: #008e9e;
    padding: 60px;
    background-image: url(../images/choose-bg-img.png);
    background-blend-mode: multiply;
    background-size: cover;
 }
 .choose_text_area {
  background-color: #008e9e;
  padding: 48px 100px 0 0;
  padding-left: 15%;
  height: 622px;
}
.choose_sec .same-line{
  color: #fff;
  position: relative;
}
.choose_sec .same-line::after{
  display: inline-block;
  content: "";
  height: 1px;
  width: 80px;
  background-color: #fff;
  vertical-align: middle;
  margin-left: 10px;
}
.choose_sec .same-heading{
  color: #fff;
}
.choose_sec .text-paragraph{
  color: #fff;
}
.choose_list_box {
  display: flex;
}
.choose_list{
  padding: 0;
  margin: 0;
  width: 50%;
}
.choose_list li{
  background-image: url(../images/tick-list.png);
  background-repeat: no-repeat;
  list-style: none;
  color: #fff;
  padding-left: 30px;
  background-position: left 8px;
  margin: 8px 0;
}
.choose_list_text_box{
    background: linear-gradient(180deg, rgba(1,168,186,1) 0%, rgba(0,151,167,1) 100%);
    padding: 14px;
    width: 50%;
    border-radius: 5px;
}
.choose_list_text_box_text {
  color: #ffff;
  margin-top: 17px;
  font-size: 20px;
  line-height: 26px;
}

.choose_box_img{
  position: relative;
}
.choose_box_area{
  position: relative;
    z-index: 1;
    margin-left: -61px;
    top: -51px;
    right: 0;
}
.choose_box_area img {
  height: 600px;
  object-fit: fill;
}
 /* choose_sec end */

/* service start  */
.service {
  padding: 120px 0 70px;
}
.service-box {
  background-color: #e7eef6;
  box-shadow: 0px 0px 1px 0px rgba(0, 0, 0, 0.1);
  border-radius: 5px;
  min-height: 100%;
  padding: 10px 13px 24px;
}

.service-box:hover .service_img_box {
   border: 5px solid #000;       
}

.service-text-box {
  position: relative;
}

.service-box img {
  border-radius: 10px;
}
.service .same-line::after{
  display: inline-block;
  content: "";
  height: 1px;
  width: 80px;
  background-color: #01a8ba;
  vertical-align: middle;
  margin-left: 16px;
}

.service .same-line::before{
  display: inline-block;
  content: "";
  height: 1px;
  width: 80px;
  background-color: #01a8ba;
  vertical-align: middle;
  margin-right: 16px;
}

.service-head {
  font-size: 23px;
  font-weight: 600;
  color: #222222;
  margin-top: 10px;
  line-height: 32px;
  font-family: 'Barlow';
}

.service-paragraph {
  font-size: 16px;
  color: #4b4b4b;
  margin: 10px 0 24px;
}

.service-text-box a {
  font-size: 16px;
}

.service-text-box a:hover{
  color: #008e9e;
}
.service-text-box a img{
  transition: all 0.5s ease;
}
.service-text-box a:hover img{
  transform: translateX(10px);
}
.shape-service {
  content: "";
  position: absolute;
  width: 100%;
  top: -18px;
  left: 0;
}

.service_img_box {
  background-color: #01a6b8;
  display: inline-block;
  width: 90px;
  height: 90px;
  vertical-align: middle;
  text-align: center;
  line-height: 90px;
  border-radius: 50%;
  border: 5px solid #fff;
  margin-top: -45px;
  transition: all 0.5s ease;
}

.service_btn{
  color: #01a8ba;
}

.service-gap {
  margin-top: 70px;
}
.service .same-heading {
  width: 600px;
  margin: 0 auto;
}
/* service end */


/* freeconsultation start */
.feedback{
  background-image: url("../images/question-bg.jpg");
  padding: 60px 0;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-blend-mode:exclusion;
  background-color: #0f4257;
}

.feedback_head{
  font-size: 36px;
  color: #ffffff;
  font-family: "Lato";
  line-height: 40px;
}
.feedback_box{
  max-width: 950px;
  text-align: center;
  margin: 0 auto;
}
.feedback_text{
  color: #ffffff;
  font-size: 16px;
}
.feedback_btns{
  margin-top: 20px;
}
.feedback_btns a{
  margin-right: 10px;
}

/* freeconsultation end */

/* testimonial start  */
.testimonial{
  padding: 70px 0;
}
.testimonial .same-line::before{
  display: inline-block;
  content: "";
  height: 1px;
  width: 80px;
  background-color: #01a8ba;
  vertical-align: middle;
  margin-right: 16px;
}
.testimonial .same-line::after{
  display: inline-block;
  content: "";
  height: 1px;
  width: 80px;
  background-color: #01a8ba;
  vertical-align: middle;
  margin-left: 16px;
}

#sp-testimonial-free-wrapper-33 .sp-testimonial-free-section {
  margin: 0 50px;
  padding: 0 13px !important;
  margin-bottom: 30px;
}
#sp-testimonial-free-wrapper-33 .sp-testimonial-free {
  box-shadow: 0px 0px 3px 0px rgba(0, 0, 0, 0.2);
  margin: 20px 0;
  padding: 40px 20px 20px;
  border-radius: 5px;
  background-color: #ffffff;
}
.sp-testimonial-client-image {
  position: absolute;
  top: 42px;
  left: 20px;
}
#sp-testimonial-free-wrapper-33 .sp-testimonial-free-section .sp-testimonial-client-name {
  color: #191919;
  font-size: 23px;
  position: absolute;
  top: 50px;
  left: 104px;
}
#sp-testimonial-free-wrapper-33 .sp-testimonial-free-section .sp-testimonial-client-rating {
  color: #ffb900;
  position: absolute;
  top: 78px;
  left: 103px;
}
.sp-testimonial-free-section .sp-testimonial-client-testimonial p {
  text-align: left;
  padding-top: 64px;
}
.sp-testimonial-free-section .testimonial-nav-arrow {
  width: 36px;
  height: 36px;
  border-radius: 50%;
}

/* testimonial end */

/* footer start */
.footer-area {
    padding: 50px 0 0px;
    background-color: #008f9d;
    background-image: url(../images/choose-bg-img.png);
    background-blend-mode: multiply;
    background-repeat: no-repeat;
    background-size: cover;
}
.footer-heading {
  position: relative;
  color: #ffffff;
  font-size: 24px;
  text-transform: capitalize;
  margin-bottom: 24px;
  display: inline-block;
}
.footer-heading::before{
  content: "";
  position: absolute;
  width: 70%;
  height: 2px;
  left: 0;
  bottom: -5px;
  background-color: #fff;
}

.footer-text {
  color: #ffffff;
  font-size: 15px;
  font-weight: 500;
}
.footer-list-contact,
.footer-list {
  padding-left: 0rem;
  margin: 0;
}
.footer-list li {
  list-style: none;
  margin-bottom: 7px;
  background-image: url(../images/list-arrow-footer.png);
  background-position: left 5px;
  background-size: 8px;
  background-repeat: no-repeat;
  padding-left: 20px;
}
.footer-list li a {
  color: #ffffff;
  font-size: 16px;
}
.footer-list-contact li strong {
  width: 22px;
  height: 22px;
  margin-right: 12px;
  display: inline-block;
}
.footer-list-contact li a:hover,
.footer-list li a:hover,.footer-bottom-text a:hover {
  color: #000;
}
.footer-text{
  margin: 14px 0 12px;
}
.follow_items {
  color: #ffffff;
  font-size: 20px;
}
.footer-list-contact li {
  display: flex;
  margin-bottom: 14px;
  color: #ffffff;
  list-style: none;
}
.footer-list-contact li a {
  width: 81%;
  color: #ffffff;
}
.footer-bottom {
  padding: 20px 0 20px;
  margin-top: 20px;
  background-color: #0092a2;
}
.footer-bottom-text {
  font-size: 17px;
  color: #ffffff;
  text-transform: capitalize;
}
.footer-bottom-text a {
  color: #ffffff;
}
.footer-one{
  padding-right: 40px;
}
.social_link {
  margin-top: 17px;
}
/* footer end */


#back_button {
  background-color: #000000 !important;
  z-index: 100;
  position: relative;
}

#back_button .button {
  background-color: #000000 !important;
  padding: 20px;
  position: fixed;
  bottom: 0;
  right: 10px;
}

#back_button .btn {
  display: inline-block;
  line-height: 1.5;
  color: #212529;
  text-align: center;
  text-decoration: none;
  vertical-align: middle;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  background-color: #000;
  border: 1px solid transparent;
  padding: 0.375rem 0.75rem;
  width: 50px;
  height: 50px;
  border-radius: 5px;
  bottom: 10px;
  right: 20px;
  transition: all 500ms ease-in-out;

}

#back_button .btn-check:focus+.btn,
.btn:focus {
  outline: 0;
  box-shadow: 0 0 0 0.25rem rgba(13, 109, 253, 0);
}

#back_button .btn:hover {
  box-shadow: inset 0 0 0 25px #008f9d;
}


.site-content, .site-main .widecolumn {
  margin-left: 0px !important;
}
.page .entry-header, .blog_page_header {
  background: url("../images/banner-image.jpg") #eee no-repeat center !important;
  background-size: cover !important;
  max-width: 100% !important;
  padding: 270px 0 110px !important;
  margin: 0 0 50px !important;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.page .entry-header:before, .blog_page_header:before {
background: rgba(0, 0, 0, 0.7);
position: absolute;
content: "";
top: 0;
right: 0;
bottom: 0;
left: 0;
}
.page .entry-content {
max-width: 100% !important;
padding: 0px !important;
}
.content-area, .content-sidebar {
  padding-top: 0px !important;
}
.page .entry-title, .blog_page_title {
  color: #fff;
position: relative;
  font-size: 32px;
font-weight: 600;
  text-transform: none;
  z-index: 99;
margin-bottom: 3px;
}
.breadcrumb-container {
  width: 100%;
color: #f26d20;
position: relative;
font-size: 15px;
}
.breadcrumb-container a {
color: #f26d20;
}


/* contact page start */
.inner_title {
  font-size: 30px;
  font-weight: bold;
  line-height: 40px;
  margin-bottom: 20px;
  color: #242424;
  margin-top: 20px;
}

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

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

.contact_page_info strong {
  color: #202a44;
  font-weight: 600;
  font-size: 20px;
}
.contact_page_info a {
  color: #202a44;
  font-size: 16px;
}
.contact_form {
  padding: 30px;
  box-shadow: 0px 9px 13px 0px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  background: #01a8ba;
}
.form-control {
  border: 1px solid transparent !important;
  padding: 11px 13px;
  border-radius: 0px;
  color: #242222;
  font-size: 14px;
}
textarea.form-control {
  resize: none;
  height: 110px;
  border-radius: 5px;
}

input[type="submit"] {
  text-transform: uppercase;
  color: #000;
  background: #fff;
  border-radius: 5px;
  padding: 11px 25px;
  font-size: 14px;
  margin-top: 16px;
  font-weight: 500;
  transition: all 0.5s ease;
}
input[type="submit"]:hover, input[type="submit"]:focus {
  background-color: #fff;
  color: #000;
}
.form-control:focus {
  box-shadow: 0 0 0 0.8px rgba(0 ,0, 0 ,0.4) !important;
}
.map {
  margin-top: 45px;
}
/* contact page end */

.error_container {
  display: flex;
  min-height: 100vh;
 align-items: center;
  text-align: center;
  }

  .more-link {
    background-color: #01a8ba;
    display: block;
    color: #fff !important;
    text-transform: capitalize;
    margin-top: 20px;
    width: 193px;
    padding: 12px 0 12px 15px;
    border-radius: 30px;
}

/* inner page start */
.inner_page_heading{
  position: relative;
  font-size: 30px;
  font-family: 'Barlow';
  color: #222222;
  text-transform: capitalize;
  font-weight: 600;
  line-height: 36px;
  margin: 0 0 16px;
}
.inner_page_heading strong{
  color: #01a8ba;
  font-family: 'Barlow';
}
.inner_page_list{
  list-style: none;
  padding:0;
  margin: 12px 0;
}

.inner_page_list li{
  background-image: url(../images/check-list-in.png);
  background-repeat: no-repeat;
  background-size: 18px;
  background-position: left 6px;
  padding-left: 29px;
  margin: 10px 0;
}

.inner-page-contact {
  background-color: #01a8ba;
  padding: 39px 20px;
}
.inner-contact-heading {
  font-size: 26px;
  font-family: 'Barlow';
  color: #fff;
  text-transform: capitalize;
  font-weight: 600;
  line-height: 36px;
  margin: 0 0 9px;
}

.review_box{
	border: 1px solid #4a4c4c;
    padding: 20px 20px;
    background: #01a8ba;
    border-radius: 10px;
	min-height:100%;
}
.review_name_head {
   font-size: 24px;
    font-weight: 600;
    font-family: 'Barlow';
    margin-bottom: 13px;
    color: #fff;
}

.review_para {
    color: #fff;
    font-size: 17px;
}
/* inner page end*/

.footer_fixed_buttons {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    text-align: center;
    z-index: 99;
}
.footer_btn1 {
    width: 50%;
    float: left;
    background: #01a8ba;
    color: #fff !important;
    padding: 10px 0;
    font-weight: bold;
}

.footer_btn2 {
    background: #fff;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translatex(-50%);
    padding: 9px 12px;
    border-radius: 50%;
    width: 44px;
    height: 44px;
}
.footer_btn3 {
    width: 50%;
    float: left;
    background: #373636;
    color: #fff !important;
    padding: 10px 0;
    font-weight: bold;
}

/* responsive start */
@media only screen and (max-width : 320px) {}

@media only screen and (min-width : 321px) and (max-width : 1023px) {
	.ms-view, .ms-slide, .ms-slide-bgcont { min-height: 300px !important;}
    .ms-slide-bgcont img { object-fit: cover;}
	.header_top_nav, .header_btn, .primary-navigation{
		display:none;
	 }
	.logo img, .navbar-fixed .logo img  {
        margin-top: 0px;
        width: 78px;
        padding: 5px 0;
     }
	
	.same-line {
       margin-top: 15px;
     }
	.same-heading {
        font-size: 29px;
        line-height: 34px;
     }
	.slider_text_list_box {
		font-size: 27px;
	}
	.slider_text_line {
		font-size: 18px;
	}
	.ms-slide-bgcont::before {
        background: linear-gradient(90deg, rgba(0,0,0,0.3841911764705882) 0%, rgba(0,0,0,0.38139005602240894) 100%);
    }
	.choose_text_area {
        background-color: #008e9e;
        padding: 0 10px 0;
        height: 100%;
    }
	.ms-slide-info {
       left: 0;
       text-align: center;
    }
	.text_content_slider .text_title {
		font-size: 13px;
	}
	.slider_image {
       margin-top: 86px;
    }
	.slider_btn_book .btn_design, .slider_btn_book .btn_design_b {
		font-size: 14px;
	}
	.about_image_box::before {
		display:none;
	}
	.about {
        padding: 30px 0 30px;
    }
	.about_image_box img {
        margin-left: 0;
    }
	.about_text_area {
        padding-left: 0;
    }
	.choose_box_area {
        margin-left: 0;
        top: 0px;
     }
	.choose_box_area img {
        height: 100%;
     }
	.choose_list_box {
       flex-direction: column;
    }
	.choose_list {
       width: 100%;
    }   
	.choose_list_text_box {
       margin-bottom: 18px;
       width: 100%;
     }
	.service {
        padding: 30px 0px;
     }
	.service .same-heading {
        width: 100%;
        margin: 0 auto;
     }
	
	
	#sp-testimonial-free-wrapper-33 .sp-testimonial-free-section {
        margin: 0 0px;
     }
	.testimonial {
       padding: 30px 0;
     }
	.feedback {
		padding: 30px 0;
	}
	.feedback_btns a {
       margin-right: 3px;
    }
	.footer-logo img {
       width: 96px;
    }
	.footer-top .ps-5 {
       padding-left: 13px !important;
    }
	.footer-heading {
      font-size: 23px;
      margin-bottom: 24px;
	  margin-top: 22px;
    }
	.footer-bottom {
       padding: 20px 10px 60px;
    }
	.footer-bottom-text {
		font-size: 14px;
	}
	#back_button .btn {
        bottom: 106px;
	}
	.inner_page_heading {
       font-size: 25px;
       line-height: 32px;
	   padding-top: 15px;
    }
	.inner-page-contact {
       padding: 20px 20px;
    }
	.inner-contact-heading {
       font-size: 24px;
       line-height: 28px;
    }
	.inner_title {
        font-size: 25px;
    }
	.contact_form {
		padding: 13px;
	}
	input[type="submit"] {
        width: 100%;
    }
	
}


@media only screen and (min-width : 481px) and (max-width : 767px) {
	#sp-testimonial-free-wrapper-33 .sp-testimonial-free-section .testimonial-nav-arrow {
       display: none;
    }
}

@media only screen and (min-width : 768px) and (max-width : 1024px) and (orientation : portrait) {
	.inner-page-img img {
        width: 100%;
    }
	.choose_list_box {
    display: flex;
    flex-direction: row;
   }
	.inner_page_heading {
		font-size: 33px;
	}
	.footer-bottom {
        padding: 20px 10px 20px;
    }
	.footer-bottom-text {
        font-size: 15px;
    }
	 .inner-contact-heading {
        font-size: 26px;
        line-height: 36px;
    }
	 .same-heading {
         font-size: 36px;
         line-height: 42px;
    }
	    .ms-slide-info {
        left: 14%;
        text-align: left;
	    max-width: 400px;
    }
	.slider_text_line {
        font-size: 20px;
    }
	    .slider_text_list_box {
        font-size: 28px;
    }
	.text_content_slider .text_title {
        font-size: 14px;
    }
	#sp-testimonial-free-wrapper-33 .sp-testimonial-free-section .testimonial-nav-arrow {
       display: none;
    }

}

@media only screen and (min-width : 768px) and (max-width : 1024px) and (orientation : landscape) {
	.ms-view, .ms-slide, .ms-slide-bgcont { min-height: 300px !important;}
    .ms-slide-bgcont img { object-fit: cover;}
	.header_top_nav, .header_btn, .primary-navigation{
		display:none;
	 }
	.logo img, .navbar-fixed .logo img  {
        margin-top: 0px;
        width: 78px;
        padding: 5px 0;
     }
	.same-line {
       margin-top: 15px;
     }
	.same-heading {
        font-size: 29px;
        line-height: 34px;
     }
	.slider_image {
       margin-top: 86px;
    }
	.about_image_box img {
        margin-left: 0;
    }
	.about_text_area {
        padding-left: 0;
    }
	
	.choose_text_area {
        height: 729px;
        padding: 48px 55px 0 0;
        padding-left: 8%;
    }
	.choose_box_img {
       padding: 0;
    }
    .choose_box_area {
        margin-left: -37px;
    }
	.choose_box_area img {
        height: 100%;
     }
.service {
        padding: 60px 0px;
    }
	.service .same-heading {
        width: 100%;
        margin: 0 auto;
     }
	#sp-testimonial-free-wrapper-33 .sp-testimonial-free-section {
        margin: 0 40px;
     }
    .footer-logo img {
        width: 125px;
    }
	.footer-top .ps-5 {
       padding-left: 13px !important;
    }
	.footer-bottom-text {
		font-size: 14px;
	}
	.inner-page-contact {
       padding: 20px 20px;
    }
	.inner-contact-heading {
       font-size: 24px;
       line-height: 28px;
    }

}


/* 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) {
	
	.ms-view, .ms-slide, .ms-slide-bgcont { min-height: 300px !important;}
    .ms-slide-bgcont img { object-fit: cover;}
	.header_top_nav, .header_btn, .primary-navigation{
		display:none;
	 }
	.logo img, .navbar-fixed .logo img  {
        margin-top: 0px;
        width: 78px;
        padding: 5px 0;
     }
	.same-line {
       margin-top: 15px;
     }
	.same-heading {
        font-size: 29px;
        line-height: 34px;
     }
	.slider_image {
       margin-top: 86px;
    }
	.about_image_box img {
        margin-left: 0;
    }
	.about_text_area {
        padding-left: 0;
    }
	
	.choose_text_area {
        height: 729px;
        padding: 48px 55px 0 0;
        padding-left: 8%;
    }
	.choose_box_img {
       padding: 0;
    }
    .choose_box_area {
        margin-left: -37px;
    }
	.choose_box_area img {
        height: 100%;
     }
.service {
        padding: 60px 0px;
    }
	.service .same-heading {
        width: 100%;
        margin: 0 auto;
     }
	#sp-testimonial-free-wrapper-33 .sp-testimonial-free-section {
        margin: 0 40px;
     }
    .footer-logo img {
        width: 125px;
    }
	.footer-top .ps-5 {
       padding-left: 13px !important;
    }
	.footer-bottom-text {
		font-size: 14px;
	}
	.inner-page-contact {
       padding: 20px 20px;
    }
	.inner-contact-heading {
       font-size: 24px;
       line-height: 28px;
    }
}

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

@media screen and (min-width: 1624px) {
	.ms-slide-info {
		left: 12%;
	}
}

@media screen and (min-width: 1920px) {
	.ms-slide-info {
		left: 16%;
	}
	.choose_text_area {
		padding-left: 27%;
	}
}

@media screen and (min-width: 2048px) {
	.ms-slide-info {
		left: 19%;
	}
	.choose_text_area {
     padding-left: 30%;
    }
}

@media screen and (min-width: 2550px) {
	.ms-slide-info {
        left: 23%;
    }
	.ms-slide-info {
    max-width: 790px;
   }
	.slider_text_list_box {
		font-size: 54px;
	}
	.slider_text_line {
		font-size: 28px;
	}
	.text_content_slider .text_title {
		font-size: 25px;
	}
	.choose_text_area {
		padding-left: 37%;
	}
}  

/* responsive end */

