/* Font 1 */

@font-face {
  font-family: "NunitoSans";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../fonts/Nunito_Sans/NunitoSans-Regular.ttf") format("truetype");
}

@font-face {
  font-family: "NunitoSans";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("../fonts/Nunito_Sans/NunitoSans-SemiBold.ttf") format("truetype");
}

@font-face {
  font-family: "NunitoSans";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("../fonts/Nunito_Sans/NunitoSans-Bold.ttf") format("truetype");
}

@font-face {
  font-family: "NunitoSans";
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url("../fonts/Nunito_Sans/NunitoSans-ExtraBold.ttf") format("truetype");
}

/* Font 2 */

@font-face {
  font-family: "LilyScriptOne";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../fonts/LilyScriptOne/LilyScriptOne-Regular.ttf") format("truetype");
}

/* Font 3 */

@font-face {
  font-family: "Sora";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../fonts/Sora/Sora-Regular.ttf") format("truetype");
}

/* Font 4 */

@font-face {
  font-family: "segoe";
  font-style: normal;
  font-display: swap;
  src: url("../fonts/segoe/segoesc.ttf") format("truetype");
}

* {
  font-family: NunitoSans !important;
}
h1, h2, h3, h4, h5, h6 {
  font-family: NunitoSans !important;
}
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: #242424;
  --txt-color: #242424;
  --btn-color: #59C5CE;
  --sec-color: #0A557C;
  --linear-color: linear-gradient(180deg,#59C5CE 0%,#49B8C2 25%,#2D8EA6 55%,#0A557C 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 {
  color: var(--btn-color);
  transition: 0.3s;
}
ul {
  padding: 0px;
  margin: 0px;
}
li {
  list-style: none !important;
}
button.btn, button.btn:focus {
  outline: none;
  box-shadow: none;
}
.my_contact_us {
  top: 35%;
  z-index: 9;
  float: right;
  display: block;
  position: sticky;
}
.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 (max-width: 992px) {
  .my_contact_us {
    position: fixed;
    right: 0;
  }
  .my_contact_us .btn-inquire {
    font-size: 12px;
    padding: 6px 3px 6px 5px;
    border-radius: 5px 0px 0px 5px;
  }

}
.dasktop-show {
  display: block;
}
.mobile-show {
  display: none;
}

@media (max-width: 992px) {
  .dasktop-show {
    display: none !important;
  }
  .mobile-show {
    display: block !important;
  }
  hr {
    margin: 10px 0px;
  }
}

/*******Scroll Bar Css*******/

* {
    scrollbar-width: thin;
    scrollbar-color: var(--btn-color)  #000;
}

.my_wapp {
    position: fixed;
    right: 15px;
    bottom: 8px;
    max-width: 35px;
    z-index: 999;
}

/*******Back To Top Css End*******/
#button-top {
    display: inline-block;
    opacity: 0;
    width: 40px;
    height: 40px;
    z-index: 1000;
    position: fixed;
    transition: 0.3s;
    background: var(--btn-color);
    right: 12px;
    bottom: 45px;
}
#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;
    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;
}
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*******/

/*******Gtranslate Language Css*******/

.select-lang .gt_switcher_wrapper {
  position: relative !important;
  width: 180px;
}
.select-lang .gt_switcher_wrapper .gt_switcher.notranslate {
  width: 180px !important;
}
.select-lang .gt_switcher_wrapper .gt_selected {
  background: #34343400 !important;
  border-radius: 10px !important;
  border: 0px !important;
}
.select-lang .gt_switcher_wrapper .gt_selected a {
  color: #000 !important;
  font-size: 11px;
  position: relative;
  font-weight: 500 !important;
  border-radius: 30px !important;
  width: auto !important;
  border: 0 !important;
  background-color: #fff !important;
}
.select-lang .gt_switcher_wrapper .gt_selected a:hover {
  background: var(--btn-color) !important;
  transition: 0.3s;
}
.select-lang .gt_switcher_wrapper .gt_selected a:before {
  content: "";
  width: 0;
  height: 0;
}
.gt_container--hich1m .gt_switcher .gt_selected a img {
  width: 28px;
  height: 28px;
  border-radius: 50% !important;
  object-fit: cover !important;
}
.select-lang .gt_container--hich1m .gt_switcher .gt_selected a:after {
  right: 2px !important;
  top: 2px !important;
  background-image: url(/images/lang-arrow.png) !important;
  height: 30px !important;
  width: 30px !important;
  background-size: 100% 100% !important;
  background-position: center center !important;
}
.select-lang .gt_switcher_wrapper .gt_option {
  background: #343434 !important;
  position: absolute !important;
  padding: 30px 10px 10px 10px !important;
  width: 159px !important;
  top: 26px;
  border-radius: 0px 0px 10px 10px;
  overflow: hidden !important;
  border: 1px solid #343434 !important;
}
.select-lang .gt_switcher_wrapper .gt_option a {
  color: #ffffff !important;
  padding: 0px !important;
  margin: 4px 0px !important;
  font-size: 12px;
  transition: 0.3s;
}
.select-lang .gt_switcher_wrapper .gt_option a:hover {
  background: transparent !important;
  transition: 0.3s;
}
.select-lang .gt_switcher_wrapper .gt_selected a:hover:after {
  transition: 0.3s;
}
.select-lang .gt_switcher_wrapper .gt_option a:hover {
  transition: 0.3s;
  color: var(--btn-color) !important;
}
/*******Gtranslate Language Css End*******/

/*******Bread Crum Css*******/
section.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;
}
@media (max-width: 992px) {
  .bread_crumb a {
    font-size: 10px !important;
  }
}
/*******Bread Crum Css End*******/

/*******Cursor Css Start*******/

/*Mouse Cursor CSS*/
.custom-cursor{
    position:fixed;
    top:0;
    left:0;
    width:40px;
    height:40px;
    border:1.5px solid var(--sec-color);
    border-radius:50%;
    transform:translate(-50%,-50%);
    pointer-events:none;
    z-index:999999;
    transition:
    width .3s ease,
    height .3s ease,
    border-color .3s ease,
    background .3s ease,
    transform .08s linear;
}

.custom-cursor-dot{
    position:fixed;
    top:0;
    left:0;
    width:8px;
    height:8px;
    background:var(--btn-color);
    border-radius:50%;
    transform:translate(-50%,-50%);
    pointer-events:none;
    z-index:999999;
}

a:hover ~ .custom-cursor,
button:hover ~ .custom-cursor{
    width:60px;
    height:60px;
    background:rgba(10, 85, 124, 1);
}

.custom-cursor-area,
.custom-cursor-area *{
    cursor:none;
}


@media (max-width:992px){
    .custom-cursor {
        display: none;
    }
    
    .custom-cursor-dot {
        display: none;
    }
}

/*******Cursor Css End*******/

/*******Pagination Css Start*******/

.all-pagination{
    margin:60px 0;
}

.all-pagination .pagination{
    justify-content:center;
    align-items:center;
    gap: 10px;
    flex-wrap:wrap;
    margin:0;
}

.all-pagination .page-item{
    margin:0 !important;
}

.all-pagination .page-link{
    width: 70px;
    height: 70px;
    border-radius:50%;
    border:1.5px solid #d8d8d8;
    background:#fff;
    color:#222;
    font-size:32px;
    font-weight:600;
    display:flex;
    align-items:center;
    justify-content:center;
    padding:0;
    line-height:1;
    box-shadow:none;
    transition:.3s;
}

.all-pagination .page-item:not(:first-child):not(:last-child) .page-link{
    font-size:18px;
    font-weight:700;
}

.all-pagination .page-item:first-child .page-link,
.all-pagination .page-item:last-child .page-link{
    background:#005b84;
    border-color:#005b84;
    color:#fff;
    font-size:34px;
    border-radius: 100px;
}

.all-pagination .page-item.active .page-link{
    background:#005b84;
    color:#fff;
    border-color:#005b84;
}

.all-pagination .page-link:hover{
    background:#005b84;
    color:#fff;
    border-color:#005b84;
}

.all-pagination .page-item.disabled .page-link{
    border-radius: 38px;
    background: var(--sec-color);
    border:1.5px solid #d8d8d8;
    color: #fff;
    letter-spacing: 0px;
    font-size: 34px;
    opacity:1;
}

.all-pagination .page-link:focus{
    box-shadow:none;
}

@media(max-width:991px){

    .all-pagination .pagination{
        gap:10px;
    }

    .all-pagination .page-link{
        width: 40px;
        height: 40px;
    }

    .all-pagination .page-item:not(:first-child):not(:last-child) .page-link{
        font-size:16px;
    }

    .all-pagination .page-item:first-child .page-link,
    .all-pagination .page-item:last-child .page-link{
        font-size: 25px;
    }

    .all-pagination .page-item.disabled .page-link{
        /* width:130px; */
        border-radius:35px;
    }
}

@media(max-width:576px){

    .all-pagination .pagination{
        gap:8px;
    }

    .all-pagination .page-link{
        width:50px;
        height:50px;
    }

    .all-pagination .page-item:not(:first-child):not(:last-child) .page-link{
        font-size:14px;
    }

    .all-pagination .page-item:first-child .page-link,
    .all-pagination .page-item:last-child .page-link{
        font-size:22px;
    }

    .all-pagination .page-item.disabled .page-link{
        /* width:80px; */
        border-radius:25px;
        font-size: 22px;
        letter-spacing:1px;
    }
}
/*******Pagination Css End*******/

/*******Inner Page Baner Text Crum Css*******/
.innerbanner.all-inner {
  position: relative;
}
.banner-innercaption {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  display: flex;
  align-items: center;
  right: 0;
  margin: auto;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.banner-innercaption span {
  display: inline-block;
  text-transform: capitalize;
  font-weight: 800;
  color: #fff;
  font-size: 45px;
  line-height: normal;
}
.banner-innercaption p,
.banner-innercaption p a {
  font-size: 16px;
  color: var(--btn-color);
  margin: 0;
}
@media (max-width: 767px) {
  .innerbanner.all-inner {
    margin-top: 80px;
  }
  .banner-innercaption span {
    font-size: 17px;
  }
  .banner-innercaption p,
  .banner-innercaption p a {
    font-size: 10px;
  }
   html{
      overflow-x: hidden;
  }
}
/*******Inner Page Baner Text Crum 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-main-div {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-right: 20px;
}

.search-main-div .search-text {
    padding-left: 10px;
}

.search-main-div .search-text span {
    font-size: 16px;
    text-transform: uppercase;
    color: var(--color2);
    font-weight: 400;
}
.search-box-btn.search-box-outer {
  /* margin-left: 20px; */
  display: inline-block;
  border-radius: 50%;
  max-width: 40px;
  max-height: 40px;
  width: 40px;
  height: 40px;
  align-content: center;
  text-align: center;
  background-color: var(--sec-color);
}
.search-box-btn.search-box-outer .s-img {
    max-width: 15px;
    max-height: 15px;
}
.search-box-btn.search-box-outer:hover {
  transition: 0.3s;
  background-color: var(--btn-color);
}
.search-popup {
  position: fixed;
  left: 0;
  top: 0;
  height: 100vh;
  width: 100%;
  z-index: 999999999999999;
  margin-top: -540px;
  transform: translateX(-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);
}
.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-popup:before {
  left: 0;
  top: 100%;
  width: 100%;
  height: 560px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  margin-top: 0px;
  content: "";
}
.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;
}
.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: 400;
  text-transform: capitalize;
}
.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;
}
/*******Search Css End*******/

/*******Default Css*******/
.section-heading .sub-heading .heading-s {
  position: relative;
  color: var(--btn-color);
  font-size: 30px;
  font-weight: 400;
  text-transform: capitalize;
  display: inline-block;
  line-height: normal;
  margin: 0;
  z-index: 1;
  font-family: LilyScriptOne !important;
}
.section-heading .sub-heading .heading-s:before {
    position: absolute;
    content: "";
    top: 0;
    left: -25px;
    bottom: 0;
    right: auto;
    background-image: url("/images/sub-star.png");
    background-repeat: no-repeat !important;
    background-size: 100% 100% !important;
    margin: auto;
    opacity: 1;
    height: 18px;
    width: 18px;
}
.section-heading .sub-heading .heading-s:after {
    position: absolute;
    content: "";
    top: 0;
    right: -25px;
    bottom: 0;
    left: auto;
    background-image: url("/images/sub-star.png");
    background-repeat: no-repeat !important;
    background-size: 100% 100% !important;
    margin: auto;
    opacity: 1;
    height: 18px;
    width: 18px;
}
.section-heading .defalt-heading {
  margin-bottom: 30px;
}
.section-heading .defalt-heading .heading-h {
  font-size: 45px;
  font-weight: 600;
  line-height: normal;
  position: relative;
  text-transform: capitalize;
  color: var(--h-color);
  z-index: 1;
  display: inline-block;
  padding-top: 10px;
  margin-bottom: 0;
}
.section-heading .defalt-heading .span-h {
  color: var(--btn-color);
}
.section-heading .defalt-p {
}
.section-heading .defalt-p .txt-p, .section-heading .defalt-p p {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: var(--txt-color);
}
.all-btn .all-btn-tag {
  padding: 15px 20px;
  color: #fff;
  background: var(--linear-color);
  font-size: 16px;
  font-weight: 400;
  line-height: normal;
  text-transform: capitalize;
  transition: 0.3s;
  border-radius: 100px;
  display: inline-flex;
  align-items: center;
  font-family: Sora !important;
  border: 1px solid var(--color2);
}
.all-btn .all-btn-tag img {
    padding-left: 20px;
}
.all-btn .all-btn-tag:hover {
}
@media (max-width: 767px) {
  .section-heading .sub-heading{
    text-align: center !important;
  }
  .section-heading .sub-heading .heading-s {
    font-size: 13px !important;
  }
  .section-heading .defalt-heading {
    margin-bottom: 10px;
  }
  .section-heading .defalt-heading .heading-h {
    font-size: 16px !important;
    text-align: center;
  }
  .section-heading .defalt-p .txt-p, .section-heading .defalt-p p {
    font-size: 12px;
    line-height: 20px;
  }
  .all-btn .all-btn-tag {
    font-size: 12px !important;
    padding: 6px 12px;
  }
    .section-heading .sub-heading .heading-s:before {
        height: 15px;
        width: 15px;
    }
    
    .section-heading .sub-heading .heading-s:after {
        height: 15px;
        width: 15px;
    }
    .all-btn .all-btn-tag img {
        height: 10px;
        padding-left: 10px;
    }
}

@media (min-width: 767px) and (max-width: 992px) {
  .section-heading .defalt-heading {
    margin-bottom: 20px !important;
  }
  .section-heading .defalt-heading .heading-h {
    font-size: 20px !important;
    text-align: center;
  }
  .section-heading .defalt-heading .span-h {
    font-size: 25px !important;
  }
  .section-heading .defalt-p .txt-p, 
  .section-heading .defalt-p p {
    font-size: 14px;
    line-height: 20px;
  }
  .all-btn .all-btn-tag {
    padding: 6px 10px !important;
    font-size: 13px;
    border-radius: 12px;
  }
  .section-heading .sub-heading .heading-s {
    font-size: 18px;
}
}

@media (min-width: 992px) and (max-width: 1350px) {
  .section-heading .defalt-heading .heading-h {
    font-size: 38px !important;
  }
}
/*******Default Css End*******/

/*******Header Css*******/
.main-header {
    z-index: 2;
    padding: 20px 0px;
    position: relative;
}
.main-header:before {
    position: absolute;
    right: 0;
    left: auto;
    bottom: 0;
    top: 0;
    height: 100%;
    width: 35%;
    background: #197A9B;
    content: "";
    z-index: -1;
    clip-path: polygon(13% 0, 100% 0%, 100% 100%, 0% 100%);
}
.navbar.my-navbar {
    justify-content: center !important;
}
.my-navbar .mobile-logo {
    display: none;
}
footer.footer-section .l-o-g img {
    max-width: 30%;
}
.main-header .nav-item {
    margin: 0px 0px 0px 23px;
    padding: 0px 0px;
    position: relative;
}
.main-header .nav-item .nav-link {
    color: var(--h-color);
    font-size: 16px;
    font-weight: 400;
    position: relative;
    line-height: normal;
    padding: 10px 0px 5px;
    text-transform: uppercase;
    border-bottom: 1px solid transparent;
}
.main-header .active.nav-item .nav-link {
    font-weight: 700;
    color: var(--h-color) !important;
    border-color: var(--btn-color);
}
.main-header .nav-item .nav-link:hover {
    transition: 0.3s ease-in;
    color: var(--h-color) !important;
    border-bottom: 1px solid var(--h-color);
}
.main-header .nav-item .nav-link.show {
    transition: 0.3s ease-in;
    color: var(--h-color) !important;
    border-bottom: 1px solid #ffffff00;
}
.my-navbar .navbar-collapse .nav-item .dropdown-menu {
    margin: 0px;
    transition: 0.3s;
    background: var(--h-color);
    border-radius: 0 0 0px 0px !important;
}
.my-navbar .navbar-collapse .nav-item .dropdown-menu a {
    font-size: 15px;
    transition: 0.3s;
    color: #ffffff !important;
    border-bottom: 0 solid transparent !important;
}
.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(--btn-color) !important;
}
.my-navbar .nav-item .dropdown-menu .dropdown-item .nav-link {
    padding: 0 !important;
    margin: 0 !important;
}
.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;
}
.header-logo {
    max-width: 100%;
    position: relative;
    z-index: 1;
}
.header-logo .logo {
    display: inline-block;
}
.header-logo .logo img {
    max-width: 100%;
}
.header-info {
  display: flex;
  justify-content: right;
  align-items: center;
}
.header-info .head-quote-btn a {
    font-size: 16px;
    text-transform: uppercase;
    background: var(--sec-color);
    padding: 10px 20px;
    border-radius: 100px;
    color: var(--color2);
    border: 1px solid var(--sec-color);
    font-weight: 400;
}
.h-social .h-social-list {
  display: flex;
  justify-content: end;
  align-items: center;
}
.h-social .h-social-list .h-social-item .h-social-link {
  margin: 0px 10px;
  max-width: 40px;
  max-height: 40px;
  width: 40px;
  height: 40px;
  display: inline-block;
  border-radius: 100%;
  background: var(--h-color);
  transition: 0.3s;
  text-align: center;
  align-content: center;
}
.h-social .h-social-list .h-social-item .h-social-link:hover  {
  transition: 0.3s;
  background-color: var(--btn-color);
}
.h-social .h-social-list .h-social-item .h-social-link .h-social-icon  {
  transition: 0.3s;
  max-width: 16px;
  max-height: 18px;
}
.h-contact {
    margin: 0px 20px;
}
.h-contact .h-contact-link {
  display: flex;
  justify-content: center;
  align-items: end;
  transition: 0.3s;
}
.h-contact .h-contact-link .h-contact-icon {
  height: 30px;
  width: 30px;
  margin-right: 6px;
  margin-left: 0px;
  align-content: end;
  text-align: center;
}
.h-contact .h-contact-link .h-contact-icon .h-img {
    max-width: 16px;
    max-height: 18px;
}
.h-contact .h-contact-link .h-contact-numb .h-tit {
  color: var(--h-color);
  margin: 0;
  font-weight: 600;
  text-align: left;
  font-size: 15px;
}
.h-contact .h-contact-link .h-contact-numb .h-num {
  line-height: 20px;
  margin: 0;
  font-weight: 500;
  text-align: left;
  font-size: 16px;
  color: var(--h-color);
  transition: 0.3s;
}
.h-contact .h-contact-link:hover .h-contact-numb .h-num {
  transition: 0.3s;
  color: var(--btn-color);
}

@media (max-width: 767px) {
}

@media (max-width: 992px) {
    .main-header {
        top: 0;
        left: 0;
        width: 100%;
        height: 80px;
        padding: 5px 0px;
        background: #ffffff;
        align-content: center;
        z-index: 999 !important;
        position: fixed !important;
        border-top: 3px solid var(--btn-color);
        border-bottom: 3px 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: 65px;
        max-width: 160px;
    }
    .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: var(--btn-color);
        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: 120px;
        height: 100% !important;
        background-color: #ffffff;
        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: 13px;
        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;
    }
    .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;
    }
}

@media (min-width: 575px) and (max-width: 767px) {
}

@media (min-width: 767px) and (max-width: 992px) {
}

@media (min-width: 992px) and (max-width: 1024px) {
}
@media (min-width:993px) and (max-width:1200px){
    
    .main-header .nav-item {
        margin: 0px 0px 0px 17px;
    }
    
    .main-header .nav-item .nav-link {
        font-size: 14px;
    }
    
    .search-main-div .search-text span {
        font-size: 14px;
    }
    
    .header-info .head-quote-btn a {
        font-size: 14px;
    }

}
/*******Header Css End*******/

@keyframes bounce {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0);
  }
}

@media (max-width: 992px) {
    main {
        margin-top: 80px;
    }
}

/*******Banner Css*******/
.banner-section {
  position: relative;
  z-index: 1;
  /* padding-top: 10px; */
  background-repeat: no-repeat !important;
  background-size: 100% 100%;
  background-color: #0f5376;
}
.banner-section .bannermain {
  padding: 0px;
  width: 100%;
}
.banner-slider .owl-item .item {
  position: relative;
  margin: auto;
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-position: center center;
  align-content: center;
}

.banner_txt .caption2 {
  position: relative;
  z-index: 3;
  /* top: 0%; */
  /* text-align: left; */
  /* margin-left: 50px; */
  /* margin-top: 40px; */
  max-width: 100%;
}
.banner_txt .banner-text1 {
    color: #ffffff;
    font-size: 70px;
    font-weight: 500;
    position: relative;
    text-transform: capitalize;
    letter-spacing: 0;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    font-family: segoe !important;
    margin: 0;

    opacity: 0;
    transform: translateY(30px);
    filter: blur(8px);
    animation: bannerHeadingReveal 5s ease-in-out infinite;

    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    will-change: transform, opacity, filter;
}
.banner_txt .banner-text2 {
     color: var(--color2);
    font-size: 42px;
    font-weight: 600;
    line-height: normal;
    position: relative;
    text-transform: capitalize;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    padding-bottom: 20px;
    opacity: 0;
    animation: bannerTextReveal 7s cubic-bezier(.19,1,.22,1) infinite;
    animation-delay: .5s;
    will-change: clip-path, opacity;
}
.banner_txt .banner-text3 {
  color: #fff;
  font-size: 16px;
  font-weight: 400;
  line-height: normal;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  opacity: 0;
    animation: bannerTextReveal 7s cubic-bezier(.19,1,.22,1) infinite;
    animation-delay: .5s;
    will-change: clip-path, opacity;
}
.banner_txt .caption2 h3 {
    font-size: 20px;
    color: var(--color2);
    font-family: Sora !important;
    font-weight: 400;
    padding-bottom: 20px;
    margin: 0;
    opacity: 0;
    animation: bannerTextReveal 7s cubic-bezier(.19,1,.22,1) infinite;
    animation-delay: .5s;
    will-change: clip-path, opacity;
}
.banner_txt .btn-bnnr {
  display: inline-block;
  position: relative;
}
.banner_txt .btn-bnnr .banner-btn {
  padding: 10px 20px;
  color: #fff;
  background: var(--linear-color);
  font-size: 16px;
  font-weight: 400;
  line-height: normal;
  text-transform: capitalize;
  transition: 0.3s !important;
  border-radius: 100px;
  display: flex;
  align-items: center;
  border: 1px solid var(--color2);
}
.banner_txt .btn-bnnr .banner-btn .btn-span {
  height: 14px;
  width: 8px;
  margin-left: 10px;
  /* background: var(--btn-color); */
  /* border-radius: 100%; */
  position: relative;
  z-index: 1;
}
.banner_txt .btn-bnnr .banner-btn .btn-span .btn-icon {
  position: absolute;
  inset: 0;
  margin: auto;
}
.banner_txt .btn-bnnr .banner-btn:hover {
  transition: 0.3s;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px,
    rgba(0, 0, 0, 0.3) 0px 30px 60px -30px,
    rgba(10, 37, 64, 0.35) 0px -2px 6px 0px inset;
  background: var(--sec-color);
  color: var(--color2);
}
.banner-slider .owl-nav {
  display: block !important;
}
.banner-slider .owl-nav .owl-prev {
  font-size: 0;
  width: 30px;
  height: 15px;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  transform: rotate(180deg);
  position: absolute;
  top: 280px;
  left: 4%;
}
.banner-slider .owl-nav .owl-next {
  font-size: 0;
  width: 30px;
  height: 15px;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  transform: rotate(0deg);
  position: absolute;
  top: 280px;
  right: 4%;
}
.banner-slider .owl-dots {
  display: flex !important;
  position: absolute;
  right: 0px;
  bottom: 40px;
  left: 0;
  justify-content: center;
}
.banner-slider .owl-dots .owl-dot span {
  display: block;
  height: 10px;
  width: 10px;
  position: relative;
}
.banner-slider .owl-dots .owl-dot {
  margin: 0px 4px;
  padding: 5px;
  display: inline-block;
  color: #000;
  background-color: #fff;
  border-radius: 100px;
}
.banner-slider .owl-dots .owl-dot.active {
  background-color: var(--btn-color) !important;
}
.banner-slider .owl-dots .owl-dot.active span:before {
  color: var(--btn-color) !important;
}
.banner-slider .owl-dots .owl-dot:first-child span:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  color: #000;
  font-weight: 700;
  background-color:#000;
  height: 8px;
  width: 8px;
  border-radius: 100px;
}
.banner-slider .owl-dots .owl-dot:nth-child(2) span:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  color: #000;
  font-weight: 700;
  background-color:#000;
  height: 8px;
  width: 8px;
  border-radius: 100px;
}
.banner-slider .owl-dots .owl-dot:nth-child(3) span:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  color: #000;
  font-weight: 700;
  background-color:#000;
  height: 8px;
  width: 8px;
  border-radius: 100px;
}
.banner-slider .owl-dots .owl-dot:nth-child(4) span:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  color: #000;
  font-weight: 700;
  background-color:#000;
  height: 8px;
  width: 8px;
  border-radius: 100px;
}
.banner-left-img {
    position: relative;
    top: 50px;
}

.banner-left-img img {
    border: 2px solid var(--color2);
    transform: rotate(8deg);
    border-radius: 15px;
    box-shadow: 16px -16px 32px rgba(0, 0, 0, 0.35);
}

.banner-right-img {
    position: relative;
    bottom: 50px;
}

.banner-right-img img {
    border-radius: 15px;
    border: 2px solid var(--color2);
    transform: rotate(-11deg);
    box-shadow: -16px 16px 32px rgba(0, 0, 0, 0.35);
}

/*Banner Animation CSS*/

.banner-slider .owl-item.active .banner-left-img img{
    animation:leftImageAnimation 1.2s cubic-bezier(.22,.61,.36,1) forwards;
}

@keyframes leftImageAnimation{

    0%{
        opacity:0;
        transform:
        translateX(-220px)
        translateY(40px)
        rotate(-25deg)
        scale(.6);
    }

    60%{
        opacity:1;
        transform:
        translateX(20px)
        translateY(-10px)
        rotate(12deg)
        scale(1.05);
    }

    100%{
        opacity:1;
        transform:
        translateX(0)
        translateY(0)
        rotate(8deg);
    }

}

.banner-slider .owl-item.active .banner-right-img img{
    animation:rightImageAnimation 1.2s cubic-bezier(.22,.61,.36,1) .15s forwards;
}

@keyframes rightImageAnimation{

    0%{
        opacity:0;
        transform:
        translateX(220px)
        translateY(-40px)
        rotate(25deg)
        scale(.6);
    }

    60%{
        opacity:1;
        transform:
        translateX(-20px)
        translateY(10px)
        rotate(-15deg)
        scale(1.05);
    }

    100%{
        opacity:1;
        transform:
        translateX(0)
        translateY(0)
        rotate(-11deg);
    }

}
@media (max-width: 767px) {
  .banner-section {
    padding-top: 0;
  }
  .banner-section:after {
    background: unset;
    opacity: 0;
    width: unset;
    height: unset;
  }
  .banner-slider .owl-item .item:before {
    height: 0;
    width: 0;
    opacity: 0;
  }
  .banner_txt .caption2 {
    /* position: absolute; */
    /* top: 0; */
    /* left: 0; */
    /* bottom: 0; */
    margin: auto;
    width: 100%;
    height: 100%;
    /* max-width: 70%; */
    /* padding: 10px; */
    align-content: center;
  }

  .banner_txt .banner-text1 {
    font-size: 13px;
    letter-spacing: unset;
  }
  .banner_txt .banner-text2 {
    font-size: 14px;
    color: var(--btn-color);
    padding-bottom: 5px;
    margin: 0;
  }
  .banner_txt .caption2 h3 {
    padding-bottom: 5px;
    font-size: 12px;
}
  .banner_txt .banner-text3 {
    font-size: 12px;
    margin-bottom: 8px;
    -webkit-line-clamp: 2;
  }
  .banner_txt .btn-bnnr .banner-btn {
    padding: 4px 10px;
    font-size: 12px;
  }
  .banner_txt .btn-bnnr .banner-btn .btn-span {
    height: 10px;
    width: 5px;
  }
  .banner_txt .btn-bnnr .banner-btn .btn-span .btn-icon {
    height: 10px;
  }
  .banner-slider .owl-dots .owl-dot span {
        height:8px;
        width:8px;
    }
    
    .banner-slider .owl-dots .owl-dot:first-child span:before {
        height: 6px;
        width: 6px;
    }
    .banner-slider .owl-dots .owl-dot:nth-child(2) span:before {
        height: 6px;
        width: 6px;
    }
    .banner-slider .owl-dots .owl-dot:nth-child(3) span:before {
        height: 6px;
        width: 6px;
    }
     .banner-slider .owl-dots .owl-dot:nth-child(4) span:before {
        height: 6px;
        width: 6px;
    }
    
    .banner-right-img {
        left: -10px;
    }
    
    .banner-left-img {
        right: -10px;
    }
}
@media (min-width: 575px) and (max-width: 767px) {
    .banner-right-img {
        bottom: 20px;
    }
    
    .banner-left-img {
        top: 20px;
    }
}
@media (min-width: 767px) and (max-width: 992px) {
  .banner-section {
    padding-top: 0;
  }
  .banner-section:after {
    height: 0;
    width: 0;
    opacity: 0;
  }
  .row.banner-capt-row {
    align-items: center;
  }
  .banner_txt .caption2 {
    margin-left: 0px;
    margin-top: 0;
    max-width: 100%;
  }
  .banner_txt .banner-text1 {
    font-size: 30px;
    letter-spacing: 2px;
  }
  .banner_txt .banner-text2 {
    font-size: 30px;
    font-weight: 700;
    -webkit-line-clamp: 2;
    padding-bottom: 10px;
    margin: 0;
  }
  .banner_txt .banner-text3 {
    font-size: 14px;
    -webkit-line-clamp: 4;
  }
  .banner_txt .btn-bnnr .banner-btn {
    font-size: 14px;
    padding: 8px 10px;
    border-radius: 12px;
  }
  .banner_txt .btn-bnnr .banner-btn .btn-span {
    height: 14px;
    width: 8px;
  }
  .banner_txt .btn-bnnr .banner-btn .btn-span .btn-icon {
    max-width: 15px;
    max-height: 10px;
  }
    .banner_txt .caption2 h3 {
        font-size: 14px;
        padding-bottom: 0px;
    }
    .banner-slider .owl-dots {
        bottom: 10px;
    }
}
@media (min-width: 993px) and (max-width:1200px){
    .banner-left-img {
        right: -10px;
        max-width: 95%;
        margin: auto;
    }

    .banner-right-img {
        left: -10px;
        max-width: 95%;
        margin: auto;
    }
}

@media (min-width: 992px) and (max-width: 1024px) {
}

@media (min-width: 1024px) and (max-width: 1350px) {
}
/*******Banner Css End*******/

/*******Service Css*******/
.service-section {
  position: relative;
  z-index: 1;
  padding: 30px 0px 10px;
}
.service-heading.section-heading .defalt-heading {
  margin-bottom: 0;
}
.service-bgColor {
  position: relative;
  z-index: 1;
}
.service-bgColor:before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 10px;
  width: 100%;
  background: linear-gradient(0deg, #D1D3D4 0%, #fff 100%);
  z-index: 1;
}
.service-wrapper {
  padding: 60px 20px;
  text-align: center;
  margin-top: 20px;
  align-content: center;
  background: linear-gradient(180deg, #EAEAEA 0%, #fff 110%);
}
.service-wrapper:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 20px;
  background: #fff;
}
.service-wrapper .service-icon {
  transition: 0.3s;
  display: inline-block;
  margin: 10px 0px 20px;
  padding-top: 20px;
  max-width: 70px;
  max-height: 90px;
  position: relative;
  z-index: 1;
}
.service-wrapper .service-icon:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 6px;
  border-radius: 6px;
  background: var(--btn-color);
}
.service-wrapper:hover .service-icon {
  transition: 0.3s;
  transform: scale(1.05);
}
.service-wrapper .service-content .service-title {
  margin-bottom: 10px;
  color: var(--h-color);
  font-size: 20px;
  font-weight: 700;
  transition: 0.3s;
  line-height: normal;
}
.service-wrapper:hover .service-content .service-title {
  transition: 0.3s;
  color: var(--btn-color);
}

@media (max-width: 767px) {
  .service-section {
    padding: 30px 0;
  }
  .service-bgColor {
    /* border-radius: 20px; */
    padding: 10px;
    border: 5px solid #eaeaea;
  }
  .service-wrapper {
    padding: 0;
    margin: 10px 0;
  }
  .service-wrapper .service-icon {
    max-width: 40px;
    height: 40px;
    width: 100%;
    margin-right: 10px;
  }
  .service-wrapper .service-content .service-title {
    font-size: 13px;
    margin: 7px 0;
    line-height: normal;
    font-weight: 600;
  }
}

@media (min-width: 575px) and (max-width: 767px) {
  .service-wrapper {
    margin-bottom: 0px;
  }
  .service-wrapper .service-icon {
    max-width: 30px;
    height: 30px;
    margin-right: 6px;
    width: 100%;
  }
  .service-wrapper .service-content .service-title {
    font-size: 13px;
    margin-bottom: 4px;
    font-weight: 500;
  }
}

@media (min-width: 767px) and (max-width: 992px) {

  .service-bgColor {
    padding: 20px 10px;
    border-width: 5px;
    border-radius: 20px;
  }
  .service-wrapper {
    padding: 10px;
    margin-top: 0;
  }
  .service-wrapper .service-icon {
    width: 30px;
    height: 30px;
  }
  .service-wrapper .service-content .service-title {
    margin-bottom: 5px;
    font-size: 15px;
  }
}
/*******Service Css End*******/

/*******About Css*******/
.about-section {
  position: relative;
  padding: 100px 0px 60px;
}
.about-image {
  position: relative;
  z-index: 1;
  text-align: center;
  margin: auto 0 0 0;
  border-radius: 10px;
  overflow: hidden;
  height: 500px;
  width: 100%;
}

.about-ccontent.section-heading .sub-heading .heading-s {
  padding-left: 30px;
}
.about-ccontent.section-heading .sub-heading .heading-s:before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 25px;
  height: 1px;
  background: var(--btn-color);
  margin: auto;
}
.about-ccontent.section-heading .defalt-heading {
  text-align: left;
  margin-bottom: 0px !important;
}
.about-ccontent.section-heading .defalt-heading .heading-h {
  text-transform: unset;
  margin: 10px 0px;
  padding-top: 0;
}
.about-ccontent.section-heading .defalt-heading .heading-h:before {
  height: 0;
  width: 0;
  opacity: 0;
}
.about-ccontent.section-heading .defalt-p p {
  margin-bottom: 30px;
}
section.about-section:after {
    position: absolute;
    content: "";
    right: 0;
    left: auto;
    top: 0;
    bottom: auto;
    margin: auto;
    height: 300px;
    width: 200px;
    background-image: url("/images/about-before.png");
    background-repeat: no-repeat !important;
    background-size: 100% 100% !important;
    z-index: -1;
}
@media (max-width: 767px) {
    .about-section {
        padding: 30px 0px;
    }
    .about-ccontent.section-heading .txt-p, .about-ccontent.section-heading .defalt-p p{
        text-align: center;
        margin-bottom: 10px;
    }
    .about-ccontent.section-heading .about-btn.all-btn {
        text-align: center;
        margin-bottom: 20px;
    }
    .about-image {
        max-width: 100%;
        margin: 0 auto 15px;
        height: 300px;
    }
    .service-about-wrapper .section-heading .defalt-heading .heading-h:before {
        display: none;
    }
    section.about-section:after {
       display:none;
    }
}

@media (min-width: 575px) and (max-width: 767px) {
  .about-ccontent.section-heading .defalt-heading .heading-h,
  .about-ccontent.section-heading .sub-heading,
  .about-ccontent.section-heading .txt-p, .about-ccontent.section-heading .defalt-p p,
  .about-ccontent.section-heading .about-btn.all-btn {
    text-align: left;
  }
}

@media (max-width: 992px) {
}

@media (min-width: 767px) and (max-width: 992px) {
    .about-section {
        padding: 30px 0px;
    }
    
    .about-ccontent.section-heading .defalt-heading .heading-h,
    .about-ccontent.section-heading .sub-heading,
    .about-ccontent.section-heading .txt-p, .about-ccontent.section-heading .defalt-p p,
    .about-ccontent.section-heading .about-btn.all-btn {
        text-align: left;
    }
    
    .about-section .about-image {
        height: 500px;
    }
  
}
/*******About Css End*******/

/*******Why Choose Us Css*******/
.why-choose-us {
  position: relative;
  margin: 20px 0px;
}
.why-choose-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
  line-height: normal;
  font-family: 'Exo' !important;
  color: var(--h-color);
}
.why-choose-points .why-choose-p {
  position: relative;
  z-index: 1;
  padding-left: 30px;
  font-size: 16px;
  color: var(--txt-color);
  font-weight: 400;
  line-height: 24px;
  margin-bottom: 5px;
}
.why-choose-points .why-choose-p:before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  width: 16px;
  height: 10px;
  border-left: 3px solid var(--btn-color);
  border-bottom: 3px solid var(--btn-color);
  /* border-radius: 2px 0px 2px 2px; */
  transform: rotate(-45deg);
}
/*******Why Choose Us Css End*******/

/*******Counter Css*******/
.counter-wrapper {
  text-align: left;
  width: 100%;
  /* position: absolute; */
  /* bottom: 20px; */
  /* left: 20px; */
  z-index: 1;
}
.counter-wrapper .counter-item {
  background: #fff;
  /* width: 230px; */
  /* height: 150px; */
  align-content: center;
  padding: 26px 10px;
  margin: 10px;
  border-radius: 6px;
  -moz-box-shadow: rgb(0 0 0 / 30%) 0px 8px 5px -4px;
}
.counter-wrapper .counter-icon {
  display: inline-block;
  margin-bottom: 20px;
}
.counter-wrapper .counter-icon img {
  max-width: 100%;
  max-height: 100%;
  border-radius: 10px;
}
.counter-wrapper .counter-item .counter-no {
  color: var(--h-color);
  margin-bottom: 5px;
  font-size: 50px;
  font-weight: 500;
  font-family: Exo !important;
}
.counter-wrapper .counter-item .counter-no .countNo {
  font-weight: 600;
  color: var(--btn-color);
}
.counter-wrapper .counter-item .counter-text {
  text-transform: capitalize;
  color: var(--h-color);
  display: block;
  font-size: 18px;
  margin: 0;
  font-family: 'LilyScriptOne' !important;
  font-weight: 500;
}

@media (max-width: 767px) {
    .counter-wrapper{
        padding: 0px;
        justify-content: center;
        position: relative;
        left: unset;
        bottom: unset;
    }
    .counter-wrapper .counter-item {
        width: 100%;
        padding: 6px;
        margin: 3px;
        height: unset;
        text-align: center;
    }
    .counter-wrapper .counter-item .counter-no {
        font-size: 26px;
    }
    .counter-wrapper .counter-item .counter-text{
        font-size: 16px;
    }
  
    .why-choose-points .why-choose-p {
        font-size: 13px;
        line-height: normal;
    }
    
    .why-choose-us .why-choose-image {
        text-align: center;
    }
    .counter-wrapper .counter-icon img {
        height: 120px;
        width: 100%;
    }
}

@media (min-width: 767px) and (max-width: 992px) {
    .counter-wrapper {
        padding-top: 0;
        padding-bottom: 20px;
    }
    .counter-wrapper .counter-item {
        margin: 0 2px 0 0;
        padding: 10px;
        max-width: 220px;
        width: 100%;
        height: 120px;
    }
    .counter-wrapper .counter-item .counter-no {
        font-size: 35px;
        font-weight: 600;
    }
    .counter-wrapper .counter-item .counter-text {
        font-size: 15px;
        line-height: normal;
    }
    .why-choose-points .why-choose-p {
        font-size: 13px;
        line-height: 18px;
    }
    .why-choose-us {
        margin-top: 10px;
    }
  
}
/*******Counter Css End*******/

/*******Video Play Button Css*******/
@keyframes ks {
  from {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
    opacity: 0;
  }

  10% {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }

  80% {
    -webkit-transform: scale(1.5);
    -moz-transform: scale(1.5);
    -ms-transform: scale(1.5);
    transform: scale(1.5);
    opacity: 0.3;
  }

  to {
    -webkit-transform: scale(1.5);
    -moz-transform: scale(1.5);
    -ms-transform: scale(1.5);
    transform: scale(1.5);
    opacity: 0;
  }
}

.video-addd {
  position: absolute;
  top: auto;
  left: auto;
  right: 15%;
  bottom: 15%;
  z-index: 3;
  margin: auto;
}
.video-addd .box .play {
  position: absolute;
  display: block;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 6;
  height: 70px;
  width: 70px;
  text-align: center;
  align-content: center;
  transition: 0.4s;
}
.video-addd .box .play:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  transform: translate(-50%, -50%);
  background: rgba(255, 255, 255, 0.5);
  opacity: 0;
  width: 100%;
  height: 100%;
  border-radius: 100% !important;
  border-radius: inherit;
  animation: ks 3s infinite;
  display: block;
  z-index: -1;
}
.video-addd .box .play:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 100% !important;
  transform: translate(-50%, -50%);
  background: rgba(255, 255, 255, 0.5);
  opacity: 0;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  animation: ks 3s infinite;
  display: block;
  z-index: -1;
  animation-delay: 0.4s;
}
.video-addd .box .play .span-video {
  position: relative;
  top: 4px;
  left: 2px;
  z-index: 1;
  width: 40px;
  height: 40px;
  display: inline-block;
  transition: 0.4s;
  transform: rotate(-65deg);
  background: var(--btn-color);
  clip-path: polygon(80% 0%, 70% 80%, 0% 40%, 80% 0%);
}
.video-addd .box .play:hover .span-video {
  transition: 0.4s;
  background: var(--h-color);
}
/*******Video Play Button Css End*******/

/*******Product Css*******/
.product-section {
  position: relative;
  z-index: 1;
  padding: 60px 0px;
}
.product-heading.section-heading .defalt-heading {
  margin-bottom: 0;
}
.product-heading.section-heading .defalt-heading .heading-h {
  text-align: left;
}
.product-heading.section-heading .defalt-heading .heading-h:before {
  right: auto;
}
.product-section .single-product-wrapper {
  overflow: hidden;
  transition: 0.5s;
  position: relative;
  padding: 5px;
  background: linear-gradient(0deg, #ffffff00 0%, #f4f4f400 100%);
  margin-top: 20px;
  border: 1px solid #fff;
  border-radius: 15px;
}
.product-section .single-product-wrapper:hover {
  transition: 0.5s;
  background: var(--color2);
}
.product-section .single-product-wrapper .pro-img {
  height: 200px;
  width: 100%;
  overflow: hidden;
  z-index: 1;
  position: relative;
  margin: auto;
  border-radius: 15px;
}
.product-section .single-product-wrapper .pro-img .pro-img-tag {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  transition: 0.3s;
  max-width: 100%;
  height: 100%;
  width: 100% !important;
  object-fit: cover;
}
.product-section .single-product-wrapper .pro-content .pro-title {
  text-align: center;
  margin: 10px 0px;
  position: relative;
  z-index: 22;
  max-width: 75%;
  margin: auto;
}
.product-section .single-product-wrapper .pro-content .pro-title .pro-links {
  color: var(--color2);
  font-size: 24px;
  line-height: 27px;
  font-weight: 400;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  padding: 15px 0px;
  transition: 0.3s;
  text-transform: capitalize;
}
.product-section
  .single-product-wrapper:hover
  .pro-content
  .pro-title
  .pro-links {
  color: var(--h-color) !important;
  transition: 0.3s;
}
.product-section .single-product-wrapper:hover .pro-img {
  transition: 0.3s;
}
.product-section .single-product-wrapper:hover .pro-img .pro-img-tag {
  transition: 0.3s;
  transform: scale(1.04);
}
.product-section .single-product-wrapper .pro-content .pro-view {
  text-align: center;
}
.product-section .single-product-wrapper .pro-content .pro-view .pro-links-view {
  font-size: 14px;
  color: var(--btn-color);
  font-weight: 400;
  transition: 0.3s;
  position: relative;
  z-index: 1;
  padding-bottom: 2px;
}
.product-section .single-product-wrapper .pro-content .pro-view .pro-links-view:hover {
  transition: 0.3s;
}
.product-section .single-product-wrapper .pro-content .pro-view .pro-links-view:before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: 0%;
  height: 1px;
  background: var(--btn-color);
  transition: 0.3s;
}
.product-section .single-product-wrapper .pro-content .pro-view .pro-links-view:hover:before {
  width: 100%;
  transition: 0.3s;
}
section.product-section:before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    bottom: auto;
    right: auto;
    margin: auto;
    height: 150px;
    width: 80px;
    background-image: url(/images/leaf-before.png) !important;
    background-repeat: no-repeat !important;
    background-size: 100% 100% !important;
    z-index: -1;
}
section.product-section h2.heading-h {
    color: var(--color2) !important;
}
section.product-section .single-product-wrapper .pro-content .product-desc {
    text-align: center;
    min-height: 80px;
}

section.product-section .single-product-wrapper .pro-content .product-desc a {
    color: var(--color2);
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
    font-size: 14px;
    padding: 0px 5px;
}

.single-product-wrapper:hover .product-desc a.pro-links {
    color: var(--h-color) !important;
}
.pro-view {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: 0.5s;
}

.pro-view a {
    background: #0a557cba;
    border-radius: 100%;
    height: 60px;
    width: 60px;
    text-align: center;
    align-content: center;
    color: var(--color2);
    font-family: Sora !important;
}

.single-product-wrapper:hover .pro-view {
    opacity: 1; 
    transition: 0.5s;
}
@media (max-width: 767px) {
  .product-section {
    padding: 30px 0px;
  }
  .product-section .single-product-wrapper .pro-img {
    height: 130px;
  }
  .product-section .single-product-wrapper .pro-content .pro-title .pro-links {
    font-size: 14px;
    line-height: 18px;
  }
  .product-section .single-product-wrapper {
      padding: 0;
      border: 1px solid var(--btn-color);
      border-radius: 15px;
      margin-top: 5px;
  }
  
  .product-section .single-product-wrapper .pro-content .pro-title {
      margin: 5px 0 0;
      max-width: 100%;
  }
  
  .product-section .single-product-wrapper .pro-content .pro-view .pro-links-view {
      font-size: 12px;
  }
  section.product-section:before {
    height: 100px;
    width: 50px;
}

section.product-section .single-product-wrapper .pro-content .product-desc a {
    font-size: 12px;
}

section.product-section .single-product-wrapper .pro-content .product-desc {
    min-height: auto !important;
}

.pro-content {
    padding: 5px 2px;
}
}

@media (min-width: 575px) and (max-width: 767px) {
  .product-section .single-product-wrapper .pro-img {
    height: 180px;
  }
  .product-section .single-product-wrapper .pro-content .pro-title .pro-links {
    font-size: 14px;
    line-height: 20px;
  }
    section.product-section .single-product-wrapper .pro-content .product-desc a {
        -webkit-line-clamp: 2;
    }
    
    .product-section .single-product-wrapper {
        margin-bottom: 10px;
    }
}

@media (min-width: 767px) and (max-width: 992px) {
    
    .product-section {
        padding: 30px 0px;
    }
    .product-section .single-product-wrapper .pro-img {
        height: 200px;
    }
    .product-section .single-product-wrapper .pro-content .pro-title .pro-links {
        font-size: 16px;
        line-height: normal;
    }
  
    .product-section .single-product-wrapper .pro-content .pro-title {
        margin: 12px 0 0 0;
        max-width: 100%;
    }
    
    .product-section .single-product-wrapper .pro-content .pro-view .pro-links-view {
        font-size: 12px;
    }
    
    .product-section .single-product-wrapper {
        padding: 0px;
    }
    section.product-section .single-product-wrapper .pro-content .product-desc a {
        font-size: 12px;
    }
  
}
/*******Product Css End*******/

/*******Category Css*******/
.category-section {
  padding: 60px 0px;
  position: relative;
  z-index: 1;
}
.category-all-banner {
  position: relative;
  z-index: 9;
}
.category-section .defalt-heading {
  margin-bottom: 40px;
}
.category-section .all-category-wrapper {
  margin: 0 10px !important;
  text-align: center;
}
.category-section
  .all-category-wrapper
  .single-category-wrapper
  .category-all-content {
  padding: 10px;
}
.category-section .all-category-wrapper .single-category-wrapper .cat-image {
  height: 170px;
  width: 170px;
  margin: auto;
  border-radius: 100%;
  position: relative;
  z-index: 1;
  overflow: hidden;
  border: 3px solid #e3e3e3;
}
.category-section
  .all-category-wrapper
  .single-category-wrapper
  .cat-image
  .cat-image-tag {
  margin: auto;
  max-width: 100%;
  transition: 0.3s;
  position: absolute;
  inset: 0;
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.category-section
  .all-category-wrapper
  .single-category-wrapper
  .cat-image
  .category-url-main {
  position: absolute;
  inset: 0;
  margin: auto;
  align-content: center;
}
.category-section .all-category-wrapper .single-category-wrapper .cat-image .category-url-main .category-url-tag {
  background: var(--linear-color);
  color: #fff;
  padding: 6px 10px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 500;
  transition: 0.3s;
  opacity: 0;
}
.category-section
  .all-category-wrapper
  .single-category-wrapper
  .category-title
  .cat-title {
  color: var(--sec-color);
  font-size: 18px;
  transition: 0.3s;
  font-weight: 600;
  text-transform: capitalize;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.category-section
  .all-category-wrapper
  .single-category-wrapper:hover
  .cat-image {
  border-color: var(--btn-color);
  transition: 0.3s;
}
.category-section
  .all-category-wrapper
  .single-category-wrapper:hover
  .cat-image
  .cat-image-tag {
  transform: scale(1.08);
  transition: 0.3s;
}
.category-section
  .all-category-wrapper
  .single-category-wrapper:hover
  .category-title
  .cat-title {
  transition: 0.3s;
  color: var(--h-color);
}
.category-section
  .all-category-wrapper
  .single-category-wrapper:hover
  .cat-image
  .category-url-main
  .category-url-tag {
  transition: 0.3s;
  opacity: 1;
}

.category-section .all-category-wrapper .category-title {
    margin-top: 10px;
}

@media (min-width: 992px) and (max-width: 1350px) {
    .category-section .all-category-wrapper .single-category-wrapper .cat-image {
        height: 230px;  
        width: 230px;
    }
}

@media (min-width: 767px) and (max-width: 992px) {
    
    .category-section .all-category-wrapper .single-category-wrapper .category-all-content {
        padding: 0;
    }
    
    .category-section .all-category-wrapper .single-category-wrapper .cat-image {
        height: 130px;
        width: 130px;
    }
    
    .category-section .all-category-wrapper .single-category-wrapper .category-title .cat-title {
        font-size: 15px;
        -webkit-line-clamp: 2;
    }
    
}

@media (min-width: 575px) and (max-width: 767px) {
    .category-section .all-category-wrapper .single-category-wrapper .category-all-content {
        padding: 0;
    }
    .category-section .all-category-wrapper .single-category-wrapper .cat-image {
        height: 150px;
        width: 150px;
    }
}

@media (max-width: 992px) {
    .category-section {
        position: relative;
        height: auto !important;
        padding: 30px 0px 10px;
    }
}

@media (max-width: 767px) {
  .category-section .all-category-wrapper .single-category-wrapper .category-all-content {
    padding: 0;
    padding-bottom: 20px;
  }
  .category-section .all-category-wrapper .single-category-wrapper .cat-image .category-url-main .category-url-tag {
    font-size: 12px;
    padding: 4px 15px;
  }
  .category-section .all-category-wrapper .single-category-wrapper .category-title .cat-title {
    font-size: 15px;
  }

  .category-section .all-category-wrapper .single-category-wrapper .cat-image {
      height: 135px;
      width: 135px;
  }
  
  .category-section .all-category-wrapper {
      margin: 0 !important;
  }
}

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

/*******Blog Css*******/
.blog-section {
  position: relative;
  padding: 60px 0px;
  z-index: 1;
}
.blog-section .blog-wrappers {
  position: relative;
  z-index: 1;
  margin: 10px 0px 30px 0px;
  text-align: center;
  padding: 10px;
  transition: 0.5s;
}
.blog-section .blog-wrappers .blog-img-div {
  height: 220px;
  overflow: hidden;
  z-index: 1;
  position: relative;
  border-radius: 15px;
}
.blog-section .blog-wrappers .blog-img-div .blog-img-link .blog-img-tag {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  transition: 0.3s;
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.blog-section .blog-wrappers .blog-content .blog-title .blog-title-tag {
  margin: 30px 0px 10px;
  color: var(--h-color);
  font-size: 20px;
  font-weight: 400;
  text-transform: capitalize;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: 0.3s;
  line-height: 22px;
}
.blog-section .blog-wrappers .blog-content .blog-date {
  color: var(--btn-color);
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 10px;
  display: inline-block;
}
.blog-section .blog-wrappers .blog-content .blog-txt {
    font-size: 16px;
    font-weight: 400;
    color: var(--txt-color);
    line-height: 24px;
    display: -webkit-inline-box;
    -webkit-line-clamp: 3;
    overflow: hidden;
    -webkit-box-orient: vertical;
    margin-bottom: 10px;
}
.blog-section .blog-wrappers:hover .blog-content .blog-title .blog-title-tag {
  transition: 0.3s;
  color: var(--btn-color);
}
.blog-section .blog-wrappers:hover .blog-img-div .blog-img-link .blog-img-tag {
  transition: 0.3s;
  transform: scale(1.06);
}
.blog-btn.all-btn a {
    background: transparent;
    color: var(--btn-color);
    padding: 0;
    opacity: 0;
    transition: 0.5s;
}
.blog-section .blog-wrappers:hover {
    background: #fff;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    transition: 0.5s;
    border-radius: 15px;
}

.blog-section .blog-wrappers:hover .blog-btn.all-btn a {
    transition:0.5s;
    opacity:1;
}

.sticky-blog{
    position: sticky;
    top: 100px;
}
.blog-img-div.my-blog-img-div {
    height: 500px !important;
}

.blog-btn.all-btn.my-blog-btn a {
    opacity: 1;
    border-radius: 100px;
    background: var(--linear-color);
    color: var(--color2);
    padding: 10px 20px;
}

.blog-btn.all-btn.my-blog-btn {
    margin-top: 30px;
}

.blog-section .blog-wrappers .blog-img-div.my-blog-img-div .blog-img-link .blog-img-tag{
    object-fit:contain !important;
    transition: unset !important;
    border-radius: 15px !important;
    transform: unset !important;
    width: unset !important;
}


.blog-section .blog-wrappers.my-blog-wrapper:hover {
    background: unset;
    box-shadow:unset;
    border-radius: unset;
}
.blog-section:after {
    position: absolute;
    content: "";
    right: 0;
    left: auto;
    top: 0;
    bottom: auto;
    margin: auto;
    height: 300px;
    width: 200px;
    background-image: url("/images/about-before.png");
    background-repeat: no-repeat !important;
    background-size: 100% 100% !important;
    z-index: -1;
}

@media (max-width: 767px) {
  .blog-section {
    padding: 30px 0px;
  }
  .blog-section .blog-wrappers .blog-img-div {
    height: 180px;
    border-radius: 10px;
  }
  .blog-section .blog-wrappers .blog-img-div .blog-img-link .blog-img-tag {
    object-position: top center;
  }
  .blog-section .blog-wrappers .blog-content .blog-title .blog-title-tag {
    font-size: 18px;
    margin: 10px 0px 0px;
    display: block;
    color: var(--btn-color);
  }
  .blog-section .blog-wrappers .blog-content .blog-date {
    font-size: 12px;
    line-height: normal;
    margin-bottom: 5px;
  }
  .blog-section .blog-wrappers .blog-content .blog-txt {
    font-size: 12px;
    line-height: 20px;
  }
    .blog-section:after {
        height: 100px !important;
        width: 75px !important;
    }
    
    .blog-section .blog-wrappers:hover .blog-btn.all-btn a {
        opacity: 1;
    }
    
    .blog-section .blog-wrappers:hover {
        background: unset;
        box-shadow: unset;
    }
    
    .blog-section .blog-wrappers {
        background: #fff;
        box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
        border-radius: 15px;
    }
    .blog-btn.all-btn a{
        opacity:1;
    }
}

@media (min-width: 575px) and (max-width: 767px) {
  .blog-section .blog-wrappers .blog-content .blog-title .blog-title-tag {
    font-size: 15px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
  }
}

@media (max-width: 992px) {
}

@media (min-width: 767px) and (max-width: 992px) {
    
    .blog-section .blog-wrappers .blog-img-div {
        height: 150px;
    }
    
    .blog-section .blog-wrappers .blog-content .blog-title .blog-title-tag {
        font-size: 15px;
        -webkit-line-clamp: 2;
        margin: 12px 0 0;
    }
    
    .blog-section .blog-wrappers .blog-content .blog-date {
        font-size: 13px;
        margin-bottom: 5px;
    }
    
    .blog-section .blog-wrappers .blog-content .blog-txt {
        font-size: 13px;
        line-height: 18px;
        margin-bottom: 5px;
    }
    .blog-section {
        padding: 30px 0px;
    }
    .blog-section .blog-wrappers:hover {
        box-shadow: unset;
    }
    
    .blog-section .blog-wrappers {
        box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
        border-radius:15px;
    }
    .blog-btn.all-btn a {
        opacity: 1;
    }
    .sticky-blog .blog-wrappers.my-blog-wrapper {
        box-shadow: unset;
    }
    .blog-btn.all-btn.my-blog-btn {
        margin-top: 0px;
    }
}

@media (min-width: 1100px) and (max-width: 1250px) {}
@media (min-width: 992px) and (max-width: 1100px) {}
@media (min-width: 767px) and (max-width: 992px) {}
@media (min-width: 575px) and (max-width: 767px) {
    .blog-section .blog-wrappers {
        height: 340px;
        margin-bottom: 10px;
    }
    .blog-section .blog-wrappers .blog-content .blog-txt {
        -webkit-line-clamp: 2;
    }
}

/*******Blog Css End*******/

/*******Testimonial Css*******/
.testimonial-section {
  padding: 80px 0px 100px 0px;
  position: relative;
  z-index: 1;
  background-repeat: no-repeat !important;
  background-size: 100% 100% !important;
}
.testimonial-heading.section-heading {
  margin-bottom: 50px;
}
.testimonial-carousel .owl-item .item {
  position: relative;
  z-index: 1;
  perspective: 1500px;
  transform-style: preserve-3d;
}
.testimonial-image {
  width: 50px;
  position: relative;
  z-index: 1;
  display: table-cell;
  vertical-align: middle;
}
.testimonial-bg{
    position: absolute;
    inset: 0;
    z-index: 1;
    border-radius: 16px;
    overflow: hidden;
    opacity: 0;
    transform: translate3d(0,18px,-20px) rotate(-5deg) scale(.97);

    transition:
        transform .75s cubic-bezier(.19,1,.22,1),
        opacity .45s ease;
    will-change: transform, opacity;
}

.testimonial-image .testimonial-image-tag {
  display: block;
  max-width: 70px;
  max-height: 70px;
  border-radius: 20px;
  transition: 0.3s;
  border-radius: 10px;
}
.testimonial-content {
  max-width: 98%;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  padding: 50px 30px;
  margin: 10px auto;
  transition: 0.3s;
  background: #fff;
  height: 380px;
  border-radius: 15px;
  position: relative;
  z-index: 1;
   position: relative;
    z-index: 2;

    transform: translate3d(0,0,0) rotate(0deg) scale(1);

    transition:
        transform .75s cubic-bezier(.19,1,.22,1),
        box-shadow .45s ease;

    will-change: transform;
}
.testimonial-content:before {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    margin: auto;
    height: 97%;
    width: 97%;
    border: 2px solid var(--sec-color);
    content: "";
    border-radius: 15px;
    z-index: -1;
    opacity: 0;
    transition: 0.5s;
}
.testimonial-content:hover.testimonial-content:before {
    opacity: 1;
    transition: 0.5s;
}
.testimonial-title {
  width: calc(100% - 100px) !important;
  display: table-cell;
  vertical-align: middle;
  max-width: 100% !important;
  text-align: left;
  padding-left: 5px;
}
.testimonial-title .testimonial-name {
  font-size: 22px;
  font-weight: 600;
  color: var(--h-color);
  margin: 0;
  line-height: normal;
  transition: 0.3s;
}
.testimonial-title .testimonial-ttl {
  font-weight: 400;
  font-size: 14px;
  color: var(--h-color);
  line-height: normal;
  transition: 0.3s;
}
.testimonial-text .testimonial-p {
  font-size: 16px;
  font-weight: 400;
  color: var(--txt-color);
  position: relative;
  z-index: 1;
  padding: 15px 0px 0px 0px;
  margin: 0;
  transition: 0.3s;
}
.testimonial-section .testimonial-carousel .owl-nav {
  display: none !important;
  align-items: center;
  justify-content: center;
  margin: auto;
}
.testimonial-section h2.heading-h {
    color: var(--color2) !important;
}
.testimonial-content .testimonial-comma img {
    max-width: 100% !important;
    height: 40px;
    width: 40px !important;
}
.testimonial-comma {
    padding-top: 50px;
}
.testimonial-section:before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    bottom: auto;
    right: auto;
    margin: auto;
    height: 150px;
    width: 80px;
    background-image: url("/images/leaf-before.png") !important;
    background-repeat: no-repeat !important;
    background-size: 100% 100% !important;
    z-index: -1;
}
.item:hover .testimonial-bg{
    opacity: 1;
    transform: translate3d(0,-28px,-20px) rotate(-8deg) scale(1);
}
.item:hover .testimonial-content{
    transform: translate3d(0,22px,0) rotate(3deg) scale(.985);
    box-shadow: 0 30px 60px rgba(0,0,0,.18);
}
section.testimonial-section .owl-stage-outer {
    padding: 80px 0px 25px 0px;
}
.testimonial-section .owl-dots {
  display: flex !important;
  position: absolute;
  right: 0px;
  bottom: -50px;
  left: 0;
  justify-content: center;
}
.testimonial-section .owl-dots .owl-dot span {
  display: none;
  height: 20px;
  width: 20px;
  position: relative;
}
.testimonial-section .owl-dots .owl-dot {
  margin: 0px;
  padding: 2px;
  display: inline-block;
  color: #000;
  background-color: #ffffff4d;
  /* border-radius: 100px; */
  width: 180px;
}
.testimonial-section .owl-dots .owl-dot.active {
  background-color: var(--btn-color) !important;
}
.testimonial-section .owl-dots .owl-dot.active span:before {
  color: var(--btn-color) !important;
}
.testimonial-section .owl-dots .owl-dot:first-child span:before {
  content: "01";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  color: #000;
  font-weight: 700;
}
.testimonial-section .owl-dots .owl-dot:nth-child(2) span:before {
  content: "02";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  color: #000;
  font-weight: 700;
}
.testimonial-section .owl-dots .owl-dot:nth-child(3) span:before {
  content: "03";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  color: #000;
  font-weight: 700;
}

@media (max-width: 767px) {
  .testimonial-section {
    padding: 30px 0px;
  }
  .testimonial-heading.section-heading {
    margin-bottom: 0;
  }
  .testimonial-image {
    height: 80px;
    width: 80px;
    max-width: 50%;
  }
  .testimonial-image .testimonial-image-tag {
    max-width: 100%;
    max-height: 90%;
    width: 90% !important;
    height: auto !important;
  }
  .testimonial-content {
    max-width: 95%;
    padding: 15px;
    height: auto;
  }
  .testimonial-title .testimonial-name {
    font-size: 16px;
  }
  .testimonial-title .testimonial-ttl {
    font-size: 13px;
  }
  .testimonial-text .testimonial-p {
    font-size: 13px;
    line-height: 18px;
    padding: 0px;
    text-align: left;
    margin: 10px 0 !important;
  }
  .testimonial-section .testimonial-carousel .owl-nav {
    display: none !important;
  }
  .testimonial-section .testimonial-carousel .owl-dots {
    left: 0;
    justify-content: center;
    bottom: -10px;
  }
  .testimonial-section .testimonial-carousel .owl-dots .owl-dot {
    height: 5px;
    width: 50px;
  }
  .testimonial-section .testimonial-carousel .owl-dots .owl-dot span {
    height: 10px;
    width: 10px;
  }
  .testimonial-section:before {
    height: 100px;
    width: 50px;
   }
    section.testimonial-section .owl-stage-outer {
        padding: 20px 0px !important;
    }
    .testimonial-comma {
        padding-top: 20px;
    }
    .testimonial-bg {
        display: none;
    }
    .item:hover .testimonial-content {
        transform: unset;
    }
    .testimonial-content:before {
        opacity: 1;
    }
    .item:hover .testimonial-content {
        transform: unset !important;
        box-shadow: unset !important;
    }
}

@media (min-width: 767px) and (max-width: 992px) {
  .testimonial-section {
    padding: 30px 0px 10px;
  }
  .testimonial-heading.section-heading {
    margin-bottom: 30px;
  }
  .testimonial-image {
    width: 50px;
    border-radius: 20px;
    border-width: 2px;
  }
  .testimonial-content {
    max-width: 90%;
    padding: 20px;
    height: 290px;
  }
  .testimonial-title .testimonial-name {
    font-size: 16px;
  }
  .testimonial-title .testimonial-ttl {
    font-size: 13px;
  }
  .testimonial-text .testimonial-p {
    font-size: 14px;
    line-height: 18px;
    padding: 10px 0px;
    margin-top: 10px;
    margin-bottom: 0;
  }
  .testimonial-section .testimonial-carousel .owl-nav {
    display: none !important;
  }
  .testimonial-section .testimonial-carousel .owl-nav .owl-prev, .testimonial-section .testimonial-carousel .owl-nav .owl-next {
    width: 25px;
    height: 25px;
  }
  .testimonial-section .testimonial-carousel .owl-nav .owl-prev:before, .testimonial-section .testimonial-carousel .owl-nav .owl-next:before {
    max-width: 13px;
    max-height: 5px;
  }
  .testimonial-section .testimonial-carousel .owl-dots {
    left: 0;
    bottom: 20px;
    justify-content: center;
  }
  .testimonial-section .testimonial-carousel .owl-dots .owl-dot {
    height: 5px;
    width: 100px;
  }
  .testimonial-section .testimonial-carousel .owl-dots .owl-dot span {
    height: 10px;
    width: 10px;
  }
  section.testimonial-section .owl-stage-outer {
    padding: 0px 0px 50px 0px;
}

.item:hover .testimonial-bg {
    display: none;
}

.item:hover .testimonial-content {
    box-shadow: unset;
    transform: unset;
}
.testimonial-comma {
    padding-top: 20px;
}
.testimonial-image .testimonial-image-tag {
    height: 50px;
    width: 50px;
}

}

@media (min-width: 993px) and (max-width: 1200px){
    .testimonial-title .testimonial-name {
        font-size: 16px;
    }
    
    .testimonial-comma {
        padding-top: 30px;
    }
    
    .testimonial-content {
        padding: 20px;
        height: 330px;
    }
    
    .testimonial-text .testimonial-p {
    }
}
/*******Testimonial Css End*******/

/*******Brand Css*******/
.brand-section {
    position: relative;
    z-index: 1;
    padding: 30px 0px;
}
.brand-ul {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.brand-img {
    text-align: center;
}
.brand-img .brand-icon-tag {
    max-width: 80%;
    margin: auto;
}
/*******Brand Css End*******/

/*******Footer Css*******/
.footer-section {
  padding-top: 30px;
  position: relative;
  z-index: 1;
  background-repeat: no-repeat !important;
  background-size: 100% 100% !important;
}
.footer-section .container.bg {
  padding-bottom: 130px;
  position: relative;
}
.footer-p p {
  color: var(--color2);
  font-size: 14px;
  line-height: 25px;
  margin-top: 30px;
  display: -webkit-box;
  -webkit-line-clamp: 8;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.footer-heading {
  margin-bottom: 30px;
  margin-top: 10px;
}
.footer-heading .footer-h {
  color: var(--color2);
  font-size: 18px;
  font-weight: 700;
  line-height: normal;
  text-transform: capitalize;
  position: relative;
  padding-left: 20px;
}

.footer-widgets li a {
  color: var(--color2);
  font-size: 14px;
  font-weight: 400;
  text-transform: capitalize;
  transition: 0.3s;
}
.footer-widgets li a:hover {
  transition: 0.3s;
  color: var(--btn-color) !important;
}
.footer-widgets li a img.img-fluid {
  margin-right: 10px;
}
.footer-widgets li a p {
  display: inline-block;
}

.footer-widgets li {
  margin: 5px 0px;
}
.footer-ul li {
  margin: 15px 0px !important;
  position: relative;
}
.footer-main-contact .footer-sub-h {
  font-size: 15px;
  color: var(--btn-color);
}
.footer-main-contact .foot-numb {
  display: flex !important;
  margin-bottom: 20px;
}
.footer-main-contact .foot-numb .f-con-icon {
  width: 30px;
  max-width: 20%;
  margin-right: 10px;
}
.footer-main-contact .foot-numb .foot-txt {
  max-width: 80%;
}
.footer-main-contact .foot-numb .foot-txt-p {
  margin: 0;
  color: #fff;
  font-size: 14px;
  transition: 0.3s;
  margin-bottom: 10px;
  display: inline-block !important;
}
.footer-main-contact .foot-numb .foot-txt-p:hover {
  transition: 0.3s;
  color: var(--btn-color) !important;
}

.foot-social .main-social-list-ul {
  padding: 0;
  list-style: none !important;
  display: flex;
  align-items: center;
  margin-top: 20px;
}
.foot-social .main-social-list-li {
  margin-right: 20px !important;
  border-radius: 50%;
  height: 40px;
  width: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  transition: 0.3s;
}
.foot-social .foot-social-anchor {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 100%;
  background: var(--btn-color);
}
.foot-social .foot-social-anchor:hover {
  background: var(--btn-color) !important;
  transition: 0.3s;
}
.foot-social .foot-social-anchor:hover .foot-social-icon {
  transition: 0.3s;
  filter: brightness(0) invert(1);
}
.footer-copy-right {
  padding: 20px 0px;
  background: #121310;
  /* border-top: 1px solid #fff; */
  position: relative;
}
.footer-copy-right .footer-copy-right-txt {
  margin: 0px;
  color: #fff;
  text-align: center;
  font-size: 14px;
  font-weight: 400;
  line-height: normal;
  text-transform: capitalize;
}
.footer-copy-right .footer-copy-right-txt .footer-copy-right-link {
  color: #ffffff;
  position: relative;
  font-weight: 700;
  transition: 0.3s;
}
.footer-copy-right .footer-copy-right-txt .footer-copy-right-link:hover {
  color: var(--btn-color);
  transition: 0.3s;
}

footer.footer-section .l-o-g {
    text-align: center;
    position: relative;
    padding-bottom: 30px;
}

footer.footer-section .l-o-g:before {
    position: absolute;
    left: 0px;
    top: 0;
    bottom: 0;
    margin: auto;
    right: auto;
    height: 1px;
    width: 36%;
    background: #D9D9D9;
    content: "";
    z-index: -1;
}

footer.footer-section .l-o-g:after {
    position: absolute;
    right: 0px;
    top: 0;
    bottom: 0;
    margin: auto;
    left: auto;
    height: 1px;
    width: 36%;
    background: #D9D9D9;
    content: "";
    z-index: -1;
}

.footer-copy-right:before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    margin: auto;
    bottom: auto;
    height: 1px;
    width: 88%;
    background: #d9d9d963;
    content: "";
}
.footer-heading .footer-h:before {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    right: auto;
    margin: auto;
    height: 100%;
    width: 2px;
    background: var(--btn-color);
    content: "";
}
ul.footer-ul {
    padding-left: 20px;
}

.footer-ul li:before {
    position: absolute;
    left: -20px;
    bottom: 0;
    top: 0;
    right: auto;
    margin: auto;
    height: 10px;
    width: 7px;
    background-image: url("/images/footer-arrow.png");
    background-repeat: no-repeat !important;
    background-size: 100% 100% !important;
    content: "";
}
.footer-section .container.bg .foot-gallery-img {
    position: relative;
    height: 150px;
    margin-bottom: 12px;
    width: 100%;
}

.footer-section .container.bg .foot-gallery-img img {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    margin: auto;
    height: 100%;
    object-fit: cover;
    border: 1px solid var(--color2);
    border-radius: 15px;
    width: 95%;
}
.footer-widgets {
    padding-left: 30px;
}
.footer-section .container.bg:before {
    position: absolute;
    bottom: -30px;
    content: "";
    left: 0;
    right: 0;
    margin: auto;
    top: auto;
    height: 120px;
    width: 100%;
    background-image: url("/images/bottom-form-before.png") !important;
    background-repeat: no-repeat !important;
    background-size: 100% 100% !important;
    z-index: -1;
}
@media (max-width: 767px) {
    
    .brand-section {
        padding: 0px 0 20px;
    }
    
    .footer-section .l-o-g {
        padding-bottom: 10px !important;
        text-align: center;
    }
    
    footer.footer-section .l-o-g img {
        padding: 5px;
    }
    
    .footer-p p {
        font-size: 12px;
        line-height: 18px;
    }
    
    .foot-social .main-social-list-ul {
        justify-content: center;
    }
    
    .footer-widgets li a {
        font-size: 12px;
    }
    
    .footer-ul li {
        margin: 5px 0 !important;
    }
    
    .footer-heading {
        margin-bottom: 15px;
    }
    
    .footer-main-contact .foot-numb .foot-txt-p {
        font-size: 12px;
    }
    
    .footer-copy-right .footer-copy-right-txt {
        font-size: 12px;
    }
    
    .footer-copy-right .footer-copy-right-txt .footer-copy-right-link {
        font-weight: 400;
    }
    .footer-section .container.bg .foot-gallery-img {
        height: 100px;
        width: 90%;
    }
    
    .footer-widgets {
        padding-left: 10px;
        margin-bottom:15px;
    }
    
    .footer-section .container.bg .foot-gallery-img img {
        border-radius: 5px;
        border: unset;
    }
    
    .footer-section .container.bg {
        padding-bottom: 40px;
    }
    
    .footer-section .container.bg:before {
        height: 80px;
        width: 90%;
    }
    .footer-main-contact .foot-numb .f-con-icon {
        width: 15px !important;
    }
    
}
@media (min-width: 575px) and (max-width: 767px) {
    .footer-section .container.bg .foot-gallery-img {
        height: 90px;
    }
}
@media (max-width: 992px) {
}

@media (min-width: 767px) and (max-width: 992px) {
    
    .footer-main-contact .foot-numb .foot-txt-p.mail {
        line-break: anywhere;
    }
    
    .footer-section .l-o-g {
        border-radius: 4px;
    }
    
    .footer-section .footer-p p {
        margin: 10px 0;
    }
    
    .foot-social .main-social-list-li {
        margin-right: 10px !IMPORTANT;
    }
    
    .footer-ul li {
        margin: 5px 0 !important;
    }
    
    .footer-widgets li a {
        font-weight: unset;
    }
    
    .footer-heading {
        margin-bottom: 15px;
    }
    
    .foot-social .main-social-list-ul {
        justify-content: center;
        margin-bottom: 20px;
    }
    .footer-widgets {
        padding: 0;
    }
    
    .footer-main-contact .foot-numb .foot-txt-p {
        font-size: 12px;
    }
    
    .footer-section .container.bg .foot-gallery-img {
        height: 100px !important;
    }
    .footer-widgets{
        padding-left:0px !important;
    }
    .footer-main-contact .foot-numb .foot-txt-p {
        font-size: 12px !important;
    }
    .footer-main-contact .foot-numb .f-con-icon{
        width: 15px !important;
    }
}
@media (min-width:993px) and (max-width: 1200px){
    .footer-section .container.bg .foot-gallery-img {
        height: 130px;
    }
    .footer-widgets {
        padding-left: 0px;
    }
}
/*******Footer Css End*******/



/*Quality Assurance Section CSS*/

section.quality-assurance {
    position: relative;
    padding: 60px 0px;
}

section.quality-assurance .quality-assurance-img img {
    height: 100%;
    width: 95%;
    max-width: 95%;
}

section.quality-assurance .quality-assurance-cont p {
    margin-bottom: 30px;
}

section.quality-assurance .quality-assurance-cont ul li {
    margin: 15px 0px;
    position: relative;
}

section.quality-assurance .quality-assurance-cont ul {
    padding-left: 30px;
}

section.quality-assurance .quality-assurance-cont ul li:before {
    position: absolute;
    top: 0;
    left: -38px;
    bottom: 0;
    right: auto;
    margin: auto;
    height: 20px;
    width: 20px;
    background-image: url("/images/list-tick.png") !important;
    background-repeat: no-repeat !important;
    background-size: 100% 100% !important;
    content: "";
}

section.quality-assurance:after {
    position: absolute;
    content: "";
    right: 0;
    left: auto;
    top: 0;
    bottom: auto;
    margin: auto;
    height: 300px;
    width: 200px;
    background-image: url("/images/about-before.png");
    background-repeat: no-repeat !important;
    background-size: 100% 100% !important;
    z-index: -1;
}

@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) {
    section.quality-assurance {
        padding: 30px 0px;
    }
    section.quality-assurance .quality-assurance-cont p {
        font-size: 14px;
        margin-bottom: 10px;
    }
    
    section.quality-assurance .quality-assurance-cont ul li {
        margin: 10px 0px;
        font-size: 14px;
    }
    section.quality-assurance .quality-assurance-cont ul li:before {
        height: 15px;
        width: 15px;
        left: -30px;
    }
}
@media (min-width: 575px) and (max-width: 767px) {
    section.quality-assurance .quality-assurance-cont ul li {
        margin: 5px 0px;
    }
    section.quality-assurance .quality-assurance-cont p {
        margin-bottom: 0px !important;
    }
}
@media (max-width: 767px) {
    
    section.quality-assurance {
        padding: 30px 0px;
    }
    
    section.quality-assurance:after {
        height: 100px;
        width: 75px;
    }
    
    section.quality-assurance .quality-assurance-img img {
        width: 100%;
        max-width: 100%;
    }
    
    section.quality-assurance .quality-assurance-cont p {
        font-size: 12px;
        margin-top: 10px;
        margin-bottom: 10px;
    }
    
    section.quality-assurance .quality-assurance-cont ul li {
        font-size: 12px;
    }
    
    section.quality-assurance .quality-assurance-cont ul li:before {
        left: -25px;
        height: 12px;
        width: 12px;
    }
}
/*******Quality Assurance Css End*******/

/*Factory Strength Section CSS*/

section.factory-strength {
    position: relative;
    padding: 60px 0px;
    background-repeat: no-repeat !important;
    background-size: 100% 100% !important;
    z-index: 1;
}
section.factory-strength h2.heading-h {
    color: var(--color2) !important;
}
section.factory-strength .factory-content-item{
    padding-bottom:30px;
    position:relative;
    height: 170px;
}
section.factory-strength .factory-content-item h2 {
    font-size: 30px;
    color: var(--color2);
    font-weight: 700;
}
section.factory-strength .factory-content-item p {
    color: var(--color2);
}
section.factory-strength .factory-content-item.factory-left-content-item {
    text-align: left;
}
section.factory-strength .factory-content-item.factory-right-content-item {
    text-align: right;
}
section.factory-strength .factory-strength-img {
    position: relative;
    text-align: center;
}
section.factory-strength .factory-strength-img img {
    width: 95%;
    max-width: 95%;
    height: 100%;
    border-radius: 15px;
}
.factory-left-content-item1:before {
    position: absolute;
    content: "1";
    right: -11px;
    left: auto;
    top: 10px;
    bottom: 0;
    background: var(--color2);
    height: 20px;
    width: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100px;
    color: var(--sec-color);
    font-weight: 700;
}
.factory-left-content-item1:after {
    position: absolute;
    right: -40px;
    left: auto;
    bottom: 0;
    top: 19px;
    height: 2px;
    width: 29px;
    background: var(--color2);
    content:
    "";
}
.factory-left-content-item2:before {
    position: absolute;
    content: "2";
    right: -11px;
    left: auto;
    top: 10px;
    bottom: 0;
    background: var(--color2);
    height: 20px;
    width: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100px;
    color: var(--sec-color);
    font-weight: 700;
}
.factory-left-content-item2:after {
    position: absolute;
    right: -40px;
    left: auto;
    bottom: 0;
    top: 19px;
    height: 2px;
    width: 29px;
    background: var(--color2);
    content:"";
}
.factory-left-content-item3:before {
    position: absolute;
    content: "3";
    right: -11px;
    left: auto;
    top: 10px;
    bottom: 0;
    background: var(--color2);
    height: 20px;
    width: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100px;
    color: var(--sec-color);
    font-weight: 700;
}
.factory-left-content-item3:after {
    position: absolute;
    right: -40px;
    left: auto;
    bottom: 0;
    top: 19px;
    height: 2px;
    width: 29px;
    background: var(--color2);
    content:"";
}
.factory-right-content-item1:before {
    position: absolute;
    content: "4";
    left: -11px;
    right: auto;
    top: 10px;
    bottom: 0;
    background: var(--color2);
    height: 20px;
    width: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100px;
    color: var(--sec-color);
    font-weight: 700;
}
.factory-right-content-item1:after {
    position: absolute;
    left: -40px;
    right: auto;
    bottom: 0;
    top: 19px;
    height: 2px;
    width: 29px;
    background: var(--color2);
    content:"";
}
.factory-right-content-item2:before {
    position: absolute;
    content: "5";
    left: -11px;
    right: auto;
    top: 10px;
    bottom: 0;
    background: var(--color2);
    height: 20px;
    width: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100px;
    color: var(--sec-color);
    font-weight: 700;
}
.factory-right-content-item2:after {
    position: absolute;
    left: -40px;
    right: auto;
    bottom: 0;
    top: 19px;
    height: 2px;
    width: 29px;
    background: var(--color2);
    content:"";
}
.factory-right-content-item3:before {
    position: absolute;
    content: "6";
    left: -11px;
    right: auto;
    top: 10px;
    bottom: 0;
    background: var(--color2);
    height: 20px;
    width: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100px;
    color: var(--sec-color);
    font-weight: 700;
}
.factory-right-content-item3:after {
    position: absolute;
    left: -40px;
    right: auto;
    bottom: 0;
    top: 19px;
    height: 2px;
    width: 29px;
    background: var(--color2);
    content:"";
}

section.factory-strength:before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    bottom: auto;
    right: auto;
    margin: auto;
    height: 150px;
    width: 80px;
    background-image: url("/images/leaf-before.png") !important;
    background-repeat: no-repeat !important;
    background-size: 100% 100% !important;
    z-index: -1;
}
@media (min-width: 1100px) and (max-width: 1250px) {}
@media (min-width: 992px) and (max-width: 1100px) {}
@media (min-width: 767px) and (max-width: 992px) {
    section.factory-strength {
        padding: 30px 0px;
    }
    section.factory-strength .factory-content-item h2 {
        font-size: 16px;
    }
    section.factory-strength .factory-content-item p {
        font-size: 12px;
    }
    section.factory-strength .factory-strength-img img {
        width: 100%;
        max-width: 100%;
    }
    section.factory-strength .factory-content-item {
        height: 125px;
    }
    .factory-right-content-item1:before {
        height: 15px;
        width: 15px;
        font-size: 12px;
        top: 12px;
    }
    .factory-right-content-item1:after {
        left: -24px;
        width: 14px;
    }
     .factory-right-content-item2:before {
        height: 15px;
        width: 15px;
        font-size: 12px;
        top: 12px;
    }
    .factory-right-content-item2:after {
        left: -24px;
        width: 14px;
    }
     .factory-right-content-item3:before {
        height: 15px;
        width: 15px;
        font-size: 12px;
        top: 12px;
    }
    .factory-right-content-item3:after {
        left: -24px;
        width: 14px;
    }
    
    .factory-left-content-item1:before {
        font-size: 12px;
        height: 15px;
        width: 15px;
        top: 12px;
    }
    .factory-left-content-item1:after {
        right: -24px;
        width: 14px;
    }
    .factory-left-content-item2:before {
        font-size: 12px;
        height: 15px;
        width: 15px;
        top: 12px;
    }
    .factory-left-content-item2:after {
        right: -24px;
        width: 14px;
    }
    .factory-left-content-item3:before {
        font-size: 12px;
        height: 15px;
        width: 15px;
        top: 12px;
    }
    .factory-left-content-item3:after {
        right: -24px;
        width: 14px;
    }
}
@media (min-width: 575px) and (max-width: 767px) {}
@media (max-width: 767px) {
    section.factory-strength:before {
        height: 100px;
        width: 50px;
    }
    section.factory-strength .factory-content-item h2 {
        font-size: 16px;
    }
    section.factory-strength .factory-content-item p {
        font-size: 12px;
        margin: 0;
    }
    section.factory-strength .factory-content-item {
        height: auto;
        padding-bottom: 10px;
        margin-top: 20px;
    }
    section.factory-strength {
        padding: 30px 0px;
    }
    section.factory-strength .factory-strength-img {
        display: none;
    }
    section.factory-strength .factory-content-item.factory-right-content-item {
        text-align: left;
    }
    .factory-left-content-item1:before {
        display: none;
    }
    .factory-left-content-item2:before {
        display: none;
    }
    .factory-left-content-item3:before {
        display: none;
    }
    .factory-left-content-item1:after {
        display: none;
    }
    .factory-left-content-item2:after {
        display: none;
    }
    .factory-left-content-item3:after {
        display: none;
    }
    .factory-right-content-item1:before {
        display: none;
    }
    .factory-right-content-item2:before {
        display: none;
    }
    .factory-right-content-item3:before {
        display: none;
    }
    .factory-right-content-item1:after{
         display: none;
    }
    .factory-right-content-item2:after{
         display: none;
    }
    .factory-right-content-item3:after{
         display: none;
    }
}
@media(min-width: 993px) and (max-width: 1200px){
    section.factory-strength .factory-content-item h2 {
        font-size: 26px;
    }
    
    section.factory-strength .factory-content-item p {
        font-size: 14px;
    }
    
    section.factory-strength .factory-content-item {
        height: 150px;
    }
    section.factory-strength .factory-right-content-item1:after {
        left: -36px;
    }
    section.factory-strength .factory-right-content-item2:after {
        left: -36px;
    }
    section.factory-strength .factory-right-content-item3:after {
        left: -36px;
    }
}
@media (min-width:1250px) and (max-width:1350px){
    
    section.factory-strength .factory-strength-img img {
        width: 85%;
        max-width: 85%;
    }
    
    .factory-left-content-item1:after {
        right: -65px;
    }
    
    .factory-left-content-item1:before {
        right: -36px;
    }
     .factory-left-content-item2:after {
        right: -65px;
    }
    
    .factory-left-content-item2:before {
        right: -36px;
    }
     .factory-left-content-item3:after {
        right: -65px;
    }
    
    .factory-left-content-item3:before {
        right: -36px;
    }
    .factory-right-content-item1:after {
        left: -65px;
    }
    .factory-right-content-item1:before {
        left: -36px;
    }
    .factory-right-content-item2:after {
        left: -65px;
    }
    .factory-right-content-item2:before {
        left: -36px;
    }
    .factory-right-content-item3:after {
        left: -65px;
    }
    
    .factory-right-content-item3:before {
        left: -36px;
    }
}

/*******Factory Strength Css End*******/

/*Gallery Section CSS*/

section.gallery-section {
    position: relative;
    padding: 150px 0px 60px 0px;
}
section.gallery-section .row.gallery-head-row {
    position: absolute;
    top: 60px;
    left: auto;
    right: auto;
    bottom: auto;
    margin: auto;
}
section.gallery-section .gallery-img img {
    border-radius: 20px;
}
.gallery-img img {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    margin: auto;
    height: 100%;
    width: 100%;
    object-fit: cover;
    padding: 10px;
}

.gallery-img {
    position: relative;
}
section.gallery-section .gallery-img.gallery-img1{
    height: 300px;
    width: 100%;
}
.gallery-img.gallery-img2{
    height: 210px;
    width: 100%;
}

.gallery-img.gallery-img3{
    height: 350px;
    width: 100%;
}

.gallery-img.gallery-img4{
    height: 280px;
    width: 100%;
}

.gallery-img.gallery-img5{
    height: 270px;
    width: 100%;
}

.gallery-img.gallery-img6{
    height: 180px;
    width: 100%;
}
section.gallery-section:after {
    position: absolute;
    content: "";
    right: 0;
    left: auto;
    top: 0;
    bottom: auto;
    margin: auto;
    height: 300px;
    width: 200px;
    background-image: url("/images/about-before.png");
    background-repeat: no-repeat !important;
    background-size: 100% 100% !important;
    z-index: -1;
}
.gallery-img a:before {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    margin: auto;
    height: 100%;
    width: 100%;
    border: 2px solid var(--sec-color);
    content: "";
    border-radius: 15px;
    opacity:0;
    transition:0.5s;
}
.gallery-img:hover.gallery-img a:before{
    opacity:1;
    transition:0.5s;
}

@media (min-width: 1100px) and (max-width: 1250px) {}
@media (min-width: 992px) and (max-width: 1100px) {}
@media (min-width: 767px) and (max-width: 992px) {
    section.gallery-section {
        padding: 120px 0px 30px 0px;
    }
    
    section.gallery-section .defalt-heading.text-start {
        text-align: left !important;
    }
    
    section.gallery-section .defalt-heading.text-start h2.heading-h {
        text-align: left;
    }
    .gallery-img.gallery-img3 {
        height: 250px;
    }
    
    .gallery-img.gallery-img4 {
        height: 220px;
    }
    
    .gallery-img.gallery-img2 {
        height: 180px;
    }
    
    section.gallery-section .gallery-img.gallery-img1 {
        height: 330px;
    }
    
    .gallery-img.gallery-img5 {
        height: 200px;
    }
    
    .gallery-img.gallery-img6 {
        height: 150px;
    }
}
@media (min-width: 575px) and (max-width: 767px) {
    .section-heading .defalt-heading {
        text-align: center !important;
    }
    
    section.gallery-section .gallery-img.gallery-img1 {
        height: 400px !important;
    }
    
    .gallery-img {
        height: 180px !important;
    }
}
@media (max-width: 767px) {
    
    section.gallery-section .row.gallery-head-row {
        position: relative;
        top: unset;
        left: unset;
        right: unset;
        bottom: unset;
    }
    
    section.gallery-section {
        padding: 30px 0px;
    }
    
    section.gallery-section:after {
        height: 100px;
        width: 75px;
    }
    .gallery-img {
        height: 220px !important;
    }
}

/*******Gallery Css End*******/

/*Faq Section CSS*/

section.faq-section {
    position: relative;
    padding: 60px 0px;
    background-repeat: no-repeat !important;
    background-size: 100% 100%;
}

section.faq-section h2.heading-h {
    color: var(--color2) !important;
}

section.faq-section:before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    bottom: auto;
    right: auto;
    margin: auto;
    height: 150px;
    width: 80px;
    background-image: url("/images/leaf-before.png") !important;
    background-repeat: no-repeat !important;
    background-size: 100% 100% !important;
}
section.faq-section button.accordion-button.faq-btn {
    background: var(--color2);
    color: var(--h-color);
    font-size: 20px;
    font-weight: 600;
    padding: 20px;
    box-shadow: none !important;
}

section.faq-section .accordion-item.faq-item {
    margin-bottom: 20px;
    border-radius: 8px !important;
    overflow: hidden !important;
    will-change: transform;
    transform: translateZ(0);
    backface-visibility: hidden;
    transform-origin: center center;
}

section.faq-section .accordion-body.faq-body {
    font-size: 16px;
    color: #878C91;
    font-weight: 600;
    border: none !important;
    padding: 0px 20px 20px 20px;
}

.accordion-button::after {
    background-image: url("/images/plus.png") !important;
}

.accordion-button:not(.collapsed)::after {
    background-image: url("/images/minus.png") !important;
}

@media (min-width: 1100px) and (max-width: 1250px) {}
@media (min-width: 992px) and (max-width: 1100px) {}
@media (min-width: 767px) and (max-width: 992px) {
    section.faq-section button.accordion-button.faq-btn {
        font-size: 16px;
    }
    
    section.faq-section .accordion-body.faq-body {
        font-size: 14px;
    }
    
    section.faq-section {
        padding: 30px 0px;
    }   
}
@media (min-width: 575px) and (max-width: 767px) {}
@media (max-width: 767px) {
    section.faq-section:before {
        height: 100px;
        width: 50px;
    }
    
    section.faq-section {
        padding: 30px 0px;
    }
    
    section.faq-section button.accordion-button.faq-btn {
        font-size: 16px;
    }
    
    section.faq-section .accordion-body.faq-body {
        font-size: 12px;
    }
}

/*Follow Section CSS*/

section.follow-section {
    position: relative;
    padding: 60px 0px;
}
section.follow-section .follow-div {
    position: relative;
    height: 300px;
    margin: 5px;
    overflow: hidden;
}
section.follow-section .follow-div img {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    margin: auto;
    height: 100%;
    width: 100%;
    object-fit: cover;
    display: block;
}
section.follow-section .follow-div:before {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    margin: auto;
    height: 0;
    width: 0;
    content: "";
    background: #f2faffa6;
    z-index: 1;
    opacity: 0;
     transition:0.5s;
}
section.follow-section .follow-div:after {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    margin: auto;
    height: 25px;
    width: 25px;
    content: "";
    z-index: 2;
    background-image: url("/images/follow-icon.png") !important;
    background-repeat: no-repeat !important;
    background-size: 100% 100% !important;
    opacity: 0;
     transition:0.5s;
}
.follow-div:hover.follow-div:before {
    opacity:1;
    height:100%;
    width:100%;
    transition:0.5s;
}
.follow-div:hover.follow-div:after{
    opacity:1;
    transition:0.5s;
}
section.follow-section:before {
    position: absolute;
    content: "";
    right: 0;
    left: auto;
    top: -20px;
    bottom: auto;
    margin: auto;
    height: 300px;
    width: 200px;
    background-image: url("/images/about-before.png");
    background-repeat: no-repeat !important;
    background-size: 100% 100% !important;
    z-index: -1;
}
@media (min-width: 1100px) and (max-width: 1250px) {}
@media (min-width: 992px) and (max-width: 1100px) {}
@media (min-width: 767px) and (max-width: 992px) {
    section.follow-section {
        padding: 30px 0px;
    }
    
    section.follow-section .follow-div {
        height: 200px;
    }
}
@media (min-width: 575px) and (max-width: 767px) {}
@media (max-width: 767px) {
    section.follow-section {
        padding: 30px 0px;
    }
    
    section.follow-section:before {
        height: 100px;
        width: 75px;
    }
    
    section.follow-section .follow-div {
        height: 150px;
        margin: 5px;
    }
}

/*CTA Section CSS*/

section.cta-section {
    position: relative;
    padding: 60px 0px;
}

section.cta-section .row {
    background-repeat: no-repeat !important;
    background-size: 100% 100%;
    padding: 70px 50px;
    height: 470px;
}
section.cta-section .row .cta-content h2 {
    font-size: 60px;
    color: var(--sec-color);
    font-weight: 400;
    margin-bottom: 20px;
}

section.cta-section .row .cta-mainicons-div {
    display: flex;
    align-items: center;
    justify-content: center;
}
section.cta-section .row .all-cta-button-div {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

section.cta-section .row .cta-mainicons-div .cta-icons-img {
    max-width: 30%;
}

section.cta-section .row .cta-mainicons-div .cta-icons-cont {
    max-width: 90%;
    padding-left: 10px;
}

section.cta-section .row .cta-mainicons-div .cta-icons-cont p {
    margin: 0;
    font-size: 14px;
    color: #2F2F2F;
    font-weight: 400;
}

section.cta-section .row .cta-mainicons-div .cta-icons-cont p.icon-data {
    font-size: 16px;
    font-weight: 600;
}



@keyframes popDrop {
    0% {
        transform: translateY(0) scale(1);
    }
    40% {
        transform: translateY(-12px) scale(1.08);
    }
    70% {
        transform: translateY(6px) scale(0.98);
    }
    100% {
        transform: translateY(0) scale(1);
    }
}

@media (min-width: 1100px) and (max-width: 1250px) {}
@media (min-width: 992px) and (max-width: 1100px) {}
@media (min-width: 767px) and (max-width: 992px) {
    section.cta-section {
        padding: 30px 0px;
    }
    section.cta-section .row {
        padding: 30px;
        height: auto;
    }
    section.cta-section .row .cta-content h2 {
        font-size: 40px;
    }
    section.cta-section .row .cta-content p {
        font-size: 14px;
    }
    section.cta-section .row .cta-mainicons-div .cta-icons-cont p.icon-data {
        font-size: 12px;
    }
    section.cta-section .row .cta-mainicons-div .cta-icons-cont p {
        font-size: 12px;
    }
    section.cta-section .row .all-cta-button-div {
        display: block;
    }
    section.cta-section .row .cta-mainicons-div {
        justify-content: left;
        margin-bottom: 10px;
    }
}
@media (min-width: 575px) and (max-width: 767px) {
    section.cta-section {
        padding-bottom: 20px;
    }
}
@media (max-width: 767px) {
    section.cta-section .row {
        padding: 30px 0px;
        height: auto;
        background-position: center center !important;
        background-size: cover !important;
    }
    
    section.cta-section .row .cta-content h2 {
        font-size: 30px;
    }
    
    section.cta-section .row .cta-content p {
        font-size: 12px;
    }
    
    section.cta-section .row .cta-mainicons-div .cta-icons-cont p.icon-data {
        font-size: 12px;
    }
    
    section.cta-section .row .all-cta-button-div {
        display: block;
    }
    
    section.cta-section .row .cta-mainicons-div {
        justify-content: left;
        margin-bottom: 10px;
    }
    
    section.cta-section {
        padding: 0px;
    }
}

@media (min-width:993px) and (max-width: 1200px){
    section.cta-section .row .cta-mainicons-div .cta-icons-cont p.icon-data {
        font-size: 14px;
    }
}


/*Animations CSS*/

@keyframes bannerHeadingReveal {
    0% {
        opacity: 0;
        transform: translateY(30px);
        filter: blur(8px);
    }

    15% {
        opacity: 1;
        transform: translateY(0);
        filter: blur(0);
    }

    85% {
        opacity: 1;
        transform: translateY(0);
        filter: blur(0);
    }

    100% {
        opacity: 0;
        transform: translateY(30px);
        filter: blur(8px);
    }
}


@keyframes bannerTextReveal {
    0% {
        opacity: 0;
        clip-path: inset(0 100% 0 0);
    }

    25% {
        opacity: 1;
        clip-path: inset(0 0 0 0);
    }

    75% {
        opacity: 1;
        clip-path: inset(0 0 0 0);
    }

    100% {
        opacity: 0;
        clip-path: inset(0 0 0 100%);
    }
}

/*Btn-hover CSS*/

.btn-hover-effect {
    position: relative;
    overflow: hidden;
    z-index: 1;
    transform: translateZ(0);
    will-change: transform, box-shadow, background, color;
    backface-visibility: hidden;
    transition: all .45s cubic-bezier(.19,1,.22,1) !important;
}

.btn-hover-effect::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(255,255,255,.15);
    transform: translateX(-110%) skewX(-20deg);
    transition: transform .7s cubic-bezier(.19,1,.22,1);
    z-index: -1;
}

.btn-hover-effect:hover {
    transform: translateY(-5px) scale(1.03);
}

.btn-hover-effect:hover::before {
    transform: translateX(120%) skewX(-20deg);
}

.btn-hover-effect:active {
    transform: translateY(-2px) scale(.98);
}
