body {
  padding: 0;
  width: 100%;
  height: 100%;
  margin: 0 auto;
  max-width: 1920px;
  position: relative;
  overflow-x: hidden;
  background: #ffffff;
  scroll-behavior: smooth;
}
:root {
  --color1: #000000;
  --color2: #ffffff;
  --h-color: #101010;
  --txt-color: #565656;
  --btn-color: #060606;
  --sec-color: #5C5C5C;
  --linear-color: linear-gradient(90deg, #333333 0%, #999999 100%);
}
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
input[type=number] {
  -moz-appearance:textfield;
}
a, a:hover {
  transition: 0.3s;
}
img {
    max-width: 100%;
    height:auto;
}
ul {
  padding: 0px;
  margin: 0px;
}
button.btn, button.btn:focus {
  outline: none;
  box-shadow: none;
}
.theme-color {
  color: var(--btn-color) !important;
}
.desktop-show {
  display: block;
}
.mobile-show {
  display: none;
}
@media (max-width: 992px) {
  .desktop-show {
    display: none !important;
  }
  .mobile-show {
    display: block !important;
  }
  hr {
    margin: 10px 0px;
  }
}
@media (max-width: 767px) {
  .col-0 {
    width: 0;
    padding: 0;
  }
}
@keyframes bounce {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0);
  }
}

/*******Default Css*******/
.section-heading .default-heading {
  margin-bottom: 20px;
}
.section-heading .default-heading .heading-h {
  font-size: 50px;
  font-weight: 600;
  line-height: 60px;
  position: relative;
  text-transform: capitalize;
  color: var(--h-color);
  z-index: 1;
  display: inline-block;
  margin-bottom: 0px;
}
.section-heading .default-p .txt-p, .section-heading .default-p p {
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
  color: var(--txt-color);
  text-transform: capitalize;
}
.all-btn .all-btn-tag {
  padding: 15px 30px;
  background: var(--btn-color);
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  line-height: normal;
  transition: 0.3s;
  border-radius: 0px;
  position: relative;
  z-index: 1;
  overflow: hidden;
  outline: none;
  box-shadow: none;
  display: inline-block;
  border-bottom: 2px solid var(--sec-color);
}
.all-btn .all-btn-tag:hover {
  transition: 0.3s;
  border-color: #fff;
}
.all-btn-tag .original {
  display: grid;
  inset: 0;
  place-content: center;
  position: absolute;
  transition: transform 0.2s cubic-bezier(0.87, 0, 0.13, 1);
}
.all-btn-tag:hover .original {
  transform: translateY(100%);
}
.all-btn-tag .letters {
  display: inline-flex;
}
.all-btn-tag span {
  opacity: 0;
  transform: translateX(-15px);
  transition: transform 0.2s cubic-bezier(0.87, 0, 0.13, 1), opacity 0.2s;
}
.all-btn-tag .space-text {
  padding: 2px;
}
.all-btn-tag span:nth-child(2n) {
  transform: translateY(15px);
}
.all-btn-tag:hover span {
  opacity: 1;
  transform: translateX(0);
}
.all-btn-tag:hover span:nth-child(2) {
  transition-delay: 0.1s;
}
.all-btn-tag:hover span:nth-child(3) {
  transition-delay: 0.2s;
}
.all-btn-tag:hover span:nth-child(4) {
  transition-delay: 0.3s;
}
.all-btn-tag:hover span:nth-child(5) {
  transition-delay: 0.4s;
}
.all-btn-tag:hover span:nth-child(6) {
  transition-delay: 0.5s;
}
.all-btn-tag:hover span:nth-child(7) {
  transition-delay: 0.6s;
}
.all-btn-tag:hover span:nth-child(8) {
  transition-delay: 0.7s;
}
.all-btn-tag:hover span:nth-child(9) {
  transition-delay: 0.8s;
}
.all-btn-tag:hover span:nth-child(10) {
  transition-delay: 0.9s;
}
.all-btn-tag:hover span:nth-child(11) {
  transition-delay: 1.0s;
}
.all-btn-tag:hover span:nth-child(12) {
  transition-delay: 1.01s;
}
.all-btn-tag:hover span:nth-child(13) {
  transition-delay: 1.02s;
}
.all-btn-tag:hover span:nth-child(14) {
  transition-delay: 1.03s;
}
.all-btn-tag:hover span:nth-child(15) {
  transition-delay: 1.04s;
}
.all-btn-tag:hover span:nth-child(16) {
  transition-delay: 1.05s;
}
.all-btn-tag:hover span:nth-child(17) {
  transition-delay: 1.06s;
}
.all-btn-tag:hover span:nth-child(18) {
  transition-delay: 1.07s;
}
.all-btn-tag:hover span:nth-child(19) {
  transition-delay: 1.08s;
}
.all-btn-tag:hover span:nth-child(20) {
  transition-delay: 1.09s;
}
.all-btn .all-btn-tag .btn-span {
  display: inline-block;
  margin-left: 5px;
}

@media (min-width: 1200px) and (max-width: 1350px) {
  .section-heading .default-heading .heading-h {
    font-size: 45px;
  }
  .section-heading .default-p .txt-p, .section-heading .default-p p {
    font-size: 15px;
  }
  .all-btn .all-btn-tag {
    font-size: 15px;
  }
}
@media (min-width: 1100px) and (max-width: 1200px) {
  .section-heading .default-heading .heading-h {
    font-size: 40px;
  }
  .section-heading .default-p .txt-p, .section-heading .default-p p {
    font-size: 16px;
  }
  .all-btn .all-btn-tag {
    font-size: 14px;
  }
}
@media (min-width: 992px) and (max-width: 1100px) {
  .section-heading .default-heading .heading-h {
    font-size: 40px;
  }
  .section-heading .default-p .txt-p, .section-heading .default-p p {
    font-size: 16px;
    line-height: 26px;
  }
  .all-btn .all-btn-tag {
    font-size: 16px;
    padding: 12px 20px;
  }
}
@media (min-width: 767px) and (max-width: 992px) {
  .section-heading .default-heading {
    margin-bottom: 10px !important;
  }
  .section-heading .default-heading .heading-h {
    font-size: 25px !important;
    line-height: 30px;
  }
  .section-heading .default-p .txt-p, 
  .section-heading .default-p p {
    font-size: 13px;
    line-height: 20px;
    margin-bottom: 10px;
  }
  .all-btn .all-btn-tag {
    padding: 6px 10px !important;
    font-size: 13px;
  }
  .all-btn .all-btn-tag .btn-span img {
    max-width: 10px;
    max-height: 10px;
  }
}
@media (max-width: 767px) {
  .section-heading .default-heading {
    margin-bottom: 10px !important;
  }
  .section-heading .default-heading .heading-h {
    font-size: 24px !important;
    line-height: 30px;
  }
  .section-heading .default-p .txt-p, .section-heading .default-p p {
    font-size: 12px;
    line-height: 20px;
    margin-bottom: 10px;
  }
  .all-btn .all-btn-tag {
    font-size: 12px !important;
    padding: 6px 20px;
  }
}
/*******Default Css End*******/

/*******Inquiry Btn Css*******/
.my_contact_us {
  top: 35%;
  z-index: 9;
  float: right;
  display: block;
  position: fixed;
  right: 0;
}
.my_contact_us .btn-inquire {
  color: #ffffff;
  font-size: 15px;
  padding: 10px 5px;
  line-height: normal;
  writing-mode: sideways-rl;
  background: var(--btn-color);
  border-radius: 10px 0px 0px 10px;
  border: 1px solid var(--btn-color);
  transition: 0.3s;
}
.my_contact_us .btn-inquire:hover {
  transition: 0.3s;
  background: var(--h-color);
  border-color: var(--h-color);
}
@media (min-width: 992px) and (max-width: 1100px) {
  .my_contact_us .btn-inquire {
      font-size: 12px;
  }
}
@media (max-width: 992px) {
  .my_contact_us {
    position: fixed;
    right: 0px;
  }
  .my_contact_us .btn-inquire {
    font-size: 14px;
    padding: 6px 0px 6px 3px;
    border-radius: 5px 0px 0px 5px;
  }
}
/*******Inquiry Btn Css End*******/

/*******Back To Top Css End*******/
#button-top {
    display: inline-block;
    opacity: 0;
    width: 40px;
    height: 40px;
    z-index: 1000;
    position: fixed;
    bottom: 0;
    right: 0;
    transition: 0.3s;
    background: var(--btn-color);
}
#button-top::after {
    content: '';
    top: 5px;
    left: 0;
    right: 0;
    bottom: 0;
    width: 12px;
    height: 12px;
    margin: auto;
    position: absolute;
    border-radius: 3px;
    transform: rotate(-46deg);
    border-top: 3px solid #fff;
    border-right: 3px solid #fff;
}
#button-top.show {
    opacity: 1;
    right: 12px;
    bottom: 10px;
    cursor: pointer;
    visibility: visible;
    animation: bounce 3s infinite;
}
#button-top:hover::after {
    filter: drop-shadow(2px 4px 6px black);
}
#button-top:hover {
    cursor: pointer;
    background: var(--h-color);
}
@media (max-width: 992px) {
  #button-top {
    height: 25px;
    width: 25px;
    border-radius: 4px;
  }
  #button-top::after {
    height: 8px;
    width: 8px;
    border-width: 2px;
    border-radius: 2px;
    top: 2px;
    left: 1px;
  }
  #button-top.show {
    right: 8px;
    bottom: 8px;
  }
}
/*******Back To Top Css End*******/

/*******Show More Btn Css Start*******/
.content-hidden p {
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.content h2 {
  font-size: 32px;
}
.content-hidden {
  overflow: hidden;
  transition: 0.3s ease;
}
body .content-hidden h1:nth-child(1),
body .content-hidden h2:nth-child(1),
body .content-hidden p:nth-child(1) {
  display: block !important;
}
body .content-hidden h1,
body .content-hidden h2,
body .content-hidden h3,
body .content-hidden h4,
body .content-hidden h5,
body .content-hidden h6,
body .content-hidden  ul,
body .content-hidden  ol,
body .content-hidden  li,
body .content-hidden table, 
body .content-hidden  tr, 
body .content-hidden td,
body .content-hidden p {
  display: none !important;
}
.content ul li {
  list-style: disc !important;
}
button#toggleBtn {
  outline: unset;
}
.content-hidden p:nth-child(2) {
  display: block !important;
}
.seo-content {
  padding-bottom: 10px;
}
.seo-content p {
    font-size: 16px;
    font-weight: 400;
}
/*******Show More Btn Css End*******/

/*******Bread Crum Css*******/

/*.bread-crum {*/
/*  background-color: var(--btn-color);*/
/*  color: #fff;*/
/*  max-width: 1600px;*/
/*  margin: 0 auto;*/
/*}*/
/*.bread_crumb {*/
/*  padding: 10px 0 10px 0 !important;*/
/*  color: #000;*/
/*}*/
/*.bread_crumb a {*/
/*  color: #201e1e;*/
/*  font-weight: 500;*/
/*  font-size: 14px;*/
/*}*/

/*breadcrumb new*/

.breadcrumb-sec {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
}


.breadcrumb-sec-inn {
    display: inline-block;
    clip-path: polygon(6% 0, 94% 0, 100% 100%, 0% 100%);
    background: #fff;
    margin: auto;
    padding: 8px 30px 0;
}

.breadcrumb-sec-inn a, .breadcrumb-sec-inn span {
    color: var(--txt-color);
    font-weight: 500;
    font-size: 18px;
    transition: .3s;
}

.breadcrumb-sec-inn a:hover {
    color: var(--btn-color);
    transition: .3s;
}

@media (max-width: 992px) {
  .bread_crumb a {
    font-size: 10px !important;
  }
}
/*******Bread Crum Css End*******/

/*******Inner Page Banner Text Css*******/
.innerbanner {
  position: relative;
  z-index: 1;
  background: #fdf3f2;
  padding-top: 40px;
}
.banner-innercaption {
  position: absolute;
  top: auto;
  bottom: 0;
  left: 0;
  margin: auto;
  display: flex;
  align-items: center;
  width: 100%;
  height: 100%;
  justify-content: center;
  text-align: center;
}
.banner-innercaption .inner-page-banner-icon img {
  max-width: 40px;
  max-height: 30px;
  position: relative;
  top: 0px;
}
.banner-innercaption .inner-page-banner-h {
  font-weight: 700;
  font-size: 50px;
  color: var(--color2);
  line-height: 50px;
  text-transform: capitalize;
  position: relative;
  top: 25px;
}
.banner-innercaption span {
  display: inline-block;
  font-weight: 500;
  color: var(--h-color);
}
.banner-innercaption p,
.banner-innercaption p a {
  font-size: 16px;
  color: var(--btn-color);
  margin: 0;
}
@media (min-width: 767px) and (max-width: 992px) {
    .innerbanner {
        margin-top: 80px;
    }
    .banner-innercaption .inner-page-banner-icon img {
        max-width: 40px;
        max-height: 30px;
    }
    .banner-innercaption .inner-page-banner-h {
        font-size: 30px;
        line-height: 40px;
        top: -10px;
    }
    .innerbanner{
        padding-top: 0;
    }
    .breadcrumb-sec-inn a, 
    .breadcrumb-sec-inn span {
        font-size: 13px;
    }
    
    .breadcrumb-sec-inn {
        padding: 2px 15px;
    }
    .categories-section .owl-dots:before {
        left: 18px !IMPORTANT;
        transform: rotate(180deg);
        right: unset;
    }
    
    .categories-section .owl-dots:after {
        left: unset;
        right: 18px;
    }
}
@media (max-width: 767px) {
    .innerbanner {
        margin-top: 80px;
    }
    .banner-innercaption .inner-page-banner-icon img {
        max-width: 30px;
        max-height: 20px;
        top: 5px;
        display: none;
    }
    .banner-innercaption .inner-page-banner-h {
        font-size: 16px;
        line-height: 20px;
        top: -12px;
    }
    .banner-innercaption span {
        font-size: 18px;
    }
    .banner-innercaption p,
    .banner-innercaption p a {
        font-size: 10px;
    }
  
    .breadcrumb-sec-inn a, 
    .breadcrumb-sec-inn span {
        font-size: 12px !important;
    }
    
    .breadcrumb-sec-inn {
        padding: 0px 17px;
    }
    .innerbanner{
        padding-top: 0;
    }
}
/*******Inner Page Baner Text Css End*******/

/*******Search Css*******/
.h-search-form input.form-control {
  position: absolute;
  width: 250px;
  top: -44px;
  transform: translateX(2000px);
  transition: 0.3s;
}
.form-section.h-search-form {
  position: relative;
}
.form-section.h-search-form button.btn {
  float: right;
}
.form-section.h-search-form form.d-flex {
  display: block !important;
}
.form-section.h-search-form form.d-flex:hover input {
  transform: translateX(-180px);
  transition: 0.3s;
}
.search-btn {
  cursor: pointer;
  display: inline-block;
  position: relative;
}
.search-li-header .outer-box {
  border: 1px solid #ffffff;
  border-radius: 50%;
  max-width: 50px;
  max-height: 50px;
  width: 50px;
  height: 50px;
  align-content: center;
  text-align: center;
  transition: 0.3s;
}
.search-btn:hover .outer-box {
  border-color: var(--sec-color);
  transition: 0.3s;
}
.search-btn .search-box-btn.search-box-outer {
  display: inline-block;
  border-radius: 50%;
  max-width: 40px;
  max-height: 40px;
  width: 40px;
  height: 40px;
  align-content: center;
  transition: 0.3s;
  text-align: center;
  background-color: #ffffff;
}
.search-box-btn.search-box-outer .s-img {
    max-width: 20px;
    max-height: 20px;
    transition: 0.3s;
}
.search-btn:hover .search-box-btn.search-box-outer {
  transition: 0.3s;
  background-color: var(--btn-color);
}
.search-btn:hover .search-box-btn.search-box-outer img {
  transition: 0.3s;
  filter: brightness(0) invert(1);
}
.search-popup {
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  height: 100vh;
  width: 100%;
  z-index: 999999999999999;
  margin-top: -540px;
  transform: translateY(-100%);
  background-color: rgba(0, 0, 0, 0.9);
  -webkit-transition: all 500ms cubic-bezier(0.86, 0, 0.07, 1);
  -moz-transition: all 500ms cubic-bezier(0.86, 0, 0.07, 1);
  -o-transition: all 500ms cubic-bezier(0.86, 0, 0.07, 1);
  transition: all 1500ms cubic-bezier(0.86, 0, 0.07, 1);
  -webkit-transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
  -moz-transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
  -o-transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
  transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
}
body.search-active {
  overflow: hidden;
}
.search-active .search-popup {
  transform: translateY(0%);
  margin-top: 0;
}
.search-popup .close-search.style-two {
  position: absolute;
  right: 25px;
  left: auto;
  color: #ffffff;
  width: auto;
  height: auto;
  top: 25px;
  margin: 0px;
  border: none;
  font-size: 0;
  background: none !important;
  box-shadow: none !important;
  -webkit-transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  transition: all 500ms ease;
}
.search-active .search-popup form {
  transform: scaleX(1);
  -webkit-transition-delay: 1200ms;
  -moz-transition-delay: 1200ms;
  -ms-transition-delay: 1200ms;
  -o-transition-delay: 1200ms;
  transition-delay: 1200ms;
}
.search-popup form {
  position: absolute;
  max-width: 700px;
  top: 50%;
  left: 15px;
  right: 15px;
  margin: -35px auto 0;
  transform: scaleX(0);
  transform-origin: center;
  background-color: #111111;
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
}
.search-popup .form-group {
  position: relative;
  margin: 0px;
  overflow: hidden;
}
@keyframes cir36 {
  100% {
    transform: scale(1.05s);
  }
}
.search-popup .form-group input[type="text"],
.search-popup .form-group input[type="search"] {
  position: relative;
  display: block;
  font-size: 18px;
  line-height: 50px;
  color: #000000;
  height: 70px;
  width: 100%;
  outline: none;
  border: none;
  padding: 10px 30px;
  background-color: #ffffff;
  -webkit-transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  transition: all 500ms ease;
  font-weight: 500;
  text-transform: capitalize;
  animation: pulse; 
  animation-duration: 1s;
  animation-iteration-count: infinite;;
}
.search-popup .form-group input[type="text"]:focus, .search-popup .form-group input[type="search"]:focus {
  animation: unset;
}
.search-popup .form-group input[type="submit"],
.search-popup .form-group button {
  position: absolute;
  right: 30px;
  top: 0px;
  height: 40px;
  line-height: 65px;
  background: transparent;
  text-align: center;
  font-size: 24px;
  color: #000000;
  padding: 0;
  cursor: pointer;
  -webkit-transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  transition: all 500ms ease;
  border: unset;
}
.search-popup .form-group button {
  top: 0 !important;
  right: 20px !important;
  bottom: 0 !important;
  height: 40px;
  width: 40px;
  margin: auto;
  padding: 0;
  line-height: normal;
  font-size: 0;
}
.search-popup .form-group button img.img-fluid {
  margin: 0;
  position: relative;
  filter: brightness(0);
}
/*******Search Css End*******/

/*******Header Css*******/
.header-caption-top {
  background-color: var(--h-color);
  margin-bottom: 20px;
}
.header-caption-top .header-caption-top-txt {
  margin: 0;
  padding: 10px 0px;
  text-align: center;
  color: #fff;
  font-size: 14px;
  line-height: 22px;
  align-content: center;
  font-weight: 400;
}
.main-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  background: transparent;
  z-index: 2;
  padding: 0px 0px 10px;
}
.navbar.my-navbar {
  width: 100%;
  display: block;
}
.navbar.my-navbar .navbar-collapse {
  width: 100%;
  display: block !important;
}
.navbar.my-navbar .navbar-collapse ul.navbar-nav {
  justify-content: space-between;
}
.my-navbar .mobile-logo {
  display: none;
}
.main-header .nav-item {
  margin: 0px 5px;
  padding: 0px 0px;
  position: relative;
}
.main-header .nav-item .nav-link {
  color: #ffffff;
  font-size: 18px;
  font-weight: 400;
  position: relative;
  line-height: normal;
  padding: 0px 0px 2px;
  text-transform: capitalize;
  border-bottom: 1px solid transparent;
}
.main-header .active.nav-item .nav-link {
  font-weight: 700;
  border-color: #ffffff;
}
.main-header .nav-item .nav-link:hover {
  transition: 0.3s ease-in;
  color: #ffffff !important;
  border-bottom: 1px solid #ffffff;
}
.main-header .nav-item .nav-link.show {
  transition: 0.3s ease-in;
  color: #ffffff !important;
  border-bottom: 1px solid #ffffff00;
}
.my-navbar .navbar-collapse .nav-item .dropdown-menu {
  margin: 0px;
  transition: 0.3s;
  background: #fff;
  border-radius: 0 0 0px 0px !important;
}
.my-navbar .navbar-collapse .nav-item .dropdown-menu li:last-child a {
    border-bottom: none;
    padding-bottom: 0;
}
.my-navbar .navbar-collapse .nav-item .dropdown-menu li:hover a {
    color: var(--txt-color) !IMPORTANT;
}

.my-navbar .navbar-collapse .nav-item .dropdown-menu li:first-child a {
    padding-top: 0;
}
.my-navbar .navbar-collapse .nav-item .dropdown-menu a {
  font-size: 16px;
  transition: 0.3s;
  color: #000000 !important;
  border-bottom: 2px solid #E0E0E0;
  font-weight: 500;
  text-align: center;
  padding: 5px 0;
}
.my-navbar .navbar-collapse .nav-item .dropdown-menu .dropdown-item, .my-navbar .navbar-collapse .nav-item .dropdown-menu .dropdown-item:hover {
  transition: 0.3s;
  position: relative;
  background-color: transparent;
}
.my-navbar .navbar-collapse .nav-item .dropdown-menu .dropdown-item:hover a {
  transition: 0.3s;
  color: var(--txt-color) !important;
}
.my-navbar .nav-item .dropdown-menu .dropdown-item .nav-link {
  padding: 0 !important;
  margin: 0 !important;
}
body .my-navbar .nav-item .dropdown-menu .dropdown-item.sub-dropdown-about .nav-link {
  font-weight: 500;
}
.sub-dropdown-menu {
  display: none;
}
.sub-dropdown-menu.show {
  top: 10px;
  right: -150px;
  position: absolute;
}
.my-navbar .navbar-collapse .nav-item .dropdown-menu .dropdown-item:hover .dropdown-item a {
  color: #fff !important;
  transition: 0.3s;
}
.my-navbar .navbar-collapse .nav-item .dropdown-menu .dropdown-item .dropdown-item a:hover {
  transition: 0.3s;
  color: var(--btn-color) !important;
}
.qoute-li-header .header-btn.all-btn {
  height: 50px;
  align-content: center;
}
.header-logo {
  max-width: 80%;
  position: relative;
  z-index: 1;
}
.header-logo .logo {
  display: inline-block;
}
.header-logo .logo img {
  max-width: 100%;
}
@media (min-width: 992px) and (max-width: 1350px) {
  .main-header .nav-item .nav-link {
    font-size: 16px;
  }
}
@media (max-width: 992px) {
  .header-caption-top {
    display: none;
  }
  .main-header {
    top: 0;
    left: 0;
    width: 100%;
    height: 80px;
    padding: 0;
    background: var(--h-color) !important;
    align-content: center;
    z-index: 999 !important;
    position: fixed !important;
    border-bottom: 1px solid var(--btn-color);
  }
  .my-navbar .navbar-container {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .my-navbar .mobile-logo {
    display: block !important;
    text-align: left !important;
  }
  .my-navbar .mobile-logo img.img-fluid {
    max-height: 55px;
    max-width: 180px;
  }
  .my-navbar button.navbar-toggler {
    padding: 0 !important;
    color: var(--btn-color);
    height: 40px;
    width: 40px;
    z-index: 10;
    text-align: center;
    align-content: center;
    border: 0 !important;
    font-size: 0;
    box-shadow: none;
  }
  .my-navbar span.navbar-toggler-icon span {
    background-color: #ffffff;
    display: block;
    height: 3px;
    width: 30px;
    border-radius: 2px;
    transition: 0.3s;
  }
  .my-navbar button.navbar-toggler.collapsed span.navbar-toggler-icon span:first-child {
    top: 0;
    transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
  }
  .my-navbar button.navbar-toggler.collapsed span.navbar-toggler-icon span:nth-child(2) {
    opacity: 1;
    transition: 0.3s;
  }
  .my-navbar button.navbar-toggler span.navbar-toggler-icon span:last-child {
    transition: 0.4s;
    margin: 0;
    transform: rotate(40deg);
    position: absolute;
    bottom: 11px;
    left: 0;
    right: 0;
    margin: auto;
  }
  .my-navbar button.navbar-toggler span.navbar-toggler-icon span:first-child {
    transition: 0.4s;
    transform: rotate(-40deg);
    position: absolute;
    left: 0;
    right: 0;
    top: 11px;
    margin: auto;
  }
  .my-navbar button.navbar-toggler span.navbar-toggler-icon span:nth-child(2) {
    opacity: 0;
    transition: 0.3s;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    margin: auto;
  }
  .my-navbar button.navbar-toggler.collapsed span.navbar-toggler-icon span:last-child {
    bottom: 0;
    transition: 0.4s;
    transform: rotate(0deg);
  }
  .main-header .navbar-collapse {
    top: 0;
    left: 0;
    width: 70%;
    position: fixed;
    text-align: left;
    transition: 0.3s;
    text-align: center;
    margin-top: 80px;
    padding-bottom: 300px;
    height: 100% !important;
    background-color: #000000;
    transform: translateX(-1000px);
  }
  .main-header .navbar-collapse.show {
    z-index: 999;
    transition: 0.3s;
    transform: translateX(0px);
  }
  .main-header .nav-item {
    margin: 10px 0px 0px;
  }
  .main-header .nav-item .nav-link {
    margin: 10px 0px 0px;
    font-size: 14px;
    padding: 0px 0px 0px;
  }
  .my-navbar .navbar-collapse .nav-item .dropdown-menu .dropdown-item, .my-navbar .navbar-collapse .nav-item .dropdown-menu .dropdown-item:hover {
    text-align: center;
    padding: 0;
    margin-bottom: 8px;
  }
  .my-navbar .navbar-collapse .nav-item .dropdown-menu {
    margin-top: 8px;
    padding: 10px 30px;
  }
  .my-navbar .navbar-collapse .nav-item .dropdown-menu a {
    font-size: 12px;
  }
  .my-navbar .navbar-collapse{
    overflow: auto;
  }
  .my-navbar .dropdown-menu.sub-dropdown-menu {
    display: block !important;
    overflow: auto;
    border-top: 1px solid var(--btn-color);
    border-bottom: 1px solid var(--btn-color);
    padding-bottom: 0;
    padding-top: 0;
  }
  .my-navbar button.navbar-toggler span.navbar-toggler-icon {
    height: 25px;
    width: 30px;
    position: relative;
    z-index: 1;
    align-content: center;
  }
}
/*******Header Css End*******/

/*******Banner Css*******/
.banner-section {
  position: relative;
  z-index: 1;
  background: #EDF9FF;
  overflow: hidden;
}
.banner-section .container {
  position: relative;
  z-index: 1;
}
.banner_txt .caption2 {
  position: relative;
  z-index: 3;
  max-width: 70%;
  align-content: center;
  margin: auto;
  text-align: center;
}
.banner_txt .banner-text1 {
  color: #ffffff;
  font-size: 70px;
  font-weight: 700;
  line-height: 80px;
  position: relative;
  margin-bottom: 15px;
  text-transform: capitalize;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.banner_txt .banner-text2 {
  color: #ffffff;
  font-size: 20px;
  font-weight: 400;
  line-height: 26px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  max-width: 60%;
  margin: auto auto 20px;
}

/*animation starts*/
.typewriter{
    opacity:0;
    filter:blur(10px);
    will-change:transform, opacity, filter;
    animation-fill-mode: both;
    backface-visibility: hidden;
    transform: translateZ(0);
}

.typewriter.animate{
    animation:textReveal 3.5s cubic-bezier(.22,1,.36,1) forwards;
}

@keyframes textReveal{

    0%{
        opacity:0;
        transform:translateY(60px);
        filter:blur(10px);
        letter-spacing:10px;
    }
    35%{
        opacity:1;
        transform:translateY(0);
        filter:blur(0);
        letter-spacing:0;
    }
    80%{
        opacity:1;
        transform:translateY(0);
        filter:blur(0);
        letter-spacing:0;
    }
    100%{
        opacity:1;
        transform:translateY(0);
        filter:blur(0);
        letter-spacing:0;
    }
}

/*animation end*/

.banner-btn.all-btn {
  display: inline-block;
  margin-right: 10px;
}
.owl-carousel.banner-slider {
  position: relative;
  z-index: 1;
}
.owl-carousel.banner-slider:before {
  content: '';
  position: absolute;
  inset: 0;
  margin: 0 0 auto 0;
  height: 100%;
  width: 100%;
  background: var(--btn-color);
  z-index: -1;
  border-radius: 0 15px 15px 0;
}
.owl-carousel.banner-slider .owl-dots {
  display: flex !important;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  position: absolute;
  bottom: 50px;
  left: 0;
  right: 0;
  width: 100%;
}
.owl-carousel.banner-slider .owl-dots .owl-dot {
  margin: 0px 10px;
  width: 100px;
  height: 2px;
  background: #fff;
  opacity: 0.4;
  transition: 0.3s;
}
.owl-carousel.banner-slider .owl-dots .owl-dot.active {
  opacity: 1;
  transition: 0.3s;
}
@media (min-width: 992px) and (max-width: 1350px) {
  .banner_txt .banner-text1 {
    font-size: 40px;
    line-height: 45px;
  }
  .banner_txt .banner-text2 {
    font-size: 16px;
    line-height: 22px;
    max-width: 75%;
  }
}
@media (min-width: 1750px) {
  .banner_txt .caption2 {
    max-width: 60%;
  }
}
@media (min-width: 1350px) and (max-width: 1500px) {
  .owl-carousel.banner-slider {
    height: 750px;
  }
  .banner_txt .banner-text1 {
    font-size: 55px;
    line-height: 60px;
  }
}
@media (min-width: 1200px) and (max-width: 1350px) {
  .banner_txt .caption2 {
    max-width: 56%;
  }
}
@media (min-width: 1024px) and (max-width: 1200px) {
  .banner_txt .caption2 {
    margin-bottom: 10px;
    max-width: 60%;
  }
}
@media (min-width: 992px) and (max-width: 1100px) {
  .banner_txt .banner-text1 {
    font-size: 40px;
  }
  .banner_txt .banner-text2 {
    font-size: 18px;
  }
}
@media (min-width: 767px) and (max-width: 992px) {
  .banner-section {
    margin-top: 80px;
  }
  .banner-company-name {
    font-size: 12px;
    left: -15px;
  }
  .banner_txt .banner-text1 {
    font-size: 30px;
    line-height: 36px;
    margin-bottom: 2px;
  }
  .banner_txt .banner-text2 {
    font-size: 16px;
    line-height: 24px;
    -webkit-line-clamp: 3;
  }
  .banner_txt .caption2 {
    margin-bottom: 20px;
    max-width: 80%;
  }
  .owl-carousel.banner-slider .owl-dots {
    bottom: 30px;
  }
}
@media (max-width: 767px) {
  .banner-section {
    overflow: hidden;
    margin-top: 80px;
  }
  .owl-carousel.banner-slider {
    height: auto;
    min-height: 220px;
  }
  .owl-carousel.banner-slider:before {
    border-radius: 0;
  }
  .banner_txt .caption2 {
    max-width: 90%;
    left: 0;
    margin: auto;
  }
  .banner_txt .banner-text1 {
    font-size: 16px;
    line-height: 22px;
    margin-bottom: 4px;
  }
  .banner_txt .banner-text2 {
    font-size: 12px;
    line-height: 18px;
    margin: 0 0 6px 0;
    max-width: 100%;
  }
  .owl-carousel.banner-slider .owl-dots {
    bottom: 15px;
  }
  .owl-carousel.banner-slider .owl-dots .owl-dot {
    width: 50px;
    margin: 0px 5px;
  }
}
@media (min-width: 575px) and (max-width: 767px) {
  .banner-slider .item {
    align-content: center;
    padding-top: 0 !important;
  }
  .banner_txt .caption2 {
    max-width: 70%;
  }
}
/*******Banner Css End*******/

/*******Category Css *******/
.category-section {
  padding: 60px 0px 30px;
  position: relative;
}
.category-section .category-heading.section-heading {
  margin-bottom: 40px;
}
.single-category-wrapper {
  position: relative;
  z-index: 1;
  margin-bottom: 20px;
}
.single-category-wrapper .category-img {
  border-radius: 0;
  position: relative;
  height: 320px;
  width: 100%;
  z-index: 1;
  box-shadow: unset;
  transition: 0.3s;
  overflow: hidden;
}
.single-category-wrapper.cateory1 .category-img {
  height: 660px;
}
.single-category-wrapper .category-img a.category-img-link:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: 100%;
  height: 220px;
  background: linear-gradient(180deg, #ffffff 0%, #73737300 100%);
  z-index: 1;
}
.single-category-wrapper .category-img img.cat-image-tag {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 2s ease-out;
}
.single-category-wrapper .category-content {
  position: absolute;
  top: 20px;
  left: 0;
  right: 0;
  margin: auto;
  text-align: center;
  max-width: 90%;
  z-index: 1;
  transition: 0.3s;
}
.category-title .category-links {
  font-size: 28px;
  font-weight: 500;
  color: var(--h-color);
  line-height: 35px;
  margin-bottom: 10px;
  display: block;
  text-transform: capitalize;
  min-height: 50px;
  align-content: center;
}
.category-view .category-links-view {
  color: #383838;
  font-weight: 500;
  font-size: 18px;
  transition: 0.3s;
  position: relative;
  display: inline-block;
}
.category-view .category-links-view img {
  margin-left: 10px;
  max-width: 10px;
}
.category-view .category-links-view:before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--h-color);
  transition: 0.3s;
}
.category-view .category-links-view:hover:before {
  width: 100%;
  transition: 0.3s;
  left: auto;
  right: 0;
}
.single-category-wrapper:hover .category-img img.cat-image-tag {
  transition: all 2s ease-out;
  transform: scale(1.05);
}

@media (min-width: 992px) and (max-width: 1350px) {
  .category-title .category-links {
    font-size: 26px;
    line-height: 32px;
  }
  .category-view .category-links-view {
    font-size: 15px;
  }
}
@media (min-width: 1200px) and (max-width: 1350px) {

}
@media (min-width: 1100px) and (max-width: 1200px) {
    .category-title .category-links {
        font-size: 22px;
        min-height: 40px;
    }
}
@media (min-width: 992px) and (max-width: 1100px) {
    .category-title .category-links {
        font-size: 20px;
        line-height: 20px;
        min-height: 40px;
    }
    
    .category-view .category-links-view {
        font-size: 14px;
    }
}
@media (min-width: 767px) and (max-width: 992px) {
  .category-section {
    padding: 40px 0px 0px;
  }
  .single-category-wrapper .category-img {
    height: 170px;
  }
  .single-category-wrapper.cateory1 .category-img {
    height: 360px;
  }
  .single-category-wrapper .category-img a.category-img-link:before {
    height: 160px;
  }
  .single-category-wrapper .category-content {
    top: 10px;
  }
  .category-title .category-links {
    font-size: 16px;
    font-weight: 600;
    line-height: 24px;
    min-height: auto;
    margin-bottom: 5px;
  }
  .category-view .category-links-view {
    font-size: 14px;
  }

}
@media (max-width: 767px) {
  .category-section {
    padding: 30px 0px 0px;
  }
  .category-section .category-heading.section-heading {
    margin-bottom: 20px;
  }
  .single-category-wrapper {
  }
  .single-category-wrapper .category-img {
    height: 150px;
  }
  .single-category-wrapper.cateory1 .category-img {
    height: 150px;
  }
  .single-category-wrapper .category-content {
    top: auto;
    bottom: 10px;
  }
  .category-title .category-links {
    font-size: 18px;
    line-height: 26px;
    margin-bottom: 5px;
    min-height: auto;
  }
  .category-view .category-links-view {
    font-size: 13px;
  }
  .single-category-wrapper .category-img a.category-img-link:before {
    height: 100%;
    transform: rotate(180deg);
  }
}
@media (min-width: 575px) and (max-width: 767px) {
  .single-category-wrapper.cateory1 .category-img {
    height: 320px;
  }
  .single-category-wrapper .category-content {
    top: 10px;
    bottom: auto;
  }
  .category-title .category-links {
    font-size: 14px;
    line-height: 18px;
  }
  .category-view .category-links-view {
    font-size: 11px;
  }
  .category-view .category-links-view img {
    max-width: 8px;
  }
  .single-category-wrapper .category-img a.category-img-link:before {
    transform: rotate(0deg);
  }
}

/*******Category Css End*******/

/*******About Css*******/
.about-section {
  position: relative;
  padding: 20px 0px 0px;
}
.about-content.section-heading {
  position: relative;
  max-width: 85%;
  margin: auto;
  text-align: center;
  background: #ffffff;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  padding: 50px 60px 60px;
}
.about-content.section-heading:before {
  content: '';
  position: absolute;
  inset: 0;
  margin: auto;
  border: 2px solid #C9C9C9;
  width: 97%;
  height: 94%;
}
.about-content.section-heading .default-heading {
  margin-bottom: 10px !important;
}
.about-home-section {
  position: relative;
  margin-bottom: 330px;
}
.about-home-section .about-content.section-heading {
  z-index: 1;
  position: absolute;
  top: 380px;
  left: 0;
  right: 0;
}
.about-home-section .section-heading .default-heading .heading-h {
  margin-bottom: 20px;
  padding-bottom: 20px;
}
.about-home-section .section-heading .default-heading .heading-h:before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: 120px;
  height: 2px;
  background: var(--h-color);
}
.about-content.section-heading .default-p p {
  display: -webkit-box;
  -webkit-line-clamp: 6;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 20px;
}
.about-image {
  position: relative;
  z-index: 1;
  overflow: hidden;
  margin-top: 30px;
  height: 550px;
}
.about-image img.about-img-tag {
  position: absolute;
  inset: 0;
  margin: auto;
  object-fit: cover;
  width: 100%;
  height: 100%;
  transition: all 2s ease-out;
}
.about-image:hover img.about-img-tag {
  transition: all 2s ease-out;
  transform: scale(1.06);
}
@media (min-width: 992px) and (max-width: 1100px) {
  .about-content.section-heading .default-p p {
    margin-bottom: 10px;
    padding-bottom: 10px;
  }
}
@media (min-width: 767px) and (max-width: 992px) {
  .about-section {
    padding: 20px 0px 10px;
  }
  .about-content.section-heading .default-p p {
    margin-bottom: 10px;
    padding-bottom: 10px;
    position: relative;
    z-index: 1;
  }
  .about-home-section {
    margin-bottom: 230px;
  }
  .about-image {
    height: 320px;
    margin-top: 20px;
  }
  .about-home-section .about-content.section-heading {
    top: 200px;
    padding: 30px;
  }
  .about-home-section .section-heading .default-heading .heading-h {
    margin-bottom: 10px;
    padding-bottom: 10px;
  }
}
@media (max-width: 767px) {
  .about-section {
    padding: 10px 0px 20px;
  }
  .about-content.section-heading {
    padding-left: 0;
  }
  .about-content.section-heading .default-p p {
    margin-bottom: 10px;
    -webkit-line-clamp: 10;
    z-index: 1;
    position: relative;
  }
  .about-content.section-heading .about-btn.all-btn {
    margin-bottom: 10px;
  }
  .about-image {
    height: 120px;
    margin-top: 10px;
  }
  .about-home-section .about-content.section-heading {
    top: 0;
    padding: 10px;
    max-width: 100%;
    position: relative;
  }
  .about-home-section .section-heading .default-heading .heading-h {
    margin-bottom: 10px;
    padding-bottom: 10px;
  }
  .about-content.section-heading:before {
    width: 98%;
    height: 99%;
  }
  .about-home-section {
    margin-bottom: 0;
  }
}
@media (min-width: 575px) and (max-width: 767px) {
 .about-content.section-heading:before {
   height: 97%;
  }
  .about-image {
    height: 200px;
  }
}
/*******About Css End*******/

/*******Product Css*******/
.product-section {
  position: relative;
  z-index: 1;
  padding: 60px 0px 50px;
}
.product-heading.section-heading {
  margin-bottom: 50px;
}
.product-heading.section-heading .default-heading {
  margin-bottom: 0;
}
.home-all-product-wrappers {
  display: flex;
  justify-content: center;
}
.single-product-wrapper {
  position: relative;
  overflow: hidden;
  margin: 10px 10px 20px;
  padding: 10px;
  max-width: 20%;
  width: 100%;
  background: linear-gradient(0deg, #0000004f 0%, #d9d9d92e 100%);
  border: 1px solid transparent;
  border-top: 0;
  transition: 0.3s;
  box-shadow: rgb(0 0 0 / 0%) 0px 3px 6px, rgb(0 0 0 / 0%) 0px 3px 6px;
}
.single-product-wrapper:hover {
  transition: 0.3s;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 3px 6px, rgba(0, 0, 0, 0.23) 0px 3px 6px;
  border-bottom: 1px solid #8d8888c2;
}
.single-product-wrapper .pro-img {
  height: 240px;
  width: 100%;
  overflow: hidden;
  z-index: 1;
  position: relative;
  margin: auto;
}
.single-product-wrapper .pro-img .pro-img-tag {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  transition: all 1s ease-out;
  max-width: 100%;
  height: 100%;
  object-fit: contain;
}
.single-product-wrapper .pro-content {
  margin-top: 20px;
}
.single-product-wrapper .pro-content .pro-title {
  display: block;
}
.single-product-wrapper .pro-content .pro-title .pro-links {
  color: var(--h-color);
  font-size: 15px;
  line-height: 26px;
  font-weight: 500;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: 0.3s;
  text-transform: capitalize;
  position: relative;
  background-color: #ffffff5c;
  padding-left: 70px;
  height: 60px;
  padding-right: 5px;
  text-align: center;
  align-content: center;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(0px);
  border: 1px solid rgba(255, 255, 255, 1);
}
.single-product-wrapper .pro-content .pro-title .pro-links span {
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-align: center;
}
.single-product-wrapper .pro-content .pro-title .pro-links img {
  max-width: 60px;
  max-height: 60px;
  background-color: #fff;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  padding: 3px;
}
.single-product-wrapper:hover .pro-content .pro-title .pro-links {
  color: #000000 !important;
  transition: 0.3s;
}
.single-product-wrapper:hover .pro-img .pro-img-tag {
  transition: all 1s ease-out;
  transform: scale(1.04);
}
@media (min-width: 1250px) and (max-width: 1350px) {
  .single-product-wrapper .pro-img {
    height: 200px;
  }
  .single-product-wrapper .pro-content .pro-title .pro-links {
    font-size: 14px;
    padding-left: 50px;
    height: 40px;
  }
  .single-product-wrapper .pro-content .pro-title .pro-links img {
    max-width: 40px;
    max-height: 40px;
  }
}
@media (min-width: 1100px) and (max-width: 1250px) {
  .single-product-wrapper .pro-img {
    height: 230px;
  }
  .single-product-wrapper .pro-img {
    height: 180px;
  }
  .single-product-wrapper .pro-content .pro-title .pro-links img {
    max-width: 40px;
    max-height: 40px;
  }
  .single-product-wrapper .pro-content .pro-title .pro-links {
    font-size: 12px;
    padding-left: 45px;
    height: 40px;
  }
}
@media (min-width: 992px) and (max-width: 1100px) {
  .product-section {
    padding: 50px 0px 100px;
  }
  .single-product-wrapper .pro-content {
    margin-top: 5px;
  }
  .single-product-wrapper .pro-img {
    height: 150px;
  }
  .single-product-wrapper .pro-content .pro-title .pro-links img {
    max-width: 40px;
    max-height: 40px;
  }
  .single-product-wrapper .pro-content .pro-title .pro-links {
    font-size: 10px;
    padding-left: 45px;
    height: 40px;
  }
}
@media (min-width: 767px) and (max-width: 992px) {
  .product-section {
    padding: 20px 0px 10px;
  }
  .product-heading.section-heading .default-heading {
    margin-bottom: 0 !important;
  }
  .single-product-wrapper {
    margin: 5px;
    padding: 8px;
    margin-bottom: 10px;
    max-width: 30%;
  }
  .single-product-wrapper .pro-img {
    height: 160px;
  }
  .single-product-wrapper .pro-content {
    margin-top: 10px;
  }
  .single-product-wrapper .pro-content .pro-title .pro-links {
    font-size: 13px;
    line-height: 18px;
    height: 50px;
    padding-left: 55px;
  }
  .single-product-wrapper .pro-content .pro-title .pro-links img {
    max-width: 50px;
    max-height: 50px;
  }
  .home-all-product-wrappers {
  flex-wrap: wrap;
  }
}
@media (max-width: 767px) {
  .product-section {
    padding: 10px 0px 20px;
  }
  .home-all-product-wrappers {
    display: block;
  }
  .single-product-wrapper {
    margin: 20px 0px 0px;
    max-width: 100%;
  }
  .single-product-wrapper .pro-img {
    height: 200px;
  }
  .single-product-wrapper .pro-content .pro-title .pro-links {
    font-size: 14px;
    line-height: 20px;
    height: 50px;
    padding-left: 55px;
  }
  .single-product-wrapper .pro-content .pro-title .pro-links img {
    max-width: 50px;
    max-height: 50px;
  }
  .product-heading.section-heading {
    margin-bottom: 20px;
  }
  .single-product-wrapper .pro-content {
    margin-top: 10px;
  }
}
@media (min-width: 575px) and (max-width: 767px) {
  .home-all-product-wrappers {
    display: flex;
    flex-wrap: wrap;
  }
  .single-product-wrapper {
    max-width: 30%;
    margin: 0px 2px 20px 2px;
  }
  .single-product-wrapper .pro-img {
    height: 150px;
  }
  .single-product-wrapper .pro-content .pro-title .pro-links {
    font-size: 12px;
    line-height: 18px;
    padding-left: 40px;
    height: 40px;
  }
  .single-product-wrapper .pro-content .pro-title .pro-links img {
    max-width: 40px;
    max-height: 40px;
  }
}
/*******Product Css End*******/

/*******Why Choose Css*******/
.why-choose-section {
  position: relative;
  padding: 20px 0px 40px;
}
.all-service-wrapper {
  display: flex;
}
.all-service-wrapper .single-service-wrapper {
  width: 10%;
  transition: all 2s ease-out;
  height: 600px;
  overflow: hidden;
  position: relative;
  margin: 0px 6px;
}
.all-service-wrapper .single-service-wrapper.active {
  width: 70%;
  transition: all 2s ease-out;
}
.all-service-wrapper .single-service-wrapper img.service-image-tag.img-fluid {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.all-service-wrapper .single-service-wrapper .service-content {
  opacity: 0;
  transition: 0.2s;
  display: flex;
  align-items: center;
}
.all-service-wrapper .single-service-wrapper .service-content .cont-main {
    width: 90%;
}

.all-service-wrapper .single-service-wrapper .service-content .service-view {
    width: 10%;
    text-align: center;
}
.all-service-wrapper .single-service-wrapper.active .service-content {
  opacity: 1;
  transition: all 2s ease-out;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
  background: linear-gradient(0deg, #ffffff 0%, #73737300 100%);
  padding: 30px;
}
.service-content .service-title {
  color: var(--h-color);
  font-size: 30px;
  font-weight: 600;
  text-transform: capitalize;
  line-height: 40px;
  margin-bottom: 10px;
}
.service-content .service-txt {
  max-width: 80%;
  font-size: 18px;
  font-weight: 500;
  line-height: 26px;
}
.service-view .service-links-view {
  position: relative;
  z-index: 1;
  background: #ffff;
  height: 60px;
  width: 60px;
  display: inline-block;
  align-content: center;
  border-radius: 100%;
}

@media (min-width: 1250px) and (max-width: 1350px) {}
@media (min-width: 1100px) and (max-width: 1250px) {}
@media (min-width: 992px) and (max-width: 1100px) {}
@media (min-width: 767px) and (max-width: 992px) {
  .why-choose-section {
    padding: 20px 0px 20px;
  }
  .all-service-wrapper {
    margin-top: 20px;
  }
  .all-service-wrapper .single-service-wrapper {
    height: 350px;
    width: 12%;
    margin: 0px 3px;
  }
  .all-service-wrapper .single-service-wrapper.active {
    width: 64%;
  }
  .all-service-wrapper .single-service-wrapper.active .service-content {
    padding: 20px;
    padding-top: 70px;
  }
  .service-content .service-title {
    font-size: 24px;
    line-height: 32px;
    margin-bottom: 6px;
  }
  .service-content .service-txt {
    font-size: 14px;
    line-height: 22px;
  }
  .service-view .service-links-view {
    font-size: 13px;
    height: 40px;
    width: 40px;
  }
  .service-view .service-links-view img {
    max-width: 8px;
  }
}
@media (max-width: 767px) {
  .why-choose-section {
    padding: 10px 0px 20px;
  }
  .all-service-wrapper .single-service-wrapper {
    height: 220px;
    width: 10%;
    margin: 0px 2px;
  }
  .all-service-wrapper .single-service-wrapper.active {
    width: 70%;
  }
  .all-service-wrapper .single-service-wrapper.active .service-content {
    padding: 8px;
    padding-top: 60px;
    background: linear-gradient(0deg, #ffffff 20%, #73737300 100%);
  }
  .service-content .service-title {
    font-size: 15px;
    line-height: 22px;
    margin-bottom: 5px;
  }
  .service-content .service-txt {
    font-size: 12px;
    line-height: 20px;
    max-width: 100%;
  }
  .service-view .service-links-view {
    font-size: 11px;
    height: 20px;
    width: 20px;
  }
  .service-view .service-links-view img {
    max-width: 7px;
  }
}
/*******Why Choose Css End*******/

/*******Hot Product Css*******/
.hot-product-section {
  position: relative;
  padding: 20px 0px 60px;
}
.hot-product-heading.section-heading {
  margin-bottom: 40px;
}
.single-hot-product-wrapper {
  background: #F0F1F2;
  text-align: center;
  position: relative;
  margin: 10px 10px 20px;
  padding: 20px;
  transition: 0.3s;
  border: 1px solid transparent;
}
.single-hot-product-wrapper:hover {
  transition: 0.3s;
  box-shadow: rgb(0 0 0 / 11%) 0px 12px 8px;
  border: 1px solid #ccc;
}
.single-hot-product-wrapper .hot-pro-img {
  height: 220px;
  width: 100%;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.single-hot-product-wrapper .hot-pro-img img.hot-pro-img-tag {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  transition: all 1s ease-out;
  max-width: 100%;
  height: 100%;
  object-fit: contain;
}
.single-hot-product-wrapper:hover .hot-pro-img img.hot-pro-img-tag {
  transition: all 1s ease-out;
  transform: scale(1.05);
}
.single-hot-product-wrapper .hot-pro-content {
  margin: 20px auto auto;
}
.single-hot-product-wrapper .hot-pro-content .hot-pro-title .hot-pro-links {
  color: var(--h-color);
  font-size: 16px;
  line-height: 26px;
  font-weight: 500;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: 0.3s;
  text-transform: capitalize;
  position: relative;
  height: 55px;
  text-align: center;
  align-content: center;
}
.single-hot-product-wrapper .hot-pro-content .hot-pro-view {
  margin-top: 10px;
  opacity: 0;
  transition: 0.3s;
}
.single-hot-product-wrapper .hot-pro-content .hot-pro-view .hot-pro-anchor {
  font-size: 15px;
  font-weight: 500;
  position: relative;
  display: inline-block;
  color: var(--txt-color);
  transition: 0.3s;
}
.single-hot-product-wrapper .hot-pro-content .hot-pro-view .hot-pro-anchor img {
  display: inline-block;
  max-width: 10px;
  margin-left: 5px;
}
.single-hot-product-wrapper:hover .hot-pro-content .hot-pro-view {
  transition: 0.3s;
  opacity: 1;
}
.single-hot-product-wrapper .hot-pro-content .hot-pro-view .hot-pro-anchor:before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: auto;
  width: 0;
  height: 1px;
  background: var(--sec-color);
  transition: 0.3s;
}
.single-hot-product-wrapper .hot-pro-content .hot-pro-view .hot-pro-anchor:hover:before {
  transition: 0.3s;
  width: 100%;
  right: 0;
}
.hot_product_carousel  .owl-nav {
  display: flex !important;
  justify-content: space-between;
  align-items: center;
}
.hot_product_carousel .owl-nav .owl-prev {
  font-size: 0;
  position: absolute;
  top: 0;
  bottom: 0;
  left: -30px;
  margin: auto;
  height: 40px;
  width: 40px;
  border: 1px solid #DBDBDB;
  border-radius: 50%;
  text-align: center;
  align-items: center;
  transition: 0.3s;
}
.hot_product_carousel .owl-nav .owl-prev:before {
  content: '';
  position: absolute;
  inset: 0;
  margin: auto;
  background-image: url(/images/slider-arrow.svg);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  background-position: center center;
  max-width: 12px;
}
.hot_product_carousel .owl-nav .owl-next {
  font-size: 0;
  position: absolute;
  top: 0;
  bottom: 0;
  right: -30px;
  margin: auto;
  height: 40px;
  width: 40px;
  border: 1px solid #DBDBDB;
  border-radius: 50%;
  text-align: center;
  align-items: center;
  transform: rotate(180deg);
}
.hot_product_carousel .owl-nav .owl-next:before {
  content: '';
  position: absolute;
  inset: 0;
  margin: auto;
  background-image: url(/images/slider-arrow.svg);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  background-position: center center;
  max-width: 12px;
}
.hot_product_carousel .owl-nav .owl-prev:hover, .hot_product_carousel .owl-nav .owl-next:hover {
  border-color: #000;
  transition: 0.3s;
}
@media (min-width: 1250px) and (max-width: 1350px) {
  .single-hot-product-wrapper {
    padding: 10px;
  }
  .single-hot-product-wrapper .hot-pro-content {
    margin-top: 10px;
  }
  .single-hot-product-wrapper .hot-pro-content .hot-pro-title .hot-pro-links {
    font-size: 14px;
    line-height: 20px;
    height: 46px;
  }
  .single-hot-product-wrapper .hot-pro-content .hot-pro-view {
    margin-top: 5px;
  }
  .single-hot-product-wrapper .hot-pro-content .hot-pro-view .hot-pro-anchor {
    font-size: 13px;
  }
  .single-hot-product-wrapper .hot-pro-content .hot-pro-view .hot-pro-anchor img {
    max-width: 8px;
  }
}
@media (min-width: 1100px) and (max-width: 1250px) {
  .single-hot-product-wrapper {
    padding: 10px;
  }
  .single-hot-product-wrapper .hot-pro-img {
    height: 180px;
  }
  .single-hot-product-wrapper .hot-pro-content {
    margin-top: 10px;
  }
  .single-hot-product-wrapper .hot-pro-content .hot-pro-title .hot-pro-links {
    font-size: 13px;
    line-height: 19px;
    height: 40px;
  }
  .single-hot-product-wrapper .hot-pro-content .hot-pro-view {
    margin-top: 5px;
  }
  .single-hot-product-wrapper .hot-pro-content .hot-pro-view .hot-pro-anchor {
    font-size: 12px;
  }
  .single-hot-product-wrapper .hot-pro-content .hot-pro-view .hot-pro-anchor img {
    max-width: 8px;
  }
}
@media (min-width: 992px) and (max-width: 1100px) {
  .single-hot-product-wrapper {
    padding: 10px;
  }
  .single-hot-product-wrapper .hot-pro-img {
    height: 150px;
  }
  .single-hot-product-wrapper .hot-pro-content {
    margin-top: 6px;
  }
  .single-hot-product-wrapper .hot-pro-content .hot-pro-title .hot-pro-links {
    font-size: 12px;
    line-height: 18px;
    height: 38px;
  }
  .single-hot-product-wrapper .hot-pro-content .hot-pro-view {
    margin-top: 5px;
  }
  .single-hot-product-wrapper .hot-pro-content .hot-pro-view .hot-pro-anchor {
    font-size: 11px;
  }
  .single-hot-product-wrapper .hot-pro-content .hot-pro-view .hot-pro-anchor img {
    max-width: 7px;
  }
}
@media (min-width: 767px) and (max-width: 992px) {
  .hot-product-section {
    padding: 20px 0px 10px;
  }
  .hot-product-heading.section-heading {
    margin-bottom: 20px;
  }
  .single-hot-product-wrapper {
    padding: 10px;
  }
  .single-hot-product-wrapper .hot-pro-img {
    height: 180px;
  }
  .single-hot-product-wrapper .hot-pro-content .hot-pro-title .hot-pro-links {
    font-size: 14px;
    line-height: 20px;
    min-height: 50px;
  }
  .single-hot-product-wrapper .hot-pro-content .hot-pro-view {
    margin-top: 5px;
    opacity: 1;
  }
  .hot_product_carousel .owl-nav .owl-prev {
    left: 0px;
  }
  .hot_product_carousel .owl-nav .owl-next {
    right: 0px;
  }
}
@media (max-width: 767px) {
  .hot-product-section {
    padding: 10px 0px 0px;
  }
  .hot-product-heading.section-heading {
    margin-bottom: 20px;
  }
  .single-hot-product-wrapper {
    padding: 10px;
    margin-bottom: 10px;
  }
  .single-hot-product-wrapper .hot-pro-img {
    height: 200px;
  }
  .single-hot-product-wrapper .hot-pro-content {
    margin-top: 10px;
  }
  .single-hot-product-wrapper .hot-pro-content .hot-pro-title .hot-pro-links {
    font-size: 14px;
    line-height: 20px;
    height: 40px;
  }
  .single-hot-product-wrapper .hot-pro-content .hot-pro-view {
    opacity: 1;
    margin-top: 5px;
  }
  .single-hot-product-wrapper .hot-pro-content .hot-pro-view .hot-pro-anchor {
    font-size: 12px;
  }
  .single-hot-product-wrapper .hot-pro-content .hot-pro-view .hot-pro-anchor img {
    max-width: 8px;
  }
  .hot_product_carousel .owl-nav .owl-prev {
    left: 4px;
    height: 30px;
    width: 30px;
  }
  .hot_product_carousel .owl-nav .owl-next {
    right: 4px;
    height: 30px;
    width: 30px;
  }
  .hot_product_carousel .owl-nav .owl-prev:before,
  .hot_product_carousel .owl-nav .owl-next:before {
    max-width: 9px;
  }
}
@media (min-width: 575px) and (max-width: 767px) {
  .single-hot-product-wrapper .hot-pro-img {
    height: 120px;
  }
  .single-hot-product-wrapper .hot-pro-content .hot-pro-title .hot-pro-links {
    font-size: 13px;
    line-height: 18px;
  }
}
/*******Hot Product Css End*******/

/*******Trusted Partner Css*******/
.trusted-partner-section {
  height: 600px;
  align-content: center;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  margin: 30px 0px;
}
.trusted-partner-content .trusted-partner-text1 {
  display: inline-block;
  background-color: #ffffff7d;
  font-size: 16px;
  font-weight: 500;
  padding: 6px 20px;
  border-radius: 100px;
  margin-bottom: 20px;
}
.trusted-partner-content .trusted-partner-text2 {
  display: block;
  font-size: 45px;
  font-weight: 600;
  line-height: 50px;
  color: var(--h-color);
  margin-bottom: 20px;
}
.trusted-partner-content .trusted-partner-text3 {
  font-size: 18px;
  font-weight: 500;
  color: #fff;
  line-height: 30px;
  max-width: 80%;
  margin-bottom: 20px;
}
.trusted-partner-content .trusted-partner-btn1 {
  display: inline-block;
  margin-right: 30px;
}
.trusted-partner-content .trusted-partner-btn2 {
  display: inline-block;
}
@media (min-width: 1250px) and (max-width: 1350px) {}
@media (min-width: 1100px) and (max-width: 1250px) {}
@media (min-width: 992px) and (max-width: 1100px) {}
@media (min-width: 767px) and (max-width: 992px) {
  .trusted-partner-section {
    margin: 10px 0px 10px;
    height: 350px;
  }
  .trusted-partner-content .trusted-partner-text1 {
    font-size: 14px;
    margin-bottom: 10px;
  }
  .trusted-partner-content .trusted-partner-text2 {
    font-size: 30px;
    line-height: 36px;
    margin-bottom: 10px;
  }
  .trusted-partner-content .trusted-partner-text3 {
    font-size: 15px;
    line-height: 22px;
  }
}
@media (max-width: 767px) {
  .trusted-partner-section {
    margin: 20px 0px 10px;
    height: auto;
    padding: 30px 0;
  }
  .trusted-partner-content .trusted-partner-text2 {
    font-size: 20px;
    line-height: normal;
    margin-bottom: 10px;
  }
  .trusted-partner-content .trusted-partner-btn1 {
    margin-right: 10px;
  }
  .trusted-partner-content .trusted-partner-text3 {
    font-size: 12px;
    line-height: 20px;
  }
  .trusted-partner-content .trusted-partner-text1 {
    font-size: 12px;
    margin-bottom: 10px;
    padding: 5px 15px;
  }
}

/*******Trusted Partner Css End*******/

/*******Gallery Section Css*******/
.gallery-section {
  padding: 30px 0px;
  position: relative;
}
.all-gallery-wrapper {
  display: flex;
  align-items: end;
  justify-content: center;
}
.all-gallery-wrapper .single-gallery {
  margin: 0px 6px 12px 6px;
  overflow: hidden;
  transition: all 2s ease-out;
  box-shadow: rgba(0, 0, 0, 0.15) 0px 2px 8px;
}
.all-gallery-wrapper .single-gallery img.gallery-image-tag {
  transition: all 2s ease-out;
}
.all-gallery-wrapper .single-gallery:hover img.gallery-image-tag {
  transition: all 2s ease-out;
  transform: scale(1.06);
}
.all-gallery-wrapper .single-gallery.gallery4 {
  margin-bottom: 60px;
}
@media (min-width: 1250px) and (max-width: 1350px) {}
@media (min-width: 1100px) and (max-width: 1250px) {}
@media (min-width: 992px) and (max-width: 1100px) {}
@media (min-width: 767px) and (max-width: 992px) {
  .gallery-section {
    padding: 30px 0px 20px;
  }
  .all-gallery-wrapper .single-gallery.gallery4 {
    margin-bottom: 40px;
  }
}
@media (max-width: 767px) {
  .gallery-section {
    padding: 20px 0px 10px;
  }
  .all-gallery-wrapper .single-gallery {
    margin: 0px 3px 6px 3px;
  }
  .all-gallery-wrapper .single-gallery.gallery4{
    margin-bottom:25px;
  }
}
/*******Gallery Section Css End*******/

/*******Testimonial Css*******/
.testimonial-section {
  position: relative;
  padding: 50px 0 80px;
}
.testimonial-section:before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  height: 100%;
  width: 16%;
  background: linear-gradient(90deg, #ffffff, transparent);
  z-index: 2;
}
.testimonial-section:after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  height: 100%;
  width: 16%;
  background: linear-gradient(-90deg, #ffffff, transparent);
  z-index: 2;
}
.testimonial-heading.section-heading {
  margin-bottom: 40px;
}
.testimonial-content {
  background: #fff;
  box-shadow: rgba(0, 0, 0, 0.15) 0px 2px 8px;
  margin: 10px;
  padding: 10px;
}
.testimonial-image-title {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
  position: relative;
}
.testimonial-image {
  max-width: 45px;
  max-height: 45px;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  overflow: hidden;
  margin-right: 10px;
}
.testimonial-image img.testimonial-image-tag {
  width: 45px !important;
  height: 45px !important;
}
.testimonial-review {
  max-width: 70px;
  width: 100%;
  position: absolute;
  right: 0;
  top: 0px;
  bottom: 20px;
  margin: auto;
  align-content: center;
}
.testimonial-title {
  display: block;
  width: 100%;
}
.testimonial-title .testimonial-name {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
  color: var(--h-color);
  max-width: 75%;
}
.testimonial-title .testimonial-ttl {
  font-size: 11px;
  font-weight: 500;
  color: var(--sec-color);
  display: inline-block;
}
.testimonial-text .testimonial-p {
  font-size: 14px;
  font-weight: 400;
  color: var(--txt-color);
  position: relative;
  z-index: 1;
  padding: 15px;
  transition: 0.3s;
  line-height: 22px;
  margin: 0;
  min-height: 260px;
  background: #F6F6F6;
}
.testimonial-section .testimonial-carousel .owl-dots {
  display: none !important;
  justify-content: center;
  align-items: center;
  position: absolute;
  left: 0;
  right: 0;
  bottom: -40px;
}
.testimonial-section .testimonial-carousel .owl-dots .owl-dot {
  height: 24px;
  width: 24px;
  background: transparent;
  margin: 0px 5px;
  border-radius: 50%;
  position: relative;
  z-index: 1;
}
.testimonial-section .testimonial-carousel .owl-dots .owl-dot.active {
  background: #fff;
  box-shadow: rgba(14, 30, 37, 0.12) 0px 2px 4px 0px,
    rgba(14, 30, 37, 0.32) 0px 2px 16px 0px;
}
.testimonial-section .testimonial-carousel .owl-dots .owl-dot span {
  height: 15px;
  width: 15px;
  position: absolute;
  inset: 0;
  margin: auto;
  display: inline-block;
  background: var(--btn-color);
  border-radius: 100%;
}
@media (min-width: 1700px) {
  .testimonial-text .testimonial-p {
    font-size: 14px;
    line-height: 24px;
    min-height: 250px;
  }
  .testimonial-title .testimonial-name {
    font-size: 15px;
  }
  .testimonial-title .testimonial-ttl {
    font-size: 12px;
  }
  .testimonial-review {
    max-width: 70px;
  }
}
@media (min-width: 1200px) and (max-width: 1350px) {
  .testimonial-review {
    max-width: 50px;
  }
  .testimonial-text .testimonial-p {
    font-size: 13px;
    line-height: 20px;
    min-height: 260px;
  }
}
@media (min-width: 1100px) and (max-width: 1200px) {
  .testimonial-title .testimonial-name {
    font-size: 14px;
  }
  .testimonial-title .testimonial-ttl {
    font-size: 9px;
  }
  .testimonial-review {
    max-width: 50px;
  }
  .testimonial-text .testimonial-p {
    font-size: 12px;
    line-height: 20px;
    padding: 10px;
    min-height: 260px;
  }
}
@media (min-width: 992px) and (max-width: 1100px) {
  .testimonial-image img.testimonial-image-tag, .testimonial-image {
    max-width: 35px;
    max-height: 35px;
    margin-right: 5px;
  }
  .testimonial-title .testimonial-name {
    font-size: 12px;
  }
  .testimonial-title .testimonial-ttl {
    font-size: 8px;
  }
  .testimonial-review {
    max-width: 40px;
  }
  .testimonial-text .testimonial-p {
    font-size: 11px;
    line-height: 16px;
    padding: 10px;
    min-height: 220px;
  }
}
@media (min-width: 767px) and (max-width: 992px) {
  .testimonial-section {
    padding: 20px 0px;
  }
  .testimonial-heading.section-heading {
    margin-bottom: 30px;
  }
  .testimonial-content {
    margin: 5px;
    padding: 8px;
  }
  .testimonial-image {
    max-width: 40px;
    max-height: 40px;
    margin-right: 5px;
  }
  .testimonial-title .testimonial-name {
    font-size: 14px;
    line-height: 20px;
  }
  .testimonial-title .testimonial-ttl {
    font-size: 10px;
    line-height: 14px;
    min-height: 25px;
  }
  .testimonial-review {
    max-width: 48px;
    bottom: auto;
    top: 3px;
  }
  .testimonial-text .testimonial-p {
    font-size: 14px;
    line-height: 20px;
    padding: 3px 3px 10px;
    margin-top: 10px;
    margin-bottom: 0;
    min-height: 260px;
  }
  .testimonial-section .testimonial-carousel .owl-dots {
    left: 0;
    bottom: -40px;
    justify-content: center;
  }
  .testimonial-section .testimonial-carousel .owl-dots .owl-dot {
    height: 18px;
    width: 18px;
  }
  .testimonial-section .testimonial-carousel .owl-dots .owl-dot span {
    height: 10px;
    width: 10px;
  }
}
@media (max-width: 767px) {
  .testimonial-section {
    padding: 20px 0px;
  }
  .testimonial-section:before, 
  .testimonial-section:after {
    width: 12%;
  }
  .testimonial-heading.section-heading{
    margin-bottom:20px;
  }
  .testimonial-title {
    margin: 5px 0px;
  }
  .testimonial-title .testimonial-name {
    font-size: 14px;
  }
  .testimonial-title .testimonial-ttl {
    font-size: 12px;
  }
  .testimonial-review {
      top: 6px;
      bottom: auto;
      max-width: 60px;
  }
  .testimonial-text .testimonial-p {
    font-size: 12px;
    line-height: 20px;
    padding: 10px;
    text-align: center;
    margin-top: 10px;
    font-weight: 400;
    min-height: auto;
  }
  .testimonial-section .testimonial-carousel .owl-dots {
    left: 0;
    justify-content: center;
    bottom: -10px;
  }
  .testimonial-section .testimonial-carousel .owl-dots .owl-dot {
    height: 18px;
    width: 18px;
  }
  .testimonial-section .testimonial-carousel .owl-dots .owl-dot span {
    height: 10px;
    width: 10px;
  }
}
/*******Testimonial Css End*******/

/*******blog Css *******/
.blog-section {
  padding: 50px 0px;
  position: relative;
  background: #F5F5F7;
}
.blog-heading.section-heading {
  margin-bottom: 50px;
}
.blog-wrappers {
  position: relative;
  z-index: 1;
}
.blog-wrappers .blog-img-div {
  position: relative;
  z-index: 1;
  height: 250px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  background: #fff;
  box-shadow: unset;
}
.blog-wrappers:hover .blog-img-div {
  box-shadow: rgba(0, 0, 0, 0.1) 0px 10px 15px -3px, rgba(0, 0, 0, 0.05) 0px 4px 6px -2px;
  transition: 0.3s;
}
.blog-wrappers .blog-img-div a.blog-img-link {
  max-width: 50%;
  width: 100%;
  position: relative;
  height: 100%;
  overflow: hidden;
}
.blog-wrappers .blog-img-div img.blog-img-tag {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 2s ease-out;
}
.blog-wrappers .blog-img-div .blog-content {
  margin: auto;
  align-content: end;
  padding: 20px 20px;
  transition: 0.3s;
  max-width: 50%;
  width: 100%;
  height: 100%;
  position: relative;
  border: 1.5px solid transparent;
  border-left: 0px !important;
}
.blog-content .blog-date {
  color: var(--sec-color);
  font-size: 15px;
  display: inline-flex;
  align-items: center;
  position: absolute;
  top: 20px;
}
.blog-content .blog-date img.date-icon {
  max-width: 15px;
  margin-right: 10px;
}
.blog-content .blog-title {
  color: var(--h-color);
  font-size: 18px;
  font-weight: 600;
  line-height: normal;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: 0.3s;
}
.blog-wrappers:hover .blog-img-div .blog-content .blog-title, 
.blog-wrappers:hover .blog-img-div .blog-content .blog-view-link {
color: #000;
transition: 0.3s;
}
.blog-wrappers:hover .blog-img-div .blog-content .blog-view-link {
  opacity: 1;
}
.blog-content .blog-view-link {
  font-size: 15px;
  font-weight: 500;
  position: relative;
  display: inline-block;
  color: var(--txt-color);
  font-family: 'Parkinsans' !important;
  transition: 0.3s;
  opacity: 0;
}
.blog-content .blog-view-link img.img-fluid {
  max-width: 10px;
  margin-left: 5px;
}
.blog-content .blog-view-link:before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: auto;
  width: 0;
  height: 1px;
  background: var(--sec-color);
  transition: 0.3s;
}
.blog-content .blog-view-link:hover:before {
  transition: 0.3s;
  width: 100%;
  right: 0;
}
.blog-wrappers:hover .blog-img-div .blog-content {
  transition: 0.3s;
  border-color: #00000036;
}
.blog-wrappers.blogs-wrappers0 .blog-img-div a.blog-img-link {
  max-width: 100% !important;
}
.blog-wrappers.blogs-wrappers0 .blog-img-div .blog-content {
  background: transparent;
  top: auto;
  align-content: end;
  z-index: 1;
  position: absolute;
  max-width: 100%;
  padding: 30px;
}
.blog-wrappers.blogs-wrappers0 .blog-img-div .blog-content .blog-date {
  position: relative;
  top: 0;
  margin-bottom: 10px;
}
.blog-wrappers.blogs-wrappers0 .blog-img-div .blog-content .blog-title {
  font-size: 45px;
  line-height: normal;
}
.blog-wrappers.blogs-wrappers0 .blog-img-div {
  height: 790px;
}
.blog-wrappers.blogs-wrappers0 .blog-img-div:before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  top: 0;
  margin: auto;
  width: 100%;
  height: 100%;
  z-index: 1;
  background: linear-gradient(90deg, #000000 0%, #7070701f);
}
.blog-wrappers:hover .blog-img-div img.blog-img-tag {
  transition: all 2s ease-out;
  transform: scale(1.06);
}
.blog-wrappers.blogs-wrappers0 .blog-img-div .blog-content .blog-date,
.blog-wrappers.blogs-wrappers0 .blog-img-div .blog-content .blog-title, 
.blog-wrappers.blogs-wrappers0 .blog-img-div .blog-content .blog-view-link {
  color: #fff !important;
}
.blog-wrappers.blogs-wrappers0:hover .blog-img-div .blog-content {
  background: transparent;
}
.blog-wrappers.blogs-wrappers0 .blog-img-div .blog-content .blog-date img.date-icon, 
.blog-wrappers.blogs-wrappers0 .blog-img-div .blog-content img.img-fluid {
  filter: brightness(0) invert(1);
}
.blog-wrappers.blogs-wrappers0 .blog-img-div .blog-content .blog-view-link:before {
  background: #fff;
}
@media (min-width: 992px) and (max-width: 1250px) {
       .blog-wrappers.blogs-wrappers0 .blog-img-div .blog-content .blog-title {
        font-size: 35px;
    }
}
@media (min-width: 1250px) and (max-width: 1350px) {}
@media (min-width: 1100px) and (max-width: 1250px) {}
@media (min-width: 992px) and (max-width: 1100px) {}
@media (min-width: 767px) and (max-width: 992px) {
  .blog-section {
    padding: 30px 0px 10px;
    margin: 20px 0px;
  }
  .blog-heading.section-heading {
    margin-bottom: 30px;
  }
  .blog-wrappers .blog-img-div {
    height: 120px;
  }
  .blog-wrappers .blog-img-div .blog-content {
    padding: 10px;
    border-width: 1px;
  }
  .blog-content .blog-date {
    position: relative;
    top: 0;
    font-size: 13px;
  }
  .blog-content .blog-date img.date-icon {
    max-width: 12px;
    margin-right: 4px;
  }
  .blog-content .blog-title {
    -webkit-line-clamp: 3;
    font-size: 12px;
    line-height: 18px;
    margin-bottom: 2px;
  }
  .blog-content .blog-view-link {
    opacity: 1;
    font-size: 12px;
  }
  .blog-content .blog-view-link img.img-fluid {
    max-width: 8px;
  }
  .blog-wrappers.blogs-wrappers0 .blog-img-div .blog-content {
    padding: 15px;
  }
  .blog-wrappers.blogs-wrappers0 .blog-img-div {
    height: 400px;
  }
  .blog-wrappers.blogs-wrappers0 .blog-img-div .blog-content .blog-title {
    font-size: 24px;
    line-height: 30px;
  }
}
@media (max-width: 767px) {
  .blog-section {
    padding: 20px 0px 10px;
  }
  .blog-heading.section-heading {
    margin-bottom: 30px;
  }
  .blog-content .blog-date img.date-icon {
  max-width: 12px;
  }
  .blog-content .blog-date {
    font-size: 11px;
    top: 0;
    position: relative;
    margin-bottom: 5px;
  }
  .blog-content .blog-title {
    font-size: 14px;
    -webkit-line-clamp: 2;
    line-height: 16px;
    margin-bottom: 5px;
  }
  .blog-wrappers .blog-img-div {
  height: 100px;
  }
  .blog-wrappers .blog-img-div .blog-content {
    padding: 6px 10px;
  }
  .blog-content .blog-view-link {
    opacity: 1;
    font-size:12px;
  }
  .blog-content .blog-view-link img.img-fluid {
    max-width: 8px;
  }
  .blog-wrappers.blogs-wrappers0 .blog-img-div {
    height: 250px;
  }
  .blog-wrappers.blogs-wrappers0 .blog-img-div .blog-content .blog-title {
    font-size: 18px;
    line-height: 22px;
  }
}
@media (min-width: 575px) and (max-width: 767px) {
  .blog-wrappers.blogs-wrappers0 .blog-img-div {
    height: 340px;
  }
  .blog-wrappers.blogs-wrappers0 .blog-img-div .blog-content {
    padding: 20px;
  }
}
/*******blog Css End*******/

/*******Faq Css*******/
.faq-section {
  padding: 80px 0px;
  position: relative;
}
.faq-inner .faq-item {
  border: none;
  background: #ffffff00;
  margin: 20px 0px;
  border-radius: 0;
  overflow: hidden;
  border-top: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
}
.faq-inner .faq-btn {
  font-size: 18px;
  font-weight: 700;
  color: var(--h-color);
  padding: 20px 15px 20px 15px;
  letter-spacing: 0.3px;
  box-shadow: none !important;
  gap: 8px;
  border-radius: 15px 15px 0px 0px;
}
.faq-inner .faq-btn:not(.collapsed) {
  color: var(--h-color);
  background-color: transparent;
}
.faq-inner .faq-btn::after {
  display: none;
}
.faq-inner .faq-btn .faq-number {
  color: #1a1a1a;
  margin-right: 4px;
}
.faq-inner .accordion-header {
  position: relative;
}
.faq-inner .accordion-button[aria-expanded="true"]::before,
.faq-inner .accordion-button[aria-expanded="false"]::before {
  content: '+';
  position: absolute;
  right: 10px;
  width: 30px;
  height: 30px;
  transition: transform 0.25s ease;
  border-radius: 50%;
  border: 1px solid;
  align-content: center;
  text-align: center;
  font-size: 16px;
  font-weight: 400;
  line-height: normal;
}
.faq-inner .accordion-button[aria-expanded="true"]::before {
  content: '-';
}
.faq-inner .faq-body {
  font-size: 16px;
  color: var(--txt-color);
  line-height: 1.7;
  padding: 10px 15px;
  background-color: #fff;
  border-radius: 0;
}
.faq-section .faq-left-img img {
  border-radius: 15px;
}
@media (min-width: 992px) and (max-width: 1350px) {
  .faq-section {
    padding: 60px 0px;
  }
  .faq-heading.section-heading:before {
    top: -30px;
  }
  .faq-inner .faq-btn {
    font-size: 16px;
  }
  .faq-inner .faq-body {
    font-size: 15px;
  }
}
@media(min-width: 768px) and (max-width: 992px){
  .faq-section {
    padding: 20px 0px;
  }
  .faq-heading.section-heading:before {
    top: -10px;
    width: 30px;
    height: 20px;
  }
  .faq-inner .faq-item {
    margin: 10px 0px;
  }
  .faq-inner .faq-btn {
    font-size: 14px;
    font-weight: 500;
    padding: 10px 35px 10px 0px;
  }
  .faq-inner .faq-body {
    font-size: 13px;
    line-height: 18px;
    margin-top: 5px;
    padding: 0px 5px 7px 0px;
  }
  .faq-inner .accordion-button[aria-expanded="true"]::before, 
  .faq-inner .accordion-button[aria-expanded="false"]::before {
    width: 20px;
    height: 20px;
    font-size: 12px;
  }
}
@media(max-width: 767px){
  .faq-section {
    padding: 30px 0px;
  }
  .faq-inner .faq-item {
    margin: 10px 0px;
  }
  .faq-left-img {
    display: none;
  }
  .faq-heading.section-heading:before {
    top: -10px;
    right: 0;
    width: 40px;
    height: 30px;
  }
  .faq-inner .faq-btn {
    font-size: 12px;
    font-weight: 500;
    padding: 10px 35px 10px 5px;
  }
  .faq-inner .faq-body {
    font-size: 12px;
    line-height: 20px;
    padding-bottom: 10px;
    padding-top: 10px;
  }
  .faq-inner .accordion-button[aria-expanded="true"]::before, 
  .faq-inner .accordion-button[aria-expanded="false"]::before {
    width: 18px;
    height: 18px;
    font-size: 13px;
  }
  .faq-section .have-question {
    padding: 20px;
  }

}
/*******Faq Css End*******/

/*******Have Question Css*******/
.have-question {
  text-align: center;
  background: #FCFBFC;
  border: 1px solid #D7D7D7;
  padding: 60px 40px 60px;
}
.have-question-btn.all-btn a.all-btn-tag {
  padding-left: 60px;
}
.have-question-btn.all-btn a.all-btn-tag img.img-fluid {
  position: absolute;
  left: 20px;
}
.have-question-btn.all-btn a.all-btn-tag .original {
  left: 20px;
}
.have-question-chat-img {
  max-width: 40%;
  margin: auto auto 20px;
}
.have-question-heading {
  color: var(--h-color);
  font-size: 35px;
  font-weight: 600;
  line-height: 40px;
  text-transform: capitalize;
  margin-bottom: 20px;
}
.have-question-text {
  font-size: 18px;
  font-weight: 400;
  line-height: 28px;
  margin-bottom: 20px;
}
@media (min-width: 992px) and (max-width: 1250px) {
    .have-question-heading {
        font-size: 30px;
    }
}
@media (min-width: 1250px) and (max-width: 1350px) {}
@media (min-width: 1100px) and (max-width: 1250px) {}
@media (min-width: 992px) and (max-width: 1100px) {}
@media (min-width: 767px) and (max-width: 992px) {
  .have-question {
    padding: 20px;
  }
  .have-question-chat-img {
    max-width: 100px;
  }
  .have-question-heading {
    font-size: 24px;
    line-height: 30px;
    margin-bottom: 10px;
  }
  .have-question-text {
    font-size: 13px;
    line-height: 20px;
    margin-bottom: 10px;
  }
  .have-question-btn.all-btn a.all-btn-tag {
    padding-left: 40px !important;
  }
  .have-question-btn.all-btn a.all-btn-tag img.img-fluid {
    left: 10px;
    max-width: 16px;
    top: 0;
    bottom: 0;
    margin: auto;
  }
}
@media (max-width: 767px) {
  .have-question-chat-img {
    max-width: 30%;
  }
  
  .faq-section .have-question-heading {
    font-size: 20px;
    line-height: 28px;
  }
  
  .faq-section .have-question-text {
    font-size: 12px;
    line-height: 20px;
  }
  
  .have-question-btn.all-btn a.all-btn-tag {
    padding: 12px 20px 12px 60px;
  } 
}
@media (min-width: 575px) and (max-width: 767px) {
  .have-question-chat-img {
    max-width: 20%;
  }
}
/*******Have Question Css* End******/

/*******Get in Touch Css*******/
.get-in-touch {
  padding-left: 50px;
}
.get-in-touch-heading {
  color: #fff;
  font-size: 30px;
  font-weight: 600;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
  z-index: 1;
  line-height: normal;
}
.get-in-touch-heading:before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  height: 1.5px;
  width: 100px;
  background: #fff;
}
.get-in-touch-txt {
  color: #fff;
  margin-bottom: 30px;
  font-size: 18px;
  font-weight: 500;
  line-height: normal;
}
.contact-detail {
  display: flex;
  margin: 20px 0;
  align-items: center;
}
.contact-detail .contact-detail-icon, .contact-detail .contact-detail-icon img {
  margin-right: 15px;
  max-width: 40px;
  max-height: 40px;
}
.contact-detail-content .contact-detail-txt1 {
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  line-height: 25px;
  margin-bottom: 0;
}
.contact-detail-content .contact-detail-txt2 {
  color: #fff;
  font-size: 15px;
  line-height: 22px;
  font-weight: 300;
  transition: 0.3s;
  margin: 0;
}
.contact-detail:hover .contact-detail-content .contact-detail-txt2 {
  transition: 0.3s;
  color: #ccc;
}
.contact-detail.address .contact-detail-icon, .contact-detail.address .contact-detail-icon img {
  max-width: 30px;
}
@media (min-width: 1250px) and (max-width: 1350px) {}
@media (min-width: 1100px) and (max-width: 1250px) {}
@media (min-width: 992px) and (max-width: 1100px) {}

@media (min-width: 767px) and (max-width: 992px) {
  .get-in-touch {
    padding-left: 0;
    margin-top: 40px;
  }
  .get-in-touch-heading {
    font-size: 22px;
    padding-bottom: 10px;
  }
  .get-in-touch-txt {
    font-size: 15px;
    margin-bottom: 20px;
  }
  .contact-detail {
        margin: 10px 0;
    }
  .contact-detail .contact-detail-icon, 
  .contact-detail .contact-detail-icon img {
    max-width: 30px;
    max-height: 30px;
  }
  .contact-detail-content .contact-detail-txt1 {
    font-size: 15px;
    line-height: 22px;
  }
  .contact-detail-content .contact-detail-txt2 {
    font-size: 13px;
  }
}
@media (max-width: 767px) {
  .get-in-touch {
    padding: 30px 0px;
  }
  .get-in-touch-heading {
    font-size: 20px;
    padding-bottom: 10px;
    margin-bottom: 15px;
  }
  .get-in-touch-txt {
    font-size: 12px;
    margin-bottom: 7px;
  }
  .contact-detail-content .contact-detail-txt1 {
    font-size: 15px;
  }
  .contact-detail-content .contact-detail-txt2 {
    font-size: 12px;
    margin-bottom: 0;
  }
  .contact-form-wrapper .contact-form-btn .submit_form_btn {
    padding: 0;
    height: 35px;
  }
  .contact-detail .contact-detail-icon, 
  .contact-detail .contact-detail-icon img {
    max-width: 20px;
    max-height: 20px;
  }
}
/*******Get in Touch Css End*******/

/*******Conatct Form Home Css *******/
.conatct-heading-footer.section-heading {
  margin-bottom: 80px;
}
.contact-form-wrapper {
  width: 100%;
}
.contact-form-wrapper .input-txt {
  position: relative;
}
.contact-form-wrapper .input-txt .form-control::placeholder {
  color: #ffffff;
}
.contact-form-wrapper .input-txt .form-control {
  width: 100%;
  background: transparent;
  border: 0;
  border-bottom: 1px solid #454545;
  border-radius: 0;
  margin-bottom: 20px;
  font-size: 15px;
  color: #ffffff;
  padding: 15px 10px 15px 0px;
  height: 60px;
  transition: 0.3s;
}
.contact-form-wrapper .input-txt .form-control:focus {
  box-shadow: none;
  border-color: #fff;
}
.contact-form-wrapper .input-txt .form-control:hover {
  transition: 0.3s;
  border-color: #fff;
}
.contact-form-wrapper .input-txt .form-control.ca {
  margin-bottom: 0 !important;
  padding: 15px 10px;
}
.contact-form-wrapper .captcha-img {
  background: #fff;
  text-align: center;
  height: 60px;
}
.contact-form-wrapper .input-txt textarea#inquiry_form_message {
  padding: 15px 10px;
  height: auto;
  resize: none;
}
.contact-form-wrapper .contact-form-btn .submit_form_btn {
  width: 100%;
  padding: 15px 10px;
  border: 0;
  margin: 0;
  background: #fff;
  color: #000;
  font-weight: 600;
  font-size: 16px;
  font-family: 'Parkinsans' !important;
  height: 60px;
  align-content: center;
  border-radius: 0px;
}

@media (min-width: 1250px) and (max-width: 1350px) {}
@media (min-width: 992px) and (max-width: 1200px) {
  .contact-form-wrapper .contact-form-btn.all-btn {
    margin-top: 20px;
  }
}
@media (min-width: 767px) and (max-width: 992px) {
  .conatct-heading-footer.section-heading {
    margin-bottom: 30px;
  }
  .contact-form-wrapper .input-txt .form-control {
    font-size: 14px;
    height: 50px;
    padding: 10px 10px 10px 0px;
  }
  .contact-form-wrapper .captcha-img {
    height: 50px;
  }
  .contact-form-wrapper .contact-form-btn .submit_form_btn {
    height: 50px;
    font-size: 14px;
  }
}
@media (max-width: 767px) {
  .contact-form-wrapper .input-txt textarea#inquiry_form_message {
    padding: 10px 0px !important;
    height: 60px !important;
  }
  .contact-form-wrapper .input-txt .form-control {
    height: 35px !important;
    margin-bottom: 10px !important;
    padding: 4px 0px !important;
    font-size: 13px;
  }
  .contact-form-wrapper .captcha-img {
    height: 35px !important;
  }
  .contact-form-wrapper .captcha-img img {
  height: 100%;
  }
  .conatct-heading-footer.section-heading {
    margin-bottom: 30px !important;
  }
  .contact-form-btn.all-btn {
    margin-top: 10px !important;
  }
  .contact-form-wrapper .contact-form-btn .submit_form_btn {
    padding: 0;
    height: 40px;
    font-size: 14px !important;
  }
}
@media (min-width: 575px) and (max-width: 767px) {
  .contact-form-wrapper .input-txt .form-control, 
  .contact-form-wrapper .captcha-img {
    height: 40px !important;
  }
  .contact-form-wrapper .contact-form-btn .submit_form_btn {
    height: 45px;
    font-size: 15px !important;
  }
}
/*******Conatct Form Home Css End*******/

/*******Footer Css*******/
.footer-section {
  padding-top: 60px;
  background-color: #141414;
  position: relative;
  z-index: 1;
  background-position: center center !important;
  background-repeat: no-repeat !important;
  background-size: cover !important;
}
.footer-ul {
  display: flex;
  justify-content: end;
}
.footer-ul li {
  margin: 0px 0px 0px 20px !important;
  list-style: none;
}
.footer-ul li a {
  color: #000000;
  font-size: 13px;
  font-weight: 500;
  text-transform: capitalize;
  transition: 0.3s;
  font-family: 'Parkinsans' !important;
}
.footer-ul li a:hover {
  transition: 0.3s;
  color: var(--txt-color);
}
.foot-social {
  position: relative;
  padding-top: 30px;
}
.foot-social .main-social-list-wrapper {
  display: inline-block;
}
.foot-social .foot-social-anchor {
  transition: 0.3s;
  display: inline-block;
  text-align: center;
  align-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #fff;
  margin-right: 15px;
}
.foot-social .foot-social-anchor:hover {
  transition: 0.3s;
}
.foot-social .foot-social-anchor img.foot-social-icon {
  transition: 0.3s;
  max-width: 15px;
  max-height: 15px;
}
.foot-social .foot-social-anchor:hover .foot-social-icon {
  transition: 0.3s;
  filter: contrast(0.4);
}
.footer-copy-right {
  padding: 20px 0px;
  margin-top: 50px;
  background: #ffffff;
}
.footer-copy-right .footer-copy-right-txt {
  margin: 0px;
  color: var(--txt-color);
  text-align: left;
  font-size: 13px;
  font-weight: 500;
  line-height: normal;
  text-transform: capitalize;
  font-family: 'Parkinsans' !important;
}
.footer-copy-right .footer-copy-right-txt .footer-copy-right-link {
  color: var(--h-color);
  position: relative;
  transition: 0.3s;
  font-weight: 600;
}
.footer-copy-right .footer-copy-right-txt .footer-copy-right-link:hover {
  color: #000000;
  transition: 0.3s;
}

@media (min-width: 767px) and (max-width: 992px) {
  .footer-section {
    padding-top: 40px;
    margin-top: 20px;
  }
  .foot-social {
    padding-top: 20px;
  }
  .footer-ul {
    flex-wrap: wrap;
    justify-content: center;
  }
  .footer-ul li {
    margin: 0px 12px !important;
  }
  .footer-ul li a {
    font-size: 12px;
  }
  .footer-copy-right {
    padding: 10px 0px 10px;
    margin-top: 30px;
  }
  .footer-copy-right .footer-copy-right-txt {
    font-size: 12px;
  }
}

@media (max-width: 767px) {
  .footer-section {
    padding-top: 30px;
  }
  .foot-social {
    text-align: center;
    min-height: auto;
    padding-top: 0px;
    margin-top: 20px;
  }
  .foot-social .foot-social-anchor {
    margin-bottom: 10px;
  }
  .foot-social .foot-social-anchor img.foot-social-icon {
    max-width: 10px;
    max-height: 10px;
    min-width: 10px;
  }
  .footer-ul {
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 10px;
    padding-bottom: 5px;
    border-bottom: 1px solid #ccc;
  }
  .footer-ul li {
    margin: 5px !important;
  }
  .footer-ul li a {
    font-size: 12px;
  }
  .footer-copy-right {
    padding: 10px 0px;
    margin-top:0px;
  }
  .footer-copy-right .row {
    flex-direction: column-reverse;
  }
  .footer-copy-right .footer-copy-right-txt {
    text-align: center;
    line-height: 20px;
    font-size: 12px;
  }
}

/*******Footer Css End*******/




@media (min-width:993px) and (max-width:1250px){
    .footer-ul li a {
        font-size: 11px;
    }
    
    .footer-copy-right .footer-copy-right-txt {
        font-size: 11px;
    }
}

