/* Color Variable */

@import 'color.css';
body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  font-family: 'Raleway', sans-serif;
  background: var(--bg-white);
  color: var(--text-black)
}

ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

a:hover {
  text-decoration: none;
}

.form-control {
  background: var(--white);
  box-sizing: border-box;
  border-radius: 6px;
  height: 45px;
  font-size: 14px;
  color:#000;
  padding: 5px 20px;
  font-weight: 600;
}

.form-control::placeholder {
  color: #c7c3c3;
}

.form-control:focus {
  box-shadow: none;
  outline: none;
  color: var(--text-black);
  border: 1px solid var(--primary) !important;
}

.form-group {
  margin-bottom: 15px;
}

img {
  max-width: 100%;
}

.btn {
  padding: 6px 30px;
  border-radius: 0;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.2s;
}

.btn:focus {
  outline: none;
  box-shadow: none;
}

.btn-info {
  background: var(--btn-info-bg);
  border-color: var(--btn-info-bg);
}

.btn-primary {
  background: var(--btn-primary-bg);
  border-color: var(--btn-primary-bg);
  color: var(--text-white);
}

.text-primary {
  color: #43C4FE !important;
}


/* header*/

header nav {
  width: 100%;
  padding: 20px 15px !important;
  z-index: 999;
}

header .form-control {
  border: none;
  height: 40px;
  border-radius: 30px;
  padding-left: 45px;
  width: 280px !important;
}

header .logo {
  max-width: 120px;
}

header .nav-item {
  padding: 0 8px;
}

header #navbar_main .nav-item img {
  position: relative;
  top: -2px;
}

header .nav-link {
  padding: 10px 0;
  font-size: 16px;
  color: var(--text-black) !important;
  font-weight: 700;
}

header .nav-link .fa-angle-down {
  font-weight: 600;
  font-size: 16px;
}

header .nav-item.active .nav-link {
  color: #009CDE !important;
}

header .nav-link:hover {
  color: var(--text-black) !important;
}

header .navbar-brand img {
  width: 200px;
}

header .btn {
  font-size: 14px;
  color: var(--text-primary) !important;
  padding: 5px 18px !important;
}

header .btn:focus,
header .btn:hover {
  color: var(--text-primary) !important;
  background: var(--bg-white);
}

header .dropdown .dropdown-menu {
  border: none;
  border-radius: 0px;
  box-shadow: 0 1px 5px #00000029;
  padding: 20px 15px;
  background: #ebebeb;
  margin-top: 0;
  color: var(--text-black);
}

header .dropdown .dropdown-menu:after {
  content: "";
  background: #001eff;
  width: 90px;
  height: 2px;
  position: absolute;
  top: 0;
  left: 67px;
}

header .dropdown .dropdown-item {
  color: var(--text-black);
  font-size: 13px;
  padding: 0.25rem 1rem;
  font-weight: 600;
}

header .dropdown hr {
  border-top: 3px solid #001eff;
  width: 90px;
  float: left;
}

header .fa-shopping-cart {
  font-size: 18px;
}

header .dropdown .dropdown-item:hover,
header .dropdown .dropdown-item:focus {
  color: var(--text-primary);
  background: #e9ecef;
}

.menu-section {
  padding-top: 70px;
}

#navbar_main {
  background: var(--header-bg);
  padding: 30px 15px !important;
}

.main-heading {
  text-align: center;
  font-weight: 700;
  color: var(--text-black);
  font-size: 28px;
  margin-bottom: 40px;
  font-family: 'Montserrat', sans-serif;
}


/* Hero */

.hero-section {
  padding: 190px 0 0;
  background-image: url(../../assets/images/hero-bg.png);
  background-size: cover;
  background-position: center;
  color: var(--text-black);
  margin-top: -106px;
}

.hero-section h1 {
  margin-bottom: 20px;
  font-size: 50px;
  font-weight: 700;
  font-family: 'Montserrat', sans-serif;
}

.hero-section .form-group {
  position: relative;
  max-width: 380px;
}

.hero-section .form-group .form-control {
  padding-left: 40px;
  border-radius: 0;
}

.hero-section .form-group .fa-search {
  position: absolute;
  top: 14px;
  left: 15px;
  color: #cfcccc;
}


/* Service */

.service-section {
  padding: 40px 0;
}

.service-section a {
  color: var(--text-black);
}

.service-section .card:hover {
  border: 1px solid #55C7FD;
}

.service-section .card h3 {
  font-weight: 600;
  font-family: 'Montserrat', sans-serif;
}

.service-section .card:hover h3 {
  color: var(--text-primary);
}

.service-section .card {
  border-radius: 8px;
  border: 1px solid var(--white);
  margin-bottom: 20px;
  box-shadow: 0 0px 6px #0000001a;
  min-height: 252px;
}

.service-section .card-body {
  padding: 40px 30px;
}

.service-section .card p {
  margin-bottom: 0;
}

.service-section .card .device-bg {
  width: 150px;
  height: 150px;
  padding: 10px;
  text-align: center;
}

.service-section .card:hover .device-bg {
  background: var(--bg-primary);
  padding: 10px;
  border-radius: 50%;
}


/* Award */

.award-section {
  padding: 50px 0;
}

.award-section .card {
  border-radius: 8px;
  border: none;
  background: var(--bg-gray);
  margin-bottom: 20px;
  box-shadow: 0 0px 6px #0000001a;
}

.award-section .card .media {
  align-items: center;
}

.award-section .card .media img {
  margin-right: 25px;
  max-width:126px;
}

.award-section .card h5 {
  font-weight: 600;
}

.award-section .card p {
  font-size: 14px;
  margin-bottom: 0;
}

.award-section .card a {
  color: #55C7FD;
}

.award-bg {
  background-image: url('../../assets/images/certificate.png');
  padding: 15px;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  margin-bottom: 30px;
}

.award-bg .certi {
  max-width: 110px;
  display: block;
  margin: 0 auto;
}

.award-bg .card p {
  font-size: 10px !important;
}

.award-bg .star {
  width: 70px;
}

.award-bg h6 {
  font-weight: 700;
  font-size: 14px;
}

.award-bg h6 .text-danger {
  color: red !important;
}

.award-bg .card {
  max-width: 220px;
  margin: 0 auto 100px;
  position: relative;
  top: 50px;
  right: -61px;
}


/* Pay Later */

.pay-section {
  padding: 0 0 60px;
}

.pay-section .card {
  border: none;
  background: var(--bg-gray);
  border-radius: 6px;
  border: none;
  background: var(--bg-gray);
  box-shadow: 0 1px 5px #0000001c;
  font-family: 'Montserrat', sans-serif;
  margin-bottom: 20px;
}

.pay-section .card .card-header {
  border-radius: 6px;
  background: var(--bg-primary);
  color: var(--white);
  border: none;
  font-size: 18px;
  font-weight: 700;
}

.pay-section .card .card-header .angle-down {
  width: 18px;
  float: right;
  margin-top: 3px;
}

.pay-section .card .card-body {
  background: var(--bg-gray);
  border-radius: 6px;
  padding: 10px 15px;
  font-size: 14px;
}


/*  Vedio */

.video-section {
  background-image: url('../../assets/images/video-bg.png');
  background-size: cover;
  background-position: center;
  color: var(--white);
  padding: 160px 0 40px;
}

.video-section .video-icon {
  width: 80px;
  margin-top: 15px;
}


/* Learn */

.learn-section {
  background-image: url('../../assets/images/learn-bg.png');
  background-size: cover;
  background-position: center;
  color: var(--white);
  padding: 20px 0 0;
}

.learn-section h1 {
  font-size: 50px;
  font-weight: 600;
  margin-bottom: 25px;
}

.learn-section h6 {
  font-weight: 600;
  font-size: 24px;
  margin-bottom: 0;
}


/* FAQ */

.faq-section {
  padding: 60px 0 80px;
}

.faq-section h2 {
  font-size: 32px;
  margin-bottom: 50px;
}

.faq-section p {
  color: #5268C2;
}

.faq-section .card {
  border: none;
}

.faq-section .card-header {
  background: #5268C2;
  padding: 10px 10px 0;
  border: none;
  border-radius: 15px 15px 0px 0px;
}

.faq-section .nav-tabs {
  border-bottom: none;
}

.faq-section .nav-tabs .nav-link {
  background: #A9B5E5;
  min-width: 180px;
  margin-right: 15px;
  border-radius: 10px 10px 0 0;
  color: #5268C2;
  font-weight: 600;
  padding: 6px 15px;
  margin-bottom: 0px;
}

.faq-section .nav-tabs .nav-item.show .nav-link,
.faq-section .nav-tabs .nav-link.active,
.faq-section .nav-tabs .nav-link:hover {
  background: var(--white);
}

.faq-section .card .card-header .btn-header-link {
  display: block;
  text-align: left;
  background: var(--white);
  color: var(--text-black);
  font-size: 18px;
  padding: 15px 0;
  border-radius: 0;
}

.faq-section .card .card-header .btn-header-link:after {
  content: "\f068";
  font: normal normal normal 14px/1 FontAwesome;
  font-weight: 900;
  float: right;
  border-radius: 50%;
  color: var(--text-black);
  padding: 1px;
  display: block;
  line-height: 14px;
  font-size: 18px !important;
  -webkit-text-stroke: 0.5px var(--white);
  text-align: center;
  margin-top: 6px;
}

.faq-section .card .card-header .btn-header-link.collapsed {
  background: var(--white);
  color: var(--text-black);
  border-radius: 0;
}

.faq-section .card .card-header .btn-header-link.collapsed:after {
  content: "\f067";
  color: var(--text-black);
}

.faq-section .card .collapsing {
  background: var(--white);
  line-height: 30px;
}

.faq-section .accordion .card {
  box-shadow: none;
  border-bottom: 1px solid #dbdada;
}

.faq-section .accordion .card-header {
  background: transparent;
  padding: 0;
}

.faq-section .accordion .card-body {
  padding: 0px 0 10px;
  font-size: 14px;
}

.faq-section .accordion .card-body p {
  text-align: left;
  color: var(--text-black);
}


/* Newsletter */

.newsletter-section {
  padding: 30px 0;
  background: #E1E1E1;
  border-top: 12px solid var(--primary);
}

.newsletter-section .btn {
  height: 45px;
  text-transform: uppercase;
  font-family: 'Montserrat', sans-serif;
  border-radius: 4px;
  margin-left: -2px;
}

.newsletter-section .form-control::placeholder {
  font-size: 16px;
  color: #c1bbbb;
  font-family: 'Montserrat', sans-serif;
}

.newsletter-section img {
  position: absolute;
  right: 0;
  max-width: 200px;
  top: -120px;
}


/* Footer */

footer {
  padding: 80px 0;
  color: var(--text-white);
  background: var(--footer-bg);
  font-family: 'Montserrat', sans-serif;
}

footer .footer-logo {
  max-width: 220px;
  margin-bottom: 25px;
}

footer h5 {
  color: var(--text-white);
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 15px;
  text-transform: uppercase;
}

footer p {
  font-size: 14px;
}

footer ul {
  padding: 0;
}

footer ul li {
  padding: 5px 0;
  line-height: 21px;
}

.footer-link a {
  color: var(--text-primary);
  font-weight: 500;
}

.footer-link a:hover {
  color: var(--text-primary);
}

footer a {
  color: var(--white);
}

footer ul li a {
  color: var(--text-white);
  letter-spacing: 0.9px;
  font-size: 14px;
}

footer ul li a:hover,
footer a:hover {
  color: #8371ff;
}

footer form .input-group-btn {
  position: absolute;
  right: 5px;
  top: 5px;
  z-index: 999;
}

footer form .form-control {
  border-radius: 30px !important;
}

footer form .input-group-btn .btn {
  padding: 8px 16px;
  font-size: 13px;
  background-image: var(--btn-gardient);
  border: none;
}

footer form .input-group-btn .btn:hover {
  background: var(--bg-primary);
}

.social-link li {
  display: inline-block;
  padding: 0 3px !important;
}

.social-link li:first-child {
  padding-left: 0 !important;
}

.social-link li a img {
  max-width: 40px;
}

.footer-blog .media img {
  max-width: 70px;
}

.footer-blog .media h5 {
  font-weight: 600;
  font-size: 13px;
}

.footer-blog .media p {
  color: var(--text-primary);
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 0;
}

.copy-right {
  background: #E1E1E1;
  padding: 18px 0 15px;
}

.copy-right p {
  margin-bottom: 0;
  font-size: 14px;
}

.copy-right a {
  color: var(--text-black);
}

.copy-right a:hover {
  color: var(--text-primary);
}

.navbar-light .navbar-toggler {
  border: none;
  color: var(--text-black);
  display: block;
}

.navbar-light .navbar-toggler span {
  font-size: 28px;
 /* -webkit-text-stroke: 1px var(--primary);*/
}


/* Side Nav */

.sidenav {
  height: 100%;
  width: 0;
  position: fixed;
  z-index: 999;
  top: 0;
  right: 0;
  background-color: #121131;
  overflow-x: hidden;
  transition: 0.5s;
  padding-top: 60px;
  text-align: right;
  color: #fff;
}

.sidenav hr {
  border-top: 1px solid #2c68aa;
  margin: 15px 0;
}

.sidenav-inner {
  width: 280px;
  padding: 15px 25px;
}

.sidenav ul li a {
  padding: 8px 8px;
  text-decoration: none;
  font-size: 14px;
  color: var(--text-white);
  font-weight: 600;
  display: block;
  text-transform: uppercase;
  transition: 0.3s;
}

.sidenav a:hover {
  color: var(--text-primary);
}

.sidenav .closebtn {
  position: absolute;
  top: 5px;
  left: 15px;
  font-size: 28px;
  color: #fff;
}

.sidenav .btn {
  border-radius: 5px;
  text-transform: uppercase;
}

.sidenav li a img {
  width: 25px;
  margin-left: 15px;
}

.sidenav-icon span {
  background-size: contain;
  background-position: center;
  width: 25px;
  height: 25px;
  display: inline-block;
  background-repeat: no-repeat;
  margin-left: 15px;
  position: relative;
  top: 5px;
}

.icon-repair {
  background-image: url('../../assets/images/repair-icon.png');
}

.icon-shield {
  background-image: url('../../assets/images/shield.png');
}

.icon-send {
  background-image: url('../../assets/images/send.png');
}

.icon-about {
  background-image: url('../../assets/images/about.png');
}

.icon-process {
  background-image: url('../../assets/images/process.png');
}

.icon-blogging {
  background-image: url('../../assets/images/blogging.png');
}


/****model-list-page***/

.brand-detail-section-inner  {
   padding:50px 0 100px;      
}

.innerpage-banner-section {
   background-image: url('../../assets/images/model-list-page.png');
   background-size: cover;
   background-position: center;
   padding: 80px 0;
}

.innerpage-banner-section h1 {
   font-size: 36px;
   font-weight: bold;
   font-family: 'Montserrat';
   color: var(--white);
}
  
.innerpage-banner-section p {
   color: #fff;
   font-weight: 600;
   font-size: 22px;
   padding: 0 115px;
   margin-bottom: 0;
   font-family: 'Montserrat';
   line-height: 30px;   
}
.innerpage-banner-section .image_text {
   color: #fff;
   font-weight: 600;
   font-size: 22px;
   padding: 0 115px;
   margin-bottom: 0;
   font-family: 'Montserrat';
   line-height: 30px;
}

.bdsi-section {
   display: flex;
   align-items: end;
   -webkit-box-shadow: 0 1px 6px 0 rgb(32 33 36 / 15%);
    -moz-box-shadow: 0 1px 6px 0 rgba(32, 33, 36, 0.15);
    -o-box-shadow: 0 1px 6px 0 rgba(32, 33, 36, 0.15);
    box-shadow: 0 1px 6px 0 rgb(32 33 36 / 15%);
    padding: 12px 8px;
    border-radius: 8px;
    border: 2px solid transparent;
    margin: 12px 0;
}
.bdsi-section:hover {
   border: 2px solid var(--text-primary);
}
.bdsi-section img {
   max-width: 80px;
   margin-right: 10px;
   height: 80px;
} 

.bdsi-detail h2 {
   margin-bottom: 0;
   font-weight: bold;
   font-family: 'Montserrat';
   font-size: 26px;
   color: var(--black);
}

.bdsi-detail h4 {
   margin-bottom: 0;
   font-weight: 800;
   font-family: 'Montserrat';
   font-size: 14px;
   color: var(--black);
}

.center-section {
   display: flex;
   justify-content: center;
   align-items: center;
}

/***mobile brand***/

.mobile-brand-banner-section {
   background-image: url('../../assets/images/mobile-brand-banner.png');
   background-size: cover;
   background-position: center;
   padding: 80px 0;
}
.mobile-brand-banner-section h1 {
   font-size: 36px;
   font-weight: bold;
   font-family: 'Montserrat';
   color: var(--white);
   margin-bottom: 3px;
}
  
.mobile-brand-banner-section p {
   color: var(--white);
   font-weight: 600;
   font-size: 20px;
   padding: 0 115px;
   margin-bottom: 0;
}

.mobile-brand-section {
   padding: 50px 0 100px;
}
.mbs-inner-section {
   -webkit-box-shadow: 0 1px 6px 0 rgb(32 33 36 / 15%);
   -moz-box-shadow: 0 1px 6px 0 rgba(32, 33, 36, 0.15);
   -o-box-shadow: 0 1px 6px 0 rgba(32, 33, 36, 0.15);
   box-shadow: 0 1px 6px 0 rgb(32 33 36 / 15%);
   border-radius: 8px;
   border: 2px solid transparent;
   margin: 12px 0;
   padding: 35px 0;
}

.mbs-inner-section h2 {
   color: var(--black);
   text-align: center;
   font-size: 60px;
   font-weight: bold;
   font-family: 'Montserrat';
   margin-bottom: 0;
} 

.mbs-inner-section:hover {
   border: 2px solid var(--text-primary);
}
/***end mobile brand***/  

/***mobile product***/
.mobile-product-page {
   background-image: url('../../assets/images/mobile-product-baner.png');
   background-size: cover;
   background-position: center;
   padding: 30px 0;
   background-color: var(--bg-primary);
} 

.mpp-img-section {
   text-align: center;
}

section.mobile-product-page img {
   max-width: 155px;
   display: block;
   margin: 0 auto;
}

.mpp-content-section h1 {
   font-size: 36px;
   color: var(--white);
   font-family: 'Montserrat';
   font-weight: bold;
}

.mpp-content-section p {
   font-size: 16px;
   color: var(--white);
   font-family: 'Montserrat';
   font-weight: 600;
}
.mpp-img-section a.btn-primary {
   background: var(--bg-white);
   border: none;
   color: var(--text-primary);
   font-size: 20px;
   padding: 5px 30px;
   margin-top: 10px; 
   font-family: 'Montserrat';
   text-transform: capitalize;
   font-weight: bold;
}
.product-required-service {
   padding: 50px 0;
}
.product-required-service h2 {
   font-size: 24px;
   color: var(--black);
   text-align: left;
   font-family: 'Montserrat';
   font-weight: bold;
   text-transform: uppercase;
   padding: 0 15px; 
   margin-bottom: 3px;
}
.prs-inner-section {
   position: relative;
   display: flex;
   align-items: center;
   -webkit-box-shadow: 0 1px 6px 0 rgb(32 33 36 / 15%);
   -moz-box-shadow: 0 1px 6px 0 rgba(32, 33, 36, 0.15);
   -o-box-shadow: 0 1px 6px 0 rgba(32, 33, 36, 0.15);
   box-shadow: 0 1px 6px 0 rgb(32 33 36 / 15%);
   padding: 3px 5px;
   border-radius: 8px;
  /* border: 2px solid transparent;*/
   /*margin: 12px 0;*/
} 
.prs-inner-section img {
   max-width: 50px;
   margin-right: 10px;
}
.prs-inner-content-section p {
   margin-bottom: 0;
   color: var(--black);
   font-weight: 600;
   font-family: 'Montserrat';
   line-height: 22px;
   font-size: 14px;
}
.prs-inner-content-section p b {
   color: var(--text-primary);
   font-size: 22px;
}
/* .prs-inner-section span {
   position: absolute;
   right: 0;
} */
.prs-inner-section span.tooltip-text{
  background-color: var(--bg-primary);
  padding: 2px 7px;
  font-size: 15px;
  color: #fff;
  display: inline-block;
  border-radius: 3px;
}
.prs-inner-section span.minute {
   position: absolute;
   top: 4px;
   background-color: var(--bg-primary);
   color: #fff;
   right: -1px;
   font-size: 10px;
   padding: 3px 10px 3px 18px;
   font-weight: 600;
   clip-path: polygon(15% 0%, 100% 1%, 100% 100%, 15% 100%, 0% 50%);
   border-radius: 30px 8px 9 1px;
   /* border-radius: 0 8px 0 0; */
   font-family: 'Montserrat';
}

.product-required-service input[type="checkbox"][id^="myCheckbox"],
.product-required-service input[type="radio"] {
  display: none;
}

.product-required-service label {
   border: 2px solid transparent;
   display: block;
   position: relative;
   cursor: pointer;     
   margin-bottom: 15px;
}

.product-required-service label:before {
  background-color: white;
  color: white;
  content: " ";
  display: block;
  border-radius: 50%;
  border: 1px solid grey;
  position: absolute;
  top: -5px;
  left: -5px;
  width: 25px;
  height: 25px;
  text-align: center;
  line-height: 28px;
  transition-duration: 0.4s;
  transform: scale(0);
  visibility: hidden;
}

.product-required-service :checked + label {
  border-color: #ddd;
   border: 2px solid var(--bg-primary);
   border-radius: 8px;
}

.product-required-service :checked + label:before {
  content: "✓";
  background-color: grey;
  transform: scale(1);
}

.sps-inner span i {
   font-size: 24px;
   vertical-align: top;
   color: #00d257;
   padding-right: 5px;
}
.sps-inner {
   /*font-size: 14px;*/
    font-size: 11px;
   font-family: 'Montserrat';
   font-weight: bold;
   align-items: center;
   -webkit-box-shadow: 0 1px 6px 0 rgb(32 33 36 / 15%);
   -moz-box-shadow: 0 1px 6px 0 rgba(32, 33, 36, 0.15);
   -o-box-shadow: 0 1px 6px 0 rgba(32, 33, 36, 0.15);
   /* box-shadow: 0 1px 6px 0 rgb(32 33 36 / 15%); */
   padding: 10px 10px;
   margin: 8px 0;
   border-radius: 5px;
}  
.sps-inner span {
   font-size: 14px;
   font-family: 'Montserrat';
   font-weight: bold;
}

.selected-product-services {
   padding: 0 20px;
}

.total-prices tr.showhide_total_prices td {
   font-size: 26px;
   font-family: 'Montserrat';
   font-weight: 800;
}

.total-prices tr.showhide_total_cost_section .total {
   font-size: 20px;
   font-family: 'Montserrat';
   font-weight: 800;
   padding: 10px 0;
}
.total-prices td.prices {
   font-size: 17px; 
   font-weight: 500 ;
    padding: 10px 0;
}
table.total-prices {
   border-top: 2px solid #ebebeb;
   width: 96%;
    margin: 15px auto 0 auto;
}
.total-prices tr.showhide_total_prices td {
   padding: 5px 0;
}
.total-prices tr.showhide_total_prices {
    border-bottom: 2px solid #ebebeb;
}

.next-back {
   display: flex;
   justify-content: space-between;
   padding: 15px 20px 0;      
}
.next-back .btn {
   background-color: var(--bg-primary);
   border: none;
   font-family: 'Montserrat';
   padding: 5px 25px;
   border-radius: 5px;
}
.next-back .btn:hover {
   background-color: #2d93c1;
}
/***end mobileproduct***/

/***payment option***/

.payment-section {
   background-image: url(../../assets/images/payment-option-banner.png);
   background-size: cover;
   background-position: center;
   color: var(--white);
   padding: 160px 0 30px;
}

.payment-section ul li {
   display: inline-block;
   padding: 0 15px 0 0;
}
.payment-section ul li img {

}
section.payment-section h2 {
   font-family: 'Montserrat';
   font-size: 30px;
}
section.payment-section p {
   font-family: 'Montserrat';
   margin-bottom: 20px;
}
.payment-section ul li img {
   max-width: 115px;
}     

.mobile-device {
   display: none;
}

/***end paymentoption***/


/* Media Query */

@media (min-width: 991px) {
  .dropdown:hover>.dropdown-menu {
    display: block;
  }
}

@media (min-width: 991px) and (max-width: 1200px) {
  .card-body.booking-form-detail .facebook ,.card-body.booking-form-detail .google {
    padding: 5px 30px;
    width: 170px;
  }
}

@media only screen and (max-width: 1200px) {
  header .nav-item {
    padding: 5px 0 !important;
  }
  .hero-section h1 {
    margin-bottom: 30px;
    font-size: 50px;
  }
  .learn-section {
    padding: 50px 0;
  }

   /***01/01/2022***/

  .inner-page main {
      padding-top: 0;
  }

  .innerpage-banner-section p {
      padding: 0 0px;
  }

  .bdsi-section img {
      max-width: 70px;
   }
   .bdsi-detail h2 {
      font-size: 22px;
   }
   .bdsi-detail h4 {
      font-size: 12px;
   }

   .mbs-inner-section h2 {
      font-size:40px;
   }

    .mpp-content-section h1 {
      font-size:28px;
   }
   .mpp-content-section p {
      font-size: 16px;
      padding: 0 0;
      line-height: 23px;
   }
   .product-required-service h1 {
      font-size: 20px;
      padding-bottom: 20px;
   }
   .prs-inner-content-section p {
      line-height:20px;
      font-size: 16px;
   }
   .prs-inner-content-section p b {
      font-size: 16px;
   }

   .total-prices tr.showhide_total_prices td {
      font-size: 20px; 
   }
   .total-prices td.prices {
      font-size:14px;
   }
   .total-prices tr.showhide_total_cost_section .total {
      font-size: 18px;
   }
   .desktop-device {
      display: block;
   }
   .mobile-device {
      display: none;
   }
   section.full-payment {
      padding-top: 30px;
   }
   .full-payment .ps-inner img {
      max-width: 110px;
      filter: invert(1);
   }

   .full-payment .ps-inner ul li {
      display: inline-block;
      /* margin-right: 8px; */
      margin: 8px 6px;
      text-align: center;
   }  

   .full-payment .ps-inner h2 {
      font-family: 'Montserrat';
      font-size: 24px;
   }

   .full-payment .ps-inner p {
      font-family: 'Montserrat';
      font-size: 16px;
      font-weight:600;
   }

   .full-payment .ps-inner img {
      max-width:110px;
      filter: invert(1);
   }
   .prs-inner-section span {
      padding: 3px 7px 3px 15px;
   }

   .mpp-img-section a.btn-primary {
      font-size:18px;
   }
  /***10/01/2022***/
  .contact-description ul {
    column-count: 2 !important;
  }
  .content-wrap {
    padding: 30px 0;
  }
  .contact-description ul li {
    line-height: 25px !important;
  }

  /***11/01/2021***/

  .card-body.booking-form-detail {
      display: block !important;
      text-align: center !important;
  }
  .card-body.booking-form-detail h5 {
    margin-bottom: 6px !important;
  }
  .card-body.booking-form-detail .facebook {
     width:100% !important;
     margin-bottom: 0px !important;
  }
  .card-body.booking-form-detail .google {
    width:100% !important;
    margin-bottom: 10px !important;
  }
  section.main-thankyoupage-section {
    padding: 55px 0px !important
  }
  .mtp-right-inner {
    padding: 15px 12px;
  }
  .payment-main h4 {
    font-size: 15px !important;
  }
  #main #faq .card .card-header .btn-header-link {
    font-size: 16px !important;
  }
  .mtp-right-inner.booking-right {
    height: auto;
    margin-top: 20px;
  }
  .sps-inner {
    font-size: 10px;
  }
}

@media only screen and (max-width: 991px) {
  header .navbar-light .navbar-nav .nav-item i {
    float: right;
    font-size: 12px;
    font-weight: 600;
    padding-top: 2px;
  }
  header nav {
    padding: 5px 15px !important;
  }
  header .navbar-nav {
    width: 100%;
    justify-content: end;
  }
  header .navbar2 {
    padding: 10px 15px !important;
  }
  #navbar_main {
    padding: 10px 15px 65px !important;
  }
  header .fa-close {
    -webkit-text-stroke: 3px var(--primary) !important;
    font-size: 30px;
    color: var(--text-white);
  }
  header .nav-link {
    padding: 0;
    font-size: 12px;
  }
  .hero-section h1 {
    margin-bottom: 30px;
    font-size: 30px;
  }
  .hero-section {
    padding: 120px 0 0;
    margin-top: -115px;
  }
  header .btn {
    padding: 4px 12px !important;
  }
  .product-section .card-body {
    padding: 20px;
  }
  main {
    padding-top: 55px;
  }
  header .dropdown .dropdown-menu {
    box-shadow: none;
    margin: 10px 0 0;
    left: -113px;
  }
  footer .footer-logo {
    margin: 0 auto 15px;
  }
  .service-section .card-body {
    padding: 40px 20px;
  }
  .service-section .card {
    min-height: 236px;
  }
  .service-section .card h3 {
    font-size: 20px;
  }
  .award-section .text-right h2 {
    display: none;
  }
  .newsletter-section img {
    position: absolute;
    right: 0;
    max-width: 121px;
    top: -94px;
  }
  .copy-right {
    text-align: center;
  }

   /***01/01/2022***/

  .inner-page main {
      padding-top: 0;
  }

  .innerpage-banner-section p {
      padding: 0 0px;
  }

  .bdsi-section img {
      max-width: 70px;
   }
   .bdsi-detail h2 {
      font-size: 22px;
   }
   .bdsi-detail h4 {
      font-size: 12px;
   }

   .mbs-inner-section h2 {
      font-size:40px;
   }
   .mpp-content-section h1 {
      font-size:28px;
   }
   .mpp-content-section p {
      font-size: 16px;
      padding: 0 0;
      line-height: 23px;
   }
   .product-required-service h1 {
      font-size: 20px;
      padding-bottom: 20px;
   }
   .prs-inner-content-section p {
      line-height: 16px;
      font-size: 14px;
   }
   .prs-inner-content-section p b {
      font-size: 16px;
   }

   .total-prices tr.showhide_total_prices td {
      font-size: 20px; 
   }
   .total-prices td.prices {
      font-size:14px;
   }
   .total-prices tr.showhide_total_cost_section .total {
      font-size: 18px;
   }
   .desktop-device {
      display: block;
   }
   .mobile-device {
      display: none;
   }
   section.full-payment {
      padding-top: 30px;
   }
   .full-payment .ps-inner img {
      max-width: 110px;
      filter: invert(1);
   }

   .full-payment .ps-inner ul li {
      display: inline-block;
      /* margin-right: 8px; */
      margin: 8px 6px;
      text-align: center;
   }  

   .full-payment .ps-inner h2 {
      font-family: 'Montserrat';
      font-size: 24px;
   }

   .full-payment .ps-inner p {
      font-family: 'Montserrat';
      font-size: 16px;
      font-weight:600;
   }

   .full-payment .ps-inner img {
      max-width:110px;
      filter: invert(1);
   }
   .prs-inner-section span {
      padding: 3px 7px 3px 15px;
   }

   .mpp-img-section a.btn-primary {
      font-size:18px;
   }

   /***08/01/2021***/

   table.table.table-card-price ul {
      column-count: auto !important;
      margin: 0 0 5px 0;
  }
  button#apl_promo_code {
    margin-left: 0 !important;
    margin-top: 12px;
  }
  form#revieworder_form {
    margin-bottom: 30px;
  }
  .table-card-price td.price {
    font-size: 16px !important;
    font-weight: bold !important;
    padding: 15px 0 !important;
  }
  table.table.table-card-price h3 {
    font-size:15px !important;
  }
  table.table.table-card-price ul li i {
    font-size:18px !important;
  }
  table.table.table-card-price ul li {
    font-size: 15px !important;
  }
  a.btn.btn-secondary.btn-sm.model-edit {
    font-size:12px !important;
    padding:5px 20px;
  }
  a.btn.btn-sm.btn-remove.model-remove {
    padding: 0 15px;
    font-size: 12px;
  }
  .form-group.apply_code_div {
    width: 100%;
    margin-bottom: 0;
  }
  /***10/01/2022***/
  .contact-description ul {
    column-count: 2 !important;
  }
  .content-wrap {
    padding: 30px 0;
  }
  .contact-description ul li {
    line-height: 25px !important;
  }

  /***11/01/2021***/

  .card-body.booking-form-detail {
      display: block !important;
      text-align: center !important;
  }
  .card-body.booking-form-detail h5 {
    margin-bottom: 6px !important;
  }
  .card-body.booking-form-detail .facebook {
     width:100% !important;
     margin-bottom: 0px !important;
  }
  .card-body.booking-form-detail .google {
    width:100% !important;
    margin-bottom: 10px !important;
  }
  section.main-thankyoupage-section {
    padding: 55px 0px !important
  }
  .mtp-right-inner {
    padding: 15px 12px;
  }
  .payment-main h4 {
    font-size: 15px !important;
  }
  #main #faq .card .card-header .btn-header-link {
    font-size: 16px !important;
  }
  .mtp-right-inner.booking-right {
    height: auto;
    margin-top: 20px;
  }
  .sps-inner {
    font-size: 10px;
  }

}

@media (max-width: 767px) {
  .main-heading {
    margin-bottom: 30px;
    font-size: 20px;
  }
  .hero-section {
    padding: 100px 0 0;
    text-align: center;
  }
  .hero-section .form-group {
    margin: 0 auto 30px;
  }
  .service-section .card {
    min-height: auto;
  }
  .service-section .card p {
    font-size: 13px;
  }
  .service-section .card h3 {
    font-size: 18px;
  }
  .award-section .card .media img {
    margin-right: 15px;
    max-width: 70px;
  }
  .award-section .card h5 {
    font-size: 16px;
  }
  .award-section .card p {
    font-size: 13px;
  }
  footer {
    text-align: center;
    padding: 50px 0;
  }
  footer p {
    font-size: 13px;
  }
  footer h5 {
    margin-bottom: 15px;
  }
  footer hr {
    border-top: 1px solid var(--white);
  }
  footer .footer-logo {
    max-width: 200px;
  }
  footer ul {
    margin-top: 15px;
  }
  footer ul li a {
    font-size: 13px;
  }
  .faq-section h3 {
    font-size: 20px;
  }
  .learn-section {
    text-align: center;
  }
  .learn-section h1 {
    font-size: 30px;
  }
  .learn-section h4 {
    font-size: 20px;
  }
  .learn-section img {
    margin-bottom: 40px;
  }
  .video-section {
    text-align: center;
  }
  .video-section h2 {
    font-size: 22px;
  }
  .video-section {
    background-image: url(../../assets/images/video-bg-md.png);
    padding: 250px 0 20px;
  }
  .video-section .video-icon {
    width: 60px;
    margin-top: 0px;
  }
  .pay-section {
    padding: 0 0 40px;
  }
  .plans-block {
    background: #fff;
    color: var(--text-black);
    border-radius: 4px;
    padding: 8px 10px;
    margin-bottom: 20px;
  }
  .plans-block h1 {
    margin-bottom: 0;
  }
  .plans-block h6 {
    color: var(--text-primary);
  }
  .newsletter-section img {
    position: absolute;
    right: 22px;
    max-width: 75px;
    top: -80px;
  }
  .newsletter-section {
    border-top: 8px solid var(--primary);
  }
  .footer-blog .media {
    text-align: left !important;
  }

  /***01/01/2022***/

  .inner-page main {
      padding-top: 0;
  }

  .brand-detail-section-inner {
    padding: 25px 0 65px;
   }

  .innerpage-banner-section {
      padding: 60px 0;
  }
  .innerpage-banner-section p {
      font-size: 16px;
      line-height: 23px;
      padding: 0 0px;
  }

  .mobile-brand-banner-section p {
      font-size: 16px;
      padding: 0 0;
      line-height: 23px;
   }
   .mobile-brand-banner-section {
      padding: 45px 0;
   }
   .mobile-brand-banner-section h1 {
      font-size: 28px;
   }
   .mobile-brand-section {
      padding: 25px 0 65px;
   }
   .mbs-inner-section {
      padding: 30px 0;
   }
   .mbs-inner-section h2 {
      font-size:40px;
   }

   .mobile-product-page {
      text-align: center;
   } 
   .mpp-content-section h1 {
      font-size:28px;
   }
   .mpp-content-section p {
      font-size: 16px;
      padding: 0 0;
      line-height: 23px;
   }
   .product-required-service h1 {
      font-size: 20px;
      padding-bottom: 20px;
   }
   .prs-inner-content-section p {
      line-height: 16px;
      font-size: 14px;
   }
   .prs-inner-content-section p b {
      font-size: 16px;
   }

   .total-prices tr.showhide_total_prices td {
      font-size: 20px; 
   }
   .total-prices td.prices {
      font-size:14px;
   }
   .total-prices tr.showhide_total_cost_section .total {
      font-size: 18px;
   }
   .desktop-device {
      display: none;
   }
   .mobile-device {
      display: block;
   }
   section.full-payment {
      padding-top: 30px;
   }
   .full-payment .ps-inner img {
      max-width: 110px;
      filter: invert(1);
   }

   .full-payment .ps-inner ul li {
      display: inline-block;
      /* margin-right: 8px; */
      margin: 8px 6px;
      text-align: center;
   }  

   .full-payment .ps-inner h2 {
      font-family: 'Montserrat';
      font-size: 24px;
   }

   .full-payment .ps-inner p {
      font-family: 'Montserrat';
      font-size: 16px;
      font-weight:600;
   }

   .full-payment .ps-inner img {
      max-width:110px;
      filter: invert(1);
   }
   .prs-inner-section span {
      padding: 3px 7px 3px 15px;
   }
   a.btn.btn-primary.back {
      display: none;
   }
   a.btn.btn-secondary.next {
      width: 100%;
   }
   .next-back {
      padding: 15px 0px 0;
   }

   /***08/01/2021***/

   table.table.table-card-price ul {
      column-count: auto !important;
      margin: 0 0 5px 0;
  }
  button#apl_promo_code {
    margin-left: 0 !important;
    margin-top: 12px;
  }
  form#revieworder_form {
    margin-bottom: 30px;
  }
  .table-card-price td.price {
    font-size: 16px !important;
    font-weight: bold !important;
    padding: 15px 0 !important;
  }
  table.table.table-card-price h3 {
    font-size:15px !important;
  }
  table.table.table-card-price ul li i {
    font-size:18px !important;
  }
  table.table.table-card-price ul li {
    font-size: 15px !important;
  }
  a.btn.btn-secondary.btn-sm.model-edit {
    font-size:12px !important;
    padding:5px 20px;
  }
  a.btn.btn-sm.btn-remove.model-remove {
    padding: 0 15px;
    font-size: 12px;
  }
  .form-group.apply_code_div {
    width: 100%;
    margin-bottom: 0;
  }
   /***10/1/2021***/

  .contact-description ul {
    column-count: 1 !important;
  }
  .content-wrap {
    padding: 30px 0 !important;
  }
  .contact_detail {
    margin-bottom: 30px !important;
  }

  /***11/01/2021***/

  .card-body.booking-form-detail {
      display: block !important;
      text-align: center !important;
  }
  .card-body.booking-form-detail h5 {
    margin-bottom: 6px !important;
  }
  .card-body.booking-form-detail .facebook {
     width:100% !important;
     margin-bottom: 0px !important;
  }
  .card-body.booking-form-detail .google {
    width:100% !important;
    margin-bottom: 10px !important;
  }
  section.main-thankyoupage-section {
    padding: 55px 0px !important
  }
  .mtp-right-inner {
    padding: 15px 12px;
  }
  .payment-main h4 {
    font-size: 15px !important;
  }
  #main #faq .card .card-header .btn-header-link {
    font-size: 16px !important;
  }
  .mtp-right-inner.booking-right {
    height: auto;
    margin-top: 20px;
  }
  .sps-inner {
    font-size: 10px;
  }
}

@media (max-width: 576px) {
  .hero-section h1 {
    margin-bottom: 20px;
    font-size: 28px;
  }
  header .navbar-brand img {
    width: 160px;
  }
  header .btn {
    padding: 4px 8px !important;
  }
  .faq-section h2 { 
    font-size: 26px;
    margin-bottom: 40px;
  }
  .faq-section .card .card-header .btn-header-link {
    font-size: 13px;
    padding: 15px 0;
    width: 96%;
  }
  .faq-section .card .card-header .btn-header-link:after {
    position: absolute;
    right: 12px;
    top: 15px;
    font-size: 14px !important;
  }
  .faq-section .accordion .card-body {
    font-size: 14px;
  }
  .award-section .card-body {
    padding: 15px;
  }
  .award-section .card h5 {
    font-size: 14px;
  }
  .award-section .card p {
    font-size: 12px;
  }
  .video-section h2 {
    font-size: 18px;
  }
  .hero-section .form-group {
    position: relative;
    max-width: 300px;
    margin-bottom: 40px;
  }
  .newsletter-section .btn {
    font-size: 13px;
    padding: 5px 15px;
  }
  .newsletter-section .form-control::placeholder {
    font-size: 13px;
  }
  .footer-blog .media img {
    max-width: 55px;
  }
  .faq-section {
    padding: 40px 0 80px;
  }
  #navbar_main {
    width: 100%;
  }
  .award-bg .card {
    max-width: 160px;
    margin: 0 auto 100px;
    position: relative;
    top: 55px;
    right: -53px;
  }
  .award-bg h6 {
    font-weight: 700;
    font-size: 10px;
  }
  .award-bg .certi {
    max-width: 60px;
  }

  .navbar-light .navbar-toggler span {
    font-size: 20px;
  }

  header .fa-shopping-cart {
    font-size: 14px;
  }
  
  header .nav-link {
    font-size: 12px;
    font-weight: 600;
    padding-right: 0.4rem !important;
    padding-left: 0.4rem !important;
  }

  /***01/01/2022***/

  .brand-detail-section-inner {
      padding: 25px 0 65px;
   }
   .innerpage-banner-section h1 {
      font-size:28px;
      margin-bottom:3px;
   }
  .innerpage-banner-section {
      padding: 45px 0;
   }
  .innerpage-banner-section p {
      font-size: 16px;
      line-height: 23px;
      padding: 0 0px;
   }

   .bdsi-section {
      display: block;
      text-align: center;
   }
  .bdsi-detail h2 {
      font-size: 18px;
   } 
   .bdsi-section img {
      margin-right: 0;
      margin-bottom: 5px;
   }
   .mobile-brand-banner-section p {
      font-size: 16px;
      padding: 0 0;
      line-height: 23px;
   }
   .mobile-brand-banner-section {
      padding: 45px 0;
   }
   .mobile-brand-banner-section h1 {
      font-size: 28px;
   }
   .mobile-brand-section {
      padding: 25px 0 65px;
   }
   .mbs-inner-section {
      padding: 30px 0;
   }
   .mbs-inner-section h2 {
      font-size:40px;
   }
   .mobile-product-page {
      text-align: center;
   } 
   .mpp-content-section h1 {
      font-size:28px;
   }
   .mpp-content-section p {
      font-size: 16px;
      padding: 0 0;
      line-height: 23px;
   }
   .product-required-service h1 {
      font-size: 20px;
      padding-bottom: 20px;
   }
   .prs-inner-content-section p {
      line-height: 20px;
      font-size: 14px;
   }
   .prs-inner-content-section p b {
      font-size: 20px;
   }

   .total-prices tr.showhide_total_prices td {
      font-size: 20px; 
   }
   .total-prices td.prices {
      font-size:14px;
   }
   .total-prices tr.showhide_total_cost_section .total {
      font-size: 18px;
   }
   .desktop-device {
      display: none;
   }
   .mobile-device {
      display: block;
   }
   section.full-payment {
      padding-top: 30px;
   }
   .full-payment .ps-inner img {
      max-width: 110px;
      filter: invert(1);
   }

   .full-payment .ps-inner ul li {
      display: inline-block;
      /* margin-right: 8px; */
      margin: 8px 6px;
      text-align: center;
   }  

   .full-payment .ps-inner h2 {
      font-family: 'Montserrat';
      font-size: 24px;
   }

   .full-payment .ps-inner p {
      font-family: 'Montserrat';
      font-size: 16px;
      font-weight:600;
   }

   .full-payment .ps-inner img {
      max-width:110px;
      filter: invert(1);
   }

   a.btn.btn-primary.back {
      display: none;
   }
   a.btn.btn-secondary.next {
      width: 100%;
   }
   .next-back {
      padding: 15px 0px 0;
   }

   /***08/01/2021***/

   table.table.table-card-price ul {
      column-count: auto !important;
      margin: 0 0 5px 0;
  }
  button#apl_promo_code {
    margin-left: 0 !important;
    margin-top: 12px;
  }
  form#revieworder_form {
    margin-bottom: 30px;
  }
  .table-card-price td.price {
    font-size: 16px !important;
    font-weight: bold !important;
    padding: 15px 0 !important;
  }
  table.table.table-card-price h3 {
    font-size:15px !important;
  }
  table.table.table-card-price ul li i {
    font-size:18px !important;
  }
  table.table.table-card-price ul li {
    font-size: 15px !important;
  }
  a.btn.btn-secondary.btn-sm.model-edit {
    font-size:12px !important;
    padding:5px 20px;
  }
  a.btn.btn-sm.btn-remove.model-remove {
    padding: 0 15px;
    font-size: 12px;
  }
  .form-group.apply_code_div {
    width: 100%;
    margin-bottom: 0;
  }

  /***10/1/2021***/

  .contact-description ul {
    column-count: 1 !important;
  }
  .content-wrap {
    padding: 30px 0 !important;
  }
  .contact_detail {
    margin-bottom: 30px !important;
  }

  /***11/01/2021***/

  .card-body.booking-form-detail {
      display: block !important;
      text-align: center !important;
  }
  .card-body.booking-form-detail h5 {
    margin-bottom: 6px !important;
  }
  .card-body.booking-form-detail .facebook {
     width:100% !important;
     margin-bottom: 0px !important;
  }
  .card-body.booking-form-detail .google {
    width:100% !important;
    margin-bottom: 10px !important;
  }
  section.main-thankyoupage-section {
    padding: 55px 0px !important
  }
  .mtp-right-inner {
    padding: 15px 12px;
  }
  .payment-main h4 {
    font-size: 15px !important;
  }
  #main #faq .card .card-header .btn-header-link {
    font-size: 16px !important;
  }
  .mtp-right-inner.booking-right {
    height: auto;
    margin-top: 20px;
  }
  .sps-inner {
    font-size: 10px;
  }

  /***12/01/2022***/

  .faq-banner {
    padding: 30px 0 !important;
    min-height: 135px !important;
  }

  .innerpage-banner-section .image_text  {
    padding: 0 80px !important;
  }
}

  
/***07/01/2021***/

.autocomplete-suggestions .autocomplete-suggestion strong {
  font-weight: bold;
  color: #000 !important; 
}
.device-brand-search .form-group {
  position: relative;
  max-width: 380px;
  margin: 15px auto 0 auto;   
}

.device-brand-search .form-control {
  background: var(--white);
  box-sizing: border-box;
  border-radius: 0;
  height: 45px;
  font-size: 14px;
  color: #000;   
  padding: 5px 40px;
  font-weight: 600;
} 
.hero-section .form-group .form-control {
  padding-left: 40px;
  border-radius: 0;
}

.device-brand-search .form-group .fa-search {
  position: absolute;
  top: 14px;
  left: 15px;
  color: #cfcccc;
}

.device-grid-sidebar ul.sidebar-model-grid {
  -webkit-box-shadow: 0 1px 6px 0 rgb(32 33 36 / 15%);
  -moz-box-shadow: 0 1px 6px 0 rgba(32, 33, 36, 0.15);
  -o-box-shadow: 0 1px 6px 0 rgba(32, 33, 36, 0.15);
  box-shadow: 0 1px 6px 0 rgb(32 33 36 / 15%);
  padding: 20px 20px;
  border-radius: 8px;
  margin-bottom: 15px;
}
.device-grid-sidebar ul.sidebar-model-grid .brands h2  {
  margin-bottom: 5px;
}
.device-grid-sidebar ul.sidebar-model-grid .brands h2 a {
    color: #000;
    font-size: 20px;
    font-weight: 600;
}
.device-grid-sidebar ul.sidebar-model-grid li a {
   color: #000;
   font-weight: 600;
}
.device-grid-sidebar ul.sidebar-model-grid li a:hover {
   color: var(--text-primary);
   font-weight: 600;
}
.device-grid-sidebar ul.sidebar-model-grid li  {
  padding: 7px 0;
  border-bottom: 1px solid #e9e7e7;
}   
.device-grid-sidebar ul.sidebar-model-grid li:last-child  {
  border-bottom: none;
} 
.right-device-brand h3 {
  font-weight: bold;
  font-size: 26px;
}       

.devices_corner_section.viewmore {
  text-align: right;
}
.devices_corner_section.viewmore a {
  background-color: var(--bg-primary);
  border: none;
  font-family: 'Montserrat';
  padding: 10px 10px;
  border-radius: 5px;
  color: var(--text-white);
  font-weight: 600;
  text-transform: uppercase;
  font-size: 14px;
  right: 0;
}
.faq-section .accordion h3 {
  margin: 15px 0 0 !important;
  font-weight: 600;
}     

#color_options .modal-header {
    background: #f1f1f1;
    border-bottom: none;
}
#color_options .modal-header h4 {
    color: #000;
}
#color_options .outer-bg {
    border: 4px solid #ccc;
    width: 38px;
    height: 38px;
    position: relative;
    margin-bottom: 0;
}
#color_options .badge {
    position: absolute;
    bottom: 6px;  
    border-radius: 0;
    width: 26px;
    height: 26px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.expend-fild-detail {
    width: 100%;
    height: 65px;
}
.expend-fild-detail .model-detail-error {
    font-weight: 600;
    padding: 0 15px; 
}
.badge-pill {
  border: 2px solid #ccc;
}

/***card section***/

a.btn-update-quatity ,a.btn-empty-cart{
  background-color: var(--bg-primary);
  border: none;
  font-family: 'Montserrat';
  padding: 8px 30px;
  border-radius: 5px;
} 

table.table.table-card-price {
  -webkit-box-shadow: 0 1px 6px 0 rgb(32 33 36 / 15%);
  -moz-box-shadow: 0 1px 6px 0 rgba(32, 33, 36, 0.15);
  -o-box-shadow: 0 1px 6px 0 rgba(32, 33, 36, 0.15);
  box-shadow: 0 1px 6px 0 rgb(32 33 36 / 15%);
  border-radius: 8px 8px 0 0;
  margin-bottom: 0;
}
 
table.table.table-card-price th {
    border-top: none;
}

table.table.table-card-price th {
  border-top: none;
  background: #ebebeb;
  color: #626161;
  font-weight: 800;
  font-size: 18px;
}
table.table.table-card-price h3 {
  font-weight: bold;
  font-size: 20px;
  padding-bottom: 2px;
}

.apply_code_div-section {
  background: #ebebeb;
  padding: 20px 15px; 
}
.form-group.apply_code_div .form-control {
  height: 45px;
  max-width: 100%;
  width: 400px; 
  border: none;
  margin-right: 10px;   
}
button#apl_promo_code {
  background-color: var(--bg-primary);
  border: none;
  font-family: 'Montserrat';
  padding: 10px 20px;
  border-radius: 5px;
  color: #fff;
}
a.btn.btn-secondary.btn-sm.model-edit {
  background-color: var(--bg-primary);
  border: none;
  font-family: 'Montserrat';
  padding: 5px 25px;
  border-radius: 5px;
}
a.btn.btn-sm.btn-remove.model-remove {
  padding: 0 15px;
}
.table-card-price td.price {
  font-size: 20px;
  font-weight: bold;
}
.card.summary-section .card-header {
  padding: 10px 15px;
}   
.card.summary-section .card-header h3 {
  font-size: 20px;
  font-weight: bold;
}
form#revieworder_form {
    margin-bottom: 75px;  
}
.card.summary-section .card-body {
    padding: 15px 15px;
}       
h4.totla-price {
    text-align: right;
}
.card.summary-section .card-body h4 {
  font-size: 20px;
  font-weight: bold;
}   
.card.summary-section {
  -webkit-box-shadow: 0 1px 6px 0 rgb(32 33 36 / 15%);
  -moz-box-shadow: 0 1px 6px 0 rgba(32, 33, 36, 0.15);
  -o-box-shadow: 0 1px 6px 0 rgba(32, 33, 36, 0.15);
  box-shadow: 0 1px 6px 0 rgb(32 33 36 / 15%);
  border: none;
}
.checkout-button a.get-paid.cart-checkout-button {
  width: 100%;
  margin: 13px 0 0;
  float: right;
  background-color: var(--bg-primary);
  border: none;
  font-family: 'Montserrat';
  padding: 10px 20px;
  border-radius: 5px;
  color: #fff;
  margin-left: 10px !important;
}
table.table.table-card-price ul {
  column-count: 4;
  margin: 0 0 5px 0;
}     
table.table.table-card-price ul li i{
  color: #00d257;
  font-size: 22px;
  vertical-align: text-bottom;
  margin-right: 5px;
}
table.table.table-card-price ul li {
  font-weight: 800;
}       

/***booking page***/

div.main-booking-page {
  /*box-shadow: 0 1px 5px #0000001c;
  border-radius: 6px;
  height: 100%;*/
}
.card-body.booking-form-detail {
  display: flex;
  align-items: center;
  justify-content: space-around;
  padding-bottom: 10px;
}
.card-body.booking-form-detail h5 {
  font-size: 20px;
  font-family: 'Montserrat';
  color: #7a7a7a;
  font-weight: 600;
  margin-bottom: 0;
}
.card-body.booking-form-detail .facebook {
  font-family: 'Montserrat';
  text-transform: capitalize;
  font-size: 20px;
  padding: 5px 50px;
  background:#0054a6;
  border-radius: 6px;
  max-width: 100%;
  width: 220px;
}

.card-body.booking-form-detail .google {
  font-family: 'Montserrat';
  text-transform: capitalize;
  font-size: 20px;
  padding: 5px 50px;
  background: #d53037;
  border-radius: 6px;
  max-width: 100%;
  width: 220px;
}
.main-booking-page [type=text],
.main-booking-page [type=email],
.main-booking-page [type=url],
.main-booking-page [type="postcode"],
.main-booking-page select,
.main-booking-page textarea {
  display: block;
  padding: 4px 10px;
  background: #f4f4f4;
  vertical-align: middle;
  width: 100%;
  max-width: 100%;
  border: 1px solid #e1e1e1;
  border-radius: 4px;
  font-size: .95rem;
  font-weight: 600;
  font-family: 'Montserrat';
}
.main-booking-page input::placeholder {
  color: #cfcfcf;
}

.main-booking-page [type=text]:focus,
.main-booking-page [type=email]:focus,
.main-booking-page [type=url]:focus,
.main-booking-page [type="postcode"]:focus,
.main-booking-page select:focus,
.main-booking-page textarea:focus {
  outline: none;
  border: 1px solid #1E6BD6;
} 

.main-booking-page label {
  font-weight: 600;
  font-size: .9rem;
  display: block;
  margin: 0;
  font-family: 'Montserrat';
  text-transform: uppercase;
  color: #7a7a7a;
  border: solid 2px transparent;
}
.mtp-right-inner.booking-right {
    height: auto;
}

form.form-detail {
  padding: 0 40px;
}
.next-back.form-next .next {
  font-size: 20px;
  padding: 8px 30px;
  border-radius: 10px;
}
.next-back.form-next {
  float: right;
  padding: 10px 0 0;
}

.complat-repair .card {
  padding: 0 !important;
  background: #fff;
}

.complat-repair .card p {
  font-family: 'Raleway';
  line-height: 20px;
  font-weight: 500;
}
.complat-repair .card h5 {  
  font-weight: bold;
  color: var(--black);
  font-family: 'Raleway';
  line-height: 22px;
}

.main-booking-page input[type="radio"] {
  display: none;
}

.main-booking-page input[type="radio"]:checked + label {
  border: solid 2px #00acf9;
  border-radius: 6px;
}
.main-booking-page input[type="radio"]:hover + label {
  border: solid 2px #00acf9;
  border-radius: 6px;
  cursor: pointer;
}

.payment-main img {
  max-width: 150px;
  padding: 8px 0;
}
.payment-main h4 {
    font-family: 'Montserrat';
    font-size: 20px;
    margin-bottom: 0;
}
.payment-main input[type="radio"] {
  display: none;
}

.payment-main input[type="radio"]:checked + label {
  border: solid 2px #00acf9;
  border-radius: 6px;
}
.payment-main input[type="radio"]:hover + label {
  border: solid 2px #00acf9;
  border-radius: 6px;
  cursor: pointer;
}

.card-body.payment-main .card {
    padding: 0 !important;
}
.card-body.payment-main .card:last-child {
  margin-bottom: 0 !important;
}

#main #faq .card {
  margin-bottom: 30px; 
  border: 0;
  box-shadow: 0 1px 5px #0000001c;
  border-radius: 6px;
  height: 100%;
  padding: 30px 0;
}

#main #faq .card .card-header {
  border: 0;
  border-radius: 2px;
  padding: 0;
}

#main #faq .card .card-header .btn-header-link {
  display: block;
  background: #ebebeb;
  color: #7a7a7a;
  padding: 8px;
  text-align: center;
  font-family: 'Montserrat';
  text-transform: uppercase;
  font-size: 20px;
  font-weight: 600;
}
/*
#main #faq .card .card-header .btn-header-link:after {
  content: "\f107";
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  float: right;
}*/

#main #faq .card .card-header .btn-header-link.collapsed {
  background: #ebebeb;
  color: #7a7a7a; 
}

/*#main #faq .card .card-header .btn-header-link.collapsed:after {
  content: "\f106";
}
*/
#main #faq .card .collapsing {
  background: #ebebeb;
  line-height: 30px;
}

#main #faq .card .collapse {
  border: 0;
}

#main #faq .card .collapse.show {
  background: #ffffff;
  line-height: 30px;
  color: #222;
}

/***thank you page***/

.thank-you-page-banner {
  background-image: url(../../assets/images/main-thankyou-baner.png);
  background-size: cover;
  background-position: center;
  padding: 80px 0 0;
}
.thankyou-left {
  padding: 80px 0;
}
.thank-you-page-banner h4 {
  color: var(--white);
  font-family: 'Montserrat';
  font-weight: 600;
  margin-bottom: 0;
}
.thank-you-page-banner h1 {
  font-size: 36px;
  color: var(--white);
  font-weight: 800;
  font-family: 'Montserrat';
}
.thank-you-page-banner p {
  color: var(--white);
  font-family: 'Montserrat';
  font-size: 16px;
  font-weight: 400;
}
.thank-you-page-banner img {
  width: 420px;
  float: right
}

section.main-thankyoupage-section {
  padding: 80px 0px;
}

.mtp-left-inner-section {
  box-shadow: 0 1px 5px #0000001c;
  padding: 15px 20px;
  border-radius: 6px;
  margin-bottom: 25px;
}
.mtp-left-inner-section h2 {
  font-family: 'Montserrat';
  font-weight: 800;
  font-size: 30px;
  margin-bottom: 3px;
}
.mtp-left-inner-section h5 {
  font-size: 19px;
  font-family: 'Montserrat';
  font-weight: 600;
  margin-bottom: 0;
}
.mtp-second {
  display: flex;
  align-items: center;
  margin-bottom: 30px;
}
.mtp-second-inner-section {
  box-shadow: 0 1px 5px #0000001c;
  padding: 15px 12px;
  border-radius: 6px;
}
.mtp-second img {
  box-shadow: 0 1px 5px #0000001c;
  padding: 10px 10px;
  border-radius: 8px;
  width: 125px;
  margin-right: 25px;
}
.mtp-second .media-body h4 {
  font-family: 'Montserrat';
  font-size: 20px;
}
.mtp-second:last-child {
  margin-bottom: 0;
}
.mtp-second .media-body h5 {
  font-family: 'Raleway';
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 3px;
  color: var(--black);
}
.mtp-second .media-body h6 {
  font-size: 14px;
  font-weight: 600;
  line-height: 20px;
  margin-bottom: 0;
  font-family: 'Raleway';
}
.mtp-right-inner {
  box-shadow: 0 1px 5px #0000001c;
  padding: 30px 25px;
  border-radius: 6px;
  height:100%;
}
.mtp-right-inner img {
  max-width: 165px;
  margin: 0 auto;
  display: block;
}
.mtp-right-inner h4 {
  font-size: 24px;
  font-family: 'Montserrat';
  font-weight: 800;
  text-align: center;
  padding: 10px 0;
}
.thankyou-price tr.showhide_total_prices {
  border-bottom: none !important;
}
.thankyou-price tr.showhide_total_prices td {
  font-size: 24px;
  padding: 10px 0 0;
}
table.total-prices.thankyou-price {
  margin-top: 25px;
}
section.booked-section {
  padding: 25px 0 80px;
}
section.booked-section h3 {
  font-family: 'Montserrat';
  font-size: 34px;
  font-weight: 900;
  margin-bottom: 3px;
}
section.booked-section h4 {
  font-family: 'Montserrat';
  font-size: 34px;
  font-weight: 900;
}
section.booked-section h5 {
  font-size: 20px;
  font-family: 'Montserrat';
  line-height: 28px;
  margin-bottom: 18px;
}
 
section.booked-section h6 {
  font-size: 20px;
  font-family: 'Montserrat';
  line-height: 25px;
}
.form-detail {
    padding: 0 30px;
}
/***10/01/2021 (contact)***/
.contact-description h2 {
    margin-bottom: 15px;
    font-family: 'Montserrat';
}

.contact-description ul {
    column-count: 3;
    position: relative;
}
.contact-description ul li {
    font-size: 14px;
    line-height: 28px;
    list-style: none;
    font-weight: 600;
    color: #000;
    padding-left: 23px;
    font-family: 'Montserrat';
}
.contact-description ul li::before {
    font-family:'FontAwesome';
    content: "\f058 ";
    display: inline-block;
    padding-right: 0px;
    vertical-align: top;
    font-weight: 900;
    color: #0185db;
    position: absolute;
    margin: 0px -26px;
    font-size: 20px;
}
.contact_track_section {
    -webkit-box-shadow: 0 0 10px 0 rgb(0 0 0 / 11%);
    box-shadow: 0 0 10px 0 rgb(0 0 0 / 11%);
    border: none;
    border-radius: 10px;
    padding: 22px 22px 22px;
    text-align: justify;
    margin-bottom: 20px !important;
    background: #fff;
}
.contact_track_section input::placeholder {
  font-family: 'Montserrat';
  font-size:16px;
  font-weight:500;
}
.contact_track_section textarea::placeholder {
  font-family: 'Montserrat';
  font-size:16px;
  font-weight:500;
}
.content-wrap {
    padding: 50px 0;
}

.contact_detail h3 {
  color: var(--page_heading_color);
  font-weight: 600;
  font-family: 'Montserrat';
}
.contact_track_section label {
   font-family: 'Montserrat'; 
    font-weight: 600;
    margin-bottom: 4px;
}
.send-btn {
  display: flex;
  justify-content: end;
}
.send-btn .next.request-repair-button {
    border-radius: 5px;
    text-transform: uppercase;
    font-size: 18px;
}
.card.contact-address {
    -webkit-box-shadow: 0 0 10px 0 rgb(0 0 0 / 11%);
    box-shadow: 0 0 10px 0 rgb(0 0 0 / 11%);
    border: none;
    border-radius: 10px;
}
.contact_detail address {
    margin-bottom: 15px;
    font-family: 'Montserrat';
    font-size: 14px;
    font-weight: 600;
}
.contact_h {
    font-size: 24px;
    font-family: 'Montserrat';
}

abbr.add-detail strong {
    display: block;
    font-family: 'Montserrat';
    color: #00acf9;
    font-weight: 13px;
    font-size: 15px;
    line-height: 15px;
}

.contact-address a {
  color: #000000;
  font-weight: bold;
}
abbr[title] {
  text-decoration: none;
}
#google_map {
    height: 235px !important;
    border: 2px solid #43c4fe;
    margin-top: 5px;
}    
.contact_detail {
    margin-bottom: 60px;
}   

/***faq section***/

.accordion.accordion-border .acctitle, .accordion.accordion-border .acctitle {
    border-color: #CCC;
    line-height: 44px;
    padding: 0 15px 0 36px;
    border-radius: 0;
    margin-bottom: 18px;
    background: #d9d9d9;
    border-bottom: none;
    text-align: center;
}
.faq_section .acctitle:first-child {
    border-top: none !important;
}
.faq_section .acctitle {
    padding: 15px 40px 15px 15px !important;
}
.faq_section .acctitle {
    border-top: 1px dotted #DDD !important;
    font-size: 18px;
    line-height: 30px !important;
    padding: 10px 40px 10px 15px !important;
    text-align: center;
}
.accordion.faq_section.accordion-border .acc_content p {
    font-size: 18px;
    margin-bottom: 15px;
}

.datepicker.datepicker-dropdown.dropdown-menu.datepicker-orient-left.datepicker-orient-bottom {
    padding: 15px 15px;
}
.table-condensed tr td ,.table-condensed tr th{
    text-align: center;
    padding: 2px 8px;
}
#date_list_div .input-group-append {
    display: none;
}
.m_validations_showhide {
    color: red;
    font-weight: 600;
}

/***blog category***/

.entry.blog-category {
    -webkit-box-shadow: 0 1px 6px 0 rgb(32 33 36 / 15%);
    -moz-box-shadow: 0 1px 6px 0 rgba(32, 33, 36, 0.15);
    -o-box-shadow: 0 1px 6px 0 rgba(32, 33, 36, 0.15);
    box-shadow: 0 1px 6px 0 rgb(32 33 36 / 15%);
    height: 100%;
    padding: 10px 10px;
}
.entry.blog-category .entry-title h2 a {
    font-family: 'Montserrat';
    color: #000;
    font-size: 20px;
    font-weight: 600;
    /* line-height: 11px; */
}
.entry.blog-category .entry-title h2 {
    line-height: 20px;
    padding: 15px 0;
}
.entry.blog-category ul.entry-meta li , .entry-content , .entry-content a ,a.more-link{
    font-family: 'Montserrat';
    font-weight: 600;
    font-size: 13px;
        text-align: justify;
}
a.more-link {
  text-decoration: underline;
  text-transform: lowercase;
}  
ul.pagination.pagination-inside-transparent {
    justify-content: center;
    margin: 30px 0;
}     

ul.pagination.pagination-inside-transparent {
    justify-content: center;
    margin: 30px 0;
    font-family: 'Montserrat';
    text-transform: uppercase;
    font-weight: 600;
}
.page-link {
  color: #5f5f5f;
}

/***faq section***/

.faq-banner {
  padding:193px 0;
  min-height: 415px;  
}

/***blog detail***/

.left-blog-detail {
    -webkit-box-shadow: 0 1px 6px 0 rgb(32 33 36 / 15%);
    -moz-box-shadow: 0 1px 6px 0 rgba(32, 33, 36, 0.15);
    -o-box-shadow: 0 1px 6px 0 rgba(32, 33, 36, 0.15);
    box-shadow: 0 1px 6px 0 rgb(32 33 36 / 15%);
    height: 100%;
    padding: 15px 15px;
}
.left-blog-detail .entry-title h2 {
    font-size: 22px;
    margin-bottom: 3px;   
    font-weight: 600;
    font-family: 'Montserrat';
}
.left-blog-detail ul.entry-meta li {
    font-weight: 500;
    font-family: 'Montserrat';
    margin-bottom: 12px;
}

.left-blog-detail .entry-content h2 {
    font-size: 22px;
    margin-bottom: 3px;   
    font-weight: 600;
    font-family: 'Montserrat';
    margin-top: 15px;
}
.left-blog-detail .entry-content p {
    font-size: 15px;   
    font-weight: 500;
    font-family: 'Montserrat';
} 
.left-blog-detail .entry-content h4 {
    font-size: 18px;
    font-weight: 500;
    font-family: 'Montserrat';
    margin-top: 15px;
}

.left-blog-detail .entry-content h3 ol li {
    font-size: 18px;
    font-family: 'Montserrat';
    margin: 8px 0;
}

.left-blog-detail .entry-content h3 ol li b {
    font-weight: 500;
}

.float-right-blog-detail {
    -webkit-box-shadow: 0 1px 6px 0 rgb(32 33 36 / 15%);
    -moz-box-shadow: 0 1px 6px 0 rgba(32, 33, 36, 0.15);
    -o-box-shadow: 0 1px 6px 0 rgba(32, 33, 36, 0.15);
    box-shadow: 0 1px 6px 0 rgb(32 33 36 / 15%);
    /* height: 100%; */
    padding: 15px 15px;
}

.float-right-blog-detail .card.bg-light {
    background-color: transparent !important;
    border: none;
}
    
.float-right-blog-detail .card.bg-light .card-body {
    padding: 0;
}
.float-right-blog-detail .card-body h4 {
  -webkit-box-shadow: 0 1px 6px 0 rgb(32 33 36 / 15%);
    -moz-box-shadow: 0 1px 6px 0 rgba(32, 33, 36, 0.15);
    -o-box-shadow: 0 1px 6px 0 rgba(32, 33, 36, 0.15);
    box-shadow: 0 1px 6px 0 rgb(32 33 36 / 15%);
    padding: 8px 12px;
    font-weight: 600;
    font-family: 'Montserrat';
    font-size: 20px;
}
.float-right-blog-detail .card-body ul li.h6 a {
    color: #000;
    font-family: 'Montserrat';
    font-size: 14px;
    padding: 0 5px 0 30px;
    display: block;
    font-weight: 600;
}

.float-right-blog-detail .card-body ul li.h6 .fa {
    color: #169fff;
    position: absolute;
} 

.blog-detail-banner {
    background-image: url(../../assets/images/blog-banner.png);
    background-size: cover;
    background-position: center;
    padding: 140px 0;
    min-height: 400px;
}
section.innerpage-banner-section.blog-detail-banner p {
  padding: 0;
  font-size: 16px;
  font-weight: 500;
      line-height: 24px;
}