@font-face {
  font-family: "exo";
  font-weight: 300;
  src: url(../fonts/exo/Exo-Light.ttf);
}
@font-face {
  font-family: "exo";
  font-weight: 400;
  src: url(../fonts/exo/Exo-Regular.ttf);
}
@font-face {
  font-family: "exo";
  font-weight: 500;
  src: url(../fonts/exo/Exo-Medium.ttf);
}
@font-face {
  font-family: "exo";
  font-weight: 600;
  src: url(../fonts/exo/Exo-SemiBold.ttf);
}
@font-face {
  font-family: "exo";
  font-weight: 700;
  src: url(../fonts/exo/Exo-Bold.ttf);
}

@font-face {
  font-family: "satoshi";
  src: url(../fonts/satoshi/satoshi.ttf);
}

@font-face {
  font-family: "sora";
  font-weight: 600;
  src: url(../fonts/Sora/Sora-SemiBold.ttf);
}

* {
  font-family: exo !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: #232426;
  --txt-color: #15171A;
  --btn-color: #098BDE;
  --sec-color: #09218F;
  --linear-color: linear-gradient(180deg, #0C1242 0%, #00052A 100%);
}
ul {
  padding: 0px;
  margin: 0px;
}
li {
  list-style: none !important;
}
.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);
}
@media (max-width: 992px) {
  .my_contact_us {
    position: fixed;
    right: 12px;
  }
  .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-package::-webkit-scrollbar-thumb,*/
/*.scrollbar-package::-webkit-scrollbar-track,*/
/*.scrollbar::-webkit-scrollbar-thumb,*/
/*.scrollbar::-webkit-scrollbar-track {*/
/*	-webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, .3);*/
/*	border-radius: 0px;*/
/*}*/
/*.scrollbar::-webkit-scrollbar-track {*/
/*	background-color: #f5f5f5*/
/*}*/
/*.scrollbar::-webkit-scrollbar {*/
/*	width: 12px;*/
/*	background-color: #f5f5f5*/
/*}*/
/*.scrollbar-package::-webkit-scrollbar-track {*/
/*	background-color: #f5f5f5*/
/*}*/
/*.scrollbar-package::-webkit-scrollbar {*/
/*	width: 10px;*/
/*	background-color: #f5f5f5;*/
/*	padding: 0 0 0 20px;*/
/*}*/
/*.scrollbar-package::-webkit-scrollbar-thumb {*/
/*	background-color: var(--btn-color);*/
/*}*/

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

/*******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-color: var(--h-color);
}
#button-top::after {
    content: '';
    top: 5px;
    left: 0;
    right: 0;
    bottom: 0;
    width: 12px;
    height: 12px;
    margin: auto;
    position: absolute;
    border-radius: 3px;
    transform: rotate(-46deg);
    border-top: 3px solid #fff;
    border-right: 3px solid #fff;
}
#button-top.show {
    opacity: 1;
    right: 12px;
    bottom: 10px;
    cursor: pointer;
    visibility: visible;
    animation: bounce 3s infinite;
}
#button-top:hover::after {
    filter: drop-shadow(2px 4px 6px black);
}
#button-top:hover {
    cursor: pointer;
    background: var(--btn-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: 190px !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;
  height: 20px !important;
  width: 20px !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: #ffffff !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*******/

/*******Inner Page Baner Text Crum Css*******/
.innerbanner.all-inner {
  position: relative;
}
.banner-innercaption {
  position: absolute;
  top: 50px;
  bottom: 0;
  left: 0;
  margin: auto;
  display: flex;
  align-items: center;
  right: 0;
  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(--color2);
  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;
  }
}
/*******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-box-btn.search-box-outer {
  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(--h-color); */
  margin-right: 30px;
}
.search-box-btn.search-box-outer .s-img {
    max-width: 20px;
    max-height: 20px;
}
.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: 500;
  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(--h-color);
  font-size: 16px;
  font-weight: 700;
  text-transform: capitalize;
  display: inline-block;
  line-height: normal;
  font-family: 'exo' !important;
}
.section-heading .sub-heading .heading-s:before {
    position: absolute;
    top: auto;
    bottom: -3px;
    left: 0;
    right: 0;
    margin: auto;
    height: 3px;
    width: 100%;
    background: var(--btn-color);
    content:"";
}
.section-heading .defalt-heading {
  margin-bottom: 30px;
}
.section-heading .defalt-heading .heading-h {
  text-transform: capitalize;
  color: var(--h-color);
  font-size: 38px;
  font-weight: 700;
  line-height: 1.2;
  margin: 12px 0px;
}
.section-heading .defalt-heading .span-h {
  font-weight: 700;
}
.section-heading .defalt-p ul li {font-weight: 600;font-size: 16px;}
.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: 10px 30px;
  color: #fff;
  background: var(--btn-color);
  font-size: 16px;
  font-weight: 500;
  line-height: normal;
  text-transform: capitalize;
  transition: 0.3s;
  border-radius: 0px;
  display: inline-flex;
  align-items: center;
}
.all-btn .all-btn-tag: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;
  background: var(--btn-color);
  color: #ffffff;
}
.all-btn .all-btn-tag .btn-span {
  height: 30px;
  width: 30px;
  margin-left: 10px;
  border-radius: 100%;
  position: relative;
  z-index: 1;
  transition: 0.3s;
}
.all-btn .all-btn-tag:hover .btn-span {
  transition: 0.3s;
  background: var(--h-color);
}
.all-btn .all-btn-tag .btn-span img {
  position: absolute;
  inset: 0;
  margin: auto;
}
@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: 30px;
  }
  .section-heading .defalt-heading .heading-h {
    font-size: 24px !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 20px;
  }
  .all-btn .all-btn-tag .btn-span {
    height: 20px;
    width: 20px;
  }
  .all-btn .all-btn-tag .btn-span img {
    max-height: 12px;
    max-width: 12px;
  }
}

@media (min-width: 767px) and (max-width: 992px) {
  .section-heading .defalt-heading {
    margin-bottom: 20px !important;
  }
  .section-heading .defalt-heading .heading-h {
    font-size: 25px !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;
  }
  .all-btn .all-btn-tag .btn-span {
    width: 25px;
    height: 25px;
  }
  .all-btn .all-btn-tag .btn-span img {
    max-height: 11px;
    max-width: 12px;
  }
}

@media (min-width: 993px) and (max-width: 1024px) {
    
      .all-btn .all-btn-tag{
          font-size:12px;
          padding:10px 20px;
      }
}

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

/*******Header Css*******/
.main-header {
    z-index: 2;
    padding: 0px 0px 0px 0px;
    position: absolute;
    top: 50px;
    left: 0;
    bottom: auto;
    right: 0;
    margin: auto;
}
.navbar.my-navbar {
    justify-content: center!important;
}
.my-navbar .mobile-logo {
    display: none;
}
.main-header .nav-item {
    margin: 0px 10px;
    padding: 0px 0px;
    position: relative;
}
.main-header .nav-item .nav-link {
    color: #fff;
    font-size: 13px;
    font-weight: 500;
    position: relative;
    line-height: normal;
    padding: 10px 0px 5px;
    text-transform: capitalize;
    border-bottom: 1px solid transparent;
}
.main-header .active.nav-item .nav-link {
    font-weight: 700;
    color: var(--btn-color) !important;
    border-color: var(--btn-color);
}
.main-header .nav-item .nav-link:hover {
    transition: 0.3s ease-in;
    color: var(--btn-color) !important;
    border-bottom: 1px solid var(--btn-color);
}
.main-header .nav-item .nav-link.show {
    transition: 0.3s ease-in;
    color: var(--btn-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;
    overflow-x: hidden;
}
.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: end;
  align-items: center;
}
.h-social .h-social-list {
  display: flex;
  justify-content: center;
  align-items: center;
}
.h-social .h-social-list .h-social-item .h-social-link {
  margin: 0px 5px;
  max-width: 25px;
  max-height: 25px;
  width: 25px;
  height: 25px;
  display: inline-block;
  border-radius: 100%;
  background: var(--color1);
  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: 15px;
  max-height: 15px;
}
.h-contact {
    margin: 0px 20px;
}
.h-contact .h-contact-link {
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.3s;
}
.h-contact .h-contact-link .h-contact-icon {
  height: 25px;
  width: 25px;
  margin-right: 6px;
  margin-left: 0px;
  align-content: end;
  text-align: center;
}
.h-contact .h-contact-link .h-contact-icon .h-img {
    max-width: 18px;
    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 {
  margin: 0;
  font-weight: 600;
  text-align: left;
  font-size: 14px;
  color: var(--color2);
  transition: 0.3s;
  font-family: Sora !important;
}
.h-contact .h-contact-link:hover .h-contact-numb .h-num {
  transition: 0.3s;
  color: var(--btn-color);
}

.my-navbar .navbar-collapse .nav-item .dropdown-menu.my-abt-dropdown {
    height: auto;
    overflow: hidden;
}


/*Header Top Information CSS*/

section.top-header-section {
    position: relative;
    padding: 5px 0px;
    background-color: var(--sec-color);
}

.top-header-section .top-header-information {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: left;
}

.my-header-containerdiv {
    position: relative;
}

.my-header-containerdiv:before {
        position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: auto;
    content: "";
    height: 100%;
    width: 10%;
    background: var(--btn-color);
}

@media (max-width: 767px) {
    
    .my-header-containerdiv:before{
        display:none;
    }
}

@media (max-width: 992px) {
    .main-header {
        top: 0;
        left: 0;
        width: 100%;
        height: 80px;
        padding: 5px 0px;
        background: var(--color1);
        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;
        color: #000;
    }
    .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) {
    .my-header-containerdiv:before{
        display:none;
    }
}

@media (min-width: 992px) and (max-width: 1024px) {
    
    .my-header-containerdiv:before{
        width:100px;
    }
    .header-logo .logo img {
        max-width: 70%;
        text-align: right;
        margin: 0 0 0 auto;
        float: right;
    }
    .h-contact .h-contact-link .h-contact-numb .h-num{
        font-size:12px;
    }
}

@media (min-width: 1100px) and (max-width: 1200px) {
    
     .my-header-containerdiv:before{
        width:162px;
    }
}

@media (min-width: 1200px) and (max-width: 1450px) {
    
    .my-header-containerdiv:before{
        width:110px;
    }
    
    .header-logo {
        max-width: 70%;
        float: right;
    }
}

@media (min-width: 1451px) and (max-width: 1600px) { 
     .my-header-containerdiv:before{
        width:200px;
    }
}

@media (min-width: 1601px) and (max-width: 1720px) { 
     .my-header-containerdiv:before{
        width:255px;
    }
}

@media (min-width: 1721px) and (max-width: 1920px) { 
     .my-header-containerdiv:before{
        width:360px;
    }
    
}

/*******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% !important;
  background-position: center center !important;
}

.banner-section .bannermain {
  padding: 0px;
  width: 100%;
  position: relative;
}
.banner-slider .owl-item .item {
  position: relative;
  margin: auto;
}
.banner_txt .banner-img {
  position: relative;
  z-index: 1;
}

.banner_txt .banner-img .banner-img-tag {
  /* position: absolute; */
  /* inset: 0; */
  height: 100%;
  width: 100% !important;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  object-fit: contain;
}
.banner_txt .caption2 {
  position: relative;
  z-index: 3;
  top: 0%;
  text-align: left;
  margin-left: 0px;
  /* margin-top: 20px; */
}
.banner_txt .banner-text1 {
  color: #ffffff;
  font-size: 20px;
  font-weight: 400;
  position: relative;
  text-transform: uppercase;
  letter-spacing: 6px;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.banner_txt .banner-text2 {
  font-size: 55px;
  font-weight: 700;
  line-height: 50px;
  position: relative;
  text-transform: uppercase;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  background: linear-gradient(
        to bottom,
        #ffffff 0%,
        #ffffff 55%,
        #0479FF 200%
    );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-family: Satoshi !important;
  max-width: 90%;
}
.banner_txt .banner-text3 {
  color: #fff;
  font-size: 20px;
  font-weight: 400;
  line-height: normal;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.banner_txt .btn-bnnr {
  display: inline-block;
  position: relative;
  margin: 0px 10px 0px 0px;
}
.banner_txt .btn-bnnr .banner-btn {
  padding: 10px;
  color: #fff;
  background: var(--btn-color);
  font-size: 16px;
  font-weight: 400;
  line-height: normal;
  text-transform: capitalize;
  transition: 0.3s;
  border-radius: 0px;
  display: flex;
  align-items: center;
}
.banner_txt .btn-bnnr .banner-btn .btn-span {
  height: 30px;
  width: 30px;
  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: #ffffff !important;
  color: var(--btn-color);
}
.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: inline-block;
    position: absolute;
    /* right: 0; */
    bottom: 28%;
    left: -23px;
    /* text-align: center; */
    /* width: 100%; */
    /* background-color: var(--btn-color); */
}

.banner-slider .owl-dots .owl-dot span {
  display: block;
  padding: 5px;
  height: 11px;
  /*background: #fff;*/
  width: 11px;
  border-radius: 0px;
  position: relative;
  /* border: 1px solid #fff; */
}
.banner-slider .owl-dots .owl-dot {
  border-radius: 0px;
  border: 0px solid #ffffff;
  margin: 10px;
  padding: 0px;
  display: inline;
}
.banner-slider .owl-dots .owl-dot.active span:before {
  /* border: 0px solid #ffffff; */
  background: var(--btn-color) !important;
  font-weight: 600 !important;
}
.banner-slider .owl-dots .owl-dot.active span {
  background: var(--btn-color);
  border: 1px solid #fff;
  transform: scale(1.07);
}

.banner-slider .owl-dots .owl-dot:first-child span:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 0px;
    margin: auto;
    background: #fff;
    /* font-weight: 400; */
    height: 10px;
    width: 10px;
}

.banner-slider .owl-dots .owl-dot:nth-child(2) span:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    background: #fff;
    border-radius: 0px;
    height: 10px;
    width: 10px;
}

.banner-slider .owl-dots .owl-dot:nth-child(3) span:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    background: #fff;
    border-radius: 0px;
    height: 10px;
    width: 10px;
}

.containerss.banner_txt {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    margin: auto;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}
.banner-section:before {
    position: absolute;
    bottom: 0;
    left: 0;
    top: auto;
    right: auto;
    background: #0077FF;
    width: 200px;
    content: "";
    height: 100px;
}
.banner-section:after {
    position: absolute;
    bottom: 0;
    left: 20px;
    top: 0;
    right: auto;
    background: #0077ff85;
    width: 73px;
    content: "";
    height: 100%;
}
.banners-buttons {
    display: flex;
    align-items: center;
}

.banner_txt .btn-bnnr.banner-btn2 a{
    background: transparent !important;
    border:1px solid #fff;
}

.banner-slide-number:before {
    position: absolute;
    top: auto;
    left: 0;
    bottom: -65px;
    right: 0;
    margin: auto;
    height: 70px;
    width: 2px;
    background: #ffffff8c;
    content: "";
    z-index: -1;
}

.banner-slide-number:after {
    position: absolute;
    top: -82px;
    left: 0;
    bottom: auto;
    right: 0;
    margin: auto;
    height: 90px;
    width: 2px;
    background: #ffffff8c;
    content: "";
    z-index: -1;
}

.banner-slide-number {
    position: absolute;
    left: -33px;
    top: 30%;
    transform: translateY(-50%);
    font-size: 40px;
    font-weight: 700;
    color: #ffffff;
    opacity: 0.8;
    z-index: 9;
    pointer-events: none;
}

.banner-slide-number span {
    display: inline-block;
    transition: all 0.4s ease;
}

/* Smooth change animation */
.banner-slide-number span.animate {
    opacity: 0;
    transform: translateY(20px);
}


@media (max-width: 767px) {
  .banner-section {
    padding-top: 0;
  }
  .banner-slider .owl-item .item:before {
    height: 0;
    width: 0;
    opacity: 0;
  }
  .banner_txt .caption2 {
    position: relative;
    /* top: 60px; */
    left: 10px;
    /* right: 0; */
    /* bottom: 0; */
    /* margin: auto; */
    /* width: 100%; */
    /* height: 100%; */
    /* padding: 10px; */
    /* align-content: center; */
    /* text-align: center; */
    margin-left: 0px;
  }
  .banner_txt .banner-text1 {
    font-size: 16px;
    letter-spacing: unset;
  }
  .banner_txt .banner-text2 {
    font-size: 30px;
    color: var(--btn-color);
    line-height: 30px;
  }
  .banner_txt .banner-text3 {
    font-size: 13px;
  }
  .banner_txt .btn-bnnr .banner-btn {
    padding: 6px 15px;
    font-size: 12px;
  }
  .banner_txt .btn-bnnr .banner-btn .btn-span {
    height: 20px;
    width: 20px;
  }
  .banner_txt .btn-bnnr .banner-btn .btn-span .btn-icon {
    height: 10px;
  }
  .banner-section:after{
      display:none !important;
  }
   .banner-section:before{
       display:none !important;
   }
   .banner-slide-number{
       display:none;
   }
}

@media (min-width: 767px) and (max-width: 992px) {
  .banner-section {
    padding-top: 0;
  }
  .row.banner-capt-row {
    align-items: center;
    justify-content: end;
  }
  .banner_txt .caption2 {
    margin-left: 0;
    margin-top: 0;
    max-width: 95%;
  }
  .banner_txt .banner-text1 {
    font-size: 15px;
    letter-spacing: 2px;
  }
  .banner_txt .banner-text2 {
    font-size: 30px;
    font-weight: 700;
    -webkit-line-clamp: 2;
    line-height: 30px;
  }
  .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: 25px;
    width: 25px;
  }
  .banner_txt .btn-bnnr .banner-btn .btn-span .btn-icon {
    max-width: 15px;
    max-height: 10px;
  }
  
    .banner-section:before {
        width: 380px;
    }
    .banner-slider .owl-dots {
        left: 23px;
        bottom: -5%;
    }
    
    .banner-slide-number{
        left:8px;
    }

}

@media (min-width: 993px) and (max-width: 1024px) {
    
     .main-header .nav-item .nav-link {
        font-size: 10px !important;
    }
    
    .banner_txt .banner-text2 {
        font-size: 50px;
    }
    
    .banner_txt .btn-bnnr .banner-btn {
        font-size: 12px;
    }
    
    .banner-slide-number {
        left: 5px;
    }
}

@media (min-width: 1025px) and (max-width: 1100px) {
    
    .main-header .nav-item .nav-link {
        font-size: 13px !important;
    }
     
}

@media (min-width: 1101px) and (max-width: 1250px) {
    
    .main-header .nav-item .nav-link {
        font-size: 10px !important;
    }
    .banner_txt .banner-text2{
        max-width: 100%;
        font-size: 56px;
    }
}

@media (min-width: 993px) and (max-width: 1024px) {
    
    .banner-slider .owl-dots {
        left: 20px;
    }
}

@media (min-width: 1100px) and (max-width: 1200px) {
    
   .banner-slider .owl-dots{
       left: -47px;
   }
   
   .banner-slide-number {
        left: -62px;
    }
}

@media (min-width: 1300px) and (max-width: 1450px) {
    
    .banner-slider .owl-dots {
        left: 3px;
    }
    
    .banner-slide-number {
        left: -13px;
    }
    
    .banner_txt .banner-text2 {
        font-size: 65px;
    }

}

@media (min-width: 1451px) and (max-width: 1600px) { 
    
   .banner-slider .owl-dots {
        left: -84px !important;
    }
    
    .banner-slide-number {
        left: -99px !important;
        top: 43%;
    }
    
    .banner_txt .banner-text2 {
        font-size: 70px;
        line-height:59px;
    }

}

@media (min-width: 1601px) and (max-width: 1720px) { 
    
   .banner-slider .owl-dots {
        left: -135px !important;
    }
    
    .banner-slide-number {
        left: -150px !important;
        top: 43%;
    }
    
    .banner_txt .banner-text2 {
        font-size: 70px;
        line-height:59px;
    }

}

@media (min-width: 1707px) and (max-width: 1920px) { 
    
    .banner-slider .owl-dots {
        left: -249px;
    }
    
    .banner-slide-number {
        left: -258px;
    }

}
/*******Banner Css End*******/

/*******Category Css*******/
.category-section {
  padding: 0px 0 0px;
  position: absolute;
  bottom: -35px;
  left: 60px;
  right: auto;
  height: 45%;
  align-content: center;
}
.category-all-banner {
  position: relative;
  z-index: 9;
}
.category-section .defalt-heading {
  margin-bottom: 20px;
}
.category-section .category-main-div .all-category-wrapper {
  margin: 0 5px !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: 80px;
  width: 80px;
  margin: 0px 80px 0px 0px;
  border-radius: 10px;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.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: var(--h-color);
  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;
}

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

@media (min-width: 767px) and (max-width: 992px) {
    
    .category-section .all-category-wrapper .single-category-wrapper .cat-image {
        height: 90px;
        width: 95%;
        margin: 0px 0px 0px 0px;
    }
}

@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;
        left: 0;
        bottom: 0;
    }
}

@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: 16px;
        margin-top: 10px;
    }
  
}

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

/*******About Css*******/

.about-section {
  position: relative;
  padding: 120px 0px;
}
.about-ccontent.section-heading .defalt-heading {
  text-align: left;
  margin-bottom: 10px !important;
}
.about-ccontent.section-heading .txt-p,  .about-ccontent.section-heading .defalt-p p {
  display: -webkit-box;
  -webkit-line-clamp: 10;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 10px;
  line-height: 30px;
  color: #15171aa8;
}

.about-section:after {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: auto;
    margin: auto;
    height: 73%;
    width: 35%;
    content: "";
    background-color:var(--sec-color) !important;
    z-index: -2;
}
.about-ccontent.section-heading {
    padding: 50px 80px 50px 130px;
}

.about-extra-before {
    position: absolute;
    top: 0;
    left: 0;
    right: auto;
    bottom: 0;
    margin: auto;
    height: 100%;
    width: 200px;
    z-index: 1;
}

.about-ccontent.section-heading:before {
    position: absolute;
    top: 0;
    right: 45px;
    bottom: 0;
    left: auto;
    content: "";
    background: #c5c5c594;
    height: 100%;
    width: 2px;
    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;
        line-height: 18px;
      }
      .about-ccontent.section-heading .about-btn.all-btn {
        text-align: center;
        margin-bottom: 20px;
      }
      .about-image {
        max-width: 250px;
        margin: auto;
      }
      .about-section:before{
          display:none;
      }
      .about-section:after{
          display:none;
      }

    .about-ccontent.section-heading {
        padding: 10px;
    }
    .section-heading .defalt-p ul li {
        font-size: 12px;
    }
    .about-ccontent.section-heading:before{
        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-ccontent.section-heading {
        padding: 10px;
    }
    
    .section-heading .defalt-p ul li {
        font-size: 13px;
    }
    
}

@media (min-width: 993px) and (max-width: 1024px) {
     
     .about-ccontent.section-heading {
        padding: 50px 80px 50px 120px;
    }
    
    .about-extra-before {
        width: 150px;
    }
    
    .section-heading .defalt-p ul li {
        font-size: 14px;
    }
    
    .about-ccontent.section-heading .txt-p, .about-ccontent.section-heading .defalt-p p {
        font-size: 12px;
        line-height: 25px;
    }
}

@media (min-width: 1100px) and (max-width: 1200px) {
    
    .about-ccontent.section-heading{
        padding:50px 80px 50px 80px;
    }
    .about-extra-before {
        width: 180px;
    }
    
}

@media (min-width: 1300px) and (max-width: 1450px) {
    
    .about-ccontent.section-heading {
        padding: 50px 80px 50px 160px;
    }
  
}

@media (min-width: 1451px) and (max-width: 1600px) {
    
    .about-ccontent.section-heading {
        padding: 50px 80px 50px 75px;
    }
  
}


@media (min-width: 1601px) and (max-width: 1920px) {
    
    .about-ccontent.section-heading {
        padding: 50px 80px 50px 20px;
    }
  
}

/*******About Css End*******/

/*******Counter Css*******/

.counter-section {
    /* position: absolute; */
    /* top: auto; */
    /* bottom: -42px; */
    /* left: 0; */
    /* right: 0; */
    /* z-index: 2; */
    position: relative;
    padding: 30px 0px;
}

.counter-section .counter-box {
    padding: 15px 5px;
    position: relative;
    text-align: center;
}

.counter-section .counter-box h2 {
    font-size: 30px;
    font-weight: 600;
    color: #fff;
    margin: 0;
    font-family: 'satoshi' !important;
}

.counter-section .counter-box p {
    font-size: 12px;
    color: #fff;
    margin: 0;
    font-family: 'satoshi' !important;
    font-weight: 400;
}
.counter-section .row {
    /* max-width: 65%; */
    margin: auto;
    background: #091628;
    padding: 10px;
    /* border-radius: 100px; */
}
.counter-section .counter-box:before {
    position: absolute;
    top: 0;
    left: auto;
    bottom: 0;
    right: 0;
    content: "";
    background: #ffffff7a;
    height: 35%;
    width: 2px;
    margin: auto;
}
.counter-section .col-md-3:last-child .counter-box::before {
    display: none;
}

.counter-box.counter-four {
    display: flex;
    align-items: center;
    justify-content: center;
}

.counter-box.counter-four .counter-img img {
    max-width: 75%;
}

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

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

@media (min-width: 993px) and (max-width: 1024px) {
  
    .counter-box.counter-four .counter-img img {
        max-width: 90%;
    }

    .counter-section .counter-box h2 {
        font-size: 20px;
    }
    
    .counter-section .counter-box p {
        font-size: 8px;
    }
}
/*******Counter Css End*******/

/*******Service Css*******/

@media (max-width: 767px) {

}

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

  
}

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

}
/*******Service Css End*******/

/*******Product Css*******/
.product-section {
  position: relative;
  z-index: 1;
  padding: 60px 0px;
  background: var(--linear-color) !important;
}
.product-section .single-product-wrapper {
  overflow: hidden;
  transition: 0.3s;
  position: relative;
  text-align: center;
  padding: 10px 20px;
  transition:0.5;
}
.product-section .single-product-wrapper:hover {
    background: #005CC6;
    transition:0.5;
}

.product-section .single-product-wrapper .pro-img {
  height: 280px;
  width: 100%;
  overflow: hidden;
  z-index: 1;
  position: relative;
  margin: auto;
  /* box-shadow: rgba(17, 17, 26, 0.05) 0px 1px 0px,
    rgba(17, 17, 26, 0.1) 0px 0px 8px; */
  background: #fff;
}
.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: 80%;
  width: 80% !important;
  object-fit: contain;
}
.product-section .single-product-wrapper .pro-content .pro-title {
  text-align: center;
  margin: 10px 0px;
  position: relative;
  z-index: 22;
}
.product-section .single-product-wrapper .pro-content .pro-title .pro-links {
  color: #fff;
  font-size: 20px;
  line-height: 20px;
  font-weight: 600;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  padding: 0px 10px;
  transition: 0.3s;
  text-transform: capitalize;
}
.product-section
  .single-product-wrapper:hover
  .pro-content
  .pro-title
  .pro-links {
  color: var(--color2) !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 .owl-carousel-proo .owl-nav {
  display: block !important;
}
.product-section .owl-carousel-proo .owl-nav .owl-prev {
  height: 30px;
  width: 30px;
  position: absolute;
  top: -70px;
  bottom: auto;
  left: auto;
  margin: auto;
  transform: rotate(180deg);
  font-size: 0;
  background: #fff;
  border-radius: 100px;
  right: 0;
}
.product-section .owl-carousel-proo .owl-nav .owl-next {
  height: 30px;
  width: 30px;
  position: absolute;
  top: -70px;
  bottom: auto;
  right: 50px;
  left:auto;
  margin: auto;
  transform: rotate(180deg);
  font-size: 0;
  background: #fff;
  border-radius: 100px;
}


.product-section .defalt-heading h2 {
    color: #fff !important;
}

.product-section h3.heading-s {
    color:#fff !important;
}

.product-section .single-product-wrapper .about-btn.btn-bnnr a {
    color: #fff;
    padding: 10px 25px;
    border: 1px solid #fff;
    font-size: 14px;
    font-family: 'exo' !important;
    font-weight: 500;
}

.product-section .single-product-wrapper .about-btn.btn-bnnr {
    margin-top: 15px;
}

.product-section .product-heading.section-heading {
    position: relative;
}

.product-section .product-heading.section-heading:before {
    position: absolute;
    top: auto;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    height: 2px;
    width: 100%;
    content: "";
    background: #c5c5c55c;
}

@media (max-width: 767px) {
  .product-section {
    padding: 30px 0px;
  }
  .product-section .container-fluid.g-0 {
    --bs-gutter-x: unset;
  }
  .product-section .single-product-wrapper .pro-img {
    height: 170px;
  }
  .product-section .single-product-wrapper .pro-content .pro-title .pro-links {
    font-size: 16px;
    line-height: normal;
    -webkit-line-clamp: 1;
  }
  .product-section .owl-carousel-proo .owl-nav .owl-prev {
    top: 0;
    bottom: 0;
    right: 0;
    margin: auto;
    height: 30px;
    width: 20px;
    left: auto;
  }
  .product-section .owl-carousel-proo .owl-nav .owl-next {
    top: 0;
    bottom: 0;
    right: auto;
    height: 30px;
    width: 20px;
    left: 0;
  }
  .product-section .owl-carousel-proo .owl-nav .owl-prev:before {
    left: -5px;
  }
  .product-section .owl-carousel-proo .owl-nav .owl-next:after {
    left: -5px;
  }

    section.product-section .all-product-btn.all-btn{
        text-align: center !important;
    }
}

@media (min-width: 575px) and (max-width: 767px) {
  .product-section .single-product-wrapper .pro-img {
    height: 220px;
  }
  .product-section .single-product-wrapper .pro-content .pro-title .pro-links {
    font-size: 14px;
    line-height: 20px;
  }
}

@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: 12px;
  }
  .product-section .owl-carousel-proo .owl-nav .owl-prev, .product-section .owl-carousel-proo .owl-nav .owl-next {
    height: 30px;
    width: 30px;
    border-radius: 100%;
  }
  .product-section .owl-carousel-proo .owl-nav .owl-prev:before, .product-section .owl-carousel-proo .owl-nav .owl-next:after {
    width: 8px;
    height: 8px;
    border-width: 2px;
    border-radius: 2px;
  }
    section.product-section .section-heading .defalt-heading .heading-h {
        text-align: left !important;
    }
}


@media (min-width: 993px) and (max-width: 1024px) {
     
    .product-section .single-product-wrapper .pro-content .pro-title .pro-links {
        font-size: 14px;
    }
    
    .product-section .single-product-wrapper .pro-img {
        height: 220px;
    }
    .product-section .single-product-wrapper .about-btn.btn-bnnr a{
        font-size:12px;
    }
    
}

@media (min-width: 1100px) and (max-width: 1200px) {
    
    .product-section .single-product-wrapper .pro-content .pro-title .pro-links {
        font-size: 16px;
    }
    
     .product-section .single-product-wrapper .pro-img {
        height: 235px;
    }
}

/*******Product Css End*******/

/*******VideoInfo Css*******/
.videoInfo-section {
  position: relative;
  z-index: 1;
  padding: 50px 0px;
}
.videoInfo-section:before {
  content: "";
  position: absolute;
  inset: 0;
  margin: auto;
  width: 100%;
  height: 100%;
  background: var(--h-color);
  z-index: -1;
}
.videoInfo-heading.section-heading .defalt-heading .heading-h {
  color: #fff;
}
.videoInfo-heading.section-heading .defalt-p .txt-p {
  color: #ffffff;
}
.videoInfo-heading.section-heading .all-btn .ll-btn-tag {
  background: var(--btn-color) !important;
}
.video-image {
  position: relative;
  z-index: 1;
  height: 300px;
  width: 100%;
  overflow: hidden;
}
.video-image .video-img-tag {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center center !important;
}

@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: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
}
.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);
}

@media (max-width: 767px) {
  .videoInfo-section {
    padding: 30px 0px;
  }
  .videoInfo-heading.section-heading .defalt-p .txt-p {
    text-align: center;
  }
  .videoInfo-heading.section-heading .defalt-heading {
    margin-bottom: 10px;
  }
  .videoInfo-btn.all-btn {
    text-align: center;
    margin-bottom: 30px;
  }
  .videoInfo-btn.all-btn .all-btn-tag {
    border: 1px solid;
  }
  .video-image {
    height: 200px;
  }
}

@media (min-width: 575px) and (max-width: 767px) {
  .videoInfo-heading.section-heading .defalt-heading .heading-h {
    text-align: left;
  }
  .videoInfo-heading.section-heading .defalt-p .txt-p {
    text-align: left;
  }
  .videoInfo-btn.all-btn {
    text-align: left;
    margin-bottom: 0;
  }
}

@media (min-width: 767px) and (max-width: 992px) {
  .videoInfo-section {
    padding: 30px 0px;
  }
  .videoInfo-heading.section-heading .defalt-heading .heading-h {
    text-align: left;
  }
  .video-image {
    height: 250px;
  }
}
/*******VideoInfo Css End*******/

/*******Testimonial Css*******/

.testimonial-section .testimonial-card {
  background: #fff;
  padding: 30px 15px;
  /* border-radius: 8px; */
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  margin: 0px;
  border-left: 5px solid var(--btn-color);
  position: relative;
}

.testimonial-section .client-info img {
  width: 50px;
  border-radius: 50%;
}

.testimonial-section .client-info {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.testimonial-section .testimonial-card .testimonial-card-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 40px;
}
.testimonial-section .testimonial-card .testimonial-name h6 {
    font-size: 16px;
}
.testimonial-section .testimonial-card .testimonial-card-content .testimonial-name h3 {
    font-size: 16px;
    font-weight: 600;
}

.testimonial-section .testimonial-card .testimonial-card-content .testimonial-name h4 {
    font-size: 14px;
}

.testimonial-section .client-info .client-txt p {
    font-size: 14px;
    margin: 0;
    line-height: 20px;
    color: var(--txt-color);
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.testimonial-section .client-info .client-txt {
    max-width: 70%;
}

.testimonial-section .client-info .client-image {
    max-width: 25%;
}

.testimonial-section .rating-divs span {
    color: #fff;
    background: var(--btn-color);
    padding: 5px 10px;
    border-radius: 100px;
    font-size: 14px;
}

.testimonial-section .rating-divs h3 {
    font-size: 30px;
    padding: 10px 0px;
    font-weight: 600;
}

 .testimonial-section .rating-maindiv {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

 .testimonial-section .rating-maindiv .rating-box {
    background: #098bde5c;
    padding: 10px;
    border-radius: 5px;
}

 .testimonial-section .rating-maindiv .rating-content {
    padding-left: 20px;
    position: relative;
}
.testimonial-section .rating-maindiv .rating-content:before {
    position: absolute;
    left: 10px;
    top: 0;
    bottom: 0;
    right: auto;
    margin: auto;
    height: 80%;
    width: 1px;
    content: "";
    background: #cccccc69;
}

 .testimonial-section .rating-maindiv .rating-content p {
    margin: 0;
    font-size: 16px;
    font-weight: 500;
}

 .testimonial-section .rating-maindiv .rating-box strong {
    color: var(--btn-color);
}

@media (max-width: 767px) {
   
    section.testimonial-section {
        padding: 30px 0px;
    }
    
    section.testimonial-section .rating-divs h3 {
        font-size: 20px;
    }
    
    section.testimonial-section .rating-divs span {
        font-size: 12px;
    }
    
    section.testimonial-section .rating-maindiv .rating-content p {
        font-size: 12px;
    }
    
    .testimonial-section .rating-maindiv .rating-box strong {
        font-size: 12px;
    }
    
    section.testimonial-section .testimonial-card {
        margin-top: 10px;
    }
    
    section.testimonial-section .owl-nav {
        display:none;
    }

}

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

@media (min-width: 767px) and (max-width: 992px) {
    .testimonial-section {
        padding: 30px 0px;
    }
    
    .testimonial-section .rating-divs h3 {
        font-size: 25px;
    }
    
    .testimonial-section .rating-maindiv {
        padding-bottom: 20px;
        justify-content: left;
    }
    
    .testimonial-section .rating-maindiv .rating-content p {
        font-size: 14px;
    }
 
}
@media (min-width: 993px) and (max-width: 1024px) {
 
    .testimonial-section .client-info .client-txt p{
        font-size:12px;
    }
}
/*******Testimonial Css End*******/

/*******Blog Css*******/
.blog-section .blog-heading.section-heading .defalt-heading {
  text-align: left;
  margin-bottom: 0;
}
.blog-section .blog-heading.section-heading .defalt-heading .heading-h {
  text-transform: capitalize !important;
  font-size: 45px;
  background: var(--sec-color);
  padding: 20px;
}
.blog-section .blog-heading.section-heading .defalt-p {
  padding-left: 30px;
}
.blog-section .blog-wrappers {
  position: relative;
  z-index: 1;
  margin: 10px 0px 0px;
}
.blog-section .blog-wrappers .blog-img-div {
  height: 250px;
  overflow: hidden;
  z-index: 1;
  position: relative;
  /* border-radius: 20px; */
}
.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;
  z-index: -1;
}
.blog-section .blog-wrappers .blog-content .blog-title .blog-title-tag {
  margin: 15px 0px 10px;
  color: var(--h-color);
  font-size: 16px;
  font-weight: 700;
  text-transform: capitalize;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: 0.3s;
  line-height: 27px;
  min-height: 55px;
}
.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;
}
.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-section h2.heading-h {
    color: #fff !important;
    margin: 0 !important;
}

section.blog-section .my-blog-row {
    padding: 20px 30px 50px 30px;
    background: #fff;
}

section.blog-section .my-blog-row .row {
    border: 1px solid #ccc;
    padding: 20px 40px;
}
section.blog-section .blog-admin {
    display: flex;
    align-items: center;
    justify-content: left;
    border-bottom: 1px solid #000;
    padding: 10px 0px;
}

section.blog-section .blog-admin .blog-admin-button {
    display: flex;
    align-items: center;
    padding-left: 30px;
}

section.blog-section .blog-admin .blog-admin-button img {
    height: 15px;
    width: 15px;
    margin-right: 10px;
}

section.blog-section .blog-admin .blog-pro-button a {
    font-size: 16px;
    color: var(--color1);
    font-weight: 600;
}

section.blog-section .blog-admin .blog-admin-button h3 {
    font-size: 16px;
    font-weight: 600;
    margin: 0;
}
.blog-section .blog-wrappers .blog-img-div .blog-tag {
    position: absolute;
    bottom: 30px;
    top: auto;
    left: 0px;
    right: auto;
    background-color:var(--btn-color);
}

.blog-section .blog-wrappers .blog-img-div .blog-tag h3 {
    font-size: 20px;
    margin: 0;
    color: #fff;
    padding: 5px;
    font-weight: 600;
}
.blog-section:before {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    top: auto;
    background: #005CC6;
    height: 100px;
    width: 100%;
    content:"";
    margin: auto;
    z-index: -1;
    clip-path: polygon(49% -80%, 0% 100%, 100% 100%);
}
section.blog-section .section-heading .sub-heading .heading-s {
    color: #00C0EA;
}

section.blog-section .blog-pro-button {
    position: relative;
}

section.blog-section .blog-pro-button:before {
    position: absolute;
    left: auto;
    bottom: 0;
    top: 0;
    right: -15px;
    height: 53%;
    width: 2px;
    content: "";
    background: #ccc;
    margin: auto;
}
section.blog-section .section-heading .sub-heading .heading-s:before {
    top: -8px;
    bottom: auto;
    background-color: #fff;
    width: 50%;
}

@media (max-width: 767px) {
  .blog-section {
    padding: 30px 0px;
    background: #010e54;
  }
  .blog-section .blog-heading.section-heading .defalt-heading .heading-h {
    padding: 10px;
  }
  .blog-section .blog-heading.section-heading .defalt-p {
    padding-left: 0;
  }
  .blog-section .blog-wrappers {
    margin: 10px 0 10px;
  }
  .blog-section .blog-wrappers .blog-img-div {
    height: 150px;
    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;
  }
  .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;
  }
  
    section.blog-section .my-blog-row {
        padding: 10px;
    }
    
    section.blog-section .my-blog-row .row {
        border: none;
        padding: 0px;
    }
    
    .blog-section .blog-wrappers .blog-img-div .blog-tag h3 {
        font-size: 14px;
    }
    
    section.blog-section .blog-admin .blog-pro-button a {
        font-size: 14px;
    }
    
    section.blog-section .blog-admin .blog-admin-button h3 {
        font-size: 14px;
    }
    
}

@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: 180px;
    }
    
    section.blog-section .my-blog-row .row {
        padding: 20px;
    }
    
    .blog-section .blog-wrappers .blog-img-div .blog-tag h3 {
        font-size: 14px;
    }
    
    section.blog-section .blog-admin .blog-pro-button a {
        font-size: 12px;
    }
    
    section.blog-section .blog-admin .blog-admin-button h3 {
        font-size: 12px;
    }
    
    section.blog-section .my-blog-row {
        padding: 20px;
    }
    
    .blog-section {
        background: #00264e !important;
}
    
}

@media (min-width: 993px) and (max-width: 1024px) {
   
   .blog-section .blog-wrappers .blog-img-div {
        height: 220px;
    }
    
    section.blog-section .my-blog-row .row {
        padding: 20px;
    }
    
    section.blog-section .my-blog-row {
        padding: 20px;
        position: relative;
        margin: 15px;
    }
    
    .blog-section {
        padding: 30px 0px;
    }
}

@media (min-width: 1100px) and (max-width: 1200px) {
    
    .blog-section {
        padding: 30px 0px;
    }
    
    section.blog-section .my-blog-row .row {
        padding: 20px;
    }
    
    .blog-section .blog-wrappers .blog-img-div {
        height: 230px;
    }
    
    section.blog-section .my-blog-row {
        padding: 20px 30px 40px 30px;
        
    }
}

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

/*******Contact Css*******/
.contact-section {
  /* margin-top: 30px; */
  position: relative;
  z-index: 1;
  background: #95959542;
  padding: 60px 0px;
}
.contact-section .contact-map {
  position: relative;
  z-index: 1;
}
.contact-section .contact-map iframe {
  height: 600px;
  width: 100%;
  border: 0 !important;
}
.contact-section .contact-map .contact-detail-map {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 40px;
  margin: auto;
  background: #fff;
  max-width: 60%;
  width: 100%;
  height: 150px;
  padding: 20px;
  align-content: center;
}
.contact-section .contact-detail-map .contact-map-phone .contact-title {
  color: #000;
  font-weight: 600;
  font-size: 18px;
  line-height: normal;
}
.contact-section .contact-map .contact-detail-map .contact-map-address .map-address-txt {
  font-size: 30px;
  font-weight: 500;
  line-height: normal;
  color: var(--h-color);
}
.contact-section .contact-map .contact-detail-map .contact-map-phone .map-phone-txt {
  font-size: 18px;
  color: var(--h-color);
  line-height: normal;
  font-weight: 400;
}
.home-conatct-form {
  padding: 20px;
  padding-right: 50px;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  background: #fff;
  height: 600px;
}
.home-conatct-form .conatct-heading .heading-h {
  font-size: 35px;
  font-weight: 600;
  line-height: normal;
  margin-bottom: 20px;
  text-transform: capitalize;
  color: var(--h-color);
  font-family: Exo !important;
}
form.home-page-form .form-group .form-control {
  min-height: 45px;
  margin-bottom: 15px;
  border: 1px solid #D9D9D9;
  font-size: 16px;
  line-height: normal;
  resize: none;
  border-radius: 0;
  box-shadow: none;
  outline: none;
}
form.home-page-form .form-group .form-control:focus {
  border-color: var(--btn-color);
}
form.home-page-form .captcha-img {
  margin-bottom: 15px;
}
form.home-page-form .captcha-img img {
  max-width: 100%;
  height: auto;
  width: unset;
  max-height: 33px;
}
form.home-page-form .contact-form-btn .inquiry_form_btn {
  width: 100%;
  font-size: 20px;
  color: #fff;
  font-weight: 600;
  padding: 10px;
  border-radius: 0;
  outline: none;
  box-shadow: none;
  transition: 0.4s;
  background: var(--btn-color);
  text-transform: capitalize;
  border: 1px solid var(--btn-color);
}
form.home-page-form .contact-form-btn .inquiry_form_btn:focus {
  box-shadow: none;
}
form.home-page-form .contact-form-btn .inquiry_form_btn:hover {
  transition: 0.4s;
  color: var(--h-color) !important;
}
form.home-page-form .alert-success,
form.home-page-form .err_msg_1 {
  border-radius: 0;
  text-align: center;
}

.home-conatct-form label span {
    padding-left: 30px;
    font-size: 14px;
    color: #717580;
}

.home-conatct-form label {
    display: flex;
    align-items: center;
}

.home-conatct-form label img {
    margin: 0 !important;
}

.contact-section .contact-txtt {
    padding: 20px;
    background: #fff;
    height: 600px;
}

.contact-section .contact-txtt .home-contact-img {
    position: relative;
    height: 250px;
}

.contact-section .contact-txtt .home-contact-img img {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    margin: auto;
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.contact-section .contact-txtt .contact-txtt-list {
    padding-top: 30px;
    padding-left: 30px;
}

.contact-section .contact-txtt .contact-txtt-list h3 {
    font-size: 30px;
    font-weight: 600;
    padding-bottom: 10px;
}

.contact-section .contact-txtt .contact-txtt-list ul li {
    margin: 3px 0px;
    font-size: 16px;
}


.contact-section .contact-txtt .contact-txtt-list ul li a {
    color: var(--txt);
}

@media (max-width: 767px) {
  .contact-section {
    margin-top: 0;
    overflow: hidden;
    margin-bottom: 20px;
    padding: 30px 0px;
  }
  .contact-section .contact-map iframe {
    height: 300px;
  }
  .contact-section .contact-map .contact-detail-map {
    padding: 10px;
    left: 10px;
    height: 100px;
    max-width: 50%;
  }
  .contact-section .contact-map .contact-detail-map .contact-map-address .map-address-txt {
    font-size: 12px;
    margin-bottom: 5px;
  }
  .contact-section .contact-detail-map .contact-map-phone .contact-title {
    font-size: 12px;
  }
  .contact-section .contact-map .contact-detail-map .contact-map-phone .map-phone-txt {
    font-size: 12px;
  }
  .home-conatct-form {
    padding: 10px;
    height: auto;
  }
  .home-conatct-form .conatct-heading .heading-h {
    font-size: 22px;
    margin-bottom: 15px;
  }
  form.home-page-form .form-group .form-control {
    font-size: 12px;
    min-height: 20px;
  }
  form.home-page-form .contact-form-btn .inquiry_form_btn {
    font-size: 15px;
    align-content: center;
    padding: 0;
    min-height: 40px;
  }
  
  .contact-section .contact-txtt .home-contact-img {
        height: 150px;
    }
    
    .contact-section .contact-txtt .contact-txtt-list {
        padding: 10px 0px;
    }
    
    .contact-section .contact-txtt .contact-txtt-list h3 {
        font-size: 20px;
        padding: 0;
    }
    
    .contact-section .contact-txtt .contact-txtt-list h3 {
        font-size: 16px;
    }
    
    .contact-section .contact-txtt .contact-txtt-list ul li {
        font-size: 14px;
    }
    
    .contact-section .contact-txtt {
        height: auto;
        margin-bottom: 10px;
    }
    
}

@media (min-width: 575px) and (max-width: 767px) {
  .contact-section {
    margin-bottom: 0;
  }
  .contact-section .contact-map iframe {
    height: 350px;
  }
  .home-conatct-form {
    padding-left: 0;
  }
  form.home-page-form .form-group .form-control {
    font-size: 12px;
    min-height: 35px;
    margin-bottom: 10px;
  }
  form.home-page-form .contact-form-btn .inquiry_form_btn {
    font-size: 14px;
    min-height: 35px;
  }
}

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

@media (min-width: 767px) and (max-width: 992px) {
    
    .contact-section {
        padding: 30px 0px;
    }
    
    .home-conatct-form .conatct-heading .heading-h {
        font-size: 25px;
    }
    
    .contact-section .contact-txtt .contact-txtt-list ul li {
        font-size: 14px;
    }
    
    form.home-page-form .contact-form-btn .inquiry_form_btn {
        font-size: 14px;
    }
    
    .contact-section .contact-txtt {
        height: 570px;
    }
    
    .home-conatct-form {
        height: 570px;
    }
}

@media (min-width: 993px) and (max-width: 1024px) {
   
   .contact-section .contact-txtt:before {
        left: -78px;
        height: 38%;
    }
    
    .contact-section .contact-txtt .contact-txtt-list ul li{
        font-size:12px;
    }
    
    .home-conatct-form .conatct-heading .heading-h{
        font-size:30px;
    }
    
    form.home-page-form .contact-form-btn .inquiry_form_btn {
        font-size: 12px;
    }
    
    .home-conatct-form {
        height: 570px;
    }
    
    .contact-section .contact-txtt {
        height: 570px;
    }

}

@media (min-width: 1100px) and (max-width: 1200px) {
    
    .contact-section .contact-txtt:before {
        left: -116px;
        height: 50%;
        width: 35%;
    }
}

@media (min-width: 1300px) and (max-width: 1450px) {
    
    .contact-section .contact-txtt:before {
        left: -114px;
        height: 50%;
    }
}
 
@media (min-width: 1451px) and (max-width: 1920px) { 
    
    .contact-section .contact-txtt:before {
        left: -147px;
        height: 70%;
        width: 32%;
    }
}

/*******Contact Css End*******/

/*******Advantages Css*******/
.advantages-section {
  background: var(--h-color);
  position: relative;
  z-index: 1;
  padding: 40px 0px;
}
.advantages-main-wrapper .advantages-ul {
  display: flex;
  justify-content: center;
}
.advantages-main-wrapper .advantages-ul .advantages-li {
  max-width: 100%;
  width: 100%;
  padding-left: 10px;
  margin-left: 10px;
  padding-top: 5px;
  padding-bottom: 5px;
  position: relative;
  z-index: 1;
  border-left: 1px solid #fff;
}
.advantages-main-wrapper .advantages-ul .advantages-li:first-child {
  border-left: 0;
  padding-left: 0px;
  margin-left: 0px;
}
.advantages-main-wrapper .advantages-ul .advantages-li .advantages-div {
  position: relative;
  z-index: 1;
  transition: 0.4s;
}
.advantages-main-wrapper .advantages-ul .advantages-li .advantages-div:hover {
  transition: 0.4s;
  transform: scale(1.03);
}
.advantages-div .advantages-icon {
  max-width: 30px;
  height: 30px;
  display: inline-block;
  overflow: hidden;
  margin-bottom: 0px;
  transition: 0.4s;
}
.advantages-div .advantages-icon .advantages-icon-tag {
  position: relative;
  z-index: 1;
  width: auto;
}
.advantages-div .advantages-content .advantages-title {
  color: #fff;
  font-size: 20px;
  font-weight: 600;
  line-height: normal;
  margin-bottom: 6px;
  transition: 0.4s;
}
.advantages-div .advantages-content .advantages-text {
  color: #fff;
  font-size: 14px;
  line-height: normal;
  font-weight: 400;
  margin-bottom: 0;
}


@media (max-width: 767px) {
  .advantages-section {
    padding: 30px 0px;
  }
  .advantages-main-wrapper .advantages-ul {
    display: block;
  }
  .advantages-main-wrapper .advantages-ul .advantages-li {
    border-left: 0;
    margin-left: 0;
    padding-left: 0;
    padding-bottom: 10px;
    padding-top: 10px;
    border-bottom: 1px solid #ffffff;
  }
  .advantages-div .advantages-content .advantages-title {
    font-size: 16px;
  }
  .advantages-div .advantages-content .advantages-text {
    font-size: 12px;
  }
}

@media (min-width: 575px) and (max-width: 767px) {
  .advantages-main-wrapper .advantages-ul {
    display: flex;
  }
  .advantages-main-wrapper .advantages-ul .advantages-li {
    border-left: 1px solid #fff;
    margin-left: 5px;
    padding-left: 5px;
    padding-bottom: 0px;
    padding-top: 0px;
    border-bottom: unset;
  }
  .advantages-div .advantages-icon {
    max-width: 20px;
    height: 30px;
  }
  .advantages-div .advantages-content .advantages-title {
    font-size: 10px;
  }
  .advantages-div .advantages-content .advantages-text {
    font-size: 10px;
  }
}

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

@media (min-width: 767px) and (max-width: 992px) {
}
/*******Advantages Css End*******/

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

.footer-section .container.bg {
  padding-bottom: 10px;
}
.footer-p p {
  color: var(--color2);
  font-size: 13px;
  line-height: 22px;
  margin-top: 15px;
  display: -webkit-box;
  -webkit-line-clamp: 9;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-weight: 400;
}
.footer-heading {
  margin-bottom: 30px;
  margin-top: 10px;
}
.footer-section .footer-heading h4 {
  color: var(--color2);
  font-size: 20px;
  font-weight: 700;
  line-height: normal;
  text-transform: capitalize;
}
.footer-widgets li a {
  color: var(--color2);
  font-size: 14px;
  font-weight: 500;
  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;
  filter: invert(1);
}
.footer-widgets li a p {
  display: inline-block;
}
.footer-main-contact .phone p {
  margin: 0;
  color: #fff;
  font-size: 14px;
  transition: 0.3s;
  margin-bottom: 8px;
}
.footer-main-contact li.foot-numb {
  display: flex !important;
  margin-bottom: 30px;
}
.footer-main-contact li.foot-numb span.f-con-icon {
  width: 30px;
  max-width: 20%;
  margin-right: 0px;
}
.footer-main-contact li.foot-numb span {
  max-width: 80%;
}
.footer-main-contact .phone li p:hover {
  transition: 0.3s;
  color: var(--btn-color) !important;
}
.footer-menus ul.footer-menus-list {
  padding: 0;
}
li.foot-numb {
  display: block !important;
}
li.foot-numb a p {
  display: inline-block !important;
}
.footer-widgets li .h-contact-icon {
  margin-right: 15px;
  display: inline-block;
}
.footer-widgets li {
  margin: 0px;
}
ul.footer-blog-list h5 {
  color: #fff;
  font-size: 14px;
}
ul.footer-blog-list {
  max-width: 50%;
  margin: 10px 0px;
}
ul.footer-blog-list li a {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  line-height: 25px;
}
ul.footer-menus-list li {
  margin: 18px 0px !important;
  font-size: 14px;
}
.f-recent-post .f-post h2 {
  color: #fff;
  font-size: 24px;
  font-weight: 700;
  line-height: 34px;
  text-transform: capitalize;
}
.f-recent-post .f-recent {
  display: flex;
  align-items: center;
  margin: 30px 0px;
}
.f-details-wrapper p {
  color: #999;
  font-size: 14px;
  font-weight: 500;
  line-height: 14px;
  text-transform: capitalize;
}
.f-details-wrapper h3 {
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  line-height: 10px;
  margin: 0;
  text-transform: capitalize;
}
.f-image-wrapper {
  margin-right: 20px;
  border-radius: 50%;
  height: 80px;
  width: 80px;
  position: relative;
}
.f-image-wrapper img.img-fluid {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  margin: auto;
}
.footer-botm {
  padding: 15px 0px;
  background: #005CC6;
}
.footer-botm p.asdas {
  margin: 0px;
  color: #fff;
  text-align: center;
  font-size: 14px;
  font-weight: 500;
  line-height: normal;
  text-transform: capitalize;
}
.footer-botm p.asdas a {
  color: #ffffff;
  position: relative;
  font-weight: 700;
  transition: 0.3s;
}
.footer-botm p.asdas a:hover {
  color: var(--h-color);
  transition: 0.3s;
}
.foot-social ul.main-social-list {
  padding: 0;
  list-style: none !important;
  display: flex;
  align-items: center;
  margin-top: 20px;
}
.foot-social ul.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 ul.main-social-list li a {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 100%;
  background: #fff;
}
.foot-social ul.main-social-list li a:hover {
  background: var(--btn-color) !important;
  transition: 0.3s;
}
.foot-social ul.main-social-list li a:hover img.img-fluid {
  transition: 0.3s;
  filter: brightness(0) invert(1);
}
.footer-widgets.footer-column-2 {
  position: relative;
  z-index: 1;
}
.footer-main-contact .phone h3 {
  font-size: 16px;
  color: #00C0EB;
  font-family: Sora !important;
}
.footer-section .l-o-g img {
    max-width: 40%;
}

.footer-section .phone {
    margin-bottom: 10px;
}
@media (max-width: 767px) {
    
    .footer-section {
        background-size: cover !important;
    }

    .footer-botm p.asdas {
        text-align: center !important;
    }
}

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

@media (min-width: 767px) and (max-width: 992px) {
    
    .footer-section .footer-heading h4 {
        font-size: 16px;
    }
    
    .footer-main-contact .phone h3 {
        font-size: 12px;
    }
    
    .footer-main-contact .phone p {
        font-size: 12px;
    }
    
    .footer-widgets li a {
        font-size: 12px;
    }
    
    .footer-botm p.asdas {
        font-size: 12px;
    }
    
    .footer-p p {
        font-size: 12px;
    }
}

@media (min-width: 993px) and (max-width: 1024px) {
    .footer-p p{
        font-size:12px;
    }
    .footer-widgets li a{
        font-size:12px;
    }
    .footer-main-contact .phone p{
        font-size:12px;
    }
}
/*******Footer Css End*******/






/*for gtranslate language css*/
.select-lang .gt_switcher_wrapper {
  position: relative !important;
  float: right;
}
.select-lang .gt_switcher_wrapper .gt_selected {
  background: var(--btn-color);
  background: #ffffff !important;
  border-radius: 10px !important;
  /* padding: 4px 10px; */
}
.select-lang .gt_switcher_wrapper .gt_selected a {
  color: #000 !important;
  /*font-family: Roboto !important;*/
  border: none !important;
  font-size: 16px;
  position: relative;
  font-weight: 600 !important;
  padding: 2px 10px;
  border-radius: 10px 10px 10px 10px !important;
  width: auto !important;
  box-shadow: none !important;
}
.select-lang .gt_switcher_wrapper .gt_selected a:hover {
  background: var(--btn-color);
  /* border-radius: 10px 10px 0px 0px !important; */
}
.select-lang .gt_switcher_wrapper .gt_selected a:before {
  content: "";
  width: 0;
  height: 0;
}
.select-lang .gt_container--hich1m .gt_switcher .gt_selected a:after {
  right: 10px !important;
  /* filter: brightness(15) !important; */
  top: 8px !important;
}

.select-lang .gt_switcher_wrapper .gt_option {
  background: #fff !important;
  position: absolute !important;
  padding: 20px 10px 10px 10px !important;
  width: 170px !important;
  top: 20px;
  border-radius: 0px 0px 20px 20px;
  overflow: hidden;
  border: 0 !IMPORTANT;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 6px -1px, rgba(0, 0, 0, 0.06) 0px 2px 4px -1px;
  height: auto !important;
}
.select-lang .gt_switcher_wrapper .gt_option a {
  color: #000 !important;
  padding: 0px !important;
  margin: 6px 0px !important;
  font-size: 13px;
  border-radius: 0 !important;
  border: none !important;
  box-shadow: none !important;
}
.select-lang .gt_switcher_wrapper .gt_option a:hover {
  background: var(--btn-color) !important;
  transition: 0.3s;
}
/*end for gtranslate language css*/


/*Home Solution CSS*/

 .home-solutions {
  position: relative;
  padding: 60px 0px 30px 0px;
  /* background: #071371; */
  overflow: hidden;
  /* clip-path: polygon(0 0, 100% 0, 95% 100%, 5% 100%); */
  position: relative;
}

.home-solutions__heading h2 {
  font-size: 38px;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.2;
  margin-bottom: 15px;
}

.home-solutions__heading p {
  font-size: 16px;
  color: #fff;
  position: relative;
  font-weight: 500;
}

.home-solutions__card {
  height: 350px;
  padding: 28px 30px;
  /* background: rgba(255,255,255,0.08); */
  border-radius: 8px;
  color: #ffffff;
  transition: all .35s ease;
  margin-top: 30px;
  position: relative;
}

.home-solutions__card:before {
    position: absolute;
    top: 40px;
    left: 10px;
    bottom: auto;
    right: auto;
    margin: auto;
    height: 50%;
    width: 2px;
    background: #ffffff6b;
    content: "";
}

.home-solutions__card--active {
  /* transform: translateY(-10px); */
  /* background: rgba(255,255,255,0.08); */
}

.home-solutions__card:hover {
  background: #0b5ed7;
  transform: translateY(-10px);
}

.home-solutions__icon {
  width: 50px;
  height: 50px;
  margin-bottom: 18px;
  background-color: #fff;
  padding: 10px;
  border-radius: 100px;
}

.home-solutions__icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.home-solutions__card h6 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
  min-height: 44px;
}

.home-solutions__card p {
  font-size: 14px;
  line-height: 1.6;
  color: #e1e6ff;
  margin-bottom: 18px;
}

.home-solutions__btn {
  font-size: 14px;
  font-weight: 600;
  color: #ffffff;
  text-decoration: none;
  display: inline-block;
  /* border-bottom: 1px solid rgba(255,255,255,.4); */
  /* padding-bottom: 3px; */
  transition: all .3s ease;
  background: var(--btn-color);
  padding: 5px 10px;
}

.home-solutions__btn:hover {
  border-color: #ffffff;
}
.home-solutions:before {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    margin: auto;
    height: 100%;
    width: 100%;
    background-color: #071370;
    content: "";
    z-index: -1;
    clip-path: polygon(0 0, 100% 0, 95% 100%, 5% 100%);
}


.home-solutions .home-solution-bgdiv {
    padding: 0px 40px 30px 40px;
}
.home-solutions__heading p:before {
    position: absolute;
    bottom: -7px;
    left: 0;
    top: auto;
    right: auto;
    background: var(--btn-color);
    content:"";
    height: 2px;
    width: 70px;
}

@media (max-width: 767px) {
     .home-solutions__card p {
        font-size: 14px;
    }
    
    .home-solutions__card h6 {
        font-size: 18px;
    }
    
    .home-solutions__card {
        padding: 20px;
        height: 300px;
    }
    .home-solutions {
        padding: 30px 0px;
    }
    
    .home-solutions__heading h2 {
        font-size: 24px;
    }
    
    .home-solutions__heading p {
        font-size: 12px;
    }
    
    .home-solutions .home-solution-bgdiv {
        padding: 10px;
    }
    
    .home-solutions:before {
        clip-path: unset !important;
    }

    .home-solutions:after {
        background-size: cover !important;
    }
    
    .home-solutions__card {
        height: auto;
        padding: 10px;
        margin-top: 10px;
    }
    
    .home-solutions__card:before {
        display: none;
    }
  
}

@media (min-width: 768px) and (max-width: 992px){
    
    .home-solutions__heading h2 {
        font-size: 25px;
    }
    
    .home-solutions__heading p {
        font-size: 14px;
    }
    
    .home-solutions__card h6 {
        font-size: 12px;
    }
    
    .home-solutions .home-solution-bgdiv {
        padding: 10px;
    }
    
    .home-solutions__card {
        padding: 5px 10px;
        height: 300px;
    }
    
    .home-solutions__card p {
        font-size: 12px;
    }
    
    .home-solutions__btn {
        font-size: 12px;
    }
    
    .home-solutions__card:before {
        display: none;
    }
    
    .home-solutions {
        padding: 30px 0px;
    }
}

@media (min-width: 993px) and (max-width: 1024px) {
     
    .home-solutions__card p {
        font-size: 12px;
    }
    
    .home-solutions__card h6 {
        font-size: 14px;
    }
    
    .home-solutions__btn {
        font-size: 12px;
    }
    
    .home-solutions__card{
        height:320px;
    }
    .home-solutions__heading h2{
        font-size: 30px;
    }
    
}

@media (min-width: 1100px) and (max-width: 1200px) {
    
   .home-solutions .home-solution-bgdiv {
        padding: 0px;
    }
    
    .home-solutions__card h6 {
        font-size: 16px;
    }
    
    .home-solutions__card {
        padding: 20px;
        height: 320px;
    }
    
    .home-solutions__card p {
        font-size: 12px;
    }
}

/*Industry Section CSS*/

section.industry-section {
    position: relative;
    padding: 60px 0px 180px 0px;
    border-top: 1px solid #C5C5C5;
}



.industry-img-div {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: auto;
    margin: auto;
    max-width: 300px;
    max-height: 100%;
}

section.industry-section .container-fluid {
    position: relative;
}


.industry-main-div.active .industry-content {
    display: block;
    position: absolute;
    left: 150px;
    bottom: -130px;
    top: auto;
    right: auto;
    margin: auto;
    height: auto;
    background: #fff;
    max-width: 30%;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    border: 10px solid #8c8c8c63;
    padding: 30px;
    z-index: 9;
    height: 280px;
    width: 350px;
}

.industry-main-div .industry-content {
    display: none;
}


.industry-main-div.active .industry-content .industry-txt p {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 5;
    overflow: hidden;
    font-size: 16px;
}

.industry-main-div.active .industry-content .industry-url-main .view-details.btn-bnnr.all-btn a {
    background: var(--btn-color);
    color: #fff;
    padding: 5px 10px;
    font-size: 14px;
}

section.industry-section .industry-img-div img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

section.industry-section ul.category-namess {
    display: flex;
    flex-direction: row;
    justify-content: left;
}

section.industry-section ul.category-namess li {
   
}

section.industry-section ul.category-namess li .industry-title{
     writing-mode: sideways-lr;
     height: 318px;
     text-align: center;
     width: 79px;
     background: #fff;
     margin: 0px 5px 0px 0px;
     align-content: center;
     border: 1px solid #C5C5C5;
}

section.industry-section ul.category-namess li .industry-title a {
    font-size: 16px;
    font-weight: 600;
    color: var(--hcolor);
    font-family: 'exo' !important;
}

section.industry-section .industry-main-div.active .industry-title {
    background: #284670 !important;
    transition:0.5s;
}

section.industry-section .industry-main-div.active .industry-title a{
    color:var(--color2);
     transition:0.5s;
}

.industry-main-div.active .industry-content .industry-titles a {
    font-size: 16px;
    color: var(--h-color);
    font-weight: 600;
    text-transform: capitalize;
    position: relative;
}

.industry-main-div.active .industry-content .industry-titles {
    padding-bottom: 5px;
}

.industry-main-div.active .industry-content .industry-titles a:before {
    position: absolute;
    top: -10px;
    bottom: auto;
    left: 0;
    right: 0;
    background: var(--btn-color);
    height: 3px;
    width: 31%;
    content:"";
}

@media (max-width: 767px) {
    
    section.industry-section:before {
        display: none;
    }
    
    .industry-img-div {
        position: relative; 
        left: 0;
    }
    
    .industry-main-div.active .industry-content {
        display:none;
    }
    
    section.industry-section {
        padding: 30px 0px;
    }
    
    section.industry-section ul.category-namess li .industry-title {
        height: 100%;
        width: 100%;
        writing-mode: unset;
        align-content: unset;
        max-width: 100%;
        max-height: 100%;
    }
    
    section.industry-section ul.category-namess li .industry-title a {
        font-size: 12px;
    }
    
    section.industry-section ul.category-namess {
        flex-direction: column;
    }
    
}

@media (min-width: 768px) and (max-width: 992px) {
    
    section.industry-section ul.category-namess li .industry-title {
        height: 192px;
        width: 53px;
    }
    
    section.industry-section .industry-main-div.active .industry-title a {
        font-size: 11px;
    }
    
    .industry-main-div.active .industry-content {
        bottom: -160px;
        max-width: 70%;
        height: 230px;
        left: 30px;
    }
    
    .industry-main-div.active .industry-content .industry-txt p {
        font-size: 12px;
    }
    
    .industry-main-div.active .industry-content .industry-url-main .view-details.btn-bnnr.all-btn a {
        font-size: 12px;
    }
    
    .industry-img-div {
        height: 100%;
        width: 100%;
        max-width: 20%;
    }
    
    section.industry-section ul.category-namess li .industry-title a {
        font-size: 12px;
        display: -webkit-box;
        -webkit-line-clamp: 1;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }
}

@media (min-width: 993px) and (max-width: 1024px) {
     
     section.industry-section ul.category-namess li .industry-title {
        height: 255px;
        width: 51px;
    }
    
    section.industry-section ul.category-namess li .industry-title a {
        font-size: 12px;
    }
    
    .industry-main-div.active .industry-content .industry-titles a{
         font-size: 14px;
    }
    
    .industry-main-div.active .industry-content .industry-txt p {
        font-size: 12px;
    }
    
    .industry-main-div.active .industry-content {
        height: 250px;
    }
    
    .industry-img-div {
        max-width: 285px;
    }
    
}

@media (min-width: 1100px) and (max-width: 1200px) {
    
    section.industry-section ul.category-namess li .industry-title {
        height: 289px;
        width: 65px;
    }
    
    section.industry-section ul.category-namess li .industry-title a {
        font-size: 14px;
    }
    
    .industry-main-div.active .industry-content .industry-txt p {
        font-size: 14px;
    }
    
    .industry-main-div.active .industry-content {
        height: 270px;
    }
    
}

@media (min-width: 1300px) and (max-width: 1450px) {
    
      section.industry-section ul.category-namess li .industry-title {
        height: 354px;
        width: 97px;
    }

}

@media (min-width: 1451px) and (max-width: 1535px) {
    
      

}

@media (min-width: 1451px) and (max-width: 1920px) {
    
      section.industry-section ul.category-namess li .industry-title {
         height: 474px;
        width: 157px !important;
    }

}

/*Humburger Button*/

.humburger-desktopicon-bg .offcanvas {
    background: var(--btn-color);
}

.humburger-desktopicon-bg .navbar-toggler {
    border: none;
    padding: 0;
    background: transparent;
    box-shadow: none;
}

.humburger-desktopicon-bg .navbar-toggler:focus {
    box-shadow: none;
}

.humburger-desktopicon-bg {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    position: relative;
}

.humburger-desktopicon-bg .my-home-humburger {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    transition: all 0.3s ease;
    left: 20px;
    position: relative;
}

.humburger-desktopicon-bg .my-home-humburger:hover {
    background-color: rgba(123, 82, 185, 0.08);
}

.humburger-desktopicon-bg .humburger-desktopicon img {
    width: 26px;
    height: auto;
    transition: transform 0.3s ease;
}

.humburger-desktopicon-bg .my-home-humburger:hover img {
    transform: scale(1.1);
}

.humburger-desktopicon-bg .offcanvas {
    width: 320px;
    padding: 20px;
    text-align: left;
}

.humburger-desktopicon-bg .offcanvas-header {
    border-bottom: 1px solid #eee;
    padding-bottom: 15px;
}

.humburger-desktopicon-bg .header-logo img {
    max-height: 60px;
}

.humburger-desktopicon-bg .footer-heading h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
}

.humburger-desktopicon-bg .offcanvas-aboutus {
    font-size: 14px;
    line-height: 1.6;
    color: #555;
}

.humburger-desktopicon-bg .offcanvas-btn .btn {
    width: 100%;
    border-radius: 6px;
    padding: 10px;
    font-weight: 500;
    background: #fff;
    color: #000;
}

.humburger-desktopicon-bg .offcanvas-info-div {
    margin-top: 25px;
}

.humburger-desktopicon-bg .offcanvas-info {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
    max-width: 100%;
}

.humburger-desktopicon-bg .offcanvas-img {
    margin-right: 10px;
    position: relative;
    max-width: 10%;
    filter: invert(1);
}

.humburger-desktopicon-bg .offcanvas-img img {
}

.humburger-desktopicon-bg .offcanvas-txt p {
    margin: 0;
    font-size: 14px;
    color: #fff;
}

.humburger-desktopicon-bg .offcanvas-txt a {
    text-decoration: none;
    color: #444;
    transition: color 0.3s ease;
}

.humburger-desktopicon-bg .offcanvas-txt a:hover {
    color: #7b52b9;
}

.offcanvas-body .offcanvas-heading h4 {
    font-weight: 700;
    font-size: 30px;
    color: #fff;
    font-family: Sora !important;
}

.humburger-desktopicon-bg .offcanvas-aboutus p {
    color: #fff;
    line-height: 24px;
    font-size: 14px;
}

.humburger-desktopicon-bg .offcanvas-txt {
    max-width: 90%;
}

.humburger-desktopicon-bg .my-header-containerdiv {
    position: relative;
}



/*Floating Icons CSS*/

.floating-contact {
    position: fixed;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 9999;
}

.floating-contact .float-item {
    position: relative;
    width: 50px;
    height: 50px;
    background: var(--btn-color);
    border-radius: 30px 0 0 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    overflow: visible;
}

.floating-contact .float-item .icon img {
    width: 15px;
}

/* Label */
.floating-contact .float-item .text {
    position: absolute;
    right: 60px; /* Distance from icon */
    background: var(--btn-color);
    color: #fff;
    padding: 8px 15px;
    border-radius: 30px;
    white-space: nowrap;
    opacity: 0;
    transform: translateX(20px);
    transition: all 0.3s ease;
    pointer-events: none; /* ensures hover/click still registers on anchor */
    font-size: 14px;
}

/* Hover */
.floating-contact .float-item:hover .text {
    opacity: 1;
    transform: translateX(0);
}

/*Dynamic Text*/

.banner_txt .banner-img h4 {
    color: var(--btn-color);
    font-size: 55px;
    font-weight: 600;
    text-align: center;
    margin-top: 10px;
}


/* Mobile */
@media (max-width: 768px) {
    .floating-contact {
        right: 0;
        bottom: 0;
        top: auto;
    }
    .search-box-btn.search-box-outer {
        margin: 0;
    }
    
}

@media (max-width: 992px) {
    
    .banner-innercaption {
        top: 0;
    }

    .banner_txt .banner-img h4 {
        font-size: 25px;
        position: relative;
        top: -70px;
    }
    
    .select-lang .gt_switcher_wrapper .gt_selected a{
        font-size:12px !important;
    }
}


@media (max-width: 767px) {
    .banner_txt .banner-img h4 {
        font-size: 20px !Important;
        position: unset !important;
    }
}


@media (min-width: 1451px) and (max-width: 1600px) { 
    
    section.industry-section ul.category-namess li .industry-title{
        height: 398px;
        width: 119px !important;
    }
}

@media (min-width: 1601px) and (max-width: 1720px) { 
    
    section.industry-section ul.category-namess li .industry-title{
        height: 425px;
        width: 132px !important;
    }
}

/*New Testimonial-Section CSS*/

.testimonial-section .new-testimonial-card {
    padding: 30px 0px;
    text-align: center;
    max-width: 70%;
    margin: auto;
}

.testimonial-section .new-testimonial-card p {
    color: #fff;
    font-weight: 500;
}

.testimonial-section .section-heading .sub-heading .heading-s {
    color: #fff;
    font-size: 30px;
}


.about-section .section-heading .sub-heading .heading-s {
    font-size: 40px;
}