body {
  margin: 0;
  padding: 0;
  font-family: "Poppins";
}
a {
  text-decoration: none !important;
}
img {
  max-width: 100%;
  height: auto;
}
a:focus {
  outline: none;
  outline: 0px auto -webkit-focus-ring-color;
  outline-offset: 0px;
}
.btn.active.focus, .btn.focus, .btn.focus:active {
  outline: none;
  outline-offset: 0px;
  border: none !important;
}

/* a:focus, a:hover {
  text-decoration: none !important;
  border: none !important;
} */

@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-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-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-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;
}

.header {
  position: fixed;
  background: #fff;
  width: 100%;
  top: 0;
  left: 0;
  transition: all 0.5s ease 0s;
  -moz-transition: all 0.5s ease 0s;
  -webkit-transition: all 0.5s ease 0s;
  z-index: 999;
}
.fixed-header {
  top: 0;
  box-shadow: 0 0 5px #9d9b9b;
  z-index: 999;
}
.fixed-header .top-bar {
  height: 0;
}
.top-bar {
  background: #0088cc;
  height: 45px;
  display: flex;
  align-items: center;
  overflow: hidden;
  position: relative;
  transition: ease 0.5s all 0s;
}
.ad1 {
  display: flex;
}
.ad1 span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  margin-right: 15px;
  font-size: 14px;
}
.ad1 span a {
  color: #fff;
  transition: ease 0.5s all 0s;
}
.ad1 span a:hover {
  color: #000;
}
.ad1 span:last-child {
  margin-right: 0;
}
.ad1 img {
  max-width: 20px;
}
.social img {
  max-width: 27px !important;
}
.social a {
  margin-left: 2px;
}
.logo img {
  width: 230px;
  transition: ease 0.5s all 0s;
}
.header-right {
  text-align: right;
}
.menu {
  display: inline-block;
  vertical-align: middle;
  position: relative;
}
.menu ul {
  margin: 0;
  padding: 0;
}
.menu ul li {
  list-style: none;
  display: inline-block;
  margin-right: 12px;
}
.menu ul li:last-child {
  margin-right: 0;
}
.menu ul li a {
  display: block;
  font-size: 15px;
  font-weight: 600;
  color: #282828;
  text-transform: uppercase;
  padding: 30px 0;
  transition: ease 0.5s all 0s;
}
.menu ul li a:hover {
  color: #0088cc;
}
/* Dropdown Styling */
.header_dropdown_container {
  display: none;
  position: absolute;
  top: 100%;
  left: 27%;
  width: 295px;
  z-index: 10;
  transition: all 0.5s ease;
}
.menu ul li:hover .header_dropdown_container {
  display: block;
}
.header_dropdown_container_inner {
  background: #fff;
  box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.16);
}
.header_dropdown_container_inner ul li {
  display: block;
  margin-right: 0;
  text-align: left;
}
.header_dropdown_container_inner ul li a {
  color: #000;
  padding: 10px 15px;
  transition: ease 0.5s all 0s;
}
.header_dropdown_container_inner ul li a:hover {
  background: #08c;
  color: #fff;
}
.cont-btn {
  display: inline-block;
  vertical-align: middle;
  background: #191919;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  padding: 10px 23px 8px;
  border-radius: 50px;
  text-transform: uppercase;
  margin-left: 20px;
  transition: ease 0.5s all 0s;
}
.cont-btn:hover {
  background: #08c;
}
.book-btn {
  display: inline-block;
  vertical-align: middle;
  background: #0088cc;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  padding: 10px 28px 8px;
  border-radius: 50px;
  text-transform: uppercase;
  margin-left: 3px;
  transition: ease 0.5s all 0s;
}
.book-btn:hover {
  background: #191919;
}
.banner {
  position: relative;
  margin-top: 128px;
}
.banner:after {
  background: url(../images/curv.png) no-repeat;
  background-position: bottom;
  background-size: 100%;
  position: absolute;
  width: 100%;
  height: 125px;
  bottom: 0;
  left: 0;
  right: 0;
  content: "";
}
.banner img {
  width: 100%;
}
.banner-content {
  position: absolute;
  width: 100%;
  top: 50%;
  transform: translateY(-50%);
}
.banner-part {
  max-width: 460px;
}
.banner-title {
  font-size: 36px;
  font-weight: bold;
  color: #fff;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 16px;
  line-height: 38px;
}
.banner-title img {
  width: auto !important;
  height: auto !important;
}
.banner-list {
  border-left: 2px solid #fff;
  padding-left: 25px;
}
.banner-list ul {
  margin: 30px 0 0;
  padding: 0;
}
.banner-list ul li {
  background: url(../images/check1.png) no-repeat;
  list-style: none;
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  padding-left: 25px;
  background-position: 0 6px;
  margin-top: 5px;
}
.banner-list ul li:first-child {
  margin-top: 0;
}
.banner-btn a {
  display: inline-block;
  vertical-align: middle;
  background: #fff;
  color: #0088cc;
  font-size: 15px;
  font-weight: bold;
  padding: 10px 30px 9px;
  text-transform: uppercase;
  border-radius: 50px;
  margin: 28px 4px 0 0;
  transition: ease 0.5s all 0s;
}
.banner-btn a:hover {
  background: #08c;
  color: #fff;
}
.banner-btn a:last-child {
  background: #0088cc;
  color: #fff;
  padding: 10px 20px 9px;
  cursor: pointer;
}
.banner-btn a:last-child:hover {
  background: #fff;
  color: #0088cc;
}
.banner-btn a:last-child img {
  width: auto;
  transform: translate(-4px, -1px);
  transition: ease 0.5s all 0s;
}
.banner-btn a:last-child:hover img {
  filter: brightness(0) saturate(100%) invert(34%) sepia(90%) saturate(953%) hue-rotate(168deg) brightness(101%) contrast(106%);
}
.banner-bottom-sec {
  position: relative;
  margin-top: -110px;
  margin-bottom: 1%;
}
.banner-bottom-part {
  background: #daf3ff;
  padding: 45px 35px;
  border-radius: 8px;
}
.small-title {
  font-size: 15px;
  color: #020202;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 5px;
}
.banner-bottom-title {
  font-size: 28px;
  font-weight: bold;
  text-transform: uppercase;
  color: #020202;
  line-height: 30px;
}
.call-b2 {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 19px;
  font-weight: bold;
  color: #010101;
  margin-top: 10px;
}
.call-b2 a {
  color: #010101;
  transition: ease 0.5s all 0s;
}
.call-b2 a:hover {
  color: #08c;
}
.contact-form-part .form-control {
  border: 2px solid #1d1d1d !important;
  border-radius: 5px;
  box-shadow: none;
  margin-top: 12px;
  padding: 0px 12px;
  color: #000;
  font-size: 16px;
  min-height: 48px;
}
.contact-form-part select.sp {
  background: url("../images/dropdown.png") no-repeat center right 10px;
  padding-right: 30px;
}
.contact-form-part .form-control.message {
  height: 48px;
  padding: 7px 12px;
  resize: none;
}
.contact-form-part .submit-btn {
  display: block;
  background: #0088cc;
  border: none;
  border-radius: 50px;
  color: #fff;
  font-size: 15px;
  font-weight: 500;
  padding: 13px 25px;
  margin-top: 12px;
  width: 100%;
}
.affordable-sec {
  padding: 40px 0 50px;
  position: relative;
}
.affordable-left {
  padding-right: 36px;
}
.aff-text {
  color: #474747;
  margin-top: 10px;
  font-size: 15px;
  font-weight: 500;
}
.aff-btn a {
  display: inline-block;
  vertical-align: middle;
  background: #0088cc;
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  padding: 9px 30px 9px;
  text-transform: uppercase;
  border-radius: 50px;
  margin: 22px 2px 0 0;
  transition: ease 0.5s all 0s;
}
.aff-btn a:hover {
  background: #111212;
}
.aff-btn a:last-child {
  background: #111212;
  padding: 9px 24px 9px;
}
.aff-btn a:last-child:hover {
  background: #0088cc;
}
.affordable-right {
  padding-left: 5%;
}
.box1 {
  text-align: center;
  padding: 15px 10px 26px;
  box-shadow: 0px 14px 21.84px 2.16px rgba(0, 0, 0, 0.13);
  border-radius: 5px;
  background: #fff;
  min-height: 100%;
}
.box1-title {
  font-size: 18px;
  font-weight: bold;
  color: #181717;
  margin-top: 18px;
}
.box1-btn {
  display: inline-block;
  background: #fff;
  color: #020202;
  font-size: 14px;
  font-weight: 500;
  padding: 9px 29px 8px;
  border-radius: 50px;
  margin-top: 20px;
  transition: ease 0.5s all 0s;
  border: 2px solid #000 !important;
}
.box1-btn:hover {
  background: #000;
  color: #08c;
  border: 2px solid #08c !important;
}
.f-phone {
  position: absolute;
  width: 350px;
  right: 0;
  bottom: 0;
  z-index: -1;
}
.repair-service-sec {
  background: url(../images/repair-bg.jpg) #0e0e0e center top;
  background-size: cover;
  padding: 50px 0 60px;
}
#service-slider {
  margin-top: 24px;
}
#service-slider .item {
  margin: 10px 8px;
  padding: 32px 18px 5px;
  background: url(../images/shape1.png) #fff no-repeat top;
  background-size: 100%;
  border-radius: 5px;
  overflow: hidden;
  min-height: 100%;
}
#service-slider .owl-stage {
  display: flex;
}
#service-slider .owl-stage-outer {
  padding-bottom: 11px;
}
#service-slider .owl-prev,
#service-slider .owl-next {
  border: none;
  background: transparent;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  padding: 0;
  font-weight: normal;
}
#service-slider .owl-prev {
  left: -45px;
}
#service-slider .owl-next {
  right: -45px;
}
#service-slider .owl-prev span,
#service-slider .owl-next span {
  font-size: 65px;
  line-height: 20px;
  width: 35px;
  height: 40px;
  display: block;
  padding: 7px 0;
  border-radius: 50%;
  color: #fff;
}
#service-slider .owl-dots {
  display: none;
}
.icon img {
  background: #0088cc;
  border-radius: 50%;
}
.prob-title {
  font-size: 17px;
  font-weight: bold;
  color: #020202;
  margin-top: 22px;
  line-height: 1.2;
  text-transform: uppercase;
}
.service-sec {
  padding: 50px 0;
  position: relative;
}
.row-top {
  margin-top: 35px;
}
.box2 {
  display: flex;
  align-items: start;
  gap: 15px;
  color: #3c3c3c;
  font-size: 14px;
  margin-top: 30px;
  line-height: 1.4;
}
.box2 strong {
  display: block;
  font-size: 16px;
  font-weight: bold;
  line-height: 16px;
  color: #000;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.no {
  background: #ddf3ff;
  text-align: center;
  text-transform: uppercase;
  min-width: 80px;
  padding: 12px 0 10px;
  border-radius: 6px;
  color: #0088cc;
}
.no strong {
  font-size: 40px;
  display: block;
  line-height: 40px;
  margin-bottom: 0;
  color: #0088cc;
}
.phone1 {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 360px;
}
.guarantee-sec {
  background: #0996dc;
  padding: 50px 0;
}
.box3-top {
  margin-top: 30px;
}
.box3 {
  color: #fff;
  font-size: 14px;
  line-height: 1.4;
}
.box3 strong {
  display: block;
  margin-top: 15px;
  font-size: 17px;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 2px;
}
.box3 img {
  max-width: 94px;
}
.review-sec {
  padding: 50px 0;
}
.google-review {
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 15px;
  font-weight: 600;
  color: #010101;
  line-height: 1.3;
}
.google-review strong {
  display: flex;
  font-weight: 600;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  margin-top: 5px;
}
.review-part {
  margin-top: 35px;
}
.review-box {
  background: #f1f1f1;
  padding: 25px 20px;
  min-height: 100%;
  border-radius: 8px;
}
.star img {
  width: 20px !important;
}
.review-text {
  font-size: 14px;
  color: #000;
  margin-top: 10px;
  max-height: 84px;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: #0996dc #3f3f3f;
  padding-right: 7px;
}
.user {
  margin-top: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 600;
  color: #000;
}
.user img {
  width: 44px;
}
.gallery-sec {
  background: #e7f5ff;
  padding: 50px 0 30px;
  overflow: hidden;
}
#gallery-slider {
  margin: 30px 0 0;
  margin-left: 2px;
}
#gallery-slider .item {
  margin: 10px 0;
  border-radius: 8px;
  overflow: hidden;
}
#gallery-slider .item img {
  width: 100%;
  border-radius: 8px;
  transition: ease 0.5s all 0s;
}
#gallery-slider .owl-item.center .item img {
  transform: scale(1.1);
}
#gallery-slider .owl-item .item img {
  border-radius: 8px;
  transform: scale(0.9);
  transition: ease 0.5s all 0s;
}
#gallery-slider .owl-stage {
  display: flex;
}
#gallery-slider .owl-stage-outer {
  padding-bottom: 5px;
}
#gallery-slider .owl-prev,
#gallery-slider .owl-next {
  display: none;
}
#gallery-slider .owl-dots {
  display: none;
  transform: scale(1.1);
}
.blog-sec {
  padding: 50px 0;
}
.blog-top {
  margin-top: 25px;
}
.blog {
  box-shadow: 0 2px 7px -2px #0000009e;
  border-radius: 6px;
  min-height: 100%;
  overflow: hidden;
}
.blog-img img {
  width: 100%;
}
.blog-content {
  padding: 25px 15px;
}
.blog-date {
  font-size: 14px;
  color: #434040;
  font-weight: 500;
}
.blog-title {
  font-size: 18px;
  font-weight: 600;
  line-height: 1.2;
  margin-top: 10px;
  color: #000;
}
.blog-text {
  font-size: 15px;
  margin-top: 12px;
  color: #000;
  line-height: 1.4;
}
.blog-btn {
  display: inline-block;
  background: #0088cc;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  padding: 10px 19px 9px;
  border-radius: 50px;
  text-transform: uppercase;
  margin-top: 20px;
  transition: ease 0.5s all 0s;
}
.enquiry-sec {
  background: url(../images/enquiry-bg.jpg) no-repeat #1a1a1a center top;
  position: relative;
  padding: 50px 0 100px;
  z-index: 9;
}
.enquiry-sec:after {
  background: url(../images/curv2.png) no-repeat;
  background-position: bottom;
  background-size: 100%;
  position: absolute;
  width: 100%;
  height: 125px;
  bottom: 0;
  left: 0;
  right: 0;
  content: "";
  z-index: -1;
}
.enquiry-left .aff-btn a:hover {
  background: #fff;
  color: #08c;
}
.enquiry-left .aff-btn a:last-child {
  background: #fff;
  color: #000;
}
.enquiry-left .aff-btn a:last-child:hover {
  background: #08c;
  color: #fff;
}
.location-right {
  padding-left: 8%;
}
.loc ul {
  margin: 0;
  padding: 0;
}
.loc ul li {
  background: url(../images/loc2.png) no-repeat;
  list-style: none;
  padding-left: 40px;
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.loc ul li a {
  color: #fff;
  line-height: 32px;
  display: inline-block;
  transition: ease 0.5s all 0s;
}
.loc ul li a:hover {
  color: #08c;
}
.footer {
  background: #00699d;
  padding: 30px 0 50px;
}
.foot_title {
  font-size: 18px;
  color: #fff;
  font-weight: bold;
  margin-bottom: 15px;
  text-transform: uppercase;
  line-height: 1.3;
}
.foot_text {
  color: #fff;
  font-size: 14px;
}
.foot1 {
  margin: 0;
  padding: 0;
}
.foot1 li {
  color: #fff;
  list-style: none;
  margin-bottom: 5px;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
}
.foot_box {
  background: #05354d;
  padding: 30px 20px;
  margin-right: 20px;
}
.foot1.second li {
  display: flex;
  align-items: center;
  text-transform: none;
  gap: 10px;
  margin-bottom: 8px;
  font-size: 14px;
}
.foot1 li a {
  color: #fff;
  transition: ease 0.5s all 0s;
}
.foot1 li a:hover {
  color: #000;
}
.foot1.second li a:hover {
  color: #2eb9ff;
}
.foot_social a {
  margin-right: 6px;
}
.subscribe-btn {
  display: inline-block;
  vertical-align: middle;
  background: #000;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  padding: 10px 24px;
  text-transform: uppercase;
  border-radius: 50px;
  margin-top: 25px;
  cursor: pointer;
  transition: ease 0.5s all 0s;
}
.foot_left {
  padding-left: 22px;
}
.line1 {
  position: relative;
}
.line1::before {
  position: absolute;
  width: 1px;
  height: 100%;
  background: #e0edff26;
  top: 0;
  left: -7px;
  content: "";
}
.copyright {
  text-align: center;
  background: #0088cc;
  padding: 15px 0;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
}
#back2Top {
  width: 40px;
  height: 40px;
  line-height: 22px;
  z-index: 999;
  padding-top: 7px;
  cursor: pointer;
  position: fixed;
  bottom: 52px;
  right: -10%;
  color: #fff;
  background: #000;
  text-align: center;
  opacity: 0;
  transition: ease 0.5s all 0s;
}
#back2Top.show {
  opacity: 1;
  right: 0;
}
.inner_pg_info {
  padding: 50px 0;
}
.inner_page_banner {
  background: url(../images/inner-banner.jpg) no-repeat center bottom;
  background-size: cover;
  padding: 130px 0;
  margin-top: 128px;
  text-align: center;
  margin-bottom: 50px;
  position: relative;
}
.inner_page_banner:before {
  width: 100%;
  height: 100%;
  background: #000000a3;
  position: absolute;
  top: 0;
  left: 0;
  content: "";
}
.inner_page_banner .container {
  position: relative;
  z-index: 9;
}
.inner_page_banner_heading {
  color: #fff;
  font-weight: 600;
  font-size: 28px;
  line-height: 30px;
  margin-bottom: 5px;
  text-transform: uppercase;
}
.inner-page {
  padding: 0 0 50px;
}
.inner_page_banner .breadcrumb {
  font-size: 14px;
  justify-content: center;
}
.inner_page_banner .breadcrumb-item.active,
.inner_page_banner .breadcrumb-item a,
.inner_page_banner .breadcrumb-item+.breadcrumb-item::before {
  color: #fff;
}
.abt-title {
  font-size: 24px;
  font-weight: bold;
  color: #020202;
  margin-bottom: 10px;
  line-height: 1.2;
}
.abt-title strong {
  font-weight: bold;
  color: #004aad;
}
.abt-title.dup {
  font-size: 20px;
  margin-top: 15px;
  color: #1e1d1e;
}
.ab-inner-text {
  color: #474747;
  font-size: 16px;
}
.ab-inner ul {
  padding: 0px;
  margin: 15px 0 0;
}
.ab-inner ul li {
  background: url(../images/right-arw2.png) no-repeat;
  background-position: top 2px left;
  list-style: none;
  padding-left: 30px;
  margin-bottom: 6px;
  color: #474747;
  background-size: 21px;
}
.iner-sec {
  background: #e7f5ff;
  margin-top: 40px;
  padding: 50px 0;
}
.bottom-sec {
  padding: 40px 15px;
  margin-top: 40px;
  background: linear-gradient(180deg, rgb(0, 136, 204) 0%, rgb(6, 75, 110) 78%);
  border-radius: 5px;
}
.bottom-sec .abt-title,
.bottom-sec .ab-inner-text {
  color: #fff;
}
.iner-btn {
  margin-top: 35px;
}
.iner-btn a {
  display: inline-block;
  background: #111212;
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  padding: 10px 24px;
  text-transform: uppercase;
  border-radius: 50px;
  margin-top: 10px;
  transition: ease 0.5s all 0s;
}
.iner-btn a:hover {
  background: #0088cc;
}
.contact-left {
  height: 100%;
  padding: 35px 25px 25px;
}
.info-text {
  color: #000;
  text-transform: uppercase;
  font-size: 22px;
  padding-bottom: 10px;
  font-weight: bold;
}
.contact_top_number {
  font-size: 17px;
  font-weight: 500;
  position: relative;
  padding-left: 35px;
  margin-top: 12px;
  color: #000;
}
.contact_top_number img {
  position: absolute;
  top: 1px;
  left: 0;
}
.contact_top_number a {
  color: #000;
}
.contact-right {
  background: #08c;
  padding: 35px 25px 25px;
}
.info-text.second {
  color: #fff;
}
.contact-right .contact-form-part .form-control {
  border: none !important;
  margin-top: 9px;
  padding: 12px 12px;
}
.contact-right .contact-form-part select.form-control {
  background-image: url(../images/dropdown.png);
  background-repeat: no-repeat;
  background-position: center right 20px;
}
.contact-right .form-control.message {
  height: 110px;
}
.contact-right .contact-form-part .submit-btn {
  background: #121212;
  margin-top: 16px;
  cursor: pointer;
}
.apply-now-sec .contact-form-part .submit-btn {
  font-size: 18px;
  width: auto;
  margin: 25px auto 0;
  padding: 7px 60px;
}
/* Repair */
.inner_pg_info {
  padding: 50px 0;
}
.repair_page_fixed_section {
  margin-top: 128px;
}
.repair_page_fixed_section .progress {
  height: 5px;
  margin-bottom: 0px;
  background-color: #ccc;
  border-radius: 0;
  box-shadow: none;
}
.repair_page_fixed_section .progress-bar {
  background-color: #05354d;
}
.repair_page_topbar {
  background: #009eed;
  overflow: hidden;
}
.repair_page_topbar_block {
  position: relative;
  padding: 15px 12px;
}
.repair_page_topbar_block1:after,
.repair_page_topbar_block2:after,
.repair_page_topbar_block3:after {
  width: 25px;
  height: 100%;
  background: #0086c9;
  clip-path: polygon(0 0, 0 100%, 100% 55%);
  position: absolute;
  top: 0;
  right: 0;
  content: "";
}
.repair_page_topbar_heading {
  color: #fff;
  font-size: 16px;
  font-weight: 500;
}
.repair_page_topbar_text {
  color: #fff;
  font-weight: 500;
  font-size: 18px;
  line-height: 1.2;
}
.repair_page_main_heading {
  font-size: 26px;
  color: #020202;
  text-transform: uppercase;
  position: relative;
  font-weight: bold;
  text-align: center;
  line-height: 30px;
  margin-bottom: 10px;
}
.row-top2 {
  margin-top: 20px;
}
.repair_device_block {
  margin-top: 20px;
}
.repair_device_box1 {
  text-align: center;
  border-radius: 8px;
  border: 1px solid #eaeaea;
  background: #fff;
  padding: 25px 10px;
  box-shadow: 0px 0px 19px 0px rgb(0 0 0 / 10%);
  min-height: 100%;
}
.model_image img {
  width: 110px;
}
.repair_device_block_text {
  font-size: 18px;
  font-weight: 600;
  color: #111;
  margin-top: 15px;
  line-height: 1.1;
}
.repair_result_image {
  text-align: center;
}
.repair_model_div {
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: #fff;
  margin: 0 auto;
  margin-bottom: 35px;
  box-shadow: 0 0 6px #0000004f;
}
.repair_model_img {
  max-width: 70%;
  padding: 60px 0;
}
.repair_spec_block img {
  max-width: 50px;
}
.repair_spec_border {
  border-right: 1px solid #0000004f;
}
.repair_spec_block_heading {
  font-weight: 600;
  color: #000;
  font-size: 17px;
  text-transform: uppercase;
  margin-top: 15px;
}
.repair_spec_block_text {
  color: #000;
  font-size: 14px;
  margin-top: 5px;
}
.repair_main_info_box {
  background: #545454;
  border-radius: 8px;
  padding: 25px;
  margin-top: 30px;
}
.repair_main_info_box_title {
  font-size: 22px;
  color: #fff;
  position: relative;
  padding-right: 115px;
  font-weight: 600;
  line-height: 1.2;
}
.repair_main_info_box_price {
  font-size: 24px;
  position: absolute;
  top: 0;
  right: 0;
}
.repair_main_info_box_line {
  background: rgba(255, 255, 255, 0.25);
  height: 1px;
  width: 100%;
  margin: 20px auto;
}
.repair_details_offer {
  font-size: 18px;
  color: #131414;
  margin: 25px 0 15px;
  font-weight: 600;
}
.checkbox_container {
  display: block;
  position: relative;
  padding-left: 27px;
  margin-top: 12px;
  cursor: pointer;
  font-size: 16px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  font-weight: 500;
  color: #000;
}
.checkbox_container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}
.checkbox_container .checkmark {
  position: absolute;
  top: 2px;
  left: 0;
  height: 20px;
  width: 20px;
  background-color: #d8d6d6;
}
.checkbox_container:hover input~.checkmark {
  background-color: #0088cc;
}
.checkbox_container input:checked~.checkmark {
  background-color: #0088cc;
}
.checkbox_container .checkmark:after {
  content: "";
  position: absolute;
  display: none;
}
.checkbox_container input:checked~.checkmark:after {
  display: block;
}
.checkbox_container .checkmark:after {
  left: 8px;
  top: 4px;
  width: 5px;
  height: 10px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
.repair_main_info_box_line2 {
  background: rgba(0, 0, 0, 0.25);
  height: 1px;
  width: 100%;
  margin: 20px auto;
}
.repair-btn {
  border: none;
  display: inline-block;
  background: #0e0e0e;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  padding: 11px 30px 9px;
  text-transform: uppercase;
  border-radius: 50px;
  margin: 15px 6px 0 0;
  transition: ease 0.5s all 0s;
}
.repair-btn:hover {
  background: #0088cc;
}
.booking_page_inner .form-control {
  border: 1px solid #1d1d1d !important;
}
.booking_page_inner .form-control.message {
  height: 115px;
}
.book_now_page_item {
  margin-top: 22px;
  padding: 24px 10px 24px 122px;
  position: relative;
  min-height: 120px;
  background: #f5f5f5;
  border-radius: 8px;
  border: 1px solid #bebdbd;
}
.book_now_page_item img {
  position: absolute;
  width: 100px;
  top: 20px;
  left: 10px;
  border: 1px solid #ddd;
  background: #fff;
  padding: 10px;
  border-radius: 8px;
}
.book_now_page_item_name {
  color: #222;
  font-weight: 600;
  font-size: 18px;
}
.book_now_page_item_text {
  color: #666;
  font-size: 15px;
  font-weight: 500;
}
.book_now_page_item a {
  color: #d21717;
}
.calender-left {
  border: 1px solid #c7c4c4;
  min-height: 200px;
  border-radius: 10px;
}
.time-right {
  border: 1px solid #c7c4c4;
  padding: 30px 20px;
  border-radius: 10px;
}
.checkbox_container2 {
  display: inline-block;
  width: 47%;
  position: relative;
  margin: 0 5px 10px;
  cursor: pointer;
  font-size: 16px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  font-weight: 500;
  color: #000;
  border: 1px solid #000;
  padding: 10px 10px;
  text-align: center;
}
.checkbox_container2 input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}
.checkbox_container2 input:checked~.checkmark {
  background-color: #0088cc;
}
.checkbox_container2:has(input:checked) {
  background-color: #0088cc;
  color: #fff;
  border-color: #0088cc;
}
.choose_profile_sec {
  margin-top: 30px;
}
.checkbox_container3 {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  width: 47%;
  position: relative;
  margin: 0 5px 10px;
  cursor: pointer;
  font-size: 16px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  color: #fff;
  padding: 12px 12px;
  text-align: left;
  background: #535353;
  border-radius: 5px;
}
.checkbox_container3 input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}
.checkbox_container3:has(input:checked) {
  background: #0088cc;
  color: #fff;
}
.checkbox_container3 img {
  max-width: 46px;
}
.profile_name {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.3;
}
.profile_address {
  font-size: 15px;
}
.choose_profile_price {
  margin-top: 10px;
  margin-left: 5px;
  font-size: 18px;
  font-weight: 500;
}
.choose_profile_price strong {
  font-size: 20px;
  font-weight: 600;
}
#testimonial-slider .owl-nav {
  display: none !important;
}
.repair-step-back {
  max-width: 1200px;
  margin: 12px auto 0;
  padding: 0 15px;
}
.repair-back-btn {
  display: inline-block;
  background: #ffffff;
  border: 1px solid #6c6c6c;
  border-radius: 6px;
  padding: 7px 20px 7px 14px;
  color: #007dc5;
  font-size: 15px;
  font-weight: 500;
  transition: all 0.2s ease;
  margin-top: -45px;
  float: right;
  position: relative;
  z-index: 9;
}
.repair-back-btn img {
  max-width: 19px;
  margin-right: 8px;
  margin-top: -2px;
}
.repair-back-btn:hover {
  background: #f5f9fc;
  border-color: #007dc5;
}
.repair_main_info_box.two {
  max-width: 500px;
  margin: 0 auto 0;
}
.repair_main_info_box_bottom.two {
  text-align: center;
}
.repair_main_info_box_bottom.two .repair-btn {
  margin: 25px 0 0;
}
.np-new {
  margin-top: 35px;
}
.np-new .repair_spec_block {
  text-align: center;
}
.toast-container {
  position: fixed !important;
  z-index: 999999 !important;
  top: 20px !important;
  right: 20px !important;
  max-width: 320px !important;
}
.toast-container .ngx-toastr {
  border-radius: 14px !important;
  padding: 14px 18px 14px 18px !important;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
  font-weight: 500;
  overflow: hidden;
  backdrop-filter: blur(4px);
}
.toast-warning {
  background: linear-gradient(135deg, #1fbec7, #0b79b7) !important;
  color: #ffffff !important;
}
.toast-error {
  background: linear-gradient(135deg, #f02d2d, #ff0000) !important;
  color: #ffffff !important;
}
.toast.success {
  background: linear-gradient(135deg, #1fbec7, #0b79b7) !important;
  color: #ffffff !important;
}
.toast-title {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 3px;
}
.toast-message {
  font-size: 13px;
  opacity: 0.92;
  line-height: 1.45;
}
.toast-container .ngx-toastr {
  position: relative !important;
}
.toast-close-button {
  position: absolute;
  top: 10px;
  right: 12px;
  font-size: 16px;
  background: transparent !important;
  color: #ffffff !important;
  opacity: 0.7;
  border: none !important;
  box-shadow: none !important;
}
.toast-close-button:hover {
  opacity: 1;
}
.toast-progress {
  height: 3px !important;
  background: rgba(255, 255, 255, 0.9) !important;
  border-radius: 0 0 14px 14px;
}
.pac-container {
  z-index: 999999 !important;
}
/* .schedule-modal-body,
.modal-body {
overflow: visible !important;
} */
.toast-container {
  z-index: 999999 !important;
}
.payment-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 15, 20, 0.65);
  backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}
/* Modal box */
.payment-modal {
  width: 420px;
  max-width: 92%;
  background: #ffffff;
  border-radius: 20px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
  overflow: hidden;
  animation: modalPop 0.25s ease;
}
@keyframes modalPop {
  from {
    transform: translateY(20px) scale(0.95);
    opacity: 0;
  }
  to {
    transform: translateY(0) scale(1);
    opacity: 1;
  }
}
/* Header */
.payment-header {
  display: flex;
  align-items: center;
}
.inr-loc ul {
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.inr-loc ul li {
  background: url(../images/loc4.png) no-repeat;
  list-style: none;
  padding-left: 22px;
  font-size: 15px;
  font-weight: 500;
  text-transform: uppercase;
  margin-bottom: 8px;
  background-size: 15px;
  background-position: 0 2px;
  color: #000;
}
.inr-loc ul li a {
  color: #000;
  transition: ease 0.5s all 0s;
}
.inr-loc ul li a:hover {
  color: #08c;
}
.noprice {
  font-size: 15px !important;
}
.repair-overlay-loader {
  position: fixed;
  inset: 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(6px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
}
/* core */
.repair-loader-core {
  position: relative;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #fff;
  box-shadow:
    0 0 0 1px rgba(0, 136, 204, 0.12),
    0 8px 20px rgba(0, 136, 204, 0.25),
    0 0 22px rgba(0, 136, 204, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: coreGlow 1.6s ease-in-out infinite;
}
/* main spinning ring */
.repair-loader-core::before {
  content: "";
  position: absolute;
  inset: -5px;
  border-radius: 50%;
  border: 3px solid rgba(0, 136, 204, 0.2);
  border-top-color: #0088cc;
  animation: cleanSpin 0.9s linear infinite;
}
/* subtle outer pulse ring */
.repair-loader-core::after {
  content: "";
  position: absolute;
  inset: -10px;
  border-radius: 50%;
  border: 1px solid rgba(0, 136, 204, 0.25);
  animation: ringPulse 1.6s ease-out infinite;
}
/* logo */
.repair-loader-core img {
  width: 26px;
  height: 26px;
  object-fit: contain;
}
/* animations */
@keyframes cleanSpin {
  to {
    transform: rotate(360deg);
  }
}
@keyframes coreGlow {
  0%,
  100% {
    box-shadow:
      0 0 0 1px rgba(0, 136, 204, 0.12),
      0 8px 20px rgba(0, 136, 204, 0.25),
      0 0 22px rgba(0, 136, 204, 0.35);
  }
  50% {
    box-shadow:
      0 0 0 1px rgba(0, 136, 204, 0.25),
      0 12px 28px rgba(0, 136, 204, 0.4),
      0 0 32px rgba(0, 136, 204, 0.55);
  }
}
@keyframes ringPulse {
  0% {
    transform: scale(0.9);
    opacity: 0.8;
  }
  100% {
    transform: scale(1.15);
    opacity: 0;
  }
}
.blue-success-icon.swal2-success .swal2-success-ring {
  border-color: #08c !important;
}
.blue-success-icon.swal2-success .swal2-success-line-tip,
.blue-success-icon.swal2-success .swal2-success-line-long {
  background-color: #08c !important;
}
.blue-success-icon.swal2-success .swal2-success-fix {
  background-color: transparent !important;
}
.repair-summary-card {
  background: #ffffff;
  border-radius: 12px;
  margin: 15px 0;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  border: 1px solid #eaeaea;
}
.repair-summary-card .card-header {
  background: #000;
  color: #fff;
  font-weight: 600;
  font-size: 15px;
  padding: 10px 15px;
}
.repair-summary-card .card-body {
  padding: 15px;
}
.repair-summary-card .item {
  display: flex;
  flex-direction: column;
  margin-bottom: 10px;
}
.repair-summary-card .item span {
  font-size: 12px;
  color: #888;
}
.repair-summary-card .item strong {
  font-size: 14px;
  color: #222;
}
.subscribe-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}
.subscribe-modal {
  background: #fff;
  padding: 44px 24px 30px;
  border-radius: 12px;
  width: 470px;
  text-align: center;
  position: relative;
  animation: fadeIn 0.3s ease;
  border-radius: 10px;
}
@keyframes fadeIn {
  from {
    transform: scale(0.8);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}
.modal-title2 {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 15px;
  color: #0088cc;
}
.close-btn {
  position: absolute;
  top: 12px;
  right: 10px;
  border: none;
  background: transparent;
  font-size: 25px;
  font-weight: bold;
  line-height: 25px;
}
.subscribe-modal .contact-form-part .form-control {
  border: 1px solid #afacac !important;
  margin-top: 9px;
}
.subscribe-modal .contact-form-part .submit-btn {
  padding: 10px 30px;
  margin: 20px auto 0;
  width: auto;
  font-size: 15px;
}
.error {
  color: red;
  font-size: 12px;
}
.modal-header-custom {
  text-align: center;
  margin-bottom: 20px;
}
.modal-header-custom h2 {
  font-size: 22px;
  font-weight: 600;
  color: #0088cc;
  margin-bottom: 5px;
}
.modal-header-custom p {
  font-size: 13px;
  color: #777;
  margin: 0;
}
.humburger-icon {
  font-size: 32px;
  color: #0088cc;
  line-height: 32px;
  display: inline-block;
  font-weight: 900;
}
.offcanvas {
  background: #131313;
  z-index: 9999 !important;
}
.offcanvas-header img {
  width: 182px;
}
.offcanvas-body ul {
  margin: 0;
  padding: 0;
  /* max-height: 420px; */
  overflow-y: scroll;
}
.offcanvas-body ul ul {
  margin-left: 20px;
  max-height: 208px;
  overflow-y: scroll;
}
.offcanvas-body ul li {
  list-style: none;
  position: relative;
}
.offcanvas-body ul li a {
  display: block;
  color: #fff;
  margin-bottom: 5px;
  font-size: 16px;
}
.menu_acc_btn {
  position: absolute;
  top: 10px;
  right: 0;
  background: none !important;
  color: #fafafa !important;
  font-size: 18px;
  font-weight: 500;
  padding: 0 7px;
  z-index: 99;
  border: none;
  line-height: 12px;
}
.btn-close {
  opacity: 1 !important;
  filter: brightness(0) saturate(100%) invert(97%) sepia(100%) saturate(0%) hue-rotate(217deg) brightness(113%) contrast(100%);
}
.btn-close:focus {
  box-shadow: none !important;
  outline: none !important;
}
.footer_fixed_buttons {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  text-align: center;
  z-index: 99;
}
.footer_btn1 {
  background: #0077b6;
  color: #fff !important;
  width: 50%;
  float: left;
  padding: 10px 0;
  font-weight: 600;
}
.footer_btn2 {
  background: #fff;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, 0);
  height: 44px;
  width: 44px;
  border-radius: 50%;
  padding: 9px 8px;
}
.footer_btn3 {
  background: #262525;
  color: #fff !important;
  width: 50%;
  float: left;
  padding: 10px 0;
  font-weight: 600;
}



.blog-page-heading{
  font-size: 22px;
  font-weight: bold;
  color: #020202;
  margin-top: 24px;
  margin-bottom: 10px;
  line-height: 1.2;  
}
.blog-page-date {
  color: #08c;
  font-weight: 600;
  font-size: 15px;
  margin-bottom: 15px;
}
.blog-page-box .ab-inner-text strong{
  font-size: 18px;
}
.blog-page-box ul{
  margin: 15px 0 0;
}
.blog-page-box ul li{
  margin-top: 5px;
  color: #474747;
}
.fq-box{
  margin-top: 12px;
  overflow: hidden;
}
.fq-title{
  color: #08c;
  font-size: 16px;
  font-weight: 600;
}
.fq-text{
  margin-top: 5px;
  color: #000;
  line-height: 1.4;
}
.blog-part-right {
  padding: 20px 16px;
  box-shadow: 0 0 9px -2px #00000080;
}
.blog-right-heading {
  font-weight: bold;
  font-size: 20px;
  position: relative;
  padding-bottom: 7px;
  color: #000;
}
.blog-right-heading:after{
  position: absolute;
  content: "";
  bottom: 0;
  left: 0;
  width: 50px;
  border-bottom: 4px solid #08c;
}
.recent_post{
  margin-top: 20px;
}
.recent_post ul{
  margin: 0;
  padding: 0;
}
.recent_post ul li{
  margin-left: 12px;
  margin-top: 7px;
  font-size: 15px;
}
.recent_post ul li a{
  color: #333232;
}


/*Responsive*/
@media only screen and (min-width : 320px) and (max-width : 567px) {
  .banner img {
    height: 300px;
    object-fit: cover;
  }
  .inr-loc ul {
    grid-template-columns: repeat(1, 1fr);
  }
}
@media only screen and (min-width : 568px) and (max-width : 767px) {
  .inr-loc ul {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media only screen and (min-width : 320px) and (max-width : 1023px) {
  .top-bar, .menu, .cont-btn, .book-btn {
    display: none;
  }
  .header {
    padding: 10px 0;
  }
  .mobile-menu {
    position: fixed;
    top: 15px;
    right: 12px;
  }
  .logo img {
    width: 160px;
  }
  .banner,
  .repair_page_fixed_section {
    margin-top: 62px;
  }
  .banner::after {
    display: none;
  }
  .banner-part {
    max-width: 100%;
  }
  .banner-title {
    font-size: 22px;
    line-height: 26px;
    gap: 12px;
  }
  .banner-title img {
    width: 50px !important;
  }
  .banner-list {
    padding-left: 15px;
  }
  .banner-list ul li {
    font-size: 14px;
  }
  .banner-btn {
    display: none;
  }
  .banner-bottom-sec {
    margin-top: 35px;
  }
  .banner-bottom-part {
    padding: 30px 20px;
  }
  .small-title {
    font-size: 14px;
  }
  .banner-bottom-title {
    font-size: 22px;
    line-height: 25px;
  }
  .call-b2 {
    gap: 9px;
    font-size: 17px;
  }
  .contact-form-part {
    margin-top: 10px;
  }
  .affordable-sec {
    padding: 30px 0 40px;
  }
  .affordable-left {
    padding-right: 0;
  }
  .aff-btn a {
    font-size: 14px;
  }
  .affordable-right {
    padding-left: 0;
    margin-top: 15px;
  }
  .box1-top {
    margin-top: 20px;
  }
  .repair-service-sec {
    padding: 35px 0 40px;
  }
  #service-slider .owl-nav {
    display: none;
  }
  #service-slider .item {
    margin: 5px;
    padding: 20px 15px 5px;
  }
  .icon img {
    width: 65px;
  }
  .prob-title {
    font-size: 16px;
  }
  .service-sec {
    padding: 35px 0 0;
  }
  .box2 {
    gap: 13px;
    font-size: 14px;
    margin-top: 22px;
  }
  .no {
    min-width: 68px;
  }
  .no strong {
    font-size: 25px;
    line-height: 30px;
  }
  .phone1 {
    position: relative;
    margin-top: 45px;
  }
  .guarantee-sec, .review-sec {
    padding: 35px 0;
  }
  .box3-top {
    margin-top: 25px;
  }
  .box3 img {
    max-width: 88px;
  }
  .box3 strong {
    font-size: 16px;
  }
  .google-review {
    gap: 10px;
    font-size: 13px;
    margin-top: 15px;
  }
  .review-part {
    margin-top: 25px;
  }
  .gallery-sec {
    padding: 35px 0 25px;
  }
  #gallery-slider {
    margin-top: 20px;
  }
  .blog-sec {
    padding: 35px 0 40px;
  }
  .blog-content {
    padding: 24px 12px;
  }
  .blog-date {
    font-size: 13px;
  }
  .blog-title {
    font-size: 17px;
  }
  .enquiry-sec {
    padding: 40px 0 30px;
  }
  .enquiry-sec::after {
    display: none;
  }
  .location-right {
    padding-left: 0;
    margin-top: 24px;
  }
  .footer {
    padding: 35px 0 30px;
  }
  .foot_box {
    padding: 20px 15px;
    margin-right: 0;
  }
  .foot_title {
    margin-top: 15px;
  }
  .foot_left {
    padding-left: 12px;
  }
  .line1::before {
    display: none;
  }
  .copyright {
    padding: 15px 0 60px;
  }
  .inner_page_banner {
    padding: 74px 0;
    margin-top: 62px;
    margin-bottom: 30px;
  }
  .inner_page_banner_heading {
    font-size: 22px;
  }
  .inner-page {
    padding: 0 0 30px;
  }
  .abt-title {
    font-size: 20px;
  }
  .abt-title.dup {
    font-size: 18px;
    ;
  }
  .ab-iner-img {
    margin-top: 20px;
  }
  .ab-iner-img img {
    width: 100%;
  }
  .iner-sec {
    margin-top: 35px;
    padding: 35px 0;
  }
  .bottom-sec {
    padding: 35px 10px;
    margin-top: 35px;
  }
  .iner-btn a {
    font-size: 14px;
  }
  .contact-left {
    height: 100%;
    padding: 20px 15px 25px;
  }
  .contact-right {
    padding: 20px 15px 25px;
  }
  .info-text {
    font-size: 20px;
  }
  .repair_page_topbar_block1::after,
  .repair_page_topbar_block2::after,
  .repair_page_topbar_block3::after {
    display: none;
  }
  .inner_pg_info {
    padding: 35px 0;
  }
  .repair_device_block {
    width: 50%;
  }
  .repair_page_main_heading {
    font-size: 22px;
    line-height: 24px;
  }
  .model_image img {
    width: 80px;
  }
  .repair_device_block_text {
    font-size: 15px;
  }
  .row-top2 {
    margin-top: 0;
  }
  .repair-back-btn {
    padding: 7px 12px 7px 8px;
    font-size: 14px;
    margin-top: -40px;
  }
  .repair_result_image {
    margin-top: 30px;
  }
  .repair_model_div {
    width: 310px;
    height: 310px;
  }
  .repair_model_img {
    max-width: 63%;
    padding: 60px 0;
  }
  .repair_main_info_box {
    padding: 25px 14px;
  }
  .repair_main_info_box.two {
    max-width: 100%;
  }
  .repair_main_info_box_title {
    font-size: 18px;
    padding-right: 95px;
  }
  .repair_main_info_box_price {
    font-size: 22px;
  }
  .np-new {
    margin-top: 20px;
  }
  .np-new .repair_spec_block {
    margin-top: 18px;
  }
  .repair_spec_block img {
    max-width: 44px;
  }
  .repair_details_offer {
    line-height: 1.2;
  }
  .checkbox_container {
    font-size: 15px;
  }
  .repair-btn {
    font-size: 15px;
  }
  .repair_spec_border {
    border-right: none;
  }
}

@media only screen and (min-width : 481px) and (max-width : 767px) {
  .banner img {
    height: 384px !important;
    object-fit: cover;
  }
  .banner-part .banner-title img, .banner-btn a:last-child img{
    height: auto !important;
  }
   .banner-title {
    font-size: 22px !important;
    line-height: 26px !important;
  }
   .aff-btn a {
    font-size: 14px !important;
  }
  .box1-top, .box3-top, .blog-top{
    width: 50%;
  }
  .inr-loc ul {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

@media only screen and (min-width : 768px) and (max-width : 1024px) and (orientation : portrait) {
  .book-btn {
    display: inline-block;
    position: fixed;
    top: 12px;
    right: 56px;
  }
  .banner-part {
    max-width: 460px;
  }
  .banner-title {
    font-size: 28px;
    line-height: 30px;
    gap: 12px;
  }
  .banner-list ul {
    margin: 20px 0 0;
  }
  .banner-list ul li {
    font-size: 15px;
  }
  .banner-btn {
    display: block;
  }
  .banner-btn a {
    margin: 25px 4px 0 0;
  }
  .aff-btn a {
    font-size: 12px;
  }
  .box1-img img {
    max-height: 45px;
  }
  .box1-btn {
    font-size: 13px;
    padding: 7px 24px 8px;
  }
  .loc ul li {
    display: inline-block;
    width: 50%;
  }
  .inr-loc ul {
    grid-template-columns: repeat(3, 1fr);
  }
  .repair_page_topbar_block {
    width: 25%;
  }
  .repair_page_topbar_block1::after,
  .repair_page_topbar_block2::after,
  .repair_page_topbar_block3::after {
    display: block;
  }
  .repair_device_block {
    width: 33%;
  }
  .repair_model_div {
    width: 265px;
    height: 265px;
  }
  .repair_model_img {
    max-width: 60%;
    padding: 54px 0;
  }
  .repair_spec_block {
    margin-top: 15px;
  }
}

@media only screen and (min-width : 768px) and (max-width : 1024px) and (orientation : landscape) {
  .cont-btn {
    margin-left: 12px;
    font-size: 13px;
  }
  .book-btn {
    font-size: 13px;
  }
  .menu ul li {
    margin-right: 7px;
  }
  .menu ul li a {
    font-size: 14px;
    padding: 31px 0;
  }
  .header_dropdown_container_inner ul li {
    margin-right: 0;
  }
  .header_dropdown_container_inner ul li a {
    padding: 10px 15px;
  }
  .banner-content {
    top: 46%;
  }
  .banner-title {
    font-size: 32px;
    line-height: 34px;
  }
  .banner-list ul {
    margin: 25px 0 0;
  }
  .banner-bottom-sec {
    margin-top: -75px;
  }
  .banner-bottom-title {
    font-size: 25px;
    line-height: 28px;
  }
  #service-slider .item {
    margin: 10px 5px;
    padding: 32px 9px 5px;
  }
  .icon img {
    width: 65px;
  }
  .prob-title {
    font-size: 15px;
    margin-top: 20px;
  }
  .box1-btn {
    font-size: 13px;
    padding: 7px 22px 7px;
  }
  .no {
    min-width: 72px;
  }
  .no strong {
    font-size: 30px;
    line-height: 35px;
  }
  .phone1 {
    width: 340px;
  }
  .google-review {
    font-size: 12px;
  }
  .google-review strong {
    font-size: 11px;
  }
  .review-text {
    max-height: 58px;
  }
  .blog-title {
    font-size: 16px;
  }
  #service-slider .owl-prev {
    left: -40px;
  }
  #service-slider .owl-next {
    right: -40px;
  }
  .repair_model_img {
    max-width: 64%;
    padding: 72px 0;
  }
}

/* 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) {
  .book-btn {
    display: inline-block;
    position: fixed;
    top: 12px;
    right: 56px;
  }
  .banner-part {
    max-width: 460px;
  }
  .banner-title {
    font-size: 28px;
    line-height: 30px;
    gap: 12px;
  }
  .banner-list ul {
    margin: 20px 0 0;
  }
  .banner-list ul li {
    font-size: 15px;
  }
  .banner-btn {
    display: block;
  }
  .banner-btn a {
    margin: 25px 4px 0 0;
  }
  .aff-btn a {
    font-size: 12px;
  }
  .box1-img img {
    max-height: 45px;
  }
  .box1-btn {
    font-size: 13px;
    padding: 7px 24px 8px;
  }
  .loc ul li {
    display: inline-block;
    width: 50%;
  }
  .inr-loc ul {
    grid-template-columns: repeat(3, 1fr);
  }
  .repair_page_topbar_block {
    width: 25%;
  }
  .repair_page_topbar_block1::after,
  .repair_page_topbar_block2::after,
  .repair_page_topbar_block3::after {
    display: block;
  }
  .repair_device_block {
    width: 33%;
  }
  .repair_model_div {
    width: 265px;
    height: 265px;
  }
  .repair_model_img {
    max-width: 60%;
    padding: 54px 0;
  }
  .repair_spec_block {
    margin-top: 15px;
  }
}

@media only screen and (min-width : 1025px) and (max-width : 1199px) and (orientation : portrait) {

}

@media only screen and (min-width : 1025px) and (max-width : 1199px) and (orientation : landscape) {
  .cont-btn {
    margin-left: 12px;
    font-size: 13px;
  }
  .book-btn {
    display: inline-block;
    font-size: 13px;
  }
  .menu ul li {
    margin-right: 7px;
  }
  .menu ul li a {
    font-size: 14px;
    padding: 31px 0;
  }
  .header_dropdown_container_inner ul li {
    margin-right: 0;
  }
  .header_dropdown_container_inner ul li a {
    padding: 10px 15px;
  }
  .banner-content {
    top: 46%;
  }
  .banner-title {
    font-size: 32px;
    line-height: 34px;
  }
  .banner-list ul {
    margin: 25px 0 0;
  }
  .banner-bottom-sec {
    margin-top: -75px;
  }
  .banner-bottom-title {
    font-size: 25px;
    line-height: 28px;
  }
  #service-slider .item {
    margin: 10px 5px;
    padding: 32px 9px 5px;
  }
  .icon img {
    width: 65px;
  }
  .prob-title {
    font-size: 15px;
    margin-top: 20px;
  }
  .box1-btn {
    font-size: 13px;
    padding: 7px 22px 7px;
  }
  .no {
    min-width: 72px;
  }
  .no strong {
    font-size: 30px;
    line-height: 35px;
  }
  .phone1 {
    width: 340px;
  }
  .google-review {
    font-size: 12px;
  }
  .google-review strong {
    font-size: 11px;
  }
  .review-text {
    max-height: 58px;
  }
  .blog-title {
    font-size: 16px;
  }
  #service-slider .owl-prev {
    left: -40px;
  }
  #service-slider .owl-next {
    right: -40px;
  }
  .repair_model_img {
    max-width: 64%;
    padding: 72px 0;
  }
   .loc ul li {
    display: block;
    width: 100%;
  }
   .repair_device_block {
    width: 25%;
  }
  .repair_model_div {
    width: 400px;
    height: 400px;
  }
}

/* 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) {
  .cont-btn {
    margin-left: 12px;
    font-size: 13px;
  }
  .book-btn {
    display: inline-block;
    position: relative;
    top: 0;
    right: 0;
    font-size: 13px;
  }
  .menu ul li {
    margin-right: 7px;
  }
  .menu ul li a {
    font-size: 14px;
    padding: 31px 0;
  }
  .header_dropdown_container_inner ul li {
    margin-right: 0;
  }
  .header_dropdown_container_inner ul li a {
    padding: 10px 15px;
  }
  .banner-content {
    top: 46%;
  }
  .banner-title {
    font-size: 32px;
    line-height: 34px;
  }
  .banner-list ul {
    margin: 25px 0 0;
  }
  .banner-bottom-sec {
    margin-top: -75px;
  }
  .banner-bottom-title {
    font-size: 25px;
    line-height: 28px;
  }
  #service-slider .item {
    margin: 10px 5px;
    padding: 32px 9px 5px;
  }
  .icon img {
    width: 65px;
  }
  .prob-title {
    font-size: 15px;
    margin-top: 20px;
  }
  .box1-btn {
    font-size: 13px;
    padding: 7px 22px 7px;
  }
  .no {
    min-width: 72px;
  }
  .no strong {
    font-size: 30px;
    line-height: 35px;
  }
  .phone1 {
    width: 340px;
  }
  .google-review {
    font-size: 12px;
  }
  .google-review strong {
    font-size: 11px;
  }
  .review-text {
    max-height: 58px;
  }
  .blog-title {
    font-size: 16px;
  }
  #service-slider .owl-prev {
    left: -40px;
  }
  #service-slider .owl-next {
    right: -40px;
  }
  .repair_model_img {
    max-width: 64%;
    padding: 72px 0;
  }
   .loc ul li {
    display: block;
    width: 100%;
  }
   .repair_device_block {
    width: 25%;
  }
  .repair_model_div {
    width: 400px;
    height: 400px;
  }
}

@media screen and (min-width: 1424px) {
  .inner_page_banner{
    padding: 150px 0;
  }
}

@media screen and (min-width: 1624px) {
  .banner:after{
    height: 144px;
    bottom: -4px;
  }
  .enquiry-sec:after {
    bottom: -1px;
  }
  .inner_page_banner{
    padding: 170px 0;
  }
}

@media screen and (min-width: 1920px) {
  .inner_page_banner{
    padding: 210px 0;
  }
}

@media screen and (min-width: 2048px) {
  .banner:after{
    height: 144px;
  }
  .banner-bottom-sec {
    margin-top: -162px;
  }
  .inner_page_banner{
    padding: 230px 0;
  }
}

@media screen and (min-width: 2550px) {
  .enquiry-sec{
    padding-bottom: 140px;
  }
  .inner_page_banner{
    padding: 290px 0;
  }
}
